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

45894 строки
1.1 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. if (value.energyNeed) {
  45. views[key].attributes.capacity = {
  46. name: "Food Intake",
  47. power: 3,
  48. type: "energy",
  49. base: value.energyNeed
  50. }
  51. }
  52. });
  53. return createEntityMaker(info, views, defaultSizes);
  54. }
  55. const speciesData = {
  56. animal: {
  57. name: "Animal"
  58. },
  59. dog: {
  60. name: "Dog",
  61. parents: [
  62. "canine"
  63. ]
  64. },
  65. canine: {
  66. name: "Canine",
  67. parents: [
  68. "mammal"
  69. ]
  70. },
  71. crux: {
  72. name: "Crux",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. mammal: {
  78. name: "Mammal",
  79. parents: [
  80. "animal"
  81. ]
  82. },
  83. "rough-collie": {
  84. name: "Rough Collie",
  85. parents: [
  86. "dog"
  87. ]
  88. },
  89. dragon: {
  90. name: "Dragon",
  91. parents: [
  92. "reptile"
  93. ]
  94. },
  95. reptile: {
  96. name: "Reptile",
  97. parents: [
  98. "animal"
  99. ]
  100. },
  101. woodpecker: {
  102. name: "Woodpecker",
  103. parents: [
  104. "avian"
  105. ]
  106. },
  107. avian: {
  108. name: "Avian",
  109. parents: [
  110. "animal"
  111. ]
  112. },
  113. kitsune: {
  114. name: "Kitsune",
  115. parents: [
  116. "fox"
  117. ]
  118. },
  119. fox: {
  120. name: "Fox",
  121. parents: [
  122. "mammal"
  123. ]
  124. },
  125. pokemon: {
  126. name: "Pokemon"
  127. },
  128. tiger: {
  129. name: "Tiger",
  130. parents: [
  131. "cat"
  132. ]
  133. },
  134. cat: {
  135. name: "Cat",
  136. parents: [
  137. "feliform"
  138. ]
  139. },
  140. "blue-jay": {
  141. name: "Blue Jay",
  142. parents: [
  143. "avian"
  144. ]
  145. },
  146. wolf: {
  147. name: "Wolf",
  148. parents: [
  149. "mammal"
  150. ]
  151. },
  152. coyote: {
  153. name: "Coyote",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. raccoon: {
  159. name: "Raccoon",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. weasel: {
  165. name: "Weasel",
  166. parents: [
  167. "mustelid"
  168. ]
  169. },
  170. "red-panda": {
  171. name: "Red Panda",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. dolphin: {
  177. name: "Dolphin",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. "african-wild-dog": {
  183. name: "African Wild Dog",
  184. parents: [
  185. "canine"
  186. ]
  187. },
  188. "hyena": {
  189. name: "Hyena",
  190. parents: [
  191. "feliform"
  192. ]
  193. },
  194. "carbuncle": {
  195. name: "Carbuncle",
  196. parents: [
  197. "animal"
  198. ]
  199. },
  200. bat: {
  201. name: "Bat",
  202. parents: [
  203. "mammal"
  204. ]
  205. },
  206. "leaf-nosed-bat": {
  207. name: "Leaf-Nosed Bat",
  208. parents: [
  209. "bat"
  210. ]
  211. },
  212. "fish": {
  213. name: "Fish",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. "ram": {
  219. name: "Ram",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "demon": {
  225. name: "Demon",
  226. parents: [
  227. "supernatural"
  228. ]
  229. },
  230. "cougar": {
  231. name: "Cougar",
  232. parents: [
  233. "cat"
  234. ]
  235. },
  236. "goat": {
  237. name: "Goat",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "lion": {
  243. name: "Lion",
  244. parents: [
  245. "cat"
  246. ]
  247. },
  248. "harpy-eager": {
  249. name: "Harpy Eagle",
  250. parents: [
  251. "avian"
  252. ]
  253. },
  254. "deer": {
  255. name: "Deer",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "phoenix": {
  261. name: "Phoenix",
  262. parents: [
  263. "avian"
  264. ]
  265. },
  266. "aeromorph": {
  267. name: "Aeromorph",
  268. parents: [
  269. "machine"
  270. ]
  271. },
  272. "machine": {
  273. name: "Machine",
  274. },
  275. "android": {
  276. name: "Android",
  277. parents: [
  278. "machine"
  279. ]
  280. },
  281. "jackal": {
  282. name: "Jackal",
  283. parents: [
  284. "canine"
  285. ]
  286. },
  287. "corvid": {
  288. name: "Corvid",
  289. parents: [
  290. "avian"
  291. ]
  292. },
  293. "pharaoh-hound": {
  294. name: "Pharaoh Hound",
  295. parents: [
  296. "dog"
  297. ]
  298. },
  299. "skunk": {
  300. name: "Skunk",
  301. parents: [
  302. "mammal"
  303. ]
  304. },
  305. "shark": {
  306. name: "Shark",
  307. parents: [
  308. "fish"
  309. ]
  310. },
  311. "black-panther": {
  312. name: "Black Panther",
  313. parents: [
  314. "cat"
  315. ]
  316. },
  317. "umbra": {
  318. name: "Umbra",
  319. parents: [
  320. "animal"
  321. ]
  322. },
  323. "raven": {
  324. name: "Raven",
  325. parents: [
  326. "corvid"
  327. ]
  328. },
  329. "snow-leopard": {
  330. name: "Snow Leopard",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "barbary-lion": {
  336. name: "Barbary Lion",
  337. parents: [
  338. "lion"
  339. ]
  340. },
  341. "dra'gal": {
  342. name: "Dra'Gal",
  343. parents: [
  344. "mammal"
  345. ]
  346. },
  347. "german-shepherd": {
  348. name: "German Shepherd",
  349. parents: [
  350. "dog"
  351. ]
  352. },
  353. "bayleef": {
  354. name: "Bayleef",
  355. parents: [
  356. "pokemon"
  357. ]
  358. },
  359. "mouse": {
  360. name: "Mouse",
  361. parents: [
  362. "rodent"
  363. ]
  364. },
  365. "rat": {
  366. name: "Rat",
  367. parents: [
  368. "mammal"
  369. ]
  370. },
  371. "hoshiko-beast": {
  372. name: "Hoshiko Beast",
  373. parents: ["animal"]
  374. },
  375. "snow-jugani": {
  376. name: "Snow Jugani",
  377. parents: ["cat"]
  378. },
  379. "patamon": {
  380. name: "Patamon",
  381. parents: ["digimon"]
  382. },
  383. "digimon": {
  384. name: "Digimon",
  385. },
  386. "jugani": {
  387. name: "Jugani",
  388. parents: ["cat"]
  389. },
  390. "luxray": {
  391. name: "Luxray",
  392. parents: ["pokemon"]
  393. },
  394. "mech": {
  395. name: "Mech",
  396. parents: ["machine"]
  397. },
  398. "zoid": {
  399. name: "Zoid",
  400. parents: ["mech"]
  401. },
  402. "monster": {
  403. name: "Monster",
  404. parents: ["animal"]
  405. },
  406. "foo-dog": {
  407. name: "Foo Dog",
  408. parents: ["mammal"]
  409. },
  410. "elephant": {
  411. name: "Elephant",
  412. parents: ["mammal"]
  413. },
  414. "eagle": {
  415. name: "Eagle",
  416. parents: ["avian"]
  417. },
  418. "cow": {
  419. name: "Cow",
  420. parents: ["mammal"]
  421. },
  422. "crocodile": {
  423. name: "Crocodile",
  424. parents: ["reptile"]
  425. },
  426. "borzoi": {
  427. name: "Borzoi",
  428. parents: ["dog"]
  429. },
  430. "snake": {
  431. name: "Snake",
  432. parents: ["reptile"]
  433. },
  434. "horned-bush-viper": {
  435. name: "Horned Bush Viper",
  436. parents: ["snake"]
  437. },
  438. "cobra": {
  439. name: "Cobra",
  440. parents: ["snake"]
  441. },
  442. "harpy-eagle": {
  443. name: "Harpy Eagle",
  444. parents: ["eagle"]
  445. },
  446. "raptor": {
  447. name: "Raptor",
  448. parents: ["dinosaur"]
  449. },
  450. "dinosaur": {
  451. name: "Dinosaur",
  452. parents: ["reptile"]
  453. },
  454. "veilhound": {
  455. name: "Veilhound",
  456. parents: ["hellhound"]
  457. },
  458. "hellhound": {
  459. name: "Hellhound",
  460. parents: ["canine", "demon"]
  461. },
  462. "insect": {
  463. name: "Insect",
  464. parents: ["animal"]
  465. },
  466. "beetle": {
  467. name: "Beetle",
  468. parents: ["insect"]
  469. },
  470. "moth": {
  471. name: "Moth",
  472. parents: ["insect"]
  473. },
  474. "eastern-dragon": {
  475. name: "Eastern Dragon",
  476. parents: ["dragon"]
  477. },
  478. "jaguar": {
  479. name: "Jaguar",
  480. parents: ["cat"]
  481. },
  482. "horse": {
  483. name: "Horse",
  484. parents: ["mammal"]
  485. },
  486. "sergal": {
  487. name: "Sergal",
  488. parents: ["mammal"]
  489. },
  490. "gryphon": {
  491. name: "Gryphon",
  492. parents: ["lion", "eagle"]
  493. },
  494. "robot": {
  495. name: "Robot",
  496. parents: ["machine"]
  497. },
  498. "medihound": {
  499. name: "Medihound",
  500. parents: ["robot", "dog"]
  501. },
  502. "sylveon": {
  503. name: "Sylveon",
  504. parents: ["pokemon"]
  505. },
  506. "catgirl": {
  507. name: "Catgirl",
  508. parents: ["mammal"]
  509. },
  510. "cowgirl": {
  511. name: "Cowgirl",
  512. parents: ["mammal"]
  513. },
  514. "pony": {
  515. name: "Pony",
  516. parents: ["horse"]
  517. },
  518. "rabbit": {
  519. name: "Rabbit",
  520. parents: ["mammal"]
  521. },
  522. "fennec-fox": {
  523. name: "Fennec Fox",
  524. parents: ["fox"]
  525. },
  526. "azodian": {
  527. name: "Azodian",
  528. parents: ["mouse"]
  529. },
  530. "shiba-inu": {
  531. name: "Shiba Inu",
  532. parents: ["dog"]
  533. },
  534. "changeling": {
  535. name: "Changeling",
  536. parents: ["insect"]
  537. },
  538. "cheetah": {
  539. name: "Cheetah",
  540. parents: ["cat"]
  541. },
  542. "golden-jackal": {
  543. name: "Golden Jackal",
  544. parents: ["jackal"]
  545. },
  546. "manectric": {
  547. name: "Manectric",
  548. parents: ["pokemon"]
  549. },
  550. "rat": {
  551. name: "Rat",
  552. parents: ["rodent"]
  553. },
  554. "rodent": {
  555. name: "Rodent",
  556. parents: ["mammal"]
  557. },
  558. "octocoon": {
  559. name: "Octocoon",
  560. parents: ["raccoon", "octopus"]
  561. },
  562. "octopus": {
  563. name: "Octopus",
  564. parents: ["fish"]
  565. },
  566. "werewolf": {
  567. name: "Werewolf",
  568. parents: ["wolf", "werebeast"]
  569. },
  570. "werebeast": {
  571. name: "Werebeast",
  572. parents: ["monster"]
  573. },
  574. "meerkat": {
  575. name: "Meerkat",
  576. parents: ["mammal"]
  577. },
  578. "human": {
  579. name: "Human",
  580. parents: ["mammal"]
  581. },
  582. "geth": {
  583. name: "Geth",
  584. parents: ["android"]
  585. },
  586. "husky": {
  587. name: "Husky",
  588. parents: ["dog"]
  589. },
  590. "long-eared-bat": {
  591. name: "Long Eared Bat",
  592. parents: ["bat"]
  593. },
  594. "lizard": {
  595. name: "Lizard",
  596. parents: ["reptile"]
  597. },
  598. "salamander": {
  599. name: "Salamander",
  600. parents: ["lizard"]
  601. },
  602. "chameleon": {
  603. name: "Chameleon",
  604. parents: ["lizard"]
  605. },
  606. "gecko": {
  607. name: "Gecko",
  608. parents: ["lizard"]
  609. },
  610. "kobold": {
  611. name: "Kobold",
  612. parents: ["reptile"]
  613. },
  614. "charizard": {
  615. name: "Charizard",
  616. parents: ["pokemon"]
  617. },
  618. "lugia": {
  619. name: "Lugia",
  620. parents: ["pokemon"]
  621. },
  622. "cerberus": {
  623. name: "Cerberus",
  624. parents: ["dog"]
  625. },
  626. "tyrantrum": {
  627. name: "Tyrantrum",
  628. parents: ["pokemon"]
  629. },
  630. "lemur": {
  631. name: "Lemur",
  632. parents: ["mammal"]
  633. },
  634. "kelpie": {
  635. name: "Kelpie",
  636. parents: ["horse", "monster"]
  637. },
  638. "labrador": {
  639. name: "Labrador",
  640. parents: ["dog"]
  641. },
  642. "sylveon": {
  643. name: "Sylveon",
  644. parents: ["eeveelution"]
  645. },
  646. "eeveelution": {
  647. name: "Eeveelution",
  648. parents: ["pokemon"]
  649. },
  650. "polar-bear": {
  651. name: "Polar Bear",
  652. parents: ["bear"]
  653. },
  654. "bear": {
  655. name: "Bear",
  656. parents: ["mammal"]
  657. },
  658. "absol": {
  659. name: "Absol",
  660. parents: ["pokemon"]
  661. },
  662. "wolver": {
  663. name: "Wolver",
  664. parents: ["mammal"]
  665. },
  666. "rottweiler": {
  667. name: "Rottweiler",
  668. parents: ["dog"]
  669. },
  670. "zebra": {
  671. name: "Zebra",
  672. parents: ["horse"]
  673. },
  674. "yoshi": {
  675. name: "Yoshi",
  676. parents: ["lizard"]
  677. },
  678. "lynx": {
  679. name: "Lynx",
  680. parents: ["cat"]
  681. },
  682. "unknown": {
  683. name: "Unknown",
  684. parents: []
  685. },
  686. "thylacine": {
  687. name: "Thylacine",
  688. parents: ["mammal"]
  689. },
  690. "gabumon": {
  691. name: "Gabumon",
  692. parents: ["digimon"]
  693. },
  694. "border-collie": {
  695. name: "Border Collie",
  696. parents: ["dog"]
  697. },
  698. "imp": {
  699. name: "Imp",
  700. parents: ["demon"]
  701. },
  702. "kangaroo": {
  703. name: "Kangaroo",
  704. parents: ["marsupial"]
  705. },
  706. "renamon": {
  707. name: "Renamon",
  708. parents: ["digimon"]
  709. },
  710. "candy-orca-dragon": {
  711. name: "Candy Orca Dragon",
  712. parents: ["fish", "dragon", "candy"]
  713. },
  714. "sabertooth-tiger": {
  715. name: "Sabertooth Tiger",
  716. parents: ["cat"]
  717. },
  718. "espurr": {
  719. name: "Espurr",
  720. parents: ["pokemon"]
  721. },
  722. "otter": {
  723. name: "Otter",
  724. parents: ["mustelid"]
  725. },
  726. "elemental": {
  727. name: "Elemental",
  728. parents: ["mammal"]
  729. },
  730. "mew": {
  731. name: "Mew",
  732. parents: ["pokemon"]
  733. },
  734. "goodra": {
  735. name: "Goodra",
  736. parents: ["pokemon"]
  737. },
  738. "fairy": {
  739. name: "Fairy",
  740. parents: ["magical"]
  741. },
  742. "typhlosion": {
  743. name: "Typhlosion",
  744. parents: ["pokemon"]
  745. },
  746. "magical": {
  747. name: "Magical",
  748. parents: []
  749. },
  750. "xenomorph": {
  751. name: "Xenomorph",
  752. parents: ["monster", "alien"]
  753. },
  754. "charr": {
  755. name: "Charr",
  756. parents: ["cat"]
  757. },
  758. "siberian-husky": {
  759. name: "Siberian Husky",
  760. parents: ["husky"]
  761. },
  762. "alligator": {
  763. name: "Alligator",
  764. parents: ["reptile"]
  765. },
  766. "bernese-mountain-dog": {
  767. name: "Bernese Mountain Dog",
  768. parents: ["dog"]
  769. },
  770. "reshiram": {
  771. name: "Reshiram",
  772. parents: ["pokemon"]
  773. },
  774. "grizzly-bear": {
  775. name: "Grizzly Bear",
  776. parents: ["bear"]
  777. },
  778. "water-monitor": {
  779. name: "Water Monitor",
  780. parents: ["lizard"]
  781. },
  782. "banchofossa": {
  783. name: "Banchofossa",
  784. parents: ["mammal"]
  785. },
  786. "kirin": {
  787. name: "Kirin",
  788. parents: ["monster"]
  789. },
  790. "quilava": {
  791. name: "Quilava",
  792. parents: ["pokemon"]
  793. },
  794. "seviper": {
  795. name: "Seviper",
  796. parents: ["pokemon"]
  797. },
  798. "flying-fox": {
  799. name: "Flying Fox",
  800. parents: ["bat"]
  801. },
  802. "keynain": {
  803. name: "Keynain",
  804. parents: ["avian"]
  805. },
  806. "lucario": {
  807. name: "Lucario",
  808. parents: ["pokemon"]
  809. },
  810. "siamese-cat": {
  811. name: "Siamese Cat",
  812. parents: ["cat"]
  813. },
  814. "spider": {
  815. name: "Spider",
  816. parents: ["insect"]
  817. },
  818. "samurott": {
  819. name: "Samurott",
  820. parents: ["pokemon"]
  821. },
  822. "megalodon": {
  823. name: "Megalodon",
  824. parents: ["shark"]
  825. },
  826. "unicorn": {
  827. name: "Unicorn",
  828. parents: ["horse"]
  829. },
  830. "greninja": {
  831. name: "Greninja",
  832. parents: ["pokemon"]
  833. },
  834. "water-dragon": {
  835. name: "Water Dragon",
  836. parents: ["dragon"]
  837. },
  838. "cross-fox": {
  839. name: "Cross Fox",
  840. parents: ["fox"]
  841. },
  842. "synth": {
  843. name: "Synth",
  844. parents: ["machine"]
  845. },
  846. "construct": {
  847. name: "Construct",
  848. parents: []
  849. },
  850. "mexican-wolf": {
  851. name: "Mexican Wolf",
  852. parents: ["wolf"]
  853. },
  854. "leopard": {
  855. name: "Leopard",
  856. parents: ["cat"]
  857. },
  858. "pig": {
  859. name: "Pig",
  860. parents: ["mammal"]
  861. },
  862. "ampharos": {
  863. name: "Ampharos",
  864. parents: ["pokemon"]
  865. },
  866. "orca": {
  867. name: "Orca",
  868. parents: ["fish"]
  869. },
  870. "lycanroc": {
  871. name: "Lycanroc",
  872. parents: ["pokemon"]
  873. },
  874. "surkanu": {
  875. name: "Surkanu",
  876. parents: ["monster"]
  877. },
  878. "seal": {
  879. name: "Seal",
  880. parents: ["mammal"]
  881. },
  882. "keldeo": {
  883. name: "Keldeo",
  884. parents: ["pokemon"]
  885. },
  886. "great-dane": {
  887. name: "Great Dane",
  888. parents: ["dog"]
  889. },
  890. "black-backed-jackal": {
  891. name: "Black Backed Jackal",
  892. parents: ["jackal"]
  893. },
  894. "sheep": {
  895. name: "Sheep",
  896. parents: ["mammal"]
  897. },
  898. "leopard-seal": {
  899. name: "Leopard Seal",
  900. parents: ["seal"]
  901. },
  902. "zoroark": {
  903. name: "Zoroark",
  904. parents: ["pokemon"]
  905. },
  906. "maned-wolf": {
  907. name: "Maned Wolf",
  908. parents: ["canine"]
  909. },
  910. "dracha": {
  911. name: "Dracha",
  912. parents: ["dragon"]
  913. },
  914. "wolxi": {
  915. name: "Wolxi",
  916. parents: ["mammal", "alien"]
  917. },
  918. "dratini": {
  919. name: "Dratini",
  920. parents: ["pokemon", "dragon"]
  921. },
  922. "skaven": {
  923. name: "Skaven",
  924. parents: ["rat"]
  925. },
  926. "mongoose": {
  927. name: "Mongoose",
  928. parents: ["mammal"]
  929. },
  930. "lopunny": {
  931. name: "Lopunny",
  932. parents: ["pokemon", "rabbit"]
  933. },
  934. "feraligatr": {
  935. name: "Feraligatr",
  936. parents: ["pokemon", "alligator"]
  937. },
  938. "houndoom": {
  939. name: "Houndoom",
  940. parents: ["pokemon", "dog"]
  941. },
  942. "protogen": {
  943. name: "Protogen",
  944. parents: ["machine"]
  945. },
  946. "saint-bernard": {
  947. name: "Saint Bernard",
  948. parents: ["dog"]
  949. },
  950. "crow": {
  951. name: "Crow",
  952. parents: ["corvid"]
  953. },
  954. "delphox": {
  955. name: "Delphox",
  956. parents: ["pokemon", "fox"]
  957. },
  958. "moose": {
  959. name: "Moose",
  960. parents: ["mammal"]
  961. },
  962. "joraxian": {
  963. name: "Joraxian",
  964. parents: ["monster", "canine", "demon"]
  965. },
  966. "nimbat": {
  967. name: "Nimbat",
  968. parents: ["mammal"]
  969. },
  970. "aardwolf": {
  971. name: "Aardwolf",
  972. parents: ["canine"]
  973. },
  974. "fluudrani": {
  975. name: "Fluudrani",
  976. parents: ["animal"]
  977. },
  978. "arcanine": {
  979. name: "Arcanine",
  980. parents: ["pokemon", "dog"]
  981. },
  982. "inteleon": {
  983. name: "Inteleon",
  984. parents: ["pokemon", "fish"]
  985. },
  986. "ninetales": {
  987. name: "Ninetales",
  988. parents: ["pokemon", "kitsune"]
  989. },
  990. "tigrex": {
  991. name: "Tigrex",
  992. parents: ["tiger"]
  993. },
  994. "zorua": {
  995. name: "Zorua",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "vulpix": {
  999. name: "Vulpix",
  1000. parents: ["pokemon", "fox"]
  1001. },
  1002. "barghest": {
  1003. name: "Barghest",
  1004. parents: ["monster"]
  1005. },
  1006. "gray-wolf": {
  1007. name: "Gray Wolf",
  1008. parents: ["wolf"]
  1009. },
  1010. "ruppells-fox": {
  1011. name: "Rüppell's Fox",
  1012. parents: ["fox"]
  1013. },
  1014. "bull-terrier": {
  1015. name: "Bull Terrier",
  1016. parents: ["dog"]
  1017. },
  1018. "european-honey-buzzard": {
  1019. name: "European Honey Buzzard",
  1020. parents: ["avian"]
  1021. },
  1022. "t-rex": {
  1023. name: "Tyrannosaurus Rex",
  1024. parents: ["dinosaur"]
  1025. },
  1026. "mactarian": {
  1027. name: "Mactarian",
  1028. parents: ["shark", "monster"]
  1029. },
  1030. "mewtwo-y": {
  1031. name: "Mewtwo Y",
  1032. parents: ["mewtwo"]
  1033. },
  1034. "mewtwo": {
  1035. name: "Mewtwo",
  1036. parents: ["pokemon"]
  1037. },
  1038. "mew": {
  1039. name: "Mew",
  1040. parents: ["pokemon"]
  1041. },
  1042. "eevee": {
  1043. name: "Eevee",
  1044. parents: ["eeveelution"]
  1045. },
  1046. "mienshao": {
  1047. name: "Mienshao",
  1048. parents: ["pokemon"]
  1049. },
  1050. "sugar-glider": {
  1051. name: "Sugar Glider",
  1052. parents: ["opossum"]
  1053. },
  1054. "spectral-bat": {
  1055. name: "Spectral Bat",
  1056. parents: ["bat"]
  1057. },
  1058. "scolipede": {
  1059. name: "Scolipede",
  1060. parents: ["pokemon", "insect"]
  1061. },
  1062. "jackalope": {
  1063. name: "Jackalope",
  1064. parents: ["rabbit", "antelope"]
  1065. },
  1066. "caracal": {
  1067. name: "Caracal",
  1068. parents: ["cat"]
  1069. },
  1070. "stoat": {
  1071. name: "Stoat",
  1072. parents: ["mammal"]
  1073. },
  1074. "african-golden-cat": {
  1075. name: "African Golden Cat",
  1076. parents: ["cat"]
  1077. },
  1078. "gigantosaurus": {
  1079. name: "Gigantosaurus",
  1080. parents: ["dinosaur"]
  1081. },
  1082. "zorgoia": {
  1083. name: "Zorgoia",
  1084. parents: ["mammal"]
  1085. },
  1086. "monitor-lizard": {
  1087. name: "Monitor Lizard",
  1088. parents: ["lizard"]
  1089. },
  1090. "ziralkia": {
  1091. name: "Ziralkia",
  1092. parents: ["mammal"]
  1093. },
  1094. "kiiasi": {
  1095. name: "Kiiasi",
  1096. parents: ["animal"]
  1097. },
  1098. "synx": {
  1099. name: "Synx",
  1100. parents: ["monster"]
  1101. },
  1102. "panther": {
  1103. name: "Panther",
  1104. parents: ["cat"]
  1105. },
  1106. "azumarill": {
  1107. name: "Azumarill",
  1108. parents: ["pokemon"]
  1109. },
  1110. "river-snaptail": {
  1111. name: "River Snaptail",
  1112. parents: ["otter", "crocodile"]
  1113. },
  1114. "great-blue-heron": {
  1115. name: "Great Blue Heron",
  1116. parents: ["avian"]
  1117. },
  1118. "smeargle": {
  1119. name: "Smeargle",
  1120. parents: ["pokemon"]
  1121. },
  1122. "vendeilen": {
  1123. name: "Vendeilen",
  1124. parents: ["monster"]
  1125. },
  1126. "ventura": {
  1127. name: "Ventura",
  1128. parents: ["canine"]
  1129. },
  1130. "clouded-leopard": {
  1131. name: "Clouded Leopard",
  1132. parents: ["leopard"]
  1133. },
  1134. "argonian": {
  1135. name: "Argonian",
  1136. parents: ["lizard"]
  1137. },
  1138. "salazzle": {
  1139. name: "Salazzle",
  1140. parents: ["pokemon", "lizard"]
  1141. },
  1142. "je-stoff-drachen": {
  1143. name: "Je-Stoff Drachen",
  1144. parents: ["dragon"]
  1145. },
  1146. "finnish-spitz-dog": {
  1147. name: "Finnish Spitz Dog",
  1148. parents: ["dog"]
  1149. },
  1150. "gray-fox": {
  1151. name: "Gray Fox",
  1152. parents: ["fox"]
  1153. },
  1154. "opossum": {
  1155. name: "opossum",
  1156. parents: ["mammal"]
  1157. },
  1158. "antelope": {
  1159. name: "Antelope",
  1160. parents: ["mammal"]
  1161. },
  1162. "weavile": {
  1163. name: "Weavile",
  1164. parents: ["pokemon"]
  1165. },
  1166. "pikachu": {
  1167. name: "Pikachu",
  1168. parents: ["pokemon", "mouse"]
  1169. },
  1170. "grovyle": {
  1171. name: "Grovyle",
  1172. parents: ["pokemon", "plant"]
  1173. },
  1174. "sthara": {
  1175. name: "Sthara",
  1176. parents: ["snow-leopard", "reptile"]
  1177. },
  1178. "star-warrior": {
  1179. name: "Star Warrior",
  1180. parents: ["magical"]
  1181. },
  1182. "dragonoid": {
  1183. name: "Dragonoid",
  1184. parents: ["dragon"]
  1185. },
  1186. "suicune": {
  1187. name: "Suicune",
  1188. parents: ["pokemon"]
  1189. },
  1190. "vole": {
  1191. name: "Vole",
  1192. parents: ["mammal"]
  1193. },
  1194. "blaziken": {
  1195. name: "Blaziken",
  1196. parents: ["pokemon", "avian"]
  1197. },
  1198. "buizel": {
  1199. name: "Buizel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "floatzel": {
  1203. name: "Floatzel",
  1204. parents: ["pokemon", "fish"]
  1205. },
  1206. "umok": {
  1207. name: "Umok",
  1208. parents: ["avian"]
  1209. },
  1210. "sea-monster": {
  1211. name: "Sea Monster",
  1212. parents: ["monster", "fish"]
  1213. },
  1214. "egyptian-vulture": {
  1215. name: "Egyptian Vulture",
  1216. parents: ["avian"]
  1217. },
  1218. "doberman": {
  1219. name: "Doberman",
  1220. parents: ["dog"]
  1221. },
  1222. "zangoose": {
  1223. name: "Zangoose",
  1224. parents: ["pokemon", "mongoose"]
  1225. },
  1226. "mongoose": {
  1227. name: "Mongoose",
  1228. parents: ["mammal"]
  1229. },
  1230. "wickerbeast": {
  1231. name: "Wickerbeast",
  1232. parents: ["monster"]
  1233. },
  1234. "zenari": {
  1235. name: "Zenari",
  1236. parents: ["lizard"]
  1237. },
  1238. "plant": {
  1239. name: "Plant",
  1240. parents: []
  1241. },
  1242. "raskatox": {
  1243. name: "Raskatox",
  1244. parents: ["raccoon", "skunk", "cat", "fox"]
  1245. },
  1246. "mikromare": {
  1247. name: "mikromare",
  1248. parents: ["alien"]
  1249. },
  1250. "alien": {
  1251. name: "Alien",
  1252. parents: ["animal"]
  1253. },
  1254. "deity": {
  1255. name: "Deity",
  1256. parents: []
  1257. },
  1258. "skarlan": {
  1259. name: "Skarlan",
  1260. parents: ["slug", "dragon"]
  1261. },
  1262. "slug": {
  1263. name: "Slug",
  1264. parents: ["mollusk"]
  1265. },
  1266. "mollusk": {
  1267. name: "Mollusk",
  1268. parents: ["animal"]
  1269. },
  1270. "chimera": {
  1271. name: "Chimera",
  1272. parents: ["monster"]
  1273. },
  1274. "gestalt": {
  1275. name: "Gestalt",
  1276. parents: ["construct"]
  1277. },
  1278. "mimic": {
  1279. name: "Mimic",
  1280. parents: ["monster"]
  1281. },
  1282. "calico-rat": {
  1283. name: "Calico Rat",
  1284. parents: ["rat"]
  1285. },
  1286. "panda": {
  1287. name: "Panda",
  1288. parents: ["mammal"]
  1289. },
  1290. "oni": {
  1291. name: "Oni",
  1292. parents: ["monster"]
  1293. },
  1294. "pegasus": {
  1295. name: "Pegasus",
  1296. parents: ["horse"]
  1297. },
  1298. "vulpera": {
  1299. name: "Vulpera",
  1300. parents: ["fennec-fox"]
  1301. },
  1302. "ceratosaurus": {
  1303. name: "Ceratosaurus",
  1304. parents: ["dinosaur"]
  1305. },
  1306. "nykur": {
  1307. name: "Nykur",
  1308. parents: ["horse", "monster"]
  1309. },
  1310. "giraffe": {
  1311. name: "Giraffe",
  1312. parents: ["mammal"]
  1313. },
  1314. "tauren": {
  1315. name: "Tauren",
  1316. parents: ["cow"]
  1317. },
  1318. "draconi": {
  1319. name: "Draconi",
  1320. parents: ["alien", "cat", "cyborg"]
  1321. },
  1322. "dire-wolf": {
  1323. name: "Dire Wolf",
  1324. parents: ["wolf"]
  1325. },
  1326. "ferromorph": {
  1327. name: "Ferromorph",
  1328. parents: ["construct"]
  1329. },
  1330. "meowth": {
  1331. name: "Meowth",
  1332. parents: ["cat", "pokemon"]
  1333. },
  1334. "pavodragon": {
  1335. name: "Pavodragon",
  1336. parents: ["dragon"]
  1337. },
  1338. "aaltranae": {
  1339. name: "Aaltranae",
  1340. parents: ["dragon"]
  1341. },
  1342. "cyborg": {
  1343. name: "Cyborg",
  1344. parents: ["machine"]
  1345. },
  1346. "draptor": {
  1347. name: "Draptor",
  1348. parents: ["dragon"]
  1349. },
  1350. "candy": {
  1351. name: "Candy",
  1352. parents: []
  1353. },
  1354. "drenath": {
  1355. name: "Drenath",
  1356. parents: ["dragon", "snake", "rabbit"]
  1357. },
  1358. "coyju": {
  1359. name: "Coyju",
  1360. parents: ["coyote", "kaiju"]
  1361. },
  1362. "kaiju": {
  1363. name: "Kaiju",
  1364. parents: ["monster"]
  1365. },
  1366. "nickit": {
  1367. name: "Nickit",
  1368. parents: ["pokemon", "cat"]
  1369. },
  1370. "lopunny": {
  1371. name: "Lopunny",
  1372. parents: ["pokemon", "rabbit"]
  1373. },
  1374. "korean-jindo-dog": {
  1375. name: "Korean Jindo Dog",
  1376. parents: ["dog"]
  1377. },
  1378. "naga": {
  1379. name: "Naga",
  1380. parents: ["snake", "monster"]
  1381. },
  1382. "undead": {
  1383. name: "Undead",
  1384. parents: ["monster"]
  1385. },
  1386. "whale": {
  1387. name: "Whale",
  1388. parents: ["fish"]
  1389. },
  1390. "gelato-bee": {
  1391. name: "Gelato Bee",
  1392. parents: ["bee"]
  1393. },
  1394. "bee": {
  1395. name: "Bee",
  1396. parents: ["insect"]
  1397. },
  1398. "gardevoir": {
  1399. name: "Gardevoir",
  1400. parents: ["pokemon"]
  1401. },
  1402. "ant": {
  1403. name: "Ant",
  1404. parents: ["insect"]
  1405. },
  1406. "frog": {
  1407. name: "Frog",
  1408. parents: ["amphibian"]
  1409. },
  1410. "amphibian": {
  1411. name: "Amphibian",
  1412. parents: ["animal"]
  1413. },
  1414. "pangolin": {
  1415. name: "Pangolin",
  1416. parents: ["mammal"]
  1417. },
  1418. "uragi'viidorn": {
  1419. name: "Uragi'viidorn",
  1420. parents: ["avian", "bear"]
  1421. },
  1422. "gryphdelphais": {
  1423. name: "Gryphdelphais",
  1424. parents: ["dolphin", "gryphon"]
  1425. },
  1426. "plush": {
  1427. name: "Plush",
  1428. parents: ["construct"]
  1429. },
  1430. "draiger": {
  1431. name: "Draiger",
  1432. parents: ["dragon","tiger"]
  1433. },
  1434. "foxsky": {
  1435. name: "Foxsky",
  1436. parents: ["fox", "husky"]
  1437. },
  1438. "umbreon": {
  1439. name: "Umbreon",
  1440. parents: ["eeveelution"]
  1441. },
  1442. "slime-dragon": {
  1443. name: "Slime Dragon",
  1444. parents: ["dragon", "goo"]
  1445. },
  1446. "enderman": {
  1447. name: "Enderman",
  1448. parents: ["monster"]
  1449. },
  1450. "gremlin": {
  1451. name: "Gremlin",
  1452. parents: ["monster"]
  1453. },
  1454. "dragonsune": {
  1455. name: "Dragonsune",
  1456. parents: ["dragon", "kitsune"]
  1457. },
  1458. "ghost": {
  1459. name: "Ghost",
  1460. parents: ["supernatural"]
  1461. },
  1462. "false-vampire-bat": {
  1463. name: "False Vampire Bat",
  1464. parents: ["bat"]
  1465. },
  1466. "succubus": {
  1467. name: "Succubus",
  1468. parents: ["demon"]
  1469. },
  1470. "mia": {
  1471. name: "Mia",
  1472. parents: ["canine"]
  1473. },
  1474. "rainbow": {
  1475. name: "Rainbow",
  1476. parents: ["monster"]
  1477. },
  1478. "solgaleo": {
  1479. name: "Solgaleo",
  1480. parents: ["pokemon"]
  1481. },
  1482. "lucent-nargacuga": {
  1483. name: "Lucent Nargacuga",
  1484. parents: ["monster-hunter"]
  1485. },
  1486. "monster-hunter": {
  1487. name: "Monster Hunter",
  1488. parents: ["monster"]
  1489. },
  1490. "leviathan": {
  1491. "name": "Leviathan",
  1492. "url": "sea-monster"
  1493. },
  1494. "bull": {
  1495. name: "Bull",
  1496. parents: ["mammal"]
  1497. },
  1498. "tanuki": {
  1499. name: "Tanuki",
  1500. parents: ["monster"]
  1501. },
  1502. "chakat": {
  1503. name: "Chakat",
  1504. parents: ["cat"]
  1505. },
  1506. "hydra": {
  1507. name: "Hydra",
  1508. parents: ["monster"]
  1509. },
  1510. "zigzagoon": {
  1511. name: "Zigzagoon",
  1512. parents: ["raccoon", "pokemon"]
  1513. },
  1514. "vulture": {
  1515. name: "Vulture",
  1516. parents: ["avian"]
  1517. },
  1518. "eastern-dragon": {
  1519. name: "Eastern Dragon",
  1520. parents: ["dragon"]
  1521. },
  1522. "gryffon": {
  1523. name: "Gryffon",
  1524. parents: ["phoenix", "red-panda"]
  1525. },
  1526. "amtsvane": {
  1527. name: "Amtsvane",
  1528. parents: ["reptile"]
  1529. },
  1530. "kigavi": {
  1531. name: "Kigavi",
  1532. parents: ["avian"]
  1533. },
  1534. "turian": {
  1535. name: "Turian",
  1536. parents: ["avian"]
  1537. },
  1538. "zeraora": {
  1539. name: "Zeraora",
  1540. parents: ["pokemon"]
  1541. },
  1542. "sandshrew": {
  1543. name: "Sandshrew",
  1544. parents: ["pokemon", "pangolin"]
  1545. },
  1546. "valais-blacknose-sheep": {
  1547. name: "Valais Blacknose Sheep",
  1548. parents: ["sheep"]
  1549. },
  1550. "novaleit": {
  1551. name: "Novaleit",
  1552. parents: ["mammal"]
  1553. },
  1554. "dunnoh": {
  1555. name: "Dunnoh",
  1556. parents: ["mammal"]
  1557. },
  1558. "lunaral-dragon": {
  1559. name: "Lunaral Dragon",
  1560. parents: ["dragon"]
  1561. },
  1562. "arctic-wolf": {
  1563. name: "Arctic Wolf",
  1564. parents: ["wolf"]
  1565. },
  1566. "donkey": {
  1567. name: "Donkey",
  1568. parents: ["horse"]
  1569. },
  1570. "chinchilla": {
  1571. name: "Chinchilla",
  1572. parents: ["rodent"]
  1573. },
  1574. "felkin": {
  1575. name: "Felkin",
  1576. parents: ["dragon"]
  1577. },
  1578. "tykeriel": {
  1579. name: "Tykeriel",
  1580. parents: ["avian"]
  1581. },
  1582. "folf": {
  1583. name: "Folf",
  1584. parents: ["fox", "wolf"]
  1585. },
  1586. "pooltoy": {
  1587. name: "Pooltoy",
  1588. parents: ["construct"]
  1589. },
  1590. "demi": {
  1591. name: "Demi",
  1592. parents: ["human"]
  1593. },
  1594. "stegosaurus": {
  1595. name: "Stegosaurus",
  1596. parents: ["dinosaur"]
  1597. },
  1598. "computer-virus": {
  1599. name: "Computer Virus",
  1600. parents: ["program"]
  1601. },
  1602. "program": {
  1603. name: "Program",
  1604. parents: ["construct"]
  1605. },
  1606. "space-springhare": {
  1607. name: "Space Springhare",
  1608. parents: ["rabbit"]
  1609. },
  1610. "river-drake": {
  1611. name: "River Drake",
  1612. parents: ["dragon"]
  1613. },
  1614. "djinn": {
  1615. "name": "Djinn",
  1616. "url": "supernatural"
  1617. },
  1618. "supernatural": {
  1619. name: "Supernatural",
  1620. parents: ["monster"]
  1621. },
  1622. "grasshopper-mouse": {
  1623. name: "Grasshopper Mouse",
  1624. parents: ["mouse"]
  1625. },
  1626. "somali-cat": {
  1627. name: "Somali Cat",
  1628. parents: ["cat"]
  1629. },
  1630. "minccino": {
  1631. name: "Minccino",
  1632. parents: ["pokemon", "chinchilla"]
  1633. },
  1634. "pine-marten": {
  1635. name: "Pine Marten",
  1636. parents: ["marten"]
  1637. },
  1638. "marten": {
  1639. name: "Marten",
  1640. parents: ["mustelid"]
  1641. },
  1642. "mustelid": {
  1643. name: "Mustelid",
  1644. parents: ["mammal"]
  1645. },
  1646. "caribou": {
  1647. name: "Caribou",
  1648. parents: ["deer"]
  1649. },
  1650. "gnoll": {
  1651. name: "Gnoll",
  1652. parents: ["hyena", "monster"]
  1653. },
  1654. "peacekeeper": {
  1655. name: "Peacekeeper",
  1656. parents: ["human"]
  1657. },
  1658. "river-otter": {
  1659. name: "River Otter",
  1660. parents: ["otter"]
  1661. },
  1662. "dhole": {
  1663. name: "Dhole",
  1664. parents: ["canine"]
  1665. },
  1666. "springbok": {
  1667. name: "Springbok",
  1668. parents: ["antelope"]
  1669. },
  1670. "marsupial": {
  1671. name: "Marsupial",
  1672. parents: ["mammal"]
  1673. },
  1674. "townsend-big-eared-bat": {
  1675. name: "Townsend Big-eared Bat",
  1676. parents: ["bat"]
  1677. },
  1678. "squirrel": {
  1679. name: "Squirrel",
  1680. parents: ["rodent"]
  1681. },
  1682. "magpie": {
  1683. name: "Magpie",
  1684. parents: ["corvid"]
  1685. },
  1686. "civet": {
  1687. name: "Civet",
  1688. parents: ["feliform"]
  1689. },
  1690. "feliform": {
  1691. name: "Feliform",
  1692. parents: ["mammal"]
  1693. },
  1694. "tiefling": {
  1695. name: "Tiefling",
  1696. parents: ["devil"]
  1697. },
  1698. "devil": {
  1699. name: "Devil",
  1700. parents: ["supernatural"]
  1701. },
  1702. "sika-deer": {
  1703. name: "Sika Deer",
  1704. parents: ["deer"]
  1705. },
  1706. "vaporeon": {
  1707. name: "Vaporeon",
  1708. parents: ["eeveelution"]
  1709. },
  1710. "leafeon": {
  1711. name: "Leafeon",
  1712. parents: ["eeveelution"]
  1713. },
  1714. "jolteon": {
  1715. name: "Jolteon",
  1716. parents: ["eeveelution"]
  1717. },
  1718. "spireborn": {
  1719. name: "Spireborn",
  1720. parents: ["zorgoia"]
  1721. },
  1722. "vampire": {
  1723. name: "Vampire",
  1724. parents: ["monster"]
  1725. },
  1726. "extraplanar": {
  1727. name: "Extraplanar",
  1728. parents: []
  1729. },
  1730. "goo": {
  1731. name: "Goo",
  1732. parents: []
  1733. },
  1734. "skink": {
  1735. name: "Skink",
  1736. parents: ["lizard"]
  1737. },
  1738. "bat-eared-fox": {
  1739. name: "Bat-eared Fox",
  1740. parents: ["fox"]
  1741. },
  1742. "belted-kingfisher": {
  1743. name: "Belted Kingfisher",
  1744. parents: ["avian"]
  1745. },
  1746. "omnifalcon": {
  1747. name: "Omnifalcon",
  1748. parents: ["gryphon", "falcon", "harpy-eagle"]
  1749. },
  1750. "falcon": {
  1751. name: "Falcon",
  1752. parents: ["avian"]
  1753. },
  1754. "avali": {
  1755. name: "Avali",
  1756. parents: ["avian", "alien"]
  1757. },
  1758. "arctic-fox": {
  1759. name: "Arctic Fox",
  1760. parents: ["fox"]
  1761. },
  1762. "snow-tiger": {
  1763. name: "Snow Tiger",
  1764. parents: ["tiger"]
  1765. },
  1766. "marble-fox": {
  1767. name: "Marble Fox",
  1768. parents: ["fox"]
  1769. },
  1770. "king-wickerbeast": {
  1771. name: "King Wickerbeast",
  1772. parents: ["wickerbeast"]
  1773. },
  1774. "wickerbeast": {
  1775. name: "Wickerbeast",
  1776. parents: ["mammal"]
  1777. },
  1778. "european-polecat": {
  1779. name: "European Polecat",
  1780. parents: ["mustelid"]
  1781. },
  1782. "teshari": {
  1783. name: "Teshari",
  1784. parents: ["avian", "raptor"]
  1785. },
  1786. "alicorn": {
  1787. name: "Alicorn",
  1788. parents: ["horse"]
  1789. },
  1790. "atlas-moth": {
  1791. name: "Atlas Moth",
  1792. parents: ["moth"]
  1793. },
  1794. "owlbear": {
  1795. name: "Owlbear",
  1796. parents: ["owl", "bear", "monster"]
  1797. },
  1798. "owl": {
  1799. name: "Owl",
  1800. parents: ["avian"]
  1801. },
  1802. "silvertongue": {
  1803. name: "Silvertongue",
  1804. parents: ["reptile"]
  1805. },
  1806. }
  1807. //species
  1808. function getSpeciesInfo(speciesList) {
  1809. let result = new Set();
  1810. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1811. result.add(entry)
  1812. });
  1813. return Array.from(result);
  1814. };
  1815. function getSpeciesInfoHelper(species) {
  1816. if (!speciesData[species]) {
  1817. console.warn(species + " doesn't exist");
  1818. return [];
  1819. }
  1820. if (speciesData[species].parents) {
  1821. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1822. } else {
  1823. return [species];
  1824. }
  1825. }
  1826. characterMakers.push(() => makeCharacter(
  1827. {
  1828. name: "Fen",
  1829. species: ["crux"],
  1830. description: {
  1831. title: "Bio",
  1832. text: "Very furry. Sheds on everything."
  1833. },
  1834. tags: [
  1835. "anthro",
  1836. "goo"
  1837. ]
  1838. },
  1839. {
  1840. front: {
  1841. height: math.unit(2.2428, "meter"),
  1842. weight: math.unit(124.738, "kg"),
  1843. name: "Front",
  1844. image: {
  1845. source: "./media/characters/fen/front.svg",
  1846. extra: 1804/1562,
  1847. bottom: 205/2009
  1848. }
  1849. },
  1850. diving: {
  1851. height: math.unit(3.3, "meters"),
  1852. weight: math.unit(124.738, "kg"),
  1853. name: "Diving",
  1854. image: {
  1855. source: "./media/characters/fen/diving.svg"
  1856. }
  1857. },
  1858. maw: {
  1859. height: math.unit(2.83, "feet"),
  1860. name: "Maw",
  1861. image: {
  1862. source: "./media/characters/fen/maw.svg"
  1863. }
  1864. },
  1865. back: {
  1866. height: math.unit(2.2428, "meter"),
  1867. weight: math.unit(124.738, "kg"),
  1868. name: "Back",
  1869. image: {
  1870. source: "./media/characters/fen/back.svg",
  1871. },
  1872. info: {
  1873. description: {
  1874. mode: "append",
  1875. text: "\n\nHe is not currently looking at you."
  1876. }
  1877. }
  1878. },
  1879. full: {
  1880. height: math.unit(0.91, "meter"),
  1881. weight: math.unit(225, "kg"),
  1882. name: "Full",
  1883. image: {
  1884. source: "./media/characters/fen/full.svg",
  1885. extra: 1133/859,
  1886. bottom: 145/1278
  1887. },
  1888. info: {
  1889. description: {
  1890. mode: "append",
  1891. text: "\n\nMunch."
  1892. }
  1893. }
  1894. },
  1895. kneeling: {
  1896. height: math.unit(5.4, "feet"),
  1897. weight: math.unit(124.738, "kg"),
  1898. name: "Kneeling",
  1899. image: {
  1900. source: "./media/characters/fen/kneeling.svg",
  1901. extra: 563 / 507
  1902. }
  1903. },
  1904. goo: {
  1905. height: math.unit(2.8, "feet"),
  1906. weight: math.unit(125, "kg"),
  1907. capacity: math.unit(1, "people"),
  1908. name: "Goo",
  1909. image: {
  1910. source: "./media/characters/fen/goo.svg",
  1911. bottom: 116 / 613
  1912. }
  1913. },
  1914. lounging: {
  1915. height: math.unit(6.5, "feet"),
  1916. weight: math.unit(125, "kg"),
  1917. name: "Lounging",
  1918. image: {
  1919. source: "./media/characters/fen/lounging.svg"
  1920. }
  1921. },
  1922. },
  1923. [
  1924. {
  1925. name: "Small",
  1926. height: math.unit(2.2428, "meter")
  1927. },
  1928. {
  1929. name: "Normal",
  1930. height: math.unit(12, "feet"),
  1931. default: true,
  1932. },
  1933. {
  1934. name: "Big",
  1935. height: math.unit(20, "feet")
  1936. },
  1937. {
  1938. name: "Minimacro",
  1939. height: math.unit(40, "feet"),
  1940. info: {
  1941. description: {
  1942. mode: "append",
  1943. text: "\n\nTOO DAMN BIG"
  1944. }
  1945. }
  1946. },
  1947. {
  1948. name: "Macro",
  1949. height: math.unit(100, "feet"),
  1950. info: {
  1951. description: {
  1952. mode: "append",
  1953. text: "\n\nTOO DAMN BIG"
  1954. }
  1955. }
  1956. },
  1957. {
  1958. name: "Megamacro",
  1959. height: math.unit(2, "miles")
  1960. },
  1961. {
  1962. name: "Gigamacro",
  1963. height: math.unit(10, "earths")
  1964. },
  1965. ]
  1966. ))
  1967. characterMakers.push(() => makeCharacter(
  1968. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1969. {
  1970. front: {
  1971. height: math.unit(183, "cm"),
  1972. weight: math.unit(80, "kg"),
  1973. name: "Front",
  1974. image: {
  1975. source: "./media/characters/sofia-fluttertail/front.svg",
  1976. bottom: 0.01,
  1977. extra: 2154 / 2081
  1978. }
  1979. },
  1980. frontAlt: {
  1981. height: math.unit(183, "cm"),
  1982. weight: math.unit(80, "kg"),
  1983. name: "Front (alt)",
  1984. image: {
  1985. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1986. }
  1987. },
  1988. back: {
  1989. height: math.unit(183, "cm"),
  1990. weight: math.unit(80, "kg"),
  1991. name: "Back",
  1992. image: {
  1993. source: "./media/characters/sofia-fluttertail/back.svg"
  1994. }
  1995. },
  1996. kneeling: {
  1997. height: math.unit(125, "cm"),
  1998. weight: math.unit(80, "kg"),
  1999. name: "Kneeling",
  2000. image: {
  2001. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2002. extra: 1033 / 977,
  2003. bottom: 23.7 / 1057
  2004. }
  2005. },
  2006. maw: {
  2007. height: math.unit(183 / 5, "cm"),
  2008. name: "Maw",
  2009. image: {
  2010. source: "./media/characters/sofia-fluttertail/maw.svg"
  2011. }
  2012. },
  2013. mawcloseup: {
  2014. height: math.unit(183 / 5 * 0.41, "cm"),
  2015. name: "Maw (Closeup)",
  2016. image: {
  2017. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2018. }
  2019. },
  2020. paws: {
  2021. height: math.unit(1.17, "feet"),
  2022. name: "Paws",
  2023. image: {
  2024. source: "./media/characters/sofia-fluttertail/paws.svg",
  2025. extra: 851 / 851,
  2026. bottom: 17 / 868
  2027. }
  2028. },
  2029. },
  2030. [
  2031. {
  2032. name: "Normal",
  2033. height: math.unit(1.83, "meter")
  2034. },
  2035. {
  2036. name: "Size Thief",
  2037. height: math.unit(18, "feet")
  2038. },
  2039. {
  2040. name: "50 Foot Collie",
  2041. height: math.unit(50, "feet")
  2042. },
  2043. {
  2044. name: "Macro",
  2045. height: math.unit(96, "feet"),
  2046. default: true
  2047. },
  2048. {
  2049. name: "Megamerger",
  2050. height: math.unit(650, "feet")
  2051. },
  2052. ]
  2053. ))
  2054. characterMakers.push(() => makeCharacter(
  2055. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2056. {
  2057. front: {
  2058. height: math.unit(7, "feet"),
  2059. weight: math.unit(100, "kg"),
  2060. name: "Front",
  2061. image: {
  2062. source: "./media/characters/march/front.svg",
  2063. extra: 1992/1851,
  2064. bottom: 39/2031
  2065. }
  2066. },
  2067. foot: {
  2068. height: math.unit(0.9, "feet"),
  2069. name: "Foot",
  2070. image: {
  2071. source: "./media/characters/march/foot.svg"
  2072. }
  2073. },
  2074. },
  2075. [
  2076. {
  2077. name: "Normal",
  2078. height: math.unit(7.9, "feet")
  2079. },
  2080. {
  2081. name: "Macro",
  2082. height: math.unit(220, "meters")
  2083. },
  2084. {
  2085. name: "Megamacro",
  2086. height: math.unit(2.98, "km"),
  2087. default: true
  2088. },
  2089. {
  2090. name: "Gigamacro",
  2091. height: math.unit(15963, "km")
  2092. },
  2093. {
  2094. name: "Teramacro",
  2095. height: math.unit(2980000000, "km")
  2096. },
  2097. {
  2098. name: "Examacro",
  2099. height: math.unit(250, "parsecs")
  2100. },
  2101. ]
  2102. ))
  2103. characterMakers.push(() => makeCharacter(
  2104. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2105. {
  2106. front: {
  2107. height: math.unit(6, "feet"),
  2108. weight: math.unit(60, "kg"),
  2109. name: "Front",
  2110. image: {
  2111. source: "./media/characters/noir/front.svg",
  2112. extra: 1,
  2113. bottom: 0.032
  2114. }
  2115. },
  2116. },
  2117. [
  2118. {
  2119. name: "Normal",
  2120. height: math.unit(6.6, "feet")
  2121. },
  2122. {
  2123. name: "Macro",
  2124. height: math.unit(500, "feet")
  2125. },
  2126. {
  2127. name: "Megamacro",
  2128. height: math.unit(2.5, "km"),
  2129. default: true
  2130. },
  2131. {
  2132. name: "Gigamacro",
  2133. height: math.unit(22500, "km")
  2134. },
  2135. {
  2136. name: "Teramacro",
  2137. height: math.unit(2500000000, "km")
  2138. },
  2139. {
  2140. name: "Examacro",
  2141. height: math.unit(200, "parsecs")
  2142. },
  2143. ]
  2144. ))
  2145. characterMakers.push(() => makeCharacter(
  2146. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2147. {
  2148. front: {
  2149. height: math.unit(7, "feet"),
  2150. weight: math.unit(100, "kg"),
  2151. name: "Front",
  2152. image: {
  2153. source: "./media/characters/okuri/front.svg",
  2154. extra: 1,
  2155. bottom: 0.037
  2156. }
  2157. },
  2158. back: {
  2159. height: math.unit(7, "feet"),
  2160. weight: math.unit(100, "kg"),
  2161. name: "Back",
  2162. image: {
  2163. source: "./media/characters/okuri/back.svg",
  2164. extra: 1,
  2165. bottom: 0.007
  2166. }
  2167. },
  2168. },
  2169. [
  2170. {
  2171. name: "Megamacro",
  2172. height: math.unit(100, "miles"),
  2173. default: true
  2174. },
  2175. ]
  2176. ))
  2177. characterMakers.push(() => makeCharacter(
  2178. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2179. {
  2180. front: {
  2181. height: math.unit(7, "feet"),
  2182. weight: math.unit(100, "kg"),
  2183. name: "Front",
  2184. image: {
  2185. source: "./media/characters/manny/front.svg",
  2186. extra: 1,
  2187. bottom: 0.06
  2188. }
  2189. },
  2190. back: {
  2191. height: math.unit(7, "feet"),
  2192. weight: math.unit(100, "kg"),
  2193. name: "Back",
  2194. image: {
  2195. source: "./media/characters/manny/back.svg",
  2196. extra: 1,
  2197. bottom: 0.014
  2198. }
  2199. },
  2200. },
  2201. [
  2202. {
  2203. name: "Normal",
  2204. height: math.unit(7, "feet"),
  2205. },
  2206. {
  2207. name: "Macro",
  2208. height: math.unit(78, "feet"),
  2209. default: true
  2210. },
  2211. {
  2212. name: "Macro+",
  2213. height: math.unit(300, "meters")
  2214. },
  2215. {
  2216. name: "Macro++",
  2217. height: math.unit(2400, "meters")
  2218. },
  2219. {
  2220. name: "Megamacro",
  2221. height: math.unit(5167, "meters")
  2222. },
  2223. {
  2224. name: "Gigamacro",
  2225. height: math.unit(41769, "miles")
  2226. },
  2227. ]
  2228. ))
  2229. characterMakers.push(() => makeCharacter(
  2230. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2231. {
  2232. front: {
  2233. height: math.unit(7, "feet"),
  2234. weight: math.unit(100, "kg"),
  2235. name: "Front",
  2236. image: {
  2237. source: "./media/characters/adake/front-1.svg"
  2238. }
  2239. },
  2240. frontAlt: {
  2241. height: math.unit(7, "feet"),
  2242. weight: math.unit(100, "kg"),
  2243. name: "Front (Alt)",
  2244. image: {
  2245. source: "./media/characters/adake/front-2.svg",
  2246. extra: 1,
  2247. bottom: 0.01
  2248. }
  2249. },
  2250. back: {
  2251. height: math.unit(7, "feet"),
  2252. weight: math.unit(100, "kg"),
  2253. name: "Back",
  2254. image: {
  2255. source: "./media/characters/adake/back.svg",
  2256. }
  2257. },
  2258. kneel: {
  2259. height: math.unit(5.385, "feet"),
  2260. weight: math.unit(100, "kg"),
  2261. name: "Kneeling",
  2262. image: {
  2263. source: "./media/characters/adake/kneel.svg",
  2264. bottom: 0.052
  2265. }
  2266. },
  2267. },
  2268. [
  2269. {
  2270. name: "Normal",
  2271. height: math.unit(7, "feet"),
  2272. },
  2273. {
  2274. name: "Macro",
  2275. height: math.unit(78, "feet"),
  2276. default: true
  2277. },
  2278. {
  2279. name: "Macro+",
  2280. height: math.unit(300, "meters")
  2281. },
  2282. {
  2283. name: "Macro++",
  2284. height: math.unit(2400, "meters")
  2285. },
  2286. {
  2287. name: "Megamacro",
  2288. height: math.unit(5167, "meters")
  2289. },
  2290. {
  2291. name: "Gigamacro",
  2292. height: math.unit(41769, "miles")
  2293. },
  2294. ]
  2295. ))
  2296. characterMakers.push(() => makeCharacter(
  2297. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2298. {
  2299. front: {
  2300. height: math.unit(1.65, "meters"),
  2301. weight: math.unit(50, "kg"),
  2302. name: "Front",
  2303. image: {
  2304. source: "./media/characters/elijah/front.svg",
  2305. extra: 858 / 830,
  2306. bottom: 95.5 / 953.8559
  2307. }
  2308. },
  2309. back: {
  2310. height: math.unit(1.65, "meters"),
  2311. weight: math.unit(50, "kg"),
  2312. name: "Back",
  2313. image: {
  2314. source: "./media/characters/elijah/back.svg",
  2315. extra: 895 / 850,
  2316. bottom: 5.3 / 897.956
  2317. }
  2318. },
  2319. frontNsfw: {
  2320. height: math.unit(1.65, "meters"),
  2321. weight: math.unit(50, "kg"),
  2322. name: "Front (NSFW)",
  2323. image: {
  2324. source: "./media/characters/elijah/front-nsfw.svg",
  2325. extra: 858 / 830,
  2326. bottom: 95.5 / 953.8559
  2327. }
  2328. },
  2329. backNsfw: {
  2330. height: math.unit(1.65, "meters"),
  2331. weight: math.unit(50, "kg"),
  2332. name: "Back (NSFW)",
  2333. image: {
  2334. source: "./media/characters/elijah/back-nsfw.svg",
  2335. extra: 895 / 850,
  2336. bottom: 5.3 / 897.956
  2337. }
  2338. },
  2339. dick: {
  2340. height: math.unit(1, "feet"),
  2341. name: "Dick",
  2342. image: {
  2343. source: "./media/characters/elijah/dick.svg"
  2344. }
  2345. },
  2346. beakOpen: {
  2347. height: math.unit(1.25, "feet"),
  2348. name: "Beak (Open)",
  2349. image: {
  2350. source: "./media/characters/elijah/beak-open.svg"
  2351. }
  2352. },
  2353. beakShut: {
  2354. height: math.unit(1.25, "feet"),
  2355. name: "Beak (Shut)",
  2356. image: {
  2357. source: "./media/characters/elijah/beak-shut.svg"
  2358. }
  2359. },
  2360. footFlexing: {
  2361. height: math.unit(1.61, "feet"),
  2362. name: "Foot (Flexing)",
  2363. image: {
  2364. source: "./media/characters/elijah/foot-flexing.svg"
  2365. }
  2366. },
  2367. footStepping: {
  2368. height: math.unit(1.44, "feet"),
  2369. name: "Foot (Stepping)",
  2370. image: {
  2371. source: "./media/characters/elijah/foot-stepping.svg"
  2372. }
  2373. },
  2374. plantigradeLeg: {
  2375. height: math.unit(2.34, "feet"),
  2376. name: "Plantigrade Leg",
  2377. image: {
  2378. source: "./media/characters/elijah/plantigrade-leg.svg"
  2379. }
  2380. },
  2381. plantigradeFootLeft: {
  2382. height: math.unit(0.9, "feet"),
  2383. name: "Plantigrade Foot (Left)",
  2384. image: {
  2385. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2386. }
  2387. },
  2388. plantigradeFootRight: {
  2389. height: math.unit(0.9, "feet"),
  2390. name: "Plantigrade Foot (Right)",
  2391. image: {
  2392. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2393. }
  2394. },
  2395. },
  2396. [
  2397. {
  2398. name: "Normal",
  2399. height: math.unit(1.65, "meters")
  2400. },
  2401. {
  2402. name: "Macro",
  2403. height: math.unit(55, "meters"),
  2404. default: true
  2405. },
  2406. {
  2407. name: "Macro+",
  2408. height: math.unit(105, "meters")
  2409. },
  2410. ]
  2411. ))
  2412. characterMakers.push(() => makeCharacter(
  2413. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2414. {
  2415. front: {
  2416. height: math.unit(7 + 2/12, "feet"),
  2417. weight: math.unit(320, "kg"),
  2418. name: "Front",
  2419. image: {
  2420. source: "./media/characters/rai/front.svg",
  2421. extra: 1802/1696,
  2422. bottom: 68/1870
  2423. }
  2424. },
  2425. frontDressed: {
  2426. height: math.unit(7 + 2/12, "feet"),
  2427. weight: math.unit(320, "kg"),
  2428. name: "Front (Dressed)",
  2429. image: {
  2430. source: "./media/characters/rai/front-dressed.svg",
  2431. extra: 1802/1696,
  2432. bottom: 68/1870
  2433. }
  2434. },
  2435. side: {
  2436. height: math.unit(7 + 2/12, "feet"),
  2437. weight: math.unit(320, "kg"),
  2438. name: "Side",
  2439. image: {
  2440. source: "./media/characters/rai/side.svg",
  2441. extra: 1789/1710,
  2442. bottom: 115/1904
  2443. }
  2444. },
  2445. back: {
  2446. height: math.unit(7 + 2/12, "feet"),
  2447. weight: math.unit(320, "kg"),
  2448. name: "Back",
  2449. image: {
  2450. source: "./media/characters/rai/back.svg",
  2451. extra: 1770/1707,
  2452. bottom: 28/1798
  2453. }
  2454. },
  2455. feral: {
  2456. height: math.unit(9.5, "feet"),
  2457. weight: math.unit(640, "kg"),
  2458. name: "Feral",
  2459. image: {
  2460. source: "./media/characters/rai/feral.svg",
  2461. extra: 945/553,
  2462. bottom: 176/1121
  2463. }
  2464. },
  2465. dragon: {
  2466. height: math.unit(23, "feet"),
  2467. weight: math.unit(50000, "lb"),
  2468. name: "Dragon",
  2469. image: {
  2470. source: "./media/characters/rai/dragon.svg",
  2471. extra: 2498 / 2030,
  2472. bottom: 85.2 / 2584
  2473. }
  2474. },
  2475. maw: {
  2476. height: math.unit(1.69, "feet"),
  2477. name: "Maw",
  2478. image: {
  2479. source: "./media/characters/rai/maw.svg"
  2480. }
  2481. },
  2482. },
  2483. [
  2484. {
  2485. name: "Normal",
  2486. height: math.unit(7 + 2/12, "feet")
  2487. },
  2488. {
  2489. name: "Big",
  2490. height: math.unit(11, "feet")
  2491. },
  2492. {
  2493. name: "Macro",
  2494. height: math.unit(302, "feet"),
  2495. default: true
  2496. },
  2497. ]
  2498. ))
  2499. characterMakers.push(() => makeCharacter(
  2500. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2501. {
  2502. frontDressed: {
  2503. height: math.unit(216, "feet"),
  2504. weight: math.unit(7000000, "lb"),
  2505. name: "Front (Dressed)",
  2506. image: {
  2507. source: "./media/characters/jazzy/front-dressed.svg",
  2508. extra: 2738 / 2651,
  2509. bottom: 41.8 / 2786
  2510. }
  2511. },
  2512. backDressed: {
  2513. height: math.unit(216, "feet"),
  2514. weight: math.unit(7000000, "lb"),
  2515. name: "Back (Dressed)",
  2516. image: {
  2517. source: "./media/characters/jazzy/back-dressed.svg",
  2518. extra: 2775 / 2673,
  2519. bottom: 36.8 / 2817
  2520. }
  2521. },
  2522. front: {
  2523. height: math.unit(216, "feet"),
  2524. weight: math.unit(7000000, "lb"),
  2525. name: "Front",
  2526. image: {
  2527. source: "./media/characters/jazzy/front.svg",
  2528. extra: 2738 / 2651,
  2529. bottom: 41.8 / 2786
  2530. }
  2531. },
  2532. back: {
  2533. height: math.unit(216, "feet"),
  2534. weight: math.unit(7000000, "lb"),
  2535. name: "Back",
  2536. image: {
  2537. source: "./media/characters/jazzy/back.svg",
  2538. extra: 2775 / 2673,
  2539. bottom: 36.8 / 2817
  2540. }
  2541. },
  2542. maw: {
  2543. height: math.unit(20, "feet"),
  2544. name: "Maw",
  2545. image: {
  2546. source: "./media/characters/jazzy/maw.svg"
  2547. }
  2548. },
  2549. paws: {
  2550. height: math.unit(27.5, "feet"),
  2551. name: "Paws",
  2552. image: {
  2553. source: "./media/characters/jazzy/paws.svg"
  2554. }
  2555. },
  2556. eye: {
  2557. height: math.unit(4.4, "feet"),
  2558. name: "Eye",
  2559. image: {
  2560. source: "./media/characters/jazzy/eye.svg"
  2561. }
  2562. },
  2563. droneOffense: {
  2564. height: math.unit(9.5, "inches"),
  2565. name: "Drone (Offense)",
  2566. image: {
  2567. source: "./media/characters/jazzy/drone-offense.svg"
  2568. }
  2569. },
  2570. droneRecon: {
  2571. height: math.unit(9.5, "inches"),
  2572. name: "Drone (Recon)",
  2573. image: {
  2574. source: "./media/characters/jazzy/drone-recon.svg"
  2575. }
  2576. },
  2577. droneDefense: {
  2578. height: math.unit(9.5, "inches"),
  2579. name: "Drone (Defense)",
  2580. image: {
  2581. source: "./media/characters/jazzy/drone-defense.svg"
  2582. }
  2583. },
  2584. },
  2585. [
  2586. {
  2587. name: "Macro",
  2588. height: math.unit(216, "feet"),
  2589. default: true
  2590. },
  2591. ]
  2592. ))
  2593. characterMakers.push(() => makeCharacter(
  2594. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2595. {
  2596. front: {
  2597. height: math.unit(9 + 6/12, "feet"),
  2598. weight: math.unit(700, "lb"),
  2599. name: "Front",
  2600. image: {
  2601. source: "./media/characters/flamm/front.svg",
  2602. extra: 1751/1632,
  2603. bottom: 46/1797
  2604. }
  2605. },
  2606. buff: {
  2607. height: math.unit(9 + 6/12, "feet"),
  2608. weight: math.unit(950, "lb"),
  2609. name: "Buff",
  2610. image: {
  2611. source: "./media/characters/flamm/buff.svg",
  2612. extra: 3018/2874,
  2613. bottom: 221/3239
  2614. }
  2615. },
  2616. },
  2617. [
  2618. {
  2619. name: "Normal",
  2620. height: math.unit(9.5, "feet")
  2621. },
  2622. {
  2623. name: "Macro",
  2624. height: math.unit(200, "feet"),
  2625. default: true
  2626. },
  2627. ]
  2628. ))
  2629. characterMakers.push(() => makeCharacter(
  2630. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2631. {
  2632. front: {
  2633. height: math.unit(5 + 3/12, "feet"),
  2634. weight: math.unit(60, "kg"),
  2635. name: "Front",
  2636. image: {
  2637. source: "./media/characters/zephiro/front.svg",
  2638. extra: 2309 / 2162,
  2639. bottom: 0.069
  2640. }
  2641. },
  2642. side: {
  2643. height: math.unit(5 + 3/12, "feet"),
  2644. weight: math.unit(60, "kg"),
  2645. name: "Side",
  2646. image: {
  2647. source: "./media/characters/zephiro/side.svg",
  2648. extra: 2403 / 2279,
  2649. bottom: 0.015
  2650. }
  2651. },
  2652. back: {
  2653. height: math.unit(5 + 3/12, "feet"),
  2654. weight: math.unit(60, "kg"),
  2655. name: "Back",
  2656. image: {
  2657. source: "./media/characters/zephiro/back.svg",
  2658. extra: 2373 / 2244,
  2659. bottom: 0.013
  2660. }
  2661. },
  2662. hand: {
  2663. height: math.unit(0.68, "feet"),
  2664. name: "Hand",
  2665. image: {
  2666. source: "./media/characters/zephiro/hand.svg"
  2667. }
  2668. },
  2669. paw: {
  2670. height: math.unit(1, "feet"),
  2671. name: "Paw",
  2672. image: {
  2673. source: "./media/characters/zephiro/paw.svg"
  2674. }
  2675. },
  2676. beans: {
  2677. height: math.unit(0.93, "feet"),
  2678. name: "Beans",
  2679. image: {
  2680. source: "./media/characters/zephiro/beans.svg"
  2681. }
  2682. },
  2683. },
  2684. [
  2685. {
  2686. name: "Micro",
  2687. height: math.unit(3, "inches")
  2688. },
  2689. {
  2690. name: "Normal",
  2691. height: math.unit(5 + 3 / 12, "feet"),
  2692. default: true
  2693. },
  2694. {
  2695. name: "Macro",
  2696. height: math.unit(118, "feet")
  2697. },
  2698. ]
  2699. ))
  2700. characterMakers.push(() => makeCharacter(
  2701. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2702. {
  2703. front: {
  2704. height: math.unit(5, "feet"),
  2705. weight: math.unit(90, "kg"),
  2706. name: "Front",
  2707. image: {
  2708. source: "./media/characters/fory/front.svg",
  2709. extra: 2862 / 2674,
  2710. bottom: 180 / 3043.8
  2711. }
  2712. },
  2713. back: {
  2714. height: math.unit(5, "feet"),
  2715. weight: math.unit(90, "kg"),
  2716. name: "Back",
  2717. image: {
  2718. source: "./media/characters/fory/back.svg",
  2719. extra: 2962 / 2791,
  2720. bottom: 106 / 3071.8
  2721. }
  2722. },
  2723. foot: {
  2724. height: math.unit(2.14, "feet"),
  2725. name: "Foot",
  2726. image: {
  2727. source: "./media/characters/fory/foot.svg"
  2728. }
  2729. },
  2730. },
  2731. [
  2732. {
  2733. name: "Normal",
  2734. height: math.unit(5, "feet")
  2735. },
  2736. {
  2737. name: "Macro",
  2738. height: math.unit(50, "feet"),
  2739. default: true
  2740. },
  2741. {
  2742. name: "Megamacro",
  2743. height: math.unit(10, "miles")
  2744. },
  2745. {
  2746. name: "Gigamacro",
  2747. height: math.unit(5, "earths")
  2748. },
  2749. ]
  2750. ))
  2751. characterMakers.push(() => makeCharacter(
  2752. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2753. {
  2754. front: {
  2755. height: math.unit(7, "feet"),
  2756. weight: math.unit(90, "kg"),
  2757. name: "Front",
  2758. image: {
  2759. source: "./media/characters/kurrikage/front.svg",
  2760. extra: 1845/1733,
  2761. bottom: 119/1964
  2762. }
  2763. },
  2764. back: {
  2765. height: math.unit(7, "feet"),
  2766. weight: math.unit(90, "kg"),
  2767. name: "Back",
  2768. image: {
  2769. source: "./media/characters/kurrikage/back.svg",
  2770. extra: 1790/1677,
  2771. bottom: 61/1851
  2772. }
  2773. },
  2774. dressed: {
  2775. height: math.unit(7, "feet"),
  2776. weight: math.unit(90, "kg"),
  2777. name: "Dressed",
  2778. image: {
  2779. source: "./media/characters/kurrikage/dressed.svg",
  2780. extra: 1845/1733,
  2781. bottom: 119/1964
  2782. }
  2783. },
  2784. foot: {
  2785. height: math.unit(1.5, "feet"),
  2786. name: "Foot",
  2787. image: {
  2788. source: "./media/characters/kurrikage/foot.svg"
  2789. }
  2790. },
  2791. staff: {
  2792. height: math.unit(6.7, "feet"),
  2793. name: "Staff",
  2794. image: {
  2795. source: "./media/characters/kurrikage/staff.svg"
  2796. }
  2797. },
  2798. peek: {
  2799. height: math.unit(1.05, "feet"),
  2800. name: "Peeking",
  2801. image: {
  2802. source: "./media/characters/kurrikage/peek.svg",
  2803. bottom: 0.08
  2804. }
  2805. },
  2806. },
  2807. [
  2808. {
  2809. name: "Normal",
  2810. height: math.unit(12, "feet"),
  2811. default: true
  2812. },
  2813. {
  2814. name: "Big",
  2815. height: math.unit(20, "feet")
  2816. },
  2817. {
  2818. name: "Macro",
  2819. height: math.unit(500, "feet")
  2820. },
  2821. {
  2822. name: "Megamacro",
  2823. height: math.unit(20, "miles")
  2824. },
  2825. ]
  2826. ))
  2827. characterMakers.push(() => makeCharacter(
  2828. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2829. {
  2830. front: {
  2831. height: math.unit(6, "feet"),
  2832. weight: math.unit(75, "kg"),
  2833. name: "Front",
  2834. image: {
  2835. source: "./media/characters/shingo/front.svg",
  2836. extra: 1900/1825,
  2837. bottom: 82/1982
  2838. }
  2839. },
  2840. side: {
  2841. height: math.unit(6, "feet"),
  2842. weight: math.unit(75, "kg"),
  2843. name: "Side",
  2844. image: {
  2845. source: "./media/characters/shingo/side.svg",
  2846. extra: 1930/1865,
  2847. bottom: 16/1946
  2848. }
  2849. },
  2850. back: {
  2851. height: math.unit(6, "feet"),
  2852. weight: math.unit(75, "kg"),
  2853. name: "Back",
  2854. image: {
  2855. source: "./media/characters/shingo/back.svg",
  2856. extra: 1922/1852,
  2857. bottom: 16/1938
  2858. }
  2859. },
  2860. frontDressed: {
  2861. height: math.unit(6, "feet"),
  2862. weight: math.unit(150, "lb"),
  2863. name: "Front-dressed",
  2864. image: {
  2865. source: "./media/characters/shingo/front-dressed.svg",
  2866. extra: 1900/1825,
  2867. bottom: 82/1982
  2868. }
  2869. },
  2870. paw: {
  2871. height: math.unit(1.29, "feet"),
  2872. name: "Paw",
  2873. image: {
  2874. source: "./media/characters/shingo/paw.svg"
  2875. }
  2876. },
  2877. hand: {
  2878. height: math.unit(1.07, "feet"),
  2879. name: "Hand",
  2880. image: {
  2881. source: "./media/characters/shingo/hand.svg"
  2882. }
  2883. },
  2884. frontAlt: {
  2885. height: math.unit(6, "feet"),
  2886. weight: math.unit(75, "kg"),
  2887. name: "Front (Alt)",
  2888. image: {
  2889. source: "./media/characters/shingo/front-alt.svg",
  2890. extra: 3511 / 3338,
  2891. bottom: 0.005
  2892. }
  2893. },
  2894. frontAlt2: {
  2895. height: math.unit(6, "feet"),
  2896. weight: math.unit(75, "kg"),
  2897. name: "Front (Alt 2)",
  2898. image: {
  2899. source: "./media/characters/shingo/front-alt-2.svg",
  2900. extra: 706/681,
  2901. bottom: 11/717
  2902. }
  2903. },
  2904. pawAlt: {
  2905. height: math.unit(1, "feet"),
  2906. name: "Paw (Alt)",
  2907. image: {
  2908. source: "./media/characters/shingo/paw-alt.svg"
  2909. }
  2910. },
  2911. },
  2912. [
  2913. {
  2914. name: "Micro",
  2915. height: math.unit(4, "inches")
  2916. },
  2917. {
  2918. name: "Normal",
  2919. height: math.unit(6, "feet"),
  2920. default: true
  2921. },
  2922. {
  2923. name: "Macro",
  2924. height: math.unit(108, "feet")
  2925. },
  2926. {
  2927. name: "Macro+",
  2928. height: math.unit(1500, "feet")
  2929. },
  2930. ]
  2931. ))
  2932. characterMakers.push(() => makeCharacter(
  2933. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2934. {
  2935. side: {
  2936. height: math.unit(6, "feet"),
  2937. weight: math.unit(75, "kg"),
  2938. name: "Side",
  2939. image: {
  2940. source: "./media/characters/aigey/side.svg"
  2941. }
  2942. },
  2943. },
  2944. [
  2945. {
  2946. name: "Macro",
  2947. height: math.unit(200, "feet"),
  2948. default: true
  2949. },
  2950. {
  2951. name: "Megamacro",
  2952. height: math.unit(100, "miles")
  2953. },
  2954. ]
  2955. )
  2956. )
  2957. characterMakers.push(() => makeCharacter(
  2958. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2959. {
  2960. front: {
  2961. height: math.unit(5 + 5 / 12, "feet"),
  2962. weight: math.unit(75, "kg"),
  2963. name: "Front",
  2964. image: {
  2965. source: "./media/characters/natasha/front.svg",
  2966. extra: 859 / 824,
  2967. bottom: 23 / 879.6
  2968. }
  2969. },
  2970. frontNsfw: {
  2971. height: math.unit(5 + 5 / 12, "feet"),
  2972. weight: math.unit(75, "kg"),
  2973. name: "Front (NSFW)",
  2974. image: {
  2975. source: "./media/characters/natasha/front-nsfw.svg",
  2976. extra: 859 / 824,
  2977. bottom: 23 / 879.6
  2978. }
  2979. },
  2980. frontErect: {
  2981. height: math.unit(5 + 5 / 12, "feet"),
  2982. weight: math.unit(75, "kg"),
  2983. name: "Front (Erect)",
  2984. image: {
  2985. source: "./media/characters/natasha/front-erect.svg",
  2986. extra: 859 / 824,
  2987. bottom: 23 / 879.6
  2988. }
  2989. },
  2990. back: {
  2991. height: math.unit(5 + 5 / 12, "feet"),
  2992. weight: math.unit(75, "kg"),
  2993. name: "Back",
  2994. image: {
  2995. source: "./media/characters/natasha/back.svg",
  2996. extra: 887.9 / 852.6,
  2997. bottom: 9.7 / 896.4
  2998. }
  2999. },
  3000. backAlt: {
  3001. height: math.unit(5 + 5 / 12, "feet"),
  3002. weight: math.unit(75, "kg"),
  3003. name: "Back (Alt)",
  3004. image: {
  3005. source: "./media/characters/natasha/back-alt.svg",
  3006. extra: 1236.7 / 1192,
  3007. bottom: 22.3 / 1258.2
  3008. }
  3009. },
  3010. dick: {
  3011. height: math.unit(1.772, "feet"),
  3012. name: "Dick",
  3013. image: {
  3014. source: "./media/characters/natasha/dick.svg"
  3015. }
  3016. },
  3017. paw: {
  3018. height: math.unit(0.250, "meters"),
  3019. name: "Paw",
  3020. image: {
  3021. source: "./media/characters/natasha/paw.svg"
  3022. }
  3023. },
  3024. },
  3025. [
  3026. {
  3027. name: "Normal",
  3028. height: math.unit(5 + 5 / 12, "feet")
  3029. },
  3030. {
  3031. name: "Large",
  3032. height: math.unit(12, "feet")
  3033. },
  3034. {
  3035. name: "Macro",
  3036. height: math.unit(100, "feet"),
  3037. default: true
  3038. },
  3039. {
  3040. name: "Macro+",
  3041. height: math.unit(260, "feet")
  3042. },
  3043. {
  3044. name: "Macro++",
  3045. height: math.unit(1, "mile")
  3046. },
  3047. ]
  3048. ))
  3049. characterMakers.push(() => makeCharacter(
  3050. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3051. {
  3052. front: {
  3053. height: math.unit(6, "feet"),
  3054. weight: math.unit(75, "kg"),
  3055. name: "Front",
  3056. image: {
  3057. source: "./media/characters/malik/front.svg"
  3058. }
  3059. },
  3060. side: {
  3061. height: math.unit(6, "feet"),
  3062. weight: math.unit(75, "kg"),
  3063. name: "Side",
  3064. image: {
  3065. source: "./media/characters/malik/side.svg",
  3066. extra: 1.1539
  3067. }
  3068. },
  3069. back: {
  3070. height: math.unit(6, "feet"),
  3071. weight: math.unit(75, "kg"),
  3072. name: "Back",
  3073. image: {
  3074. source: "./media/characters/malik/back.svg"
  3075. }
  3076. },
  3077. },
  3078. [
  3079. {
  3080. name: "Macro",
  3081. height: math.unit(156, "feet"),
  3082. default: true
  3083. },
  3084. {
  3085. name: "Macro+",
  3086. height: math.unit(1188, "feet")
  3087. },
  3088. ]
  3089. ))
  3090. characterMakers.push(() => makeCharacter(
  3091. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3092. {
  3093. front: {
  3094. height: math.unit(6, "feet"),
  3095. weight: math.unit(75, "kg"),
  3096. name: "Front",
  3097. image: {
  3098. source: "./media/characters/sefer/front.svg",
  3099. extra: 848 / 659,
  3100. bottom: 28.3 / 876.442
  3101. }
  3102. },
  3103. back: {
  3104. height: math.unit(6, "feet"),
  3105. weight: math.unit(75, "kg"),
  3106. name: "Back",
  3107. image: {
  3108. source: "./media/characters/sefer/back.svg",
  3109. extra: 864 / 695,
  3110. bottom: 10 / 871
  3111. }
  3112. },
  3113. frontDressed: {
  3114. height: math.unit(6, "feet"),
  3115. weight: math.unit(75, "kg"),
  3116. name: "Front (Dressed)",
  3117. image: {
  3118. source: "./media/characters/sefer/front-dressed.svg",
  3119. extra: 839 / 653,
  3120. bottom: 37.6 / 878
  3121. }
  3122. },
  3123. },
  3124. [
  3125. {
  3126. name: "Normal",
  3127. height: math.unit(6, "feet"),
  3128. default: true
  3129. },
  3130. ]
  3131. ))
  3132. characterMakers.push(() => makeCharacter(
  3133. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3134. {
  3135. body: {
  3136. height: math.unit(2.2428, "meter"),
  3137. weight: math.unit(124.738, "kg"),
  3138. name: "Body",
  3139. image: {
  3140. extra: 1225 / 1050,
  3141. source: "./media/characters/north/front.svg"
  3142. }
  3143. }
  3144. },
  3145. [
  3146. {
  3147. name: "Micro",
  3148. height: math.unit(4, "inches")
  3149. },
  3150. {
  3151. name: "Macro",
  3152. height: math.unit(63, "meters")
  3153. },
  3154. {
  3155. name: "Megamacro",
  3156. height: math.unit(101, "miles"),
  3157. default: true
  3158. }
  3159. ]
  3160. ))
  3161. characterMakers.push(() => makeCharacter(
  3162. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3163. {
  3164. angled: {
  3165. height: math.unit(4, "meter"),
  3166. weight: math.unit(150, "kg"),
  3167. name: "Angled",
  3168. image: {
  3169. source: "./media/characters/talan/angled-sfw.svg",
  3170. bottom: 29 / 3734
  3171. }
  3172. },
  3173. angledNsfw: {
  3174. height: math.unit(4, "meter"),
  3175. weight: math.unit(150, "kg"),
  3176. name: "Angled (NSFW)",
  3177. image: {
  3178. source: "./media/characters/talan/angled-nsfw.svg",
  3179. bottom: 29 / 3734
  3180. }
  3181. },
  3182. frontNsfw: {
  3183. height: math.unit(4, "meter"),
  3184. weight: math.unit(150, "kg"),
  3185. name: "Front (NSFW)",
  3186. image: {
  3187. source: "./media/characters/talan/front-nsfw.svg",
  3188. bottom: 29 / 3734
  3189. }
  3190. },
  3191. sideNsfw: {
  3192. height: math.unit(4, "meter"),
  3193. weight: math.unit(150, "kg"),
  3194. name: "Side (NSFW)",
  3195. image: {
  3196. source: "./media/characters/talan/side-nsfw.svg",
  3197. bottom: 29 / 3734
  3198. }
  3199. },
  3200. back: {
  3201. height: math.unit(4, "meter"),
  3202. weight: math.unit(150, "kg"),
  3203. name: "Back",
  3204. image: {
  3205. source: "./media/characters/talan/back.svg"
  3206. }
  3207. },
  3208. dickBottom: {
  3209. height: math.unit(0.621, "meter"),
  3210. name: "Dick (Bottom)",
  3211. image: {
  3212. source: "./media/characters/talan/dick-bottom.svg"
  3213. }
  3214. },
  3215. dickTop: {
  3216. height: math.unit(0.621, "meter"),
  3217. name: "Dick (Top)",
  3218. image: {
  3219. source: "./media/characters/talan/dick-top.svg"
  3220. }
  3221. },
  3222. dickSide: {
  3223. height: math.unit(0.305, "meter"),
  3224. name: "Dick (Side)",
  3225. image: {
  3226. source: "./media/characters/talan/dick-side.svg"
  3227. }
  3228. },
  3229. dickFront: {
  3230. height: math.unit(0.305, "meter"),
  3231. name: "Dick (Front)",
  3232. image: {
  3233. source: "./media/characters/talan/dick-front.svg"
  3234. }
  3235. },
  3236. },
  3237. [
  3238. {
  3239. name: "Normal",
  3240. height: math.unit(4, "meters")
  3241. },
  3242. {
  3243. name: "Macro",
  3244. height: math.unit(100, "meters")
  3245. },
  3246. {
  3247. name: "Megamacro",
  3248. height: math.unit(2, "miles"),
  3249. default: true
  3250. },
  3251. {
  3252. name: "Gigamacro",
  3253. height: math.unit(5000, "miles")
  3254. },
  3255. {
  3256. name: "Teramacro",
  3257. height: math.unit(100, "parsecs")
  3258. }
  3259. ]
  3260. ))
  3261. characterMakers.push(() => makeCharacter(
  3262. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3263. {
  3264. front: {
  3265. height: math.unit(2, "meter"),
  3266. weight: math.unit(90, "kg"),
  3267. name: "Front",
  3268. image: {
  3269. source: "./media/characters/gael'rathus/front.svg"
  3270. }
  3271. },
  3272. frontAlt: {
  3273. height: math.unit(2, "meter"),
  3274. weight: math.unit(90, "kg"),
  3275. name: "Front (alt)",
  3276. image: {
  3277. source: "./media/characters/gael'rathus/front-alt.svg"
  3278. }
  3279. },
  3280. frontAlt2: {
  3281. height: math.unit(2, "meter"),
  3282. weight: math.unit(90, "kg"),
  3283. name: "Front (alt 2)",
  3284. image: {
  3285. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3286. }
  3287. }
  3288. },
  3289. [
  3290. {
  3291. name: "Normal",
  3292. height: math.unit(9, "feet"),
  3293. default: true
  3294. },
  3295. {
  3296. name: "Large",
  3297. height: math.unit(25, "feet")
  3298. },
  3299. {
  3300. name: "Macro",
  3301. height: math.unit(0.25, "miles")
  3302. },
  3303. {
  3304. name: "Megamacro",
  3305. height: math.unit(10, "miles")
  3306. }
  3307. ]
  3308. ))
  3309. characterMakers.push(() => makeCharacter(
  3310. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3311. {
  3312. side: {
  3313. height: math.unit(2, "meter"),
  3314. weight: math.unit(140, "kg"),
  3315. name: "Side",
  3316. image: {
  3317. source: "./media/characters/sosha/side.svg",
  3318. bottom: 0.042
  3319. }
  3320. },
  3321. },
  3322. [
  3323. {
  3324. name: "Normal",
  3325. height: math.unit(12, "feet"),
  3326. default: true
  3327. }
  3328. ]
  3329. ))
  3330. characterMakers.push(() => makeCharacter(
  3331. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3332. {
  3333. side: {
  3334. height: math.unit(5 + 5 / 12, "feet"),
  3335. weight: math.unit(170, "kg"),
  3336. name: "Side",
  3337. image: {
  3338. source: "./media/characters/runnola/side.svg",
  3339. extra: 741 / 448,
  3340. bottom: 0.05
  3341. }
  3342. },
  3343. },
  3344. [
  3345. {
  3346. name: "Small",
  3347. height: math.unit(3, "feet")
  3348. },
  3349. {
  3350. name: "Normal",
  3351. height: math.unit(5 + 5 / 12, "feet"),
  3352. default: true
  3353. },
  3354. {
  3355. name: "Big",
  3356. height: math.unit(10, "feet")
  3357. },
  3358. ]
  3359. ))
  3360. characterMakers.push(() => makeCharacter(
  3361. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3362. {
  3363. front: {
  3364. height: math.unit(2, "meter"),
  3365. weight: math.unit(50, "kg"),
  3366. name: "Front",
  3367. image: {
  3368. source: "./media/characters/kurribird/front.svg",
  3369. bottom: 0.015
  3370. }
  3371. },
  3372. frontAlt: {
  3373. height: math.unit(1.5, "meter"),
  3374. weight: math.unit(50, "kg"),
  3375. name: "Front (Alt)",
  3376. image: {
  3377. source: "./media/characters/kurribird/front-alt.svg",
  3378. extra: 1.45
  3379. }
  3380. },
  3381. },
  3382. [
  3383. {
  3384. name: "Normal",
  3385. height: math.unit(7, "feet")
  3386. },
  3387. {
  3388. name: "Big",
  3389. height: math.unit(12, "feet"),
  3390. default: true
  3391. },
  3392. {
  3393. name: "Macro",
  3394. height: math.unit(1500, "feet")
  3395. },
  3396. {
  3397. name: "Megamacro",
  3398. height: math.unit(2, "miles")
  3399. }
  3400. ]
  3401. ))
  3402. characterMakers.push(() => makeCharacter(
  3403. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3404. {
  3405. front: {
  3406. height: math.unit(2, "meter"),
  3407. weight: math.unit(80, "kg"),
  3408. name: "Front",
  3409. image: {
  3410. source: "./media/characters/elbial/front.svg",
  3411. extra: 1643 / 1556,
  3412. bottom: 60.2 / 1696
  3413. }
  3414. },
  3415. side: {
  3416. height: math.unit(2, "meter"),
  3417. weight: math.unit(80, "kg"),
  3418. name: "Side",
  3419. image: {
  3420. source: "./media/characters/elbial/side.svg",
  3421. extra: 1630 / 1565,
  3422. bottom: 71.5 / 1697
  3423. }
  3424. },
  3425. back: {
  3426. height: math.unit(2, "meter"),
  3427. weight: math.unit(80, "kg"),
  3428. name: "Back",
  3429. image: {
  3430. source: "./media/characters/elbial/back.svg",
  3431. extra: 1668 / 1595,
  3432. bottom: 5.6 / 1672
  3433. }
  3434. },
  3435. frontDressed: {
  3436. height: math.unit(2, "meter"),
  3437. weight: math.unit(80, "kg"),
  3438. name: "Front (Dressed)",
  3439. image: {
  3440. source: "./media/characters/elbial/front-dressed.svg",
  3441. extra: 1653 / 1584,
  3442. bottom: 57 / 1708
  3443. }
  3444. },
  3445. genitals: {
  3446. height: math.unit(2 / 3.367, "meter"),
  3447. name: "Genitals",
  3448. image: {
  3449. source: "./media/characters/elbial/genitals.svg"
  3450. }
  3451. },
  3452. },
  3453. [
  3454. {
  3455. name: "Large",
  3456. height: math.unit(100, "feet")
  3457. },
  3458. {
  3459. name: "Macro",
  3460. height: math.unit(500, "feet"),
  3461. default: true
  3462. },
  3463. {
  3464. name: "Megamacro",
  3465. height: math.unit(10, "miles")
  3466. },
  3467. {
  3468. name: "Gigamacro",
  3469. height: math.unit(25000, "miles")
  3470. },
  3471. {
  3472. name: "Full-Size",
  3473. height: math.unit(8000000, "gigaparsecs")
  3474. }
  3475. ]
  3476. ))
  3477. characterMakers.push(() => makeCharacter(
  3478. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3479. {
  3480. front: {
  3481. height: math.unit(2, "meter"),
  3482. weight: math.unit(60, "kg"),
  3483. name: "Front",
  3484. image: {
  3485. source: "./media/characters/noah/front.svg"
  3486. }
  3487. },
  3488. talons: {
  3489. height: math.unit(0.315, "meter"),
  3490. name: "Talons",
  3491. image: {
  3492. source: "./media/characters/noah/talons.svg"
  3493. }
  3494. }
  3495. },
  3496. [
  3497. {
  3498. name: "Large",
  3499. height: math.unit(50, "feet")
  3500. },
  3501. {
  3502. name: "Macro",
  3503. height: math.unit(750, "feet"),
  3504. default: true
  3505. },
  3506. {
  3507. name: "Megamacro",
  3508. height: math.unit(50, "miles")
  3509. },
  3510. {
  3511. name: "Gigamacro",
  3512. height: math.unit(100000, "miles")
  3513. },
  3514. {
  3515. name: "Full-Size",
  3516. height: math.unit(3000000000, "miles")
  3517. }
  3518. ]
  3519. ))
  3520. characterMakers.push(() => makeCharacter(
  3521. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3522. {
  3523. front: {
  3524. height: math.unit(2, "meter"),
  3525. weight: math.unit(80, "kg"),
  3526. name: "Front",
  3527. image: {
  3528. source: "./media/characters/natalya/front.svg"
  3529. }
  3530. },
  3531. back: {
  3532. height: math.unit(2, "meter"),
  3533. weight: math.unit(80, "kg"),
  3534. name: "Back",
  3535. image: {
  3536. source: "./media/characters/natalya/back.svg"
  3537. }
  3538. }
  3539. },
  3540. [
  3541. {
  3542. name: "Normal",
  3543. height: math.unit(150, "feet"),
  3544. default: true
  3545. },
  3546. {
  3547. name: "Megamacro",
  3548. height: math.unit(5, "miles")
  3549. },
  3550. {
  3551. name: "Full-Size",
  3552. height: math.unit(600, "kiloparsecs")
  3553. }
  3554. ]
  3555. ))
  3556. characterMakers.push(() => makeCharacter(
  3557. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3558. {
  3559. front: {
  3560. height: math.unit(2, "meter"),
  3561. weight: math.unit(50, "kg"),
  3562. name: "Front",
  3563. image: {
  3564. source: "./media/characters/erestrebah/front.svg",
  3565. extra: 1262/1162,
  3566. bottom: 96/1358
  3567. }
  3568. },
  3569. back: {
  3570. height: math.unit(2, "meter"),
  3571. weight: math.unit(50, "kg"),
  3572. name: "Back",
  3573. image: {
  3574. source: "./media/characters/erestrebah/back.svg",
  3575. extra: 1257/1139,
  3576. bottom: 13/1270
  3577. }
  3578. },
  3579. wing: {
  3580. height: math.unit(2, "meter"),
  3581. weight: math.unit(50, "kg"),
  3582. name: "Wing",
  3583. image: {
  3584. source: "./media/characters/erestrebah/wing.svg",
  3585. extra: 1262/1162,
  3586. bottom: 96/1358
  3587. }
  3588. },
  3589. mouth: {
  3590. height: math.unit(0.39, "feet"),
  3591. name: "Mouth",
  3592. image: {
  3593. source: "./media/characters/erestrebah/mouth.svg"
  3594. }
  3595. }
  3596. },
  3597. [
  3598. {
  3599. name: "Normal",
  3600. height: math.unit(10, "feet")
  3601. },
  3602. {
  3603. name: "Large",
  3604. height: math.unit(50, "feet"),
  3605. default: true
  3606. },
  3607. {
  3608. name: "Macro",
  3609. height: math.unit(300, "feet")
  3610. },
  3611. {
  3612. name: "Macro+",
  3613. height: math.unit(750, "feet")
  3614. },
  3615. {
  3616. name: "Megamacro",
  3617. height: math.unit(3, "miles")
  3618. }
  3619. ]
  3620. ))
  3621. characterMakers.push(() => makeCharacter(
  3622. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3623. {
  3624. front: {
  3625. height: math.unit(2, "meter"),
  3626. weight: math.unit(80, "kg"),
  3627. name: "Front",
  3628. image: {
  3629. source: "./media/characters/jennifer/front.svg",
  3630. bottom: 0.11,
  3631. extra: 1.16
  3632. }
  3633. },
  3634. frontAlt: {
  3635. height: math.unit(2, "meter"),
  3636. weight: math.unit(80, "kg"),
  3637. name: "Front (Alt)",
  3638. image: {
  3639. source: "./media/characters/jennifer/front-alt.svg"
  3640. }
  3641. }
  3642. },
  3643. [
  3644. {
  3645. name: "Canon Height",
  3646. height: math.unit(120, "feet"),
  3647. default: true
  3648. },
  3649. {
  3650. name: "Macro+",
  3651. height: math.unit(300, "feet")
  3652. },
  3653. {
  3654. name: "Megamacro",
  3655. height: math.unit(20000, "feet")
  3656. }
  3657. ]
  3658. ))
  3659. characterMakers.push(() => makeCharacter(
  3660. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3661. {
  3662. front: {
  3663. height: math.unit(2, "meter"),
  3664. weight: math.unit(50, "kg"),
  3665. name: "Front",
  3666. image: {
  3667. source: "./media/characters/kalista/front.svg",
  3668. extra: 1947 / 1700,
  3669. bottom: 76.6 / 1412.98
  3670. }
  3671. },
  3672. back: {
  3673. height: math.unit(2, "meter"),
  3674. weight: math.unit(50, "kg"),
  3675. name: "Back",
  3676. image: {
  3677. source: "./media/characters/kalista/back.svg",
  3678. extra: 1366 / 1156,
  3679. bottom: 33.9 / 1362.78
  3680. }
  3681. }
  3682. },
  3683. [
  3684. {
  3685. name: "Uncomfortably Small",
  3686. height: math.unit(10, "feet")
  3687. },
  3688. {
  3689. name: "Small",
  3690. height: math.unit(30, "feet")
  3691. },
  3692. {
  3693. name: "Macro",
  3694. height: math.unit(100, "feet"),
  3695. default: true
  3696. },
  3697. {
  3698. name: "Macro+",
  3699. height: math.unit(2000, "feet")
  3700. },
  3701. {
  3702. name: "True Form",
  3703. height: math.unit(8924, "miles")
  3704. }
  3705. ]
  3706. ))
  3707. characterMakers.push(() => makeCharacter(
  3708. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3709. {
  3710. front: {
  3711. height: math.unit(2, "meter"),
  3712. weight: math.unit(120, "kg"),
  3713. name: "Front",
  3714. image: {
  3715. source: "./media/characters/ggv/front.svg"
  3716. }
  3717. },
  3718. side: {
  3719. height: math.unit(2, "meter"),
  3720. weight: math.unit(120, "kg"),
  3721. name: "Side",
  3722. image: {
  3723. source: "./media/characters/ggv/side.svg"
  3724. }
  3725. }
  3726. },
  3727. [
  3728. {
  3729. name: "Extremely Puny",
  3730. height: math.unit(9 + 5 / 12, "feet")
  3731. },
  3732. {
  3733. name: "Horribly Small",
  3734. height: math.unit(47.7, "miles"),
  3735. default: true
  3736. },
  3737. {
  3738. name: "Reasonably Sized",
  3739. height: math.unit(25000, "parsecs")
  3740. },
  3741. {
  3742. name: "Slightly Uncompressed",
  3743. height: math.unit(7.77e31, "parsecs")
  3744. },
  3745. {
  3746. name: "Omniversal",
  3747. height: math.unit(1e300, "meters")
  3748. },
  3749. ]
  3750. ))
  3751. characterMakers.push(() => makeCharacter(
  3752. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3753. {
  3754. front: {
  3755. height: math.unit(2, "meter"),
  3756. weight: math.unit(75, "lb"),
  3757. name: "Front",
  3758. image: {
  3759. source: "./media/characters/napalm/front.svg"
  3760. }
  3761. },
  3762. back: {
  3763. height: math.unit(2, "meter"),
  3764. weight: math.unit(75, "lb"),
  3765. name: "Back",
  3766. image: {
  3767. source: "./media/characters/napalm/back.svg"
  3768. }
  3769. }
  3770. },
  3771. [
  3772. {
  3773. name: "Standard",
  3774. height: math.unit(55, "feet"),
  3775. default: true
  3776. }
  3777. ]
  3778. ))
  3779. characterMakers.push(() => makeCharacter(
  3780. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3781. {
  3782. front: {
  3783. height: math.unit(7 + 5 / 6, "feet"),
  3784. weight: math.unit(325, "lb"),
  3785. name: "Front",
  3786. image: {
  3787. source: "./media/characters/asana/front.svg",
  3788. extra: 1133 / 1060,
  3789. bottom: 15.2 / 1148.6
  3790. }
  3791. },
  3792. back: {
  3793. height: math.unit(7 + 5 / 6, "feet"),
  3794. weight: math.unit(325, "lb"),
  3795. name: "Back",
  3796. image: {
  3797. source: "./media/characters/asana/back.svg",
  3798. extra: 1114 / 1043,
  3799. bottom: 5 / 1120
  3800. }
  3801. },
  3802. dressedDark: {
  3803. height: math.unit(7 + 5 / 6, "feet"),
  3804. weight: math.unit(325, "lb"),
  3805. name: "Dressed (Dark)",
  3806. image: {
  3807. source: "./media/characters/asana/dressed-dark.svg",
  3808. extra: 1133 / 1060,
  3809. bottom: 15.2 / 1148.6
  3810. }
  3811. },
  3812. dressedLight: {
  3813. height: math.unit(7 + 5 / 6, "feet"),
  3814. weight: math.unit(325, "lb"),
  3815. name: "Dressed (Light)",
  3816. image: {
  3817. source: "./media/characters/asana/dressed-light.svg",
  3818. extra: 1133 / 1060,
  3819. bottom: 15.2 / 1148.6
  3820. }
  3821. },
  3822. },
  3823. [
  3824. {
  3825. name: "Standard",
  3826. height: math.unit(7 + 5 / 6, "feet"),
  3827. default: true
  3828. },
  3829. {
  3830. name: "Large",
  3831. height: math.unit(10, "meters")
  3832. },
  3833. {
  3834. name: "Macro",
  3835. height: math.unit(2500, "meters")
  3836. },
  3837. {
  3838. name: "Megamacro",
  3839. height: math.unit(5e6, "meters")
  3840. },
  3841. {
  3842. name: "Examacro",
  3843. height: math.unit(5e12, "lightyears")
  3844. },
  3845. {
  3846. name: "Max Size",
  3847. height: math.unit(1e31, "lightyears")
  3848. }
  3849. ]
  3850. ))
  3851. characterMakers.push(() => makeCharacter(
  3852. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3853. {
  3854. front: {
  3855. height: math.unit(2, "meter"),
  3856. weight: math.unit(60, "kg"),
  3857. name: "Front",
  3858. image: {
  3859. source: "./media/characters/ebony/front.svg",
  3860. bottom: 0.03,
  3861. extra: 1045 / 810 + 0.03
  3862. }
  3863. },
  3864. side: {
  3865. height: math.unit(2, "meter"),
  3866. weight: math.unit(60, "kg"),
  3867. name: "Side",
  3868. image: {
  3869. source: "./media/characters/ebony/side.svg",
  3870. bottom: 0.03,
  3871. extra: 1045 / 810 + 0.03
  3872. }
  3873. },
  3874. back: {
  3875. height: math.unit(2, "meter"),
  3876. weight: math.unit(60, "kg"),
  3877. name: "Back",
  3878. image: {
  3879. source: "./media/characters/ebony/back.svg",
  3880. bottom: 0.01,
  3881. extra: 1045 / 810 + 0.01
  3882. }
  3883. },
  3884. },
  3885. [
  3886. // TODO check why I did this lol
  3887. {
  3888. name: "Standard",
  3889. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3890. default: true
  3891. },
  3892. {
  3893. name: "Macro",
  3894. height: math.unit(200, "feet")
  3895. },
  3896. {
  3897. name: "Gigamacro",
  3898. height: math.unit(13000, "km")
  3899. }
  3900. ]
  3901. ))
  3902. characterMakers.push(() => makeCharacter(
  3903. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3904. {
  3905. front: {
  3906. height: math.unit(6, "feet"),
  3907. weight: math.unit(175, "lb"),
  3908. name: "Front",
  3909. image: {
  3910. source: "./media/characters/mountain/front.svg",
  3911. extra: 972 / 955,
  3912. bottom: 64 / 1036.6
  3913. }
  3914. },
  3915. back: {
  3916. height: math.unit(6, "feet"),
  3917. weight: math.unit(175, "lb"),
  3918. name: "Back",
  3919. image: {
  3920. source: "./media/characters/mountain/back.svg",
  3921. extra: 970 / 950,
  3922. bottom: 28.25 / 999
  3923. }
  3924. },
  3925. },
  3926. [
  3927. {
  3928. name: "Large",
  3929. height: math.unit(20, "meters")
  3930. },
  3931. {
  3932. name: "Macro",
  3933. height: math.unit(300, "meters")
  3934. },
  3935. {
  3936. name: "Gigamacro",
  3937. height: math.unit(10000, "km"),
  3938. default: true
  3939. },
  3940. {
  3941. name: "Examacro",
  3942. height: math.unit(10e9, "lightyears")
  3943. }
  3944. ]
  3945. ))
  3946. characterMakers.push(() => makeCharacter(
  3947. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3948. {
  3949. front: {
  3950. height: math.unit(8, "feet"),
  3951. weight: math.unit(500, "lb"),
  3952. name: "Front",
  3953. image: {
  3954. source: "./media/characters/rick/front.svg"
  3955. }
  3956. }
  3957. },
  3958. [
  3959. {
  3960. name: "Normal",
  3961. height: math.unit(8, "feet"),
  3962. default: true
  3963. },
  3964. {
  3965. name: "Macro",
  3966. height: math.unit(5, "km")
  3967. }
  3968. ]
  3969. ))
  3970. characterMakers.push(() => makeCharacter(
  3971. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3972. {
  3973. front: {
  3974. height: math.unit(8, "feet"),
  3975. weight: math.unit(120, "lb"),
  3976. name: "Front",
  3977. image: {
  3978. source: "./media/characters/ona/front.svg"
  3979. }
  3980. },
  3981. frontAlt: {
  3982. height: math.unit(8, "feet"),
  3983. weight: math.unit(120, "lb"),
  3984. name: "Front (Alt)",
  3985. image: {
  3986. source: "./media/characters/ona/front-alt.svg"
  3987. }
  3988. },
  3989. back: {
  3990. height: math.unit(8, "feet"),
  3991. weight: math.unit(120, "lb"),
  3992. name: "Back",
  3993. image: {
  3994. source: "./media/characters/ona/back.svg"
  3995. }
  3996. },
  3997. foot: {
  3998. height: math.unit(1.1, "feet"),
  3999. name: "Foot",
  4000. image: {
  4001. source: "./media/characters/ona/foot.svg"
  4002. }
  4003. }
  4004. },
  4005. [
  4006. {
  4007. name: "Megamacro",
  4008. height: math.unit(70, "km"),
  4009. default: true
  4010. },
  4011. {
  4012. name: "Gigamacro",
  4013. height: math.unit(681818, "miles")
  4014. },
  4015. {
  4016. name: "Examacro",
  4017. height: math.unit(3800000, "lightyears")
  4018. },
  4019. ]
  4020. ))
  4021. characterMakers.push(() => makeCharacter(
  4022. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4023. {
  4024. front: {
  4025. height: math.unit(12, "feet"),
  4026. weight: math.unit(3000, "lb"),
  4027. name: "Front",
  4028. image: {
  4029. source: "./media/characters/mech/front.svg",
  4030. extra: 2900 / 2770,
  4031. bottom: 110 / 3010
  4032. }
  4033. },
  4034. back: {
  4035. height: math.unit(12, "feet"),
  4036. weight: math.unit(3000, "lb"),
  4037. name: "Back",
  4038. image: {
  4039. source: "./media/characters/mech/back.svg",
  4040. extra: 3011 / 2890,
  4041. bottom: 94 / 3105
  4042. }
  4043. },
  4044. maw: {
  4045. height: math.unit(3.07, "feet"),
  4046. name: "Maw",
  4047. image: {
  4048. source: "./media/characters/mech/maw.svg"
  4049. }
  4050. },
  4051. head: {
  4052. height: math.unit(2.82, "feet"),
  4053. name: "Head",
  4054. image: {
  4055. source: "./media/characters/mech/head.svg"
  4056. }
  4057. },
  4058. dick: {
  4059. height: math.unit(1.43, "feet"),
  4060. name: "Dick",
  4061. image: {
  4062. source: "./media/characters/mech/dick.svg"
  4063. }
  4064. },
  4065. },
  4066. [
  4067. {
  4068. name: "Normal",
  4069. height: math.unit(12, "feet")
  4070. },
  4071. {
  4072. name: "Macro",
  4073. height: math.unit(300, "feet"),
  4074. default: true
  4075. },
  4076. {
  4077. name: "Macro+",
  4078. height: math.unit(1500, "feet")
  4079. },
  4080. ]
  4081. ))
  4082. characterMakers.push(() => makeCharacter(
  4083. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4084. {
  4085. front: {
  4086. height: math.unit(1.3, "meter"),
  4087. weight: math.unit(30, "kg"),
  4088. name: "Front",
  4089. image: {
  4090. source: "./media/characters/gregory/front.svg",
  4091. }
  4092. }
  4093. },
  4094. [
  4095. {
  4096. name: "Normal",
  4097. height: math.unit(1.3, "meter"),
  4098. default: true
  4099. },
  4100. {
  4101. name: "Macro",
  4102. height: math.unit(20, "meter")
  4103. }
  4104. ]
  4105. ))
  4106. characterMakers.push(() => makeCharacter(
  4107. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4108. {
  4109. front: {
  4110. height: math.unit(2.8, "meter"),
  4111. weight: math.unit(200, "kg"),
  4112. name: "Front",
  4113. image: {
  4114. source: "./media/characters/elory/front.svg",
  4115. }
  4116. }
  4117. },
  4118. [
  4119. {
  4120. name: "Normal",
  4121. height: math.unit(2.8, "meter"),
  4122. default: true
  4123. },
  4124. {
  4125. name: "Macro",
  4126. height: math.unit(38, "meter")
  4127. }
  4128. ]
  4129. ))
  4130. characterMakers.push(() => makeCharacter(
  4131. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4132. {
  4133. front: {
  4134. height: math.unit(470, "feet"),
  4135. weight: math.unit(924, "tons"),
  4136. name: "Front",
  4137. image: {
  4138. source: "./media/characters/angelpatamon/front.svg",
  4139. }
  4140. }
  4141. },
  4142. [
  4143. {
  4144. name: "Normal",
  4145. height: math.unit(470, "feet"),
  4146. default: true
  4147. },
  4148. {
  4149. name: "Deity Size I",
  4150. height: math.unit(28651.2, "km")
  4151. },
  4152. {
  4153. name: "Deity Size II",
  4154. height: math.unit(171907.2, "km")
  4155. }
  4156. ]
  4157. ))
  4158. characterMakers.push(() => makeCharacter(
  4159. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4160. {
  4161. side: {
  4162. height: math.unit(7.2, "meter"),
  4163. weight: math.unit(8.2, "tons"),
  4164. name: "Side",
  4165. image: {
  4166. source: "./media/characters/cryae/side.svg",
  4167. extra: 3500 / 1500
  4168. }
  4169. }
  4170. },
  4171. [
  4172. {
  4173. name: "Normal",
  4174. height: math.unit(7.2, "meter"),
  4175. default: true
  4176. }
  4177. ]
  4178. ))
  4179. characterMakers.push(() => makeCharacter(
  4180. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4181. {
  4182. front: {
  4183. height: math.unit(6, "feet"),
  4184. weight: math.unit(175, "lb"),
  4185. name: "Front",
  4186. image: {
  4187. source: "./media/characters/xera/front.svg",
  4188. extra: 2377 / 1972,
  4189. bottom: 75.5 / 2452
  4190. }
  4191. },
  4192. side: {
  4193. height: math.unit(6, "feet"),
  4194. weight: math.unit(175, "lb"),
  4195. name: "Side",
  4196. image: {
  4197. source: "./media/characters/xera/side.svg",
  4198. extra: 2345 / 2019,
  4199. bottom: 39.7 / 2384
  4200. }
  4201. },
  4202. back: {
  4203. height: math.unit(6, "feet"),
  4204. weight: math.unit(175, "lb"),
  4205. name: "Back",
  4206. image: {
  4207. source: "./media/characters/xera/back.svg",
  4208. extra: 2095 / 1984,
  4209. bottom: 67 / 2166
  4210. }
  4211. },
  4212. },
  4213. [
  4214. {
  4215. name: "Small",
  4216. height: math.unit(10, "feet")
  4217. },
  4218. {
  4219. name: "Macro",
  4220. height: math.unit(500, "meters"),
  4221. default: true
  4222. },
  4223. {
  4224. name: "Macro+",
  4225. height: math.unit(10, "km")
  4226. },
  4227. {
  4228. name: "Gigamacro",
  4229. height: math.unit(25000, "km")
  4230. },
  4231. {
  4232. name: "Teramacro",
  4233. height: math.unit(3e6, "km")
  4234. }
  4235. ]
  4236. ))
  4237. characterMakers.push(() => makeCharacter(
  4238. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4239. {
  4240. front: {
  4241. height: math.unit(6, "feet"),
  4242. weight: math.unit(175, "lb"),
  4243. name: "Front",
  4244. image: {
  4245. source: "./media/characters/nebula/front.svg",
  4246. extra: 2566 / 2362,
  4247. bottom: 81 / 2644
  4248. }
  4249. }
  4250. },
  4251. [
  4252. {
  4253. name: "Small",
  4254. height: math.unit(4.5, "meters")
  4255. },
  4256. {
  4257. name: "Macro",
  4258. height: math.unit(1500, "meters"),
  4259. default: true
  4260. },
  4261. {
  4262. name: "Megamacro",
  4263. height: math.unit(150, "km")
  4264. },
  4265. {
  4266. name: "Gigamacro",
  4267. height: math.unit(27000, "km")
  4268. }
  4269. ]
  4270. ))
  4271. characterMakers.push(() => makeCharacter(
  4272. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4273. {
  4274. front: {
  4275. height: math.unit(6, "feet"),
  4276. weight: math.unit(225, "lb"),
  4277. name: "Front",
  4278. image: {
  4279. source: "./media/characters/abysgar/front.svg"
  4280. }
  4281. }
  4282. },
  4283. [
  4284. {
  4285. name: "Small",
  4286. height: math.unit(4.5, "meters")
  4287. },
  4288. {
  4289. name: "Macro",
  4290. height: math.unit(1250, "meters"),
  4291. default: true
  4292. },
  4293. {
  4294. name: "Megamacro",
  4295. height: math.unit(125, "km")
  4296. },
  4297. {
  4298. name: "Gigamacro",
  4299. height: math.unit(26000, "km")
  4300. }
  4301. ]
  4302. ))
  4303. characterMakers.push(() => makeCharacter(
  4304. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4305. {
  4306. front: {
  4307. height: math.unit(6, "feet"),
  4308. weight: math.unit(180, "lb"),
  4309. name: "Front",
  4310. image: {
  4311. source: "./media/characters/yakuz/front.svg"
  4312. }
  4313. }
  4314. },
  4315. [
  4316. {
  4317. name: "Small",
  4318. height: math.unit(5, "meters")
  4319. },
  4320. {
  4321. name: "Macro",
  4322. height: math.unit(1500, "meters"),
  4323. default: true
  4324. },
  4325. {
  4326. name: "Megamacro",
  4327. height: math.unit(200, "km")
  4328. },
  4329. {
  4330. name: "Gigamacro",
  4331. height: math.unit(100000, "km")
  4332. }
  4333. ]
  4334. ))
  4335. characterMakers.push(() => makeCharacter(
  4336. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4337. {
  4338. front: {
  4339. height: math.unit(6, "feet"),
  4340. weight: math.unit(175, "lb"),
  4341. name: "Front",
  4342. image: {
  4343. source: "./media/characters/mirova/front.svg",
  4344. extra: 3334 / 3071,
  4345. bottom: 42 / 3375.6
  4346. }
  4347. }
  4348. },
  4349. [
  4350. {
  4351. name: "Small",
  4352. height: math.unit(5, "meters")
  4353. },
  4354. {
  4355. name: "Macro",
  4356. height: math.unit(900, "meters"),
  4357. default: true
  4358. },
  4359. {
  4360. name: "Megamacro",
  4361. height: math.unit(135, "km")
  4362. },
  4363. {
  4364. name: "Gigamacro",
  4365. height: math.unit(20000, "km")
  4366. }
  4367. ]
  4368. ))
  4369. characterMakers.push(() => makeCharacter(
  4370. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4371. {
  4372. side: {
  4373. height: math.unit(28.35, "feet"),
  4374. weight: math.unit(99.75, "tons"),
  4375. name: "Side",
  4376. image: {
  4377. source: "./media/characters/asana-mech/side.svg",
  4378. extra: 923 / 699,
  4379. bottom: 50 / 975
  4380. }
  4381. },
  4382. chaingun: {
  4383. height: math.unit(7, "feet"),
  4384. weight: math.unit(2400, "lb"),
  4385. name: "Chaingun",
  4386. image: {
  4387. source: "./media/characters/asana-mech/chaingun.svg"
  4388. }
  4389. },
  4390. laser: {
  4391. height: math.unit(7.12, "feet"),
  4392. weight: math.unit(2000, "lb"),
  4393. name: "Laser",
  4394. image: {
  4395. source: "./media/characters/asana-mech/laser.svg"
  4396. }
  4397. },
  4398. },
  4399. [
  4400. {
  4401. name: "Normal",
  4402. height: math.unit(28.35, "feet"),
  4403. default: true
  4404. },
  4405. {
  4406. name: "Macro",
  4407. height: math.unit(2500, "feet")
  4408. },
  4409. {
  4410. name: "Megamacro",
  4411. height: math.unit(25, "miles")
  4412. },
  4413. {
  4414. name: "Examacro",
  4415. height: math.unit(6e8, "lightyears")
  4416. },
  4417. ]
  4418. ))
  4419. characterMakers.push(() => makeCharacter(
  4420. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4421. {
  4422. front: {
  4423. height: math.unit(5, "meters"),
  4424. weight: math.unit(1000, "kg"),
  4425. name: "Front",
  4426. image: {
  4427. source: "./media/characters/asche/front.svg",
  4428. extra: 1258 / 1190,
  4429. bottom: 47 / 1305
  4430. }
  4431. },
  4432. frontUnderwear: {
  4433. height: math.unit(5, "meters"),
  4434. weight: math.unit(1000, "kg"),
  4435. name: "Front (Underwear)",
  4436. image: {
  4437. source: "./media/characters/asche/front-underwear.svg",
  4438. extra: 1258 / 1190,
  4439. bottom: 47 / 1305
  4440. }
  4441. },
  4442. frontDressed: {
  4443. height: math.unit(5, "meters"),
  4444. weight: math.unit(1000, "kg"),
  4445. name: "Front (Dressed)",
  4446. image: {
  4447. source: "./media/characters/asche/front-dressed.svg",
  4448. extra: 1258 / 1190,
  4449. bottom: 47 / 1305
  4450. }
  4451. },
  4452. frontArmor: {
  4453. height: math.unit(5, "meters"),
  4454. weight: math.unit(1000, "kg"),
  4455. name: "Front (Armored)",
  4456. image: {
  4457. source: "./media/characters/asche/front-armored.svg",
  4458. extra: 1374 / 1308,
  4459. bottom: 23 / 1397
  4460. }
  4461. },
  4462. mp724: {
  4463. height: math.unit(0.96, "meters"),
  4464. weight: math.unit(38, "kg"),
  4465. name: "H&K MP724",
  4466. image: {
  4467. source: "./media/characters/asche/h&k-mp724.svg"
  4468. }
  4469. },
  4470. side: {
  4471. height: math.unit(5, "meters"),
  4472. weight: math.unit(1000, "kg"),
  4473. name: "Side",
  4474. image: {
  4475. source: "./media/characters/asche/side.svg",
  4476. extra: 1717 / 1609,
  4477. bottom: 0.005
  4478. }
  4479. },
  4480. back: {
  4481. height: math.unit(5, "meters"),
  4482. weight: math.unit(1000, "kg"),
  4483. name: "Back",
  4484. image: {
  4485. source: "./media/characters/asche/back.svg",
  4486. extra: 1570 / 1501
  4487. }
  4488. },
  4489. },
  4490. [
  4491. {
  4492. name: "DEFCON 5",
  4493. height: math.unit(5, "meters")
  4494. },
  4495. {
  4496. name: "DEFCON 4",
  4497. height: math.unit(500, "meters"),
  4498. default: true
  4499. },
  4500. {
  4501. name: "DEFCON 3",
  4502. height: math.unit(5, "km")
  4503. },
  4504. {
  4505. name: "DEFCON 2",
  4506. height: math.unit(500, "km")
  4507. },
  4508. {
  4509. name: "DEFCON 1",
  4510. height: math.unit(500000, "km")
  4511. },
  4512. {
  4513. name: "DEFCON 0",
  4514. height: math.unit(3, "gigaparsecs")
  4515. },
  4516. ]
  4517. ))
  4518. characterMakers.push(() => makeCharacter(
  4519. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4520. {
  4521. front: {
  4522. height: math.unit(2, "meters"),
  4523. weight: math.unit(76, "kg"),
  4524. name: "Front",
  4525. image: {
  4526. source: "./media/characters/gale/front.svg"
  4527. }
  4528. },
  4529. frontAlt1: {
  4530. height: math.unit(2, "meters"),
  4531. weight: math.unit(76, "kg"),
  4532. name: "Front (Alt 1)",
  4533. image: {
  4534. source: "./media/characters/gale/front-alt-1.svg"
  4535. }
  4536. },
  4537. frontAlt2: {
  4538. height: math.unit(2, "meters"),
  4539. weight: math.unit(76, "kg"),
  4540. name: "Front (Alt 2)",
  4541. image: {
  4542. source: "./media/characters/gale/front-alt-2.svg"
  4543. }
  4544. },
  4545. },
  4546. [
  4547. {
  4548. name: "Normal",
  4549. height: math.unit(7, "feet")
  4550. },
  4551. {
  4552. name: "Macro",
  4553. height: math.unit(150, "feet"),
  4554. default: true
  4555. },
  4556. {
  4557. name: "Macro+",
  4558. height: math.unit(300, "feet")
  4559. },
  4560. ]
  4561. ))
  4562. characterMakers.push(() => makeCharacter(
  4563. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4564. {
  4565. front: {
  4566. height: math.unit(5 + 10/12, "feet"),
  4567. weight: math.unit(67, "kg"),
  4568. name: "Front",
  4569. image: {
  4570. source: "./media/characters/draylen/front.svg",
  4571. extra: 832/777,
  4572. bottom: 85/917
  4573. }
  4574. }
  4575. },
  4576. [
  4577. {
  4578. name: "Normal",
  4579. height: math.unit(5 + 10/12, "feet")
  4580. },
  4581. {
  4582. name: "Macro",
  4583. height: math.unit(150, "feet"),
  4584. default: true
  4585. }
  4586. ]
  4587. ))
  4588. characterMakers.push(() => makeCharacter(
  4589. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4590. {
  4591. front: {
  4592. height: math.unit(7 + 9 / 12, "feet"),
  4593. weight: math.unit(379, "lbs"),
  4594. name: "Front",
  4595. image: {
  4596. source: "./media/characters/chez/front.svg"
  4597. }
  4598. },
  4599. side: {
  4600. height: math.unit(7 + 9 / 12, "feet"),
  4601. weight: math.unit(379, "lbs"),
  4602. name: "Side",
  4603. image: {
  4604. source: "./media/characters/chez/side.svg"
  4605. }
  4606. }
  4607. },
  4608. [
  4609. {
  4610. name: "Normal",
  4611. height: math.unit(7 + 9 / 12, "feet"),
  4612. default: true
  4613. },
  4614. {
  4615. name: "God King",
  4616. height: math.unit(9750000, "meters")
  4617. }
  4618. ]
  4619. ))
  4620. characterMakers.push(() => makeCharacter(
  4621. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4622. {
  4623. front: {
  4624. height: math.unit(6, "feet"),
  4625. weight: math.unit(275, "lbs"),
  4626. name: "Front",
  4627. image: {
  4628. source: "./media/characters/kaylum/front.svg",
  4629. bottom: 0.01,
  4630. extra: 1166 / 1031
  4631. }
  4632. },
  4633. frontWingless: {
  4634. height: math.unit(6, "feet"),
  4635. weight: math.unit(275, "lbs"),
  4636. name: "Front (Wingless)",
  4637. image: {
  4638. source: "./media/characters/kaylum/front-wingless.svg",
  4639. bottom: 0.01,
  4640. extra: 1117 / 1031
  4641. }
  4642. }
  4643. },
  4644. [
  4645. {
  4646. name: "Normal",
  4647. height: math.unit(3.05, "meters")
  4648. },
  4649. {
  4650. name: "Master",
  4651. height: math.unit(5.5, "meters")
  4652. },
  4653. {
  4654. name: "Rampage",
  4655. height: math.unit(19, "meters")
  4656. },
  4657. {
  4658. name: "Macro Lite",
  4659. height: math.unit(37, "meters")
  4660. },
  4661. {
  4662. name: "Hyper Predator",
  4663. height: math.unit(61, "meters")
  4664. },
  4665. {
  4666. name: "Macro",
  4667. height: math.unit(138, "meters"),
  4668. default: true
  4669. }
  4670. ]
  4671. ))
  4672. characterMakers.push(() => makeCharacter(
  4673. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4674. {
  4675. front: {
  4676. height: math.unit(6, "feet"),
  4677. weight: math.unit(150, "lbs"),
  4678. name: "Front",
  4679. image: {
  4680. source: "./media/characters/geta/front.svg"
  4681. }
  4682. }
  4683. },
  4684. [
  4685. {
  4686. name: "Micro",
  4687. height: math.unit(3, "inches"),
  4688. default: true
  4689. },
  4690. {
  4691. name: "Normal",
  4692. height: math.unit(5 + 5 / 12, "feet")
  4693. }
  4694. ]
  4695. ))
  4696. characterMakers.push(() => makeCharacter(
  4697. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4698. {
  4699. front: {
  4700. height: math.unit(6, "feet"),
  4701. weight: math.unit(300, "lbs"),
  4702. name: "Front",
  4703. image: {
  4704. source: "./media/characters/tyrnn/front.svg"
  4705. }
  4706. }
  4707. },
  4708. [
  4709. {
  4710. name: "Main Height",
  4711. height: math.unit(355, "feet"),
  4712. default: true
  4713. },
  4714. {
  4715. name: "Fave. Height",
  4716. height: math.unit(2400, "feet")
  4717. }
  4718. ]
  4719. ))
  4720. characterMakers.push(() => makeCharacter(
  4721. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4722. {
  4723. front: {
  4724. height: math.unit(6, "feet"),
  4725. weight: math.unit(300, "lbs"),
  4726. name: "Front",
  4727. image: {
  4728. source: "./media/characters/appledectomy/front.svg"
  4729. }
  4730. }
  4731. },
  4732. [
  4733. {
  4734. name: "Macro",
  4735. height: math.unit(2500, "feet")
  4736. },
  4737. {
  4738. name: "Megamacro",
  4739. height: math.unit(50, "miles"),
  4740. default: true
  4741. },
  4742. {
  4743. name: "Gigamacro",
  4744. height: math.unit(5000, "miles")
  4745. },
  4746. {
  4747. name: "Teramacro",
  4748. height: math.unit(250000, "miles")
  4749. },
  4750. ]
  4751. ))
  4752. characterMakers.push(() => makeCharacter(
  4753. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4754. {
  4755. front: {
  4756. height: math.unit(6, "feet"),
  4757. weight: math.unit(200, "lbs"),
  4758. name: "Front",
  4759. image: {
  4760. source: "./media/characters/vulpes/front.svg",
  4761. extra: 573 / 543,
  4762. bottom: 0.033
  4763. }
  4764. },
  4765. side: {
  4766. height: math.unit(6, "feet"),
  4767. weight: math.unit(200, "lbs"),
  4768. name: "Side",
  4769. image: {
  4770. source: "./media/characters/vulpes/side.svg",
  4771. extra: 577 / 549,
  4772. bottom: 11 / 588
  4773. }
  4774. },
  4775. back: {
  4776. height: math.unit(6, "feet"),
  4777. weight: math.unit(200, "lbs"),
  4778. name: "Back",
  4779. image: {
  4780. source: "./media/characters/vulpes/back.svg",
  4781. extra: 573 / 549,
  4782. bottom: 20 / 593
  4783. }
  4784. },
  4785. feet: {
  4786. height: math.unit(1.276, "feet"),
  4787. name: "Feet",
  4788. image: {
  4789. source: "./media/characters/vulpes/feet.svg"
  4790. }
  4791. },
  4792. maw: {
  4793. height: math.unit(1.18, "feet"),
  4794. name: "Maw",
  4795. image: {
  4796. source: "./media/characters/vulpes/maw.svg"
  4797. }
  4798. },
  4799. },
  4800. [
  4801. {
  4802. name: "Micro",
  4803. height: math.unit(2, "inches")
  4804. },
  4805. {
  4806. name: "Normal",
  4807. height: math.unit(6.3, "feet")
  4808. },
  4809. {
  4810. name: "Macro",
  4811. height: math.unit(850, "feet")
  4812. },
  4813. {
  4814. name: "Megamacro",
  4815. height: math.unit(7500, "feet"),
  4816. default: true
  4817. },
  4818. {
  4819. name: "Gigamacro",
  4820. height: math.unit(570000, "miles")
  4821. }
  4822. ]
  4823. ))
  4824. characterMakers.push(() => makeCharacter(
  4825. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4826. {
  4827. front: {
  4828. height: math.unit(6, "feet"),
  4829. weight: math.unit(210, "lbs"),
  4830. name: "Front",
  4831. image: {
  4832. source: "./media/characters/rain-fallen/front.svg"
  4833. }
  4834. },
  4835. side: {
  4836. height: math.unit(6, "feet"),
  4837. weight: math.unit(210, "lbs"),
  4838. name: "Side",
  4839. image: {
  4840. source: "./media/characters/rain-fallen/side.svg"
  4841. }
  4842. },
  4843. back: {
  4844. height: math.unit(6, "feet"),
  4845. weight: math.unit(210, "lbs"),
  4846. name: "Back",
  4847. image: {
  4848. source: "./media/characters/rain-fallen/back.svg"
  4849. }
  4850. },
  4851. feral: {
  4852. height: math.unit(9, "feet"),
  4853. weight: math.unit(700, "lbs"),
  4854. name: "Feral",
  4855. image: {
  4856. source: "./media/characters/rain-fallen/feral.svg"
  4857. }
  4858. },
  4859. },
  4860. [
  4861. {
  4862. name: "Meddling with Mortals",
  4863. height: math.unit(8 + 8/12, "feet")
  4864. },
  4865. {
  4866. name: "Normal",
  4867. height: math.unit(5, "meter")
  4868. },
  4869. {
  4870. name: "Macro",
  4871. height: math.unit(150, "meter"),
  4872. default: true
  4873. },
  4874. {
  4875. name: "Megamacro",
  4876. height: math.unit(278e6, "meter")
  4877. },
  4878. {
  4879. name: "Gigamacro",
  4880. height: math.unit(2e9, "meter")
  4881. },
  4882. {
  4883. name: "Teramacro",
  4884. height: math.unit(8e12, "meter")
  4885. },
  4886. {
  4887. name: "Devourer",
  4888. height: math.unit(14, "zettameters")
  4889. },
  4890. {
  4891. name: "Scarlet King",
  4892. height: math.unit(18, "yottameters")
  4893. },
  4894. {
  4895. name: "Void",
  4896. height: math.unit(1e88, "yottameters")
  4897. }
  4898. ]
  4899. ))
  4900. characterMakers.push(() => makeCharacter(
  4901. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4902. {
  4903. standing: {
  4904. height: math.unit(6, "feet"),
  4905. weight: math.unit(180, "lbs"),
  4906. name: "Standing",
  4907. image: {
  4908. source: "./media/characters/zaakira/standing.svg",
  4909. extra: 1599/1504,
  4910. bottom: 39/1638
  4911. }
  4912. },
  4913. laying: {
  4914. height: math.unit(3, "feet"),
  4915. weight: math.unit(180, "lbs"),
  4916. name: "Laying",
  4917. image: {
  4918. source: "./media/characters/zaakira/laying.svg"
  4919. }
  4920. },
  4921. },
  4922. [
  4923. {
  4924. name: "Normal",
  4925. height: math.unit(12, "feet")
  4926. },
  4927. {
  4928. name: "Macro",
  4929. height: math.unit(279, "feet"),
  4930. default: true
  4931. }
  4932. ]
  4933. ))
  4934. characterMakers.push(() => makeCharacter(
  4935. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4936. {
  4937. femSfw: {
  4938. height: math.unit(8, "feet"),
  4939. weight: math.unit(350, "lb"),
  4940. name: "Fem",
  4941. image: {
  4942. source: "./media/characters/sigvald/fem-sfw.svg",
  4943. extra: 182 / 164,
  4944. bottom: 8.7 / 190.5
  4945. }
  4946. },
  4947. femNsfw: {
  4948. height: math.unit(8, "feet"),
  4949. weight: math.unit(350, "lb"),
  4950. name: "Fem (NSFW)",
  4951. image: {
  4952. source: "./media/characters/sigvald/fem-nsfw.svg",
  4953. extra: 182 / 164,
  4954. bottom: 8.7 / 190.5
  4955. }
  4956. },
  4957. maleNsfw: {
  4958. height: math.unit(8, "feet"),
  4959. weight: math.unit(350, "lb"),
  4960. name: "Male (NSFW)",
  4961. image: {
  4962. source: "./media/characters/sigvald/male-nsfw.svg",
  4963. extra: 182 / 164,
  4964. bottom: 8.7 / 190.5
  4965. }
  4966. },
  4967. hermNsfw: {
  4968. height: math.unit(8, "feet"),
  4969. weight: math.unit(350, "lb"),
  4970. name: "Herm (NSFW)",
  4971. image: {
  4972. source: "./media/characters/sigvald/herm-nsfw.svg",
  4973. extra: 182 / 164,
  4974. bottom: 8.7 / 190.5
  4975. }
  4976. },
  4977. dick: {
  4978. height: math.unit(2.36, "feet"),
  4979. name: "Dick",
  4980. image: {
  4981. source: "./media/characters/sigvald/dick.svg"
  4982. }
  4983. },
  4984. eye: {
  4985. height: math.unit(0.31, "feet"),
  4986. name: "Eye",
  4987. image: {
  4988. source: "./media/characters/sigvald/eye.svg"
  4989. }
  4990. },
  4991. mouth: {
  4992. height: math.unit(0.92, "feet"),
  4993. name: "Mouth",
  4994. image: {
  4995. source: "./media/characters/sigvald/mouth.svg"
  4996. }
  4997. },
  4998. paws: {
  4999. height: math.unit(2.2, "feet"),
  5000. name: "Paws",
  5001. image: {
  5002. source: "./media/characters/sigvald/paws.svg"
  5003. }
  5004. }
  5005. },
  5006. [
  5007. {
  5008. name: "Normal",
  5009. height: math.unit(8, "feet")
  5010. },
  5011. {
  5012. name: "Large",
  5013. height: math.unit(12, "feet")
  5014. },
  5015. {
  5016. name: "Larger",
  5017. height: math.unit(20, "feet")
  5018. },
  5019. {
  5020. name: "Macro",
  5021. height: math.unit(150, "feet")
  5022. },
  5023. {
  5024. name: "Macro+",
  5025. height: math.unit(200, "feet"),
  5026. default: true
  5027. },
  5028. ]
  5029. ))
  5030. characterMakers.push(() => makeCharacter(
  5031. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5032. {
  5033. side: {
  5034. height: math.unit(12, "feet"),
  5035. weight: math.unit(2000, "kg"),
  5036. name: "Side",
  5037. image: {
  5038. source: "./media/characters/scott/side.svg",
  5039. extra: 754 / 724,
  5040. bottom: 0.069
  5041. }
  5042. },
  5043. upright: {
  5044. height: math.unit(12, "feet"),
  5045. weight: math.unit(2000, "kg"),
  5046. name: "Upright",
  5047. image: {
  5048. source: "./media/characters/scott/upright.svg",
  5049. extra: 3881 / 3722,
  5050. bottom: 0.05
  5051. }
  5052. },
  5053. },
  5054. [
  5055. {
  5056. name: "Normal",
  5057. height: math.unit(12, "feet"),
  5058. default: true
  5059. },
  5060. ]
  5061. ))
  5062. characterMakers.push(() => makeCharacter(
  5063. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5064. {
  5065. side: {
  5066. height: math.unit(8, "meters"),
  5067. weight: math.unit(84755, "lbs"),
  5068. name: "Side",
  5069. image: {
  5070. source: "./media/characters/tobias/side.svg",
  5071. extra: 1474 / 1096,
  5072. bottom: 38.9 / 1513.1235
  5073. }
  5074. },
  5075. },
  5076. [
  5077. {
  5078. name: "Normal",
  5079. height: math.unit(8, "meters"),
  5080. default: true
  5081. },
  5082. ]
  5083. ))
  5084. characterMakers.push(() => makeCharacter(
  5085. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5086. {
  5087. front: {
  5088. height: math.unit(5.5, "feet"),
  5089. weight: math.unit(400, "lbs"),
  5090. name: "Front",
  5091. image: {
  5092. source: "./media/characters/kieran/front.svg",
  5093. extra: 2694 / 2364,
  5094. bottom: 217 / 2908
  5095. }
  5096. },
  5097. side: {
  5098. height: math.unit(5.5, "feet"),
  5099. weight: math.unit(400, "lbs"),
  5100. name: "Side",
  5101. image: {
  5102. source: "./media/characters/kieran/side.svg",
  5103. extra: 875 / 777,
  5104. bottom: 84.6 / 959
  5105. }
  5106. },
  5107. },
  5108. [
  5109. {
  5110. name: "Normal",
  5111. height: math.unit(5.5, "feet"),
  5112. default: true
  5113. },
  5114. ]
  5115. ))
  5116. characterMakers.push(() => makeCharacter(
  5117. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5118. {
  5119. side: {
  5120. height: math.unit(2, "meters"),
  5121. weight: math.unit(70, "kg"),
  5122. name: "Side",
  5123. image: {
  5124. source: "./media/characters/sanya/side.svg",
  5125. bottom: 0.02,
  5126. extra: 1.02
  5127. }
  5128. },
  5129. },
  5130. [
  5131. {
  5132. name: "Small",
  5133. height: math.unit(2, "meters")
  5134. },
  5135. {
  5136. name: "Normal",
  5137. height: math.unit(3, "meters")
  5138. },
  5139. {
  5140. name: "Macro",
  5141. height: math.unit(16, "meters"),
  5142. default: true
  5143. },
  5144. ]
  5145. ))
  5146. characterMakers.push(() => makeCharacter(
  5147. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5148. {
  5149. front: {
  5150. height: math.unit(2, "meters"),
  5151. weight: math.unit(120, "kg"),
  5152. name: "Front",
  5153. image: {
  5154. source: "./media/characters/miranda/front.svg",
  5155. extra: 195 / 185,
  5156. bottom: 10.9 / 206.5
  5157. }
  5158. },
  5159. back: {
  5160. height: math.unit(2, "meters"),
  5161. weight: math.unit(120, "kg"),
  5162. name: "Back",
  5163. image: {
  5164. source: "./media/characters/miranda/back.svg",
  5165. extra: 201 / 193,
  5166. bottom: 2.3 / 203.7
  5167. }
  5168. },
  5169. },
  5170. [
  5171. {
  5172. name: "Normal",
  5173. height: math.unit(10, "feet"),
  5174. default: true
  5175. }
  5176. ]
  5177. ))
  5178. characterMakers.push(() => makeCharacter(
  5179. { name: "James", species: ["deer"], tags: ["anthro"] },
  5180. {
  5181. side: {
  5182. height: math.unit(2, "meters"),
  5183. weight: math.unit(100, "kg"),
  5184. name: "Front",
  5185. image: {
  5186. source: "./media/characters/james/front.svg",
  5187. extra: 10 / 8.5
  5188. }
  5189. },
  5190. },
  5191. [
  5192. {
  5193. name: "Normal",
  5194. height: math.unit(8.5, "feet"),
  5195. default: true
  5196. }
  5197. ]
  5198. ))
  5199. characterMakers.push(() => makeCharacter(
  5200. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5201. {
  5202. side: {
  5203. height: math.unit(9.5, "feet"),
  5204. weight: math.unit(2500, "lbs"),
  5205. name: "Side",
  5206. image: {
  5207. source: "./media/characters/heather/side.svg"
  5208. }
  5209. },
  5210. },
  5211. [
  5212. {
  5213. name: "Normal",
  5214. height: math.unit(9.5, "feet"),
  5215. default: true
  5216. }
  5217. ]
  5218. ))
  5219. characterMakers.push(() => makeCharacter(
  5220. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5221. {
  5222. side: {
  5223. height: math.unit(6.5, "feet"),
  5224. weight: math.unit(400, "lbs"),
  5225. name: "Side",
  5226. image: {
  5227. source: "./media/characters/lukas/side.svg",
  5228. extra: 7.25 / 6.5
  5229. }
  5230. },
  5231. },
  5232. [
  5233. {
  5234. name: "Normal",
  5235. height: math.unit(6.5, "feet"),
  5236. default: true
  5237. }
  5238. ]
  5239. ))
  5240. characterMakers.push(() => makeCharacter(
  5241. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5242. {
  5243. side: {
  5244. height: math.unit(5, "feet"),
  5245. weight: math.unit(3000, "lbs"),
  5246. name: "Side",
  5247. image: {
  5248. source: "./media/characters/louise/side.svg"
  5249. }
  5250. },
  5251. },
  5252. [
  5253. {
  5254. name: "Normal",
  5255. height: math.unit(5, "feet"),
  5256. default: true
  5257. }
  5258. ]
  5259. ))
  5260. characterMakers.push(() => makeCharacter(
  5261. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5262. {
  5263. side: {
  5264. height: math.unit(6, "feet"),
  5265. weight: math.unit(150, "lbs"),
  5266. name: "Side",
  5267. image: {
  5268. source: "./media/characters/ramona/side.svg"
  5269. }
  5270. },
  5271. },
  5272. [
  5273. {
  5274. name: "Normal",
  5275. height: math.unit(5.3, "meters"),
  5276. default: true
  5277. },
  5278. {
  5279. name: "Macro",
  5280. height: math.unit(20, "stories")
  5281. },
  5282. {
  5283. name: "Macro+",
  5284. height: math.unit(50, "stories")
  5285. },
  5286. ]
  5287. ))
  5288. characterMakers.push(() => makeCharacter(
  5289. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5290. {
  5291. standing: {
  5292. height: math.unit(5.75, "feet"),
  5293. weight: math.unit(160, "lbs"),
  5294. name: "Standing",
  5295. image: {
  5296. source: "./media/characters/deerpuff/standing.svg",
  5297. extra: 682 / 624
  5298. }
  5299. },
  5300. sitting: {
  5301. height: math.unit(5.75 / 1.79, "feet"),
  5302. weight: math.unit(160, "lbs"),
  5303. name: "Sitting",
  5304. image: {
  5305. source: "./media/characters/deerpuff/sitting.svg",
  5306. bottom: 44 / 400,
  5307. extra: 1
  5308. }
  5309. },
  5310. taurLaying: {
  5311. height: math.unit(6, "feet"),
  5312. weight: math.unit(400, "lbs"),
  5313. name: "Taur (Laying)",
  5314. image: {
  5315. source: "./media/characters/deerpuff/taur-laying.svg"
  5316. }
  5317. },
  5318. },
  5319. [
  5320. {
  5321. name: "Puffball",
  5322. height: math.unit(6, "inches")
  5323. },
  5324. {
  5325. name: "Normalpuff",
  5326. height: math.unit(5.75, "feet")
  5327. },
  5328. {
  5329. name: "Macropuff",
  5330. height: math.unit(1500, "feet"),
  5331. default: true
  5332. },
  5333. {
  5334. name: "Megapuff",
  5335. height: math.unit(500, "miles")
  5336. },
  5337. {
  5338. name: "Gigapuff",
  5339. height: math.unit(250000, "miles")
  5340. },
  5341. {
  5342. name: "Omegapuff",
  5343. height: math.unit(1000, "lightyears")
  5344. },
  5345. ]
  5346. ))
  5347. characterMakers.push(() => makeCharacter(
  5348. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5349. {
  5350. stomping: {
  5351. height: math.unit(6, "feet"),
  5352. weight: math.unit(170, "lbs"),
  5353. name: "Stomping",
  5354. image: {
  5355. source: "./media/characters/vivian/stomping.svg"
  5356. }
  5357. },
  5358. sitting: {
  5359. height: math.unit(6 / 1.75, "feet"),
  5360. weight: math.unit(170, "lbs"),
  5361. name: "Sitting",
  5362. image: {
  5363. source: "./media/characters/vivian/sitting.svg",
  5364. bottom: 1 / 6.4,
  5365. extra: 1,
  5366. }
  5367. },
  5368. },
  5369. [
  5370. {
  5371. name: "Normal",
  5372. height: math.unit(7, "feet"),
  5373. default: true
  5374. },
  5375. {
  5376. name: "Macro",
  5377. height: math.unit(10, "stories")
  5378. },
  5379. {
  5380. name: "Macro+",
  5381. height: math.unit(30, "stories")
  5382. },
  5383. {
  5384. name: "Megamacro",
  5385. height: math.unit(10, "miles")
  5386. },
  5387. {
  5388. name: "Megamacro+",
  5389. height: math.unit(2750000, "meters")
  5390. },
  5391. ]
  5392. ))
  5393. characterMakers.push(() => makeCharacter(
  5394. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5395. {
  5396. front: {
  5397. height: math.unit(6, "feet"),
  5398. weight: math.unit(160, "lbs"),
  5399. name: "Front",
  5400. image: {
  5401. source: "./media/characters/prince/front.svg",
  5402. extra: 3400 / 3000
  5403. }
  5404. },
  5405. jumping: {
  5406. height: math.unit(6, "feet"),
  5407. weight: math.unit(160, "lbs"),
  5408. name: "Jumping",
  5409. image: {
  5410. source: "./media/characters/prince/jump.svg",
  5411. extra: 2555 / 2134
  5412. }
  5413. },
  5414. },
  5415. [
  5416. {
  5417. name: "Normal",
  5418. height: math.unit(7.75, "feet"),
  5419. default: true
  5420. },
  5421. {
  5422. name: "Not cute",
  5423. height: math.unit(17, "feet")
  5424. },
  5425. {
  5426. name: "I said NOT",
  5427. height: math.unit(91, "feet")
  5428. },
  5429. {
  5430. name: "Please stop",
  5431. height: math.unit(560, "feet")
  5432. },
  5433. {
  5434. name: "What have you done",
  5435. height: math.unit(2200, "feet")
  5436. },
  5437. {
  5438. name: "Deer God",
  5439. height: math.unit(3.6, "miles")
  5440. },
  5441. ]
  5442. ))
  5443. characterMakers.push(() => makeCharacter(
  5444. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5445. {
  5446. standing: {
  5447. height: math.unit(6, "feet"),
  5448. weight: math.unit(300, "lbs"),
  5449. name: "Standing",
  5450. image: {
  5451. source: "./media/characters/psymon/standing.svg",
  5452. extra: 1888 / 1810,
  5453. bottom: 0.05
  5454. }
  5455. },
  5456. slithering: {
  5457. height: math.unit(6, "feet"),
  5458. weight: math.unit(300, "lbs"),
  5459. name: "Slithering",
  5460. image: {
  5461. source: "./media/characters/psymon/slithering.svg",
  5462. extra: 1330 / 1224
  5463. }
  5464. },
  5465. slitheringAlt: {
  5466. height: math.unit(6, "feet"),
  5467. weight: math.unit(300, "lbs"),
  5468. name: "Slithering (Alt)",
  5469. image: {
  5470. source: "./media/characters/psymon/slithering-alt.svg",
  5471. extra: 1330 / 1224
  5472. }
  5473. },
  5474. },
  5475. [
  5476. {
  5477. name: "Normal",
  5478. height: math.unit(11.25, "feet"),
  5479. default: true
  5480. },
  5481. {
  5482. name: "Large",
  5483. height: math.unit(27, "feet")
  5484. },
  5485. {
  5486. name: "Giant",
  5487. height: math.unit(87, "feet")
  5488. },
  5489. {
  5490. name: "Macro",
  5491. height: math.unit(365, "feet")
  5492. },
  5493. {
  5494. name: "Megamacro",
  5495. height: math.unit(3, "miles")
  5496. },
  5497. {
  5498. name: "World Serpent",
  5499. height: math.unit(8000, "miles")
  5500. },
  5501. ]
  5502. ))
  5503. characterMakers.push(() => makeCharacter(
  5504. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5505. {
  5506. front: {
  5507. height: math.unit(6, "feet"),
  5508. weight: math.unit(180, "lbs"),
  5509. name: "Front",
  5510. image: {
  5511. source: "./media/characters/daimos/front.svg",
  5512. extra: 4160 / 3897,
  5513. bottom: 0.021
  5514. }
  5515. }
  5516. },
  5517. [
  5518. {
  5519. name: "Normal",
  5520. height: math.unit(8, "feet"),
  5521. default: true
  5522. },
  5523. {
  5524. name: "Big Dog",
  5525. height: math.unit(22, "feet")
  5526. },
  5527. {
  5528. name: "Macro",
  5529. height: math.unit(127, "feet")
  5530. },
  5531. {
  5532. name: "Megamacro",
  5533. height: math.unit(3600, "feet")
  5534. },
  5535. ]
  5536. ))
  5537. characterMakers.push(() => makeCharacter(
  5538. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5539. {
  5540. side: {
  5541. height: math.unit(6, "feet"),
  5542. weight: math.unit(180, "lbs"),
  5543. name: "Side",
  5544. image: {
  5545. source: "./media/characters/blake/side.svg",
  5546. extra: 1212 / 1120,
  5547. bottom: 0.05
  5548. }
  5549. },
  5550. crouched: {
  5551. height: math.unit(6 * 0.57, "feet"),
  5552. weight: math.unit(180, "lbs"),
  5553. name: "Crouched",
  5554. image: {
  5555. source: "./media/characters/blake/crouched.svg",
  5556. extra: 840 / 587,
  5557. bottom: 0.04
  5558. }
  5559. },
  5560. bent: {
  5561. height: math.unit(6 * 0.75, "feet"),
  5562. weight: math.unit(180, "lbs"),
  5563. name: "Bent",
  5564. image: {
  5565. source: "./media/characters/blake/bent.svg",
  5566. extra: 592 / 544,
  5567. bottom: 0.035
  5568. }
  5569. },
  5570. },
  5571. [
  5572. {
  5573. name: "Normal",
  5574. height: math.unit(8 + 1 / 6, "feet"),
  5575. default: true
  5576. },
  5577. {
  5578. name: "Big Backside",
  5579. height: math.unit(37, "feet")
  5580. },
  5581. {
  5582. name: "Subway Shredder",
  5583. height: math.unit(72, "feet")
  5584. },
  5585. {
  5586. name: "City Carver",
  5587. height: math.unit(1675, "feet")
  5588. },
  5589. {
  5590. name: "Tectonic Tweaker",
  5591. height: math.unit(2300, "miles")
  5592. },
  5593. ]
  5594. ))
  5595. characterMakers.push(() => makeCharacter(
  5596. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5597. {
  5598. front: {
  5599. height: math.unit(6, "feet"),
  5600. weight: math.unit(180, "lbs"),
  5601. name: "Front",
  5602. image: {
  5603. source: "./media/characters/guisetto/front.svg",
  5604. extra: 856 / 817,
  5605. bottom: 0.06
  5606. }
  5607. },
  5608. airborne: {
  5609. height: math.unit(6, "feet"),
  5610. weight: math.unit(180, "lbs"),
  5611. name: "Airborne",
  5612. image: {
  5613. source: "./media/characters/guisetto/airborne.svg",
  5614. extra: 584 / 525
  5615. }
  5616. },
  5617. },
  5618. [
  5619. {
  5620. name: "Normal",
  5621. height: math.unit(10 + 11 / 12, "feet"),
  5622. default: true
  5623. },
  5624. {
  5625. name: "Large",
  5626. height: math.unit(35, "feet")
  5627. },
  5628. {
  5629. name: "Macro",
  5630. height: math.unit(475, "feet")
  5631. },
  5632. ]
  5633. ))
  5634. characterMakers.push(() => makeCharacter(
  5635. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5636. {
  5637. front: {
  5638. height: math.unit(6, "feet"),
  5639. weight: math.unit(180, "lbs"),
  5640. name: "Front",
  5641. image: {
  5642. source: "./media/characters/luxor/front.svg",
  5643. extra: 2940 / 2152
  5644. }
  5645. },
  5646. back: {
  5647. height: math.unit(6, "feet"),
  5648. weight: math.unit(180, "lbs"),
  5649. name: "Back",
  5650. image: {
  5651. source: "./media/characters/luxor/back.svg",
  5652. extra: 1083 / 960
  5653. }
  5654. },
  5655. },
  5656. [
  5657. {
  5658. name: "Normal",
  5659. height: math.unit(5 + 5 / 6, "feet"),
  5660. default: true
  5661. },
  5662. {
  5663. name: "Lamp",
  5664. height: math.unit(50, "feet")
  5665. },
  5666. {
  5667. name: "Lämp",
  5668. height: math.unit(300, "feet")
  5669. },
  5670. {
  5671. name: "The sun is a lamp",
  5672. height: math.unit(250000, "miles")
  5673. },
  5674. ]
  5675. ))
  5676. characterMakers.push(() => makeCharacter(
  5677. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5678. {
  5679. front: {
  5680. height: math.unit(6, "feet"),
  5681. weight: math.unit(50, "lbs"),
  5682. name: "Front",
  5683. image: {
  5684. source: "./media/characters/huoyan/front.svg"
  5685. }
  5686. },
  5687. side: {
  5688. height: math.unit(6, "feet"),
  5689. weight: math.unit(180, "lbs"),
  5690. name: "Side",
  5691. image: {
  5692. source: "./media/characters/huoyan/side.svg"
  5693. }
  5694. },
  5695. },
  5696. [
  5697. {
  5698. name: "Chef",
  5699. height: math.unit(9, "feet")
  5700. },
  5701. {
  5702. name: "Normal",
  5703. height: math.unit(65, "feet"),
  5704. default: true
  5705. },
  5706. {
  5707. name: "Macro",
  5708. height: math.unit(780, "feet")
  5709. },
  5710. {
  5711. name: "Flaming Mountain",
  5712. height: math.unit(4.8, "miles")
  5713. },
  5714. {
  5715. name: "Celestial",
  5716. height: math.unit(765000, "miles")
  5717. },
  5718. ]
  5719. ))
  5720. characterMakers.push(() => makeCharacter(
  5721. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5722. {
  5723. front: {
  5724. height: math.unit(5 + 3 / 4, "feet"),
  5725. weight: math.unit(120, "lbs"),
  5726. name: "Front",
  5727. image: {
  5728. source: "./media/characters/tails/front.svg"
  5729. }
  5730. }
  5731. },
  5732. [
  5733. {
  5734. name: "Normal",
  5735. height: math.unit(5 + 3 / 4, "feet"),
  5736. default: true
  5737. }
  5738. ]
  5739. ))
  5740. characterMakers.push(() => makeCharacter(
  5741. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5742. {
  5743. front: {
  5744. height: math.unit(4, "feet"),
  5745. weight: math.unit(50, "lbs"),
  5746. name: "Front",
  5747. image: {
  5748. source: "./media/characters/rainy/front.svg"
  5749. }
  5750. }
  5751. },
  5752. [
  5753. {
  5754. name: "Macro",
  5755. height: math.unit(800, "feet"),
  5756. default: true
  5757. }
  5758. ]
  5759. ))
  5760. characterMakers.push(() => makeCharacter(
  5761. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5762. {
  5763. front: {
  5764. height: math.unit(6, "feet"),
  5765. weight: math.unit(150, "lbs"),
  5766. name: "Front",
  5767. image: {
  5768. source: "./media/characters/rainier/front.svg"
  5769. }
  5770. }
  5771. },
  5772. [
  5773. {
  5774. name: "Micro",
  5775. height: math.unit(2, "mm"),
  5776. default: true
  5777. }
  5778. ]
  5779. ))
  5780. characterMakers.push(() => makeCharacter(
  5781. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5782. {
  5783. front: {
  5784. height: math.unit(8 + 4/12, "feet"),
  5785. name: "Front",
  5786. image: {
  5787. source: "./media/characters/andy-renard/front.svg",
  5788. extra: 1839/1726,
  5789. bottom: 134/1973
  5790. }
  5791. },
  5792. back: {
  5793. height: math.unit(8 + 4/12, "feet"),
  5794. name: "Back",
  5795. image: {
  5796. source: "./media/characters/andy-renard/back.svg",
  5797. extra: 1838/1710,
  5798. bottom: 105/1943
  5799. }
  5800. },
  5801. },
  5802. [
  5803. {
  5804. name: "Tall",
  5805. height: math.unit(8 + 4/12, "feet")
  5806. },
  5807. {
  5808. name: "Mini Macro",
  5809. height: math.unit(15, "feet"),
  5810. default: true
  5811. },
  5812. {
  5813. name: "Macro",
  5814. height: math.unit(100, "feet")
  5815. },
  5816. {
  5817. name: "Mega Macro",
  5818. height: math.unit(1000, "feet")
  5819. },
  5820. {
  5821. name: "Giga Macro",
  5822. height: math.unit(10, "miles")
  5823. },
  5824. {
  5825. name: "God Macro",
  5826. height: math.unit(1, "multiverse")
  5827. },
  5828. ]
  5829. ))
  5830. characterMakers.push(() => makeCharacter(
  5831. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5832. {
  5833. front: {
  5834. height: math.unit(6, "feet"),
  5835. weight: math.unit(210, "lbs"),
  5836. name: "Front",
  5837. image: {
  5838. source: "./media/characters/cimmaron/front-sfw.svg",
  5839. extra: 701 / 676,
  5840. bottom: 0.046
  5841. }
  5842. },
  5843. back: {
  5844. height: math.unit(6, "feet"),
  5845. weight: math.unit(210, "lbs"),
  5846. name: "Back",
  5847. image: {
  5848. source: "./media/characters/cimmaron/back-sfw.svg",
  5849. extra: 701 / 676,
  5850. bottom: 0.046
  5851. }
  5852. },
  5853. frontNsfw: {
  5854. height: math.unit(6, "feet"),
  5855. weight: math.unit(210, "lbs"),
  5856. name: "Front (NSFW)",
  5857. image: {
  5858. source: "./media/characters/cimmaron/front-nsfw.svg",
  5859. extra: 701 / 676,
  5860. bottom: 0.046
  5861. }
  5862. },
  5863. backNsfw: {
  5864. height: math.unit(6, "feet"),
  5865. weight: math.unit(210, "lbs"),
  5866. name: "Back (NSFW)",
  5867. image: {
  5868. source: "./media/characters/cimmaron/back-nsfw.svg",
  5869. extra: 701 / 676,
  5870. bottom: 0.046
  5871. }
  5872. },
  5873. dick: {
  5874. height: math.unit(1.714, "feet"),
  5875. name: "Dick",
  5876. image: {
  5877. source: "./media/characters/cimmaron/dick.svg"
  5878. }
  5879. },
  5880. },
  5881. [
  5882. {
  5883. name: "Normal",
  5884. height: math.unit(6, "feet"),
  5885. default: true
  5886. },
  5887. {
  5888. name: "Macro Mayor",
  5889. height: math.unit(350, "meters")
  5890. },
  5891. ]
  5892. ))
  5893. characterMakers.push(() => makeCharacter(
  5894. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5895. {
  5896. front: {
  5897. height: math.unit(6, "feet"),
  5898. weight: math.unit(200, "lbs"),
  5899. name: "Front",
  5900. image: {
  5901. source: "./media/characters/akari/front.svg",
  5902. extra: 962 / 901,
  5903. bottom: 0.04
  5904. }
  5905. }
  5906. },
  5907. [
  5908. {
  5909. name: "Micro",
  5910. height: math.unit(5, "inches"),
  5911. default: true
  5912. },
  5913. {
  5914. name: "Normal",
  5915. height: math.unit(7, "feet")
  5916. },
  5917. ]
  5918. ))
  5919. characterMakers.push(() => makeCharacter(
  5920. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5921. {
  5922. front: {
  5923. height: math.unit(6, "feet"),
  5924. weight: math.unit(140, "lbs"),
  5925. name: "Front",
  5926. image: {
  5927. source: "./media/characters/cynosura/front.svg",
  5928. extra: 896 / 847
  5929. }
  5930. },
  5931. back: {
  5932. height: math.unit(6, "feet"),
  5933. weight: math.unit(140, "lbs"),
  5934. name: "Back",
  5935. image: {
  5936. source: "./media/characters/cynosura/back.svg",
  5937. extra: 1365 / 1250
  5938. }
  5939. },
  5940. },
  5941. [
  5942. {
  5943. name: "Micro",
  5944. height: math.unit(4, "inches")
  5945. },
  5946. {
  5947. name: "Normal",
  5948. height: math.unit(5.75, "feet"),
  5949. default: true
  5950. },
  5951. {
  5952. name: "Tall",
  5953. height: math.unit(10, "feet")
  5954. },
  5955. {
  5956. name: "Big",
  5957. height: math.unit(20, "feet")
  5958. },
  5959. {
  5960. name: "Macro",
  5961. height: math.unit(50, "feet")
  5962. },
  5963. ]
  5964. ))
  5965. characterMakers.push(() => makeCharacter(
  5966. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5967. {
  5968. front: {
  5969. height: math.unit(13 + 2/12, "feet"),
  5970. weight: math.unit(800, "kg"),
  5971. name: "Front",
  5972. image: {
  5973. source: "./media/characters/gin/front.svg",
  5974. extra: 1312/1191,
  5975. bottom: 45/1357
  5976. }
  5977. },
  5978. mouth: {
  5979. height: math.unit(2.39 * 1.8, "feet"),
  5980. name: "Mouth",
  5981. image: {
  5982. source: "./media/characters/gin/mouth.svg"
  5983. }
  5984. },
  5985. hand: {
  5986. height: math.unit(1.57 * 2.19, "feet"),
  5987. name: "Hand",
  5988. image: {
  5989. source: "./media/characters/gin/hand.svg"
  5990. }
  5991. },
  5992. foot: {
  5993. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5994. name: "Foot",
  5995. image: {
  5996. source: "./media/characters/gin/foot.svg"
  5997. }
  5998. },
  5999. sole: {
  6000. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6001. name: "Sole",
  6002. image: {
  6003. source: "./media/characters/gin/sole.svg"
  6004. }
  6005. },
  6006. },
  6007. [
  6008. {
  6009. name: "Very Small",
  6010. height: math.unit(13 + 2 / 12, "feet")
  6011. },
  6012. {
  6013. name: "Micro",
  6014. height: math.unit(600, "miles")
  6015. },
  6016. {
  6017. name: "Regular",
  6018. height: math.unit(20, "earths"),
  6019. default: true
  6020. },
  6021. {
  6022. name: "Macro",
  6023. height: math.unit(2.2, "solarradii")
  6024. },
  6025. {
  6026. name: "Teramacro",
  6027. height: math.unit(1.2, "galaxies")
  6028. },
  6029. {
  6030. name: "Omegamacro",
  6031. height: math.unit(200, "universes")
  6032. },
  6033. ]
  6034. ))
  6035. characterMakers.push(() => makeCharacter(
  6036. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6037. {
  6038. front: {
  6039. height: math.unit(6 + 1 / 6, "feet"),
  6040. weight: math.unit(178, "lbs"),
  6041. name: "Front",
  6042. image: {
  6043. source: "./media/characters/guy/front.svg"
  6044. }
  6045. }
  6046. },
  6047. [
  6048. {
  6049. name: "Normal",
  6050. height: math.unit(6 + 1 / 6, "feet"),
  6051. default: true
  6052. },
  6053. {
  6054. name: "Large",
  6055. height: math.unit(25 + 7 / 12, "feet")
  6056. },
  6057. {
  6058. name: "Macro",
  6059. height: math.unit(60 + 9 / 12, "feet")
  6060. },
  6061. {
  6062. name: "Macro+",
  6063. height: math.unit(246, "feet")
  6064. },
  6065. {
  6066. name: "Macro++",
  6067. height: math.unit(878, "feet")
  6068. }
  6069. ]
  6070. ))
  6071. characterMakers.push(() => makeCharacter(
  6072. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6073. {
  6074. front: {
  6075. height: math.unit(9, "feet"),
  6076. weight: math.unit(800, "lbs"),
  6077. name: "Front",
  6078. image: {
  6079. source: "./media/characters/tiberius/front.svg",
  6080. extra: 2295 / 2071
  6081. }
  6082. },
  6083. back: {
  6084. height: math.unit(9, "feet"),
  6085. weight: math.unit(800, "lbs"),
  6086. name: "Back",
  6087. image: {
  6088. source: "./media/characters/tiberius/back.svg",
  6089. extra: 2373 / 2160
  6090. }
  6091. },
  6092. },
  6093. [
  6094. {
  6095. name: "Normal",
  6096. height: math.unit(9, "feet"),
  6097. default: true
  6098. }
  6099. ]
  6100. ))
  6101. characterMakers.push(() => makeCharacter(
  6102. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6103. {
  6104. front: {
  6105. height: math.unit(6, "feet"),
  6106. weight: math.unit(600, "lbs"),
  6107. name: "Front",
  6108. image: {
  6109. source: "./media/characters/surgo/front.svg",
  6110. extra: 3591 / 2227
  6111. }
  6112. },
  6113. back: {
  6114. height: math.unit(6, "feet"),
  6115. weight: math.unit(600, "lbs"),
  6116. name: "Back",
  6117. image: {
  6118. source: "./media/characters/surgo/back.svg",
  6119. extra: 3557 / 2228
  6120. }
  6121. },
  6122. laying: {
  6123. height: math.unit(6 * 0.85, "feet"),
  6124. weight: math.unit(600, "lbs"),
  6125. name: "Laying",
  6126. image: {
  6127. source: "./media/characters/surgo/laying.svg"
  6128. }
  6129. },
  6130. },
  6131. [
  6132. {
  6133. name: "Normal",
  6134. height: math.unit(6, "feet"),
  6135. default: true
  6136. }
  6137. ]
  6138. ))
  6139. characterMakers.push(() => makeCharacter(
  6140. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6141. {
  6142. side: {
  6143. height: math.unit(6, "feet"),
  6144. weight: math.unit(150, "lbs"),
  6145. name: "Side",
  6146. image: {
  6147. source: "./media/characters/cibus/side.svg",
  6148. extra: 800 / 400
  6149. }
  6150. },
  6151. },
  6152. [
  6153. {
  6154. name: "Normal",
  6155. height: math.unit(6, "feet"),
  6156. default: true
  6157. }
  6158. ]
  6159. ))
  6160. characterMakers.push(() => makeCharacter(
  6161. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6162. {
  6163. front: {
  6164. height: math.unit(6, "feet"),
  6165. weight: math.unit(240, "lbs"),
  6166. name: "Front",
  6167. image: {
  6168. source: "./media/characters/nibbles/front.svg"
  6169. }
  6170. },
  6171. side: {
  6172. height: math.unit(6, "feet"),
  6173. weight: math.unit(240, "lbs"),
  6174. name: "Side",
  6175. image: {
  6176. source: "./media/characters/nibbles/side.svg"
  6177. }
  6178. },
  6179. },
  6180. [
  6181. {
  6182. name: "Normal",
  6183. height: math.unit(9, "feet"),
  6184. default: true
  6185. }
  6186. ]
  6187. ))
  6188. characterMakers.push(() => makeCharacter(
  6189. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6190. {
  6191. side: {
  6192. height: math.unit(5 + 1 / 6, "feet"),
  6193. weight: math.unit(130, "lbs"),
  6194. name: "Side",
  6195. image: {
  6196. source: "./media/characters/rikky/side.svg",
  6197. extra: 851 / 801
  6198. }
  6199. },
  6200. },
  6201. [
  6202. {
  6203. name: "Normal",
  6204. height: math.unit(5 + 1 / 6, "feet")
  6205. },
  6206. {
  6207. name: "Macro",
  6208. height: math.unit(152, "feet"),
  6209. default: true
  6210. },
  6211. {
  6212. name: "Megamacro",
  6213. height: math.unit(7, "miles")
  6214. }
  6215. ]
  6216. ))
  6217. characterMakers.push(() => makeCharacter(
  6218. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6219. {
  6220. side: {
  6221. height: math.unit(370, "cm"),
  6222. weight: math.unit(350, "lbs"),
  6223. name: "Side",
  6224. image: {
  6225. source: "./media/characters/malfressa/side.svg"
  6226. }
  6227. },
  6228. walking: {
  6229. height: math.unit(370, "cm"),
  6230. weight: math.unit(350, "lbs"),
  6231. name: "Walking",
  6232. image: {
  6233. source: "./media/characters/malfressa/walking.svg"
  6234. }
  6235. },
  6236. feral: {
  6237. height: math.unit(2500, "cm"),
  6238. weight: math.unit(100000, "lbs"),
  6239. name: "Feral",
  6240. image: {
  6241. source: "./media/characters/malfressa/feral.svg",
  6242. extra: 2108 / 837,
  6243. bottom: 0.02
  6244. }
  6245. },
  6246. },
  6247. [
  6248. {
  6249. name: "Normal",
  6250. height: math.unit(370, "cm")
  6251. },
  6252. {
  6253. name: "Macro",
  6254. height: math.unit(300, "meters"),
  6255. default: true
  6256. }
  6257. ]
  6258. ))
  6259. characterMakers.push(() => makeCharacter(
  6260. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6261. {
  6262. front: {
  6263. height: math.unit(6, "feet"),
  6264. weight: math.unit(60, "kg"),
  6265. name: "Front",
  6266. image: {
  6267. source: "./media/characters/jaro/front.svg"
  6268. }
  6269. },
  6270. back: {
  6271. height: math.unit(6, "feet"),
  6272. weight: math.unit(60, "kg"),
  6273. name: "Back",
  6274. image: {
  6275. source: "./media/characters/jaro/back.svg"
  6276. }
  6277. },
  6278. },
  6279. [
  6280. {
  6281. name: "Micro",
  6282. height: math.unit(7, "inches")
  6283. },
  6284. {
  6285. name: "Normal",
  6286. height: math.unit(5.5, "feet"),
  6287. default: true
  6288. },
  6289. {
  6290. name: "Minimacro",
  6291. height: math.unit(20, "feet")
  6292. },
  6293. {
  6294. name: "Macro",
  6295. height: math.unit(200, "meters")
  6296. }
  6297. ]
  6298. ))
  6299. characterMakers.push(() => makeCharacter(
  6300. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6301. {
  6302. front: {
  6303. height: math.unit(6, "feet"),
  6304. weight: math.unit(195, "lb"),
  6305. name: "Front",
  6306. image: {
  6307. source: "./media/characters/rogue/front.svg"
  6308. }
  6309. },
  6310. },
  6311. [
  6312. {
  6313. name: "Macro",
  6314. height: math.unit(90, "feet"),
  6315. default: true
  6316. },
  6317. ]
  6318. ))
  6319. characterMakers.push(() => makeCharacter(
  6320. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6321. {
  6322. front: {
  6323. height: math.unit(5 + 8 / 12, "feet"),
  6324. weight: math.unit(140, "lb"),
  6325. name: "Front",
  6326. image: {
  6327. source: "./media/characters/piper/front.svg",
  6328. extra: 3948/3655,
  6329. bottom: 0/3948
  6330. }
  6331. },
  6332. },
  6333. [
  6334. {
  6335. name: "Micro",
  6336. height: math.unit(2, "inches")
  6337. },
  6338. {
  6339. name: "Normal",
  6340. height: math.unit(5 + 8 / 12, "feet")
  6341. },
  6342. {
  6343. name: "Macro",
  6344. height: math.unit(250, "feet"),
  6345. default: true
  6346. },
  6347. {
  6348. name: "Megamacro",
  6349. height: math.unit(7, "miles")
  6350. },
  6351. ]
  6352. ))
  6353. characterMakers.push(() => makeCharacter(
  6354. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6355. {
  6356. front: {
  6357. height: math.unit(6, "feet"),
  6358. weight: math.unit(220, "lb"),
  6359. name: "Front",
  6360. image: {
  6361. source: "./media/characters/gemini/front.svg"
  6362. }
  6363. },
  6364. back: {
  6365. height: math.unit(6, "feet"),
  6366. weight: math.unit(220, "lb"),
  6367. name: "Back",
  6368. image: {
  6369. source: "./media/characters/gemini/back.svg"
  6370. }
  6371. },
  6372. kneeling: {
  6373. height: math.unit(6 / 1.5, "feet"),
  6374. weight: math.unit(220, "lb"),
  6375. name: "Kneeling",
  6376. image: {
  6377. source: "./media/characters/gemini/kneeling.svg",
  6378. bottom: 0.02
  6379. }
  6380. },
  6381. },
  6382. [
  6383. {
  6384. name: "Macro",
  6385. height: math.unit(300, "meters"),
  6386. default: true
  6387. },
  6388. {
  6389. name: "Megamacro",
  6390. height: math.unit(6900, "meters")
  6391. },
  6392. ]
  6393. ))
  6394. characterMakers.push(() => makeCharacter(
  6395. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6396. {
  6397. anthro: {
  6398. height: math.unit(2.35, "meters"),
  6399. weight: math.unit(73, "kg"),
  6400. name: "Anthro",
  6401. image: {
  6402. source: "./media/characters/alicia/anthro.svg",
  6403. extra: 2571 / 2385,
  6404. bottom: 75 / 2648
  6405. }
  6406. },
  6407. paw: {
  6408. height: math.unit(1.32, "feet"),
  6409. name: "Paw",
  6410. image: {
  6411. source: "./media/characters/alicia/paw.svg"
  6412. }
  6413. },
  6414. feral: {
  6415. height: math.unit(1.69, "meters"),
  6416. weight: math.unit(73, "kg"),
  6417. name: "Feral",
  6418. image: {
  6419. source: "./media/characters/alicia/feral.svg",
  6420. extra: 2123 / 1715,
  6421. bottom: 222 / 2349
  6422. }
  6423. },
  6424. },
  6425. [
  6426. {
  6427. name: "Normal",
  6428. height: math.unit(2.35, "meters")
  6429. },
  6430. {
  6431. name: "Macro",
  6432. height: math.unit(60, "meters"),
  6433. default: true
  6434. },
  6435. {
  6436. name: "Megamacro",
  6437. height: math.unit(10000, "kilometers")
  6438. },
  6439. ]
  6440. ))
  6441. characterMakers.push(() => makeCharacter(
  6442. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6443. {
  6444. front: {
  6445. height: math.unit(7, "feet"),
  6446. weight: math.unit(250, "lbs"),
  6447. name: "Front",
  6448. image: {
  6449. source: "./media/characters/archy/front.svg"
  6450. }
  6451. }
  6452. },
  6453. [
  6454. {
  6455. name: "Micro",
  6456. height: math.unit(1, "inch")
  6457. },
  6458. {
  6459. name: "Shorty",
  6460. height: math.unit(5, "feet")
  6461. },
  6462. {
  6463. name: "Normal",
  6464. height: math.unit(7, "feet")
  6465. },
  6466. {
  6467. name: "Macro",
  6468. height: math.unit(600, "meters"),
  6469. default: true
  6470. },
  6471. {
  6472. name: "Megamacro",
  6473. height: math.unit(1, "mile")
  6474. },
  6475. ]
  6476. ))
  6477. characterMakers.push(() => makeCharacter(
  6478. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6479. {
  6480. front: {
  6481. height: math.unit(1.65, "meters"),
  6482. weight: math.unit(74, "kg"),
  6483. name: "Front",
  6484. image: {
  6485. source: "./media/characters/berri/front.svg",
  6486. extra: 857 / 837,
  6487. bottom: 18 / 877
  6488. }
  6489. },
  6490. bum: {
  6491. height: math.unit(1.46, "feet"),
  6492. name: "Bum",
  6493. image: {
  6494. source: "./media/characters/berri/bum.svg"
  6495. }
  6496. },
  6497. mouth: {
  6498. height: math.unit(0.44, "feet"),
  6499. name: "Mouth",
  6500. image: {
  6501. source: "./media/characters/berri/mouth.svg"
  6502. }
  6503. },
  6504. paw: {
  6505. height: math.unit(0.826, "feet"),
  6506. name: "Paw",
  6507. image: {
  6508. source: "./media/characters/berri/paw.svg"
  6509. }
  6510. },
  6511. },
  6512. [
  6513. {
  6514. name: "Normal",
  6515. height: math.unit(1.65, "meters")
  6516. },
  6517. {
  6518. name: "Macro",
  6519. height: math.unit(60, "m"),
  6520. default: true
  6521. },
  6522. {
  6523. name: "Megamacro",
  6524. height: math.unit(9.213, "km")
  6525. },
  6526. {
  6527. name: "Planet Eater",
  6528. height: math.unit(489, "megameters")
  6529. },
  6530. {
  6531. name: "Teramacro",
  6532. height: math.unit(2471635000000, "meters")
  6533. },
  6534. {
  6535. name: "Examacro",
  6536. height: math.unit(8.0624e+26, "meters")
  6537. }
  6538. ]
  6539. ))
  6540. characterMakers.push(() => makeCharacter(
  6541. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6542. {
  6543. front: {
  6544. height: math.unit(1.72, "meters"),
  6545. weight: math.unit(68, "kg"),
  6546. name: "Front",
  6547. image: {
  6548. source: "./media/characters/lexi/front.svg"
  6549. }
  6550. }
  6551. },
  6552. [
  6553. {
  6554. name: "Very Smol",
  6555. height: math.unit(10, "mm")
  6556. },
  6557. {
  6558. name: "Micro",
  6559. height: math.unit(6.8, "cm"),
  6560. default: true
  6561. },
  6562. {
  6563. name: "Normal",
  6564. height: math.unit(1.72, "m")
  6565. }
  6566. ]
  6567. ))
  6568. characterMakers.push(() => makeCharacter(
  6569. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6570. {
  6571. front: {
  6572. height: math.unit(1.69, "meters"),
  6573. weight: math.unit(68, "kg"),
  6574. name: "Front",
  6575. image: {
  6576. source: "./media/characters/martin/front.svg",
  6577. extra: 596 / 581
  6578. }
  6579. }
  6580. },
  6581. [
  6582. {
  6583. name: "Micro",
  6584. height: math.unit(6.85, "cm"),
  6585. default: true
  6586. },
  6587. {
  6588. name: "Normal",
  6589. height: math.unit(1.69, "m")
  6590. }
  6591. ]
  6592. ))
  6593. characterMakers.push(() => makeCharacter(
  6594. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6595. {
  6596. front: {
  6597. height: math.unit(1.69, "meters"),
  6598. weight: math.unit(68, "kg"),
  6599. name: "Front",
  6600. image: {
  6601. source: "./media/characters/juno/front.svg"
  6602. }
  6603. }
  6604. },
  6605. [
  6606. {
  6607. name: "Micro",
  6608. height: math.unit(7, "cm")
  6609. },
  6610. {
  6611. name: "Normal",
  6612. height: math.unit(1.89, "m")
  6613. },
  6614. {
  6615. name: "Macro",
  6616. height: math.unit(353, "meters"),
  6617. default: true
  6618. }
  6619. ]
  6620. ))
  6621. characterMakers.push(() => makeCharacter(
  6622. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6623. {
  6624. front: {
  6625. height: math.unit(1.93, "meters"),
  6626. weight: math.unit(83, "kg"),
  6627. name: "Front",
  6628. image: {
  6629. source: "./media/characters/samantha/front.svg"
  6630. }
  6631. },
  6632. frontClothed: {
  6633. height: math.unit(1.93, "meters"),
  6634. weight: math.unit(83, "kg"),
  6635. name: "Front (Clothed)",
  6636. image: {
  6637. source: "./media/characters/samantha/front-clothed.svg"
  6638. }
  6639. },
  6640. back: {
  6641. height: math.unit(1.93, "meters"),
  6642. weight: math.unit(83, "kg"),
  6643. name: "Back",
  6644. image: {
  6645. source: "./media/characters/samantha/back.svg"
  6646. }
  6647. },
  6648. },
  6649. [
  6650. {
  6651. name: "Normal",
  6652. height: math.unit(1.93, "m")
  6653. },
  6654. {
  6655. name: "Macro",
  6656. height: math.unit(74, "meters"),
  6657. default: true
  6658. },
  6659. {
  6660. name: "Macro+",
  6661. height: math.unit(223, "meters"),
  6662. },
  6663. {
  6664. name: "Megamacro",
  6665. height: math.unit(8381, "meters"),
  6666. },
  6667. {
  6668. name: "Megamacro+",
  6669. height: math.unit(12000, "kilometers")
  6670. },
  6671. ]
  6672. ))
  6673. characterMakers.push(() => makeCharacter(
  6674. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6675. {
  6676. front: {
  6677. height: math.unit(1.92, "meters"),
  6678. weight: math.unit(80, "kg"),
  6679. name: "Front",
  6680. image: {
  6681. source: "./media/characters/dr-clay/front.svg"
  6682. }
  6683. },
  6684. frontClothed: {
  6685. height: math.unit(1.92, "meters"),
  6686. weight: math.unit(80, "kg"),
  6687. name: "Front (Clothed)",
  6688. image: {
  6689. source: "./media/characters/dr-clay/front-clothed.svg"
  6690. }
  6691. }
  6692. },
  6693. [
  6694. {
  6695. name: "Normal",
  6696. height: math.unit(1.92, "m")
  6697. },
  6698. {
  6699. name: "Macro",
  6700. height: math.unit(214, "meters"),
  6701. default: true
  6702. },
  6703. {
  6704. name: "Macro+",
  6705. height: math.unit(12.237, "meters"),
  6706. },
  6707. {
  6708. name: "Megamacro",
  6709. height: math.unit(557, "megameters"),
  6710. },
  6711. {
  6712. name: "Unimaginable",
  6713. height: math.unit(120e9, "lightyears")
  6714. },
  6715. ]
  6716. ))
  6717. characterMakers.push(() => makeCharacter(
  6718. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6719. {
  6720. front: {
  6721. height: math.unit(2, "meters"),
  6722. weight: math.unit(80, "kg"),
  6723. name: "Front",
  6724. image: {
  6725. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6726. }
  6727. }
  6728. },
  6729. [
  6730. {
  6731. name: "Teramacro",
  6732. height: math.unit(500000, "lightyears"),
  6733. default: true
  6734. },
  6735. ]
  6736. ))
  6737. characterMakers.push(() => makeCharacter(
  6738. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6739. {
  6740. crux: {
  6741. height: math.unit(2, "meters"),
  6742. weight: math.unit(150, "kg"),
  6743. name: "Crux",
  6744. image: {
  6745. source: "./media/characters/vemus/crux.svg",
  6746. extra: 1074/936,
  6747. bottom: 23/1097
  6748. }
  6749. },
  6750. skunkTanuki: {
  6751. height: math.unit(2, "meters"),
  6752. weight: math.unit(150, "kg"),
  6753. name: "Skunk-Tanuki",
  6754. image: {
  6755. source: "./media/characters/vemus/skunk-tanuki.svg",
  6756. extra: 926/893,
  6757. bottom: 20/946
  6758. }
  6759. },
  6760. },
  6761. [
  6762. {
  6763. name: "Normal",
  6764. height: math.unit(3.75, "meters"),
  6765. default: true
  6766. },
  6767. {
  6768. name: "Big",
  6769. height: math.unit(8, "meters")
  6770. },
  6771. {
  6772. name: "Macro",
  6773. height: math.unit(100, "meters")
  6774. },
  6775. {
  6776. name: "Macro+",
  6777. height: math.unit(1500, "meters")
  6778. },
  6779. {
  6780. name: "Stellar",
  6781. height: math.unit(14e8, "meters")
  6782. },
  6783. ]
  6784. ))
  6785. characterMakers.push(() => makeCharacter(
  6786. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6787. {
  6788. front: {
  6789. height: math.unit(2, "meters"),
  6790. weight: math.unit(70, "kg"),
  6791. name: "Front",
  6792. image: {
  6793. source: "./media/characters/beherit/front.svg",
  6794. extra: 1408 / 1242
  6795. }
  6796. }
  6797. },
  6798. [
  6799. {
  6800. name: "Normal",
  6801. height: math.unit(6, "feet")
  6802. },
  6803. {
  6804. name: "Lorg",
  6805. height: math.unit(25, "feet"),
  6806. default: true
  6807. },
  6808. {
  6809. name: "Lorger",
  6810. height: math.unit(75, "feet")
  6811. },
  6812. {
  6813. name: "Macro",
  6814. height: math.unit(200, "meters")
  6815. },
  6816. ]
  6817. ))
  6818. characterMakers.push(() => makeCharacter(
  6819. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6820. {
  6821. front: {
  6822. height: math.unit(2, "meters"),
  6823. weight: math.unit(150, "kg"),
  6824. name: "Front",
  6825. image: {
  6826. source: "./media/characters/everett/front.svg",
  6827. extra: 2038 / 1737,
  6828. bottom: 0.03
  6829. }
  6830. },
  6831. paw: {
  6832. height: math.unit(2 / 3.6, "meters"),
  6833. name: "Paw",
  6834. image: {
  6835. source: "./media/characters/everett/paw.svg"
  6836. }
  6837. },
  6838. },
  6839. [
  6840. {
  6841. name: "Normal",
  6842. height: math.unit(15, "feet"),
  6843. default: true
  6844. },
  6845. {
  6846. name: "Lorg",
  6847. height: math.unit(70, "feet"),
  6848. default: true
  6849. },
  6850. {
  6851. name: "Lorger",
  6852. height: math.unit(250, "feet")
  6853. },
  6854. {
  6855. name: "Macro",
  6856. height: math.unit(500, "meters")
  6857. },
  6858. ]
  6859. ))
  6860. characterMakers.push(() => makeCharacter(
  6861. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6862. {
  6863. front: {
  6864. height: math.unit(2, "meters"),
  6865. weight: math.unit(86, "kg"),
  6866. name: "Front",
  6867. image: {
  6868. source: "./media/characters/rose/front.svg",
  6869. extra: 1785/1636,
  6870. bottom: 30/1815
  6871. }
  6872. },
  6873. frontSporty: {
  6874. height: math.unit(2, "meters"),
  6875. weight: math.unit(86, "kg"),
  6876. name: "Front (Sporty)",
  6877. image: {
  6878. source: "./media/characters/rose/front-sporty.svg",
  6879. extra: 350/335,
  6880. bottom: 10/360
  6881. }
  6882. },
  6883. frontAlt: {
  6884. height: math.unit(1.6, "meters"),
  6885. weight: math.unit(86, "kg"),
  6886. name: "Front (Alt)",
  6887. image: {
  6888. source: "./media/characters/rose/front-alt.svg",
  6889. extra: 299/283,
  6890. bottom: 3/302
  6891. }
  6892. },
  6893. plush: {
  6894. height: math.unit(2, "meters"),
  6895. weight: math.unit(86/3, "kg"),
  6896. name: "Plush",
  6897. image: {
  6898. source: "./media/characters/rose/plush.svg",
  6899. extra: 361/337,
  6900. bottom: 11/372
  6901. }
  6902. },
  6903. },
  6904. [
  6905. {
  6906. name: "True Micro",
  6907. height: math.unit(9, "cm")
  6908. },
  6909. {
  6910. name: "Micro",
  6911. height: math.unit(16, "cm")
  6912. },
  6913. {
  6914. name: "Normal",
  6915. height: math.unit(1.85, "meters"),
  6916. default: true
  6917. },
  6918. {
  6919. name: "Mini-Macro",
  6920. height: math.unit(5, "meters")
  6921. },
  6922. {
  6923. name: "Macro",
  6924. height: math.unit(15, "meters")
  6925. },
  6926. {
  6927. name: "True Macro",
  6928. height: math.unit(40, "meters")
  6929. },
  6930. {
  6931. name: "City Scale",
  6932. height: math.unit(1, "km")
  6933. },
  6934. ]
  6935. ))
  6936. characterMakers.push(() => makeCharacter(
  6937. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6938. {
  6939. front: {
  6940. height: math.unit(2, "meters"),
  6941. weight: math.unit(350, "lbs"),
  6942. name: "Front",
  6943. image: {
  6944. source: "./media/characters/regal/front.svg"
  6945. }
  6946. },
  6947. back: {
  6948. height: math.unit(2, "meters"),
  6949. weight: math.unit(350, "lbs"),
  6950. name: "Back",
  6951. image: {
  6952. source: "./media/characters/regal/back.svg"
  6953. }
  6954. },
  6955. },
  6956. [
  6957. {
  6958. name: "Macro",
  6959. height: math.unit(350, "feet"),
  6960. default: true
  6961. }
  6962. ]
  6963. ))
  6964. characterMakers.push(() => makeCharacter(
  6965. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6966. {
  6967. front: {
  6968. height: math.unit(4 + 11 / 12, "feet"),
  6969. weight: math.unit(100, "lbs"),
  6970. name: "Front",
  6971. image: {
  6972. source: "./media/characters/opal/front.svg"
  6973. }
  6974. },
  6975. frontAlt: {
  6976. height: math.unit(4 + 11 / 12, "feet"),
  6977. weight: math.unit(100, "lbs"),
  6978. name: "Front (Alt)",
  6979. image: {
  6980. source: "./media/characters/opal/front-alt.svg"
  6981. }
  6982. },
  6983. },
  6984. [
  6985. {
  6986. name: "Small",
  6987. height: math.unit(4 + 11 / 12, "feet")
  6988. },
  6989. {
  6990. name: "Normal",
  6991. height: math.unit(20, "feet"),
  6992. default: true
  6993. },
  6994. {
  6995. name: "Macro",
  6996. height: math.unit(120, "feet")
  6997. },
  6998. {
  6999. name: "Megamacro",
  7000. height: math.unit(80, "miles")
  7001. },
  7002. {
  7003. name: "True Size",
  7004. height: math.unit(100000, "lightyears")
  7005. },
  7006. ]
  7007. ))
  7008. characterMakers.push(() => makeCharacter(
  7009. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7010. {
  7011. front: {
  7012. height: math.unit(6, "feet"),
  7013. weight: math.unit(200, "lbs"),
  7014. name: "Front",
  7015. image: {
  7016. source: "./media/characters/vector-wuff/front.svg"
  7017. }
  7018. }
  7019. },
  7020. [
  7021. {
  7022. name: "Normal",
  7023. height: math.unit(2.8, "meters")
  7024. },
  7025. {
  7026. name: "Macro",
  7027. height: math.unit(450, "meters"),
  7028. default: true
  7029. },
  7030. {
  7031. name: "Megamacro",
  7032. height: math.unit(15, "kilometers")
  7033. }
  7034. ]
  7035. ))
  7036. characterMakers.push(() => makeCharacter(
  7037. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7038. {
  7039. front: {
  7040. height: math.unit(6, "feet"),
  7041. weight: math.unit(256, "lbs"),
  7042. name: "Front",
  7043. image: {
  7044. source: "./media/characters/dannik/front.svg"
  7045. }
  7046. }
  7047. },
  7048. [
  7049. {
  7050. name: "Macro",
  7051. height: math.unit(69.57, "meters"),
  7052. default: true
  7053. },
  7054. ]
  7055. ))
  7056. characterMakers.push(() => makeCharacter(
  7057. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7058. {
  7059. front: {
  7060. height: math.unit(6, "feet"),
  7061. weight: math.unit(120, "lbs"),
  7062. name: "Front",
  7063. image: {
  7064. source: "./media/characters/azura-saharah/front.svg"
  7065. }
  7066. },
  7067. back: {
  7068. height: math.unit(6, "feet"),
  7069. weight: math.unit(120, "lbs"),
  7070. name: "Back",
  7071. image: {
  7072. source: "./media/characters/azura-saharah/back.svg"
  7073. }
  7074. },
  7075. },
  7076. [
  7077. {
  7078. name: "Macro",
  7079. height: math.unit(100, "feet"),
  7080. default: true
  7081. },
  7082. ]
  7083. ))
  7084. characterMakers.push(() => makeCharacter(
  7085. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7086. {
  7087. side: {
  7088. height: math.unit(5 + 4 / 12, "feet"),
  7089. weight: math.unit(163, "lbs"),
  7090. name: "Side",
  7091. image: {
  7092. source: "./media/characters/kennedy/side.svg"
  7093. }
  7094. }
  7095. },
  7096. [
  7097. {
  7098. name: "Standard Doggo",
  7099. height: math.unit(5 + 4 / 12, "feet")
  7100. },
  7101. {
  7102. name: "Big Doggo",
  7103. height: math.unit(25 + 3 / 12, "feet"),
  7104. default: true
  7105. },
  7106. ]
  7107. ))
  7108. characterMakers.push(() => makeCharacter(
  7109. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7110. {
  7111. front: {
  7112. height: math.unit(6, "feet"),
  7113. weight: math.unit(90, "lbs"),
  7114. name: "Front",
  7115. image: {
  7116. source: "./media/characters/odi-lunar/front.svg"
  7117. }
  7118. }
  7119. },
  7120. [
  7121. {
  7122. name: "Micro",
  7123. height: math.unit(3, "inches"),
  7124. default: true
  7125. },
  7126. {
  7127. name: "Normal",
  7128. height: math.unit(5.5, "feet")
  7129. }
  7130. ]
  7131. ))
  7132. characterMakers.push(() => makeCharacter(
  7133. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7134. {
  7135. back: {
  7136. height: math.unit(6, "feet"),
  7137. weight: math.unit(220, "lbs"),
  7138. name: "Back",
  7139. image: {
  7140. source: "./media/characters/mandake/back.svg"
  7141. }
  7142. }
  7143. },
  7144. [
  7145. {
  7146. name: "Normal",
  7147. height: math.unit(7, "feet"),
  7148. default: true
  7149. },
  7150. {
  7151. name: "Macro",
  7152. height: math.unit(78, "feet")
  7153. },
  7154. {
  7155. name: "Macro+",
  7156. height: math.unit(300, "meters")
  7157. },
  7158. {
  7159. name: "Macro++",
  7160. height: math.unit(2400, "feet")
  7161. },
  7162. {
  7163. name: "Megamacro",
  7164. height: math.unit(5167, "meters")
  7165. },
  7166. {
  7167. name: "Gigamacro",
  7168. height: math.unit(41769, "miles")
  7169. },
  7170. ]
  7171. ))
  7172. characterMakers.push(() => makeCharacter(
  7173. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7174. {
  7175. front: {
  7176. height: math.unit(6, "feet"),
  7177. weight: math.unit(120, "lbs"),
  7178. name: "Front",
  7179. image: {
  7180. source: "./media/characters/yozey/front.svg"
  7181. }
  7182. },
  7183. frontAlt: {
  7184. height: math.unit(6, "feet"),
  7185. weight: math.unit(120, "lbs"),
  7186. name: "Front (Alt)",
  7187. image: {
  7188. source: "./media/characters/yozey/front-alt.svg"
  7189. }
  7190. },
  7191. side: {
  7192. height: math.unit(6, "feet"),
  7193. weight: math.unit(120, "lbs"),
  7194. name: "Side",
  7195. image: {
  7196. source: "./media/characters/yozey/side.svg"
  7197. }
  7198. },
  7199. },
  7200. [
  7201. {
  7202. name: "Micro",
  7203. height: math.unit(3, "inches"),
  7204. default: true
  7205. },
  7206. {
  7207. name: "Normal",
  7208. height: math.unit(6, "feet")
  7209. }
  7210. ]
  7211. ))
  7212. characterMakers.push(() => makeCharacter(
  7213. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7214. {
  7215. front: {
  7216. height: math.unit(6, "feet"),
  7217. weight: math.unit(103, "lbs"),
  7218. name: "Front",
  7219. image: {
  7220. source: "./media/characters/valeska-voss/front.svg"
  7221. }
  7222. }
  7223. },
  7224. [
  7225. {
  7226. name: "Mini-Sized Sub",
  7227. height: math.unit(3.1, "inches")
  7228. },
  7229. {
  7230. name: "Mid-Sized Sub",
  7231. height: math.unit(6.2, "inches")
  7232. },
  7233. {
  7234. name: "Full-Sized Sub",
  7235. height: math.unit(9.3, "inches")
  7236. },
  7237. {
  7238. name: "Normal",
  7239. height: math.unit(5 + 2 / 12, "foot"),
  7240. default: true
  7241. },
  7242. ]
  7243. ))
  7244. characterMakers.push(() => makeCharacter(
  7245. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7246. {
  7247. front: {
  7248. height: math.unit(6, "feet"),
  7249. weight: math.unit(160, "lbs"),
  7250. name: "Front",
  7251. image: {
  7252. source: "./media/characters/gene-zeta/front.svg",
  7253. extra: 3006 / 2826,
  7254. bottom: 182 / 3188
  7255. }
  7256. }
  7257. },
  7258. [
  7259. {
  7260. name: "Micro",
  7261. height: math.unit(6, "inches")
  7262. },
  7263. {
  7264. name: "Normal",
  7265. height: math.unit(5 + 11 / 12, "foot"),
  7266. default: true
  7267. },
  7268. {
  7269. name: "Macro",
  7270. height: math.unit(140, "feet")
  7271. },
  7272. {
  7273. name: "Supercharged",
  7274. height: math.unit(2500, "feet")
  7275. },
  7276. ]
  7277. ))
  7278. characterMakers.push(() => makeCharacter(
  7279. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7280. {
  7281. front: {
  7282. height: math.unit(6, "feet"),
  7283. weight: math.unit(350, "lbs"),
  7284. name: "Front",
  7285. image: {
  7286. source: "./media/characters/razinox/front.svg",
  7287. extra: 1686 / 1548,
  7288. bottom: 28.2 / 1868
  7289. }
  7290. },
  7291. back: {
  7292. height: math.unit(6, "feet"),
  7293. weight: math.unit(350, "lbs"),
  7294. name: "Back",
  7295. image: {
  7296. source: "./media/characters/razinox/back.svg",
  7297. extra: 1660 / 1590,
  7298. bottom: 15 / 1665
  7299. }
  7300. },
  7301. },
  7302. [
  7303. {
  7304. name: "Normal",
  7305. height: math.unit(10 + 8 / 12, "foot")
  7306. },
  7307. {
  7308. name: "Minimacro",
  7309. height: math.unit(15, "foot")
  7310. },
  7311. {
  7312. name: "Macro",
  7313. height: math.unit(60, "foot"),
  7314. default: true
  7315. },
  7316. {
  7317. name: "Megamacro",
  7318. height: math.unit(5, "miles")
  7319. },
  7320. {
  7321. name: "Gigamacro",
  7322. height: math.unit(6000, "miles")
  7323. },
  7324. ]
  7325. ))
  7326. characterMakers.push(() => makeCharacter(
  7327. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7328. {
  7329. front: {
  7330. height: math.unit(6, "feet"),
  7331. weight: math.unit(150, "lbs"),
  7332. name: "Front",
  7333. image: {
  7334. source: "./media/characters/cobalt/front.svg"
  7335. }
  7336. }
  7337. },
  7338. [
  7339. {
  7340. name: "Normal",
  7341. height: math.unit(8 + 1 / 12, "foot")
  7342. },
  7343. {
  7344. name: "Macro",
  7345. height: math.unit(111, "foot"),
  7346. default: true
  7347. },
  7348. {
  7349. name: "Supracosmic",
  7350. height: math.unit(1e42, "feet")
  7351. },
  7352. ]
  7353. ))
  7354. characterMakers.push(() => makeCharacter(
  7355. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7356. {
  7357. front: {
  7358. height: math.unit(6, "feet"),
  7359. weight: math.unit(140, "lbs"),
  7360. name: "Front",
  7361. image: {
  7362. source: "./media/characters/amanda/front.svg"
  7363. }
  7364. }
  7365. },
  7366. [
  7367. {
  7368. name: "Micro",
  7369. height: math.unit(5, "inches"),
  7370. default: true
  7371. },
  7372. ]
  7373. ))
  7374. characterMakers.push(() => makeCharacter(
  7375. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7376. {
  7377. front: {
  7378. height: math.unit(2.75, "meters"),
  7379. weight: math.unit(1200, "lb"),
  7380. name: "Front",
  7381. image: {
  7382. source: "./media/characters/teal/front.svg",
  7383. extra: 2463 / 2320,
  7384. bottom: 166 / 2629
  7385. }
  7386. },
  7387. back: {
  7388. height: math.unit(2.75, "meters"),
  7389. weight: math.unit(1200, "lb"),
  7390. name: "Back",
  7391. image: {
  7392. source: "./media/characters/teal/back.svg",
  7393. extra: 2580 / 2489,
  7394. bottom: 151 / 2731
  7395. }
  7396. },
  7397. sitting: {
  7398. height: math.unit(1.9, "meters"),
  7399. weight: math.unit(1200, "lb"),
  7400. name: "Sitting",
  7401. image: {
  7402. source: "./media/characters/teal/sitting.svg",
  7403. extra: 623 / 590,
  7404. bottom: 121 / 744
  7405. }
  7406. },
  7407. standing: {
  7408. height: math.unit(2.75, "meters"),
  7409. weight: math.unit(1200, "lb"),
  7410. name: "Standing",
  7411. image: {
  7412. source: "./media/characters/teal/standing.svg",
  7413. extra: 923 / 893,
  7414. bottom: 60 / 983
  7415. }
  7416. },
  7417. stretching: {
  7418. height: math.unit(3.65, "meters"),
  7419. weight: math.unit(1200, "lb"),
  7420. name: "Stretching",
  7421. image: {
  7422. source: "./media/characters/teal/stretching.svg",
  7423. extra: 1276 / 1244,
  7424. bottom: 0 / 1276
  7425. }
  7426. },
  7427. legged: {
  7428. height: math.unit(1.3, "meters"),
  7429. weight: math.unit(100, "lb"),
  7430. name: "Legged",
  7431. image: {
  7432. source: "./media/characters/teal/legged.svg",
  7433. extra: 462 / 437,
  7434. bottom: 24 / 486
  7435. }
  7436. },
  7437. naga: {
  7438. height: math.unit(5.4, "meters"),
  7439. weight: math.unit(4000, "lb"),
  7440. name: "Naga",
  7441. image: {
  7442. source: "./media/characters/teal/naga.svg",
  7443. extra: 1902 / 1858,
  7444. bottom: 0 / 1902
  7445. }
  7446. },
  7447. hand: {
  7448. height: math.unit(0.52, "meters"),
  7449. name: "Hand",
  7450. image: {
  7451. source: "./media/characters/teal/hand.svg"
  7452. }
  7453. },
  7454. maw: {
  7455. height: math.unit(0.43, "meters"),
  7456. name: "Maw",
  7457. image: {
  7458. source: "./media/characters/teal/maw.svg"
  7459. }
  7460. },
  7461. slit: {
  7462. height: math.unit(0.25, "meters"),
  7463. name: "Slit",
  7464. image: {
  7465. source: "./media/characters/teal/slit.svg"
  7466. }
  7467. },
  7468. },
  7469. [
  7470. {
  7471. name: "Normal",
  7472. height: math.unit(2.75, "meters"),
  7473. default: true
  7474. },
  7475. {
  7476. name: "Macro",
  7477. height: math.unit(300, "feet")
  7478. },
  7479. {
  7480. name: "Macro+",
  7481. height: math.unit(2000, "feet")
  7482. },
  7483. ]
  7484. ))
  7485. characterMakers.push(() => makeCharacter(
  7486. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7487. {
  7488. frontCat: {
  7489. height: math.unit(6, "feet"),
  7490. weight: math.unit(180, "lbs"),
  7491. name: "Front (Cat)",
  7492. image: {
  7493. source: "./media/characters/ravin-amulet/front-cat.svg"
  7494. }
  7495. },
  7496. frontCatAlt: {
  7497. height: math.unit(6, "feet"),
  7498. weight: math.unit(180, "lbs"),
  7499. name: "Front (Alt, Cat)",
  7500. image: {
  7501. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7502. }
  7503. },
  7504. frontWerewolf: {
  7505. height: math.unit(6 * 1.2, "feet"),
  7506. weight: math.unit(225, "lbs"),
  7507. name: "Front (Werewolf)",
  7508. image: {
  7509. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7510. }
  7511. },
  7512. backWerewolf: {
  7513. height: math.unit(6 * 1.2, "feet"),
  7514. weight: math.unit(225, "lbs"),
  7515. name: "Back (Werewolf)",
  7516. image: {
  7517. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7518. }
  7519. },
  7520. },
  7521. [
  7522. {
  7523. name: "Nano",
  7524. height: math.unit(1, "micrometer")
  7525. },
  7526. {
  7527. name: "Micro",
  7528. height: math.unit(1, "inch")
  7529. },
  7530. {
  7531. name: "Normal",
  7532. height: math.unit(6, "feet"),
  7533. default: true
  7534. },
  7535. {
  7536. name: "Macro",
  7537. height: math.unit(60, "feet")
  7538. }
  7539. ]
  7540. ))
  7541. characterMakers.push(() => makeCharacter(
  7542. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7543. {
  7544. front: {
  7545. height: math.unit(6, "feet"),
  7546. weight: math.unit(165, "lbs"),
  7547. name: "Front",
  7548. image: {
  7549. source: "./media/characters/fluoresce/front.svg"
  7550. }
  7551. }
  7552. },
  7553. [
  7554. {
  7555. name: "Micro",
  7556. height: math.unit(6, "cm")
  7557. },
  7558. {
  7559. name: "Normal",
  7560. height: math.unit(5 + 7 / 12, "feet"),
  7561. default: true
  7562. },
  7563. {
  7564. name: "Macro",
  7565. height: math.unit(56, "feet")
  7566. },
  7567. {
  7568. name: "Megamacro",
  7569. height: math.unit(1.9, "miles")
  7570. },
  7571. ]
  7572. ))
  7573. characterMakers.push(() => makeCharacter(
  7574. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7575. {
  7576. front: {
  7577. height: math.unit(9 + 6 / 12, "feet"),
  7578. weight: math.unit(523, "lbs"),
  7579. name: "Side",
  7580. image: {
  7581. source: "./media/characters/aurora/side.svg"
  7582. }
  7583. }
  7584. },
  7585. [
  7586. {
  7587. name: "Normal",
  7588. height: math.unit(9 + 6 / 12, "feet")
  7589. },
  7590. {
  7591. name: "Macro",
  7592. height: math.unit(96, "feet"),
  7593. default: true
  7594. },
  7595. {
  7596. name: "Macro+",
  7597. height: math.unit(243, "feet")
  7598. },
  7599. ]
  7600. ))
  7601. characterMakers.push(() => makeCharacter(
  7602. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7603. {
  7604. front: {
  7605. height: math.unit(194, "cm"),
  7606. weight: math.unit(90, "kg"),
  7607. name: "Front",
  7608. image: {
  7609. source: "./media/characters/ranek/front.svg"
  7610. }
  7611. },
  7612. side: {
  7613. height: math.unit(194, "cm"),
  7614. weight: math.unit(90, "kg"),
  7615. name: "Side",
  7616. image: {
  7617. source: "./media/characters/ranek/side.svg"
  7618. }
  7619. },
  7620. back: {
  7621. height: math.unit(194, "cm"),
  7622. weight: math.unit(90, "kg"),
  7623. name: "Back",
  7624. image: {
  7625. source: "./media/characters/ranek/back.svg"
  7626. }
  7627. },
  7628. feral: {
  7629. height: math.unit(30, "cm"),
  7630. weight: math.unit(1.6, "lbs"),
  7631. name: "Feral",
  7632. image: {
  7633. source: "./media/characters/ranek/feral.svg"
  7634. }
  7635. },
  7636. },
  7637. [
  7638. {
  7639. name: "Normal",
  7640. height: math.unit(194, "cm"),
  7641. default: true
  7642. },
  7643. {
  7644. name: "Macro",
  7645. height: math.unit(100, "meters")
  7646. },
  7647. ]
  7648. ))
  7649. characterMakers.push(() => makeCharacter(
  7650. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7651. {
  7652. front: {
  7653. height: math.unit(5 + 6 / 12, "feet"),
  7654. weight: math.unit(153, "lbs"),
  7655. name: "Front",
  7656. image: {
  7657. source: "./media/characters/andrew-cooper/front.svg"
  7658. }
  7659. },
  7660. },
  7661. [
  7662. {
  7663. name: "Nano",
  7664. height: math.unit(1, "mm")
  7665. },
  7666. {
  7667. name: "Micro",
  7668. height: math.unit(2, "inches")
  7669. },
  7670. {
  7671. name: "Normal",
  7672. height: math.unit(5 + 6 / 12, "feet"),
  7673. default: true
  7674. }
  7675. ]
  7676. ))
  7677. characterMakers.push(() => makeCharacter(
  7678. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7679. {
  7680. front: {
  7681. height: math.unit(6, "feet"),
  7682. weight: math.unit(180, "lbs"),
  7683. name: "Front",
  7684. image: {
  7685. source: "./media/characters/akane-sato/front.svg",
  7686. extra: 1219 / 1140
  7687. }
  7688. },
  7689. back: {
  7690. height: math.unit(6, "feet"),
  7691. weight: math.unit(180, "lbs"),
  7692. name: "Back",
  7693. image: {
  7694. source: "./media/characters/akane-sato/back.svg",
  7695. extra: 1219 / 1170
  7696. }
  7697. },
  7698. },
  7699. [
  7700. {
  7701. name: "Normal",
  7702. height: math.unit(2.5, "meters")
  7703. },
  7704. {
  7705. name: "Macro",
  7706. height: math.unit(250, "meters"),
  7707. default: true
  7708. },
  7709. {
  7710. name: "Megamacro",
  7711. height: math.unit(25, "km")
  7712. },
  7713. ]
  7714. ))
  7715. characterMakers.push(() => makeCharacter(
  7716. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7717. {
  7718. front: {
  7719. height: math.unit(6, "feet"),
  7720. weight: math.unit(65, "kg"),
  7721. name: "Front",
  7722. image: {
  7723. source: "./media/characters/rook/front.svg",
  7724. extra: 960 / 950
  7725. }
  7726. }
  7727. },
  7728. [
  7729. {
  7730. name: "Normal",
  7731. height: math.unit(8.8, "feet")
  7732. },
  7733. {
  7734. name: "Macro",
  7735. height: math.unit(88, "feet"),
  7736. default: true
  7737. },
  7738. {
  7739. name: "Megamacro",
  7740. height: math.unit(8, "miles")
  7741. },
  7742. ]
  7743. ))
  7744. characterMakers.push(() => makeCharacter(
  7745. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7746. {
  7747. front: {
  7748. height: math.unit(12 + 2 / 12, "feet"),
  7749. weight: math.unit(808, "lbs"),
  7750. name: "Front",
  7751. image: {
  7752. source: "./media/characters/prodigy/front.svg"
  7753. }
  7754. }
  7755. },
  7756. [
  7757. {
  7758. name: "Normal",
  7759. height: math.unit(12 + 2 / 12, "feet"),
  7760. default: true
  7761. },
  7762. {
  7763. name: "Macro",
  7764. height: math.unit(143, "feet")
  7765. },
  7766. {
  7767. name: "Macro+",
  7768. height: math.unit(400, "feet")
  7769. },
  7770. ]
  7771. ))
  7772. characterMakers.push(() => makeCharacter(
  7773. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7774. {
  7775. front: {
  7776. height: math.unit(6, "feet"),
  7777. weight: math.unit(225, "lbs"),
  7778. name: "Front",
  7779. image: {
  7780. source: "./media/characters/daniel/front.svg"
  7781. }
  7782. },
  7783. leaning: {
  7784. height: math.unit(6, "feet"),
  7785. weight: math.unit(225, "lbs"),
  7786. name: "Leaning",
  7787. image: {
  7788. source: "./media/characters/daniel/leaning.svg"
  7789. }
  7790. },
  7791. },
  7792. [
  7793. {
  7794. name: "Macro",
  7795. height: math.unit(1000, "feet"),
  7796. default: true
  7797. },
  7798. ]
  7799. ))
  7800. characterMakers.push(() => makeCharacter(
  7801. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7802. {
  7803. front: {
  7804. height: math.unit(6, "feet"),
  7805. weight: math.unit(88, "lbs"),
  7806. name: "Front",
  7807. image: {
  7808. source: "./media/characters/chiros/front.svg",
  7809. extra: 306 / 226
  7810. }
  7811. },
  7812. side: {
  7813. height: math.unit(6, "feet"),
  7814. weight: math.unit(88, "lbs"),
  7815. name: "Side",
  7816. image: {
  7817. source: "./media/characters/chiros/side.svg",
  7818. extra: 306 / 226
  7819. }
  7820. },
  7821. },
  7822. [
  7823. {
  7824. name: "Normal",
  7825. height: math.unit(6, "cm"),
  7826. default: true
  7827. },
  7828. ]
  7829. ))
  7830. characterMakers.push(() => makeCharacter(
  7831. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7832. {
  7833. front: {
  7834. height: math.unit(6, "feet"),
  7835. weight: math.unit(100, "lbs"),
  7836. name: "Front",
  7837. image: {
  7838. source: "./media/characters/selka/front.svg",
  7839. extra: 947 / 887
  7840. }
  7841. }
  7842. },
  7843. [
  7844. {
  7845. name: "Normal",
  7846. height: math.unit(5, "cm"),
  7847. default: true
  7848. },
  7849. ]
  7850. ))
  7851. characterMakers.push(() => makeCharacter(
  7852. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7853. {
  7854. front: {
  7855. height: math.unit(8 + 3 / 12, "feet"),
  7856. weight: math.unit(424, "lbs"),
  7857. name: "Front",
  7858. image: {
  7859. source: "./media/characters/verin/front.svg",
  7860. extra: 1845 / 1550
  7861. }
  7862. },
  7863. frontArmored: {
  7864. height: math.unit(8 + 3 / 12, "feet"),
  7865. weight: math.unit(424, "lbs"),
  7866. name: "Front (Armored)",
  7867. image: {
  7868. source: "./media/characters/verin/front-armor.svg",
  7869. extra: 1845 / 1550,
  7870. bottom: 0.01
  7871. }
  7872. },
  7873. back: {
  7874. height: math.unit(8 + 3 / 12, "feet"),
  7875. weight: math.unit(424, "lbs"),
  7876. name: "Back",
  7877. image: {
  7878. source: "./media/characters/verin/back.svg",
  7879. bottom: 0.1,
  7880. extra: 1
  7881. }
  7882. },
  7883. foot: {
  7884. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7885. name: "Foot",
  7886. image: {
  7887. source: "./media/characters/verin/foot.svg"
  7888. }
  7889. },
  7890. },
  7891. [
  7892. {
  7893. name: "Normal",
  7894. height: math.unit(8 + 3 / 12, "feet")
  7895. },
  7896. {
  7897. name: "Minimacro",
  7898. height: math.unit(21, "feet"),
  7899. default: true
  7900. },
  7901. {
  7902. name: "Macro",
  7903. height: math.unit(626, "feet")
  7904. },
  7905. ]
  7906. ))
  7907. characterMakers.push(() => makeCharacter(
  7908. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7909. {
  7910. front: {
  7911. height: math.unit(2.718, "meters"),
  7912. weight: math.unit(150, "lbs"),
  7913. name: "Front",
  7914. image: {
  7915. source: "./media/characters/sovrim-terraquian/front.svg"
  7916. }
  7917. },
  7918. back: {
  7919. height: math.unit(2.718, "meters"),
  7920. weight: math.unit(150, "lbs"),
  7921. name: "Back",
  7922. image: {
  7923. source: "./media/characters/sovrim-terraquian/back.svg"
  7924. }
  7925. }
  7926. },
  7927. [
  7928. {
  7929. name: "Micro",
  7930. height: math.unit(2, "inches")
  7931. },
  7932. {
  7933. name: "Small",
  7934. height: math.unit(1, "meter")
  7935. },
  7936. {
  7937. name: "Normal",
  7938. height: math.unit(Math.E, "meters"),
  7939. default: true
  7940. },
  7941. {
  7942. name: "Macro",
  7943. height: math.unit(20, "meters")
  7944. },
  7945. {
  7946. name: "Macro+",
  7947. height: math.unit(400, "meters")
  7948. },
  7949. ]
  7950. ))
  7951. characterMakers.push(() => makeCharacter(
  7952. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7953. {
  7954. front: {
  7955. height: math.unit(7, "feet"),
  7956. weight: math.unit(489, "lbs"),
  7957. name: "Front",
  7958. image: {
  7959. source: "./media/characters/reece-silvermane/front.svg",
  7960. bottom: 0.02,
  7961. extra: 1
  7962. }
  7963. },
  7964. },
  7965. [
  7966. {
  7967. name: "Macro",
  7968. height: math.unit(1.5, "miles"),
  7969. default: true
  7970. },
  7971. ]
  7972. ))
  7973. characterMakers.push(() => makeCharacter(
  7974. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7975. {
  7976. front: {
  7977. height: math.unit(6, "feet"),
  7978. weight: math.unit(78, "kg"),
  7979. name: "Front",
  7980. image: {
  7981. source: "./media/characters/kane/front.svg",
  7982. extra: 978 / 899
  7983. }
  7984. },
  7985. },
  7986. [
  7987. {
  7988. name: "Normal",
  7989. height: math.unit(2.1, "m"),
  7990. },
  7991. {
  7992. name: "Macro",
  7993. height: math.unit(1, "km"),
  7994. default: true
  7995. },
  7996. ]
  7997. ))
  7998. characterMakers.push(() => makeCharacter(
  7999. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8000. {
  8001. front: {
  8002. height: math.unit(6, "feet"),
  8003. weight: math.unit(200, "kg"),
  8004. name: "Front",
  8005. image: {
  8006. source: "./media/characters/tegon/front.svg",
  8007. bottom: 0.01,
  8008. extra: 1
  8009. }
  8010. },
  8011. },
  8012. [
  8013. {
  8014. name: "Micro",
  8015. height: math.unit(1, "inch")
  8016. },
  8017. {
  8018. name: "Normal",
  8019. height: math.unit(6 + 3 / 12, "feet"),
  8020. default: true
  8021. },
  8022. {
  8023. name: "Macro",
  8024. height: math.unit(300, "feet")
  8025. },
  8026. {
  8027. name: "Megamacro",
  8028. height: math.unit(69, "miles")
  8029. },
  8030. ]
  8031. ))
  8032. characterMakers.push(() => makeCharacter(
  8033. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8034. {
  8035. side: {
  8036. height: math.unit(6, "feet"),
  8037. weight: math.unit(2304, "lbs"),
  8038. name: "Side",
  8039. image: {
  8040. source: "./media/characters/arcturax/side.svg",
  8041. extra: 790 / 376,
  8042. bottom: 0.01
  8043. }
  8044. },
  8045. },
  8046. [
  8047. {
  8048. name: "Micro",
  8049. height: math.unit(2, "inch")
  8050. },
  8051. {
  8052. name: "Normal",
  8053. height: math.unit(6, "feet")
  8054. },
  8055. {
  8056. name: "Macro",
  8057. height: math.unit(39, "feet"),
  8058. default: true
  8059. },
  8060. {
  8061. name: "Megamacro",
  8062. height: math.unit(7, "miles")
  8063. },
  8064. ]
  8065. ))
  8066. characterMakers.push(() => makeCharacter(
  8067. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8068. {
  8069. front: {
  8070. height: math.unit(6, "feet"),
  8071. weight: math.unit(50, "lbs"),
  8072. name: "Front",
  8073. image: {
  8074. source: "./media/characters/sentri/front.svg",
  8075. extra: 1750 / 1570,
  8076. bottom: 0.025
  8077. }
  8078. },
  8079. frontAlt: {
  8080. height: math.unit(6, "feet"),
  8081. weight: math.unit(50, "lbs"),
  8082. name: "Front (Alt)",
  8083. image: {
  8084. source: "./media/characters/sentri/front-alt.svg",
  8085. extra: 1750 / 1570,
  8086. bottom: 0.025
  8087. }
  8088. },
  8089. },
  8090. [
  8091. {
  8092. name: "Normal",
  8093. height: math.unit(15, "feet"),
  8094. default: true
  8095. },
  8096. {
  8097. name: "Macro",
  8098. height: math.unit(2500, "feet")
  8099. }
  8100. ]
  8101. ))
  8102. characterMakers.push(() => makeCharacter(
  8103. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8104. {
  8105. front: {
  8106. height: math.unit(5 + 8 / 12, "feet"),
  8107. weight: math.unit(130, "lbs"),
  8108. name: "Front",
  8109. image: {
  8110. source: "./media/characters/corvin/front.svg",
  8111. extra: 1803 / 1629
  8112. }
  8113. },
  8114. frontShirt: {
  8115. height: math.unit(5 + 8 / 12, "feet"),
  8116. weight: math.unit(130, "lbs"),
  8117. name: "Front (Shirt)",
  8118. image: {
  8119. source: "./media/characters/corvin/front-shirt.svg",
  8120. extra: 1803 / 1629
  8121. }
  8122. },
  8123. frontPoncho: {
  8124. height: math.unit(5 + 8 / 12, "feet"),
  8125. weight: math.unit(130, "lbs"),
  8126. name: "Front (Poncho)",
  8127. image: {
  8128. source: "./media/characters/corvin/front-poncho.svg",
  8129. extra: 1803 / 1629
  8130. }
  8131. },
  8132. side: {
  8133. height: math.unit(5 + 8 / 12, "feet"),
  8134. weight: math.unit(130, "lbs"),
  8135. name: "Side",
  8136. image: {
  8137. source: "./media/characters/corvin/side.svg",
  8138. extra: 1012 / 945
  8139. }
  8140. },
  8141. back: {
  8142. height: math.unit(5 + 8 / 12, "feet"),
  8143. weight: math.unit(130, "lbs"),
  8144. name: "Back",
  8145. image: {
  8146. source: "./media/characters/corvin/back.svg",
  8147. extra: 1803 / 1629
  8148. }
  8149. },
  8150. },
  8151. [
  8152. {
  8153. name: "Micro",
  8154. height: math.unit(3, "inches")
  8155. },
  8156. {
  8157. name: "Normal",
  8158. height: math.unit(5 + 8 / 12, "feet")
  8159. },
  8160. {
  8161. name: "Macro",
  8162. height: math.unit(300, "feet"),
  8163. default: true
  8164. },
  8165. {
  8166. name: "Megamacro",
  8167. height: math.unit(500, "miles")
  8168. }
  8169. ]
  8170. ))
  8171. characterMakers.push(() => makeCharacter(
  8172. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8173. {
  8174. front: {
  8175. height: math.unit(6, "feet"),
  8176. weight: math.unit(135, "lbs"),
  8177. name: "Front",
  8178. image: {
  8179. source: "./media/characters/q/front.svg",
  8180. extra: 854 / 752,
  8181. bottom: 0.005
  8182. }
  8183. },
  8184. back: {
  8185. height: math.unit(6, "feet"),
  8186. weight: math.unit(130, "lbs"),
  8187. name: "Back",
  8188. image: {
  8189. source: "./media/characters/q/back.svg",
  8190. extra: 854 / 752
  8191. }
  8192. },
  8193. },
  8194. [
  8195. {
  8196. name: "Macro",
  8197. height: math.unit(90, "feet"),
  8198. default: true
  8199. },
  8200. {
  8201. name: "Extra Macro",
  8202. height: math.unit(300, "feet"),
  8203. },
  8204. {
  8205. name: "BIG WALF",
  8206. height: math.unit(750, "feet"),
  8207. },
  8208. ]
  8209. ))
  8210. characterMakers.push(() => makeCharacter(
  8211. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8212. {
  8213. front: {
  8214. height: math.unit(6, "feet"),
  8215. weight: math.unit(150, "lbs"),
  8216. name: "Front",
  8217. image: {
  8218. source: "./media/characters/carley/front.svg",
  8219. extra: 3927 / 3540,
  8220. bottom: 29.2 / 735
  8221. }
  8222. }
  8223. },
  8224. [
  8225. {
  8226. name: "Normal",
  8227. height: math.unit(6 + 3 / 12, "feet")
  8228. },
  8229. {
  8230. name: "Macro",
  8231. height: math.unit(185, "feet"),
  8232. default: true
  8233. },
  8234. {
  8235. name: "Megamacro",
  8236. height: math.unit(8, "miles"),
  8237. },
  8238. ]
  8239. ))
  8240. characterMakers.push(() => makeCharacter(
  8241. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8242. {
  8243. front: {
  8244. height: math.unit(3, "feet"),
  8245. weight: math.unit(28, "lbs"),
  8246. name: "Front",
  8247. image: {
  8248. source: "./media/characters/citrine/front.svg"
  8249. }
  8250. }
  8251. },
  8252. [
  8253. {
  8254. name: "Normal",
  8255. height: math.unit(3, "feet"),
  8256. default: true
  8257. }
  8258. ]
  8259. ))
  8260. characterMakers.push(() => makeCharacter(
  8261. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8262. {
  8263. front: {
  8264. height: math.unit(14, "feet"),
  8265. weight: math.unit(1450, "kg"),
  8266. capacity: math.unit(15, "people"),
  8267. name: "Front",
  8268. image: {
  8269. source: "./media/characters/aura-starwind/front.svg",
  8270. extra: 1440/1327,
  8271. bottom: 11/1451
  8272. }
  8273. },
  8274. side: {
  8275. height: math.unit(14, "feet"),
  8276. weight: math.unit(1450, "kg"),
  8277. capacity: math.unit(15, "people"),
  8278. name: "Side",
  8279. image: {
  8280. source: "./media/characters/aura-starwind/side.svg",
  8281. extra: 1654 / 1497
  8282. }
  8283. },
  8284. taur: {
  8285. height: math.unit(18, "feet"),
  8286. weight: math.unit(5500, "kg"),
  8287. capacity: math.unit(50, "people"),
  8288. name: "Taur",
  8289. image: {
  8290. source: "./media/characters/aura-starwind/taur.svg",
  8291. extra: 1760 / 1650
  8292. }
  8293. },
  8294. feral: {
  8295. height: math.unit(46, "feet"),
  8296. weight: math.unit(25000, "kg"),
  8297. capacity: math.unit(120, "people"),
  8298. name: "Feral",
  8299. image: {
  8300. source: "./media/characters/aura-starwind/feral.svg"
  8301. }
  8302. },
  8303. },
  8304. [
  8305. {
  8306. name: "Normal",
  8307. height: math.unit(14, "feet"),
  8308. default: true
  8309. },
  8310. {
  8311. name: "Macro",
  8312. height: math.unit(50, "meters")
  8313. },
  8314. {
  8315. name: "Megamacro",
  8316. height: math.unit(5000, "meters")
  8317. },
  8318. {
  8319. name: "Gigamacro",
  8320. height: math.unit(100000, "kilometers")
  8321. },
  8322. ]
  8323. ))
  8324. characterMakers.push(() => makeCharacter(
  8325. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8326. {
  8327. front: {
  8328. height: math.unit(2 + 7 / 12, "feet"),
  8329. weight: math.unit(32, "lbs"),
  8330. name: "Front",
  8331. image: {
  8332. source: "./media/characters/rivet/front.svg",
  8333. extra: 1716 / 1658,
  8334. bottom: 0.03
  8335. }
  8336. },
  8337. foot: {
  8338. height: math.unit(0.551, "feet"),
  8339. name: "Rivet's Foot",
  8340. image: {
  8341. source: "./media/characters/rivet/foot.svg"
  8342. },
  8343. rename: true
  8344. }
  8345. },
  8346. [
  8347. {
  8348. name: "Micro",
  8349. height: math.unit(1.5, "inches"),
  8350. },
  8351. {
  8352. name: "Normal",
  8353. height: math.unit(2 + 7 / 12, "feet"),
  8354. default: true
  8355. },
  8356. {
  8357. name: "Macro",
  8358. height: math.unit(85, "feet")
  8359. },
  8360. {
  8361. name: "Megamacro",
  8362. height: math.unit(2.2, "km")
  8363. }
  8364. ]
  8365. ))
  8366. characterMakers.push(() => makeCharacter(
  8367. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8368. {
  8369. front: {
  8370. height: math.unit(5 + 9 / 12, "feet"),
  8371. weight: math.unit(150, "lbs"),
  8372. name: "Front",
  8373. image: {
  8374. source: "./media/characters/coffee/front.svg",
  8375. extra: 3666 / 3032,
  8376. bottom: 0.04
  8377. }
  8378. },
  8379. foot: {
  8380. height: math.unit(1.29, "feet"),
  8381. name: "Foot",
  8382. image: {
  8383. source: "./media/characters/coffee/foot.svg"
  8384. }
  8385. },
  8386. },
  8387. [
  8388. {
  8389. name: "Micro",
  8390. height: math.unit(2, "inches"),
  8391. },
  8392. {
  8393. name: "Normal",
  8394. height: math.unit(5 + 9 / 12, "feet"),
  8395. default: true
  8396. },
  8397. {
  8398. name: "Macro",
  8399. height: math.unit(800, "feet")
  8400. },
  8401. {
  8402. name: "Megamacro",
  8403. height: math.unit(25, "miles")
  8404. }
  8405. ]
  8406. ))
  8407. characterMakers.push(() => makeCharacter(
  8408. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8409. {
  8410. front: {
  8411. height: math.unit(6, "feet"),
  8412. weight: math.unit(200, "lbs"),
  8413. name: "Front",
  8414. image: {
  8415. source: "./media/characters/chari-gal/front.svg",
  8416. extra: 1568 / 1385,
  8417. bottom: 0.047
  8418. }
  8419. },
  8420. gigantamax: {
  8421. height: math.unit(6 * 16, "feet"),
  8422. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8423. name: "Gigantamax",
  8424. image: {
  8425. source: "./media/characters/chari-gal/gigantamax.svg",
  8426. extra: 1124 / 888,
  8427. bottom: 0.03
  8428. }
  8429. },
  8430. },
  8431. [
  8432. {
  8433. name: "Normal",
  8434. height: math.unit(5 + 7 / 12, "feet")
  8435. },
  8436. {
  8437. name: "Macro",
  8438. height: math.unit(200, "feet"),
  8439. default: true
  8440. }
  8441. ]
  8442. ))
  8443. characterMakers.push(() => makeCharacter(
  8444. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8445. {
  8446. front: {
  8447. height: math.unit(6, "feet"),
  8448. weight: math.unit(150, "lbs"),
  8449. name: "Front",
  8450. image: {
  8451. source: "./media/characters/nova/front.svg",
  8452. extra: 5000 / 4722,
  8453. bottom: 0.02
  8454. }
  8455. }
  8456. },
  8457. [
  8458. {
  8459. name: "Micro-",
  8460. height: math.unit(0.8, "inches")
  8461. },
  8462. {
  8463. name: "Micro",
  8464. height: math.unit(2, "inches"),
  8465. default: true
  8466. },
  8467. ]
  8468. ))
  8469. characterMakers.push(() => makeCharacter(
  8470. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8471. {
  8472. front: {
  8473. height: math.unit(3 + 1 / 12, "feet"),
  8474. weight: math.unit(21.7, "lbs"),
  8475. name: "Front",
  8476. image: {
  8477. source: "./media/characters/argent/front.svg",
  8478. extra: 1471 / 1331,
  8479. bottom: 100.8 / 1575.5
  8480. }
  8481. }
  8482. },
  8483. [
  8484. {
  8485. name: "Micro",
  8486. height: math.unit(2, "inches")
  8487. },
  8488. {
  8489. name: "Normal",
  8490. height: math.unit(3 + 1 / 12, "feet"),
  8491. default: true
  8492. },
  8493. {
  8494. name: "Macro",
  8495. height: math.unit(120, "feet")
  8496. },
  8497. ]
  8498. ))
  8499. characterMakers.push(() => makeCharacter(
  8500. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8501. {
  8502. lamp: {
  8503. height: math.unit(7 * 1559 / 989, "feet"),
  8504. name: "Magic Lamp",
  8505. image: {
  8506. source: "./media/characters/mira-al-cul/lamp.svg",
  8507. extra: 1617 / 1559
  8508. }
  8509. },
  8510. front: {
  8511. height: math.unit(7, "feet"),
  8512. name: "Front",
  8513. image: {
  8514. source: "./media/characters/mira-al-cul/front.svg",
  8515. extra: 1044 / 990
  8516. }
  8517. },
  8518. },
  8519. [
  8520. {
  8521. name: "Heavily Restricted",
  8522. height: math.unit(7 * 1559 / 989, "feet")
  8523. },
  8524. {
  8525. name: "Freshly Freed",
  8526. height: math.unit(50 * 1559 / 989, "feet")
  8527. },
  8528. {
  8529. name: "World Encompassing",
  8530. height: math.unit(10000 * 1559 / 989, "miles")
  8531. },
  8532. {
  8533. name: "Galactic",
  8534. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8535. },
  8536. {
  8537. name: "Palmed Universe",
  8538. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8539. default: true
  8540. },
  8541. {
  8542. name: "Multiversal Matriarch",
  8543. height: math.unit(8.87e10, "yottameters")
  8544. },
  8545. {
  8546. name: "Void Mother",
  8547. height: math.unit(3.14e110, "yottaparsecs")
  8548. },
  8549. {
  8550. name: "Toying with Transcendence",
  8551. height: math.unit(1e307, "meters")
  8552. },
  8553. ]
  8554. ))
  8555. characterMakers.push(() => makeCharacter(
  8556. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8557. {
  8558. front: {
  8559. height: math.unit(17 + 1 / 12, "feet"),
  8560. weight: math.unit(476.2 * 5, "lbs"),
  8561. name: "Front",
  8562. image: {
  8563. source: "./media/characters/kuro-shi-uchū/front.svg",
  8564. extra: 2329 / 1835,
  8565. bottom: 0.02
  8566. }
  8567. },
  8568. },
  8569. [
  8570. {
  8571. name: "Micro",
  8572. height: math.unit(2, "inches")
  8573. },
  8574. {
  8575. name: "Normal",
  8576. height: math.unit(12, "meters")
  8577. },
  8578. {
  8579. name: "Planetary",
  8580. height: math.unit(0.00929, "AU"),
  8581. default: true
  8582. },
  8583. {
  8584. name: "Universal",
  8585. height: math.unit(20, "gigaparsecs")
  8586. },
  8587. ]
  8588. ))
  8589. characterMakers.push(() => makeCharacter(
  8590. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8591. {
  8592. front: {
  8593. height: math.unit(5 + 2 / 12, "feet"),
  8594. weight: math.unit(120, "lbs"),
  8595. name: "Front",
  8596. image: {
  8597. source: "./media/characters/katherine/front.svg",
  8598. extra: 2075 / 1969
  8599. }
  8600. },
  8601. dress: {
  8602. height: math.unit(5 + 2 / 12, "feet"),
  8603. weight: math.unit(120, "lbs"),
  8604. name: "Dress",
  8605. image: {
  8606. source: "./media/characters/katherine/dress.svg",
  8607. extra: 2258 / 2064
  8608. }
  8609. },
  8610. },
  8611. [
  8612. {
  8613. name: "Micro",
  8614. height: math.unit(1, "inches"),
  8615. default: true
  8616. },
  8617. {
  8618. name: "Normal",
  8619. height: math.unit(5 + 2 / 12, "feet")
  8620. },
  8621. {
  8622. name: "Macro",
  8623. height: math.unit(100, "meters")
  8624. },
  8625. {
  8626. name: "Megamacro",
  8627. height: math.unit(80, "miles")
  8628. },
  8629. ]
  8630. ))
  8631. characterMakers.push(() => makeCharacter(
  8632. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8633. {
  8634. front: {
  8635. height: math.unit(7 + 8 / 12, "feet"),
  8636. weight: math.unit(250, "lbs"),
  8637. name: "Front",
  8638. image: {
  8639. source: "./media/characters/yevis/front.svg",
  8640. extra: 1938 / 1755
  8641. }
  8642. }
  8643. },
  8644. [
  8645. {
  8646. name: "Mortal",
  8647. height: math.unit(7 + 8 / 12, "feet")
  8648. },
  8649. {
  8650. name: "Battle",
  8651. height: math.unit(25 + 11 / 12, "feet")
  8652. },
  8653. {
  8654. name: "Wrath",
  8655. height: math.unit(1654 + 11 / 12, "feet")
  8656. },
  8657. {
  8658. name: "Planet Destroyer",
  8659. height: math.unit(12000, "miles")
  8660. },
  8661. {
  8662. name: "Galaxy Conqueror",
  8663. height: math.unit(1.45, "zettameters"),
  8664. default: true
  8665. },
  8666. {
  8667. name: "Universal War",
  8668. height: math.unit(184, "gigaparsecs")
  8669. },
  8670. {
  8671. name: "Eternity War",
  8672. height: math.unit(1.98e55, "yottaparsecs")
  8673. },
  8674. ]
  8675. ))
  8676. characterMakers.push(() => makeCharacter(
  8677. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8678. {
  8679. front: {
  8680. height: math.unit(5 + 8 / 12, "feet"),
  8681. weight: math.unit(63, "kg"),
  8682. name: "Front",
  8683. image: {
  8684. source: "./media/characters/xavier/front.svg",
  8685. extra: 944 / 883
  8686. }
  8687. },
  8688. frontStretch: {
  8689. height: math.unit(5 + 8 / 12, "feet"),
  8690. weight: math.unit(63, "kg"),
  8691. name: "Stretching",
  8692. image: {
  8693. source: "./media/characters/xavier/front-stretch.svg",
  8694. extra: 962 / 820
  8695. }
  8696. },
  8697. },
  8698. [
  8699. {
  8700. name: "Normal",
  8701. height: math.unit(5 + 8 / 12, "feet")
  8702. },
  8703. {
  8704. name: "Macro",
  8705. height: math.unit(100, "meters"),
  8706. default: true
  8707. },
  8708. {
  8709. name: "McLargeHuge",
  8710. height: math.unit(10, "miles")
  8711. },
  8712. ]
  8713. ))
  8714. characterMakers.push(() => makeCharacter(
  8715. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8716. {
  8717. front: {
  8718. height: math.unit(5 + 5 / 12, "feet"),
  8719. weight: math.unit(150, "lb"),
  8720. name: "Front",
  8721. image: {
  8722. source: "./media/characters/joshii/front.svg",
  8723. extra: 765 / 653,
  8724. bottom: 51 / 816
  8725. }
  8726. },
  8727. foot: {
  8728. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8729. name: "Foot",
  8730. image: {
  8731. source: "./media/characters/joshii/foot.svg"
  8732. }
  8733. },
  8734. },
  8735. [
  8736. {
  8737. name: "Micro",
  8738. height: math.unit(2, "inches"),
  8739. default: true
  8740. },
  8741. {
  8742. name: "Normal",
  8743. height: math.unit(5 + 5 / 12, "feet")
  8744. },
  8745. {
  8746. name: "Macro",
  8747. height: math.unit(785, "feet")
  8748. },
  8749. {
  8750. name: "Megamacro",
  8751. height: math.unit(24.5, "miles")
  8752. },
  8753. ]
  8754. ))
  8755. characterMakers.push(() => makeCharacter(
  8756. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8757. {
  8758. front: {
  8759. height: math.unit(6, "feet"),
  8760. weight: math.unit(150, "lb"),
  8761. name: "Front",
  8762. image: {
  8763. source: "./media/characters/goddess-elizabeth/front.svg",
  8764. extra: 1800 / 1525,
  8765. bottom: 0.005
  8766. }
  8767. },
  8768. foot: {
  8769. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8770. name: "Foot",
  8771. image: {
  8772. source: "./media/characters/goddess-elizabeth/foot.svg"
  8773. }
  8774. },
  8775. mouth: {
  8776. height: math.unit(6, "feet"),
  8777. name: "Mouth",
  8778. image: {
  8779. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8780. }
  8781. },
  8782. },
  8783. [
  8784. {
  8785. name: "Micro",
  8786. height: math.unit(12, "feet")
  8787. },
  8788. {
  8789. name: "Normal",
  8790. height: math.unit(80, "miles"),
  8791. default: true
  8792. },
  8793. {
  8794. name: "Macro",
  8795. height: math.unit(15000, "parsecs")
  8796. },
  8797. ]
  8798. ))
  8799. characterMakers.push(() => makeCharacter(
  8800. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8801. {
  8802. front: {
  8803. height: math.unit(5 + 9 / 12, "feet"),
  8804. weight: math.unit(144, "lb"),
  8805. name: "Front",
  8806. image: {
  8807. source: "./media/characters/kara/front.svg"
  8808. }
  8809. },
  8810. feet: {
  8811. height: math.unit(6 / 6.765, "feet"),
  8812. name: "Kara's Feet",
  8813. rename: true,
  8814. image: {
  8815. source: "./media/characters/kara/feet.svg"
  8816. }
  8817. },
  8818. },
  8819. [
  8820. {
  8821. name: "Normal",
  8822. height: math.unit(5 + 9 / 12, "feet")
  8823. },
  8824. {
  8825. name: "Macro",
  8826. height: math.unit(174, "feet"),
  8827. default: true
  8828. },
  8829. ]
  8830. ))
  8831. characterMakers.push(() => makeCharacter(
  8832. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8833. {
  8834. front: {
  8835. height: math.unit(18, "feet"),
  8836. weight: math.unit(4050, "lb"),
  8837. name: "Front",
  8838. image: {
  8839. source: "./media/characters/tyrone/front.svg",
  8840. extra: 2405 / 2270,
  8841. bottom: 182 / 2587
  8842. }
  8843. },
  8844. },
  8845. [
  8846. {
  8847. name: "Normal",
  8848. height: math.unit(18, "feet"),
  8849. default: true
  8850. },
  8851. {
  8852. name: "Macro",
  8853. height: math.unit(300, "feet")
  8854. },
  8855. {
  8856. name: "Megamacro",
  8857. height: math.unit(15, "km")
  8858. },
  8859. {
  8860. name: "Gigamacro",
  8861. height: math.unit(500, "km")
  8862. },
  8863. {
  8864. name: "Teramacro",
  8865. height: math.unit(0.5, "gigameters")
  8866. },
  8867. {
  8868. name: "Omnimacro",
  8869. height: math.unit(1e252, "yottauniverse")
  8870. },
  8871. ]
  8872. ))
  8873. characterMakers.push(() => makeCharacter(
  8874. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8875. {
  8876. front: {
  8877. height: math.unit(7 + 8 / 12, "feet"),
  8878. weight: math.unit(120, "lb"),
  8879. name: "Front",
  8880. image: {
  8881. source: "./media/characters/danny/front.svg",
  8882. extra: 1490 / 1350
  8883. }
  8884. },
  8885. back: {
  8886. height: math.unit(7 + 8 / 12, "feet"),
  8887. weight: math.unit(120, "lb"),
  8888. name: "Back",
  8889. image: {
  8890. source: "./media/characters/danny/back.svg",
  8891. extra: 1490 / 1350
  8892. }
  8893. },
  8894. },
  8895. [
  8896. {
  8897. name: "Normal",
  8898. height: math.unit(7 + 8 / 12, "feet"),
  8899. default: true
  8900. },
  8901. ]
  8902. ))
  8903. characterMakers.push(() => makeCharacter(
  8904. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8905. {
  8906. front: {
  8907. height: math.unit(3.5, "inches"),
  8908. weight: math.unit(19, "grams"),
  8909. name: "Front",
  8910. image: {
  8911. source: "./media/characters/mallow/front.svg",
  8912. extra: 471 / 431
  8913. }
  8914. },
  8915. back: {
  8916. height: math.unit(3.5, "inches"),
  8917. weight: math.unit(19, "grams"),
  8918. name: "Back",
  8919. image: {
  8920. source: "./media/characters/mallow/back.svg",
  8921. extra: 471 / 431
  8922. }
  8923. },
  8924. },
  8925. [
  8926. {
  8927. name: "Normal",
  8928. height: math.unit(3.5, "inches"),
  8929. default: true
  8930. },
  8931. ]
  8932. ))
  8933. characterMakers.push(() => makeCharacter(
  8934. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8935. {
  8936. front: {
  8937. height: math.unit(9, "feet"),
  8938. weight: math.unit(230, "kg"),
  8939. name: "Front",
  8940. image: {
  8941. source: "./media/characters/starry-aqua/front.svg"
  8942. }
  8943. },
  8944. back: {
  8945. height: math.unit(9, "feet"),
  8946. weight: math.unit(230, "kg"),
  8947. name: "Back",
  8948. image: {
  8949. source: "./media/characters/starry-aqua/back.svg"
  8950. }
  8951. },
  8952. hand: {
  8953. height: math.unit(9 * 0.1168, "feet"),
  8954. name: "Hand",
  8955. image: {
  8956. source: "./media/characters/starry-aqua/hand.svg"
  8957. }
  8958. },
  8959. foot: {
  8960. height: math.unit(9 * 0.18, "feet"),
  8961. name: "Foot",
  8962. image: {
  8963. source: "./media/characters/starry-aqua/foot.svg"
  8964. }
  8965. }
  8966. },
  8967. [
  8968. {
  8969. name: "Micro",
  8970. height: math.unit(3, "inches")
  8971. },
  8972. {
  8973. name: "Normal",
  8974. height: math.unit(9, "feet")
  8975. },
  8976. {
  8977. name: "Macro",
  8978. height: math.unit(300, "feet"),
  8979. default: true
  8980. },
  8981. {
  8982. name: "Megamacro",
  8983. height: math.unit(3200, "feet")
  8984. }
  8985. ]
  8986. ))
  8987. characterMakers.push(() => makeCharacter(
  8988. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  8989. {
  8990. front: {
  8991. height: math.unit(15, "feet"),
  8992. weight: math.unit(5026, "lb"),
  8993. name: "Front",
  8994. image: {
  8995. source: "./media/characters/luka-towers/front.svg",
  8996. extra: 1269/1133,
  8997. bottom: 51/1320
  8998. }
  8999. },
  9000. },
  9001. [
  9002. {
  9003. name: "Normal",
  9004. height: math.unit(15, "feet"),
  9005. default: true
  9006. },
  9007. {
  9008. name: "Minimacro",
  9009. height: math.unit(25, "feet")
  9010. },
  9011. {
  9012. name: "Macro",
  9013. height: math.unit(320, "feet")
  9014. },
  9015. {
  9016. name: "Megamacro",
  9017. height: math.unit(35000, "feet")
  9018. },
  9019. {
  9020. name: "Gigamacro",
  9021. height: math.unit(4000, "miles")
  9022. },
  9023. {
  9024. name: "Teramacro",
  9025. height: math.unit(15000, "miles")
  9026. },
  9027. ]
  9028. ))
  9029. characterMakers.push(() => makeCharacter(
  9030. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9031. {
  9032. front: {
  9033. height: math.unit(6, "feet"),
  9034. weight: math.unit(150, "lb"),
  9035. name: "Front",
  9036. image: {
  9037. source: "./media/characters/natalie-nightring/front.svg",
  9038. extra: 1,
  9039. bottom: 0.06
  9040. }
  9041. },
  9042. },
  9043. [
  9044. {
  9045. name: "Uh Oh",
  9046. height: math.unit(0.1, "mm")
  9047. },
  9048. {
  9049. name: "Small",
  9050. height: math.unit(3, "inches")
  9051. },
  9052. {
  9053. name: "Human Scale",
  9054. height: math.unit(6, "feet")
  9055. },
  9056. {
  9057. name: "Librarian",
  9058. height: math.unit(50, "feet"),
  9059. default: true
  9060. },
  9061. {
  9062. name: "Immense",
  9063. height: math.unit(200, "miles")
  9064. },
  9065. ]
  9066. ))
  9067. characterMakers.push(() => makeCharacter(
  9068. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9069. {
  9070. front: {
  9071. height: math.unit(6, "feet"),
  9072. weight: math.unit(180, "lbs"),
  9073. name: "Front",
  9074. image: {
  9075. source: "./media/characters/danni-rosie/front.svg",
  9076. extra: 1260 / 1128,
  9077. bottom: 0.022
  9078. }
  9079. },
  9080. },
  9081. [
  9082. {
  9083. name: "Micro",
  9084. height: math.unit(2, "inches"),
  9085. default: true
  9086. },
  9087. ]
  9088. ))
  9089. characterMakers.push(() => makeCharacter(
  9090. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9091. {
  9092. front: {
  9093. height: math.unit(5 + 9 / 12, "feet"),
  9094. weight: math.unit(220, "lb"),
  9095. name: "Front",
  9096. image: {
  9097. source: "./media/characters/samantha-kruse/front.svg",
  9098. extra: (985 / 935),
  9099. bottom: 0.03
  9100. }
  9101. },
  9102. frontUndressed: {
  9103. height: math.unit(5 + 9 / 12, "feet"),
  9104. weight: math.unit(220, "lb"),
  9105. name: "Front (Undressed)",
  9106. image: {
  9107. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9108. extra: (973 / 923),
  9109. bottom: 0.025
  9110. }
  9111. },
  9112. fat: {
  9113. height: math.unit(5 + 9 / 12, "feet"),
  9114. weight: math.unit(900, "lb"),
  9115. name: "Front (Fat)",
  9116. image: {
  9117. source: "./media/characters/samantha-kruse/fat.svg",
  9118. extra: 2688 / 2561
  9119. }
  9120. },
  9121. },
  9122. [
  9123. {
  9124. name: "Normal",
  9125. height: math.unit(5 + 9 / 12, "feet"),
  9126. default: true
  9127. }
  9128. ]
  9129. ))
  9130. characterMakers.push(() => makeCharacter(
  9131. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9132. {
  9133. back: {
  9134. height: math.unit(5 + 4 / 12, "feet"),
  9135. weight: math.unit(4963, "lb"),
  9136. name: "Back",
  9137. image: {
  9138. source: "./media/characters/amelia-rosie/back.svg",
  9139. extra: 1113 / 963,
  9140. bottom: 0.01
  9141. }
  9142. },
  9143. },
  9144. [
  9145. {
  9146. name: "Level 0",
  9147. height: math.unit(5 + 4 / 12, "feet")
  9148. },
  9149. {
  9150. name: "Level 1",
  9151. height: math.unit(164597, "feet"),
  9152. default: true
  9153. },
  9154. {
  9155. name: "Level 2",
  9156. height: math.unit(956243, "miles")
  9157. },
  9158. {
  9159. name: "Level 3",
  9160. height: math.unit(29421709423, "miles")
  9161. },
  9162. {
  9163. name: "Level 4",
  9164. height: math.unit(154, "lightyears")
  9165. },
  9166. {
  9167. name: "Level 5",
  9168. height: math.unit(4738272, "lightyears")
  9169. },
  9170. {
  9171. name: "Level 6",
  9172. height: math.unit(145787152896, "lightyears")
  9173. },
  9174. ]
  9175. ))
  9176. characterMakers.push(() => makeCharacter(
  9177. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9178. {
  9179. front: {
  9180. height: math.unit(5 + 11 / 12, "feet"),
  9181. weight: math.unit(65, "kg"),
  9182. name: "Front",
  9183. image: {
  9184. source: "./media/characters/rook-kitara/front.svg",
  9185. extra: 1347 / 1274,
  9186. bottom: 0.005
  9187. }
  9188. },
  9189. },
  9190. [
  9191. {
  9192. name: "Totally Unfair",
  9193. height: math.unit(1.8, "mm")
  9194. },
  9195. {
  9196. name: "Lap Rookie",
  9197. height: math.unit(1.4, "feet")
  9198. },
  9199. {
  9200. name: "Normal",
  9201. height: math.unit(5 + 11 / 12, "feet"),
  9202. default: true
  9203. },
  9204. {
  9205. name: "How Did This Happen",
  9206. height: math.unit(80, "miles")
  9207. }
  9208. ]
  9209. ))
  9210. characterMakers.push(() => makeCharacter(
  9211. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9212. {
  9213. front: {
  9214. height: math.unit(7, "feet"),
  9215. weight: math.unit(300, "lb"),
  9216. name: "Front",
  9217. image: {
  9218. source: "./media/characters/pisces/front.svg",
  9219. extra: 2255 / 2115,
  9220. bottom: 0.03
  9221. }
  9222. },
  9223. back: {
  9224. height: math.unit(7, "feet"),
  9225. weight: math.unit(300, "lb"),
  9226. name: "Back",
  9227. image: {
  9228. source: "./media/characters/pisces/back.svg",
  9229. extra: 2146 / 2055,
  9230. bottom: 0.04
  9231. }
  9232. },
  9233. },
  9234. [
  9235. {
  9236. name: "Normal",
  9237. height: math.unit(7, "feet"),
  9238. default: true
  9239. },
  9240. {
  9241. name: "Swimming Pool",
  9242. height: math.unit(12.2, "meters")
  9243. },
  9244. {
  9245. name: "Olympic Swimming Pool",
  9246. height: math.unit(56.3, "meters")
  9247. },
  9248. {
  9249. name: "Lake Superior",
  9250. height: math.unit(93900, "meters")
  9251. },
  9252. {
  9253. name: "Mediterranean Sea",
  9254. height: math.unit(644457, "meters")
  9255. },
  9256. {
  9257. name: "World's Oceans",
  9258. height: math.unit(4567491, "meters")
  9259. },
  9260. ]
  9261. ))
  9262. characterMakers.push(() => makeCharacter(
  9263. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9264. {
  9265. front: {
  9266. height: math.unit(2.3, "meters"),
  9267. weight: math.unit(120, "kg"),
  9268. name: "Front",
  9269. image: {
  9270. source: "./media/characters/zelas/front.svg"
  9271. }
  9272. },
  9273. side: {
  9274. height: math.unit(2.3, "meters"),
  9275. weight: math.unit(120, "kg"),
  9276. name: "Side",
  9277. image: {
  9278. source: "./media/characters/zelas/side.svg"
  9279. }
  9280. },
  9281. back: {
  9282. height: math.unit(2.3, "meters"),
  9283. weight: math.unit(120, "kg"),
  9284. name: "Back",
  9285. image: {
  9286. source: "./media/characters/zelas/back.svg"
  9287. }
  9288. },
  9289. foot: {
  9290. height: math.unit(1.116, "feet"),
  9291. name: "Foot",
  9292. image: {
  9293. source: "./media/characters/zelas/foot.svg"
  9294. }
  9295. },
  9296. },
  9297. [
  9298. {
  9299. name: "Normal",
  9300. height: math.unit(2.3, "meters")
  9301. },
  9302. {
  9303. name: "Macro",
  9304. height: math.unit(30, "meters"),
  9305. default: true
  9306. },
  9307. ]
  9308. ))
  9309. characterMakers.push(() => makeCharacter(
  9310. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9311. {
  9312. front: {
  9313. height: math.unit(1, "inch"),
  9314. weight: math.unit(0.21, "grams"),
  9315. name: "Front",
  9316. image: {
  9317. source: "./media/characters/talbot/front.svg",
  9318. extra: 594 / 544
  9319. }
  9320. },
  9321. },
  9322. [
  9323. {
  9324. name: "Micro",
  9325. height: math.unit(1, "inch"),
  9326. default: true
  9327. },
  9328. ]
  9329. ))
  9330. characterMakers.push(() => makeCharacter(
  9331. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9332. {
  9333. front: {
  9334. height: math.unit(3 + 3 / 12, "feet"),
  9335. weight: math.unit(51.8, "lb"),
  9336. name: "Front",
  9337. image: {
  9338. source: "./media/characters/fliss/front.svg",
  9339. extra: 840 / 640
  9340. }
  9341. },
  9342. },
  9343. [
  9344. {
  9345. name: "Teeny Tiny",
  9346. height: math.unit(1, "mm")
  9347. },
  9348. {
  9349. name: "Small",
  9350. height: math.unit(1, "inch"),
  9351. default: true
  9352. },
  9353. {
  9354. name: "Standard Sylveon",
  9355. height: math.unit(3 + 3 / 12, "feet")
  9356. },
  9357. {
  9358. name: "Large Nuisance",
  9359. height: math.unit(33, "feet")
  9360. },
  9361. {
  9362. name: "City Filler",
  9363. height: math.unit(3000, "feet")
  9364. },
  9365. {
  9366. name: "New Horizon",
  9367. height: math.unit(6000, "miles")
  9368. },
  9369. ]
  9370. ))
  9371. characterMakers.push(() => makeCharacter(
  9372. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9373. {
  9374. front: {
  9375. height: math.unit(5, "cm"),
  9376. weight: math.unit(1.94, "g"),
  9377. name: "Front",
  9378. image: {
  9379. source: "./media/characters/fleta/front.svg",
  9380. extra: 835 / 803
  9381. }
  9382. },
  9383. back: {
  9384. height: math.unit(5, "cm"),
  9385. weight: math.unit(1.94, "g"),
  9386. name: "Back",
  9387. image: {
  9388. source: "./media/characters/fleta/back.svg",
  9389. extra: 835 / 803
  9390. }
  9391. },
  9392. },
  9393. [
  9394. {
  9395. name: "Micro",
  9396. height: math.unit(5, "cm"),
  9397. default: true
  9398. },
  9399. ]
  9400. ))
  9401. characterMakers.push(() => makeCharacter(
  9402. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9403. {
  9404. front: {
  9405. height: math.unit(6, "feet"),
  9406. weight: math.unit(225, "lb"),
  9407. name: "Front",
  9408. image: {
  9409. source: "./media/characters/dominic/front.svg",
  9410. extra: 1770 / 1620,
  9411. bottom: 0.025
  9412. }
  9413. },
  9414. back: {
  9415. height: math.unit(6, "feet"),
  9416. weight: math.unit(225, "lb"),
  9417. name: "Back",
  9418. image: {
  9419. source: "./media/characters/dominic/back.svg",
  9420. extra: 1745 / 1620,
  9421. bottom: 0.065
  9422. }
  9423. },
  9424. },
  9425. [
  9426. {
  9427. name: "Nano",
  9428. height: math.unit(0.1, "mm")
  9429. },
  9430. {
  9431. name: "Micro-",
  9432. height: math.unit(1, "mm")
  9433. },
  9434. {
  9435. name: "Micro",
  9436. height: math.unit(4, "inches")
  9437. },
  9438. {
  9439. name: "Normal",
  9440. height: math.unit(6 + 4 / 12, "feet"),
  9441. default: true
  9442. },
  9443. {
  9444. name: "Macro",
  9445. height: math.unit(115, "feet")
  9446. },
  9447. {
  9448. name: "Macro+",
  9449. height: math.unit(955, "feet")
  9450. },
  9451. {
  9452. name: "Megamacro",
  9453. height: math.unit(8990, "feet")
  9454. },
  9455. {
  9456. name: "Gigmacro",
  9457. height: math.unit(9310, "miles")
  9458. },
  9459. {
  9460. name: "Teramacro",
  9461. height: math.unit(1567005010, "miles")
  9462. },
  9463. {
  9464. name: "Examacro",
  9465. height: math.unit(1425, "parsecs")
  9466. },
  9467. ]
  9468. ))
  9469. characterMakers.push(() => makeCharacter(
  9470. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9471. {
  9472. front: {
  9473. height: math.unit(400, "feet"),
  9474. weight: math.unit(44444444, "lb"),
  9475. name: "Front",
  9476. image: {
  9477. source: "./media/characters/major-colonel/front.svg"
  9478. }
  9479. },
  9480. back: {
  9481. height: math.unit(400, "feet"),
  9482. weight: math.unit(44444444, "lb"),
  9483. name: "Back",
  9484. image: {
  9485. source: "./media/characters/major-colonel/back.svg"
  9486. }
  9487. },
  9488. },
  9489. [
  9490. {
  9491. name: "Macro",
  9492. height: math.unit(400, "feet"),
  9493. default: true
  9494. },
  9495. ]
  9496. ))
  9497. characterMakers.push(() => makeCharacter(
  9498. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9499. {
  9500. catFront: {
  9501. height: math.unit(6, "feet"),
  9502. weight: math.unit(120, "lb"),
  9503. name: "Front (Cat Side)",
  9504. image: {
  9505. source: "./media/characters/axel-lycan/cat-front.svg",
  9506. extra: 430 / 402,
  9507. bottom: 43 / 472.35
  9508. }
  9509. },
  9510. catBack: {
  9511. height: math.unit(6, "feet"),
  9512. weight: math.unit(120, "lb"),
  9513. name: "Back (Cat Side)",
  9514. image: {
  9515. source: "./media/characters/axel-lycan/cat-back.svg",
  9516. extra: 447 / 419,
  9517. bottom: 23.3 / 469
  9518. }
  9519. },
  9520. wolfFront: {
  9521. height: math.unit(6, "feet"),
  9522. weight: math.unit(120, "lb"),
  9523. name: "Front (Wolf Side)",
  9524. image: {
  9525. source: "./media/characters/axel-lycan/wolf-front.svg",
  9526. extra: 485 / 456,
  9527. bottom: 19 / 504
  9528. }
  9529. },
  9530. wolfBack: {
  9531. height: math.unit(6, "feet"),
  9532. weight: math.unit(120, "lb"),
  9533. name: "Back (Wolf Side)",
  9534. image: {
  9535. source: "./media/characters/axel-lycan/wolf-back.svg",
  9536. extra: 475 / 438,
  9537. bottom: 39.2 / 514
  9538. }
  9539. },
  9540. },
  9541. [
  9542. {
  9543. name: "Macro",
  9544. height: math.unit(1, "km"),
  9545. default: true
  9546. },
  9547. ]
  9548. ))
  9549. characterMakers.push(() => makeCharacter(
  9550. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9551. {
  9552. front: {
  9553. height: math.unit(5 + 9 / 12, "feet"),
  9554. weight: math.unit(175, "lb"),
  9555. name: "Front",
  9556. image: {
  9557. source: "./media/characters/vanrel-hyena/front.svg",
  9558. extra: 1086 / 1010,
  9559. bottom: 0.04
  9560. }
  9561. },
  9562. },
  9563. [
  9564. {
  9565. name: "Normal",
  9566. height: math.unit(5 + 9 / 12, "feet"),
  9567. default: true
  9568. },
  9569. ]
  9570. ))
  9571. characterMakers.push(() => makeCharacter(
  9572. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9573. {
  9574. front: {
  9575. height: math.unit(6, "feet"),
  9576. weight: math.unit(103, "lb"),
  9577. name: "Front",
  9578. image: {
  9579. source: "./media/characters/abbott-absol/front.svg",
  9580. extra: 2010 / 1842
  9581. }
  9582. },
  9583. },
  9584. [
  9585. {
  9586. name: "Megamicro",
  9587. height: math.unit(0.1, "mm")
  9588. },
  9589. {
  9590. name: "Micro",
  9591. height: math.unit(1, "inch")
  9592. },
  9593. {
  9594. name: "Normal",
  9595. height: math.unit(6, "feet"),
  9596. default: true
  9597. },
  9598. ]
  9599. ))
  9600. characterMakers.push(() => makeCharacter(
  9601. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9602. {
  9603. front: {
  9604. height: math.unit(6, "feet"),
  9605. weight: math.unit(264, "lb"),
  9606. name: "Front",
  9607. image: {
  9608. source: "./media/characters/hector/front.svg",
  9609. extra: 2280 / 2130,
  9610. bottom: 0.07
  9611. }
  9612. },
  9613. },
  9614. [
  9615. {
  9616. name: "Normal",
  9617. height: math.unit(12.25, "foot"),
  9618. default: true
  9619. },
  9620. {
  9621. name: "Macro",
  9622. height: math.unit(160, "feet")
  9623. },
  9624. ]
  9625. ))
  9626. characterMakers.push(() => makeCharacter(
  9627. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9628. {
  9629. front: {
  9630. height: math.unit(6, "feet"),
  9631. weight: math.unit(150, "lb"),
  9632. name: "Front",
  9633. image: {
  9634. source: "./media/characters/sal/front.svg",
  9635. extra: 1846 / 1699,
  9636. bottom: 0.04
  9637. }
  9638. },
  9639. },
  9640. [
  9641. {
  9642. name: "Megamacro",
  9643. height: math.unit(10, "miles"),
  9644. default: true
  9645. },
  9646. ]
  9647. ))
  9648. characterMakers.push(() => makeCharacter(
  9649. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9650. {
  9651. front: {
  9652. height: math.unit(3, "meters"),
  9653. weight: math.unit(450, "kg"),
  9654. name: "front",
  9655. image: {
  9656. source: "./media/characters/ranger/front.svg",
  9657. extra: 2401 / 2243,
  9658. bottom: 0.05
  9659. }
  9660. },
  9661. },
  9662. [
  9663. {
  9664. name: "Normal",
  9665. height: math.unit(3, "meters"),
  9666. default: true
  9667. },
  9668. ]
  9669. ))
  9670. characterMakers.push(() => makeCharacter(
  9671. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9672. {
  9673. front: {
  9674. height: math.unit(14, "feet"),
  9675. weight: math.unit(800, "kg"),
  9676. name: "Front",
  9677. image: {
  9678. source: "./media/characters/theresa/front.svg",
  9679. extra: 3575 / 3346,
  9680. bottom: 0.03
  9681. }
  9682. },
  9683. },
  9684. [
  9685. {
  9686. name: "Normal",
  9687. height: math.unit(14, "feet"),
  9688. default: true
  9689. },
  9690. ]
  9691. ))
  9692. characterMakers.push(() => makeCharacter(
  9693. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9694. {
  9695. front: {
  9696. height: math.unit(6, "feet"),
  9697. weight: math.unit(3, "kg"),
  9698. name: "Front",
  9699. image: {
  9700. source: "./media/characters/ine/front.svg",
  9701. extra: 678 / 539,
  9702. bottom: 0.023
  9703. }
  9704. },
  9705. },
  9706. [
  9707. {
  9708. name: "Normal",
  9709. height: math.unit(2.265, "feet"),
  9710. default: true
  9711. },
  9712. ]
  9713. ))
  9714. characterMakers.push(() => makeCharacter(
  9715. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9716. {
  9717. front: {
  9718. height: math.unit(5, "feet"),
  9719. weight: math.unit(30, "kg"),
  9720. name: "Front",
  9721. image: {
  9722. source: "./media/characters/vial/front.svg",
  9723. extra: 1365 / 1277,
  9724. bottom: 0.04
  9725. }
  9726. },
  9727. },
  9728. [
  9729. {
  9730. name: "Normal",
  9731. height: math.unit(5, "feet"),
  9732. default: true
  9733. },
  9734. ]
  9735. ))
  9736. characterMakers.push(() => makeCharacter(
  9737. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9738. {
  9739. side: {
  9740. height: math.unit(3.4, "meters"),
  9741. weight: math.unit(1000, "lb"),
  9742. name: "Side",
  9743. image: {
  9744. source: "./media/characters/rovoska/side.svg",
  9745. extra: 4403 / 1515
  9746. }
  9747. },
  9748. },
  9749. [
  9750. {
  9751. name: "Normal",
  9752. height: math.unit(3.4, "meters"),
  9753. default: true
  9754. },
  9755. ]
  9756. ))
  9757. characterMakers.push(() => makeCharacter(
  9758. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9759. {
  9760. front: {
  9761. height: math.unit(8, "feet"),
  9762. weight: math.unit(315, "lb"),
  9763. name: "Front",
  9764. image: {
  9765. source: "./media/characters/gunner-rotthbauer/front.svg"
  9766. }
  9767. },
  9768. back: {
  9769. height: math.unit(8, "feet"),
  9770. weight: math.unit(315, "lb"),
  9771. name: "Back",
  9772. image: {
  9773. source: "./media/characters/gunner-rotthbauer/back.svg"
  9774. }
  9775. },
  9776. },
  9777. [
  9778. {
  9779. name: "Micro",
  9780. height: math.unit(3.5, "inches")
  9781. },
  9782. {
  9783. name: "Normal",
  9784. height: math.unit(8, "feet"),
  9785. default: true
  9786. },
  9787. {
  9788. name: "Macro",
  9789. height: math.unit(250, "feet")
  9790. },
  9791. {
  9792. name: "Megamacro",
  9793. height: math.unit(1, "AU")
  9794. },
  9795. ]
  9796. ))
  9797. characterMakers.push(() => makeCharacter(
  9798. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9799. {
  9800. front: {
  9801. height: math.unit(5 + 5 / 12, "feet"),
  9802. weight: math.unit(140, "lb"),
  9803. name: "Front",
  9804. image: {
  9805. source: "./media/characters/allatia/front.svg",
  9806. extra: 1227 / 1180,
  9807. bottom: 0.027
  9808. }
  9809. },
  9810. },
  9811. [
  9812. {
  9813. name: "Normal",
  9814. height: math.unit(5 + 5 / 12, "feet")
  9815. },
  9816. {
  9817. name: "Macro",
  9818. height: math.unit(250, "feet"),
  9819. default: true
  9820. },
  9821. {
  9822. name: "Megamacro",
  9823. height: math.unit(8, "miles")
  9824. }
  9825. ]
  9826. ))
  9827. characterMakers.push(() => makeCharacter(
  9828. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9829. {
  9830. front: {
  9831. height: math.unit(6, "feet"),
  9832. weight: math.unit(120, "lb"),
  9833. name: "Front",
  9834. image: {
  9835. source: "./media/characters/tene/front.svg",
  9836. extra: 1728 / 1578,
  9837. bottom: 0.022
  9838. }
  9839. },
  9840. stomping: {
  9841. height: math.unit(2.025, "meters"),
  9842. weight: math.unit(120, "lb"),
  9843. name: "Stomping",
  9844. image: {
  9845. source: "./media/characters/tene/stomping.svg",
  9846. extra: 938 / 873,
  9847. bottom: 0.01
  9848. }
  9849. },
  9850. sitting: {
  9851. height: math.unit(1, "meter"),
  9852. weight: math.unit(120, "lb"),
  9853. name: "Sitting",
  9854. image: {
  9855. source: "./media/characters/tene/sitting.svg",
  9856. extra: 437 / 415,
  9857. bottom: 0.1
  9858. }
  9859. },
  9860. feral: {
  9861. height: math.unit(3.9, "feet"),
  9862. weight: math.unit(250, "lb"),
  9863. name: "Feral",
  9864. image: {
  9865. source: "./media/characters/tene/feral.svg",
  9866. extra: 717 / 458,
  9867. bottom: 0.179
  9868. }
  9869. },
  9870. },
  9871. [
  9872. {
  9873. name: "Normal",
  9874. height: math.unit(6, "feet")
  9875. },
  9876. {
  9877. name: "Macro",
  9878. height: math.unit(300, "feet"),
  9879. default: true
  9880. },
  9881. {
  9882. name: "Megamacro",
  9883. height: math.unit(5, "miles")
  9884. },
  9885. ]
  9886. ))
  9887. characterMakers.push(() => makeCharacter(
  9888. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9889. {
  9890. side: {
  9891. height: math.unit(6, "feet"),
  9892. name: "Side",
  9893. image: {
  9894. source: "./media/characters/evander/side.svg",
  9895. extra: 877 / 477
  9896. }
  9897. },
  9898. },
  9899. [
  9900. {
  9901. name: "Normal",
  9902. height: math.unit(0.83, "meters"),
  9903. default: true
  9904. },
  9905. ]
  9906. ))
  9907. characterMakers.push(() => makeCharacter(
  9908. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9909. {
  9910. front: {
  9911. height: math.unit(12, "feet"),
  9912. weight: math.unit(1000, "lb"),
  9913. name: "Front",
  9914. image: {
  9915. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9916. extra: 1762 / 1611
  9917. }
  9918. },
  9919. back: {
  9920. height: math.unit(12, "feet"),
  9921. weight: math.unit(1000, "lb"),
  9922. name: "Back",
  9923. image: {
  9924. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9925. extra: 1762 / 1611
  9926. }
  9927. },
  9928. },
  9929. [
  9930. {
  9931. name: "Normal",
  9932. height: math.unit(12, "feet"),
  9933. default: true
  9934. },
  9935. {
  9936. name: "Kaiju",
  9937. height: math.unit(150, "feet")
  9938. },
  9939. ]
  9940. ))
  9941. characterMakers.push(() => makeCharacter(
  9942. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9943. {
  9944. front: {
  9945. height: math.unit(6, "feet"),
  9946. weight: math.unit(150, "lb"),
  9947. name: "Front",
  9948. image: {
  9949. source: "./media/characters/zero-alurus/front.svg"
  9950. }
  9951. },
  9952. back: {
  9953. height: math.unit(6, "feet"),
  9954. weight: math.unit(150, "lb"),
  9955. name: "Back",
  9956. image: {
  9957. source: "./media/characters/zero-alurus/back.svg"
  9958. }
  9959. },
  9960. },
  9961. [
  9962. {
  9963. name: "Normal",
  9964. height: math.unit(5 + 10 / 12, "feet")
  9965. },
  9966. {
  9967. name: "Macro",
  9968. height: math.unit(60, "feet"),
  9969. default: true
  9970. },
  9971. {
  9972. name: "Macro+",
  9973. height: math.unit(450, "feet")
  9974. },
  9975. ]
  9976. ))
  9977. characterMakers.push(() => makeCharacter(
  9978. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9979. {
  9980. front: {
  9981. height: math.unit(6, "feet"),
  9982. weight: math.unit(200, "lb"),
  9983. name: "Front",
  9984. image: {
  9985. source: "./media/characters/mega-shi/front.svg",
  9986. extra: 1279 / 1250,
  9987. bottom: 0.02
  9988. }
  9989. },
  9990. back: {
  9991. height: math.unit(6, "feet"),
  9992. weight: math.unit(200, "lb"),
  9993. name: "Back",
  9994. image: {
  9995. source: "./media/characters/mega-shi/back.svg",
  9996. extra: 1279 / 1250,
  9997. bottom: 0.02
  9998. }
  9999. },
  10000. },
  10001. [
  10002. {
  10003. name: "Micro",
  10004. height: math.unit(16 + 6 / 12, "feet")
  10005. },
  10006. {
  10007. name: "Third Dimension",
  10008. height: math.unit(40, "meters")
  10009. },
  10010. {
  10011. name: "Normal",
  10012. height: math.unit(660, "feet"),
  10013. default: true
  10014. },
  10015. {
  10016. name: "Megamacro",
  10017. height: math.unit(10, "miles")
  10018. },
  10019. {
  10020. name: "Planetary Launch",
  10021. height: math.unit(500, "miles")
  10022. },
  10023. {
  10024. name: "Interstellar",
  10025. height: math.unit(1e9, "miles")
  10026. },
  10027. {
  10028. name: "Leaving the Universe",
  10029. height: math.unit(1, "gigaparsec")
  10030. },
  10031. {
  10032. name: "Travelling Universes",
  10033. height: math.unit(30e15, "parsecs")
  10034. },
  10035. ]
  10036. ))
  10037. characterMakers.push(() => makeCharacter(
  10038. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10039. {
  10040. front: {
  10041. height: math.unit(6, "feet"),
  10042. weight: math.unit(150, "lb"),
  10043. name: "Front",
  10044. image: {
  10045. source: "./media/characters/odyssey/front.svg",
  10046. extra: 1782 / 1582,
  10047. bottom: 0.01
  10048. }
  10049. },
  10050. side: {
  10051. height: math.unit(5.7, "feet"),
  10052. weight: math.unit(140, "lb"),
  10053. name: "Side",
  10054. image: {
  10055. source: "./media/characters/odyssey/side.svg",
  10056. extra: 6462 / 5700
  10057. }
  10058. },
  10059. },
  10060. [
  10061. {
  10062. name: "Normal",
  10063. height: math.unit(5 + 4 / 12, "feet")
  10064. },
  10065. {
  10066. name: "Macro",
  10067. height: math.unit(1, "km")
  10068. },
  10069. {
  10070. name: "Megamacro",
  10071. height: math.unit(3000, "km")
  10072. },
  10073. {
  10074. name: "Gigamacro",
  10075. height: math.unit(1, "AU"),
  10076. default: true
  10077. },
  10078. {
  10079. name: "Omniversal",
  10080. height: math.unit(100e14, "lightyears")
  10081. },
  10082. ]
  10083. ))
  10084. characterMakers.push(() => makeCharacter(
  10085. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10086. {
  10087. front: {
  10088. height: math.unit(6, "feet"),
  10089. weight: math.unit(300, "lb"),
  10090. name: "Front",
  10091. image: {
  10092. source: "./media/characters/mekuto/front.svg",
  10093. extra: 921 / 832,
  10094. bottom: 0.03
  10095. }
  10096. },
  10097. hand: {
  10098. height: math.unit(6 / 10.24, "feet"),
  10099. name: "Hand",
  10100. image: {
  10101. source: "./media/characters/mekuto/hand.svg"
  10102. }
  10103. },
  10104. foot: {
  10105. height: math.unit(6 / 5.05, "feet"),
  10106. name: "Foot",
  10107. image: {
  10108. source: "./media/characters/mekuto/foot.svg"
  10109. }
  10110. },
  10111. },
  10112. [
  10113. {
  10114. name: "Minimicro",
  10115. height: math.unit(0.2, "inches")
  10116. },
  10117. {
  10118. name: "Micro",
  10119. height: math.unit(1.5, "inches")
  10120. },
  10121. {
  10122. name: "Normal",
  10123. height: math.unit(5 + 11 / 12, "feet"),
  10124. default: true
  10125. },
  10126. {
  10127. name: "Minimacro",
  10128. height: math.unit(17 + 9 / 12, "feet")
  10129. },
  10130. {
  10131. name: "Macro",
  10132. height: math.unit(177.5, "feet")
  10133. },
  10134. {
  10135. name: "Megamacro",
  10136. height: math.unit(152, "miles")
  10137. },
  10138. ]
  10139. ))
  10140. characterMakers.push(() => makeCharacter(
  10141. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10142. {
  10143. front: {
  10144. height: math.unit(6.5, "inches"),
  10145. weight: math.unit(13, "oz"),
  10146. name: "Front",
  10147. image: {
  10148. source: "./media/characters/dafydd-tomos/front.svg",
  10149. extra: 2990 / 2603,
  10150. bottom: 0.03
  10151. }
  10152. },
  10153. },
  10154. [
  10155. {
  10156. name: "Micro",
  10157. height: math.unit(6.5, "inches"),
  10158. default: true
  10159. },
  10160. ]
  10161. ))
  10162. characterMakers.push(() => makeCharacter(
  10163. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10164. {
  10165. front: {
  10166. height: math.unit(6, "feet"),
  10167. weight: math.unit(150, "lb"),
  10168. name: "Front",
  10169. image: {
  10170. source: "./media/characters/splinter/front.svg",
  10171. extra: 2990 / 2882,
  10172. bottom: 0.04
  10173. }
  10174. },
  10175. back: {
  10176. height: math.unit(6, "feet"),
  10177. weight: math.unit(150, "lb"),
  10178. name: "Back",
  10179. image: {
  10180. source: "./media/characters/splinter/back.svg",
  10181. extra: 2990 / 2882,
  10182. bottom: 0.04
  10183. }
  10184. },
  10185. },
  10186. [
  10187. {
  10188. name: "Normal",
  10189. height: math.unit(6, "feet")
  10190. },
  10191. {
  10192. name: "Macro",
  10193. height: math.unit(230, "meters"),
  10194. default: true
  10195. },
  10196. ]
  10197. ))
  10198. characterMakers.push(() => makeCharacter(
  10199. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10200. {
  10201. front: {
  10202. height: math.unit(4 + 10 / 12, "feet"),
  10203. weight: math.unit(480, "lb"),
  10204. name: "Front",
  10205. image: {
  10206. source: "./media/characters/snow-gabumon/front.svg",
  10207. extra: 1140 / 963,
  10208. bottom: 0.058
  10209. }
  10210. },
  10211. back: {
  10212. height: math.unit(4 + 10 / 12, "feet"),
  10213. weight: math.unit(480, "lb"),
  10214. name: "Back",
  10215. image: {
  10216. source: "./media/characters/snow-gabumon/back.svg",
  10217. extra: 1115 / 962,
  10218. bottom: 0.041
  10219. }
  10220. },
  10221. frontUndresed: {
  10222. height: math.unit(4 + 10 / 12, "feet"),
  10223. weight: math.unit(480, "lb"),
  10224. name: "Front (Undressed)",
  10225. image: {
  10226. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10227. extra: 1061 / 960,
  10228. bottom: 0.045
  10229. }
  10230. },
  10231. },
  10232. [
  10233. {
  10234. name: "Micro",
  10235. height: math.unit(1, "inch")
  10236. },
  10237. {
  10238. name: "Normal",
  10239. height: math.unit(4 + 10 / 12, "feet"),
  10240. default: true
  10241. },
  10242. {
  10243. name: "Macro",
  10244. height: math.unit(200, "feet")
  10245. },
  10246. {
  10247. name: "Megamacro",
  10248. height: math.unit(120, "miles")
  10249. },
  10250. {
  10251. name: "Gigamacro",
  10252. height: math.unit(9800, "miles")
  10253. },
  10254. ]
  10255. ))
  10256. characterMakers.push(() => makeCharacter(
  10257. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10258. {
  10259. front: {
  10260. height: math.unit(1.7, "meters"),
  10261. weight: math.unit(140, "lb"),
  10262. name: "Front",
  10263. image: {
  10264. source: "./media/characters/moody/front.svg",
  10265. extra: 3226 / 3007,
  10266. bottom: 0.087
  10267. }
  10268. },
  10269. },
  10270. [
  10271. {
  10272. name: "Micro",
  10273. height: math.unit(1, "mm")
  10274. },
  10275. {
  10276. name: "Normal",
  10277. height: math.unit(1.7, "meters"),
  10278. default: true
  10279. },
  10280. {
  10281. name: "Macro",
  10282. height: math.unit(80, "meters")
  10283. },
  10284. {
  10285. name: "Macro+",
  10286. height: math.unit(500, "meters")
  10287. },
  10288. ]
  10289. ))
  10290. characterMakers.push(() => makeCharacter(
  10291. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10292. {
  10293. front: {
  10294. height: math.unit(6, "feet"),
  10295. weight: math.unit(150, "lb"),
  10296. name: "Front",
  10297. image: {
  10298. source: "./media/characters/zyas/front.svg",
  10299. extra: 1180 / 1120,
  10300. bottom: 0.045
  10301. }
  10302. },
  10303. },
  10304. [
  10305. {
  10306. name: "Normal",
  10307. height: math.unit(10, "feet"),
  10308. default: true
  10309. },
  10310. {
  10311. name: "Macro",
  10312. height: math.unit(500, "feet")
  10313. },
  10314. {
  10315. name: "Megamacro",
  10316. height: math.unit(5, "miles")
  10317. },
  10318. {
  10319. name: "Teramacro",
  10320. height: math.unit(150000, "miles")
  10321. },
  10322. ]
  10323. ))
  10324. characterMakers.push(() => makeCharacter(
  10325. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10326. {
  10327. front: {
  10328. height: math.unit(6, "feet"),
  10329. weight: math.unit(150, "lb"),
  10330. name: "Front",
  10331. image: {
  10332. source: "./media/characters/cuon/front.svg",
  10333. extra: 1390 / 1320,
  10334. bottom: 0.008
  10335. }
  10336. },
  10337. },
  10338. [
  10339. {
  10340. name: "Micro",
  10341. height: math.unit(3, "inches")
  10342. },
  10343. {
  10344. name: "Normal",
  10345. height: math.unit(18 + 9 / 12, "feet"),
  10346. default: true
  10347. },
  10348. {
  10349. name: "Macro",
  10350. height: math.unit(360, "feet")
  10351. },
  10352. {
  10353. name: "Megamacro",
  10354. height: math.unit(360, "miles")
  10355. },
  10356. ]
  10357. ))
  10358. characterMakers.push(() => makeCharacter(
  10359. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10360. {
  10361. front: {
  10362. height: math.unit(2.4, "meters"),
  10363. weight: math.unit(70, "kg"),
  10364. name: "Front",
  10365. image: {
  10366. source: "./media/characters/nyanuxk/front.svg",
  10367. extra: 1172 / 1084,
  10368. bottom: 0.065
  10369. }
  10370. },
  10371. side: {
  10372. height: math.unit(2.4, "meters"),
  10373. weight: math.unit(70, "kg"),
  10374. name: "Side",
  10375. image: {
  10376. source: "./media/characters/nyanuxk/side.svg",
  10377. extra: 1190 / 1132,
  10378. bottom: 0.007
  10379. }
  10380. },
  10381. back: {
  10382. height: math.unit(2.4, "meters"),
  10383. weight: math.unit(70, "kg"),
  10384. name: "Back",
  10385. image: {
  10386. source: "./media/characters/nyanuxk/back.svg",
  10387. extra: 1200 / 1141,
  10388. bottom: 0.015
  10389. }
  10390. },
  10391. foot: {
  10392. height: math.unit(0.52, "meters"),
  10393. name: "Foot",
  10394. image: {
  10395. source: "./media/characters/nyanuxk/foot.svg"
  10396. }
  10397. },
  10398. },
  10399. [
  10400. {
  10401. name: "Micro",
  10402. height: math.unit(2, "cm")
  10403. },
  10404. {
  10405. name: "Normal",
  10406. height: math.unit(2.4, "meters"),
  10407. default: true
  10408. },
  10409. {
  10410. name: "Smaller Macro",
  10411. height: math.unit(120, "meters")
  10412. },
  10413. {
  10414. name: "Bigger Macro",
  10415. height: math.unit(1.2, "km")
  10416. },
  10417. {
  10418. name: "Megamacro",
  10419. height: math.unit(15, "kilometers")
  10420. },
  10421. {
  10422. name: "Gigamacro",
  10423. height: math.unit(2000, "km")
  10424. },
  10425. {
  10426. name: "Teramacro",
  10427. height: math.unit(500000, "km")
  10428. },
  10429. ]
  10430. ))
  10431. characterMakers.push(() => makeCharacter(
  10432. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10433. {
  10434. side: {
  10435. height: math.unit(6, "feet"),
  10436. name: "Side",
  10437. image: {
  10438. source: "./media/characters/ailbhe/side.svg",
  10439. extra: 757 / 464,
  10440. bottom: 0.041
  10441. }
  10442. },
  10443. },
  10444. [
  10445. {
  10446. name: "Normal",
  10447. height: math.unit(1.07, "meters"),
  10448. default: true
  10449. },
  10450. ]
  10451. ))
  10452. characterMakers.push(() => makeCharacter(
  10453. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10454. {
  10455. front: {
  10456. height: math.unit(6, "feet"),
  10457. weight: math.unit(120, "kg"),
  10458. name: "Front",
  10459. image: {
  10460. source: "./media/characters/zevulfius/front.svg",
  10461. extra: 965 / 903
  10462. }
  10463. },
  10464. side: {
  10465. height: math.unit(6, "feet"),
  10466. weight: math.unit(120, "kg"),
  10467. name: "Side",
  10468. image: {
  10469. source: "./media/characters/zevulfius/side.svg",
  10470. extra: 939 / 900
  10471. }
  10472. },
  10473. back: {
  10474. height: math.unit(6, "feet"),
  10475. weight: math.unit(120, "kg"),
  10476. name: "Back",
  10477. image: {
  10478. source: "./media/characters/zevulfius/back.svg",
  10479. extra: 918 / 854,
  10480. bottom: 0.005
  10481. }
  10482. },
  10483. foot: {
  10484. height: math.unit(6 / 3.72, "feet"),
  10485. name: "Foot",
  10486. image: {
  10487. source: "./media/characters/zevulfius/foot.svg"
  10488. }
  10489. },
  10490. },
  10491. [
  10492. {
  10493. name: "Macro",
  10494. height: math.unit(750, "meters")
  10495. },
  10496. {
  10497. name: "Megamacro",
  10498. height: math.unit(20, "km"),
  10499. default: true
  10500. },
  10501. {
  10502. name: "Gigamacro",
  10503. height: math.unit(2000, "km")
  10504. },
  10505. {
  10506. name: "Teramacro",
  10507. height: math.unit(250000, "km")
  10508. },
  10509. ]
  10510. ))
  10511. characterMakers.push(() => makeCharacter(
  10512. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10513. {
  10514. front: {
  10515. height: math.unit(100, "feet"),
  10516. weight: math.unit(350, "kg"),
  10517. name: "Front",
  10518. image: {
  10519. source: "./media/characters/rikes/front.svg",
  10520. extra: 1565 / 1483,
  10521. bottom: 0.017
  10522. }
  10523. },
  10524. },
  10525. [
  10526. {
  10527. name: "Macro",
  10528. height: math.unit(100, "feet"),
  10529. default: true
  10530. },
  10531. ]
  10532. ))
  10533. characterMakers.push(() => makeCharacter(
  10534. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10535. {
  10536. front: {
  10537. height: math.unit(8, "feet"),
  10538. weight: math.unit(356, "lb"),
  10539. name: "Front",
  10540. image: {
  10541. source: "./media/characters/adam-silver-mane/front.svg",
  10542. extra: 1036/937,
  10543. bottom: 63/1099
  10544. }
  10545. },
  10546. side: {
  10547. height: math.unit(8, "feet"),
  10548. weight: math.unit(356, "lb"),
  10549. name: "Side",
  10550. image: {
  10551. source: "./media/characters/adam-silver-mane/side.svg",
  10552. extra: 997/901,
  10553. bottom: 59/1056
  10554. }
  10555. },
  10556. frontNsfw: {
  10557. height: math.unit(8, "feet"),
  10558. weight: math.unit(356, "lb"),
  10559. name: "Front (NSFW)",
  10560. image: {
  10561. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10562. extra: 1036/937,
  10563. bottom: 63/1099
  10564. }
  10565. },
  10566. sideNsfw: {
  10567. height: math.unit(8, "feet"),
  10568. weight: math.unit(356, "lb"),
  10569. name: "Side (NSFW)",
  10570. image: {
  10571. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10572. extra: 997/901,
  10573. bottom: 59/1056
  10574. }
  10575. },
  10576. dick: {
  10577. height: math.unit(2.1, "feet"),
  10578. name: "Dick",
  10579. image: {
  10580. source: "./media/characters/adam-silver-mane/dick.svg"
  10581. }
  10582. },
  10583. taur: {
  10584. height: math.unit(16, "feet"),
  10585. weight: math.unit(1500, "kg"),
  10586. name: "Taur",
  10587. image: {
  10588. source: "./media/characters/adam-silver-mane/taur.svg",
  10589. extra: 1713 / 1571,
  10590. bottom: 0.01
  10591. }
  10592. },
  10593. },
  10594. [
  10595. {
  10596. name: "Normal",
  10597. height: math.unit(8, "feet")
  10598. },
  10599. {
  10600. name: "Minimacro",
  10601. height: math.unit(80, "feet")
  10602. },
  10603. {
  10604. name: "MDA",
  10605. height: math.unit(80, "meters")
  10606. },
  10607. {
  10608. name: "Macro",
  10609. height: math.unit(800, "feet"),
  10610. default: true
  10611. },
  10612. {
  10613. name: "Megamacro",
  10614. height: math.unit(8000, "feet")
  10615. },
  10616. {
  10617. name: "Gigamacro",
  10618. height: math.unit(800, "miles")
  10619. },
  10620. {
  10621. name: "Teramacro",
  10622. height: math.unit(80000, "miles")
  10623. },
  10624. {
  10625. name: "Celestial",
  10626. height: math.unit(8e6, "miles")
  10627. },
  10628. {
  10629. name: "Star Dragon",
  10630. height: math.unit(800000, "parsecs")
  10631. },
  10632. {
  10633. name: "Godly",
  10634. height: math.unit(800, "teraparsecs")
  10635. },
  10636. ]
  10637. ))
  10638. characterMakers.push(() => makeCharacter(
  10639. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10640. {
  10641. front: {
  10642. height: math.unit(6, "feet"),
  10643. weight: math.unit(150, "lb"),
  10644. name: "Front",
  10645. image: {
  10646. source: "./media/characters/ky'owin/front.svg",
  10647. extra: 3888 / 3068,
  10648. bottom: 0.015
  10649. }
  10650. },
  10651. },
  10652. [
  10653. {
  10654. name: "Normal",
  10655. height: math.unit(6 + 8 / 12, "feet")
  10656. },
  10657. {
  10658. name: "Large",
  10659. height: math.unit(68, "feet")
  10660. },
  10661. {
  10662. name: "Macro",
  10663. height: math.unit(132, "feet")
  10664. },
  10665. {
  10666. name: "Macro+",
  10667. height: math.unit(340, "feet")
  10668. },
  10669. {
  10670. name: "Macro++",
  10671. height: math.unit(680, "feet"),
  10672. default: true
  10673. },
  10674. {
  10675. name: "Megamacro",
  10676. height: math.unit(1, "mile")
  10677. },
  10678. {
  10679. name: "Megamacro+",
  10680. height: math.unit(10, "miles")
  10681. },
  10682. ]
  10683. ))
  10684. characterMakers.push(() => makeCharacter(
  10685. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10686. {
  10687. front: {
  10688. height: math.unit(4, "feet"),
  10689. weight: math.unit(50, "lb"),
  10690. name: "Front",
  10691. image: {
  10692. source: "./media/characters/mal/front.svg",
  10693. extra: 785 / 724,
  10694. bottom: 0.07
  10695. }
  10696. },
  10697. },
  10698. [
  10699. {
  10700. name: "Micro",
  10701. height: math.unit(4, "inches")
  10702. },
  10703. {
  10704. name: "Normal",
  10705. height: math.unit(4, "feet"),
  10706. default: true
  10707. },
  10708. {
  10709. name: "Macro",
  10710. height: math.unit(200, "feet")
  10711. },
  10712. ]
  10713. ))
  10714. characterMakers.push(() => makeCharacter(
  10715. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10716. {
  10717. front: {
  10718. height: math.unit(6, "feet"),
  10719. weight: math.unit(150, "lb"),
  10720. name: "Front",
  10721. image: {
  10722. source: "./media/characters/jordan-deware/front.svg",
  10723. extra: 1191 / 1012
  10724. }
  10725. },
  10726. },
  10727. [
  10728. {
  10729. name: "Nano",
  10730. height: math.unit(0.01, "mm")
  10731. },
  10732. {
  10733. name: "Minimicro",
  10734. height: math.unit(1, "mm")
  10735. },
  10736. {
  10737. name: "Micro",
  10738. height: math.unit(0.5, "inches")
  10739. },
  10740. {
  10741. name: "Normal",
  10742. height: math.unit(4, "feet"),
  10743. default: true
  10744. },
  10745. {
  10746. name: "Minimacro",
  10747. height: math.unit(40, "meters")
  10748. },
  10749. {
  10750. name: "Small Macro",
  10751. height: math.unit(400, "meters")
  10752. },
  10753. {
  10754. name: "Macro",
  10755. height: math.unit(4, "miles")
  10756. },
  10757. {
  10758. name: "Megamacro",
  10759. height: math.unit(40, "miles")
  10760. },
  10761. {
  10762. name: "Megamacro+",
  10763. height: math.unit(400, "miles")
  10764. },
  10765. {
  10766. name: "Gigamacro",
  10767. height: math.unit(400000, "miles")
  10768. },
  10769. ]
  10770. ))
  10771. characterMakers.push(() => makeCharacter(
  10772. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10773. {
  10774. side: {
  10775. height: math.unit(6, "feet"),
  10776. weight: math.unit(150, "lb"),
  10777. name: "Side",
  10778. image: {
  10779. source: "./media/characters/kimiko/side.svg",
  10780. extra: 600 / 358
  10781. }
  10782. },
  10783. },
  10784. [
  10785. {
  10786. name: "Normal",
  10787. height: math.unit(15, "feet"),
  10788. default: true
  10789. },
  10790. {
  10791. name: "Macro",
  10792. height: math.unit(220, "feet")
  10793. },
  10794. {
  10795. name: "Macro+",
  10796. height: math.unit(1450, "feet")
  10797. },
  10798. {
  10799. name: "Megamacro",
  10800. height: math.unit(11500, "feet")
  10801. },
  10802. {
  10803. name: "Gigamacro",
  10804. height: math.unit(9500, "miles")
  10805. },
  10806. {
  10807. name: "Teramacro",
  10808. height: math.unit(2208005005, "miles")
  10809. },
  10810. {
  10811. name: "Examacro",
  10812. height: math.unit(2750, "parsecs")
  10813. },
  10814. {
  10815. name: "Zettamacro",
  10816. height: math.unit(101500, "parsecs")
  10817. },
  10818. ]
  10819. ))
  10820. characterMakers.push(() => makeCharacter(
  10821. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10822. {
  10823. front: {
  10824. height: math.unit(6, "feet"),
  10825. weight: math.unit(70, "kg"),
  10826. name: "Front",
  10827. image: {
  10828. source: "./media/characters/andrew-sleepy/front.svg"
  10829. }
  10830. },
  10831. side: {
  10832. height: math.unit(6, "feet"),
  10833. weight: math.unit(70, "kg"),
  10834. name: "Side",
  10835. image: {
  10836. source: "./media/characters/andrew-sleepy/side.svg"
  10837. }
  10838. },
  10839. },
  10840. [
  10841. {
  10842. name: "Micro",
  10843. height: math.unit(1, "mm"),
  10844. default: true
  10845. },
  10846. ]
  10847. ))
  10848. characterMakers.push(() => makeCharacter(
  10849. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10850. {
  10851. front: {
  10852. height: math.unit(6, "feet"),
  10853. weight: math.unit(150, "lb"),
  10854. name: "Front",
  10855. image: {
  10856. source: "./media/characters/judio/front.svg",
  10857. extra: 1258 / 1110
  10858. }
  10859. },
  10860. },
  10861. [
  10862. {
  10863. name: "Normal",
  10864. height: math.unit(5 + 6 / 12, "feet")
  10865. },
  10866. {
  10867. name: "Macro",
  10868. height: math.unit(1000, "feet"),
  10869. default: true
  10870. },
  10871. {
  10872. name: "Megamacro",
  10873. height: math.unit(10, "miles")
  10874. },
  10875. ]
  10876. ))
  10877. characterMakers.push(() => makeCharacter(
  10878. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10879. {
  10880. front: {
  10881. height: math.unit(6, "feet"),
  10882. weight: math.unit(68, "kg"),
  10883. name: "Front",
  10884. image: {
  10885. source: "./media/characters/nomaxice/front.svg",
  10886. extra: 1498 / 1073,
  10887. bottom: 0.075
  10888. }
  10889. },
  10890. foot: {
  10891. height: math.unit(1.1, "feet"),
  10892. name: "Foot",
  10893. image: {
  10894. source: "./media/characters/nomaxice/foot.svg"
  10895. }
  10896. },
  10897. },
  10898. [
  10899. {
  10900. name: "Micro",
  10901. height: math.unit(8, "cm")
  10902. },
  10903. {
  10904. name: "Norm",
  10905. height: math.unit(1.82, "m")
  10906. },
  10907. {
  10908. name: "Norm+",
  10909. height: math.unit(8.8, "feet")
  10910. },
  10911. {
  10912. name: "Big",
  10913. height: math.unit(8, "meters"),
  10914. default: true
  10915. },
  10916. {
  10917. name: "Macro",
  10918. height: math.unit(18, "meters")
  10919. },
  10920. {
  10921. name: "Macro+",
  10922. height: math.unit(88, "meters")
  10923. },
  10924. ]
  10925. ))
  10926. characterMakers.push(() => makeCharacter(
  10927. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10928. {
  10929. front: {
  10930. height: math.unit(12, "feet"),
  10931. weight: math.unit(1.5, "tons"),
  10932. name: "Front",
  10933. image: {
  10934. source: "./media/characters/dydros/front.svg",
  10935. extra: 863 / 800,
  10936. bottom: 0.015
  10937. }
  10938. },
  10939. back: {
  10940. height: math.unit(12, "feet"),
  10941. weight: math.unit(1.5, "tons"),
  10942. name: "Back",
  10943. image: {
  10944. source: "./media/characters/dydros/back.svg",
  10945. extra: 900 / 843,
  10946. bottom: 0.005
  10947. }
  10948. },
  10949. },
  10950. [
  10951. {
  10952. name: "Normal",
  10953. height: math.unit(12, "feet"),
  10954. default: true
  10955. },
  10956. ]
  10957. ))
  10958. characterMakers.push(() => makeCharacter(
  10959. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10960. {
  10961. front: {
  10962. height: math.unit(6, "feet"),
  10963. weight: math.unit(100, "kg"),
  10964. name: "Front",
  10965. image: {
  10966. source: "./media/characters/riggi/front.svg",
  10967. extra: 5787 / 5303
  10968. }
  10969. },
  10970. hyper: {
  10971. height: math.unit(6 * 5 / 3, "feet"),
  10972. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10973. name: "Hyper",
  10974. image: {
  10975. source: "./media/characters/riggi/hyper.svg",
  10976. extra: 3595 / 3485
  10977. }
  10978. },
  10979. },
  10980. [
  10981. {
  10982. name: "Small Macro",
  10983. height: math.unit(50, "feet")
  10984. },
  10985. {
  10986. name: "Default",
  10987. height: math.unit(200, "feet"),
  10988. default: true
  10989. },
  10990. {
  10991. name: "Loom",
  10992. height: math.unit(10000, "feet")
  10993. },
  10994. {
  10995. name: "Cruising Altitude",
  10996. height: math.unit(30000, "feet")
  10997. },
  10998. {
  10999. name: "Megamacro",
  11000. height: math.unit(100, "miles")
  11001. },
  11002. {
  11003. name: "Continent Sized",
  11004. height: math.unit(2800, "miles")
  11005. },
  11006. {
  11007. name: "Earth Sized",
  11008. height: math.unit(8000, "miles")
  11009. },
  11010. ]
  11011. ))
  11012. characterMakers.push(() => makeCharacter(
  11013. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11014. {
  11015. front: {
  11016. height: math.unit(6, "feet"),
  11017. weight: math.unit(250, "lb"),
  11018. name: "Front",
  11019. image: {
  11020. source: "./media/characters/alexi/front.svg",
  11021. extra: 3483 / 3291,
  11022. bottom: 0.04
  11023. }
  11024. },
  11025. back: {
  11026. height: math.unit(6, "feet"),
  11027. weight: math.unit(250, "lb"),
  11028. name: "Back",
  11029. image: {
  11030. source: "./media/characters/alexi/back.svg",
  11031. extra: 3533 / 3356,
  11032. bottom: 0.021
  11033. }
  11034. },
  11035. frontTransforming: {
  11036. height: math.unit(8.58, "feet"),
  11037. weight: math.unit(1300, "lb"),
  11038. name: "Transforming",
  11039. image: {
  11040. source: "./media/characters/alexi/front-transforming.svg",
  11041. extra: 437 / 409,
  11042. bottom: 19 / 458.66
  11043. }
  11044. },
  11045. frontTransformed: {
  11046. height: math.unit(12.5, "feet"),
  11047. weight: math.unit(4000, "lb"),
  11048. name: "Transformed",
  11049. image: {
  11050. source: "./media/characters/alexi/front-transformed.svg",
  11051. extra: 639 / 614,
  11052. bottom: 30.55 / 671
  11053. }
  11054. },
  11055. },
  11056. [
  11057. {
  11058. name: "Normal",
  11059. height: math.unit(14, "feet"),
  11060. default: true
  11061. },
  11062. {
  11063. name: "Minimacro",
  11064. height: math.unit(30, "meters")
  11065. },
  11066. {
  11067. name: "Macro",
  11068. height: math.unit(500, "meters")
  11069. },
  11070. {
  11071. name: "Megamacro",
  11072. height: math.unit(9000, "km")
  11073. },
  11074. {
  11075. name: "Teramacro",
  11076. height: math.unit(384000, "km")
  11077. },
  11078. ]
  11079. ))
  11080. characterMakers.push(() => makeCharacter(
  11081. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11082. {
  11083. front: {
  11084. height: math.unit(6, "feet"),
  11085. weight: math.unit(150, "lb"),
  11086. name: "Front",
  11087. image: {
  11088. source: "./media/characters/kayroo/front.svg",
  11089. extra: 1153 / 1038,
  11090. bottom: 0.06
  11091. }
  11092. },
  11093. foot: {
  11094. height: math.unit(6, "feet"),
  11095. weight: math.unit(150, "lb"),
  11096. name: "Foot",
  11097. image: {
  11098. source: "./media/characters/kayroo/foot.svg"
  11099. }
  11100. },
  11101. },
  11102. [
  11103. {
  11104. name: "Normal",
  11105. height: math.unit(8, "feet"),
  11106. default: true
  11107. },
  11108. {
  11109. name: "Minimacro",
  11110. height: math.unit(250, "feet")
  11111. },
  11112. {
  11113. name: "Macro",
  11114. height: math.unit(2800, "feet")
  11115. },
  11116. {
  11117. name: "Megamacro",
  11118. height: math.unit(5200, "feet")
  11119. },
  11120. {
  11121. name: "Gigamacro",
  11122. height: math.unit(27000, "feet")
  11123. },
  11124. {
  11125. name: "Omega",
  11126. height: math.unit(45000, "feet")
  11127. },
  11128. ]
  11129. ))
  11130. characterMakers.push(() => makeCharacter(
  11131. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11132. {
  11133. front: {
  11134. height: math.unit(18, "feet"),
  11135. weight: math.unit(5800, "lb"),
  11136. name: "Front",
  11137. image: {
  11138. source: "./media/characters/rhys/front.svg",
  11139. extra: 3386 / 3090,
  11140. bottom: 0.07
  11141. }
  11142. },
  11143. },
  11144. [
  11145. {
  11146. name: "Normal",
  11147. height: math.unit(18, "feet"),
  11148. default: true
  11149. },
  11150. {
  11151. name: "Working Size",
  11152. height: math.unit(200, "feet")
  11153. },
  11154. {
  11155. name: "Demolition Size",
  11156. height: math.unit(2000, "feet")
  11157. },
  11158. {
  11159. name: "Maximum Licensed Size",
  11160. height: math.unit(5, "miles")
  11161. },
  11162. {
  11163. name: "Maximum Observed Size",
  11164. height: math.unit(10, "yottameters")
  11165. },
  11166. ]
  11167. ))
  11168. characterMakers.push(() => makeCharacter(
  11169. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11170. {
  11171. front: {
  11172. height: math.unit(6, "feet"),
  11173. weight: math.unit(250, "lb"),
  11174. name: "Front",
  11175. image: {
  11176. source: "./media/characters/toto/front.svg",
  11177. extra: 527 / 479,
  11178. bottom: 0.05
  11179. }
  11180. },
  11181. },
  11182. [
  11183. {
  11184. name: "Micro",
  11185. height: math.unit(3, "feet")
  11186. },
  11187. {
  11188. name: "Normal",
  11189. height: math.unit(10, "feet")
  11190. },
  11191. {
  11192. name: "Macro",
  11193. height: math.unit(150, "feet"),
  11194. default: true
  11195. },
  11196. {
  11197. name: "Megamacro",
  11198. height: math.unit(1200, "feet")
  11199. },
  11200. ]
  11201. ))
  11202. characterMakers.push(() => makeCharacter(
  11203. { name: "King", species: ["lion"], tags: ["anthro"] },
  11204. {
  11205. back: {
  11206. height: math.unit(6, "feet"),
  11207. weight: math.unit(150, "lb"),
  11208. name: "Back",
  11209. image: {
  11210. source: "./media/characters/king/back.svg"
  11211. }
  11212. },
  11213. },
  11214. [
  11215. {
  11216. name: "Micro",
  11217. height: math.unit(2, "inches")
  11218. },
  11219. {
  11220. name: "Normal",
  11221. height: math.unit(8, "feet")
  11222. },
  11223. {
  11224. name: "Macro",
  11225. height: math.unit(200, "feet"),
  11226. default: true
  11227. },
  11228. {
  11229. name: "Megamacro",
  11230. height: math.unit(50, "miles")
  11231. },
  11232. ]
  11233. ))
  11234. characterMakers.push(() => makeCharacter(
  11235. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11236. {
  11237. front: {
  11238. height: math.unit(11, "feet"),
  11239. weight: math.unit(1400, "lb"),
  11240. name: "Front",
  11241. image: {
  11242. source: "./media/characters/cordite/front.svg",
  11243. extra: 1919/1827,
  11244. bottom: 40/1959
  11245. }
  11246. },
  11247. side: {
  11248. height: math.unit(11, "feet"),
  11249. weight: math.unit(1400, "lb"),
  11250. name: "Side",
  11251. image: {
  11252. source: "./media/characters/cordite/side.svg",
  11253. extra: 1908/1793,
  11254. bottom: 38/1946
  11255. }
  11256. },
  11257. back: {
  11258. height: math.unit(11, "feet"),
  11259. weight: math.unit(1400, "lb"),
  11260. name: "Back",
  11261. image: {
  11262. source: "./media/characters/cordite/back.svg",
  11263. extra: 1938/1837,
  11264. bottom: 10/1948
  11265. }
  11266. },
  11267. feral: {
  11268. height: math.unit(2, "feet"),
  11269. weight: math.unit(90, "lb"),
  11270. name: "Feral",
  11271. image: {
  11272. source: "./media/characters/cordite/feral.svg",
  11273. extra: 1260 / 755,
  11274. bottom: 0.05
  11275. }
  11276. },
  11277. },
  11278. [
  11279. {
  11280. name: "Normal",
  11281. height: math.unit(11, "feet"),
  11282. default: true
  11283. },
  11284. ]
  11285. ))
  11286. characterMakers.push(() => makeCharacter(
  11287. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11288. {
  11289. front: {
  11290. height: math.unit(6, "feet"),
  11291. weight: math.unit(150, "lb"),
  11292. name: "Front",
  11293. image: {
  11294. source: "./media/characters/pianostrong/front.svg",
  11295. extra: 6577 / 6254,
  11296. bottom: 0.02
  11297. }
  11298. },
  11299. side: {
  11300. height: math.unit(6, "feet"),
  11301. weight: math.unit(150, "lb"),
  11302. name: "Side",
  11303. image: {
  11304. source: "./media/characters/pianostrong/side.svg",
  11305. extra: 6106 / 5730
  11306. }
  11307. },
  11308. back: {
  11309. height: math.unit(6, "feet"),
  11310. weight: math.unit(150, "lb"),
  11311. name: "Back",
  11312. image: {
  11313. source: "./media/characters/pianostrong/back.svg",
  11314. extra: 6085 / 5733,
  11315. bottom: 0.01
  11316. }
  11317. },
  11318. },
  11319. [
  11320. {
  11321. name: "Macro",
  11322. height: math.unit(100, "feet")
  11323. },
  11324. {
  11325. name: "Macro+",
  11326. height: math.unit(300, "feet"),
  11327. default: true
  11328. },
  11329. {
  11330. name: "Macro++",
  11331. height: math.unit(1000, "feet")
  11332. },
  11333. ]
  11334. ))
  11335. characterMakers.push(() => makeCharacter(
  11336. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11337. {
  11338. front: {
  11339. height: math.unit(6, "feet"),
  11340. weight: math.unit(150, "lb"),
  11341. name: "Front",
  11342. image: {
  11343. source: "./media/characters/kona/front.svg",
  11344. extra: 2960 / 2629,
  11345. bottom: 0.005
  11346. }
  11347. },
  11348. },
  11349. [
  11350. {
  11351. name: "Normal",
  11352. height: math.unit(11 + 8 / 12, "feet")
  11353. },
  11354. {
  11355. name: "Macro",
  11356. height: math.unit(850, "feet"),
  11357. default: true
  11358. },
  11359. {
  11360. name: "Macro+",
  11361. height: math.unit(1.5, "km"),
  11362. default: true
  11363. },
  11364. {
  11365. name: "Megamacro",
  11366. height: math.unit(80, "miles")
  11367. },
  11368. {
  11369. name: "Gigamacro",
  11370. height: math.unit(3500, "miles")
  11371. },
  11372. ]
  11373. ))
  11374. characterMakers.push(() => makeCharacter(
  11375. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11376. {
  11377. side: {
  11378. height: math.unit(1.9, "meters"),
  11379. weight: math.unit(326, "kg"),
  11380. name: "Side",
  11381. image: {
  11382. source: "./media/characters/levi/side.svg",
  11383. extra: 1704 / 1334,
  11384. bottom: 0.02
  11385. }
  11386. },
  11387. },
  11388. [
  11389. {
  11390. name: "Normal",
  11391. height: math.unit(1.9, "meters"),
  11392. default: true
  11393. },
  11394. {
  11395. name: "Macro",
  11396. height: math.unit(20, "meters")
  11397. },
  11398. {
  11399. name: "Macro+",
  11400. height: math.unit(200, "meters")
  11401. },
  11402. {
  11403. name: "Megamacro",
  11404. height: math.unit(2, "km")
  11405. },
  11406. {
  11407. name: "Megamacro+",
  11408. height: math.unit(20, "km")
  11409. },
  11410. {
  11411. name: "Gigamacro",
  11412. height: math.unit(2500, "km")
  11413. },
  11414. {
  11415. name: "Gigamacro+",
  11416. height: math.unit(120000, "km")
  11417. },
  11418. {
  11419. name: "Teramacro",
  11420. height: math.unit(7.77e6, "km")
  11421. },
  11422. ]
  11423. ))
  11424. characterMakers.push(() => makeCharacter(
  11425. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11426. {
  11427. front: {
  11428. height: math.unit(6 + 4/12, "feet"),
  11429. weight: math.unit(190, "lb"),
  11430. name: "Front",
  11431. image: {
  11432. source: "./media/characters/bmc/front.svg",
  11433. extra: 1626/1472,
  11434. bottom: 79/1705
  11435. }
  11436. },
  11437. back: {
  11438. height: math.unit(6 + 4/12, "feet"),
  11439. weight: math.unit(190, "lb"),
  11440. name: "Back",
  11441. image: {
  11442. source: "./media/characters/bmc/back.svg",
  11443. extra: 1640/1479,
  11444. bottom: 45/1685
  11445. }
  11446. },
  11447. frontArmor: {
  11448. height: math.unit(6 + 4/12, "feet"),
  11449. weight: math.unit(190, "lb"),
  11450. name: "Front-armor",
  11451. image: {
  11452. source: "./media/characters/bmc/front-armor.svg",
  11453. extra: 1538/1468,
  11454. bottom: 79/1617
  11455. }
  11456. },
  11457. },
  11458. [
  11459. {
  11460. name: "Human-sized",
  11461. height: math.unit(6 + 4 / 12, "feet")
  11462. },
  11463. {
  11464. name: "Interactive Size",
  11465. height: math.unit(25, "feet")
  11466. },
  11467. {
  11468. name: "Small",
  11469. height: math.unit(250, "feet")
  11470. },
  11471. {
  11472. name: "Normal",
  11473. height: math.unit(1250, "feet"),
  11474. default: true
  11475. },
  11476. {
  11477. name: "Good Day",
  11478. height: math.unit(88, "miles")
  11479. },
  11480. {
  11481. name: "Largest Measured Size",
  11482. height: math.unit(105.960, "galaxies")
  11483. },
  11484. ]
  11485. ))
  11486. characterMakers.push(() => makeCharacter(
  11487. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11488. {
  11489. front: {
  11490. height: math.unit(20, "feet"),
  11491. weight: math.unit(2016, "kg"),
  11492. name: "Front",
  11493. image: {
  11494. source: "./media/characters/sven-the-kaiju/front.svg",
  11495. extra: 1277/1250,
  11496. bottom: 35/1312
  11497. }
  11498. },
  11499. mouth: {
  11500. height: math.unit(1.85, "feet"),
  11501. name: "Mouth",
  11502. image: {
  11503. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11504. }
  11505. },
  11506. },
  11507. [
  11508. {
  11509. name: "Fairy",
  11510. height: math.unit(6, "inches")
  11511. },
  11512. {
  11513. name: "Normal",
  11514. height: math.unit(20, "feet"),
  11515. default: true
  11516. },
  11517. {
  11518. name: "Rampage",
  11519. height: math.unit(200, "feet")
  11520. },
  11521. {
  11522. name: "Archfey Forest Guardian",
  11523. height: math.unit(1, "mile")
  11524. },
  11525. ]
  11526. ))
  11527. characterMakers.push(() => makeCharacter(
  11528. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11529. {
  11530. front: {
  11531. height: math.unit(4, "meters"),
  11532. weight: math.unit(2, "tons"),
  11533. name: "Front",
  11534. image: {
  11535. source: "./media/characters/marik/front.svg",
  11536. extra: 1057 / 1003,
  11537. bottom: 0.08
  11538. }
  11539. },
  11540. },
  11541. [
  11542. {
  11543. name: "Normal",
  11544. height: math.unit(4, "meters"),
  11545. default: true
  11546. },
  11547. {
  11548. name: "Macro",
  11549. height: math.unit(20, "meters")
  11550. },
  11551. {
  11552. name: "Megamacro",
  11553. height: math.unit(50, "km")
  11554. },
  11555. {
  11556. name: "Gigamacro",
  11557. height: math.unit(100, "km")
  11558. },
  11559. {
  11560. name: "Alpha Macro",
  11561. height: math.unit(7.88e7, "yottameters")
  11562. },
  11563. ]
  11564. ))
  11565. characterMakers.push(() => makeCharacter(
  11566. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11567. {
  11568. front: {
  11569. height: math.unit(6, "feet"),
  11570. weight: math.unit(110, "lb"),
  11571. name: "Front",
  11572. image: {
  11573. source: "./media/characters/mel/front.svg",
  11574. extra: 736 / 617,
  11575. bottom: 0.017
  11576. }
  11577. },
  11578. },
  11579. [
  11580. {
  11581. name: "Pico",
  11582. height: math.unit(3, "pm")
  11583. },
  11584. {
  11585. name: "Nano",
  11586. height: math.unit(3, "nm")
  11587. },
  11588. {
  11589. name: "Micro",
  11590. height: math.unit(0.3, "mm"),
  11591. default: true
  11592. },
  11593. {
  11594. name: "Micro+",
  11595. height: math.unit(3, "mm")
  11596. },
  11597. {
  11598. name: "Normal",
  11599. height: math.unit(5 + 10.5 / 12, "feet")
  11600. },
  11601. ]
  11602. ))
  11603. characterMakers.push(() => makeCharacter(
  11604. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11605. {
  11606. kaiju: {
  11607. height: math.unit(1.75, "meters"),
  11608. weight: math.unit(55, "kg"),
  11609. name: "Kaiju",
  11610. image: {
  11611. source: "./media/characters/lykonous/kaiju.svg",
  11612. extra: 1055 / 946,
  11613. bottom: 0.135
  11614. }
  11615. },
  11616. },
  11617. [
  11618. {
  11619. name: "Normal",
  11620. height: math.unit(2.5, "meters"),
  11621. default: true
  11622. },
  11623. {
  11624. name: "Kaiju Dragon",
  11625. height: math.unit(60, "meters")
  11626. },
  11627. {
  11628. name: "Mega Kaiju",
  11629. height: math.unit(120, "km")
  11630. },
  11631. {
  11632. name: "Giga Kaiju",
  11633. height: math.unit(200, "megameters")
  11634. },
  11635. {
  11636. name: "Terra Kaiju",
  11637. height: math.unit(400, "gigameters")
  11638. },
  11639. {
  11640. name: "Kaiju Dragon God",
  11641. height: math.unit(13000, "exaparsecs")
  11642. },
  11643. ]
  11644. ))
  11645. characterMakers.push(() => makeCharacter(
  11646. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11647. {
  11648. front: {
  11649. height: math.unit(6, "feet"),
  11650. weight: math.unit(150, "lb"),
  11651. name: "Front",
  11652. image: {
  11653. source: "./media/characters/blü/front.svg",
  11654. extra: 1883 / 1564,
  11655. bottom: 0.031
  11656. }
  11657. },
  11658. },
  11659. [
  11660. {
  11661. name: "Normal",
  11662. height: math.unit(13, "feet"),
  11663. default: true
  11664. },
  11665. {
  11666. name: "Big Boi",
  11667. height: math.unit(150, "meters")
  11668. },
  11669. {
  11670. name: "Mini Stomper",
  11671. height: math.unit(300, "meters")
  11672. },
  11673. {
  11674. name: "Macro",
  11675. height: math.unit(1000, "meters")
  11676. },
  11677. {
  11678. name: "Megamacro",
  11679. height: math.unit(11000, "meters")
  11680. },
  11681. {
  11682. name: "Gigamacro",
  11683. height: math.unit(11000, "km")
  11684. },
  11685. {
  11686. name: "Teramacro",
  11687. height: math.unit(420000, "km")
  11688. },
  11689. {
  11690. name: "Examacro",
  11691. height: math.unit(120, "parsecs")
  11692. },
  11693. {
  11694. name: "God Tho",
  11695. height: math.unit(98000000000, "parsecs")
  11696. },
  11697. ]
  11698. ))
  11699. characterMakers.push(() => makeCharacter(
  11700. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11701. {
  11702. taurFront: {
  11703. height: math.unit(6, "feet"),
  11704. weight: math.unit(200, "lb"),
  11705. name: "Taur (Front)",
  11706. image: {
  11707. source: "./media/characters/scales/taur-front.svg",
  11708. extra: 1,
  11709. bottom: 0.05
  11710. }
  11711. },
  11712. taurBack: {
  11713. height: math.unit(6, "feet"),
  11714. weight: math.unit(200, "lb"),
  11715. name: "Taur (Back)",
  11716. image: {
  11717. source: "./media/characters/scales/taur-back.svg",
  11718. extra: 1,
  11719. bottom: 0.08
  11720. }
  11721. },
  11722. anthro: {
  11723. height: math.unit(6 * 7 / 12, "feet"),
  11724. weight: math.unit(100, "lb"),
  11725. name: "Anthro",
  11726. image: {
  11727. source: "./media/characters/scales/anthro.svg",
  11728. extra: 1,
  11729. bottom: 0.06
  11730. }
  11731. },
  11732. },
  11733. [
  11734. {
  11735. name: "Normal",
  11736. height: math.unit(12, "feet"),
  11737. default: true
  11738. },
  11739. ]
  11740. ))
  11741. characterMakers.push(() => makeCharacter(
  11742. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11743. {
  11744. front: {
  11745. height: math.unit(6, "feet"),
  11746. weight: math.unit(150, "lb"),
  11747. name: "Front",
  11748. image: {
  11749. source: "./media/characters/koragos/front.svg",
  11750. extra: 841 / 794,
  11751. bottom: 0.035
  11752. }
  11753. },
  11754. back: {
  11755. height: math.unit(6, "feet"),
  11756. weight: math.unit(150, "lb"),
  11757. name: "Back",
  11758. image: {
  11759. source: "./media/characters/koragos/back.svg",
  11760. extra: 841 / 810,
  11761. bottom: 0.022
  11762. }
  11763. },
  11764. },
  11765. [
  11766. {
  11767. name: "Normal",
  11768. height: math.unit(6 + 11 / 12, "feet"),
  11769. default: true
  11770. },
  11771. {
  11772. name: "Macro",
  11773. height: math.unit(490, "feet")
  11774. },
  11775. {
  11776. name: "Megamacro",
  11777. height: math.unit(10, "miles")
  11778. },
  11779. {
  11780. name: "Gigamacro",
  11781. height: math.unit(50, "miles")
  11782. },
  11783. ]
  11784. ))
  11785. characterMakers.push(() => makeCharacter(
  11786. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11787. {
  11788. front: {
  11789. height: math.unit(6, "feet"),
  11790. weight: math.unit(250, "lb"),
  11791. name: "Front",
  11792. image: {
  11793. source: "./media/characters/xylrem/front.svg",
  11794. extra: 3323 / 3050,
  11795. bottom: 0.065
  11796. }
  11797. },
  11798. },
  11799. [
  11800. {
  11801. name: "Micro",
  11802. height: math.unit(4, "feet")
  11803. },
  11804. {
  11805. name: "Normal",
  11806. height: math.unit(16, "feet"),
  11807. default: true
  11808. },
  11809. {
  11810. name: "Macro",
  11811. height: math.unit(2720, "feet")
  11812. },
  11813. {
  11814. name: "Megamacro",
  11815. height: math.unit(25000, "miles")
  11816. },
  11817. ]
  11818. ))
  11819. characterMakers.push(() => makeCharacter(
  11820. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11821. {
  11822. front: {
  11823. height: math.unit(8, "feet"),
  11824. weight: math.unit(250, "kg"),
  11825. name: "Front",
  11826. image: {
  11827. source: "./media/characters/ikideru/front.svg",
  11828. extra: 930 / 870,
  11829. bottom: 0.087
  11830. }
  11831. },
  11832. back: {
  11833. height: math.unit(8, "feet"),
  11834. weight: math.unit(250, "kg"),
  11835. name: "Back",
  11836. image: {
  11837. source: "./media/characters/ikideru/back.svg",
  11838. extra: 919 / 852,
  11839. bottom: 0.055
  11840. }
  11841. },
  11842. },
  11843. [
  11844. {
  11845. name: "Rare",
  11846. height: math.unit(8, "feet"),
  11847. default: true
  11848. },
  11849. {
  11850. name: "Playful Loom",
  11851. height: math.unit(80, "feet")
  11852. },
  11853. {
  11854. name: "City Leaner",
  11855. height: math.unit(230, "feet")
  11856. },
  11857. {
  11858. name: "Megamacro",
  11859. height: math.unit(2500, "feet")
  11860. },
  11861. {
  11862. name: "Gigamacro",
  11863. height: math.unit(26400, "feet")
  11864. },
  11865. {
  11866. name: "Tectonic Shifter",
  11867. height: math.unit(1.7, "megameters")
  11868. },
  11869. {
  11870. name: "Planet Carer",
  11871. height: math.unit(21, "megameters")
  11872. },
  11873. {
  11874. name: "God",
  11875. height: math.unit(11157.22, "parsecs")
  11876. },
  11877. ]
  11878. ))
  11879. characterMakers.push(() => makeCharacter(
  11880. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11881. {
  11882. front: {
  11883. height: math.unit(6, "feet"),
  11884. weight: math.unit(120, "lb"),
  11885. name: "Front",
  11886. image: {
  11887. source: "./media/characters/neo/front.svg"
  11888. }
  11889. },
  11890. },
  11891. [
  11892. {
  11893. name: "Micro",
  11894. height: math.unit(2, "inches"),
  11895. default: true
  11896. },
  11897. {
  11898. name: "Human Size",
  11899. height: math.unit(5 + 8 / 12, "feet")
  11900. },
  11901. ]
  11902. ))
  11903. characterMakers.push(() => makeCharacter(
  11904. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11905. {
  11906. front: {
  11907. height: math.unit(13 + 10 / 12, "feet"),
  11908. weight: math.unit(5320, "lb"),
  11909. name: "Front",
  11910. image: {
  11911. source: "./media/characters/chauncey-chantz/front.svg",
  11912. extra: 1587 / 1435,
  11913. bottom: 0.02
  11914. }
  11915. },
  11916. },
  11917. [
  11918. {
  11919. name: "Normal",
  11920. height: math.unit(13 + 10 / 12, "feet"),
  11921. default: true
  11922. },
  11923. {
  11924. name: "Macro",
  11925. height: math.unit(45, "feet")
  11926. },
  11927. {
  11928. name: "Megamacro",
  11929. height: math.unit(250, "miles")
  11930. },
  11931. {
  11932. name: "Planetary",
  11933. height: math.unit(10000, "miles")
  11934. },
  11935. {
  11936. name: "Galactic",
  11937. height: math.unit(40000, "parsecs")
  11938. },
  11939. {
  11940. name: "Universal",
  11941. height: math.unit(1, "yottameter")
  11942. },
  11943. ]
  11944. ))
  11945. characterMakers.push(() => makeCharacter(
  11946. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11947. {
  11948. front: {
  11949. height: math.unit(6, "feet"),
  11950. weight: math.unit(150, "lb"),
  11951. name: "Front",
  11952. image: {
  11953. source: "./media/characters/epifox/front.svg",
  11954. extra: 1,
  11955. bottom: 0.075
  11956. }
  11957. },
  11958. },
  11959. [
  11960. {
  11961. name: "Micro",
  11962. height: math.unit(6, "inches")
  11963. },
  11964. {
  11965. name: "Normal",
  11966. height: math.unit(12, "feet"),
  11967. default: true
  11968. },
  11969. {
  11970. name: "Macro",
  11971. height: math.unit(3810, "feet")
  11972. },
  11973. {
  11974. name: "Megamacro",
  11975. height: math.unit(500, "miles")
  11976. },
  11977. ]
  11978. ))
  11979. characterMakers.push(() => makeCharacter(
  11980. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11981. {
  11982. front: {
  11983. height: math.unit(1.8796, "m"),
  11984. weight: math.unit(230, "lb"),
  11985. name: "Front",
  11986. image: {
  11987. source: "./media/characters/colin-t/front.svg",
  11988. extra: 1272 / 1193,
  11989. bottom: 0.07
  11990. }
  11991. },
  11992. },
  11993. [
  11994. {
  11995. name: "Micro",
  11996. height: math.unit(0.571, "meters")
  11997. },
  11998. {
  11999. name: "Normal",
  12000. height: math.unit(1.8796, "meters"),
  12001. default: true
  12002. },
  12003. {
  12004. name: "Tall",
  12005. height: math.unit(4, "meters")
  12006. },
  12007. {
  12008. name: "Macro",
  12009. height: math.unit(67.241, "meters")
  12010. },
  12011. {
  12012. name: "Megamacro",
  12013. height: math.unit(371.856, "meters")
  12014. },
  12015. {
  12016. name: "Planetary",
  12017. height: math.unit(12631.5689, "km")
  12018. },
  12019. ]
  12020. ))
  12021. characterMakers.push(() => makeCharacter(
  12022. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12023. {
  12024. front: {
  12025. height: math.unit(1.85, "meters"),
  12026. weight: math.unit(80, "kg"),
  12027. name: "Front",
  12028. image: {
  12029. source: "./media/characters/matvei/front.svg",
  12030. extra: 614 / 594,
  12031. bottom: 0.01
  12032. }
  12033. },
  12034. },
  12035. [
  12036. {
  12037. name: "Normal",
  12038. height: math.unit(1.85, "meters"),
  12039. default: true
  12040. },
  12041. ]
  12042. ))
  12043. characterMakers.push(() => makeCharacter(
  12044. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12045. {
  12046. front: {
  12047. height: math.unit(5 + 9 / 12, "feet"),
  12048. weight: math.unit(70, "lb"),
  12049. name: "Front",
  12050. image: {
  12051. source: "./media/characters/quincy/front.svg",
  12052. extra: 3041 / 2751
  12053. }
  12054. },
  12055. back: {
  12056. height: math.unit(5 + 9 / 12, "feet"),
  12057. weight: math.unit(70, "lb"),
  12058. name: "Back",
  12059. image: {
  12060. source: "./media/characters/quincy/back.svg",
  12061. extra: 3041 / 2751
  12062. }
  12063. },
  12064. flying: {
  12065. height: math.unit(5 + 4 / 12, "feet"),
  12066. weight: math.unit(70, "lb"),
  12067. name: "Flying",
  12068. image: {
  12069. source: "./media/characters/quincy/flying.svg",
  12070. extra: 1044 / 930
  12071. }
  12072. },
  12073. },
  12074. [
  12075. {
  12076. name: "Micro",
  12077. height: math.unit(3, "cm")
  12078. },
  12079. {
  12080. name: "Normal",
  12081. height: math.unit(5 + 9 / 12, "feet")
  12082. },
  12083. {
  12084. name: "Macro",
  12085. height: math.unit(200, "meters"),
  12086. default: true
  12087. },
  12088. {
  12089. name: "Megamacro",
  12090. height: math.unit(1000, "meters")
  12091. },
  12092. ]
  12093. ))
  12094. characterMakers.push(() => makeCharacter(
  12095. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12096. {
  12097. front: {
  12098. height: math.unit(3 + 11/12, "feet"),
  12099. weight: math.unit(50, "lb"),
  12100. name: "Front",
  12101. image: {
  12102. source: "./media/characters/vanrel/front.svg",
  12103. extra: 1104/949,
  12104. bottom: 52/1156
  12105. }
  12106. },
  12107. back: {
  12108. height: math.unit(3 + 11/12, "feet"),
  12109. weight: math.unit(50, "lb"),
  12110. name: "Back",
  12111. image: {
  12112. source: "./media/characters/vanrel/back.svg",
  12113. extra: 1119/976,
  12114. bottom: 37/1156
  12115. }
  12116. },
  12117. tome: {
  12118. height: math.unit(1.35, "feet"),
  12119. weight: math.unit(10, "lb"),
  12120. name: "Vanrel's Tome",
  12121. rename: true,
  12122. image: {
  12123. source: "./media/characters/vanrel/tome.svg"
  12124. }
  12125. },
  12126. beans: {
  12127. height: math.unit(0.89, "feet"),
  12128. name: "Beans",
  12129. image: {
  12130. source: "./media/characters/vanrel/beans.svg"
  12131. }
  12132. },
  12133. },
  12134. [
  12135. {
  12136. name: "Normal",
  12137. height: math.unit(3 + 11/12, "feet"),
  12138. default: true
  12139. },
  12140. ]
  12141. ))
  12142. characterMakers.push(() => makeCharacter(
  12143. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12144. {
  12145. front: {
  12146. height: math.unit(7 + 5 / 12, "feet"),
  12147. name: "Front",
  12148. image: {
  12149. source: "./media/characters/kuiper-vanrel/front.svg",
  12150. extra: 1219/1169,
  12151. bottom: 69/1288
  12152. }
  12153. },
  12154. back: {
  12155. height: math.unit(7 + 5 / 12, "feet"),
  12156. name: "Back",
  12157. image: {
  12158. source: "./media/characters/kuiper-vanrel/back.svg",
  12159. extra: 1236/1193,
  12160. bottom: 27/1263
  12161. }
  12162. },
  12163. foot: {
  12164. height: math.unit(0.55, "meters"),
  12165. name: "Foot",
  12166. image: {
  12167. source: "./media/characters/kuiper-vanrel/foot.svg",
  12168. }
  12169. },
  12170. battle: {
  12171. height: math.unit(6.824, "feet"),
  12172. name: "Battle",
  12173. image: {
  12174. source: "./media/characters/kuiper-vanrel/battle.svg",
  12175. extra: 1466 / 1327,
  12176. bottom: 29 / 1492.5
  12177. }
  12178. },
  12179. meerkui: {
  12180. height: math.unit(18, "inches"),
  12181. name: "Meerkui",
  12182. image: {
  12183. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12184. extra: 1354/1289,
  12185. bottom: 69/1423
  12186. }
  12187. },
  12188. },
  12189. [
  12190. {
  12191. name: "Normal",
  12192. height: math.unit(7 + 5 / 12, "feet"),
  12193. default: true
  12194. },
  12195. ]
  12196. ))
  12197. characterMakers.push(() => makeCharacter(
  12198. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12199. {
  12200. front: {
  12201. height: math.unit(8 + 5 / 12, "feet"),
  12202. name: "Front",
  12203. image: {
  12204. source: "./media/characters/keset-vanrel/front.svg",
  12205. extra: 1231/1148,
  12206. bottom: 82/1313
  12207. }
  12208. },
  12209. back: {
  12210. height: math.unit(8 + 5 / 12, "feet"),
  12211. name: "Back",
  12212. image: {
  12213. source: "./media/characters/keset-vanrel/back.svg",
  12214. extra: 1240/1174,
  12215. bottom: 33/1273
  12216. }
  12217. },
  12218. hand: {
  12219. height: math.unit(0.6, "meters"),
  12220. name: "Hand",
  12221. image: {
  12222. source: "./media/characters/keset-vanrel/hand.svg"
  12223. }
  12224. },
  12225. foot: {
  12226. height: math.unit(0.94978, "meters"),
  12227. name: "Foot",
  12228. image: {
  12229. source: "./media/characters/keset-vanrel/foot.svg"
  12230. }
  12231. },
  12232. battle: {
  12233. height: math.unit(7.408, "feet"),
  12234. name: "Battle",
  12235. image: {
  12236. source: "./media/characters/keset-vanrel/battle.svg",
  12237. extra: 1890 / 1386,
  12238. bottom: 73.28 / 1970
  12239. }
  12240. },
  12241. },
  12242. [
  12243. {
  12244. name: "Normal",
  12245. height: math.unit(8 + 5 / 12, "feet"),
  12246. default: true
  12247. },
  12248. ]
  12249. ))
  12250. characterMakers.push(() => makeCharacter(
  12251. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12252. {
  12253. front: {
  12254. height: math.unit(6, "feet"),
  12255. weight: math.unit(150, "lb"),
  12256. name: "Front",
  12257. image: {
  12258. source: "./media/characters/neos/front.svg",
  12259. extra: 1696 / 992,
  12260. bottom: 0.14
  12261. }
  12262. },
  12263. },
  12264. [
  12265. {
  12266. name: "Normal",
  12267. height: math.unit(54, "cm"),
  12268. default: true
  12269. },
  12270. {
  12271. name: "Macro",
  12272. height: math.unit(100, "m")
  12273. },
  12274. {
  12275. name: "Megamacro",
  12276. height: math.unit(10, "km")
  12277. },
  12278. {
  12279. name: "Megamacro+",
  12280. height: math.unit(100, "km")
  12281. },
  12282. {
  12283. name: "Gigamacro",
  12284. height: math.unit(100, "Mm")
  12285. },
  12286. {
  12287. name: "Teramacro",
  12288. height: math.unit(100, "Gm")
  12289. },
  12290. {
  12291. name: "Examacro",
  12292. height: math.unit(100, "Em")
  12293. },
  12294. {
  12295. name: "Godly",
  12296. height: math.unit(10000, "Ym")
  12297. },
  12298. {
  12299. name: "Beyond Godly",
  12300. height: math.unit(25, "multiverses")
  12301. },
  12302. ]
  12303. ))
  12304. characterMakers.push(() => makeCharacter(
  12305. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12306. {
  12307. feminine: {
  12308. height: math.unit(5, "feet"),
  12309. weight: math.unit(100, "lb"),
  12310. name: "Feminine",
  12311. image: {
  12312. source: "./media/characters/sammy-mouse/feminine.svg",
  12313. extra: 2526 / 2425,
  12314. bottom: 0.123
  12315. }
  12316. },
  12317. masculine: {
  12318. height: math.unit(5, "feet"),
  12319. weight: math.unit(100, "lb"),
  12320. name: "Masculine",
  12321. image: {
  12322. source: "./media/characters/sammy-mouse/masculine.svg",
  12323. extra: 2526 / 2425,
  12324. bottom: 0.123
  12325. }
  12326. },
  12327. },
  12328. [
  12329. {
  12330. name: "Micro",
  12331. height: math.unit(5, "inches")
  12332. },
  12333. {
  12334. name: "Normal",
  12335. height: math.unit(5, "feet"),
  12336. default: true
  12337. },
  12338. {
  12339. name: "Macro",
  12340. height: math.unit(60, "feet")
  12341. },
  12342. ]
  12343. ))
  12344. characterMakers.push(() => makeCharacter(
  12345. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12346. {
  12347. front: {
  12348. height: math.unit(4, "feet"),
  12349. weight: math.unit(50, "lb"),
  12350. name: "Front",
  12351. image: {
  12352. source: "./media/characters/kole/front.svg",
  12353. extra: 1423 / 1303,
  12354. bottom: 0.025
  12355. }
  12356. },
  12357. back: {
  12358. height: math.unit(4, "feet"),
  12359. weight: math.unit(50, "lb"),
  12360. name: "Back",
  12361. image: {
  12362. source: "./media/characters/kole/back.svg",
  12363. extra: 1426 / 1280,
  12364. bottom: 0.02
  12365. }
  12366. },
  12367. },
  12368. [
  12369. {
  12370. name: "Normal",
  12371. height: math.unit(4, "feet"),
  12372. default: true
  12373. },
  12374. ]
  12375. ))
  12376. characterMakers.push(() => makeCharacter(
  12377. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12378. {
  12379. front: {
  12380. height: math.unit(2.5, "feet"),
  12381. weight: math.unit(32, "lb"),
  12382. name: "Front",
  12383. image: {
  12384. source: "./media/characters/rufran/front.svg",
  12385. extra: 1313/885,
  12386. bottom: 94/1407
  12387. }
  12388. },
  12389. side: {
  12390. height: math.unit(2.5, "feet"),
  12391. weight: math.unit(32, "lb"),
  12392. name: "Side",
  12393. image: {
  12394. source: "./media/characters/rufran/side.svg",
  12395. extra: 1109/852,
  12396. bottom: 118/1227
  12397. }
  12398. },
  12399. back: {
  12400. height: math.unit(2.5, "feet"),
  12401. weight: math.unit(32, "lb"),
  12402. name: "Back",
  12403. image: {
  12404. source: "./media/characters/rufran/back.svg",
  12405. extra: 1280/878,
  12406. bottom: 131/1411
  12407. }
  12408. },
  12409. mouth: {
  12410. height: math.unit(1.13, "feet"),
  12411. name: "Mouth",
  12412. image: {
  12413. source: "./media/characters/rufran/mouth.svg"
  12414. }
  12415. },
  12416. foot: {
  12417. height: math.unit(1.33, "feet"),
  12418. name: "Foot",
  12419. image: {
  12420. source: "./media/characters/rufran/foot.svg"
  12421. }
  12422. },
  12423. koboldFront: {
  12424. height: math.unit(2 + 6 / 12, "feet"),
  12425. weight: math.unit(20, "lb"),
  12426. name: "Front (Kobold)",
  12427. image: {
  12428. source: "./media/characters/rufran/kobold-front.svg",
  12429. extra: 2041 / 1839,
  12430. bottom: 0.055
  12431. }
  12432. },
  12433. koboldBack: {
  12434. height: math.unit(2 + 6 / 12, "feet"),
  12435. weight: math.unit(20, "lb"),
  12436. name: "Back (Kobold)",
  12437. image: {
  12438. source: "./media/characters/rufran/kobold-back.svg",
  12439. extra: 2054 / 1839,
  12440. bottom: 0.01
  12441. }
  12442. },
  12443. koboldHand: {
  12444. height: math.unit(0.2166, "meters"),
  12445. name: "Hand (Kobold)",
  12446. image: {
  12447. source: "./media/characters/rufran/kobold-hand.svg"
  12448. }
  12449. },
  12450. koboldFoot: {
  12451. height: math.unit(0.185, "meters"),
  12452. name: "Foot (Kobold)",
  12453. image: {
  12454. source: "./media/characters/rufran/kobold-foot.svg"
  12455. }
  12456. },
  12457. },
  12458. [
  12459. {
  12460. name: "Micro",
  12461. height: math.unit(1, "inch")
  12462. },
  12463. {
  12464. name: "Normal",
  12465. height: math.unit(2 + 6 / 12, "feet"),
  12466. default: true
  12467. },
  12468. {
  12469. name: "Big",
  12470. height: math.unit(60, "feet")
  12471. },
  12472. {
  12473. name: "Macro",
  12474. height: math.unit(325, "feet")
  12475. },
  12476. ]
  12477. ))
  12478. characterMakers.push(() => makeCharacter(
  12479. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12480. {
  12481. front: {
  12482. height: math.unit(0.3, "meters"),
  12483. weight: math.unit(3.5, "kg"),
  12484. name: "Front",
  12485. image: {
  12486. source: "./media/characters/chip/front.svg",
  12487. extra: 748 / 674
  12488. }
  12489. },
  12490. },
  12491. [
  12492. {
  12493. name: "Micro",
  12494. height: math.unit(1, "inch"),
  12495. default: true
  12496. },
  12497. ]
  12498. ))
  12499. characterMakers.push(() => makeCharacter(
  12500. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12501. {
  12502. side: {
  12503. height: math.unit(2.3, "meters"),
  12504. weight: math.unit(3500, "lb"),
  12505. name: "Side",
  12506. image: {
  12507. source: "./media/characters/torvid/side.svg",
  12508. extra: 1972 / 722,
  12509. bottom: 0.035
  12510. }
  12511. },
  12512. },
  12513. [
  12514. {
  12515. name: "Normal",
  12516. height: math.unit(2.3, "meters"),
  12517. default: true
  12518. },
  12519. ]
  12520. ))
  12521. characterMakers.push(() => makeCharacter(
  12522. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12523. {
  12524. front: {
  12525. height: math.unit(2, "meters"),
  12526. weight: math.unit(150.5, "kg"),
  12527. name: "Front",
  12528. image: {
  12529. source: "./media/characters/susan/front.svg",
  12530. extra: 693 / 635,
  12531. bottom: 0.05
  12532. }
  12533. },
  12534. },
  12535. [
  12536. {
  12537. name: "Megamacro",
  12538. height: math.unit(505, "miles"),
  12539. default: true
  12540. },
  12541. ]
  12542. ))
  12543. characterMakers.push(() => makeCharacter(
  12544. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12545. {
  12546. front: {
  12547. height: math.unit(6, "feet"),
  12548. weight: math.unit(150, "lb"),
  12549. name: "Front",
  12550. image: {
  12551. source: "./media/characters/raindrops/front.svg",
  12552. extra: 2655 / 2461,
  12553. bottom: 49 / 2705
  12554. }
  12555. },
  12556. back: {
  12557. height: math.unit(6, "feet"),
  12558. weight: math.unit(150, "lb"),
  12559. name: "Back",
  12560. image: {
  12561. source: "./media/characters/raindrops/back.svg",
  12562. extra: 2574 / 2400,
  12563. bottom: 65 / 2634
  12564. }
  12565. },
  12566. },
  12567. [
  12568. {
  12569. name: "Micro",
  12570. height: math.unit(6, "inches")
  12571. },
  12572. {
  12573. name: "Normal",
  12574. height: math.unit(6 + 2 / 12, "feet")
  12575. },
  12576. {
  12577. name: "Macro",
  12578. height: math.unit(131, "feet"),
  12579. default: true
  12580. },
  12581. {
  12582. name: "Megamacro",
  12583. height: math.unit(15, "miles")
  12584. },
  12585. {
  12586. name: "Gigamacro",
  12587. height: math.unit(4000, "miles")
  12588. },
  12589. {
  12590. name: "Teramacro",
  12591. height: math.unit(315000, "miles")
  12592. },
  12593. ]
  12594. ))
  12595. characterMakers.push(() => makeCharacter(
  12596. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12597. {
  12598. front: {
  12599. height: math.unit(2.794, "meters"),
  12600. weight: math.unit(325, "kg"),
  12601. name: "Front",
  12602. image: {
  12603. source: "./media/characters/tezwa/front.svg",
  12604. extra: 2083 / 1906,
  12605. bottom: 0.031
  12606. }
  12607. },
  12608. foot: {
  12609. height: math.unit(0.687, "meters"),
  12610. name: "Foot",
  12611. image: {
  12612. source: "./media/characters/tezwa/foot.svg"
  12613. }
  12614. },
  12615. },
  12616. [
  12617. {
  12618. name: "Normal",
  12619. height: math.unit(9 + 2 / 12, "feet"),
  12620. default: true
  12621. },
  12622. ]
  12623. ))
  12624. characterMakers.push(() => makeCharacter(
  12625. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12626. {
  12627. front: {
  12628. height: math.unit(58, "feet"),
  12629. weight: math.unit(89000, "lb"),
  12630. name: "Front",
  12631. image: {
  12632. source: "./media/characters/typhus/front.svg",
  12633. extra: 816 / 800,
  12634. bottom: 0.065
  12635. }
  12636. },
  12637. },
  12638. [
  12639. {
  12640. name: "Macro",
  12641. height: math.unit(58, "feet"),
  12642. default: true
  12643. },
  12644. ]
  12645. ))
  12646. characterMakers.push(() => makeCharacter(
  12647. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12648. {
  12649. front: {
  12650. height: math.unit(12, "feet"),
  12651. weight: math.unit(6, "tonnes"),
  12652. name: "Front",
  12653. image: {
  12654. source: "./media/characters/lyra-von-wulf/front.svg",
  12655. extra: 1,
  12656. bottom: 0.10
  12657. }
  12658. },
  12659. frontMecha: {
  12660. height: math.unit(12, "feet"),
  12661. weight: math.unit(12, "tonnes"),
  12662. name: "Front (Mecha)",
  12663. image: {
  12664. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12665. extra: 1,
  12666. bottom: 0.042
  12667. }
  12668. },
  12669. maw: {
  12670. height: math.unit(2.2, "feet"),
  12671. name: "Maw",
  12672. image: {
  12673. source: "./media/characters/lyra-von-wulf/maw.svg"
  12674. }
  12675. },
  12676. },
  12677. [
  12678. {
  12679. name: "Normal",
  12680. height: math.unit(12, "feet"),
  12681. default: true
  12682. },
  12683. {
  12684. name: "Classic",
  12685. height: math.unit(50, "feet")
  12686. },
  12687. {
  12688. name: "Macro",
  12689. height: math.unit(500, "feet")
  12690. },
  12691. {
  12692. name: "Megamacro",
  12693. height: math.unit(1, "mile")
  12694. },
  12695. {
  12696. name: "Gigamacro",
  12697. height: math.unit(400, "miles")
  12698. },
  12699. {
  12700. name: "Teramacro",
  12701. height: math.unit(22000, "miles")
  12702. },
  12703. {
  12704. name: "Solarmacro",
  12705. height: math.unit(8600000, "miles")
  12706. },
  12707. {
  12708. name: "Galactic",
  12709. height: math.unit(1057000, "lightyears")
  12710. },
  12711. ]
  12712. ))
  12713. characterMakers.push(() => makeCharacter(
  12714. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12715. {
  12716. front: {
  12717. height: math.unit(6 + 10 / 12, "feet"),
  12718. weight: math.unit(150, "lb"),
  12719. name: "Front",
  12720. image: {
  12721. source: "./media/characters/dixon/front.svg",
  12722. extra: 3361 / 3209,
  12723. bottom: 0.01
  12724. }
  12725. },
  12726. },
  12727. [
  12728. {
  12729. name: "Normal",
  12730. height: math.unit(6 + 10 / 12, "feet"),
  12731. default: true
  12732. },
  12733. {
  12734. name: "Big",
  12735. height: math.unit(12, "meters")
  12736. },
  12737. {
  12738. name: "Macro",
  12739. height: math.unit(500, "meters")
  12740. },
  12741. {
  12742. name: "Megamacro",
  12743. height: math.unit(2, "km")
  12744. },
  12745. ]
  12746. ))
  12747. characterMakers.push(() => makeCharacter(
  12748. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12749. {
  12750. front: {
  12751. height: math.unit(185, "cm"),
  12752. weight: math.unit(68, "kg"),
  12753. name: "Front",
  12754. image: {
  12755. source: "./media/characters/kauko/front.svg",
  12756. extra: 1455 / 1421,
  12757. bottom: 0.03
  12758. }
  12759. },
  12760. back: {
  12761. height: math.unit(185, "cm"),
  12762. weight: math.unit(68, "kg"),
  12763. name: "Back",
  12764. image: {
  12765. source: "./media/characters/kauko/back.svg",
  12766. extra: 1455 / 1421,
  12767. bottom: 0.004
  12768. }
  12769. },
  12770. },
  12771. [
  12772. {
  12773. name: "Normal",
  12774. height: math.unit(185, "cm"),
  12775. default: true
  12776. },
  12777. ]
  12778. ))
  12779. characterMakers.push(() => makeCharacter(
  12780. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12781. {
  12782. front: {
  12783. height: math.unit(6, "feet"),
  12784. weight: math.unit(150, "kg"),
  12785. name: "Front",
  12786. image: {
  12787. source: "./media/characters/varg/front.svg",
  12788. extra: 1108 / 1018,
  12789. bottom: 0.0375
  12790. }
  12791. },
  12792. },
  12793. [
  12794. {
  12795. name: "Normal",
  12796. height: math.unit(5, "meters")
  12797. },
  12798. {
  12799. name: "Macro",
  12800. height: math.unit(200, "meters")
  12801. },
  12802. {
  12803. name: "Megamacro",
  12804. height: math.unit(20, "kilometers")
  12805. },
  12806. {
  12807. name: "True Size",
  12808. height: math.unit(211, "km"),
  12809. default: true
  12810. },
  12811. {
  12812. name: "Gigamacro",
  12813. height: math.unit(1000, "km")
  12814. },
  12815. {
  12816. name: "Gigamacro+",
  12817. height: math.unit(8000, "km")
  12818. },
  12819. {
  12820. name: "Teramacro",
  12821. height: math.unit(1000000, "km")
  12822. },
  12823. ]
  12824. ))
  12825. characterMakers.push(() => makeCharacter(
  12826. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12827. {
  12828. front: {
  12829. height: math.unit(7 + 7 / 12, "feet"),
  12830. weight: math.unit(267, "lb"),
  12831. name: "Front",
  12832. image: {
  12833. source: "./media/characters/dayza/front.svg",
  12834. extra: 1262 / 1200,
  12835. bottom: 0.035
  12836. }
  12837. },
  12838. side: {
  12839. height: math.unit(7 + 7 / 12, "feet"),
  12840. weight: math.unit(267, "lb"),
  12841. name: "Side",
  12842. image: {
  12843. source: "./media/characters/dayza/side.svg",
  12844. extra: 1295 / 1245,
  12845. bottom: 0.05
  12846. }
  12847. },
  12848. back: {
  12849. height: math.unit(7 + 7 / 12, "feet"),
  12850. weight: math.unit(267, "lb"),
  12851. name: "Back",
  12852. image: {
  12853. source: "./media/characters/dayza/back.svg",
  12854. extra: 1241 / 1170
  12855. }
  12856. },
  12857. },
  12858. [
  12859. {
  12860. name: "Normal",
  12861. height: math.unit(7 + 7 / 12, "feet"),
  12862. default: true
  12863. },
  12864. {
  12865. name: "Macro",
  12866. height: math.unit(155, "feet")
  12867. },
  12868. ]
  12869. ))
  12870. characterMakers.push(() => makeCharacter(
  12871. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12872. {
  12873. front: {
  12874. height: math.unit(6 + 5 / 12, "feet"),
  12875. weight: math.unit(160, "lb"),
  12876. name: "Front",
  12877. image: {
  12878. source: "./media/characters/xanthos/front.svg",
  12879. extra: 1,
  12880. bottom: 0.04
  12881. }
  12882. },
  12883. back: {
  12884. height: math.unit(6 + 5 / 12, "feet"),
  12885. weight: math.unit(160, "lb"),
  12886. name: "Back",
  12887. image: {
  12888. source: "./media/characters/xanthos/back.svg",
  12889. extra: 1,
  12890. bottom: 0.03
  12891. }
  12892. },
  12893. hand: {
  12894. height: math.unit(0.928, "feet"),
  12895. name: "Hand",
  12896. image: {
  12897. source: "./media/characters/xanthos/hand.svg"
  12898. }
  12899. },
  12900. foot: {
  12901. height: math.unit(1.286, "feet"),
  12902. name: "Foot",
  12903. image: {
  12904. source: "./media/characters/xanthos/foot.svg"
  12905. }
  12906. },
  12907. },
  12908. [
  12909. {
  12910. name: "Normal",
  12911. height: math.unit(6 + 5 / 12, "feet"),
  12912. default: true
  12913. },
  12914. {
  12915. name: "Normal+",
  12916. height: math.unit(6, "meters")
  12917. },
  12918. {
  12919. name: "Macro",
  12920. height: math.unit(40, "feet")
  12921. },
  12922. {
  12923. name: "Macro+",
  12924. height: math.unit(200, "meters")
  12925. },
  12926. {
  12927. name: "Megamacro",
  12928. height: math.unit(20, "km")
  12929. },
  12930. {
  12931. name: "Megamacro+",
  12932. height: math.unit(100, "km")
  12933. },
  12934. {
  12935. name: "Gigamacro",
  12936. height: math.unit(200, "megameters")
  12937. },
  12938. {
  12939. name: "Gigamacro+",
  12940. height: math.unit(1.5, "gigameters")
  12941. },
  12942. ]
  12943. ))
  12944. characterMakers.push(() => makeCharacter(
  12945. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12946. {
  12947. front: {
  12948. height: math.unit(6 + 3 / 12, "feet"),
  12949. weight: math.unit(215, "lb"),
  12950. name: "Front",
  12951. image: {
  12952. source: "./media/characters/grynn/front.svg",
  12953. extra: 4627 / 4209,
  12954. bottom: 0.047
  12955. }
  12956. },
  12957. },
  12958. [
  12959. {
  12960. name: "Micro",
  12961. height: math.unit(6, "inches")
  12962. },
  12963. {
  12964. name: "Normal",
  12965. height: math.unit(6 + 3 / 12, "feet"),
  12966. default: true
  12967. },
  12968. {
  12969. name: "Big",
  12970. height: math.unit(104, "feet")
  12971. },
  12972. {
  12973. name: "Macro",
  12974. height: math.unit(944, "feet")
  12975. },
  12976. {
  12977. name: "Macro+",
  12978. height: math.unit(9480, "feet")
  12979. },
  12980. {
  12981. name: "Megamacro",
  12982. height: math.unit(78752, "feet")
  12983. },
  12984. {
  12985. name: "Megamacro+",
  12986. height: math.unit(630128, "feet")
  12987. },
  12988. {
  12989. name: "Megamacro++",
  12990. height: math.unit(3150695, "feet")
  12991. },
  12992. ]
  12993. ))
  12994. characterMakers.push(() => makeCharacter(
  12995. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12996. {
  12997. front: {
  12998. height: math.unit(7 + 5 / 12, "feet"),
  12999. weight: math.unit(450, "lb"),
  13000. name: "Front",
  13001. image: {
  13002. source: "./media/characters/mocha-aura/front.svg",
  13003. extra: 1907 / 1817,
  13004. bottom: 0.04
  13005. }
  13006. },
  13007. back: {
  13008. height: math.unit(7 + 5 / 12, "feet"),
  13009. weight: math.unit(450, "lb"),
  13010. name: "Back",
  13011. image: {
  13012. source: "./media/characters/mocha-aura/back.svg",
  13013. extra: 1900 / 1825,
  13014. bottom: 0.045
  13015. }
  13016. },
  13017. },
  13018. [
  13019. {
  13020. name: "Nano",
  13021. height: math.unit(1, "nm")
  13022. },
  13023. {
  13024. name: "Megamicro",
  13025. height: math.unit(1, "mm")
  13026. },
  13027. {
  13028. name: "Micro",
  13029. height: math.unit(3, "inches")
  13030. },
  13031. {
  13032. name: "Normal",
  13033. height: math.unit(7 + 5 / 12, "feet"),
  13034. default: true
  13035. },
  13036. {
  13037. name: "Macro",
  13038. height: math.unit(30, "feet")
  13039. },
  13040. {
  13041. name: "Megamacro",
  13042. height: math.unit(3500, "feet")
  13043. },
  13044. {
  13045. name: "Teramacro",
  13046. height: math.unit(500000, "miles")
  13047. },
  13048. {
  13049. name: "Petamacro",
  13050. height: math.unit(50000000000000000, "parsecs")
  13051. },
  13052. ]
  13053. ))
  13054. characterMakers.push(() => makeCharacter(
  13055. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13056. {
  13057. front: {
  13058. height: math.unit(6, "feet"),
  13059. weight: math.unit(150, "lb"),
  13060. name: "Front",
  13061. image: {
  13062. source: "./media/characters/ilisha-devya/front.svg",
  13063. extra: 1,
  13064. bottom: 0.175
  13065. }
  13066. },
  13067. back: {
  13068. height: math.unit(6, "feet"),
  13069. weight: math.unit(150, "lb"),
  13070. name: "Back",
  13071. image: {
  13072. source: "./media/characters/ilisha-devya/back.svg",
  13073. extra: 1,
  13074. bottom: 0.015
  13075. }
  13076. },
  13077. },
  13078. [
  13079. {
  13080. name: "Macro",
  13081. height: math.unit(500, "feet"),
  13082. default: true
  13083. },
  13084. {
  13085. name: "Megamacro",
  13086. height: math.unit(10, "miles")
  13087. },
  13088. {
  13089. name: "Gigamacro",
  13090. height: math.unit(100000, "miles")
  13091. },
  13092. {
  13093. name: "Examacro",
  13094. height: math.unit(1e9, "lightyears")
  13095. },
  13096. {
  13097. name: "Omniversal",
  13098. height: math.unit(1e33, "lightyears")
  13099. },
  13100. {
  13101. name: "Beyond Infinite",
  13102. height: math.unit(1e100, "lightyears")
  13103. },
  13104. ]
  13105. ))
  13106. characterMakers.push(() => makeCharacter(
  13107. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13108. {
  13109. Side: {
  13110. height: math.unit(6, "feet"),
  13111. weight: math.unit(150, "lb"),
  13112. name: "Side",
  13113. image: {
  13114. source: "./media/characters/mira/side.svg",
  13115. extra: 900 / 799,
  13116. bottom: 0.02
  13117. }
  13118. },
  13119. },
  13120. [
  13121. {
  13122. name: "Human Size",
  13123. height: math.unit(6, "feet")
  13124. },
  13125. {
  13126. name: "Macro",
  13127. height: math.unit(100, "feet"),
  13128. default: true
  13129. },
  13130. {
  13131. name: "Megamacro",
  13132. height: math.unit(10, "miles")
  13133. },
  13134. {
  13135. name: "Gigamacro",
  13136. height: math.unit(25000, "miles")
  13137. },
  13138. {
  13139. name: "Teramacro",
  13140. height: math.unit(300, "AU")
  13141. },
  13142. {
  13143. name: "Full Size",
  13144. height: math.unit(4.5e10, "lightyears")
  13145. },
  13146. ]
  13147. ))
  13148. characterMakers.push(() => makeCharacter(
  13149. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13150. {
  13151. front: {
  13152. height: math.unit(6, "feet"),
  13153. weight: math.unit(150, "lb"),
  13154. name: "Front",
  13155. image: {
  13156. source: "./media/characters/holly/front.svg",
  13157. extra: 639 / 606
  13158. }
  13159. },
  13160. back: {
  13161. height: math.unit(6, "feet"),
  13162. weight: math.unit(150, "lb"),
  13163. name: "Back",
  13164. image: {
  13165. source: "./media/characters/holly/back.svg",
  13166. extra: 623 / 598
  13167. }
  13168. },
  13169. frontWorking: {
  13170. height: math.unit(6, "feet"),
  13171. weight: math.unit(150, "lb"),
  13172. name: "Front (Working)",
  13173. image: {
  13174. source: "./media/characters/holly/front-working.svg",
  13175. extra: 607 / 577,
  13176. bottom: 0.048
  13177. }
  13178. },
  13179. },
  13180. [
  13181. {
  13182. name: "Normal",
  13183. height: math.unit(12 + 3 / 12, "feet"),
  13184. default: true
  13185. },
  13186. ]
  13187. ))
  13188. characterMakers.push(() => makeCharacter(
  13189. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13190. {
  13191. front: {
  13192. height: math.unit(6, "feet"),
  13193. weight: math.unit(150, "lb"),
  13194. name: "Front",
  13195. image: {
  13196. source: "./media/characters/porter/front.svg",
  13197. extra: 1,
  13198. bottom: 0.01
  13199. }
  13200. },
  13201. frontRobes: {
  13202. height: math.unit(6, "feet"),
  13203. weight: math.unit(150, "lb"),
  13204. name: "Front (Robes)",
  13205. image: {
  13206. source: "./media/characters/porter/front-robes.svg",
  13207. extra: 1.01,
  13208. bottom: 0.01
  13209. }
  13210. },
  13211. },
  13212. [
  13213. {
  13214. name: "Normal",
  13215. height: math.unit(11 + 9 / 12, "feet"),
  13216. default: true
  13217. },
  13218. ]
  13219. ))
  13220. characterMakers.push(() => makeCharacter(
  13221. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13222. {
  13223. legendary: {
  13224. height: math.unit(6, "feet"),
  13225. weight: math.unit(150, "lb"),
  13226. name: "Legendary",
  13227. image: {
  13228. source: "./media/characters/lucy/legendary.svg",
  13229. extra: 1355 / 1100,
  13230. bottom: 0.045
  13231. }
  13232. },
  13233. },
  13234. [
  13235. {
  13236. name: "Legendary",
  13237. height: math.unit(86882 * 2, "miles"),
  13238. default: true
  13239. },
  13240. ]
  13241. ))
  13242. characterMakers.push(() => makeCharacter(
  13243. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13244. {
  13245. front: {
  13246. height: math.unit(6, "feet"),
  13247. weight: math.unit(150, "lb"),
  13248. name: "Front",
  13249. image: {
  13250. source: "./media/characters/drusilla/front.svg",
  13251. extra: 678 / 635,
  13252. bottom: 0.03
  13253. }
  13254. },
  13255. back: {
  13256. height: math.unit(6, "feet"),
  13257. weight: math.unit(150, "lb"),
  13258. name: "Back",
  13259. image: {
  13260. source: "./media/characters/drusilla/back.svg",
  13261. extra: 678 / 635,
  13262. bottom: 0.005
  13263. }
  13264. },
  13265. },
  13266. [
  13267. {
  13268. name: "Macro",
  13269. height: math.unit(100, "feet")
  13270. },
  13271. {
  13272. name: "Canon Height",
  13273. height: math.unit(2000, "feet"),
  13274. default: true
  13275. },
  13276. ]
  13277. ))
  13278. characterMakers.push(() => makeCharacter(
  13279. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13280. {
  13281. front: {
  13282. height: math.unit(6, "feet"),
  13283. weight: math.unit(180, "lb"),
  13284. name: "Front",
  13285. image: {
  13286. source: "./media/characters/renard-thatch/front.svg",
  13287. extra: 2411 / 2275,
  13288. bottom: 0.01
  13289. }
  13290. },
  13291. frontPosing: {
  13292. height: math.unit(6, "feet"),
  13293. weight: math.unit(180, "lb"),
  13294. name: "Front (Posing)",
  13295. image: {
  13296. source: "./media/characters/renard-thatch/front-posing.svg",
  13297. extra: 2381 / 2261,
  13298. bottom: 0.01
  13299. }
  13300. },
  13301. back: {
  13302. height: math.unit(6, "feet"),
  13303. weight: math.unit(180, "lb"),
  13304. name: "Back",
  13305. image: {
  13306. source: "./media/characters/renard-thatch/back.svg",
  13307. extra: 2428 / 2288
  13308. }
  13309. },
  13310. },
  13311. [
  13312. {
  13313. name: "Micro",
  13314. height: math.unit(3, "inches")
  13315. },
  13316. {
  13317. name: "Default",
  13318. height: math.unit(6, "feet"),
  13319. default: true
  13320. },
  13321. {
  13322. name: "Macro",
  13323. height: math.unit(75, "feet")
  13324. },
  13325. ]
  13326. ))
  13327. characterMakers.push(() => makeCharacter(
  13328. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13329. {
  13330. front: {
  13331. height: math.unit(1450, "feet"),
  13332. weight: math.unit(1.21e6, "tons"),
  13333. name: "Front",
  13334. image: {
  13335. source: "./media/characters/sekvra/front.svg",
  13336. extra: 1,
  13337. bottom: 0.03
  13338. }
  13339. },
  13340. frontClothed: {
  13341. height: math.unit(1450, "feet"),
  13342. weight: math.unit(1.21e6, "tons"),
  13343. name: "Front (Clothed)",
  13344. image: {
  13345. source: "./media/characters/sekvra/front-clothed.svg",
  13346. extra: 1,
  13347. bottom: 0.03
  13348. }
  13349. },
  13350. side: {
  13351. height: math.unit(1450, "feet"),
  13352. weight: math.unit(1.21e6, "tons"),
  13353. name: "Side",
  13354. image: {
  13355. source: "./media/characters/sekvra/side.svg",
  13356. extra: 1,
  13357. bottom: 0.025
  13358. }
  13359. },
  13360. back: {
  13361. height: math.unit(1450, "feet"),
  13362. weight: math.unit(1.21e6, "tons"),
  13363. name: "Back",
  13364. image: {
  13365. source: "./media/characters/sekvra/back.svg",
  13366. extra: 1,
  13367. bottom: 0.005
  13368. }
  13369. },
  13370. },
  13371. [
  13372. {
  13373. name: "Macro",
  13374. height: math.unit(1450, "feet"),
  13375. default: true
  13376. },
  13377. {
  13378. name: "Megamacro",
  13379. height: math.unit(15000, "feet")
  13380. },
  13381. ]
  13382. ))
  13383. characterMakers.push(() => makeCharacter(
  13384. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13385. {
  13386. front: {
  13387. height: math.unit(6, "feet"),
  13388. weight: math.unit(150, "lb"),
  13389. name: "Front",
  13390. image: {
  13391. source: "./media/characters/carmine/front.svg",
  13392. extra: 1,
  13393. bottom: 0.035
  13394. }
  13395. },
  13396. frontArmor: {
  13397. height: math.unit(6, "feet"),
  13398. weight: math.unit(150, "lb"),
  13399. name: "Front (Armor)",
  13400. image: {
  13401. source: "./media/characters/carmine/front-armor.svg",
  13402. extra: 1,
  13403. bottom: 0.035
  13404. }
  13405. },
  13406. },
  13407. [
  13408. {
  13409. name: "Large",
  13410. height: math.unit(1, "mile")
  13411. },
  13412. {
  13413. name: "Huge",
  13414. height: math.unit(40, "miles"),
  13415. default: true
  13416. },
  13417. {
  13418. name: "Colossal",
  13419. height: math.unit(2500, "miles")
  13420. },
  13421. ]
  13422. ))
  13423. characterMakers.push(() => makeCharacter(
  13424. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13425. {
  13426. front: {
  13427. height: math.unit(6, "feet"),
  13428. weight: math.unit(150, "lb"),
  13429. name: "Front",
  13430. image: {
  13431. source: "./media/characters/elyssia/front.svg",
  13432. extra: 2201 / 2035,
  13433. bottom: 0.05
  13434. }
  13435. },
  13436. frontClothed: {
  13437. height: math.unit(6, "feet"),
  13438. weight: math.unit(150, "lb"),
  13439. name: "Front (Clothed)",
  13440. image: {
  13441. source: "./media/characters/elyssia/front-clothed.svg",
  13442. extra: 2201 / 2035,
  13443. bottom: 0.05
  13444. }
  13445. },
  13446. back: {
  13447. height: math.unit(6, "feet"),
  13448. weight: math.unit(150, "lb"),
  13449. name: "Back",
  13450. image: {
  13451. source: "./media/characters/elyssia/back.svg",
  13452. extra: 2201 / 2035,
  13453. bottom: 0.013
  13454. }
  13455. },
  13456. },
  13457. [
  13458. {
  13459. name: "Smaller",
  13460. height: math.unit(150, "feet")
  13461. },
  13462. {
  13463. name: "Standard",
  13464. height: math.unit(1400, "feet"),
  13465. default: true
  13466. },
  13467. {
  13468. name: "Distracted",
  13469. height: math.unit(15000, "feet")
  13470. },
  13471. ]
  13472. ))
  13473. characterMakers.push(() => makeCharacter(
  13474. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13475. {
  13476. front: {
  13477. height: math.unit(7 + 4 / 12, "feet"),
  13478. weight: math.unit(500, "lb"),
  13479. name: "Front",
  13480. image: {
  13481. source: "./media/characters/geno-maxwell/front.svg",
  13482. extra: 2207 / 2040,
  13483. bottom: 0.015
  13484. }
  13485. },
  13486. },
  13487. [
  13488. {
  13489. name: "Micro",
  13490. height: math.unit(3, "inches")
  13491. },
  13492. {
  13493. name: "Normal",
  13494. height: math.unit(7 + 4 / 12, "feet"),
  13495. default: true
  13496. },
  13497. {
  13498. name: "Macro",
  13499. height: math.unit(220, "feet")
  13500. },
  13501. {
  13502. name: "Megamacro",
  13503. height: math.unit(11, "miles")
  13504. },
  13505. ]
  13506. ))
  13507. characterMakers.push(() => makeCharacter(
  13508. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13509. {
  13510. front: {
  13511. height: math.unit(7 + 4 / 12, "feet"),
  13512. weight: math.unit(500, "lb"),
  13513. name: "Front",
  13514. image: {
  13515. source: "./media/characters/regena-maxwell/front.svg",
  13516. extra: 3115 / 2770,
  13517. bottom: 0.02
  13518. }
  13519. },
  13520. },
  13521. [
  13522. {
  13523. name: "Normal",
  13524. height: math.unit(7 + 4 / 12, "feet"),
  13525. default: true
  13526. },
  13527. {
  13528. name: "Macro",
  13529. height: math.unit(220, "feet")
  13530. },
  13531. {
  13532. name: "Megamacro",
  13533. height: math.unit(11, "miles")
  13534. },
  13535. ]
  13536. ))
  13537. characterMakers.push(() => makeCharacter(
  13538. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13539. {
  13540. front: {
  13541. height: math.unit(6, "feet"),
  13542. weight: math.unit(150, "lb"),
  13543. name: "Front",
  13544. image: {
  13545. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13546. extra: 860 / 690,
  13547. bottom: 0.03
  13548. }
  13549. },
  13550. },
  13551. [
  13552. {
  13553. name: "Normal",
  13554. height: math.unit(1.7, "meters"),
  13555. default: true
  13556. },
  13557. ]
  13558. ))
  13559. characterMakers.push(() => makeCharacter(
  13560. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13561. {
  13562. front: {
  13563. height: math.unit(6, "feet"),
  13564. weight: math.unit(150, "lb"),
  13565. name: "Front",
  13566. image: {
  13567. source: "./media/characters/quilly/front.svg",
  13568. extra: 890 / 776
  13569. }
  13570. },
  13571. },
  13572. [
  13573. {
  13574. name: "Gigamacro",
  13575. height: math.unit(404090, "miles"),
  13576. default: true
  13577. },
  13578. ]
  13579. ))
  13580. characterMakers.push(() => makeCharacter(
  13581. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13582. {
  13583. front: {
  13584. height: math.unit(7 + 8 / 12, "feet"),
  13585. weight: math.unit(350, "lb"),
  13586. name: "Front",
  13587. image: {
  13588. source: "./media/characters/tempest/front.svg",
  13589. extra: 1175 / 1086,
  13590. bottom: 0.02
  13591. }
  13592. },
  13593. },
  13594. [
  13595. {
  13596. name: "Normal",
  13597. height: math.unit(7 + 8 / 12, "feet"),
  13598. default: true
  13599. },
  13600. ]
  13601. ))
  13602. characterMakers.push(() => makeCharacter(
  13603. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13604. {
  13605. side: {
  13606. height: math.unit(4 + 5 / 12, "feet"),
  13607. weight: math.unit(80, "lb"),
  13608. name: "Side",
  13609. image: {
  13610. source: "./media/characters/rodger/side.svg",
  13611. extra: 1235 / 1118
  13612. }
  13613. },
  13614. },
  13615. [
  13616. {
  13617. name: "Micro",
  13618. height: math.unit(1, "inch")
  13619. },
  13620. {
  13621. name: "Normal",
  13622. height: math.unit(4 + 5 / 12, "feet"),
  13623. default: true
  13624. },
  13625. {
  13626. name: "Macro",
  13627. height: math.unit(120, "feet")
  13628. },
  13629. ]
  13630. ))
  13631. characterMakers.push(() => makeCharacter(
  13632. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13633. {
  13634. front: {
  13635. height: math.unit(6, "feet"),
  13636. weight: math.unit(150, "lb"),
  13637. name: "Front",
  13638. image: {
  13639. source: "./media/characters/danyel/front.svg",
  13640. extra: 1185 / 1123,
  13641. bottom: 0.05
  13642. }
  13643. },
  13644. },
  13645. [
  13646. {
  13647. name: "Shrunken",
  13648. height: math.unit(0.5, "mm")
  13649. },
  13650. {
  13651. name: "Micro",
  13652. height: math.unit(1, "mm"),
  13653. default: true
  13654. },
  13655. {
  13656. name: "Upsized",
  13657. height: math.unit(5 + 5 / 12, "feet")
  13658. },
  13659. ]
  13660. ))
  13661. characterMakers.push(() => makeCharacter(
  13662. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13663. {
  13664. front: {
  13665. height: math.unit(5 + 6 / 12, "feet"),
  13666. weight: math.unit(200, "lb"),
  13667. name: "Front",
  13668. image: {
  13669. source: "./media/characters/vivian-bijoux/front.svg",
  13670. extra: 1,
  13671. bottom: 0.072
  13672. }
  13673. },
  13674. },
  13675. [
  13676. {
  13677. name: "Normal",
  13678. height: math.unit(5 + 6 / 12, "feet"),
  13679. default: true
  13680. },
  13681. {
  13682. name: "Bad Dream",
  13683. height: math.unit(500, "feet")
  13684. },
  13685. {
  13686. name: "Nightmare",
  13687. height: math.unit(500, "miles")
  13688. },
  13689. ]
  13690. ))
  13691. characterMakers.push(() => makeCharacter(
  13692. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13693. {
  13694. front: {
  13695. height: math.unit(6 + 1 / 12, "feet"),
  13696. weight: math.unit(260, "lb"),
  13697. name: "Front",
  13698. image: {
  13699. source: "./media/characters/zeta/front.svg",
  13700. extra: 1968 / 1889,
  13701. bottom: 0.06
  13702. }
  13703. },
  13704. back: {
  13705. height: math.unit(6 + 1 / 12, "feet"),
  13706. weight: math.unit(260, "lb"),
  13707. name: "Back",
  13708. image: {
  13709. source: "./media/characters/zeta/back.svg",
  13710. extra: 1944 / 1858,
  13711. bottom: 0.03
  13712. }
  13713. },
  13714. hand: {
  13715. height: math.unit(1.112, "feet"),
  13716. name: "Hand",
  13717. image: {
  13718. source: "./media/characters/zeta/hand.svg"
  13719. }
  13720. },
  13721. foot: {
  13722. height: math.unit(1.48, "feet"),
  13723. name: "Foot",
  13724. image: {
  13725. source: "./media/characters/zeta/foot.svg"
  13726. }
  13727. },
  13728. },
  13729. [
  13730. {
  13731. name: "Micro",
  13732. height: math.unit(6, "inches")
  13733. },
  13734. {
  13735. name: "Normal",
  13736. height: math.unit(6 + 1 / 12, "feet"),
  13737. default: true
  13738. },
  13739. {
  13740. name: "Macro",
  13741. height: math.unit(20, "feet")
  13742. },
  13743. ]
  13744. ))
  13745. characterMakers.push(() => makeCharacter(
  13746. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13747. {
  13748. front: {
  13749. height: math.unit(6, "feet"),
  13750. weight: math.unit(150, "lb"),
  13751. name: "Front",
  13752. image: {
  13753. source: "./media/characters/jamie-larsen/front.svg",
  13754. extra: 962 / 933,
  13755. bottom: 0.02
  13756. }
  13757. },
  13758. back: {
  13759. height: math.unit(6, "feet"),
  13760. weight: math.unit(150, "lb"),
  13761. name: "Back",
  13762. image: {
  13763. source: "./media/characters/jamie-larsen/back.svg",
  13764. extra: 997 / 946
  13765. }
  13766. },
  13767. },
  13768. [
  13769. {
  13770. name: "Macro",
  13771. height: math.unit(28 + 7 / 12, "feet"),
  13772. default: true
  13773. },
  13774. {
  13775. name: "Macro+",
  13776. height: math.unit(180, "feet")
  13777. },
  13778. {
  13779. name: "Megamacro",
  13780. height: math.unit(10, "miles")
  13781. },
  13782. {
  13783. name: "Gigamacro",
  13784. height: math.unit(200000, "miles")
  13785. },
  13786. ]
  13787. ))
  13788. characterMakers.push(() => makeCharacter(
  13789. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13790. {
  13791. front: {
  13792. height: math.unit(6, "feet"),
  13793. weight: math.unit(120, "lb"),
  13794. name: "Front",
  13795. image: {
  13796. source: "./media/characters/vance/front.svg",
  13797. extra: 1980 / 1890,
  13798. bottom: 0.09
  13799. }
  13800. },
  13801. back: {
  13802. height: math.unit(6, "feet"),
  13803. weight: math.unit(120, "lb"),
  13804. name: "Back",
  13805. image: {
  13806. source: "./media/characters/vance/back.svg",
  13807. extra: 2081 / 1994,
  13808. bottom: 0.014
  13809. }
  13810. },
  13811. hand: {
  13812. height: math.unit(0.88, "feet"),
  13813. name: "Hand",
  13814. image: {
  13815. source: "./media/characters/vance/hand.svg"
  13816. }
  13817. },
  13818. foot: {
  13819. height: math.unit(0.64, "feet"),
  13820. name: "Foot",
  13821. image: {
  13822. source: "./media/characters/vance/foot.svg"
  13823. }
  13824. },
  13825. },
  13826. [
  13827. {
  13828. name: "Small",
  13829. height: math.unit(90, "feet"),
  13830. default: true
  13831. },
  13832. {
  13833. name: "Macro",
  13834. height: math.unit(100, "meters")
  13835. },
  13836. {
  13837. name: "Megamacro",
  13838. height: math.unit(15, "miles")
  13839. },
  13840. ]
  13841. ))
  13842. characterMakers.push(() => makeCharacter(
  13843. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13844. {
  13845. front: {
  13846. height: math.unit(6, "feet"),
  13847. weight: math.unit(180, "lb"),
  13848. name: "Front",
  13849. image: {
  13850. source: "./media/characters/xochitl/front.svg",
  13851. extra: 2297 / 2261,
  13852. bottom: 0.065
  13853. }
  13854. },
  13855. back: {
  13856. height: math.unit(6, "feet"),
  13857. weight: math.unit(180, "lb"),
  13858. name: "Back",
  13859. image: {
  13860. source: "./media/characters/xochitl/back.svg",
  13861. extra: 2386 / 2354,
  13862. bottom: 0.01
  13863. }
  13864. },
  13865. foot: {
  13866. height: math.unit(6 / 5 * 1.15, "feet"),
  13867. weight: math.unit(150, "lb"),
  13868. name: "Foot",
  13869. image: {
  13870. source: "./media/characters/xochitl/foot.svg"
  13871. }
  13872. },
  13873. },
  13874. [
  13875. {
  13876. name: "Macro",
  13877. height: math.unit(80, "feet")
  13878. },
  13879. {
  13880. name: "Macro+",
  13881. height: math.unit(400, "feet"),
  13882. default: true
  13883. },
  13884. {
  13885. name: "Gigamacro",
  13886. height: math.unit(80000, "miles")
  13887. },
  13888. {
  13889. name: "Gigamacro+",
  13890. height: math.unit(400000, "miles")
  13891. },
  13892. {
  13893. name: "Teramacro",
  13894. height: math.unit(300, "AU")
  13895. },
  13896. ]
  13897. ))
  13898. characterMakers.push(() => makeCharacter(
  13899. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13900. {
  13901. front: {
  13902. height: math.unit(6, "feet"),
  13903. weight: math.unit(150, "lb"),
  13904. name: "Front",
  13905. image: {
  13906. source: "./media/characters/vincent/front.svg",
  13907. extra: 1130 / 1080,
  13908. bottom: 0.055
  13909. }
  13910. },
  13911. beak: {
  13912. height: math.unit(6 * 0.1, "feet"),
  13913. name: "Beak",
  13914. image: {
  13915. source: "./media/characters/vincent/beak.svg"
  13916. }
  13917. },
  13918. hand: {
  13919. height: math.unit(6 * 0.85, "feet"),
  13920. weight: math.unit(150, "lb"),
  13921. name: "Hand",
  13922. image: {
  13923. source: "./media/characters/vincent/hand.svg"
  13924. }
  13925. },
  13926. foot: {
  13927. height: math.unit(6 * 0.19, "feet"),
  13928. weight: math.unit(150, "lb"),
  13929. name: "Foot",
  13930. image: {
  13931. source: "./media/characters/vincent/foot.svg"
  13932. }
  13933. },
  13934. },
  13935. [
  13936. {
  13937. name: "Base",
  13938. height: math.unit(6 + 5 / 12, "feet"),
  13939. default: true
  13940. },
  13941. {
  13942. name: "Macro",
  13943. height: math.unit(300, "feet")
  13944. },
  13945. {
  13946. name: "Megamacro",
  13947. height: math.unit(2, "miles")
  13948. },
  13949. {
  13950. name: "Gigamacro",
  13951. height: math.unit(1000, "miles")
  13952. },
  13953. ]
  13954. ))
  13955. characterMakers.push(() => makeCharacter(
  13956. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13957. {
  13958. front: {
  13959. height: math.unit(2, "meters"),
  13960. weight: math.unit(500, "kg"),
  13961. name: "Front",
  13962. image: {
  13963. source: "./media/characters/coatl/front.svg",
  13964. extra: 3948 / 3500,
  13965. bottom: 0.082
  13966. }
  13967. },
  13968. },
  13969. [
  13970. {
  13971. name: "Normal",
  13972. height: math.unit(4, "meters")
  13973. },
  13974. {
  13975. name: "Macro",
  13976. height: math.unit(100, "meters"),
  13977. default: true
  13978. },
  13979. {
  13980. name: "Macro+",
  13981. height: math.unit(300, "meters")
  13982. },
  13983. {
  13984. name: "Megamacro",
  13985. height: math.unit(3, "gigameters")
  13986. },
  13987. {
  13988. name: "Megamacro+",
  13989. height: math.unit(300, "terameters")
  13990. },
  13991. {
  13992. name: "Megamacro++",
  13993. height: math.unit(3, "lightyears")
  13994. },
  13995. ]
  13996. ))
  13997. characterMakers.push(() => makeCharacter(
  13998. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13999. {
  14000. front: {
  14001. height: math.unit(6, "feet"),
  14002. weight: math.unit(50, "kg"),
  14003. name: "front",
  14004. image: {
  14005. source: "./media/characters/shiroryu/front.svg",
  14006. extra: 1990 / 1935
  14007. }
  14008. },
  14009. },
  14010. [
  14011. {
  14012. name: "Mortal Mingling",
  14013. height: math.unit(3, "meters")
  14014. },
  14015. {
  14016. name: "Kaiju-ish",
  14017. height: math.unit(250, "meters")
  14018. },
  14019. {
  14020. name: "Somewhat Godly",
  14021. height: math.unit(400, "km"),
  14022. default: true
  14023. },
  14024. {
  14025. name: "Planetary",
  14026. height: math.unit(300, "megameters")
  14027. },
  14028. {
  14029. name: "Galaxy-dwarfing",
  14030. height: math.unit(450, "kiloparsecs")
  14031. },
  14032. {
  14033. name: "Universe Eater",
  14034. height: math.unit(150, "gigaparsecs")
  14035. },
  14036. {
  14037. name: "Almost Immeasurable",
  14038. height: math.unit(1.3e266, "yottaparsecs")
  14039. },
  14040. ]
  14041. ))
  14042. characterMakers.push(() => makeCharacter(
  14043. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14044. {
  14045. front: {
  14046. height: math.unit(6, "feet"),
  14047. weight: math.unit(150, "lb"),
  14048. name: "Front",
  14049. image: {
  14050. source: "./media/characters/umeko/front.svg",
  14051. extra: 1,
  14052. bottom: 0.019
  14053. }
  14054. },
  14055. frontArmored: {
  14056. height: math.unit(6, "feet"),
  14057. weight: math.unit(150, "lb"),
  14058. name: "Front (Armored)",
  14059. image: {
  14060. source: "./media/characters/umeko/front-armored.svg",
  14061. extra: 1,
  14062. bottom: 0.021
  14063. }
  14064. },
  14065. },
  14066. [
  14067. {
  14068. name: "Macro",
  14069. height: math.unit(220, "feet"),
  14070. default: true
  14071. },
  14072. {
  14073. name: "Guardian Dragon",
  14074. height: math.unit(50, "miles")
  14075. },
  14076. {
  14077. name: "Cosmic",
  14078. height: math.unit(800000, "miles")
  14079. },
  14080. ]
  14081. ))
  14082. characterMakers.push(() => makeCharacter(
  14083. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14084. {
  14085. front: {
  14086. height: math.unit(6, "feet"),
  14087. weight: math.unit(150, "lb"),
  14088. name: "Front",
  14089. image: {
  14090. source: "./media/characters/cassidy/front.svg",
  14091. extra: 1,
  14092. bottom: 0.043
  14093. }
  14094. },
  14095. },
  14096. [
  14097. {
  14098. name: "Canon Height",
  14099. height: math.unit(120, "feet"),
  14100. default: true
  14101. },
  14102. {
  14103. name: "Macro+",
  14104. height: math.unit(400, "feet")
  14105. },
  14106. {
  14107. name: "Macro++",
  14108. height: math.unit(4000, "feet")
  14109. },
  14110. {
  14111. name: "Megamacro",
  14112. height: math.unit(3, "miles")
  14113. },
  14114. ]
  14115. ))
  14116. characterMakers.push(() => makeCharacter(
  14117. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14118. {
  14119. front: {
  14120. height: math.unit(6, "feet"),
  14121. weight: math.unit(150, "lb"),
  14122. name: "Front",
  14123. image: {
  14124. source: "./media/characters/isaac/front.svg",
  14125. extra: 896 / 815,
  14126. bottom: 0.11
  14127. }
  14128. },
  14129. },
  14130. [
  14131. {
  14132. name: "Human Size",
  14133. height: math.unit(8, "feet"),
  14134. default: true
  14135. },
  14136. {
  14137. name: "Macro",
  14138. height: math.unit(400, "feet")
  14139. },
  14140. {
  14141. name: "Megamacro",
  14142. height: math.unit(50, "miles")
  14143. },
  14144. {
  14145. name: "Canon Height",
  14146. height: math.unit(200, "AU")
  14147. },
  14148. ]
  14149. ))
  14150. characterMakers.push(() => makeCharacter(
  14151. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14152. {
  14153. front: {
  14154. height: math.unit(6, "feet"),
  14155. weight: math.unit(72, "kg"),
  14156. name: "Front",
  14157. image: {
  14158. source: "./media/characters/sleekit/front.svg",
  14159. extra: 4693 / 4487,
  14160. bottom: 0.012
  14161. }
  14162. },
  14163. },
  14164. [
  14165. {
  14166. name: "Minimum Height",
  14167. height: math.unit(10, "meters")
  14168. },
  14169. {
  14170. name: "Smaller",
  14171. height: math.unit(25, "meters")
  14172. },
  14173. {
  14174. name: "Larger",
  14175. height: math.unit(38, "meters"),
  14176. default: true
  14177. },
  14178. {
  14179. name: "Maximum height",
  14180. height: math.unit(100, "meters")
  14181. },
  14182. ]
  14183. ))
  14184. characterMakers.push(() => makeCharacter(
  14185. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14186. {
  14187. front: {
  14188. height: math.unit(6, "feet"),
  14189. weight: math.unit(150, "lb"),
  14190. name: "Front",
  14191. image: {
  14192. source: "./media/characters/nillia/front.svg",
  14193. extra: 2195 / 2037,
  14194. bottom: 0.005
  14195. }
  14196. },
  14197. back: {
  14198. height: math.unit(6, "feet"),
  14199. weight: math.unit(150, "lb"),
  14200. name: "Back",
  14201. image: {
  14202. source: "./media/characters/nillia/back.svg",
  14203. extra: 2195 / 2037,
  14204. bottom: 0.005
  14205. }
  14206. },
  14207. },
  14208. [
  14209. {
  14210. name: "Canon Height",
  14211. height: math.unit(489, "feet"),
  14212. default: true
  14213. }
  14214. ]
  14215. ))
  14216. characterMakers.push(() => makeCharacter(
  14217. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14218. {
  14219. front: {
  14220. height: math.unit(6, "feet"),
  14221. weight: math.unit(150, "lb"),
  14222. name: "Front",
  14223. image: {
  14224. source: "./media/characters/mesmyriza/front.svg",
  14225. extra: 2067 / 1784,
  14226. bottom: 0.035
  14227. }
  14228. },
  14229. foot: {
  14230. height: math.unit(6 / (250 / 35), "feet"),
  14231. name: "Foot",
  14232. image: {
  14233. source: "./media/characters/mesmyriza/foot.svg"
  14234. }
  14235. },
  14236. },
  14237. [
  14238. {
  14239. name: "Macro",
  14240. height: math.unit(457, "meters"),
  14241. default: true
  14242. },
  14243. {
  14244. name: "Megamacro",
  14245. height: math.unit(8, "megameters")
  14246. },
  14247. ]
  14248. ))
  14249. characterMakers.push(() => makeCharacter(
  14250. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14251. {
  14252. front: {
  14253. height: math.unit(6, "feet"),
  14254. weight: math.unit(250, "lb"),
  14255. name: "Front",
  14256. image: {
  14257. source: "./media/characters/saudade/front.svg",
  14258. extra: 1172 / 1139,
  14259. bottom: 0.035
  14260. }
  14261. },
  14262. },
  14263. [
  14264. {
  14265. name: "Micro",
  14266. height: math.unit(3, "inches")
  14267. },
  14268. {
  14269. name: "Normal",
  14270. height: math.unit(6, "feet"),
  14271. default: true
  14272. },
  14273. {
  14274. name: "Macro",
  14275. height: math.unit(50, "feet")
  14276. },
  14277. {
  14278. name: "Megamacro",
  14279. height: math.unit(2800, "feet")
  14280. },
  14281. ]
  14282. ))
  14283. characterMakers.push(() => makeCharacter(
  14284. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14285. {
  14286. front: {
  14287. height: math.unit(5 + 4 / 12, "feet"),
  14288. weight: math.unit(100, "lb"),
  14289. name: "Front",
  14290. image: {
  14291. source: "./media/characters/keireer/front.svg",
  14292. extra: 716 / 666,
  14293. bottom: 0.05
  14294. }
  14295. },
  14296. },
  14297. [
  14298. {
  14299. name: "Normal",
  14300. height: math.unit(5 + 4 / 12, "feet"),
  14301. default: true
  14302. },
  14303. ]
  14304. ))
  14305. characterMakers.push(() => makeCharacter(
  14306. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14307. {
  14308. front: {
  14309. height: math.unit(6, "feet"),
  14310. weight: math.unit(90, "kg"),
  14311. name: "Front",
  14312. image: {
  14313. source: "./media/characters/mirja/front.svg",
  14314. extra: 1789 / 1683,
  14315. bottom: 0.05
  14316. }
  14317. },
  14318. frontDressed: {
  14319. height: math.unit(6, "feet"),
  14320. weight: math.unit(90, "lb"),
  14321. name: "Front (Dressed)",
  14322. image: {
  14323. source: "./media/characters/mirja/front-dressed.svg",
  14324. extra: 1789 / 1683,
  14325. bottom: 0.05
  14326. }
  14327. },
  14328. back: {
  14329. height: math.unit(6, "feet"),
  14330. weight: math.unit(90, "lb"),
  14331. name: "Back",
  14332. image: {
  14333. source: "./media/characters/mirja/back.svg",
  14334. extra: 953 / 917,
  14335. bottom: 0.017
  14336. }
  14337. },
  14338. },
  14339. [
  14340. {
  14341. name: "\"Incognito\"",
  14342. height: math.unit(3, "meters")
  14343. },
  14344. {
  14345. name: "Strolling Size",
  14346. height: math.unit(15, "km")
  14347. },
  14348. {
  14349. name: "Larger Strolling Size",
  14350. height: math.unit(400, "km")
  14351. },
  14352. {
  14353. name: "Preferred Size",
  14354. height: math.unit(5000, "km")
  14355. },
  14356. {
  14357. name: "True Size",
  14358. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14359. default: true
  14360. },
  14361. ]
  14362. ))
  14363. characterMakers.push(() => makeCharacter(
  14364. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14365. {
  14366. front: {
  14367. height: math.unit(15, "feet"),
  14368. weight: math.unit(880, "kg"),
  14369. name: "Front",
  14370. image: {
  14371. source: "./media/characters/nightraver/front.svg",
  14372. extra: 2444 / 2160,
  14373. bottom: 0.027
  14374. }
  14375. },
  14376. back: {
  14377. height: math.unit(15, "feet"),
  14378. weight: math.unit(880, "kg"),
  14379. name: "Back",
  14380. image: {
  14381. source: "./media/characters/nightraver/back.svg",
  14382. extra: 2309 / 2180,
  14383. bottom: 0.005
  14384. }
  14385. },
  14386. sole: {
  14387. height: math.unit(2.878, "feet"),
  14388. name: "Sole",
  14389. image: {
  14390. source: "./media/characters/nightraver/sole.svg"
  14391. }
  14392. },
  14393. foot: {
  14394. height: math.unit(2.285, "feet"),
  14395. name: "Foot",
  14396. image: {
  14397. source: "./media/characters/nightraver/foot.svg"
  14398. }
  14399. },
  14400. maw: {
  14401. height: math.unit(2.67, "feet"),
  14402. name: "Maw",
  14403. image: {
  14404. source: "./media/characters/nightraver/maw.svg"
  14405. }
  14406. },
  14407. },
  14408. [
  14409. {
  14410. name: "Micro",
  14411. height: math.unit(1, "cm")
  14412. },
  14413. {
  14414. name: "Normal",
  14415. height: math.unit(15, "feet"),
  14416. default: true
  14417. },
  14418. {
  14419. name: "Macro",
  14420. height: math.unit(300, "feet")
  14421. },
  14422. {
  14423. name: "Megamacro",
  14424. height: math.unit(300, "miles")
  14425. },
  14426. {
  14427. name: "Gigamacro",
  14428. height: math.unit(10000, "miles")
  14429. },
  14430. ]
  14431. ))
  14432. characterMakers.push(() => makeCharacter(
  14433. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14434. {
  14435. side: {
  14436. height: math.unit(2, "inches"),
  14437. weight: math.unit(5, "grams"),
  14438. name: "Side",
  14439. image: {
  14440. source: "./media/characters/arc/side.svg"
  14441. }
  14442. },
  14443. },
  14444. [
  14445. {
  14446. name: "Micro",
  14447. height: math.unit(2, "inches"),
  14448. default: true
  14449. },
  14450. ]
  14451. ))
  14452. characterMakers.push(() => makeCharacter(
  14453. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14454. {
  14455. front: {
  14456. height: math.unit(1.1938, "meters"),
  14457. weight: math.unit(54, "kg"),
  14458. name: "Front",
  14459. image: {
  14460. source: "./media/characters/nebula-shahar/front.svg",
  14461. extra: 1642 / 1436,
  14462. bottom: 0.06
  14463. }
  14464. },
  14465. },
  14466. [
  14467. {
  14468. name: "Megamicro",
  14469. height: math.unit(0.3, "mm")
  14470. },
  14471. {
  14472. name: "Micro",
  14473. height: math.unit(3, "cm")
  14474. },
  14475. {
  14476. name: "Normal",
  14477. height: math.unit(138, "cm"),
  14478. default: true
  14479. },
  14480. {
  14481. name: "Macro",
  14482. height: math.unit(30, "m")
  14483. },
  14484. ]
  14485. ))
  14486. characterMakers.push(() => makeCharacter(
  14487. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14488. {
  14489. front: {
  14490. height: math.unit(5.24, "feet"),
  14491. weight: math.unit(150, "lb"),
  14492. name: "Front",
  14493. image: {
  14494. source: "./media/characters/shayla/front.svg",
  14495. extra: 1512 / 1414,
  14496. bottom: 0.01
  14497. }
  14498. },
  14499. back: {
  14500. height: math.unit(5.24, "feet"),
  14501. weight: math.unit(150, "lb"),
  14502. name: "Back",
  14503. image: {
  14504. source: "./media/characters/shayla/back.svg",
  14505. extra: 1512 / 1414
  14506. }
  14507. },
  14508. hand: {
  14509. height: math.unit(0.7781496062992126, "feet"),
  14510. name: "Hand",
  14511. image: {
  14512. source: "./media/characters/shayla/hand.svg"
  14513. }
  14514. },
  14515. foot: {
  14516. height: math.unit(1.4206036745406823, "feet"),
  14517. name: "Foot",
  14518. image: {
  14519. source: "./media/characters/shayla/foot.svg"
  14520. }
  14521. },
  14522. },
  14523. [
  14524. {
  14525. name: "Micro",
  14526. height: math.unit(0.32, "feet")
  14527. },
  14528. {
  14529. name: "Normal",
  14530. height: math.unit(5.24, "feet"),
  14531. default: true
  14532. },
  14533. {
  14534. name: "Macro",
  14535. height: math.unit(492.12, "feet")
  14536. },
  14537. {
  14538. name: "Megamacro",
  14539. height: math.unit(186.41, "miles")
  14540. },
  14541. ]
  14542. ))
  14543. characterMakers.push(() => makeCharacter(
  14544. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14545. {
  14546. front: {
  14547. height: math.unit(2.2, "m"),
  14548. weight: math.unit(120, "kg"),
  14549. name: "Front",
  14550. image: {
  14551. source: "./media/characters/pia-jr/front.svg",
  14552. extra: 1000 / 970,
  14553. bottom: 0.035
  14554. }
  14555. },
  14556. hand: {
  14557. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14558. name: "Hand",
  14559. image: {
  14560. source: "./media/characters/pia-jr/hand.svg"
  14561. }
  14562. },
  14563. paw: {
  14564. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14565. name: "Paw",
  14566. image: {
  14567. source: "./media/characters/pia-jr/paw.svg"
  14568. }
  14569. },
  14570. },
  14571. [
  14572. {
  14573. name: "Micro",
  14574. height: math.unit(1.2, "cm")
  14575. },
  14576. {
  14577. name: "Normal",
  14578. height: math.unit(2.2, "m"),
  14579. default: true
  14580. },
  14581. {
  14582. name: "Macro",
  14583. height: math.unit(180, "m")
  14584. },
  14585. {
  14586. name: "Megamacro",
  14587. height: math.unit(420, "km")
  14588. },
  14589. ]
  14590. ))
  14591. characterMakers.push(() => makeCharacter(
  14592. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14593. {
  14594. front: {
  14595. height: math.unit(2, "m"),
  14596. weight: math.unit(115, "kg"),
  14597. name: "Front",
  14598. image: {
  14599. source: "./media/characters/pia-sr/front.svg",
  14600. extra: 760 / 730,
  14601. bottom: 0.015
  14602. }
  14603. },
  14604. back: {
  14605. height: math.unit(2, "m"),
  14606. weight: math.unit(115, "kg"),
  14607. name: "Back",
  14608. image: {
  14609. source: "./media/characters/pia-sr/back.svg",
  14610. extra: 760 / 730,
  14611. bottom: 0.01
  14612. }
  14613. },
  14614. hand: {
  14615. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14616. name: "Hand",
  14617. image: {
  14618. source: "./media/characters/pia-sr/hand.svg"
  14619. }
  14620. },
  14621. foot: {
  14622. height: math.unit(1.83, "feet"),
  14623. name: "Foot",
  14624. image: {
  14625. source: "./media/characters/pia-sr/foot.svg"
  14626. }
  14627. },
  14628. },
  14629. [
  14630. {
  14631. name: "Micro",
  14632. height: math.unit(88, "mm")
  14633. },
  14634. {
  14635. name: "Normal",
  14636. height: math.unit(2, "m"),
  14637. default: true
  14638. },
  14639. {
  14640. name: "Macro",
  14641. height: math.unit(200, "m")
  14642. },
  14643. {
  14644. name: "Megamacro",
  14645. height: math.unit(420, "km")
  14646. },
  14647. ]
  14648. ))
  14649. characterMakers.push(() => makeCharacter(
  14650. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14651. {
  14652. front: {
  14653. height: math.unit(8 + 2 / 12, "feet"),
  14654. weight: math.unit(300, "lb"),
  14655. name: "Front",
  14656. image: {
  14657. source: "./media/characters/kibibyte/front.svg",
  14658. extra: 2221 / 2098,
  14659. bottom: 0.04
  14660. }
  14661. },
  14662. },
  14663. [
  14664. {
  14665. name: "Normal",
  14666. height: math.unit(8 + 2 / 12, "feet"),
  14667. default: true
  14668. },
  14669. {
  14670. name: "Socialable Macro",
  14671. height: math.unit(50, "feet")
  14672. },
  14673. {
  14674. name: "Macro",
  14675. height: math.unit(300, "feet")
  14676. },
  14677. {
  14678. name: "Megamacro",
  14679. height: math.unit(500, "miles")
  14680. },
  14681. ]
  14682. ))
  14683. characterMakers.push(() => makeCharacter(
  14684. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14685. {
  14686. front: {
  14687. height: math.unit(6, "feet"),
  14688. weight: math.unit(150, "lb"),
  14689. name: "Front",
  14690. image: {
  14691. source: "./media/characters/felix/front.svg",
  14692. extra: 762 / 722,
  14693. bottom: 0.02
  14694. }
  14695. },
  14696. frontClothed: {
  14697. height: math.unit(6, "feet"),
  14698. weight: math.unit(150, "lb"),
  14699. name: "Front (Clothed)",
  14700. image: {
  14701. source: "./media/characters/felix/front-clothed.svg",
  14702. extra: 762 / 722,
  14703. bottom: 0.02
  14704. }
  14705. },
  14706. },
  14707. [
  14708. {
  14709. name: "Normal",
  14710. height: math.unit(6 + 8 / 12, "feet"),
  14711. default: true
  14712. },
  14713. {
  14714. name: "Macro",
  14715. height: math.unit(2600, "feet")
  14716. },
  14717. {
  14718. name: "Megamacro",
  14719. height: math.unit(450, "miles")
  14720. },
  14721. ]
  14722. ))
  14723. characterMakers.push(() => makeCharacter(
  14724. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14725. {
  14726. front: {
  14727. height: math.unit(6 + 1 / 12, "feet"),
  14728. weight: math.unit(250, "lb"),
  14729. name: "Front",
  14730. image: {
  14731. source: "./media/characters/tobo/front.svg",
  14732. extra: 608 / 586,
  14733. bottom: 0.023
  14734. }
  14735. },
  14736. back: {
  14737. height: math.unit(6 + 1 / 12, "feet"),
  14738. weight: math.unit(250, "lb"),
  14739. name: "Back",
  14740. image: {
  14741. source: "./media/characters/tobo/back.svg",
  14742. extra: 608 / 586
  14743. }
  14744. },
  14745. },
  14746. [
  14747. {
  14748. name: "Nano",
  14749. height: math.unit(2, "nm")
  14750. },
  14751. {
  14752. name: "Megamicro",
  14753. height: math.unit(0.1, "mm")
  14754. },
  14755. {
  14756. name: "Micro",
  14757. height: math.unit(1, "inch"),
  14758. default: true
  14759. },
  14760. {
  14761. name: "Human-sized",
  14762. height: math.unit(6 + 1 / 12, "feet")
  14763. },
  14764. {
  14765. name: "Macro",
  14766. height: math.unit(250, "feet")
  14767. },
  14768. {
  14769. name: "Megamacro",
  14770. height: math.unit(75, "miles")
  14771. },
  14772. {
  14773. name: "Texas-sized",
  14774. height: math.unit(750, "miles")
  14775. },
  14776. {
  14777. name: "Teramacro",
  14778. height: math.unit(50000, "miles")
  14779. },
  14780. ]
  14781. ))
  14782. characterMakers.push(() => makeCharacter(
  14783. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14784. {
  14785. front: {
  14786. height: math.unit(6, "feet"),
  14787. weight: math.unit(269, "lb"),
  14788. name: "Front",
  14789. image: {
  14790. source: "./media/characters/danny-kapowsky/front.svg",
  14791. extra: 766 / 736,
  14792. bottom: 0.044
  14793. }
  14794. },
  14795. back: {
  14796. height: math.unit(6, "feet"),
  14797. weight: math.unit(269, "lb"),
  14798. name: "Back",
  14799. image: {
  14800. source: "./media/characters/danny-kapowsky/back.svg",
  14801. extra: 797 / 760,
  14802. bottom: 0.025
  14803. }
  14804. },
  14805. },
  14806. [
  14807. {
  14808. name: "Macro",
  14809. height: math.unit(150, "feet"),
  14810. default: true
  14811. },
  14812. {
  14813. name: "Macro+",
  14814. height: math.unit(200, "feet")
  14815. },
  14816. {
  14817. name: "Macro++",
  14818. height: math.unit(300, "feet")
  14819. },
  14820. {
  14821. name: "Macro+++",
  14822. height: math.unit(400, "feet")
  14823. },
  14824. ]
  14825. ))
  14826. characterMakers.push(() => makeCharacter(
  14827. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14828. {
  14829. side: {
  14830. height: math.unit(6, "feet"),
  14831. weight: math.unit(170, "lb"),
  14832. name: "Side",
  14833. image: {
  14834. source: "./media/characters/finn/side.svg",
  14835. extra: 1953 / 1807,
  14836. bottom: 0.057
  14837. }
  14838. },
  14839. },
  14840. [
  14841. {
  14842. name: "Megamacro",
  14843. height: math.unit(14445, "feet"),
  14844. default: true
  14845. },
  14846. ]
  14847. ))
  14848. characterMakers.push(() => makeCharacter(
  14849. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14850. {
  14851. front: {
  14852. height: math.unit(5 + 6 / 12, "feet"),
  14853. weight: math.unit(125, "lb"),
  14854. name: "Front",
  14855. image: {
  14856. source: "./media/characters/roy/front.svg",
  14857. extra: 1,
  14858. bottom: 0.11
  14859. }
  14860. },
  14861. },
  14862. [
  14863. {
  14864. name: "Micro",
  14865. height: math.unit(3, "inches"),
  14866. default: true
  14867. },
  14868. {
  14869. name: "Normal",
  14870. height: math.unit(5 + 6 / 12, "feet")
  14871. },
  14872. {
  14873. name: "Lesser Macro",
  14874. height: math.unit(60, "feet")
  14875. },
  14876. {
  14877. name: "Greater Macro",
  14878. height: math.unit(120, "feet")
  14879. },
  14880. ]
  14881. ))
  14882. characterMakers.push(() => makeCharacter(
  14883. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14884. {
  14885. front: {
  14886. height: math.unit(6, "feet"),
  14887. weight: math.unit(100, "lb"),
  14888. name: "Front",
  14889. image: {
  14890. source: "./media/characters/aevsivs/front.svg",
  14891. extra: 1,
  14892. bottom: 0.03
  14893. }
  14894. },
  14895. back: {
  14896. height: math.unit(6, "feet"),
  14897. weight: math.unit(100, "lb"),
  14898. name: "Back",
  14899. image: {
  14900. source: "./media/characters/aevsivs/back.svg"
  14901. }
  14902. },
  14903. },
  14904. [
  14905. {
  14906. name: "Micro",
  14907. height: math.unit(2, "inches"),
  14908. default: true
  14909. },
  14910. {
  14911. name: "Normal",
  14912. height: math.unit(5, "feet")
  14913. },
  14914. ]
  14915. ))
  14916. characterMakers.push(() => makeCharacter(
  14917. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14918. {
  14919. front: {
  14920. height: math.unit(5 + 7 / 12, "feet"),
  14921. weight: math.unit(159, "lb"),
  14922. name: "Front",
  14923. image: {
  14924. source: "./media/characters/hildegard/front.svg",
  14925. extra: 289 / 269,
  14926. bottom: 7.63 / 297.8
  14927. }
  14928. },
  14929. back: {
  14930. height: math.unit(5 + 7 / 12, "feet"),
  14931. weight: math.unit(159, "lb"),
  14932. name: "Back",
  14933. image: {
  14934. source: "./media/characters/hildegard/back.svg",
  14935. extra: 280 / 260,
  14936. bottom: 2.3 / 282
  14937. }
  14938. },
  14939. },
  14940. [
  14941. {
  14942. name: "Normal",
  14943. height: math.unit(5 + 7 / 12, "feet"),
  14944. default: true
  14945. },
  14946. ]
  14947. ))
  14948. characterMakers.push(() => makeCharacter(
  14949. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14950. {
  14951. bernard: {
  14952. height: math.unit(2 + 7 / 12, "feet"),
  14953. weight: math.unit(66, "lb"),
  14954. name: "Bernard",
  14955. rename: true,
  14956. image: {
  14957. source: "./media/characters/bernard-wilder/bernard.svg",
  14958. extra: 192 / 128,
  14959. bottom: 0.05
  14960. }
  14961. },
  14962. wilder: {
  14963. height: math.unit(5 + 8 / 12, "feet"),
  14964. weight: math.unit(143, "lb"),
  14965. name: "Wilder",
  14966. rename: true,
  14967. image: {
  14968. source: "./media/characters/bernard-wilder/wilder.svg",
  14969. extra: 361 / 312,
  14970. bottom: 0.02
  14971. }
  14972. },
  14973. },
  14974. [
  14975. {
  14976. name: "Normal",
  14977. height: math.unit(2 + 7 / 12, "feet"),
  14978. default: true
  14979. },
  14980. ]
  14981. ))
  14982. characterMakers.push(() => makeCharacter(
  14983. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14984. {
  14985. anthro: {
  14986. height: math.unit(6 + 1 / 12, "feet"),
  14987. weight: math.unit(155, "lb"),
  14988. name: "Anthro",
  14989. image: {
  14990. source: "./media/characters/hearth/anthro.svg",
  14991. extra: 260 / 250,
  14992. bottom: 0.02
  14993. }
  14994. },
  14995. feral: {
  14996. height: math.unit(3.78, "feet"),
  14997. weight: math.unit(35, "kg"),
  14998. name: "Feral",
  14999. image: {
  15000. source: "./media/characters/hearth/feral.svg",
  15001. extra: 153 / 135,
  15002. bottom: 0.03
  15003. }
  15004. },
  15005. },
  15006. [
  15007. {
  15008. name: "Normal",
  15009. height: math.unit(6 + 1 / 12, "feet"),
  15010. default: true
  15011. },
  15012. ]
  15013. ))
  15014. characterMakers.push(() => makeCharacter(
  15015. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15016. {
  15017. front: {
  15018. height: math.unit(6, "feet"),
  15019. weight: math.unit(182, "lb"),
  15020. name: "Front",
  15021. image: {
  15022. source: "./media/characters/ingrid/front.svg",
  15023. extra: 294 / 268,
  15024. bottom: 0.027
  15025. }
  15026. },
  15027. },
  15028. [
  15029. {
  15030. name: "Normal",
  15031. height: math.unit(6, "feet"),
  15032. default: true
  15033. },
  15034. ]
  15035. ))
  15036. characterMakers.push(() => makeCharacter(
  15037. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15038. {
  15039. eevee: {
  15040. height: math.unit(2 + 10 / 12, "feet"),
  15041. weight: math.unit(86, "lb"),
  15042. name: "Malgam",
  15043. image: {
  15044. source: "./media/characters/malgam/eevee.svg",
  15045. extra: 218 / 180,
  15046. bottom: 0.2
  15047. }
  15048. },
  15049. sylveon: {
  15050. height: math.unit(4, "feet"),
  15051. weight: math.unit(101, "lb"),
  15052. name: "Future Malgam",
  15053. rename: true,
  15054. image: {
  15055. source: "./media/characters/malgam/sylveon.svg",
  15056. extra: 371 / 325,
  15057. bottom: 0.015
  15058. }
  15059. },
  15060. gigantamax: {
  15061. height: math.unit(50, "feet"),
  15062. name: "Gigantamax Malgam",
  15063. rename: true,
  15064. image: {
  15065. source: "./media/characters/malgam/gigantamax.svg"
  15066. }
  15067. },
  15068. },
  15069. [
  15070. {
  15071. name: "Normal",
  15072. height: math.unit(2 + 10 / 12, "feet"),
  15073. default: true
  15074. },
  15075. ]
  15076. ))
  15077. characterMakers.push(() => makeCharacter(
  15078. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15079. {
  15080. front: {
  15081. height: math.unit(5 + 11 / 12, "feet"),
  15082. weight: math.unit(188, "lb"),
  15083. name: "Front",
  15084. image: {
  15085. source: "./media/characters/fleur/front.svg",
  15086. extra: 309 / 283,
  15087. bottom: 0.007
  15088. }
  15089. },
  15090. },
  15091. [
  15092. {
  15093. name: "Normal",
  15094. height: math.unit(5 + 11 / 12, "feet"),
  15095. default: true
  15096. },
  15097. ]
  15098. ))
  15099. characterMakers.push(() => makeCharacter(
  15100. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15101. {
  15102. front: {
  15103. height: math.unit(5 + 4 / 12, "feet"),
  15104. weight: math.unit(122, "lb"),
  15105. name: "Front",
  15106. image: {
  15107. source: "./media/characters/jude/front.svg",
  15108. extra: 288 / 273,
  15109. bottom: 0.03
  15110. }
  15111. },
  15112. },
  15113. [
  15114. {
  15115. name: "Normal",
  15116. height: math.unit(5 + 4 / 12, "feet"),
  15117. default: true
  15118. },
  15119. ]
  15120. ))
  15121. characterMakers.push(() => makeCharacter(
  15122. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15123. {
  15124. front: {
  15125. height: math.unit(5 + 11 / 12, "feet"),
  15126. weight: math.unit(190, "lb"),
  15127. name: "Front",
  15128. image: {
  15129. source: "./media/characters/seara/front.svg",
  15130. extra: 1,
  15131. bottom: 0.05
  15132. }
  15133. },
  15134. },
  15135. [
  15136. {
  15137. name: "Normal",
  15138. height: math.unit(5 + 11 / 12, "feet"),
  15139. default: true
  15140. },
  15141. ]
  15142. ))
  15143. characterMakers.push(() => makeCharacter(
  15144. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15145. {
  15146. front: {
  15147. height: math.unit(16 + 5 / 12, "feet"),
  15148. weight: math.unit(524, "lb"),
  15149. name: "Front",
  15150. image: {
  15151. source: "./media/characters/caspian/front.svg",
  15152. extra: 1,
  15153. bottom: 0.04
  15154. }
  15155. },
  15156. },
  15157. [
  15158. {
  15159. name: "Normal",
  15160. height: math.unit(16 + 5 / 12, "feet"),
  15161. default: true
  15162. },
  15163. ]
  15164. ))
  15165. characterMakers.push(() => makeCharacter(
  15166. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15167. {
  15168. front: {
  15169. height: math.unit(5 + 7 / 12, "feet"),
  15170. weight: math.unit(170, "lb"),
  15171. name: "Front",
  15172. image: {
  15173. source: "./media/characters/mika/front.svg",
  15174. extra: 1,
  15175. bottom: 0.016
  15176. }
  15177. },
  15178. },
  15179. [
  15180. {
  15181. name: "Normal",
  15182. height: math.unit(5 + 7 / 12, "feet"),
  15183. default: true
  15184. },
  15185. ]
  15186. ))
  15187. characterMakers.push(() => makeCharacter(
  15188. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15189. {
  15190. front: {
  15191. height: math.unit(6 + 2 / 12, "feet"),
  15192. weight: math.unit(268, "lb"),
  15193. name: "Front",
  15194. image: {
  15195. source: "./media/characters/sol/front.svg",
  15196. extra: 247 / 231,
  15197. bottom: 0.05
  15198. }
  15199. },
  15200. },
  15201. [
  15202. {
  15203. name: "Normal",
  15204. height: math.unit(6 + 2 / 12, "feet"),
  15205. default: true
  15206. },
  15207. ]
  15208. ))
  15209. characterMakers.push(() => makeCharacter(
  15210. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15211. {
  15212. buizel: {
  15213. height: math.unit(2 + 5 / 12, "feet"),
  15214. weight: math.unit(87, "lb"),
  15215. name: "Buizel",
  15216. image: {
  15217. source: "./media/characters/umiko/buizel.svg",
  15218. extra: 172 / 157,
  15219. bottom: 0.01
  15220. }
  15221. },
  15222. floatzel: {
  15223. height: math.unit(5 + 9 / 12, "feet"),
  15224. weight: math.unit(250, "lb"),
  15225. name: "Floatzel",
  15226. image: {
  15227. source: "./media/characters/umiko/floatzel.svg",
  15228. extra: 262 / 248
  15229. }
  15230. },
  15231. },
  15232. [
  15233. {
  15234. name: "Normal",
  15235. height: math.unit(2 + 5 / 12, "feet"),
  15236. default: true
  15237. },
  15238. ]
  15239. ))
  15240. characterMakers.push(() => makeCharacter(
  15241. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15242. {
  15243. front: {
  15244. height: math.unit(6 + 2 / 12, "feet"),
  15245. weight: math.unit(146, "lb"),
  15246. name: "Front",
  15247. image: {
  15248. source: "./media/characters/iliac/front.svg",
  15249. extra: 389 / 365,
  15250. bottom: 0.035
  15251. }
  15252. },
  15253. },
  15254. [
  15255. {
  15256. name: "Normal",
  15257. height: math.unit(6 + 2 / 12, "feet"),
  15258. default: true
  15259. },
  15260. ]
  15261. ))
  15262. characterMakers.push(() => makeCharacter(
  15263. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15264. {
  15265. front: {
  15266. height: math.unit(6, "feet"),
  15267. weight: math.unit(170, "lb"),
  15268. name: "Front",
  15269. image: {
  15270. source: "./media/characters/topaz/front.svg",
  15271. extra: 317 / 303,
  15272. bottom: 0.055
  15273. }
  15274. },
  15275. },
  15276. [
  15277. {
  15278. name: "Normal",
  15279. height: math.unit(6, "feet"),
  15280. default: true
  15281. },
  15282. ]
  15283. ))
  15284. characterMakers.push(() => makeCharacter(
  15285. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15286. {
  15287. front: {
  15288. height: math.unit(5 + 11 / 12, "feet"),
  15289. weight: math.unit(144, "lb"),
  15290. name: "Front",
  15291. image: {
  15292. source: "./media/characters/gabriel/front.svg",
  15293. extra: 285 / 262,
  15294. bottom: 0.004
  15295. }
  15296. },
  15297. },
  15298. [
  15299. {
  15300. name: "Normal",
  15301. height: math.unit(5 + 11 / 12, "feet"),
  15302. default: true
  15303. },
  15304. ]
  15305. ))
  15306. characterMakers.push(() => makeCharacter(
  15307. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15308. {
  15309. side: {
  15310. height: math.unit(6 + 5 / 12, "feet"),
  15311. weight: math.unit(300, "lb"),
  15312. name: "Side",
  15313. image: {
  15314. source: "./media/characters/tempest-suicune/side.svg",
  15315. extra: 195 / 154,
  15316. bottom: 0.04
  15317. }
  15318. },
  15319. },
  15320. [
  15321. {
  15322. name: "Normal",
  15323. height: math.unit(6 + 5 / 12, "feet"),
  15324. default: true
  15325. },
  15326. ]
  15327. ))
  15328. characterMakers.push(() => makeCharacter(
  15329. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15330. {
  15331. front: {
  15332. height: math.unit(7 + 2 / 12, "feet"),
  15333. weight: math.unit(322, "lb"),
  15334. name: "Front",
  15335. image: {
  15336. source: "./media/characters/vulcan/front.svg",
  15337. extra: 154 / 147,
  15338. bottom: 0.04
  15339. }
  15340. },
  15341. },
  15342. [
  15343. {
  15344. name: "Normal",
  15345. height: math.unit(7 + 2 / 12, "feet"),
  15346. default: true
  15347. },
  15348. ]
  15349. ))
  15350. characterMakers.push(() => makeCharacter(
  15351. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15352. {
  15353. front: {
  15354. height: math.unit(5 + 10 / 12, "feet"),
  15355. weight: math.unit(264, "lb"),
  15356. name: "Front",
  15357. image: {
  15358. source: "./media/characters/gault/front.svg",
  15359. extra: 161 / 140,
  15360. bottom: 0.028
  15361. }
  15362. },
  15363. },
  15364. [
  15365. {
  15366. name: "Normal",
  15367. height: math.unit(5 + 10 / 12, "feet"),
  15368. default: true
  15369. },
  15370. ]
  15371. ))
  15372. characterMakers.push(() => makeCharacter(
  15373. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15374. {
  15375. front: {
  15376. height: math.unit(6, "feet"),
  15377. weight: math.unit(150, "lb"),
  15378. name: "Front",
  15379. image: {
  15380. source: "./media/characters/shard/front.svg",
  15381. extra: 273 / 238,
  15382. bottom: 0.02
  15383. }
  15384. },
  15385. },
  15386. [
  15387. {
  15388. name: "Normal",
  15389. height: math.unit(3 + 6 / 12, "feet"),
  15390. default: true
  15391. },
  15392. ]
  15393. ))
  15394. characterMakers.push(() => makeCharacter(
  15395. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15396. {
  15397. front: {
  15398. height: math.unit(5 + 11 / 12, "feet"),
  15399. weight: math.unit(146, "lb"),
  15400. name: "Front",
  15401. image: {
  15402. source: "./media/characters/ashe/front.svg",
  15403. extra: 400 / 373,
  15404. bottom: 0.01
  15405. }
  15406. },
  15407. },
  15408. [
  15409. {
  15410. name: "Normal",
  15411. height: math.unit(5 + 11 / 12, "feet"),
  15412. default: true
  15413. },
  15414. ]
  15415. ))
  15416. characterMakers.push(() => makeCharacter(
  15417. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15418. {
  15419. front: {
  15420. height: math.unit(5 + 5 / 12, "feet"),
  15421. weight: math.unit(135, "lb"),
  15422. name: "Front",
  15423. image: {
  15424. source: "./media/characters/beatrix/front.svg",
  15425. extra: 392 / 379,
  15426. bottom: 0.01
  15427. }
  15428. },
  15429. },
  15430. [
  15431. {
  15432. name: "Normal",
  15433. height: math.unit(6, "feet"),
  15434. default: true
  15435. },
  15436. ]
  15437. ))
  15438. characterMakers.push(() => makeCharacter(
  15439. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15440. {
  15441. front: {
  15442. height: math.unit(6, "feet"),
  15443. weight: math.unit(150, "lb"),
  15444. name: "Front",
  15445. image: {
  15446. source: "./media/characters/ignatius/front.svg",
  15447. extra: 245 / 222,
  15448. bottom: 0.01
  15449. }
  15450. },
  15451. },
  15452. [
  15453. {
  15454. name: "Normal",
  15455. height: math.unit(5 + 5 / 12, "feet"),
  15456. default: true
  15457. },
  15458. ]
  15459. ))
  15460. characterMakers.push(() => makeCharacter(
  15461. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15462. {
  15463. front: {
  15464. height: math.unit(6 + 2 / 12, "feet"),
  15465. weight: math.unit(138, "lb"),
  15466. name: "Front",
  15467. image: {
  15468. source: "./media/characters/mei-li/front.svg",
  15469. extra: 237 / 229,
  15470. bottom: 0.03
  15471. }
  15472. },
  15473. },
  15474. [
  15475. {
  15476. name: "Normal",
  15477. height: math.unit(6 + 2 / 12, "feet"),
  15478. default: true
  15479. },
  15480. ]
  15481. ))
  15482. characterMakers.push(() => makeCharacter(
  15483. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15484. {
  15485. front: {
  15486. height: math.unit(2 + 4 / 12, "feet"),
  15487. weight: math.unit(62, "lb"),
  15488. name: "Front",
  15489. image: {
  15490. source: "./media/characters/puru/front.svg",
  15491. extra: 206 / 149,
  15492. bottom: 0.06
  15493. }
  15494. },
  15495. },
  15496. [
  15497. {
  15498. name: "Normal",
  15499. height: math.unit(2 + 4 / 12, "feet"),
  15500. default: true
  15501. },
  15502. ]
  15503. ))
  15504. characterMakers.push(() => makeCharacter(
  15505. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15506. {
  15507. anthro: {
  15508. height: math.unit(5 + 8/12, "feet"),
  15509. weight: math.unit(200, "lb"),
  15510. energyNeed: math.unit(2000, "kcal"),
  15511. name: "Anthro",
  15512. image: {
  15513. source: "./media/characters/kee/anthro.svg",
  15514. extra: 3251/3184,
  15515. bottom: 250/3501
  15516. }
  15517. },
  15518. taur: {
  15519. height: math.unit(11, "feet"),
  15520. weight: math.unit(500, "lb"),
  15521. energyNeed: math.unit(5000, "kcal"),
  15522. name: "Taur",
  15523. image: {
  15524. source: "./media/characters/kee/taur.svg",
  15525. extra: 1362/1320,
  15526. bottom: 83/1445
  15527. }
  15528. },
  15529. },
  15530. [
  15531. {
  15532. name: "Normal",
  15533. height: math.unit(5 + 8/12, "feet"),
  15534. default: true
  15535. },
  15536. {
  15537. name: "Macro",
  15538. height: math.unit(35, "feet")
  15539. },
  15540. ]
  15541. ))
  15542. characterMakers.push(() => makeCharacter(
  15543. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15544. {
  15545. anthro: {
  15546. height: math.unit(7, "feet"),
  15547. weight: math.unit(190, "lb"),
  15548. name: "Anthro",
  15549. image: {
  15550. source: "./media/characters/cobalt-dracha/anthro.svg",
  15551. extra: 231 / 225,
  15552. bottom: 0.04
  15553. }
  15554. },
  15555. feral: {
  15556. height: math.unit(9 + 7 / 12, "feet"),
  15557. weight: math.unit(294, "lb"),
  15558. name: "Feral",
  15559. image: {
  15560. source: "./media/characters/cobalt-dracha/feral.svg",
  15561. extra: 692 / 633,
  15562. bottom: 0.05
  15563. }
  15564. },
  15565. },
  15566. [
  15567. {
  15568. name: "Normal",
  15569. height: math.unit(7, "feet"),
  15570. default: true
  15571. },
  15572. ]
  15573. ))
  15574. characterMakers.push(() => makeCharacter(
  15575. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15576. {
  15577. fallen: {
  15578. height: math.unit(11 + 8 / 12, "feet"),
  15579. weight: math.unit(485, "lb"),
  15580. name: "Java (Fallen)",
  15581. rename: true,
  15582. image: {
  15583. source: "./media/characters/java/fallen.svg",
  15584. extra: 226 / 208,
  15585. bottom: 0.005
  15586. }
  15587. },
  15588. godkin: {
  15589. height: math.unit(10 + 6 / 12, "feet"),
  15590. weight: math.unit(328, "lb"),
  15591. name: "Java (Godkin)",
  15592. rename: true,
  15593. image: {
  15594. source: "./media/characters/java/godkin.svg",
  15595. extra: 270 / 262,
  15596. bottom: 0.02
  15597. }
  15598. },
  15599. },
  15600. [
  15601. {
  15602. name: "Normal",
  15603. height: math.unit(11 + 8 / 12, "feet"),
  15604. default: true
  15605. },
  15606. ]
  15607. ))
  15608. characterMakers.push(() => makeCharacter(
  15609. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15610. {
  15611. front: {
  15612. height: math.unit(7 + 8 / 12, "feet"),
  15613. weight: math.unit(320, "lb"),
  15614. name: "Front",
  15615. image: {
  15616. source: "./media/characters/skoll/front.svg",
  15617. extra: 232 / 220,
  15618. bottom: 0.02
  15619. }
  15620. },
  15621. },
  15622. [
  15623. {
  15624. name: "Normal",
  15625. height: math.unit(7 + 8 / 12, "feet"),
  15626. default: true
  15627. },
  15628. ]
  15629. ))
  15630. characterMakers.push(() => makeCharacter(
  15631. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15632. {
  15633. front: {
  15634. height: math.unit(5 + 9 / 12, "feet"),
  15635. weight: math.unit(170, "lb"),
  15636. name: "Front",
  15637. image: {
  15638. source: "./media/characters/purna/front.svg",
  15639. extra: 239 / 229,
  15640. bottom: 0.01
  15641. }
  15642. },
  15643. },
  15644. [
  15645. {
  15646. name: "Normal",
  15647. height: math.unit(5 + 9 / 12, "feet"),
  15648. default: true
  15649. },
  15650. ]
  15651. ))
  15652. characterMakers.push(() => makeCharacter(
  15653. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15654. {
  15655. front: {
  15656. height: math.unit(5 + 9 / 12, "feet"),
  15657. weight: math.unit(142, "lb"),
  15658. name: "Front",
  15659. image: {
  15660. source: "./media/characters/kuva/front.svg",
  15661. extra: 281 / 271,
  15662. bottom: 0.006
  15663. }
  15664. },
  15665. },
  15666. [
  15667. {
  15668. name: "Normal",
  15669. height: math.unit(5 + 9 / 12, "feet"),
  15670. default: true
  15671. },
  15672. ]
  15673. ))
  15674. characterMakers.push(() => makeCharacter(
  15675. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15676. {
  15677. anthro: {
  15678. height: math.unit(9 + 2 / 12, "feet"),
  15679. weight: math.unit(270, "lb"),
  15680. name: "Anthro",
  15681. image: {
  15682. source: "./media/characters/embra/anthro.svg",
  15683. extra: 200 / 187,
  15684. bottom: 0.02
  15685. }
  15686. },
  15687. feral: {
  15688. height: math.unit(18 + 8 / 12, "feet"),
  15689. weight: math.unit(576, "lb"),
  15690. name: "Feral",
  15691. image: {
  15692. source: "./media/characters/embra/feral.svg",
  15693. extra: 152 / 137,
  15694. bottom: 0.037
  15695. }
  15696. },
  15697. },
  15698. [
  15699. {
  15700. name: "Normal",
  15701. height: math.unit(9 + 2 / 12, "feet"),
  15702. default: true
  15703. },
  15704. ]
  15705. ))
  15706. characterMakers.push(() => makeCharacter(
  15707. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15708. {
  15709. anthro: {
  15710. height: math.unit(10 + 9 / 12, "feet"),
  15711. weight: math.unit(224, "lb"),
  15712. name: "Anthro",
  15713. image: {
  15714. source: "./media/characters/grottos/anthro.svg",
  15715. extra: 350 / 332,
  15716. bottom: 0.045
  15717. }
  15718. },
  15719. feral: {
  15720. height: math.unit(20 + 7 / 12, "feet"),
  15721. weight: math.unit(629, "lb"),
  15722. name: "Feral",
  15723. image: {
  15724. source: "./media/characters/grottos/feral.svg",
  15725. extra: 207 / 190,
  15726. bottom: 0.05
  15727. }
  15728. },
  15729. },
  15730. [
  15731. {
  15732. name: "Normal",
  15733. height: math.unit(10 + 9 / 12, "feet"),
  15734. default: true
  15735. },
  15736. ]
  15737. ))
  15738. characterMakers.push(() => makeCharacter(
  15739. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15740. {
  15741. anthro: {
  15742. height: math.unit(9 + 6 / 12, "feet"),
  15743. weight: math.unit(298, "lb"),
  15744. name: "Anthro",
  15745. image: {
  15746. source: "./media/characters/frifna/anthro.svg",
  15747. extra: 282 / 269,
  15748. bottom: 0.015
  15749. }
  15750. },
  15751. feral: {
  15752. height: math.unit(16 + 2 / 12, "feet"),
  15753. weight: math.unit(624, "lb"),
  15754. name: "Feral",
  15755. image: {
  15756. source: "./media/characters/frifna/feral.svg"
  15757. }
  15758. },
  15759. },
  15760. [
  15761. {
  15762. name: "Normal",
  15763. height: math.unit(9 + 6 / 12, "feet"),
  15764. default: true
  15765. },
  15766. ]
  15767. ))
  15768. characterMakers.push(() => makeCharacter(
  15769. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15770. {
  15771. front: {
  15772. height: math.unit(6 + 2 / 12, "feet"),
  15773. weight: math.unit(168, "lb"),
  15774. name: "Front",
  15775. image: {
  15776. source: "./media/characters/elise/front.svg",
  15777. extra: 276 / 271
  15778. }
  15779. },
  15780. },
  15781. [
  15782. {
  15783. name: "Normal",
  15784. height: math.unit(6 + 2 / 12, "feet"),
  15785. default: true
  15786. },
  15787. ]
  15788. ))
  15789. characterMakers.push(() => makeCharacter(
  15790. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15791. {
  15792. front: {
  15793. height: math.unit(5 + 10 / 12, "feet"),
  15794. weight: math.unit(210, "lb"),
  15795. name: "Front",
  15796. image: {
  15797. source: "./media/characters/glade/front.svg",
  15798. extra: 258 / 247,
  15799. bottom: 0.008
  15800. }
  15801. },
  15802. },
  15803. [
  15804. {
  15805. name: "Normal",
  15806. height: math.unit(5 + 10 / 12, "feet"),
  15807. default: true
  15808. },
  15809. ]
  15810. ))
  15811. characterMakers.push(() => makeCharacter(
  15812. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15813. {
  15814. front: {
  15815. height: math.unit(5 + 10 / 12, "feet"),
  15816. weight: math.unit(129, "lb"),
  15817. name: "Front",
  15818. image: {
  15819. source: "./media/characters/rina/front.svg",
  15820. extra: 266 / 255,
  15821. bottom: 0.005
  15822. }
  15823. },
  15824. },
  15825. [
  15826. {
  15827. name: "Normal",
  15828. height: math.unit(5 + 10 / 12, "feet"),
  15829. default: true
  15830. },
  15831. ]
  15832. ))
  15833. characterMakers.push(() => makeCharacter(
  15834. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15835. {
  15836. front: {
  15837. height: math.unit(6 + 1 / 12, "feet"),
  15838. weight: math.unit(192, "lb"),
  15839. name: "Front",
  15840. image: {
  15841. source: "./media/characters/veronica/front.svg",
  15842. extra: 319 / 309,
  15843. bottom: 0.005
  15844. }
  15845. },
  15846. },
  15847. [
  15848. {
  15849. name: "Normal",
  15850. height: math.unit(6 + 1 / 12, "feet"),
  15851. default: true
  15852. },
  15853. ]
  15854. ))
  15855. characterMakers.push(() => makeCharacter(
  15856. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15857. {
  15858. front: {
  15859. height: math.unit(9 + 3 / 12, "feet"),
  15860. weight: math.unit(1100, "lb"),
  15861. name: "Front",
  15862. image: {
  15863. source: "./media/characters/braxton/front.svg",
  15864. extra: 1057 / 984,
  15865. bottom: 0.05
  15866. }
  15867. },
  15868. },
  15869. [
  15870. {
  15871. name: "Normal",
  15872. height: math.unit(9 + 3 / 12, "feet")
  15873. },
  15874. {
  15875. name: "Giant",
  15876. height: math.unit(300, "feet"),
  15877. default: true
  15878. },
  15879. {
  15880. name: "Macro",
  15881. height: math.unit(700, "feet")
  15882. },
  15883. {
  15884. name: "Megamacro",
  15885. height: math.unit(6000, "feet")
  15886. },
  15887. ]
  15888. ))
  15889. characterMakers.push(() => makeCharacter(
  15890. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15891. {
  15892. front: {
  15893. height: math.unit(6 + 7 / 12, "feet"),
  15894. weight: math.unit(150, "lb"),
  15895. name: "Front",
  15896. image: {
  15897. source: "./media/characters/blue-feyonics/front.svg",
  15898. extra: 1403 / 1306,
  15899. bottom: 0.047
  15900. }
  15901. },
  15902. },
  15903. [
  15904. {
  15905. name: "Normal",
  15906. height: math.unit(6 + 7 / 12, "feet"),
  15907. default: true
  15908. },
  15909. ]
  15910. ))
  15911. characterMakers.push(() => makeCharacter(
  15912. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15913. {
  15914. front: {
  15915. height: math.unit(1.8, "meters"),
  15916. weight: math.unit(60, "kg"),
  15917. name: "Front",
  15918. image: {
  15919. source: "./media/characters/maxwell/front.svg",
  15920. extra: 2060 / 1873
  15921. }
  15922. },
  15923. },
  15924. [
  15925. {
  15926. name: "Micro",
  15927. height: math.unit(1, "mm")
  15928. },
  15929. {
  15930. name: "Normal",
  15931. height: math.unit(1.8, "meter"),
  15932. default: true
  15933. },
  15934. {
  15935. name: "Macro",
  15936. height: math.unit(30, "meters")
  15937. },
  15938. {
  15939. name: "Megamacro",
  15940. height: math.unit(10, "km")
  15941. },
  15942. ]
  15943. ))
  15944. characterMakers.push(() => makeCharacter(
  15945. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15946. {
  15947. front: {
  15948. height: math.unit(6, "feet"),
  15949. weight: math.unit(150, "lb"),
  15950. name: "Front",
  15951. image: {
  15952. source: "./media/characters/jack/front.svg",
  15953. extra: 1754 / 1640,
  15954. bottom: 0.01
  15955. }
  15956. },
  15957. },
  15958. [
  15959. {
  15960. name: "Normal",
  15961. height: math.unit(80000, "feet"),
  15962. default: true
  15963. },
  15964. {
  15965. name: "Max size",
  15966. height: math.unit(10, "lightyears")
  15967. },
  15968. ]
  15969. ))
  15970. characterMakers.push(() => makeCharacter(
  15971. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15972. {
  15973. urban: {
  15974. height: math.unit(5, "feet"),
  15975. weight: math.unit(240, "lb"),
  15976. name: "Urban",
  15977. image: {
  15978. source: "./media/characters/cafat/urban.svg",
  15979. extra: 1223/1126,
  15980. bottom: 205/1428
  15981. }
  15982. },
  15983. summer: {
  15984. height: math.unit(5, "feet"),
  15985. weight: math.unit(240, "lb"),
  15986. name: "Summer",
  15987. image: {
  15988. source: "./media/characters/cafat/summer.svg",
  15989. extra: 1223/1126,
  15990. bottom: 205/1428
  15991. }
  15992. },
  15993. winter: {
  15994. height: math.unit(5, "feet"),
  15995. weight: math.unit(240, "lb"),
  15996. name: "Winter",
  15997. image: {
  15998. source: "./media/characters/cafat/winter.svg",
  15999. extra: 1223/1126,
  16000. bottom: 205/1428
  16001. }
  16002. },
  16003. lingerie: {
  16004. height: math.unit(5, "feet"),
  16005. weight: math.unit(240, "lb"),
  16006. name: "Lingerie",
  16007. image: {
  16008. source: "./media/characters/cafat/lingerie.svg",
  16009. extra: 1223/1126,
  16010. bottom: 205/1428
  16011. }
  16012. },
  16013. upright: {
  16014. height: math.unit(6.3, "feet"),
  16015. weight: math.unit(240, "lb"),
  16016. name: "Upright",
  16017. image: {
  16018. source: "./media/characters/cafat/upright.svg",
  16019. bottom: 0.01
  16020. }
  16021. },
  16022. uprightFull: {
  16023. height: math.unit(6.3, "feet"),
  16024. weight: math.unit(240, "lb"),
  16025. name: "Upright (Full)",
  16026. image: {
  16027. source: "./media/characters/cafat/upright-full.svg",
  16028. bottom: 0.01
  16029. }
  16030. },
  16031. },
  16032. [
  16033. {
  16034. name: "Small",
  16035. height: math.unit(5, "feet"),
  16036. default: true
  16037. },
  16038. {
  16039. name: "Large",
  16040. height: math.unit(13, "feet")
  16041. },
  16042. ]
  16043. ))
  16044. characterMakers.push(() => makeCharacter(
  16045. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16046. {
  16047. front: {
  16048. height: math.unit(6, "feet"),
  16049. weight: math.unit(150, "lb"),
  16050. name: "Front",
  16051. image: {
  16052. source: "./media/characters/verin-raharra/front.svg",
  16053. extra: 5019 / 4835,
  16054. bottom: 0.023
  16055. }
  16056. },
  16057. },
  16058. [
  16059. {
  16060. name: "Normal",
  16061. height: math.unit(7 + 5 / 12, "feet"),
  16062. default: true
  16063. },
  16064. {
  16065. name: "Upsized",
  16066. height: math.unit(20, "feet")
  16067. },
  16068. ]
  16069. ))
  16070. characterMakers.push(() => makeCharacter(
  16071. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16072. {
  16073. front: {
  16074. height: math.unit(7, "feet"),
  16075. weight: math.unit(230, "lb"),
  16076. name: "Front",
  16077. image: {
  16078. source: "./media/characters/nakata/front.svg",
  16079. extra: 1.005,
  16080. bottom: 0.01
  16081. }
  16082. },
  16083. },
  16084. [
  16085. {
  16086. name: "Normal",
  16087. height: math.unit(7, "feet"),
  16088. default: true
  16089. },
  16090. {
  16091. name: "Big",
  16092. height: math.unit(14, "feet")
  16093. },
  16094. {
  16095. name: "Macro",
  16096. height: math.unit(400, "feet")
  16097. },
  16098. ]
  16099. ))
  16100. characterMakers.push(() => makeCharacter(
  16101. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16102. {
  16103. front: {
  16104. height: math.unit(4.91, "feet"),
  16105. weight: math.unit(100, "lb"),
  16106. name: "Front",
  16107. image: {
  16108. source: "./media/characters/lily/front.svg",
  16109. extra: 1585 / 1415,
  16110. bottom: 0.02
  16111. }
  16112. },
  16113. },
  16114. [
  16115. {
  16116. name: "Normal",
  16117. height: math.unit(4.91, "feet"),
  16118. default: true
  16119. },
  16120. ]
  16121. ))
  16122. characterMakers.push(() => makeCharacter(
  16123. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16124. {
  16125. laying: {
  16126. height: math.unit(4 + 4 / 12, "feet"),
  16127. weight: math.unit(600, "lb"),
  16128. name: "Laying",
  16129. image: {
  16130. source: "./media/characters/sheila/laying.svg",
  16131. extra: 1333 / 1265,
  16132. bottom: 0.16
  16133. }
  16134. },
  16135. },
  16136. [
  16137. {
  16138. name: "Normal",
  16139. height: math.unit(4 + 4 / 12, "feet"),
  16140. default: true
  16141. },
  16142. ]
  16143. ))
  16144. characterMakers.push(() => makeCharacter(
  16145. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16146. {
  16147. front: {
  16148. height: math.unit(6, "feet"),
  16149. weight: math.unit(190, "lb"),
  16150. name: "Front",
  16151. image: {
  16152. source: "./media/characters/sax/front.svg",
  16153. extra: 1187 / 973,
  16154. bottom: 0.042
  16155. }
  16156. },
  16157. },
  16158. [
  16159. {
  16160. name: "Micro",
  16161. height: math.unit(4, "inches"),
  16162. default: true
  16163. },
  16164. ]
  16165. ))
  16166. characterMakers.push(() => makeCharacter(
  16167. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16168. {
  16169. front: {
  16170. height: math.unit(6, "feet"),
  16171. weight: math.unit(150, "lb"),
  16172. name: "Front",
  16173. image: {
  16174. source: "./media/characters/pandora/front.svg",
  16175. extra: 2720 / 2556,
  16176. bottom: 0.015
  16177. }
  16178. },
  16179. back: {
  16180. height: math.unit(6, "feet"),
  16181. weight: math.unit(150, "lb"),
  16182. name: "Back",
  16183. image: {
  16184. source: "./media/characters/pandora/back.svg",
  16185. extra: 2720 / 2556,
  16186. bottom: 0.01
  16187. }
  16188. },
  16189. beans: {
  16190. height: math.unit(6 / 8, "feet"),
  16191. name: "Beans",
  16192. image: {
  16193. source: "./media/characters/pandora/beans.svg"
  16194. }
  16195. },
  16196. collar: {
  16197. height: math.unit(0.31, "feet"),
  16198. name: "Collar",
  16199. image: {
  16200. source: "./media/characters/pandora/collar.svg"
  16201. }
  16202. },
  16203. skirt: {
  16204. height: math.unit(6, "feet"),
  16205. weight: math.unit(150, "lb"),
  16206. name: "Skirt",
  16207. image: {
  16208. source: "./media/characters/pandora/skirt.svg",
  16209. extra: 1622 / 1525,
  16210. bottom: 0.015
  16211. }
  16212. },
  16213. hoodie: {
  16214. height: math.unit(6, "feet"),
  16215. weight: math.unit(150, "lb"),
  16216. name: "Hoodie",
  16217. image: {
  16218. source: "./media/characters/pandora/hoodie.svg",
  16219. extra: 1622 / 1525,
  16220. bottom: 0.015
  16221. }
  16222. },
  16223. casual: {
  16224. height: math.unit(6, "feet"),
  16225. weight: math.unit(150, "lb"),
  16226. name: "Casual",
  16227. image: {
  16228. source: "./media/characters/pandora/casual.svg",
  16229. extra: 1622 / 1525,
  16230. bottom: 0.015
  16231. }
  16232. },
  16233. },
  16234. [
  16235. {
  16236. name: "Normal",
  16237. height: math.unit(6, "feet")
  16238. },
  16239. {
  16240. name: "Big Steppy",
  16241. height: math.unit(1, "km"),
  16242. default: true
  16243. },
  16244. {
  16245. name: "Galactic Steppy",
  16246. height: math.unit(2, "gigameters")
  16247. },
  16248. ]
  16249. ))
  16250. characterMakers.push(() => makeCharacter(
  16251. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16252. {
  16253. side: {
  16254. height: math.unit(10, "feet"),
  16255. weight: math.unit(800, "kg"),
  16256. name: "Side",
  16257. image: {
  16258. source: "./media/characters/venio-darcony/side.svg",
  16259. extra: 1373 / 1003,
  16260. bottom: 0.037
  16261. }
  16262. },
  16263. front: {
  16264. height: math.unit(19, "feet"),
  16265. weight: math.unit(800, "kg"),
  16266. name: "Front",
  16267. image: {
  16268. source: "./media/characters/venio-darcony/front.svg"
  16269. }
  16270. },
  16271. back: {
  16272. height: math.unit(19, "feet"),
  16273. weight: math.unit(800, "kg"),
  16274. name: "Back",
  16275. image: {
  16276. source: "./media/characters/venio-darcony/back.svg"
  16277. }
  16278. },
  16279. sideNsfw: {
  16280. height: math.unit(10, "feet"),
  16281. weight: math.unit(800, "kg"),
  16282. name: "Side (NSFW)",
  16283. image: {
  16284. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16285. extra: 1373 / 1003,
  16286. bottom: 0.037
  16287. }
  16288. },
  16289. frontNsfw: {
  16290. height: math.unit(19, "feet"),
  16291. weight: math.unit(800, "kg"),
  16292. name: "Front (NSFW)",
  16293. image: {
  16294. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16295. }
  16296. },
  16297. backNsfw: {
  16298. height: math.unit(19, "feet"),
  16299. weight: math.unit(800, "kg"),
  16300. name: "Back (NSFW)",
  16301. image: {
  16302. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16303. }
  16304. },
  16305. sideArmored: {
  16306. height: math.unit(10, "feet"),
  16307. weight: math.unit(800, "kg"),
  16308. name: "Side (Armored)",
  16309. image: {
  16310. source: "./media/characters/venio-darcony/side-armored.svg",
  16311. extra: 1373 / 1003,
  16312. bottom: 0.037
  16313. }
  16314. },
  16315. frontArmored: {
  16316. height: math.unit(19, "feet"),
  16317. weight: math.unit(900, "kg"),
  16318. name: "Front (Armored)",
  16319. image: {
  16320. source: "./media/characters/venio-darcony/front-armored.svg"
  16321. }
  16322. },
  16323. backArmored: {
  16324. height: math.unit(19, "feet"),
  16325. weight: math.unit(900, "kg"),
  16326. name: "Back (Armored)",
  16327. image: {
  16328. source: "./media/characters/venio-darcony/back-armored.svg"
  16329. }
  16330. },
  16331. sword: {
  16332. height: math.unit(10, "feet"),
  16333. weight: math.unit(50, "lb"),
  16334. name: "Sword",
  16335. image: {
  16336. source: "./media/characters/venio-darcony/sword.svg"
  16337. }
  16338. },
  16339. },
  16340. [
  16341. {
  16342. name: "Normal",
  16343. height: math.unit(10, "feet")
  16344. },
  16345. {
  16346. name: "Macro",
  16347. height: math.unit(130, "feet"),
  16348. default: true
  16349. },
  16350. {
  16351. name: "Macro+",
  16352. height: math.unit(240, "feet")
  16353. },
  16354. ]
  16355. ))
  16356. characterMakers.push(() => makeCharacter(
  16357. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16358. {
  16359. front: {
  16360. height: math.unit(6, "feet"),
  16361. weight: math.unit(150, "lb"),
  16362. name: "Front",
  16363. image: {
  16364. source: "./media/characters/veski/front.svg",
  16365. extra: 1299 / 1225,
  16366. bottom: 0.04
  16367. }
  16368. },
  16369. back: {
  16370. height: math.unit(6, "feet"),
  16371. weight: math.unit(150, "lb"),
  16372. name: "Back",
  16373. image: {
  16374. source: "./media/characters/veski/back.svg",
  16375. extra: 1299 / 1225,
  16376. bottom: 0.008
  16377. }
  16378. },
  16379. maw: {
  16380. height: math.unit(1.5 * 1.21, "feet"),
  16381. name: "Maw",
  16382. image: {
  16383. source: "./media/characters/veski/maw.svg"
  16384. }
  16385. },
  16386. },
  16387. [
  16388. {
  16389. name: "Macro",
  16390. height: math.unit(2, "km"),
  16391. default: true
  16392. },
  16393. ]
  16394. ))
  16395. characterMakers.push(() => makeCharacter(
  16396. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16397. {
  16398. front: {
  16399. height: math.unit(5 + 7 / 12, "feet"),
  16400. name: "Front",
  16401. image: {
  16402. source: "./media/characters/isabelle/front.svg",
  16403. extra: 2130 / 1976,
  16404. bottom: 0.05
  16405. }
  16406. },
  16407. },
  16408. [
  16409. {
  16410. name: "Supermicro",
  16411. height: math.unit(10, "micrometers")
  16412. },
  16413. {
  16414. name: "Micro",
  16415. height: math.unit(1, "inch")
  16416. },
  16417. {
  16418. name: "Tiny",
  16419. height: math.unit(5, "inches")
  16420. },
  16421. {
  16422. name: "Standard",
  16423. height: math.unit(5 + 7 / 12, "inches")
  16424. },
  16425. {
  16426. name: "Macro",
  16427. height: math.unit(80, "meters"),
  16428. default: true
  16429. },
  16430. {
  16431. name: "Megamacro",
  16432. height: math.unit(250, "meters")
  16433. },
  16434. {
  16435. name: "Gigamacro",
  16436. height: math.unit(5, "km")
  16437. },
  16438. {
  16439. name: "Cosmic",
  16440. height: math.unit(2.5e6, "miles")
  16441. },
  16442. ]
  16443. ))
  16444. characterMakers.push(() => makeCharacter(
  16445. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16446. {
  16447. front: {
  16448. height: math.unit(6, "feet"),
  16449. weight: math.unit(150, "lb"),
  16450. name: "Front",
  16451. image: {
  16452. source: "./media/characters/hanzo/front.svg",
  16453. extra: 374 / 344,
  16454. bottom: 0.02
  16455. }
  16456. },
  16457. },
  16458. [
  16459. {
  16460. name: "Normal",
  16461. height: math.unit(8, "feet"),
  16462. default: true
  16463. },
  16464. ]
  16465. ))
  16466. characterMakers.push(() => makeCharacter(
  16467. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16468. {
  16469. front: {
  16470. height: math.unit(7, "feet"),
  16471. weight: math.unit(130, "lb"),
  16472. name: "Front",
  16473. image: {
  16474. source: "./media/characters/anna/front.svg",
  16475. extra: 169 / 145,
  16476. bottom: 0.06
  16477. }
  16478. },
  16479. full: {
  16480. height: math.unit(4.96, "feet"),
  16481. weight: math.unit(220, "lb"),
  16482. name: "Full",
  16483. image: {
  16484. source: "./media/characters/anna/full.svg",
  16485. extra: 138 / 114,
  16486. bottom: 0.15
  16487. }
  16488. },
  16489. tongue: {
  16490. height: math.unit(2.53, "feet"),
  16491. name: "Tongue",
  16492. image: {
  16493. source: "./media/characters/anna/tongue.svg"
  16494. }
  16495. },
  16496. },
  16497. [
  16498. {
  16499. name: "Normal",
  16500. height: math.unit(7, "feet"),
  16501. default: true
  16502. },
  16503. ]
  16504. ))
  16505. characterMakers.push(() => makeCharacter(
  16506. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16507. {
  16508. front: {
  16509. height: math.unit(7, "feet"),
  16510. weight: math.unit(150, "lb"),
  16511. name: "Front",
  16512. image: {
  16513. source: "./media/characters/ian-corvid/front.svg",
  16514. extra: 150 / 142,
  16515. bottom: 0.02
  16516. }
  16517. },
  16518. back: {
  16519. height: math.unit(7, "feet"),
  16520. weight: math.unit(150, "lb"),
  16521. name: "Back",
  16522. image: {
  16523. source: "./media/characters/ian-corvid/back.svg",
  16524. extra: 150 / 143,
  16525. bottom: 0.01
  16526. }
  16527. },
  16528. stomping: {
  16529. height: math.unit(7, "feet"),
  16530. weight: math.unit(150, "lb"),
  16531. name: "Stomping",
  16532. image: {
  16533. source: "./media/characters/ian-corvid/stomping.svg",
  16534. extra: 76 / 72
  16535. }
  16536. },
  16537. sitting: {
  16538. height: math.unit(7 / 1.8, "feet"),
  16539. weight: math.unit(150, "lb"),
  16540. name: "Sitting",
  16541. image: {
  16542. source: "./media/characters/ian-corvid/sitting.svg",
  16543. extra: 1400 / 1269,
  16544. bottom: 0.15
  16545. }
  16546. },
  16547. },
  16548. [
  16549. {
  16550. name: "Tiny Microw",
  16551. height: math.unit(1, "inch")
  16552. },
  16553. {
  16554. name: "Microw",
  16555. height: math.unit(6, "inches")
  16556. },
  16557. {
  16558. name: "Crow",
  16559. height: math.unit(7 + 1 / 12, "feet"),
  16560. default: true
  16561. },
  16562. {
  16563. name: "Macrow",
  16564. height: math.unit(176, "feet")
  16565. },
  16566. ]
  16567. ))
  16568. characterMakers.push(() => makeCharacter(
  16569. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16570. {
  16571. front: {
  16572. height: math.unit(5 + 7 / 12, "feet"),
  16573. weight: math.unit(147, "lb"),
  16574. name: "Front",
  16575. image: {
  16576. source: "./media/characters/natalie-kellon/front.svg",
  16577. extra: 1214 / 1141,
  16578. bottom: 0.02
  16579. }
  16580. },
  16581. },
  16582. [
  16583. {
  16584. name: "Micro",
  16585. height: math.unit(1 / 16, "inch")
  16586. },
  16587. {
  16588. name: "Tiny",
  16589. height: math.unit(4, "inches")
  16590. },
  16591. {
  16592. name: "Normal",
  16593. height: math.unit(5 + 7 / 12, "feet"),
  16594. default: true
  16595. },
  16596. {
  16597. name: "Amazon",
  16598. height: math.unit(12, "feet")
  16599. },
  16600. {
  16601. name: "Giantess",
  16602. height: math.unit(160, "meters")
  16603. },
  16604. {
  16605. name: "Titaness",
  16606. height: math.unit(800, "meters")
  16607. },
  16608. ]
  16609. ))
  16610. characterMakers.push(() => makeCharacter(
  16611. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16612. {
  16613. front: {
  16614. height: math.unit(6, "feet"),
  16615. weight: math.unit(150, "lb"),
  16616. name: "Front",
  16617. image: {
  16618. source: "./media/characters/alluria/front.svg",
  16619. extra: 806 / 738,
  16620. bottom: 0.01
  16621. }
  16622. },
  16623. side: {
  16624. height: math.unit(6, "feet"),
  16625. weight: math.unit(150, "lb"),
  16626. name: "Side",
  16627. image: {
  16628. source: "./media/characters/alluria/side.svg",
  16629. extra: 800 / 750,
  16630. }
  16631. },
  16632. back: {
  16633. height: math.unit(6, "feet"),
  16634. weight: math.unit(150, "lb"),
  16635. name: "Back",
  16636. image: {
  16637. source: "./media/characters/alluria/back.svg",
  16638. extra: 806 / 738,
  16639. }
  16640. },
  16641. frontMaid: {
  16642. height: math.unit(6, "feet"),
  16643. weight: math.unit(150, "lb"),
  16644. name: "Front (Maid)",
  16645. image: {
  16646. source: "./media/characters/alluria/front-maid.svg",
  16647. extra: 806 / 738,
  16648. bottom: 0.01
  16649. }
  16650. },
  16651. sideMaid: {
  16652. height: math.unit(6, "feet"),
  16653. weight: math.unit(150, "lb"),
  16654. name: "Side (Maid)",
  16655. image: {
  16656. source: "./media/characters/alluria/side-maid.svg",
  16657. extra: 800 / 750,
  16658. bottom: 0.005
  16659. }
  16660. },
  16661. backMaid: {
  16662. height: math.unit(6, "feet"),
  16663. weight: math.unit(150, "lb"),
  16664. name: "Back (Maid)",
  16665. image: {
  16666. source: "./media/characters/alluria/back-maid.svg",
  16667. extra: 806 / 738,
  16668. }
  16669. },
  16670. },
  16671. [
  16672. {
  16673. name: "Micro",
  16674. height: math.unit(6, "inches"),
  16675. default: true
  16676. },
  16677. ]
  16678. ))
  16679. characterMakers.push(() => makeCharacter(
  16680. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16681. {
  16682. front: {
  16683. height: math.unit(6, "feet"),
  16684. weight: math.unit(150, "lb"),
  16685. name: "Front",
  16686. image: {
  16687. source: "./media/characters/kyle/front.svg",
  16688. extra: 1069 / 962,
  16689. bottom: 77.228 / 1727.45
  16690. }
  16691. },
  16692. },
  16693. [
  16694. {
  16695. name: "Macro",
  16696. height: math.unit(150, "feet"),
  16697. default: true
  16698. },
  16699. ]
  16700. ))
  16701. characterMakers.push(() => makeCharacter(
  16702. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16703. {
  16704. front: {
  16705. height: math.unit(6, "feet"),
  16706. weight: math.unit(300, "lb"),
  16707. name: "Front",
  16708. image: {
  16709. source: "./media/characters/duncan/front.svg",
  16710. extra: 1650 / 1482,
  16711. bottom: 0.05
  16712. }
  16713. },
  16714. },
  16715. [
  16716. {
  16717. name: "Macro",
  16718. height: math.unit(100, "feet"),
  16719. default: true
  16720. },
  16721. ]
  16722. ))
  16723. characterMakers.push(() => makeCharacter(
  16724. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16725. {
  16726. front: {
  16727. height: math.unit(5 + 4 / 12, "feet"),
  16728. weight: math.unit(220, "lb"),
  16729. name: "Front",
  16730. image: {
  16731. source: "./media/characters/memory/front.svg",
  16732. extra: 3641 / 3545,
  16733. bottom: 0.03
  16734. }
  16735. },
  16736. back: {
  16737. height: math.unit(5 + 4 / 12, "feet"),
  16738. weight: math.unit(220, "lb"),
  16739. name: "Back",
  16740. image: {
  16741. source: "./media/characters/memory/back.svg",
  16742. extra: 3641 / 3545,
  16743. bottom: 0.025
  16744. }
  16745. },
  16746. frontSkirt: {
  16747. height: math.unit(5 + 4 / 12, "feet"),
  16748. weight: math.unit(220, "lb"),
  16749. name: "Front (Skirt)",
  16750. image: {
  16751. source: "./media/characters/memory/front-skirt.svg",
  16752. extra: 3641 / 3545,
  16753. bottom: 0.03
  16754. }
  16755. },
  16756. frontDress: {
  16757. height: math.unit(5 + 4 / 12, "feet"),
  16758. weight: math.unit(220, "lb"),
  16759. name: "Front (Dress)",
  16760. image: {
  16761. source: "./media/characters/memory/front-dress.svg",
  16762. extra: 3641 / 3545,
  16763. bottom: 0.03
  16764. }
  16765. },
  16766. },
  16767. [
  16768. {
  16769. name: "Micro",
  16770. height: math.unit(6, "inches"),
  16771. default: true
  16772. },
  16773. {
  16774. name: "Normal",
  16775. height: math.unit(5 + 4 / 12, "feet")
  16776. },
  16777. ]
  16778. ))
  16779. characterMakers.push(() => makeCharacter(
  16780. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16781. {
  16782. front: {
  16783. height: math.unit(4 + 11 / 12, "feet"),
  16784. weight: math.unit(100, "lb"),
  16785. name: "Front",
  16786. image: {
  16787. source: "./media/characters/luno/front.svg",
  16788. extra: 1535 / 1487,
  16789. bottom: 0.03
  16790. }
  16791. },
  16792. },
  16793. [
  16794. {
  16795. name: "Micro",
  16796. height: math.unit(3, "inches")
  16797. },
  16798. {
  16799. name: "Normal",
  16800. height: math.unit(4 + 11 / 12, "feet"),
  16801. default: true
  16802. },
  16803. {
  16804. name: "Macro",
  16805. height: math.unit(300, "feet")
  16806. },
  16807. {
  16808. name: "Megamacro",
  16809. height: math.unit(700, "miles")
  16810. },
  16811. ]
  16812. ))
  16813. characterMakers.push(() => makeCharacter(
  16814. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16815. {
  16816. front: {
  16817. height: math.unit(6 + 2 / 12, "feet"),
  16818. weight: math.unit(170, "lb"),
  16819. name: "Front",
  16820. image: {
  16821. source: "./media/characters/jamesy/front.svg",
  16822. extra: 440 / 382,
  16823. bottom: 0.005
  16824. }
  16825. },
  16826. },
  16827. [
  16828. {
  16829. name: "Micro",
  16830. height: math.unit(3, "inches")
  16831. },
  16832. {
  16833. name: "Normal",
  16834. height: math.unit(6 + 2 / 12, "feet"),
  16835. default: true
  16836. },
  16837. {
  16838. name: "Macro",
  16839. height: math.unit(300, "feet")
  16840. },
  16841. {
  16842. name: "Megamacro",
  16843. height: math.unit(700, "miles")
  16844. },
  16845. ]
  16846. ))
  16847. characterMakers.push(() => makeCharacter(
  16848. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16849. {
  16850. front: {
  16851. height: math.unit(6, "feet"),
  16852. weight: math.unit(160, "lb"),
  16853. name: "Front",
  16854. image: {
  16855. source: "./media/characters/mark/front.svg",
  16856. extra: 3300 / 3100,
  16857. bottom: 136.42 / 3440.47
  16858. }
  16859. },
  16860. },
  16861. [
  16862. {
  16863. name: "Macro",
  16864. height: math.unit(120, "meters")
  16865. },
  16866. {
  16867. name: "Bigger Macro",
  16868. height: math.unit(350, "meters")
  16869. },
  16870. {
  16871. name: "Megamacro",
  16872. height: math.unit(8, "km"),
  16873. default: true
  16874. },
  16875. {
  16876. name: "Continental",
  16877. height: math.unit(4550, "km")
  16878. },
  16879. {
  16880. name: "Planetary",
  16881. height: math.unit(65000, "km")
  16882. },
  16883. ]
  16884. ))
  16885. characterMakers.push(() => makeCharacter(
  16886. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16887. {
  16888. front: {
  16889. height: math.unit(6, "feet"),
  16890. weight: math.unit(400, "lb"),
  16891. name: "Front",
  16892. image: {
  16893. source: "./media/characters/mac/front.svg",
  16894. extra: 1048 / 987.7,
  16895. bottom: 60 / 1107.6,
  16896. }
  16897. },
  16898. },
  16899. [
  16900. {
  16901. name: "Macro",
  16902. height: math.unit(500, "feet"),
  16903. default: true
  16904. },
  16905. ]
  16906. ))
  16907. characterMakers.push(() => makeCharacter(
  16908. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16909. {
  16910. front: {
  16911. height: math.unit(5 + 2 / 12, "feet"),
  16912. weight: math.unit(190, "lb"),
  16913. name: "Front",
  16914. image: {
  16915. source: "./media/characters/bari/front.svg",
  16916. extra: 3156 / 2880,
  16917. bottom: 0.03
  16918. }
  16919. },
  16920. back: {
  16921. height: math.unit(5 + 2 / 12, "feet"),
  16922. weight: math.unit(190, "lb"),
  16923. name: "Back",
  16924. image: {
  16925. source: "./media/characters/bari/back.svg",
  16926. extra: 3260 / 2834,
  16927. bottom: 0.025
  16928. }
  16929. },
  16930. frontPlush: {
  16931. height: math.unit(5 + 2 / 12, "feet"),
  16932. weight: math.unit(190, "lb"),
  16933. name: "Front (Plush)",
  16934. image: {
  16935. source: "./media/characters/bari/front-plush.svg",
  16936. extra: 1112 / 1061,
  16937. bottom: 0.002
  16938. }
  16939. },
  16940. },
  16941. [
  16942. {
  16943. name: "Micro",
  16944. height: math.unit(3, "inches")
  16945. },
  16946. {
  16947. name: "Normal",
  16948. height: math.unit(5 + 2 / 12, "feet"),
  16949. default: true
  16950. },
  16951. {
  16952. name: "Macro",
  16953. height: math.unit(20, "feet")
  16954. },
  16955. ]
  16956. ))
  16957. characterMakers.push(() => makeCharacter(
  16958. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16959. {
  16960. front: {
  16961. height: math.unit(6 + 1 / 12, "feet"),
  16962. weight: math.unit(275, "lb"),
  16963. name: "Front",
  16964. image: {
  16965. source: "./media/characters/hunter-misha-raven/front.svg"
  16966. }
  16967. },
  16968. },
  16969. [
  16970. {
  16971. name: "Mortal",
  16972. height: math.unit(6 + 1 / 12, "feet")
  16973. },
  16974. {
  16975. name: "Divine",
  16976. height: math.unit(1.12134e34, "parsecs"),
  16977. default: true
  16978. },
  16979. ]
  16980. ))
  16981. characterMakers.push(() => makeCharacter(
  16982. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16983. {
  16984. front: {
  16985. height: math.unit(6 + 3 / 12, "feet"),
  16986. weight: math.unit(220, "lb"),
  16987. name: "Front",
  16988. image: {
  16989. source: "./media/characters/max-calore/front.svg",
  16990. extra: 1700 / 1648,
  16991. bottom: 0.01
  16992. }
  16993. },
  16994. back: {
  16995. height: math.unit(6 + 3 / 12, "feet"),
  16996. weight: math.unit(220, "lb"),
  16997. name: "Back",
  16998. image: {
  16999. source: "./media/characters/max-calore/back.svg",
  17000. extra: 1700 / 1648,
  17001. bottom: 0.01
  17002. }
  17003. },
  17004. },
  17005. [
  17006. {
  17007. name: "Normal",
  17008. height: math.unit(6 + 3 / 12, "feet"),
  17009. default: true
  17010. },
  17011. ]
  17012. ))
  17013. characterMakers.push(() => makeCharacter(
  17014. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17015. {
  17016. side: {
  17017. height: math.unit(2 + 8 / 12, "feet"),
  17018. weight: math.unit(99, "lb"),
  17019. name: "Side",
  17020. image: {
  17021. source: "./media/characters/aspen/side.svg",
  17022. extra: 152 / 138,
  17023. bottom: 0.032
  17024. }
  17025. },
  17026. },
  17027. [
  17028. {
  17029. name: "Normal",
  17030. height: math.unit(2 + 8 / 12, "feet"),
  17031. default: true
  17032. },
  17033. ]
  17034. ))
  17035. characterMakers.push(() => makeCharacter(
  17036. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17037. {
  17038. side: {
  17039. height: math.unit(3 + 2 / 12, "feet"),
  17040. weight: math.unit(224, "lb"),
  17041. name: "Side",
  17042. image: {
  17043. source: "./media/characters/sheila-feral-wolf/side.svg",
  17044. extra: 179 / 166,
  17045. bottom: 0.03
  17046. }
  17047. },
  17048. },
  17049. [
  17050. {
  17051. name: "Normal",
  17052. height: math.unit(3 + 2 / 12, "feet"),
  17053. default: true
  17054. },
  17055. ]
  17056. ))
  17057. characterMakers.push(() => makeCharacter(
  17058. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17059. {
  17060. side: {
  17061. height: math.unit(1 + 9 / 12, "feet"),
  17062. weight: math.unit(38, "lb"),
  17063. name: "Side",
  17064. image: {
  17065. source: "./media/characters/michelle/side.svg",
  17066. extra: 147 / 136.7,
  17067. bottom: 0.03
  17068. }
  17069. },
  17070. },
  17071. [
  17072. {
  17073. name: "Normal",
  17074. height: math.unit(1 + 9 / 12, "feet"),
  17075. default: true
  17076. },
  17077. ]
  17078. ))
  17079. characterMakers.push(() => makeCharacter(
  17080. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17081. {
  17082. front: {
  17083. height: math.unit(1 + 1 / 12, "feet"),
  17084. weight: math.unit(18, "lb"),
  17085. name: "Front",
  17086. image: {
  17087. source: "./media/characters/nino/front.svg"
  17088. }
  17089. },
  17090. },
  17091. [
  17092. {
  17093. name: "Normal",
  17094. height: math.unit(1 + 1 / 12, "feet"),
  17095. default: true
  17096. },
  17097. ]
  17098. ))
  17099. characterMakers.push(() => makeCharacter(
  17100. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17101. {
  17102. front: {
  17103. height: math.unit(1, "feet"),
  17104. weight: math.unit(16, "lb"),
  17105. name: "Front",
  17106. image: {
  17107. source: "./media/characters/viola/front.svg"
  17108. }
  17109. },
  17110. },
  17111. [
  17112. {
  17113. name: "Normal",
  17114. height: math.unit(1, "feet"),
  17115. default: true
  17116. },
  17117. ]
  17118. ))
  17119. characterMakers.push(() => makeCharacter(
  17120. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17121. {
  17122. front: {
  17123. height: math.unit(6 + 5 / 12, "feet"),
  17124. weight: math.unit(580, "lb"),
  17125. name: "Front",
  17126. image: {
  17127. source: "./media/characters/atlas/front.svg",
  17128. extra: 298.5 / 290,
  17129. bottom: 0.015
  17130. }
  17131. },
  17132. },
  17133. [
  17134. {
  17135. name: "Normal",
  17136. height: math.unit(6 + 5 / 12, "feet"),
  17137. default: true
  17138. },
  17139. ]
  17140. ))
  17141. characterMakers.push(() => makeCharacter(
  17142. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17143. {
  17144. side: {
  17145. height: math.unit(1 + 10 / 12, "feet"),
  17146. weight: math.unit(25, "lb"),
  17147. name: "Side",
  17148. image: {
  17149. source: "./media/characters/davy/side.svg",
  17150. extra: 200 / 170,
  17151. bottom: 0.01
  17152. }
  17153. },
  17154. },
  17155. [
  17156. {
  17157. name: "Normal",
  17158. height: math.unit(1 + 10 / 12, "feet"),
  17159. default: true
  17160. },
  17161. ]
  17162. ))
  17163. characterMakers.push(() => makeCharacter(
  17164. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17165. {
  17166. side: {
  17167. height: math.unit(4 + 8 / 12, "feet"),
  17168. weight: math.unit(166, "lb"),
  17169. name: "Side",
  17170. image: {
  17171. source: "./media/characters/fiona/side.svg",
  17172. extra: 232 / 220,
  17173. bottom: 0.03
  17174. }
  17175. },
  17176. },
  17177. [
  17178. {
  17179. name: "Normal",
  17180. height: math.unit(4 + 8 / 12, "feet"),
  17181. default: true
  17182. },
  17183. ]
  17184. ))
  17185. characterMakers.push(() => makeCharacter(
  17186. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17187. {
  17188. front: {
  17189. height: math.unit(2, "feet"),
  17190. weight: math.unit(62, "lb"),
  17191. name: "Front",
  17192. image: {
  17193. source: "./media/characters/lyla/front.svg",
  17194. bottom: 0.1
  17195. }
  17196. },
  17197. },
  17198. [
  17199. {
  17200. name: "Normal",
  17201. height: math.unit(2, "feet"),
  17202. default: true
  17203. },
  17204. ]
  17205. ))
  17206. characterMakers.push(() => makeCharacter(
  17207. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17208. {
  17209. side: {
  17210. height: math.unit(1.8, "feet"),
  17211. weight: math.unit(44, "lb"),
  17212. name: "Side",
  17213. image: {
  17214. source: "./media/characters/perseus/side.svg",
  17215. bottom: 0.21
  17216. }
  17217. },
  17218. },
  17219. [
  17220. {
  17221. name: "Normal",
  17222. height: math.unit(1.8, "feet"),
  17223. default: true
  17224. },
  17225. ]
  17226. ))
  17227. characterMakers.push(() => makeCharacter(
  17228. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17229. {
  17230. side: {
  17231. height: math.unit(4 + 2 / 12, "feet"),
  17232. weight: math.unit(20, "lb"),
  17233. name: "Side",
  17234. image: {
  17235. source: "./media/characters/remus/side.svg"
  17236. }
  17237. },
  17238. },
  17239. [
  17240. {
  17241. name: "Normal",
  17242. height: math.unit(4 + 2 / 12, "feet"),
  17243. default: true
  17244. },
  17245. ]
  17246. ))
  17247. characterMakers.push(() => makeCharacter(
  17248. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17249. {
  17250. front: {
  17251. height: math.unit(4 + 11 / 12, "feet"),
  17252. weight: math.unit(114, "lb"),
  17253. name: "Front",
  17254. image: {
  17255. source: "./media/characters/raf/front.svg",
  17256. extra: 1504/1339,
  17257. bottom: 26/1530
  17258. }
  17259. },
  17260. side: {
  17261. height: math.unit(4 + 11 / 12, "feet"),
  17262. weight: math.unit(114, "lb"),
  17263. name: "Side",
  17264. image: {
  17265. source: "./media/characters/raf/side.svg",
  17266. extra: 1466/1316,
  17267. bottom: 29/1495
  17268. }
  17269. },
  17270. },
  17271. [
  17272. {
  17273. name: "Micro",
  17274. height: math.unit(2, "inches")
  17275. },
  17276. {
  17277. name: "Normal",
  17278. height: math.unit(4 + 11 / 12, "feet"),
  17279. default: true
  17280. },
  17281. {
  17282. name: "Macro",
  17283. height: math.unit(70, "feet")
  17284. },
  17285. ]
  17286. ))
  17287. characterMakers.push(() => makeCharacter(
  17288. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17289. {
  17290. front: {
  17291. height: math.unit(1.5, "meters"),
  17292. weight: math.unit(68, "kg"),
  17293. name: "Front",
  17294. image: {
  17295. source: "./media/characters/liam-einarr/front.svg",
  17296. extra: 2822 / 2666
  17297. }
  17298. },
  17299. back: {
  17300. height: math.unit(1.5, "meters"),
  17301. weight: math.unit(68, "kg"),
  17302. name: "Back",
  17303. image: {
  17304. source: "./media/characters/liam-einarr/back.svg",
  17305. extra: 2822 / 2666,
  17306. bottom: 0.015
  17307. }
  17308. },
  17309. },
  17310. [
  17311. {
  17312. name: "Normal",
  17313. height: math.unit(1.5, "meters"),
  17314. default: true
  17315. },
  17316. {
  17317. name: "Macro",
  17318. height: math.unit(150, "meters")
  17319. },
  17320. {
  17321. name: "Megamacro",
  17322. height: math.unit(35, "km")
  17323. },
  17324. ]
  17325. ))
  17326. characterMakers.push(() => makeCharacter(
  17327. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17328. {
  17329. front: {
  17330. height: math.unit(6, "feet"),
  17331. weight: math.unit(75, "kg"),
  17332. name: "Front",
  17333. image: {
  17334. source: "./media/characters/linda/front.svg",
  17335. extra: 930 / 874,
  17336. bottom: 0.004
  17337. }
  17338. },
  17339. },
  17340. [
  17341. {
  17342. name: "Normal",
  17343. height: math.unit(6, "feet"),
  17344. default: true
  17345. },
  17346. ]
  17347. ))
  17348. characterMakers.push(() => makeCharacter(
  17349. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17350. {
  17351. front: {
  17352. height: math.unit(6 + 8 / 12, "feet"),
  17353. weight: math.unit(220, "lb"),
  17354. name: "Front",
  17355. image: {
  17356. source: "./media/characters/caylex/front.svg",
  17357. extra: 821 / 772,
  17358. bottom: 0.07
  17359. }
  17360. },
  17361. back: {
  17362. height: math.unit(6 + 8 / 12, "feet"),
  17363. weight: math.unit(220, "lb"),
  17364. name: "Back",
  17365. image: {
  17366. source: "./media/characters/caylex/back.svg",
  17367. extra: 821 / 772,
  17368. bottom: 0.022
  17369. }
  17370. },
  17371. hand: {
  17372. height: math.unit(1.25, "feet"),
  17373. name: "Hand",
  17374. image: {
  17375. source: "./media/characters/caylex/hand.svg"
  17376. }
  17377. },
  17378. foot: {
  17379. height: math.unit(1.6, "feet"),
  17380. name: "Foot",
  17381. image: {
  17382. source: "./media/characters/caylex/foot.svg"
  17383. }
  17384. },
  17385. armored: {
  17386. height: math.unit(6 + 8 / 12, "feet"),
  17387. weight: math.unit(250, "lb"),
  17388. name: "Armored",
  17389. image: {
  17390. source: "./media/characters/caylex/armored.svg",
  17391. extra: 1420 / 1310,
  17392. bottom: 0.045
  17393. }
  17394. },
  17395. },
  17396. [
  17397. {
  17398. name: "Normal",
  17399. height: math.unit(6 + 8 / 12, "feet"),
  17400. default: true
  17401. },
  17402. {
  17403. name: "Normal+",
  17404. height: math.unit(12, "feet")
  17405. },
  17406. ]
  17407. ))
  17408. characterMakers.push(() => makeCharacter(
  17409. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17410. {
  17411. front: {
  17412. height: math.unit(7 + 6 / 12, "feet"),
  17413. weight: math.unit(288, "lb"),
  17414. name: "Front",
  17415. image: {
  17416. source: "./media/characters/alana/front.svg",
  17417. extra: 679 / 653,
  17418. bottom: 22.5 / 701
  17419. }
  17420. },
  17421. },
  17422. [
  17423. {
  17424. name: "Normal",
  17425. height: math.unit(7 + 6 / 12, "feet")
  17426. },
  17427. {
  17428. name: "Large",
  17429. height: math.unit(50, "feet")
  17430. },
  17431. {
  17432. name: "Macro",
  17433. height: math.unit(100, "feet"),
  17434. default: true
  17435. },
  17436. {
  17437. name: "Macro+",
  17438. height: math.unit(200, "feet")
  17439. },
  17440. ]
  17441. ))
  17442. characterMakers.push(() => makeCharacter(
  17443. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17444. {
  17445. front: {
  17446. height: math.unit(6 + 1 / 12, "feet"),
  17447. weight: math.unit(210, "lb"),
  17448. name: "Front",
  17449. image: {
  17450. source: "./media/characters/hasani/front.svg",
  17451. extra: 244 / 232,
  17452. bottom: 0.01
  17453. }
  17454. },
  17455. back: {
  17456. height: math.unit(6 + 1 / 12, "feet"),
  17457. weight: math.unit(210, "lb"),
  17458. name: "Back",
  17459. image: {
  17460. source: "./media/characters/hasani/back.svg",
  17461. extra: 244 / 232,
  17462. bottom: 0.01
  17463. }
  17464. },
  17465. },
  17466. [
  17467. {
  17468. name: "Normal",
  17469. height: math.unit(6 + 1 / 12, "feet")
  17470. },
  17471. {
  17472. name: "Macro",
  17473. height: math.unit(175, "feet"),
  17474. default: true
  17475. },
  17476. ]
  17477. ))
  17478. characterMakers.push(() => makeCharacter(
  17479. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17480. {
  17481. front: {
  17482. height: math.unit(1.82, "meters"),
  17483. weight: math.unit(140, "lb"),
  17484. name: "Front",
  17485. image: {
  17486. source: "./media/characters/nita/front.svg",
  17487. extra: 2473 / 2363,
  17488. bottom: 0.01
  17489. }
  17490. },
  17491. },
  17492. [
  17493. {
  17494. name: "Normal",
  17495. height: math.unit(1.82, "m")
  17496. },
  17497. {
  17498. name: "Macro",
  17499. height: math.unit(300, "m")
  17500. },
  17501. {
  17502. name: "Mistake Canon",
  17503. height: math.unit(0.5, "miles"),
  17504. default: true
  17505. },
  17506. {
  17507. name: "Big Mistake",
  17508. height: math.unit(13, "miles")
  17509. },
  17510. {
  17511. name: "Playing God",
  17512. height: math.unit(2450, "miles")
  17513. },
  17514. ]
  17515. ))
  17516. characterMakers.push(() => makeCharacter(
  17517. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17518. {
  17519. front: {
  17520. height: math.unit(4, "feet"),
  17521. weight: math.unit(120, "lb"),
  17522. name: "Front",
  17523. image: {
  17524. source: "./media/characters/shiriko/front.svg",
  17525. extra: 970/934,
  17526. bottom: 5/975
  17527. }
  17528. },
  17529. },
  17530. [
  17531. {
  17532. name: "Normal",
  17533. height: math.unit(4, "feet"),
  17534. default: true
  17535. },
  17536. ]
  17537. ))
  17538. characterMakers.push(() => makeCharacter(
  17539. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17540. {
  17541. front: {
  17542. height: math.unit(6, "feet"),
  17543. name: "front",
  17544. image: {
  17545. source: "./media/characters/deja/front.svg",
  17546. extra: 926 / 840,
  17547. bottom: 0.07
  17548. }
  17549. },
  17550. },
  17551. [
  17552. {
  17553. name: "Planck Length",
  17554. height: math.unit(1.6e-35, "meters")
  17555. },
  17556. {
  17557. name: "Normal",
  17558. height: math.unit(30.48, "meters"),
  17559. default: true
  17560. },
  17561. {
  17562. name: "Universal",
  17563. height: math.unit(8.8e26, "meters")
  17564. },
  17565. ]
  17566. ))
  17567. characterMakers.push(() => makeCharacter(
  17568. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17569. {
  17570. side: {
  17571. height: math.unit(8, "feet"),
  17572. weight: math.unit(6300, "lb"),
  17573. name: "Side",
  17574. image: {
  17575. source: "./media/characters/anima/side.svg",
  17576. bottom: 0.035
  17577. }
  17578. },
  17579. },
  17580. [
  17581. {
  17582. name: "Normal",
  17583. height: math.unit(8, "feet"),
  17584. default: true
  17585. },
  17586. ]
  17587. ))
  17588. characterMakers.push(() => makeCharacter(
  17589. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17590. {
  17591. front: {
  17592. height: math.unit(8, "feet"),
  17593. weight: math.unit(350, "lb"),
  17594. name: "Front",
  17595. image: {
  17596. source: "./media/characters/bianca/front.svg",
  17597. extra: 234 / 225,
  17598. bottom: 0.03
  17599. }
  17600. },
  17601. },
  17602. [
  17603. {
  17604. name: "Normal",
  17605. height: math.unit(8, "feet"),
  17606. default: true
  17607. },
  17608. ]
  17609. ))
  17610. characterMakers.push(() => makeCharacter(
  17611. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17612. {
  17613. front: {
  17614. height: math.unit(6, "feet"),
  17615. weight: math.unit(150, "lb"),
  17616. name: "Front",
  17617. image: {
  17618. source: "./media/characters/adinia/front.svg",
  17619. extra: 1845 / 1672,
  17620. bottom: 0.02
  17621. }
  17622. },
  17623. back: {
  17624. height: math.unit(6, "feet"),
  17625. weight: math.unit(150, "lb"),
  17626. name: "Back",
  17627. image: {
  17628. source: "./media/characters/adinia/back.svg",
  17629. extra: 1845 / 1672,
  17630. bottom: 0.002
  17631. }
  17632. },
  17633. },
  17634. [
  17635. {
  17636. name: "Normal",
  17637. height: math.unit(11 + 5 / 12, "feet"),
  17638. default: true
  17639. },
  17640. ]
  17641. ))
  17642. characterMakers.push(() => makeCharacter(
  17643. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17644. {
  17645. front: {
  17646. height: math.unit(3, "meters"),
  17647. weight: math.unit(200, "kg"),
  17648. name: "Front",
  17649. image: {
  17650. source: "./media/characters/lykasa/front.svg",
  17651. extra: 1076 / 976,
  17652. bottom: 0.06
  17653. }
  17654. },
  17655. },
  17656. [
  17657. {
  17658. name: "Normal",
  17659. height: math.unit(3, "meters")
  17660. },
  17661. {
  17662. name: "Kaiju",
  17663. height: math.unit(120, "meters"),
  17664. default: true
  17665. },
  17666. {
  17667. name: "Mega Kaiju",
  17668. height: math.unit(240, "km")
  17669. },
  17670. {
  17671. name: "Giga Kaiju",
  17672. height: math.unit(400, "megameters")
  17673. },
  17674. {
  17675. name: "Tera Kaiju",
  17676. height: math.unit(800, "gigameters")
  17677. },
  17678. {
  17679. name: "Kaiju Dragon Goddess",
  17680. height: math.unit(26, "zettaparsecs")
  17681. },
  17682. ]
  17683. ))
  17684. characterMakers.push(() => makeCharacter(
  17685. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17686. {
  17687. side: {
  17688. height: math.unit(283 / 124 * 6, "feet"),
  17689. weight: math.unit(35000, "lb"),
  17690. name: "Side",
  17691. image: {
  17692. source: "./media/characters/malfaren/side.svg",
  17693. extra: 2500 / 1010,
  17694. bottom: 0.01
  17695. }
  17696. },
  17697. front: {
  17698. height: math.unit(22.36, "feet"),
  17699. weight: math.unit(35000, "lb"),
  17700. name: "Front",
  17701. image: {
  17702. source: "./media/characters/malfaren/front.svg",
  17703. extra: 1631 / 1476,
  17704. bottom: 0.01
  17705. }
  17706. },
  17707. maw: {
  17708. height: math.unit(6.9, "feet"),
  17709. name: "Maw",
  17710. image: {
  17711. source: "./media/characters/malfaren/maw.svg"
  17712. }
  17713. },
  17714. },
  17715. [
  17716. {
  17717. name: "Big",
  17718. height: math.unit(283 / 162 * 6, "feet"),
  17719. },
  17720. {
  17721. name: "Bigger",
  17722. height: math.unit(283 / 124 * 6, "feet")
  17723. },
  17724. {
  17725. name: "Massive",
  17726. height: math.unit(283 / 92 * 6, "feet"),
  17727. default: true
  17728. },
  17729. {
  17730. name: "👀💦",
  17731. height: math.unit(283 / 73 * 6, "feet"),
  17732. },
  17733. ]
  17734. ))
  17735. characterMakers.push(() => makeCharacter(
  17736. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17737. {
  17738. front: {
  17739. height: math.unit(1.7, "m"),
  17740. weight: math.unit(70, "kg"),
  17741. name: "Front",
  17742. image: {
  17743. source: "./media/characters/kernel/front.svg",
  17744. extra: 222 / 210,
  17745. bottom: 0.007
  17746. }
  17747. },
  17748. },
  17749. [
  17750. {
  17751. name: "Nano",
  17752. height: math.unit(17, "micrometers")
  17753. },
  17754. {
  17755. name: "Micro",
  17756. height: math.unit(1.7, "mm")
  17757. },
  17758. {
  17759. name: "Small",
  17760. height: math.unit(1.7, "cm")
  17761. },
  17762. {
  17763. name: "Normal",
  17764. height: math.unit(1.7, "m"),
  17765. default: true
  17766. },
  17767. ]
  17768. ))
  17769. characterMakers.push(() => makeCharacter(
  17770. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17771. {
  17772. front: {
  17773. height: math.unit(1.75, "meters"),
  17774. weight: math.unit(65, "kg"),
  17775. name: "Front",
  17776. image: {
  17777. source: "./media/characters/jayne-folest/front.svg",
  17778. extra: 2115 / 2007,
  17779. bottom: 0.02
  17780. }
  17781. },
  17782. back: {
  17783. height: math.unit(1.75, "meters"),
  17784. weight: math.unit(65, "kg"),
  17785. name: "Back",
  17786. image: {
  17787. source: "./media/characters/jayne-folest/back.svg",
  17788. extra: 2115 / 2007,
  17789. bottom: 0.005
  17790. }
  17791. },
  17792. frontClothed: {
  17793. height: math.unit(1.75, "meters"),
  17794. weight: math.unit(65, "kg"),
  17795. name: "Front (Clothed)",
  17796. image: {
  17797. source: "./media/characters/jayne-folest/front-clothed.svg",
  17798. extra: 2115 / 2007,
  17799. bottom: 0.035
  17800. }
  17801. },
  17802. hand: {
  17803. height: math.unit(1 / 1.260, "feet"),
  17804. name: "Hand",
  17805. image: {
  17806. source: "./media/characters/jayne-folest/hand.svg"
  17807. }
  17808. },
  17809. foot: {
  17810. height: math.unit(1 / 0.918, "feet"),
  17811. name: "Foot",
  17812. image: {
  17813. source: "./media/characters/jayne-folest/foot.svg"
  17814. }
  17815. },
  17816. },
  17817. [
  17818. {
  17819. name: "Micro",
  17820. height: math.unit(4, "cm")
  17821. },
  17822. {
  17823. name: "Normal",
  17824. height: math.unit(1.75, "meters")
  17825. },
  17826. {
  17827. name: "Macro",
  17828. height: math.unit(47.5, "meters"),
  17829. default: true
  17830. },
  17831. ]
  17832. ))
  17833. characterMakers.push(() => makeCharacter(
  17834. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17835. {
  17836. front: {
  17837. height: math.unit(180, "cm"),
  17838. weight: math.unit(70, "kg"),
  17839. name: "Front",
  17840. image: {
  17841. source: "./media/characters/algier/front.svg",
  17842. extra: 596 / 572,
  17843. bottom: 0.04
  17844. }
  17845. },
  17846. back: {
  17847. height: math.unit(180, "cm"),
  17848. weight: math.unit(70, "kg"),
  17849. name: "Back",
  17850. image: {
  17851. source: "./media/characters/algier/back.svg",
  17852. extra: 596 / 572,
  17853. bottom: 0.025
  17854. }
  17855. },
  17856. frontdressed: {
  17857. height: math.unit(180, "cm"),
  17858. weight: math.unit(150, "kg"),
  17859. name: "Front-dressed",
  17860. image: {
  17861. source: "./media/characters/algier/front-dressed.svg",
  17862. extra: 596 / 572,
  17863. bottom: 0.038
  17864. }
  17865. },
  17866. },
  17867. [
  17868. {
  17869. name: "Micro",
  17870. height: math.unit(5, "cm")
  17871. },
  17872. {
  17873. name: "Normal",
  17874. height: math.unit(180, "cm"),
  17875. default: true
  17876. },
  17877. {
  17878. name: "Macro",
  17879. height: math.unit(64, "m")
  17880. },
  17881. ]
  17882. ))
  17883. characterMakers.push(() => makeCharacter(
  17884. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17885. {
  17886. upright: {
  17887. height: math.unit(7, "feet"),
  17888. weight: math.unit(300, "lb"),
  17889. name: "Upright",
  17890. image: {
  17891. source: "./media/characters/pretzel/upright.svg",
  17892. extra: 534 / 522,
  17893. bottom: 0.065
  17894. }
  17895. },
  17896. sprawling: {
  17897. height: math.unit(3.75, "feet"),
  17898. weight: math.unit(300, "lb"),
  17899. name: "Sprawling",
  17900. image: {
  17901. source: "./media/characters/pretzel/sprawling.svg",
  17902. extra: 314 / 281,
  17903. bottom: 0.1
  17904. }
  17905. },
  17906. tongue: {
  17907. height: math.unit(2, "feet"),
  17908. name: "Tongue",
  17909. image: {
  17910. source: "./media/characters/pretzel/tongue.svg"
  17911. }
  17912. },
  17913. },
  17914. [
  17915. {
  17916. name: "Normal",
  17917. height: math.unit(7, "feet"),
  17918. default: true
  17919. },
  17920. {
  17921. name: "Oversized",
  17922. height: math.unit(15, "feet")
  17923. },
  17924. {
  17925. name: "Huge",
  17926. height: math.unit(30, "feet")
  17927. },
  17928. {
  17929. name: "Macro",
  17930. height: math.unit(250, "feet")
  17931. },
  17932. ]
  17933. ))
  17934. characterMakers.push(() => makeCharacter(
  17935. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17936. {
  17937. sideFront: {
  17938. height: math.unit(5 + 2 / 12, "feet"),
  17939. weight: math.unit(120, "lb"),
  17940. name: "Front Side",
  17941. image: {
  17942. source: "./media/characters/roxi/side-front.svg",
  17943. extra: 2924 / 2717,
  17944. bottom: 0.08
  17945. }
  17946. },
  17947. sideBack: {
  17948. height: math.unit(5 + 2 / 12, "feet"),
  17949. weight: math.unit(120, "lb"),
  17950. name: "Back Side",
  17951. image: {
  17952. source: "./media/characters/roxi/side-back.svg",
  17953. extra: 2904 / 2693,
  17954. bottom: 0.06
  17955. }
  17956. },
  17957. front: {
  17958. height: math.unit(5 + 2 / 12, "feet"),
  17959. weight: math.unit(120, "lb"),
  17960. name: "Front",
  17961. image: {
  17962. source: "./media/characters/roxi/front.svg",
  17963. extra: 2028 / 1907,
  17964. bottom: 0.01
  17965. }
  17966. },
  17967. frontAlt: {
  17968. height: math.unit(5 + 2 / 12, "feet"),
  17969. weight: math.unit(120, "lb"),
  17970. name: "Front (Alt)",
  17971. image: {
  17972. source: "./media/characters/roxi/front-alt.svg",
  17973. extra: 1828 / 1798,
  17974. bottom: 0.01
  17975. }
  17976. },
  17977. sitting: {
  17978. height: math.unit(2.8, "feet"),
  17979. weight: math.unit(120, "lb"),
  17980. name: "Sitting",
  17981. image: {
  17982. source: "./media/characters/roxi/sitting.svg",
  17983. extra: 2660 / 2462,
  17984. bottom: 0.1
  17985. }
  17986. },
  17987. },
  17988. [
  17989. {
  17990. name: "Normal",
  17991. height: math.unit(5 + 2 / 12, "feet"),
  17992. default: true
  17993. },
  17994. ]
  17995. ))
  17996. characterMakers.push(() => makeCharacter(
  17997. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17998. {
  17999. side: {
  18000. height: math.unit(55, "feet"),
  18001. weight: math.unit(153, "tons"),
  18002. name: "Side",
  18003. image: {
  18004. source: "./media/characters/shadow/side.svg",
  18005. extra: 701 / 628,
  18006. bottom: 0.02
  18007. }
  18008. },
  18009. flying: {
  18010. height: math.unit(145, "feet"),
  18011. weight: math.unit(153, "tons"),
  18012. name: "Flying",
  18013. image: {
  18014. source: "./media/characters/shadow/flying.svg"
  18015. }
  18016. },
  18017. },
  18018. [
  18019. {
  18020. name: "Normal",
  18021. height: math.unit(55, "feet"),
  18022. default: true
  18023. },
  18024. ]
  18025. ))
  18026. characterMakers.push(() => makeCharacter(
  18027. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18028. {
  18029. front: {
  18030. height: math.unit(6, "feet"),
  18031. weight: math.unit(200, "lb"),
  18032. name: "Front",
  18033. image: {
  18034. source: "./media/characters/marcie/front.svg",
  18035. extra: 960 / 876,
  18036. bottom: 58 / 1017.87
  18037. }
  18038. },
  18039. },
  18040. [
  18041. {
  18042. name: "Macro",
  18043. height: math.unit(1, "mile"),
  18044. default: true
  18045. },
  18046. ]
  18047. ))
  18048. characterMakers.push(() => makeCharacter(
  18049. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18050. {
  18051. front: {
  18052. height: math.unit(7, "feet"),
  18053. weight: math.unit(200, "lb"),
  18054. name: "Front",
  18055. image: {
  18056. source: "./media/characters/kachina/front.svg",
  18057. extra: 1290.68 / 1119,
  18058. bottom: 36.5 / 1327.18
  18059. }
  18060. },
  18061. },
  18062. [
  18063. {
  18064. name: "Normal",
  18065. height: math.unit(7, "feet"),
  18066. default: true
  18067. },
  18068. ]
  18069. ))
  18070. characterMakers.push(() => makeCharacter(
  18071. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18072. {
  18073. looking: {
  18074. height: math.unit(2, "meters"),
  18075. weight: math.unit(300, "kg"),
  18076. name: "Looking",
  18077. image: {
  18078. source: "./media/characters/kash/looking.svg",
  18079. extra: 474 / 344,
  18080. bottom: 0.03
  18081. }
  18082. },
  18083. side: {
  18084. height: math.unit(2, "meters"),
  18085. weight: math.unit(300, "kg"),
  18086. name: "Side",
  18087. image: {
  18088. source: "./media/characters/kash/side.svg",
  18089. extra: 302 / 251,
  18090. bottom: 0.03
  18091. }
  18092. },
  18093. front: {
  18094. height: math.unit(2, "meters"),
  18095. weight: math.unit(300, "kg"),
  18096. name: "Front",
  18097. image: {
  18098. source: "./media/characters/kash/front.svg",
  18099. extra: 495 / 360,
  18100. bottom: 0.015
  18101. }
  18102. },
  18103. },
  18104. [
  18105. {
  18106. name: "Normal",
  18107. height: math.unit(2, "meters"),
  18108. default: true
  18109. },
  18110. {
  18111. name: "Big",
  18112. height: math.unit(3, "meters")
  18113. },
  18114. {
  18115. name: "Large",
  18116. height: math.unit(5, "meters")
  18117. },
  18118. ]
  18119. ))
  18120. characterMakers.push(() => makeCharacter(
  18121. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18122. {
  18123. feeding: {
  18124. height: math.unit(6.7, "feet"),
  18125. weight: math.unit(350, "lb"),
  18126. name: "Feeding",
  18127. image: {
  18128. source: "./media/characters/lalim/feeding.svg",
  18129. }
  18130. },
  18131. },
  18132. [
  18133. {
  18134. name: "Normal",
  18135. height: math.unit(6.7, "feet"),
  18136. default: true
  18137. },
  18138. ]
  18139. ))
  18140. characterMakers.push(() => makeCharacter(
  18141. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18142. {
  18143. front: {
  18144. height: math.unit(9.5, "feet"),
  18145. weight: math.unit(600, "lb"),
  18146. name: "Front",
  18147. image: {
  18148. source: "./media/characters/de'vout/front.svg",
  18149. extra: 1443 / 1328,
  18150. bottom: 0.025
  18151. }
  18152. },
  18153. back: {
  18154. height: math.unit(9.5, "feet"),
  18155. weight: math.unit(600, "lb"),
  18156. name: "Back",
  18157. image: {
  18158. source: "./media/characters/de'vout/back.svg",
  18159. extra: 1443 / 1328
  18160. }
  18161. },
  18162. frontDressed: {
  18163. height: math.unit(9.5, "feet"),
  18164. weight: math.unit(600, "lb"),
  18165. name: "Front (Dressed",
  18166. image: {
  18167. source: "./media/characters/de'vout/front-dressed.svg",
  18168. extra: 1443 / 1328,
  18169. bottom: 0.025
  18170. }
  18171. },
  18172. backDressed: {
  18173. height: math.unit(9.5, "feet"),
  18174. weight: math.unit(600, "lb"),
  18175. name: "Back (Dressed",
  18176. image: {
  18177. source: "./media/characters/de'vout/back-dressed.svg",
  18178. extra: 1443 / 1328
  18179. }
  18180. },
  18181. },
  18182. [
  18183. {
  18184. name: "Normal",
  18185. height: math.unit(9.5, "feet"),
  18186. default: true
  18187. },
  18188. ]
  18189. ))
  18190. characterMakers.push(() => makeCharacter(
  18191. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18192. {
  18193. front: {
  18194. height: math.unit(8, "feet"),
  18195. weight: math.unit(225, "lb"),
  18196. name: "Front",
  18197. image: {
  18198. source: "./media/characters/talana/front.svg",
  18199. extra: 1410 / 1300,
  18200. bottom: 0.015
  18201. }
  18202. },
  18203. frontDressed: {
  18204. height: math.unit(8, "feet"),
  18205. weight: math.unit(225, "lb"),
  18206. name: "Front (Dressed",
  18207. image: {
  18208. source: "./media/characters/talana/front-dressed.svg",
  18209. extra: 1410 / 1300,
  18210. bottom: 0.015
  18211. }
  18212. },
  18213. },
  18214. [
  18215. {
  18216. name: "Normal",
  18217. height: math.unit(8, "feet"),
  18218. default: true
  18219. },
  18220. ]
  18221. ))
  18222. characterMakers.push(() => makeCharacter(
  18223. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18224. {
  18225. side: {
  18226. height: math.unit(7.2, "feet"),
  18227. weight: math.unit(150, "lb"),
  18228. name: "Side",
  18229. image: {
  18230. source: "./media/characters/xeauvok/side.svg",
  18231. extra: 1975 / 1523,
  18232. bottom: 0.07
  18233. }
  18234. },
  18235. },
  18236. [
  18237. {
  18238. name: "Normal",
  18239. height: math.unit(7.2, "feet"),
  18240. default: true
  18241. },
  18242. ]
  18243. ))
  18244. characterMakers.push(() => makeCharacter(
  18245. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18246. {
  18247. side: {
  18248. height: math.unit(10, "feet"),
  18249. weight: math.unit(900, "kg"),
  18250. name: "Side",
  18251. image: {
  18252. source: "./media/characters/zara/side.svg",
  18253. extra: 504 / 498
  18254. }
  18255. },
  18256. },
  18257. [
  18258. {
  18259. name: "Normal",
  18260. height: math.unit(10, "feet"),
  18261. default: true
  18262. },
  18263. ]
  18264. ))
  18265. characterMakers.push(() => makeCharacter(
  18266. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18267. {
  18268. side: {
  18269. height: math.unit(6, "feet"),
  18270. weight: math.unit(150, "lb"),
  18271. name: "Side",
  18272. image: {
  18273. source: "./media/characters/richard-dragon/side.svg",
  18274. extra: 845 / 340,
  18275. bottom: 0.017
  18276. }
  18277. },
  18278. maw: {
  18279. height: math.unit(2.97, "feet"),
  18280. name: "Maw",
  18281. image: {
  18282. source: "./media/characters/richard-dragon/maw.svg"
  18283. }
  18284. },
  18285. },
  18286. [
  18287. ]
  18288. ))
  18289. characterMakers.push(() => makeCharacter(
  18290. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18291. {
  18292. front: {
  18293. height: math.unit(4, "feet"),
  18294. weight: math.unit(100, "lb"),
  18295. name: "Front",
  18296. image: {
  18297. source: "./media/characters/richard-smeargle/front.svg",
  18298. extra: 2952 / 2820,
  18299. bottom: 0.028
  18300. }
  18301. },
  18302. },
  18303. [
  18304. {
  18305. name: "Normal",
  18306. height: math.unit(4, "feet"),
  18307. default: true
  18308. },
  18309. {
  18310. name: "Dynamax",
  18311. height: math.unit(20, "meters")
  18312. },
  18313. ]
  18314. ))
  18315. characterMakers.push(() => makeCharacter(
  18316. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18317. {
  18318. front: {
  18319. height: math.unit(6, "feet"),
  18320. weight: math.unit(110, "lb"),
  18321. name: "Front",
  18322. image: {
  18323. source: "./media/characters/klay/front.svg",
  18324. extra: 962 / 883,
  18325. bottom: 0.04
  18326. }
  18327. },
  18328. back: {
  18329. height: math.unit(6, "feet"),
  18330. weight: math.unit(110, "lb"),
  18331. name: "Back",
  18332. image: {
  18333. source: "./media/characters/klay/back.svg",
  18334. extra: 962 / 883
  18335. }
  18336. },
  18337. beans: {
  18338. height: math.unit(1.15, "feet"),
  18339. name: "Beans",
  18340. image: {
  18341. source: "./media/characters/klay/beans.svg"
  18342. }
  18343. },
  18344. },
  18345. [
  18346. {
  18347. name: "Micro",
  18348. height: math.unit(6, "inches")
  18349. },
  18350. {
  18351. name: "Mini",
  18352. height: math.unit(3, "feet")
  18353. },
  18354. {
  18355. name: "Normal",
  18356. height: math.unit(6, "feet"),
  18357. default: true
  18358. },
  18359. {
  18360. name: "Big",
  18361. height: math.unit(25, "feet")
  18362. },
  18363. {
  18364. name: "Macro",
  18365. height: math.unit(100, "feet")
  18366. },
  18367. {
  18368. name: "Megamacro",
  18369. height: math.unit(400, "feet")
  18370. },
  18371. ]
  18372. ))
  18373. characterMakers.push(() => makeCharacter(
  18374. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18375. {
  18376. front: {
  18377. height: math.unit(6, "feet"),
  18378. weight: math.unit(160, "lb"),
  18379. name: "Front",
  18380. image: {
  18381. source: "./media/characters/marcus/front.svg",
  18382. extra: 734 / 676,
  18383. bottom: 0.03
  18384. }
  18385. },
  18386. },
  18387. [
  18388. {
  18389. name: "Little",
  18390. height: math.unit(6, "feet")
  18391. },
  18392. {
  18393. name: "Normal",
  18394. height: math.unit(110, "feet"),
  18395. default: true
  18396. },
  18397. {
  18398. name: "Macro",
  18399. height: math.unit(250, "feet")
  18400. },
  18401. {
  18402. name: "Megamacro",
  18403. height: math.unit(1000, "feet")
  18404. },
  18405. ]
  18406. ))
  18407. characterMakers.push(() => makeCharacter(
  18408. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18409. {
  18410. front: {
  18411. height: math.unit(7, "feet"),
  18412. weight: math.unit(275, "lb"),
  18413. name: "Front",
  18414. image: {
  18415. source: "./media/characters/claude-delroute/front.svg",
  18416. extra: 230 / 214,
  18417. bottom: 0.007
  18418. }
  18419. },
  18420. side: {
  18421. height: math.unit(7, "feet"),
  18422. weight: math.unit(275, "lb"),
  18423. name: "Side",
  18424. image: {
  18425. source: "./media/characters/claude-delroute/side.svg",
  18426. extra: 222 / 214,
  18427. bottom: 0.01
  18428. }
  18429. },
  18430. back: {
  18431. height: math.unit(7, "feet"),
  18432. weight: math.unit(275, "lb"),
  18433. name: "Back",
  18434. image: {
  18435. source: "./media/characters/claude-delroute/back.svg",
  18436. extra: 230 / 214,
  18437. bottom: 0.015
  18438. }
  18439. },
  18440. maw: {
  18441. height: math.unit(0.6407, "meters"),
  18442. name: "Maw",
  18443. image: {
  18444. source: "./media/characters/claude-delroute/maw.svg"
  18445. }
  18446. },
  18447. },
  18448. [
  18449. {
  18450. name: "Normal",
  18451. height: math.unit(7, "feet"),
  18452. default: true
  18453. },
  18454. {
  18455. name: "Lorge",
  18456. height: math.unit(20, "feet")
  18457. },
  18458. ]
  18459. ))
  18460. characterMakers.push(() => makeCharacter(
  18461. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18462. {
  18463. front: {
  18464. height: math.unit(8 + 4 / 12, "feet"),
  18465. weight: math.unit(600, "lb"),
  18466. name: "Front",
  18467. image: {
  18468. source: "./media/characters/dragonien/front.svg",
  18469. extra: 100 / 94,
  18470. bottom: 3.3 / 103.3445
  18471. }
  18472. },
  18473. back: {
  18474. height: math.unit(8 + 4 / 12, "feet"),
  18475. weight: math.unit(600, "lb"),
  18476. name: "Back",
  18477. image: {
  18478. source: "./media/characters/dragonien/back.svg",
  18479. extra: 776 / 746,
  18480. bottom: 6.4 / 782.0616
  18481. }
  18482. },
  18483. foot: {
  18484. height: math.unit(1.54, "feet"),
  18485. name: "Foot",
  18486. image: {
  18487. source: "./media/characters/dragonien/foot.svg",
  18488. }
  18489. },
  18490. },
  18491. [
  18492. {
  18493. name: "Normal",
  18494. height: math.unit(8 + 4 / 12, "feet"),
  18495. default: true
  18496. },
  18497. {
  18498. name: "Macro",
  18499. height: math.unit(200, "feet")
  18500. },
  18501. {
  18502. name: "Megamacro",
  18503. height: math.unit(1, "mile")
  18504. },
  18505. {
  18506. name: "Gigamacro",
  18507. height: math.unit(1000, "miles")
  18508. },
  18509. ]
  18510. ))
  18511. characterMakers.push(() => makeCharacter(
  18512. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18513. {
  18514. front: {
  18515. height: math.unit(5 + 2 / 12, "feet"),
  18516. weight: math.unit(110, "lb"),
  18517. name: "Front",
  18518. image: {
  18519. source: "./media/characters/desta/front.svg",
  18520. extra: 767 / 726,
  18521. bottom: 11.7 / 779
  18522. }
  18523. },
  18524. back: {
  18525. height: math.unit(5 + 2 / 12, "feet"),
  18526. weight: math.unit(110, "lb"),
  18527. name: "Back",
  18528. image: {
  18529. source: "./media/characters/desta/back.svg",
  18530. extra: 777 / 728,
  18531. bottom: 6 / 784
  18532. }
  18533. },
  18534. frontAlt: {
  18535. height: math.unit(5 + 2 / 12, "feet"),
  18536. weight: math.unit(110, "lb"),
  18537. name: "Front",
  18538. image: {
  18539. source: "./media/characters/desta/front-alt.svg",
  18540. extra: 1482 / 1417
  18541. }
  18542. },
  18543. side: {
  18544. height: math.unit(5 + 2 / 12, "feet"),
  18545. weight: math.unit(110, "lb"),
  18546. name: "Side",
  18547. image: {
  18548. source: "./media/characters/desta/side.svg",
  18549. extra: 2579 / 2491,
  18550. bottom: 0.053
  18551. }
  18552. },
  18553. },
  18554. [
  18555. {
  18556. name: "Micro",
  18557. height: math.unit(6, "inches")
  18558. },
  18559. {
  18560. name: "Normal",
  18561. height: math.unit(5 + 2 / 12, "feet"),
  18562. default: true
  18563. },
  18564. {
  18565. name: "Macro",
  18566. height: math.unit(62, "feet")
  18567. },
  18568. {
  18569. name: "Megamacro",
  18570. height: math.unit(1800, "feet")
  18571. },
  18572. ]
  18573. ))
  18574. characterMakers.push(() => makeCharacter(
  18575. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18576. {
  18577. front: {
  18578. height: math.unit(10, "feet"),
  18579. weight: math.unit(700, "lb"),
  18580. name: "Front",
  18581. image: {
  18582. source: "./media/characters/storm-alystar/front.svg",
  18583. extra: 2112 / 1898,
  18584. bottom: 0.034
  18585. }
  18586. },
  18587. },
  18588. [
  18589. {
  18590. name: "Micro",
  18591. height: math.unit(3.5, "inches")
  18592. },
  18593. {
  18594. name: "Normal",
  18595. height: math.unit(10, "feet"),
  18596. default: true
  18597. },
  18598. {
  18599. name: "Macro",
  18600. height: math.unit(400, "feet")
  18601. },
  18602. {
  18603. name: "Deific",
  18604. height: math.unit(60, "miles")
  18605. },
  18606. ]
  18607. ))
  18608. characterMakers.push(() => makeCharacter(
  18609. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18610. {
  18611. front: {
  18612. height: math.unit(2.35, "meters"),
  18613. weight: math.unit(119, "kg"),
  18614. name: "Front",
  18615. image: {
  18616. source: "./media/characters/ilia/front.svg",
  18617. extra: 1285 / 1255,
  18618. bottom: 0.06
  18619. }
  18620. },
  18621. },
  18622. [
  18623. {
  18624. name: "Normal",
  18625. height: math.unit(2.35, "meters")
  18626. },
  18627. {
  18628. name: "Macro",
  18629. height: math.unit(140, "meters"),
  18630. default: true
  18631. },
  18632. {
  18633. name: "Megamacro",
  18634. height: math.unit(100, "miles")
  18635. },
  18636. ]
  18637. ))
  18638. characterMakers.push(() => makeCharacter(
  18639. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18640. {
  18641. front: {
  18642. height: math.unit(6 + 5 / 12, "feet"),
  18643. weight: math.unit(190, "lb"),
  18644. name: "Front",
  18645. image: {
  18646. source: "./media/characters/kingdead/front.svg",
  18647. extra: 1228 / 1177
  18648. }
  18649. },
  18650. },
  18651. [
  18652. {
  18653. name: "Micro",
  18654. height: math.unit(7, "inches")
  18655. },
  18656. {
  18657. name: "Normal",
  18658. height: math.unit(6 + 5 / 12, "feet")
  18659. },
  18660. {
  18661. name: "Macro",
  18662. height: math.unit(150, "feet"),
  18663. default: true
  18664. },
  18665. {
  18666. name: "Megamacro",
  18667. height: math.unit(200, "miles")
  18668. },
  18669. ]
  18670. ))
  18671. characterMakers.push(() => makeCharacter(
  18672. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18673. {
  18674. front: {
  18675. height: math.unit(8, "feet"),
  18676. weight: math.unit(600, "lb"),
  18677. name: "Front",
  18678. image: {
  18679. source: "./media/characters/kyrehx/front.svg",
  18680. extra: 1195 / 1095,
  18681. bottom: 0.034
  18682. }
  18683. },
  18684. },
  18685. [
  18686. {
  18687. name: "Micro",
  18688. height: math.unit(2, "inches")
  18689. },
  18690. {
  18691. name: "Normal",
  18692. height: math.unit(8, "feet"),
  18693. default: true
  18694. },
  18695. {
  18696. name: "Macro",
  18697. height: math.unit(255, "feet")
  18698. },
  18699. ]
  18700. ))
  18701. characterMakers.push(() => makeCharacter(
  18702. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18703. {
  18704. front: {
  18705. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18706. weight: math.unit(184, "lb"),
  18707. name: "Front",
  18708. image: {
  18709. source: "./media/characters/xang/front.svg",
  18710. extra: 845 / 755
  18711. }
  18712. },
  18713. },
  18714. [
  18715. {
  18716. name: "Normal",
  18717. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18718. default: true
  18719. },
  18720. {
  18721. name: "Macro",
  18722. height: math.unit(0.935 * 146, "feet")
  18723. },
  18724. {
  18725. name: "Megamacro",
  18726. height: math.unit(0.935 * 3, "miles")
  18727. },
  18728. ]
  18729. ))
  18730. characterMakers.push(() => makeCharacter(
  18731. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18732. {
  18733. frontDressed: {
  18734. height: math.unit(5 + 7 / 12, "feet"),
  18735. weight: math.unit(140, "lb"),
  18736. name: "Front (Dressed)",
  18737. image: {
  18738. source: "./media/characters/doc-weardno/front-dressed.svg",
  18739. extra: 263 / 234
  18740. }
  18741. },
  18742. backDressed: {
  18743. height: math.unit(5 + 7 / 12, "feet"),
  18744. weight: math.unit(140, "lb"),
  18745. name: "Back (Dressed)",
  18746. image: {
  18747. source: "./media/characters/doc-weardno/back-dressed.svg",
  18748. extra: 266 / 238
  18749. }
  18750. },
  18751. front: {
  18752. height: math.unit(5 + 7 / 12, "feet"),
  18753. weight: math.unit(140, "lb"),
  18754. name: "Front",
  18755. image: {
  18756. source: "./media/characters/doc-weardno/front.svg",
  18757. extra: 254 / 233
  18758. }
  18759. },
  18760. },
  18761. [
  18762. {
  18763. name: "Micro",
  18764. height: math.unit(3, "inches")
  18765. },
  18766. {
  18767. name: "Normal",
  18768. height: math.unit(5 + 7 / 12, "feet"),
  18769. default: true
  18770. },
  18771. {
  18772. name: "Macro",
  18773. height: math.unit(25, "feet")
  18774. },
  18775. {
  18776. name: "Megamacro",
  18777. height: math.unit(2, "miles")
  18778. },
  18779. ]
  18780. ))
  18781. characterMakers.push(() => makeCharacter(
  18782. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18783. {
  18784. front: {
  18785. height: math.unit(6 + 2 / 12, "feet"),
  18786. weight: math.unit(153, "lb"),
  18787. name: "Front",
  18788. image: {
  18789. source: "./media/characters/seth-whilst/front.svg",
  18790. bottom: 0.07
  18791. }
  18792. },
  18793. },
  18794. [
  18795. {
  18796. name: "Micro",
  18797. height: math.unit(5, "inches")
  18798. },
  18799. {
  18800. name: "Normal",
  18801. height: math.unit(6 + 2 / 12, "feet"),
  18802. default: true
  18803. },
  18804. ]
  18805. ))
  18806. characterMakers.push(() => makeCharacter(
  18807. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18808. {
  18809. front: {
  18810. height: math.unit(3, "inches"),
  18811. weight: math.unit(8, "grams"),
  18812. name: "Front",
  18813. image: {
  18814. source: "./media/characters/pocket-jabari/front.svg",
  18815. extra: 1024 / 974,
  18816. bottom: 0.039
  18817. }
  18818. },
  18819. },
  18820. [
  18821. {
  18822. name: "Minimicro",
  18823. height: math.unit(8, "mm")
  18824. },
  18825. {
  18826. name: "Micro",
  18827. height: math.unit(3, "inches"),
  18828. default: true
  18829. },
  18830. {
  18831. name: "Normal",
  18832. height: math.unit(3, "feet")
  18833. },
  18834. ]
  18835. ))
  18836. characterMakers.push(() => makeCharacter(
  18837. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18838. {
  18839. front: {
  18840. height: math.unit(15, "feet"),
  18841. weight: math.unit(3280, "lb"),
  18842. name: "Front",
  18843. image: {
  18844. source: "./media/characters/sapphy/front.svg",
  18845. extra: 671 / 577,
  18846. bottom: 0.085
  18847. }
  18848. },
  18849. back: {
  18850. height: math.unit(15, "feet"),
  18851. weight: math.unit(3280, "lb"),
  18852. name: "Back",
  18853. image: {
  18854. source: "./media/characters/sapphy/back.svg",
  18855. extra: 631 / 607,
  18856. bottom: 0.045
  18857. }
  18858. },
  18859. },
  18860. [
  18861. {
  18862. name: "Normal",
  18863. height: math.unit(15, "feet")
  18864. },
  18865. {
  18866. name: "Casual Macro",
  18867. height: math.unit(120, "feet")
  18868. },
  18869. {
  18870. name: "Macro",
  18871. height: math.unit(2150, "feet"),
  18872. default: true
  18873. },
  18874. {
  18875. name: "Megamacro",
  18876. height: math.unit(8, "miles")
  18877. },
  18878. {
  18879. name: "Galaxy Mom",
  18880. height: math.unit(6, "megalightyears")
  18881. },
  18882. ]
  18883. ))
  18884. characterMakers.push(() => makeCharacter(
  18885. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18886. {
  18887. front: {
  18888. height: math.unit(6, "feet"),
  18889. weight: math.unit(170, "lb"),
  18890. name: "Front",
  18891. image: {
  18892. source: "./media/characters/kiro/front.svg",
  18893. extra: 1064 / 1012,
  18894. bottom: 0.052
  18895. }
  18896. },
  18897. },
  18898. [
  18899. {
  18900. name: "Micro",
  18901. height: math.unit(6, "inches")
  18902. },
  18903. {
  18904. name: "Normal",
  18905. height: math.unit(6, "feet"),
  18906. default: true
  18907. },
  18908. {
  18909. name: "Macro",
  18910. height: math.unit(72, "feet")
  18911. },
  18912. ]
  18913. ))
  18914. characterMakers.push(() => makeCharacter(
  18915. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18916. {
  18917. front: {
  18918. height: math.unit(5 + 9 / 12, "feet"),
  18919. weight: math.unit(175, "lb"),
  18920. name: "Front",
  18921. image: {
  18922. source: "./media/characters/irishfox/front.svg",
  18923. extra: 1912 / 1680,
  18924. bottom: 0.02
  18925. }
  18926. },
  18927. },
  18928. [
  18929. {
  18930. name: "Nano",
  18931. height: math.unit(1, "mm")
  18932. },
  18933. {
  18934. name: "Micro",
  18935. height: math.unit(2, "inches")
  18936. },
  18937. {
  18938. name: "Normal",
  18939. height: math.unit(5 + 9 / 12, "feet"),
  18940. default: true
  18941. },
  18942. {
  18943. name: "Macro",
  18944. height: math.unit(45, "feet")
  18945. },
  18946. ]
  18947. ))
  18948. characterMakers.push(() => makeCharacter(
  18949. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18950. {
  18951. front: {
  18952. height: math.unit(6 + 1 / 12, "feet"),
  18953. weight: math.unit(75, "lb"),
  18954. name: "Front",
  18955. image: {
  18956. source: "./media/characters/aronai-sieyes/front.svg",
  18957. extra: 1556 / 1480,
  18958. bottom: 0.015
  18959. }
  18960. },
  18961. side: {
  18962. height: math.unit(6 + 1 / 12, "feet"),
  18963. weight: math.unit(75, "lb"),
  18964. name: "Side",
  18965. image: {
  18966. source: "./media/characters/aronai-sieyes/side.svg",
  18967. extra: 1433 / 1390,
  18968. bottom: 0.0393
  18969. }
  18970. },
  18971. back: {
  18972. height: math.unit(6 + 1 / 12, "feet"),
  18973. weight: math.unit(75, "lb"),
  18974. name: "Back",
  18975. image: {
  18976. source: "./media/characters/aronai-sieyes/back.svg",
  18977. extra: 1544 / 1494,
  18978. bottom: 0.02
  18979. }
  18980. },
  18981. frontClothed: {
  18982. height: math.unit(6 + 1 / 12, "feet"),
  18983. weight: math.unit(75, "lb"),
  18984. name: "Front (Clothed)",
  18985. image: {
  18986. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18987. extra: 1582 / 1527
  18988. }
  18989. },
  18990. feral: {
  18991. height: math.unit(18, "feet"),
  18992. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18993. name: "Feral",
  18994. image: {
  18995. source: "./media/characters/aronai-sieyes/feral.svg",
  18996. extra: 1530 / 1240,
  18997. bottom: 0.035
  18998. }
  18999. },
  19000. },
  19001. [
  19002. {
  19003. name: "Micro",
  19004. height: math.unit(2, "inches")
  19005. },
  19006. {
  19007. name: "Normal",
  19008. height: math.unit(6 + 1 / 12, "feet"),
  19009. default: true
  19010. }
  19011. ]
  19012. ))
  19013. characterMakers.push(() => makeCharacter(
  19014. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19015. {
  19016. front: {
  19017. height: math.unit(12, "feet"),
  19018. weight: math.unit(410, "kg"),
  19019. name: "Front",
  19020. image: {
  19021. source: "./media/characters/xuna/front.svg",
  19022. extra: 2184 / 1980
  19023. }
  19024. },
  19025. side: {
  19026. height: math.unit(12, "feet"),
  19027. weight: math.unit(410, "kg"),
  19028. name: "Side",
  19029. image: {
  19030. source: "./media/characters/xuna/side.svg",
  19031. extra: 2184 / 1980
  19032. }
  19033. },
  19034. back: {
  19035. height: math.unit(12, "feet"),
  19036. weight: math.unit(410, "kg"),
  19037. name: "Back",
  19038. image: {
  19039. source: "./media/characters/xuna/back.svg",
  19040. extra: 2184 / 1980
  19041. }
  19042. },
  19043. },
  19044. [
  19045. {
  19046. name: "Nano glow",
  19047. height: math.unit(10, "nm")
  19048. },
  19049. {
  19050. name: "Micro floof",
  19051. height: math.unit(0.3, "m")
  19052. },
  19053. {
  19054. name: "Huggable softy boi",
  19055. height: math.unit(3.6576, "m"),
  19056. default: true
  19057. },
  19058. {
  19059. name: "Admirable floof",
  19060. height: math.unit(80, "meters")
  19061. },
  19062. {
  19063. name: "Gentle macro",
  19064. height: math.unit(300, "meters")
  19065. },
  19066. {
  19067. name: "Very careful floof",
  19068. height: math.unit(3200, "meters")
  19069. },
  19070. {
  19071. name: "The mega floof",
  19072. height: math.unit(36000, "meters")
  19073. },
  19074. {
  19075. name: "Giga-fur-Wicker",
  19076. height: math.unit(4800000, "meters")
  19077. },
  19078. {
  19079. name: "Licky world",
  19080. height: math.unit(20000000, "meters")
  19081. },
  19082. {
  19083. name: "Floofy cyan sun",
  19084. height: math.unit(1500000000, "meters")
  19085. },
  19086. {
  19087. name: "Milky Wicker",
  19088. height: math.unit(1000000000000000000000, "meters")
  19089. },
  19090. {
  19091. name: "The observing Wicker",
  19092. height: math.unit(999999999999999999999999999, "meters")
  19093. },
  19094. ]
  19095. ))
  19096. characterMakers.push(() => makeCharacter(
  19097. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19098. {
  19099. front: {
  19100. height: math.unit(5 + 9 / 12, "feet"),
  19101. weight: math.unit(150, "lb"),
  19102. name: "Front",
  19103. image: {
  19104. source: "./media/characters/arokha-sieyes/front.svg",
  19105. extra: 1425 / 1284,
  19106. bottom: 0.05
  19107. }
  19108. },
  19109. },
  19110. [
  19111. {
  19112. name: "Normal",
  19113. height: math.unit(5 + 9 / 12, "feet")
  19114. },
  19115. {
  19116. name: "Macro",
  19117. height: math.unit(30, "meters"),
  19118. default: true
  19119. },
  19120. ]
  19121. ))
  19122. characterMakers.push(() => makeCharacter(
  19123. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19124. {
  19125. front: {
  19126. height: math.unit(6, "feet"),
  19127. weight: math.unit(180, "lb"),
  19128. name: "Front",
  19129. image: {
  19130. source: "./media/characters/arokh-sieyes/front.svg",
  19131. extra: 1830 / 1769,
  19132. bottom: 0.01
  19133. }
  19134. },
  19135. },
  19136. [
  19137. {
  19138. name: "Normal",
  19139. height: math.unit(6, "feet")
  19140. },
  19141. {
  19142. name: "Macro",
  19143. height: math.unit(30, "meters"),
  19144. default: true
  19145. },
  19146. ]
  19147. ))
  19148. characterMakers.push(() => makeCharacter(
  19149. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19150. {
  19151. side: {
  19152. height: math.unit(13 + 1 / 12, "feet"),
  19153. weight: math.unit(8.5, "tonnes"),
  19154. name: "Side",
  19155. image: {
  19156. source: "./media/characters/goldeneye/side.svg",
  19157. extra: 1182 / 778,
  19158. bottom: 0.067
  19159. }
  19160. },
  19161. paw: {
  19162. height: math.unit(3.4, "feet"),
  19163. name: "Paw",
  19164. image: {
  19165. source: "./media/characters/goldeneye/paw.svg"
  19166. }
  19167. },
  19168. },
  19169. [
  19170. {
  19171. name: "Normal",
  19172. height: math.unit(13 + 1 / 12, "feet"),
  19173. default: true
  19174. },
  19175. ]
  19176. ))
  19177. characterMakers.push(() => makeCharacter(
  19178. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19179. {
  19180. front: {
  19181. height: math.unit(6 + 1 / 12, "feet"),
  19182. weight: math.unit(210, "lb"),
  19183. name: "Front",
  19184. image: {
  19185. source: "./media/characters/leonardo-lycheborne/front.svg",
  19186. extra: 776/723,
  19187. bottom: 34/810
  19188. }
  19189. },
  19190. side: {
  19191. height: math.unit(6 + 1 / 12, "feet"),
  19192. weight: math.unit(210, "lb"),
  19193. name: "Side",
  19194. image: {
  19195. source: "./media/characters/leonardo-lycheborne/side.svg",
  19196. extra: 780/728,
  19197. bottom: 12/792
  19198. }
  19199. },
  19200. back: {
  19201. height: math.unit(6 + 1 / 12, "feet"),
  19202. weight: math.unit(210, "lb"),
  19203. name: "Back",
  19204. image: {
  19205. source: "./media/characters/leonardo-lycheborne/back.svg",
  19206. extra: 775/721,
  19207. bottom: 17/792
  19208. }
  19209. },
  19210. hand: {
  19211. height: math.unit(1.08, "feet"),
  19212. name: "Hand",
  19213. image: {
  19214. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19215. }
  19216. },
  19217. foot: {
  19218. height: math.unit(1.32, "feet"),
  19219. name: "Foot",
  19220. image: {
  19221. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19222. }
  19223. },
  19224. maw: {
  19225. height: math.unit(1, "feet"),
  19226. name: "Maw",
  19227. image: {
  19228. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19229. }
  19230. },
  19231. were: {
  19232. height: math.unit(20, "feet"),
  19233. weight: math.unit(7800, "lb"),
  19234. name: "Were",
  19235. image: {
  19236. source: "./media/characters/leonardo-lycheborne/were.svg",
  19237. extra: 1224/1165,
  19238. bottom: 72/1296
  19239. }
  19240. },
  19241. feral: {
  19242. height: math.unit(7.5, "feet"),
  19243. weight: math.unit(600, "lb"),
  19244. name: "Feral",
  19245. image: {
  19246. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19247. extra: 797/702,
  19248. bottom: 139/936
  19249. }
  19250. },
  19251. taur: {
  19252. height: math.unit(11, "feet"),
  19253. weight: math.unit(3300, "lb"),
  19254. name: "Taur",
  19255. image: {
  19256. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19257. extra: 1271/1197,
  19258. bottom: 47/1318
  19259. }
  19260. },
  19261. barghest: {
  19262. height: math.unit(11, "feet"),
  19263. weight: math.unit(1300, "lb"),
  19264. name: "Barghest",
  19265. image: {
  19266. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19267. extra: 1291/1204,
  19268. bottom: 37/1328
  19269. }
  19270. },
  19271. dick: {
  19272. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19273. name: "Dick",
  19274. image: {
  19275. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19276. }
  19277. },
  19278. dickWere: {
  19279. height: math.unit((20) / 3.8, "feet"),
  19280. name: "Dick (Were)",
  19281. image: {
  19282. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19283. }
  19284. },
  19285. },
  19286. [
  19287. {
  19288. name: "Normal",
  19289. height: math.unit(6 + 1 / 12, "feet"),
  19290. default: true
  19291. },
  19292. ]
  19293. ))
  19294. characterMakers.push(() => makeCharacter(
  19295. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19296. {
  19297. front: {
  19298. height: math.unit(10, "feet"),
  19299. weight: math.unit(350, "lb"),
  19300. name: "Front",
  19301. image: {
  19302. source: "./media/characters/jet/front.svg",
  19303. extra: 2050 / 1980,
  19304. bottom: 0.013
  19305. }
  19306. },
  19307. back: {
  19308. height: math.unit(10, "feet"),
  19309. weight: math.unit(350, "lb"),
  19310. name: "Back",
  19311. image: {
  19312. source: "./media/characters/jet/back.svg",
  19313. extra: 2050 / 1980,
  19314. bottom: 0.013
  19315. }
  19316. },
  19317. },
  19318. [
  19319. {
  19320. name: "Micro",
  19321. height: math.unit(6, "inches")
  19322. },
  19323. {
  19324. name: "Normal",
  19325. height: math.unit(10, "feet"),
  19326. default: true
  19327. },
  19328. {
  19329. name: "Macro",
  19330. height: math.unit(100, "feet")
  19331. },
  19332. ]
  19333. ))
  19334. characterMakers.push(() => makeCharacter(
  19335. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19336. {
  19337. front: {
  19338. height: math.unit(15, "feet"),
  19339. weight: math.unit(2800, "lb"),
  19340. name: "Front",
  19341. image: {
  19342. source: "./media/characters/tanarath/front.svg",
  19343. extra: 2392 / 2220,
  19344. bottom: 0.03
  19345. }
  19346. },
  19347. back: {
  19348. height: math.unit(15, "feet"),
  19349. weight: math.unit(2800, "lb"),
  19350. name: "Back",
  19351. image: {
  19352. source: "./media/characters/tanarath/back.svg",
  19353. extra: 2392 / 2220,
  19354. bottom: 0.03
  19355. }
  19356. },
  19357. },
  19358. [
  19359. {
  19360. name: "Normal",
  19361. height: math.unit(15, "feet"),
  19362. default: true
  19363. },
  19364. ]
  19365. ))
  19366. characterMakers.push(() => makeCharacter(
  19367. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19368. {
  19369. front: {
  19370. height: math.unit(7 + 1 / 12, "feet"),
  19371. weight: math.unit(175, "lb"),
  19372. name: "Front",
  19373. image: {
  19374. source: "./media/characters/patty-cattybatty/front.svg",
  19375. extra: 908 / 874,
  19376. bottom: 0.025
  19377. }
  19378. },
  19379. },
  19380. [
  19381. {
  19382. name: "Micro",
  19383. height: math.unit(1, "inch")
  19384. },
  19385. {
  19386. name: "Normal",
  19387. height: math.unit(7 + 1 / 12, "feet")
  19388. },
  19389. {
  19390. name: "Mini Macro",
  19391. height: math.unit(155, "feet")
  19392. },
  19393. {
  19394. name: "Macro",
  19395. height: math.unit(1077, "feet")
  19396. },
  19397. {
  19398. name: "Mega Macro",
  19399. height: math.unit(47650, "feet"),
  19400. default: true
  19401. },
  19402. {
  19403. name: "Giga Macro",
  19404. height: math.unit(440, "miles")
  19405. },
  19406. {
  19407. name: "Tera Macro",
  19408. height: math.unit(8700, "miles")
  19409. },
  19410. {
  19411. name: "Planetary Macro",
  19412. height: math.unit(32700, "miles")
  19413. },
  19414. {
  19415. name: "Solar Macro",
  19416. height: math.unit(550000, "miles")
  19417. },
  19418. {
  19419. name: "Celestial Macro",
  19420. height: math.unit(2.5, "AU")
  19421. },
  19422. ]
  19423. ))
  19424. characterMakers.push(() => makeCharacter(
  19425. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19426. {
  19427. front: {
  19428. height: math.unit(4 + 5 / 12, "feet"),
  19429. weight: math.unit(90, "lb"),
  19430. name: "Front",
  19431. image: {
  19432. source: "./media/characters/cappu/front.svg",
  19433. extra: 1247 / 1152,
  19434. bottom: 0.012
  19435. }
  19436. },
  19437. },
  19438. [
  19439. {
  19440. name: "Normal",
  19441. height: math.unit(4 + 5 / 12, "feet"),
  19442. default: true
  19443. },
  19444. ]
  19445. ))
  19446. characterMakers.push(() => makeCharacter(
  19447. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19448. {
  19449. frontDressed: {
  19450. height: math.unit(70, "cm"),
  19451. weight: math.unit(6, "kg"),
  19452. name: "Front (Dressed)",
  19453. image: {
  19454. source: "./media/characters/sebi/front-dressed.svg",
  19455. extra: 713.5 / 686.5,
  19456. bottom: 0.003
  19457. }
  19458. },
  19459. front: {
  19460. height: math.unit(70, "cm"),
  19461. weight: math.unit(5, "kg"),
  19462. name: "Front",
  19463. image: {
  19464. source: "./media/characters/sebi/front.svg",
  19465. extra: 713.5 / 686.5,
  19466. bottom: 0.003
  19467. }
  19468. }
  19469. },
  19470. [
  19471. {
  19472. name: "Normal",
  19473. height: math.unit(70, "cm"),
  19474. default: true
  19475. },
  19476. {
  19477. name: "Macro",
  19478. height: math.unit(8, "meters")
  19479. },
  19480. ]
  19481. ))
  19482. characterMakers.push(() => makeCharacter(
  19483. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19484. {
  19485. front: {
  19486. height: math.unit(6, "feet"),
  19487. weight: math.unit(150, "lb"),
  19488. name: "Front",
  19489. image: {
  19490. source: "./media/characters/typhek/front.svg",
  19491. extra: 1948 / 1929,
  19492. bottom: 0.025
  19493. }
  19494. },
  19495. side: {
  19496. height: math.unit(6, "feet"),
  19497. weight: math.unit(150, "lb"),
  19498. name: "Side",
  19499. image: {
  19500. source: "./media/characters/typhek/side.svg",
  19501. extra: 2034 / 2010,
  19502. bottom: 0.003
  19503. }
  19504. },
  19505. back: {
  19506. height: math.unit(6, "feet"),
  19507. weight: math.unit(150, "lb"),
  19508. name: "Back",
  19509. image: {
  19510. source: "./media/characters/typhek/back.svg",
  19511. extra: 2005 / 1978,
  19512. bottom: 0.004
  19513. }
  19514. },
  19515. palm: {
  19516. height: math.unit(1.2, "feet"),
  19517. name: "Palm",
  19518. image: {
  19519. source: "./media/characters/typhek/palm.svg"
  19520. }
  19521. },
  19522. fist: {
  19523. height: math.unit(1.1, "feet"),
  19524. name: "Fist",
  19525. image: {
  19526. source: "./media/characters/typhek/fist.svg"
  19527. }
  19528. },
  19529. foot: {
  19530. height: math.unit(1.57, "feet"),
  19531. name: "Foot",
  19532. image: {
  19533. source: "./media/characters/typhek/foot.svg"
  19534. }
  19535. },
  19536. sole: {
  19537. height: math.unit(2.05, "feet"),
  19538. name: "Sole",
  19539. image: {
  19540. source: "./media/characters/typhek/sole.svg"
  19541. }
  19542. },
  19543. },
  19544. [
  19545. {
  19546. name: "Macro",
  19547. height: math.unit(40, "stories"),
  19548. default: true
  19549. },
  19550. {
  19551. name: "Megamacro",
  19552. height: math.unit(1, "mile")
  19553. },
  19554. {
  19555. name: "Gigamacro",
  19556. height: math.unit(4000, "solarradii")
  19557. },
  19558. {
  19559. name: "Universal",
  19560. height: math.unit(1.1, "universes")
  19561. }
  19562. ]
  19563. ))
  19564. characterMakers.push(() => makeCharacter(
  19565. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19566. {
  19567. side: {
  19568. height: math.unit(5 + 7 / 12, "feet"),
  19569. weight: math.unit(150, "lb"),
  19570. name: "Side",
  19571. image: {
  19572. source: "./media/characters/kassy/side.svg",
  19573. extra: 1280 / 1225,
  19574. bottom: 0.002
  19575. }
  19576. },
  19577. front: {
  19578. height: math.unit(5 + 7 / 12, "feet"),
  19579. weight: math.unit(150, "lb"),
  19580. name: "Front",
  19581. image: {
  19582. source: "./media/characters/kassy/front.svg",
  19583. extra: 1280 / 1225,
  19584. bottom: 0.025
  19585. }
  19586. },
  19587. back: {
  19588. height: math.unit(5 + 7 / 12, "feet"),
  19589. weight: math.unit(150, "lb"),
  19590. name: "Back",
  19591. image: {
  19592. source: "./media/characters/kassy/back.svg",
  19593. extra: 1280 / 1225,
  19594. bottom: 0.002
  19595. }
  19596. },
  19597. foot: {
  19598. height: math.unit(1.266, "feet"),
  19599. name: "Foot",
  19600. image: {
  19601. source: "./media/characters/kassy/foot.svg"
  19602. }
  19603. },
  19604. },
  19605. [
  19606. {
  19607. name: "Normal",
  19608. height: math.unit(5 + 7 / 12, "feet")
  19609. },
  19610. {
  19611. name: "Macro",
  19612. height: math.unit(137, "feet"),
  19613. default: true
  19614. },
  19615. {
  19616. name: "Megamacro",
  19617. height: math.unit(1, "mile")
  19618. },
  19619. ]
  19620. ))
  19621. characterMakers.push(() => makeCharacter(
  19622. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19623. {
  19624. front: {
  19625. height: math.unit(6 + 1 / 12, "feet"),
  19626. weight: math.unit(200, "lb"),
  19627. name: "Front",
  19628. image: {
  19629. source: "./media/characters/neil/front.svg",
  19630. extra: 1326 / 1250,
  19631. bottom: 0.023
  19632. }
  19633. },
  19634. },
  19635. [
  19636. {
  19637. name: "Normal",
  19638. height: math.unit(6 + 1 / 12, "feet"),
  19639. default: true
  19640. },
  19641. {
  19642. name: "Macro",
  19643. height: math.unit(200, "feet")
  19644. },
  19645. ]
  19646. ))
  19647. characterMakers.push(() => makeCharacter(
  19648. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19649. {
  19650. front: {
  19651. height: math.unit(5 + 9 / 12, "feet"),
  19652. weight: math.unit(190, "lb"),
  19653. name: "Front",
  19654. image: {
  19655. source: "./media/characters/atticus/front.svg",
  19656. extra: 2934 / 2785,
  19657. bottom: 0.025
  19658. }
  19659. },
  19660. },
  19661. [
  19662. {
  19663. name: "Normal",
  19664. height: math.unit(5 + 9 / 12, "feet"),
  19665. default: true
  19666. },
  19667. {
  19668. name: "Macro",
  19669. height: math.unit(180, "feet")
  19670. },
  19671. ]
  19672. ))
  19673. characterMakers.push(() => makeCharacter(
  19674. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19675. {
  19676. side: {
  19677. height: math.unit(9, "feet"),
  19678. weight: math.unit(650, "lb"),
  19679. name: "Side",
  19680. image: {
  19681. source: "./media/characters/milo/side.svg",
  19682. extra: 2644 / 2310,
  19683. bottom: 0.032
  19684. }
  19685. },
  19686. },
  19687. [
  19688. {
  19689. name: "Normal",
  19690. height: math.unit(9, "feet"),
  19691. default: true
  19692. },
  19693. {
  19694. name: "Macro",
  19695. height: math.unit(300, "feet")
  19696. },
  19697. ]
  19698. ))
  19699. characterMakers.push(() => makeCharacter(
  19700. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19701. {
  19702. side: {
  19703. height: math.unit(8, "meters"),
  19704. weight: math.unit(90000, "kg"),
  19705. name: "Side",
  19706. image: {
  19707. source: "./media/characters/ijzer/side.svg",
  19708. extra: 2756 / 1600,
  19709. bottom: 0.01
  19710. }
  19711. },
  19712. },
  19713. [
  19714. {
  19715. name: "Small",
  19716. height: math.unit(3, "meters")
  19717. },
  19718. {
  19719. name: "Normal",
  19720. height: math.unit(8, "meters"),
  19721. default: true
  19722. },
  19723. {
  19724. name: "Normal+",
  19725. height: math.unit(10, "meters")
  19726. },
  19727. {
  19728. name: "Bigger",
  19729. height: math.unit(24, "meters")
  19730. },
  19731. {
  19732. name: "Huge",
  19733. height: math.unit(80, "meters")
  19734. },
  19735. ]
  19736. ))
  19737. characterMakers.push(() => makeCharacter(
  19738. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19739. {
  19740. front: {
  19741. height: math.unit(6 + 2 / 12, "feet"),
  19742. weight: math.unit(153, "lb"),
  19743. name: "Front",
  19744. image: {
  19745. source: "./media/characters/luca-cervicum/front.svg",
  19746. extra: 370 / 327,
  19747. bottom: 0.015
  19748. }
  19749. },
  19750. back: {
  19751. height: math.unit(6 + 2 / 12, "feet"),
  19752. weight: math.unit(153, "lb"),
  19753. name: "Back",
  19754. image: {
  19755. source: "./media/characters/luca-cervicum/back.svg",
  19756. extra: 367 / 333,
  19757. bottom: 0.005
  19758. }
  19759. },
  19760. frontGear: {
  19761. height: math.unit(6 + 2 / 12, "feet"),
  19762. weight: math.unit(173, "lb"),
  19763. name: "Front (Gear)",
  19764. image: {
  19765. source: "./media/characters/luca-cervicum/front-gear.svg",
  19766. extra: 377 / 333,
  19767. bottom: 0.006
  19768. }
  19769. },
  19770. },
  19771. [
  19772. {
  19773. name: "Normal",
  19774. height: math.unit(6 + 2 / 12, "feet"),
  19775. default: true
  19776. },
  19777. ]
  19778. ))
  19779. characterMakers.push(() => makeCharacter(
  19780. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19781. {
  19782. front: {
  19783. height: math.unit(6 + 1 / 12, "feet"),
  19784. weight: math.unit(304, "lb"),
  19785. name: "Front",
  19786. image: {
  19787. source: "./media/characters/oliver/front.svg",
  19788. extra: 157 / 143,
  19789. bottom: 0.08
  19790. }
  19791. },
  19792. },
  19793. [
  19794. {
  19795. name: "Normal",
  19796. height: math.unit(6 + 1 / 12, "feet"),
  19797. default: true
  19798. },
  19799. ]
  19800. ))
  19801. characterMakers.push(() => makeCharacter(
  19802. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19803. {
  19804. front: {
  19805. height: math.unit(5 + 7 / 12, "feet"),
  19806. weight: math.unit(140, "lb"),
  19807. name: "Front",
  19808. image: {
  19809. source: "./media/characters/shane/front.svg",
  19810. extra: 304 / 289,
  19811. bottom: 0.005
  19812. }
  19813. },
  19814. },
  19815. [
  19816. {
  19817. name: "Normal",
  19818. height: math.unit(5 + 7 / 12, "feet"),
  19819. default: true
  19820. },
  19821. ]
  19822. ))
  19823. characterMakers.push(() => makeCharacter(
  19824. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19825. {
  19826. front: {
  19827. height: math.unit(5 + 9 / 12, "feet"),
  19828. weight: math.unit(178, "lb"),
  19829. name: "Front",
  19830. image: {
  19831. source: "./media/characters/shin/front.svg",
  19832. extra: 159 / 151,
  19833. bottom: 0.015
  19834. }
  19835. },
  19836. },
  19837. [
  19838. {
  19839. name: "Normal",
  19840. height: math.unit(5 + 9 / 12, "feet"),
  19841. default: true
  19842. },
  19843. ]
  19844. ))
  19845. characterMakers.push(() => makeCharacter(
  19846. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19847. {
  19848. front: {
  19849. height: math.unit(5 + 10 / 12, "feet"),
  19850. weight: math.unit(168, "lb"),
  19851. name: "Front",
  19852. image: {
  19853. source: "./media/characters/xerxes/front.svg",
  19854. extra: 282 / 260,
  19855. bottom: 0.045
  19856. }
  19857. },
  19858. },
  19859. [
  19860. {
  19861. name: "Normal",
  19862. height: math.unit(5 + 10 / 12, "feet"),
  19863. default: true
  19864. },
  19865. ]
  19866. ))
  19867. characterMakers.push(() => makeCharacter(
  19868. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19869. {
  19870. front: {
  19871. height: math.unit(6 + 7 / 12, "feet"),
  19872. weight: math.unit(208, "lb"),
  19873. name: "Front",
  19874. image: {
  19875. source: "./media/characters/chaska/front.svg",
  19876. extra: 332 / 319,
  19877. bottom: 0.015
  19878. }
  19879. },
  19880. },
  19881. [
  19882. {
  19883. name: "Normal",
  19884. height: math.unit(6 + 7 / 12, "feet"),
  19885. default: true
  19886. },
  19887. ]
  19888. ))
  19889. characterMakers.push(() => makeCharacter(
  19890. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19891. {
  19892. front: {
  19893. height: math.unit(5 + 8 / 12, "feet"),
  19894. weight: math.unit(208, "lb"),
  19895. name: "Front",
  19896. image: {
  19897. source: "./media/characters/enuk/front.svg",
  19898. extra: 437 / 406,
  19899. bottom: 0.02
  19900. }
  19901. },
  19902. },
  19903. [
  19904. {
  19905. name: "Normal",
  19906. height: math.unit(5 + 8 / 12, "feet"),
  19907. default: true
  19908. },
  19909. ]
  19910. ))
  19911. characterMakers.push(() => makeCharacter(
  19912. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19913. {
  19914. front: {
  19915. height: math.unit(5 + 10 / 12, "feet"),
  19916. weight: math.unit(252, "lb"),
  19917. name: "Front",
  19918. image: {
  19919. source: "./media/characters/bruun/front.svg",
  19920. extra: 197 / 187,
  19921. bottom: 0.012
  19922. }
  19923. },
  19924. },
  19925. [
  19926. {
  19927. name: "Normal",
  19928. height: math.unit(5 + 10 / 12, "feet"),
  19929. default: true
  19930. },
  19931. ]
  19932. ))
  19933. characterMakers.push(() => makeCharacter(
  19934. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19935. {
  19936. front: {
  19937. height: math.unit(6 + 10 / 12, "feet"),
  19938. weight: math.unit(255, "lb"),
  19939. name: "Front",
  19940. image: {
  19941. source: "./media/characters/alexeev/front.svg",
  19942. extra: 213 / 200,
  19943. bottom: 0.05
  19944. }
  19945. },
  19946. },
  19947. [
  19948. {
  19949. name: "Normal",
  19950. height: math.unit(6 + 10 / 12, "feet"),
  19951. default: true
  19952. },
  19953. ]
  19954. ))
  19955. characterMakers.push(() => makeCharacter(
  19956. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19957. {
  19958. front: {
  19959. height: math.unit(2 + 8 / 12, "feet"),
  19960. weight: math.unit(22, "lb"),
  19961. name: "Front",
  19962. image: {
  19963. source: "./media/characters/evelyn/front.svg",
  19964. extra: 208 / 180
  19965. }
  19966. },
  19967. },
  19968. [
  19969. {
  19970. name: "Normal",
  19971. height: math.unit(2 + 8 / 12, "feet"),
  19972. default: true
  19973. },
  19974. ]
  19975. ))
  19976. characterMakers.push(() => makeCharacter(
  19977. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19978. {
  19979. front: {
  19980. height: math.unit(5 + 9 / 12, "feet"),
  19981. weight: math.unit(139, "lb"),
  19982. name: "Front",
  19983. image: {
  19984. source: "./media/characters/inca/front.svg",
  19985. extra: 294 / 291,
  19986. bottom: 0.03
  19987. }
  19988. },
  19989. },
  19990. [
  19991. {
  19992. name: "Normal",
  19993. height: math.unit(5 + 9 / 12, "feet"),
  19994. default: true
  19995. },
  19996. ]
  19997. ))
  19998. characterMakers.push(() => makeCharacter(
  19999. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  20000. {
  20001. front: {
  20002. height: math.unit(5 + 1 / 12, "feet"),
  20003. weight: math.unit(84, "lb"),
  20004. name: "Front",
  20005. image: {
  20006. source: "./media/characters/magdalene/front.svg",
  20007. extra: 293 / 273
  20008. }
  20009. },
  20010. },
  20011. [
  20012. {
  20013. name: "Normal",
  20014. height: math.unit(5 + 1 / 12, "feet"),
  20015. default: true
  20016. },
  20017. ]
  20018. ))
  20019. characterMakers.push(() => makeCharacter(
  20020. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20021. {
  20022. front: {
  20023. height: math.unit(6 + 3 / 12, "feet"),
  20024. weight: math.unit(185, "lb"),
  20025. name: "Front",
  20026. image: {
  20027. source: "./media/characters/mera/front.svg",
  20028. extra: 291 / 277,
  20029. bottom: 0.03
  20030. }
  20031. },
  20032. },
  20033. [
  20034. {
  20035. name: "Normal",
  20036. height: math.unit(6 + 3 / 12, "feet"),
  20037. default: true
  20038. },
  20039. ]
  20040. ))
  20041. characterMakers.push(() => makeCharacter(
  20042. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20043. {
  20044. front: {
  20045. height: math.unit(6 + 7 / 12, "feet"),
  20046. weight: math.unit(160, "lb"),
  20047. name: "Front",
  20048. image: {
  20049. source: "./media/characters/ceres/front.svg",
  20050. extra: 1023 / 950,
  20051. bottom: 0.027
  20052. }
  20053. },
  20054. back: {
  20055. height: math.unit(6 + 7 / 12, "feet"),
  20056. weight: math.unit(160, "lb"),
  20057. name: "Back",
  20058. image: {
  20059. source: "./media/characters/ceres/back.svg",
  20060. extra: 1023 / 950
  20061. }
  20062. },
  20063. },
  20064. [
  20065. {
  20066. name: "Normal",
  20067. height: math.unit(6 + 7 / 12, "feet"),
  20068. default: true
  20069. },
  20070. ]
  20071. ))
  20072. characterMakers.push(() => makeCharacter(
  20073. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20074. {
  20075. front: {
  20076. height: math.unit(5 + 10 / 12, "feet"),
  20077. weight: math.unit(150, "lb"),
  20078. name: "Front",
  20079. image: {
  20080. source: "./media/characters/kris/front.svg",
  20081. extra: 885 / 803,
  20082. bottom: 0.03
  20083. }
  20084. },
  20085. },
  20086. [
  20087. {
  20088. name: "Normal",
  20089. height: math.unit(5 + 10 / 12, "feet"),
  20090. default: true
  20091. },
  20092. ]
  20093. ))
  20094. characterMakers.push(() => makeCharacter(
  20095. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20096. {
  20097. front: {
  20098. height: math.unit(7, "feet"),
  20099. weight: math.unit(120, "kg"),
  20100. name: "Front",
  20101. image: {
  20102. source: "./media/characters/taluthus/front.svg",
  20103. extra: 903 / 833,
  20104. bottom: 0.015
  20105. }
  20106. },
  20107. },
  20108. [
  20109. {
  20110. name: "Normal",
  20111. height: math.unit(7, "feet"),
  20112. default: true
  20113. },
  20114. {
  20115. name: "Macro",
  20116. height: math.unit(300, "feet")
  20117. },
  20118. ]
  20119. ))
  20120. characterMakers.push(() => makeCharacter(
  20121. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20122. {
  20123. front: {
  20124. height: math.unit(5 + 9 / 12, "feet"),
  20125. weight: math.unit(145, "lb"),
  20126. name: "Front",
  20127. image: {
  20128. source: "./media/characters/dawn/front.svg",
  20129. extra: 2094 / 2016,
  20130. bottom: 0.025
  20131. }
  20132. },
  20133. back: {
  20134. height: math.unit(5 + 9 / 12, "feet"),
  20135. weight: math.unit(160, "lb"),
  20136. name: "Back",
  20137. image: {
  20138. source: "./media/characters/dawn/back.svg",
  20139. extra: 2112 / 2080,
  20140. bottom: 0.005
  20141. }
  20142. },
  20143. },
  20144. [
  20145. {
  20146. name: "Normal",
  20147. height: math.unit(6 + 7 / 12, "feet"),
  20148. default: true
  20149. },
  20150. ]
  20151. ))
  20152. characterMakers.push(() => makeCharacter(
  20153. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20154. {
  20155. anthro: {
  20156. height: math.unit(8 + 3 / 12, "feet"),
  20157. weight: math.unit(450, "lb"),
  20158. name: "Anthro",
  20159. image: {
  20160. source: "./media/characters/arador/anthro.svg",
  20161. extra: 1835 / 1718,
  20162. bottom: 0.025
  20163. }
  20164. },
  20165. feral: {
  20166. height: math.unit(4, "feet"),
  20167. weight: math.unit(200, "lb"),
  20168. name: "Feral",
  20169. image: {
  20170. source: "./media/characters/arador/feral.svg",
  20171. extra: 1683 / 1514,
  20172. bottom: 0.07
  20173. }
  20174. },
  20175. },
  20176. [
  20177. {
  20178. name: "Normal",
  20179. height: math.unit(8 + 3 / 12, "feet")
  20180. },
  20181. {
  20182. name: "Macro",
  20183. height: math.unit(82.5, "feet"),
  20184. default: true
  20185. },
  20186. ]
  20187. ))
  20188. characterMakers.push(() => makeCharacter(
  20189. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20190. {
  20191. front: {
  20192. height: math.unit(5 + 10 / 12, "feet"),
  20193. weight: math.unit(125, "lb"),
  20194. name: "Front",
  20195. image: {
  20196. source: "./media/characters/dharsi/front.svg",
  20197. extra: 716 / 630,
  20198. bottom: 0.035
  20199. }
  20200. },
  20201. },
  20202. [
  20203. {
  20204. name: "Nano",
  20205. height: math.unit(100, "nm")
  20206. },
  20207. {
  20208. name: "Micro",
  20209. height: math.unit(2, "inches")
  20210. },
  20211. {
  20212. name: "Normal",
  20213. height: math.unit(5 + 10 / 12, "feet"),
  20214. default: true
  20215. },
  20216. {
  20217. name: "Macro",
  20218. height: math.unit(1000, "feet")
  20219. },
  20220. {
  20221. name: "Megamacro",
  20222. height: math.unit(10, "miles")
  20223. },
  20224. {
  20225. name: "Gigamacro",
  20226. height: math.unit(3000, "miles")
  20227. },
  20228. {
  20229. name: "Teramacro",
  20230. height: math.unit(500000, "miles")
  20231. },
  20232. {
  20233. name: "Teramacro+",
  20234. height: math.unit(30, "galaxies")
  20235. },
  20236. ]
  20237. ))
  20238. characterMakers.push(() => makeCharacter(
  20239. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20240. {
  20241. front: {
  20242. height: math.unit(6, "feet"),
  20243. weight: math.unit(150, "lb"),
  20244. name: "Front",
  20245. image: {
  20246. source: "./media/characters/deathy/front.svg",
  20247. extra: 1552 / 1463,
  20248. bottom: 0.025
  20249. }
  20250. },
  20251. side: {
  20252. height: math.unit(6, "feet"),
  20253. weight: math.unit(150, "lb"),
  20254. name: "Side",
  20255. image: {
  20256. source: "./media/characters/deathy/side.svg",
  20257. extra: 1604 / 1455,
  20258. bottom: 0.025
  20259. }
  20260. },
  20261. back: {
  20262. height: math.unit(6, "feet"),
  20263. weight: math.unit(150, "lb"),
  20264. name: "Back",
  20265. image: {
  20266. source: "./media/characters/deathy/back.svg",
  20267. extra: 1580 / 1463,
  20268. bottom: 0.005
  20269. }
  20270. },
  20271. },
  20272. [
  20273. {
  20274. name: "Micro",
  20275. height: math.unit(5, "millimeters")
  20276. },
  20277. {
  20278. name: "Normal",
  20279. height: math.unit(6 + 5 / 12, "feet"),
  20280. default: true
  20281. },
  20282. ]
  20283. ))
  20284. characterMakers.push(() => makeCharacter(
  20285. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20286. {
  20287. front: {
  20288. height: math.unit(16, "feet"),
  20289. weight: math.unit(4000, "lb"),
  20290. name: "Front",
  20291. image: {
  20292. source: "./media/characters/juniper/front.svg",
  20293. bottom: 0.04
  20294. }
  20295. },
  20296. },
  20297. [
  20298. {
  20299. name: "Normal",
  20300. height: math.unit(16, "feet"),
  20301. default: true
  20302. },
  20303. ]
  20304. ))
  20305. characterMakers.push(() => makeCharacter(
  20306. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20307. {
  20308. front: {
  20309. height: math.unit(6, "feet"),
  20310. weight: math.unit(150, "lb"),
  20311. name: "Front",
  20312. image: {
  20313. source: "./media/characters/hipster/front.svg",
  20314. extra: 1312 / 1209,
  20315. bottom: 0.025
  20316. }
  20317. },
  20318. back: {
  20319. height: math.unit(6, "feet"),
  20320. weight: math.unit(150, "lb"),
  20321. name: "Back",
  20322. image: {
  20323. source: "./media/characters/hipster/back.svg",
  20324. extra: 1281 / 1196,
  20325. bottom: 0.01
  20326. }
  20327. },
  20328. },
  20329. [
  20330. {
  20331. name: "Micro",
  20332. height: math.unit(1, "mm")
  20333. },
  20334. {
  20335. name: "Normal",
  20336. height: math.unit(4, "inches"),
  20337. default: true
  20338. },
  20339. {
  20340. name: "Macro",
  20341. height: math.unit(500, "feet")
  20342. },
  20343. {
  20344. name: "Megamacro",
  20345. height: math.unit(1000, "miles")
  20346. },
  20347. ]
  20348. ))
  20349. characterMakers.push(() => makeCharacter(
  20350. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20351. {
  20352. front: {
  20353. height: math.unit(6, "feet"),
  20354. weight: math.unit(150, "lb"),
  20355. name: "Front",
  20356. image: {
  20357. source: "./media/characters/tendirmuldr/front.svg",
  20358. extra: 1878 / 1772,
  20359. bottom: 0.015
  20360. }
  20361. },
  20362. },
  20363. [
  20364. {
  20365. name: "Megamacro",
  20366. height: math.unit(1500, "miles"),
  20367. default: true
  20368. },
  20369. ]
  20370. ))
  20371. characterMakers.push(() => makeCharacter(
  20372. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20373. {
  20374. front: {
  20375. height: math.unit(14, "feet"),
  20376. weight: math.unit(12000, "lb"),
  20377. name: "Front",
  20378. image: {
  20379. source: "./media/characters/mort/front.svg",
  20380. extra: 365 / 318,
  20381. bottom: 0.01
  20382. }
  20383. },
  20384. side: {
  20385. height: math.unit(14, "feet"),
  20386. weight: math.unit(12000, "lb"),
  20387. name: "Side",
  20388. image: {
  20389. source: "./media/characters/mort/side.svg",
  20390. extra: 365 / 318,
  20391. bottom: 0.052
  20392. },
  20393. default: true
  20394. },
  20395. back: {
  20396. height: math.unit(14, "feet"),
  20397. weight: math.unit(12000, "lb"),
  20398. name: "Back",
  20399. image: {
  20400. source: "./media/characters/mort/back.svg",
  20401. extra: 371 / 332,
  20402. bottom: 0.18
  20403. }
  20404. },
  20405. },
  20406. [
  20407. {
  20408. name: "Normal",
  20409. height: math.unit(14, "feet"),
  20410. default: true
  20411. },
  20412. ]
  20413. ))
  20414. characterMakers.push(() => makeCharacter(
  20415. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20416. {
  20417. front: {
  20418. height: math.unit(8, "feet"),
  20419. weight: math.unit(1, "ton"),
  20420. name: "Front",
  20421. image: {
  20422. source: "./media/characters/lycoa/front.svg",
  20423. extra: 1875 / 1789,
  20424. bottom: 0.022
  20425. }
  20426. },
  20427. back: {
  20428. height: math.unit(8, "feet"),
  20429. weight: math.unit(1, "ton"),
  20430. name: "Back",
  20431. image: {
  20432. source: "./media/characters/lycoa/back.svg",
  20433. extra: 1835 / 1781,
  20434. bottom: 0.03
  20435. }
  20436. },
  20437. head: {
  20438. height: math.unit(2.1, "feet"),
  20439. name: "Head",
  20440. image: {
  20441. source: "./media/characters/lycoa/head.svg"
  20442. }
  20443. },
  20444. tailmaw: {
  20445. height: math.unit(1.9, "feet"),
  20446. name: "Tailmaw",
  20447. image: {
  20448. source: "./media/characters/lycoa/tailmaw.svg"
  20449. }
  20450. },
  20451. tentacles: {
  20452. height: math.unit(2.1, "feet"),
  20453. name: "Tentacles",
  20454. image: {
  20455. source: "./media/characters/lycoa/tentacles.svg"
  20456. }
  20457. },
  20458. dick: {
  20459. height: math.unit(1.73, "feet"),
  20460. name: "Dick",
  20461. image: {
  20462. source: "./media/characters/lycoa/dick.svg"
  20463. }
  20464. },
  20465. },
  20466. [
  20467. {
  20468. name: "Normal",
  20469. height: math.unit(8, "feet"),
  20470. default: true
  20471. },
  20472. {
  20473. name: "Macro",
  20474. height: math.unit(30, "feet")
  20475. },
  20476. ]
  20477. ))
  20478. characterMakers.push(() => makeCharacter(
  20479. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20480. {
  20481. front: {
  20482. height: math.unit(4 + 2 / 12, "feet"),
  20483. weight: math.unit(70, "lb"),
  20484. name: "Front",
  20485. image: {
  20486. source: "./media/characters/naldara/front.svg",
  20487. extra: 841 / 720,
  20488. bottom: 0.04
  20489. }
  20490. },
  20491. naga: {
  20492. height: math.unit(23, "feet"),
  20493. weight: math.unit(15000, "kg"),
  20494. name: "Naga",
  20495. image: {
  20496. source: "./media/characters/naldara/naga.svg",
  20497. extra: 3290 / 2959,
  20498. bottom: 124 / 3432
  20499. }
  20500. },
  20501. },
  20502. [
  20503. {
  20504. name: "Normal",
  20505. height: math.unit(4 + 2 / 12, "feet"),
  20506. default: true
  20507. },
  20508. ]
  20509. ))
  20510. characterMakers.push(() => makeCharacter(
  20511. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20512. {
  20513. front: {
  20514. height: math.unit(13 + 7 / 12, "feet"),
  20515. weight: math.unit(1500, "lb"),
  20516. name: "Front",
  20517. image: {
  20518. source: "./media/characters/briar/front.svg",
  20519. extra: 626 / 596,
  20520. bottom: 0.08
  20521. }
  20522. },
  20523. },
  20524. [
  20525. {
  20526. name: "Normal",
  20527. height: math.unit(13 + 7 / 12, "feet"),
  20528. default: true
  20529. },
  20530. ]
  20531. ))
  20532. characterMakers.push(() => makeCharacter(
  20533. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20534. {
  20535. side: {
  20536. height: math.unit(10, "feet"),
  20537. weight: math.unit(500, "lb"),
  20538. name: "Side",
  20539. image: {
  20540. source: "./media/characters/vanguard/side.svg",
  20541. extra: 502 / 425,
  20542. bottom: 0.087
  20543. }
  20544. },
  20545. },
  20546. [
  20547. {
  20548. name: "Normal",
  20549. height: math.unit(10, "feet"),
  20550. default: true
  20551. },
  20552. ]
  20553. ))
  20554. characterMakers.push(() => makeCharacter(
  20555. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20556. {
  20557. front: {
  20558. height: math.unit(7.5, "feet"),
  20559. weight: math.unit(2, "lb"),
  20560. name: "Front",
  20561. image: {
  20562. source: "./media/characters/artemis/front.svg",
  20563. extra: 1192 / 1075,
  20564. bottom: 0.07
  20565. }
  20566. },
  20567. frontNsfw: {
  20568. height: math.unit(7.5, "feet"),
  20569. weight: math.unit(2, "lb"),
  20570. name: "Front (NSFW)",
  20571. image: {
  20572. source: "./media/characters/artemis/front-nsfw.svg",
  20573. extra: 1192 / 1075,
  20574. bottom: 0.07
  20575. }
  20576. },
  20577. frontNsfwer: {
  20578. height: math.unit(7.5, "feet"),
  20579. weight: math.unit(2, "lb"),
  20580. name: "Front (NSFW-er)",
  20581. image: {
  20582. source: "./media/characters/artemis/front-nsfwer.svg",
  20583. extra: 1192 / 1075,
  20584. bottom: 0.07
  20585. }
  20586. },
  20587. side: {
  20588. height: math.unit(7.5, "feet"),
  20589. weight: math.unit(2, "lb"),
  20590. name: "Side",
  20591. image: {
  20592. source: "./media/characters/artemis/side.svg",
  20593. extra: 1192 / 1075,
  20594. bottom: 0.07
  20595. }
  20596. },
  20597. sideNsfw: {
  20598. height: math.unit(7.5, "feet"),
  20599. weight: math.unit(2, "lb"),
  20600. name: "Side (NSFW)",
  20601. image: {
  20602. source: "./media/characters/artemis/side-nsfw.svg",
  20603. extra: 1192 / 1075,
  20604. bottom: 0.07
  20605. }
  20606. },
  20607. sideNsfwer: {
  20608. height: math.unit(7.5, "feet"),
  20609. weight: math.unit(2, "lb"),
  20610. name: "Side (NSFW-er)",
  20611. image: {
  20612. source: "./media/characters/artemis/side-nsfwer.svg",
  20613. extra: 1192 / 1075,
  20614. bottom: 0.07
  20615. }
  20616. },
  20617. maw: {
  20618. height: math.unit(1.1, "feet"),
  20619. name: "Maw",
  20620. image: {
  20621. source: "./media/characters/artemis/maw.svg"
  20622. }
  20623. },
  20624. stomach: {
  20625. height: math.unit(0.95, "feet"),
  20626. name: "Stomach",
  20627. image: {
  20628. source: "./media/characters/artemis/stomach.svg"
  20629. }
  20630. },
  20631. dickCanine: {
  20632. height: math.unit(1, "feet"),
  20633. name: "Dick (Canine)",
  20634. image: {
  20635. source: "./media/characters/artemis/dick-canine.svg"
  20636. }
  20637. },
  20638. dickEquine: {
  20639. height: math.unit(0.85, "feet"),
  20640. name: "Dick (Equine)",
  20641. image: {
  20642. source: "./media/characters/artemis/dick-equine.svg"
  20643. }
  20644. },
  20645. dickExotic: {
  20646. height: math.unit(0.85, "feet"),
  20647. name: "Dick (Exotic)",
  20648. image: {
  20649. source: "./media/characters/artemis/dick-exotic.svg"
  20650. }
  20651. },
  20652. },
  20653. [
  20654. {
  20655. name: "Normal",
  20656. height: math.unit(7.5, "feet"),
  20657. default: true
  20658. },
  20659. {
  20660. name: "Enlarged",
  20661. height: math.unit(12, "feet")
  20662. },
  20663. ]
  20664. ))
  20665. characterMakers.push(() => makeCharacter(
  20666. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20667. {
  20668. front: {
  20669. height: math.unit(5 + 3 / 12, "feet"),
  20670. weight: math.unit(160, "lb"),
  20671. name: "Front",
  20672. image: {
  20673. source: "./media/characters/kira/front.svg",
  20674. extra: 906 / 786,
  20675. bottom: 0.01
  20676. }
  20677. },
  20678. back: {
  20679. height: math.unit(5 + 3 / 12, "feet"),
  20680. weight: math.unit(160, "lb"),
  20681. name: "Back",
  20682. image: {
  20683. source: "./media/characters/kira/back.svg",
  20684. extra: 882 / 757,
  20685. bottom: 0.005
  20686. }
  20687. },
  20688. frontDressed: {
  20689. height: math.unit(5 + 3 / 12, "feet"),
  20690. weight: math.unit(160, "lb"),
  20691. name: "Front (Dressed)",
  20692. image: {
  20693. source: "./media/characters/kira/front-dressed.svg",
  20694. extra: 906 / 786,
  20695. bottom: 0.01
  20696. }
  20697. },
  20698. beans: {
  20699. height: math.unit(0.92, "feet"),
  20700. name: "Beans",
  20701. image: {
  20702. source: "./media/characters/kira/beans.svg"
  20703. }
  20704. },
  20705. },
  20706. [
  20707. {
  20708. name: "Normal",
  20709. height: math.unit(5 + 3 / 12, "feet"),
  20710. default: true
  20711. },
  20712. ]
  20713. ))
  20714. characterMakers.push(() => makeCharacter(
  20715. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20716. {
  20717. front: {
  20718. height: math.unit(5 + 4 / 12, "feet"),
  20719. weight: math.unit(145, "lb"),
  20720. name: "Front",
  20721. image: {
  20722. source: "./media/characters/scramble/front.svg",
  20723. extra: 763 / 727,
  20724. bottom: 0.05
  20725. }
  20726. },
  20727. back: {
  20728. height: math.unit(5 + 4 / 12, "feet"),
  20729. weight: math.unit(145, "lb"),
  20730. name: "Back",
  20731. image: {
  20732. source: "./media/characters/scramble/back.svg",
  20733. extra: 826 / 737,
  20734. bottom: 0.002
  20735. }
  20736. },
  20737. },
  20738. [
  20739. {
  20740. name: "Normal",
  20741. height: math.unit(5 + 4 / 12, "feet"),
  20742. default: true
  20743. },
  20744. ]
  20745. ))
  20746. characterMakers.push(() => makeCharacter(
  20747. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20748. {
  20749. side: {
  20750. height: math.unit(6 + 2 / 12, "feet"),
  20751. weight: math.unit(190, "lb"),
  20752. name: "Side",
  20753. image: {
  20754. source: "./media/characters/biscuit/side.svg",
  20755. extra: 858 / 791,
  20756. bottom: 0.044
  20757. }
  20758. },
  20759. },
  20760. [
  20761. {
  20762. name: "Normal",
  20763. height: math.unit(6 + 2 / 12, "feet"),
  20764. default: true
  20765. },
  20766. ]
  20767. ))
  20768. characterMakers.push(() => makeCharacter(
  20769. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20770. {
  20771. front: {
  20772. height: math.unit(5 + 2 / 12, "feet"),
  20773. weight: math.unit(120, "lb"),
  20774. name: "Front",
  20775. image: {
  20776. source: "./media/characters/poffin/front.svg",
  20777. extra: 786 / 680,
  20778. bottom: 0.005
  20779. }
  20780. },
  20781. },
  20782. [
  20783. {
  20784. name: "Normal",
  20785. height: math.unit(5 + 2 / 12, "feet"),
  20786. default: true
  20787. },
  20788. ]
  20789. ))
  20790. characterMakers.push(() => makeCharacter(
  20791. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20792. {
  20793. front: {
  20794. height: math.unit(6 + 3 / 12, "feet"),
  20795. weight: math.unit(519, "lb"),
  20796. name: "Front",
  20797. image: {
  20798. source: "./media/characters/dhari/front.svg",
  20799. extra: 1048 / 946,
  20800. bottom: 0.015
  20801. }
  20802. },
  20803. back: {
  20804. height: math.unit(6 + 3 / 12, "feet"),
  20805. weight: math.unit(519, "lb"),
  20806. name: "Back",
  20807. image: {
  20808. source: "./media/characters/dhari/back.svg",
  20809. extra: 1048 / 931,
  20810. bottom: 0.005
  20811. }
  20812. },
  20813. frontDressed: {
  20814. height: math.unit(6 + 3 / 12, "feet"),
  20815. weight: math.unit(519, "lb"),
  20816. name: "Front (Dressed)",
  20817. image: {
  20818. source: "./media/characters/dhari/front-dressed.svg",
  20819. extra: 1713 / 1546,
  20820. bottom: 0.02
  20821. }
  20822. },
  20823. backDressed: {
  20824. height: math.unit(6 + 3 / 12, "feet"),
  20825. weight: math.unit(519, "lb"),
  20826. name: "Back (Dressed)",
  20827. image: {
  20828. source: "./media/characters/dhari/back-dressed.svg",
  20829. extra: 1699 / 1537,
  20830. bottom: 0.01
  20831. }
  20832. },
  20833. maw: {
  20834. height: math.unit(0.95, "feet"),
  20835. name: "Maw",
  20836. image: {
  20837. source: "./media/characters/dhari/maw.svg"
  20838. }
  20839. },
  20840. wereFront: {
  20841. height: math.unit(12 + 8 / 12, "feet"),
  20842. weight: math.unit(4000, "lb"),
  20843. name: "Front (Were)",
  20844. image: {
  20845. source: "./media/characters/dhari/were-front.svg",
  20846. extra: 1065 / 969,
  20847. bottom: 0.015
  20848. }
  20849. },
  20850. wereBack: {
  20851. height: math.unit(12 + 8 / 12, "feet"),
  20852. weight: math.unit(4000, "lb"),
  20853. name: "Back (Were)",
  20854. image: {
  20855. source: "./media/characters/dhari/were-back.svg",
  20856. extra: 1065 / 969,
  20857. bottom: 0.012
  20858. }
  20859. },
  20860. wereMaw: {
  20861. height: math.unit(0.625, "meters"),
  20862. name: "Maw (Were)",
  20863. image: {
  20864. source: "./media/characters/dhari/were-maw.svg"
  20865. }
  20866. },
  20867. },
  20868. [
  20869. {
  20870. name: "Normal",
  20871. height: math.unit(6 + 3 / 12, "feet"),
  20872. default: true
  20873. },
  20874. ]
  20875. ))
  20876. characterMakers.push(() => makeCharacter(
  20877. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20878. {
  20879. anthro: {
  20880. height: math.unit(5 + 7 / 12, "feet"),
  20881. weight: math.unit(175, "lb"),
  20882. name: "Anthro",
  20883. image: {
  20884. source: "./media/characters/rena-dyne/anthro.svg",
  20885. extra: 1849 / 1785,
  20886. bottom: 0.005
  20887. }
  20888. },
  20889. taur: {
  20890. height: math.unit(15 + 6 / 12, "feet"),
  20891. weight: math.unit(8000, "lb"),
  20892. name: "Taur",
  20893. image: {
  20894. source: "./media/characters/rena-dyne/taur.svg",
  20895. extra: 2315 / 2234,
  20896. bottom: 0.033
  20897. }
  20898. },
  20899. },
  20900. [
  20901. {
  20902. name: "Normal",
  20903. height: math.unit(5 + 7 / 12, "feet"),
  20904. default: true
  20905. },
  20906. ]
  20907. ))
  20908. characterMakers.push(() => makeCharacter(
  20909. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20910. {
  20911. front: {
  20912. height: math.unit(8, "feet"),
  20913. weight: math.unit(600, "lb"),
  20914. name: "Front",
  20915. image: {
  20916. source: "./media/characters/weremeep/front.svg",
  20917. extra: 967 / 862,
  20918. bottom: 0.01
  20919. }
  20920. },
  20921. },
  20922. [
  20923. {
  20924. name: "Normal",
  20925. height: math.unit(8, "feet"),
  20926. default: true
  20927. },
  20928. {
  20929. name: "Lorg",
  20930. height: math.unit(12, "feet")
  20931. },
  20932. {
  20933. name: "Oh Lawd She Comin'",
  20934. height: math.unit(20, "feet")
  20935. },
  20936. ]
  20937. ))
  20938. characterMakers.push(() => makeCharacter(
  20939. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20940. {
  20941. front: {
  20942. height: math.unit(4, "feet"),
  20943. weight: math.unit(90, "lb"),
  20944. name: "Front",
  20945. image: {
  20946. source: "./media/characters/reza/front.svg",
  20947. extra: 1183 / 1111,
  20948. bottom: 0.017
  20949. }
  20950. },
  20951. back: {
  20952. height: math.unit(4, "feet"),
  20953. weight: math.unit(90, "lb"),
  20954. name: "Back",
  20955. image: {
  20956. source: "./media/characters/reza/back.svg",
  20957. extra: 1183 / 1111,
  20958. bottom: 0.01
  20959. }
  20960. },
  20961. drake: {
  20962. height: math.unit(30, "feet"),
  20963. weight: math.unit(246960, "lb"),
  20964. name: "Drake",
  20965. image: {
  20966. source: "./media/characters/reza/drake.svg",
  20967. extra: 2350 / 2024,
  20968. bottom: 60.7 / 2403
  20969. }
  20970. },
  20971. },
  20972. [
  20973. {
  20974. name: "Normal",
  20975. height: math.unit(4, "feet"),
  20976. default: true
  20977. },
  20978. ]
  20979. ))
  20980. characterMakers.push(() => makeCharacter(
  20981. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20982. {
  20983. side: {
  20984. height: math.unit(15, "feet"),
  20985. weight: math.unit(14, "tons"),
  20986. name: "Side",
  20987. image: {
  20988. source: "./media/characters/athea/side.svg",
  20989. extra: 960 / 540,
  20990. bottom: 0.003
  20991. }
  20992. },
  20993. sitting: {
  20994. height: math.unit(6 * 2.85, "feet"),
  20995. weight: math.unit(14, "tons"),
  20996. name: "Sitting",
  20997. image: {
  20998. source: "./media/characters/athea/sitting.svg",
  20999. extra: 621 / 581,
  21000. bottom: 0.075
  21001. }
  21002. },
  21003. maw: {
  21004. height: math.unit(7.59498031496063, "feet"),
  21005. name: "Maw",
  21006. image: {
  21007. source: "./media/characters/athea/maw.svg"
  21008. }
  21009. },
  21010. },
  21011. [
  21012. {
  21013. name: "Lap Cat",
  21014. height: math.unit(2.5, "feet")
  21015. },
  21016. {
  21017. name: "Minimacro",
  21018. height: math.unit(15, "feet"),
  21019. default: true
  21020. },
  21021. {
  21022. name: "Macro",
  21023. height: math.unit(120, "feet")
  21024. },
  21025. {
  21026. name: "Macro+",
  21027. height: math.unit(640, "feet")
  21028. },
  21029. {
  21030. name: "Colossus",
  21031. height: math.unit(2.2, "miles")
  21032. },
  21033. ]
  21034. ))
  21035. characterMakers.push(() => makeCharacter(
  21036. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21037. {
  21038. front: {
  21039. height: math.unit(8 + 8 / 12, "feet"),
  21040. weight: math.unit(130, "kg"),
  21041. name: "Front",
  21042. image: {
  21043. source: "./media/characters/seroko/front.svg",
  21044. extra: 1385 / 1280,
  21045. bottom: 0.025
  21046. }
  21047. },
  21048. back: {
  21049. height: math.unit(8 + 8 / 12, "feet"),
  21050. weight: math.unit(130, "kg"),
  21051. name: "Back",
  21052. image: {
  21053. source: "./media/characters/seroko/back.svg",
  21054. extra: 1369 / 1238,
  21055. bottom: 0.018
  21056. }
  21057. },
  21058. frontDressed: {
  21059. height: math.unit(8 + 8 / 12, "feet"),
  21060. weight: math.unit(130, "kg"),
  21061. name: "Front (Dressed)",
  21062. image: {
  21063. source: "./media/characters/seroko/front-dressed.svg",
  21064. extra: 1366 / 1275,
  21065. bottom: 0.03
  21066. }
  21067. },
  21068. },
  21069. [
  21070. {
  21071. name: "Normal",
  21072. height: math.unit(8 + 8 / 12, "feet"),
  21073. default: true
  21074. },
  21075. ]
  21076. ))
  21077. characterMakers.push(() => makeCharacter(
  21078. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21079. {
  21080. front: {
  21081. height: math.unit(5.5, "feet"),
  21082. weight: math.unit(160, "lb"),
  21083. name: "Front",
  21084. image: {
  21085. source: "./media/characters/quatzi/front.svg",
  21086. extra: 2346 / 2242,
  21087. bottom: 0.015
  21088. }
  21089. },
  21090. },
  21091. [
  21092. {
  21093. name: "Normal",
  21094. height: math.unit(5.5, "feet"),
  21095. default: true
  21096. },
  21097. {
  21098. name: "Big",
  21099. height: math.unit(7.7, "feet")
  21100. },
  21101. ]
  21102. ))
  21103. characterMakers.push(() => makeCharacter(
  21104. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21105. {
  21106. front: {
  21107. height: math.unit(5 + 11 / 12, "feet"),
  21108. weight: math.unit(180, "lb"),
  21109. name: "Front",
  21110. image: {
  21111. source: "./media/characters/sen/front.svg",
  21112. extra: 1321 / 1254,
  21113. bottom: 0.015
  21114. }
  21115. },
  21116. side: {
  21117. height: math.unit(5 + 11 / 12, "feet"),
  21118. weight: math.unit(180, "lb"),
  21119. name: "Side",
  21120. image: {
  21121. source: "./media/characters/sen/side.svg",
  21122. extra: 1321 / 1254,
  21123. bottom: 0.007
  21124. }
  21125. },
  21126. back: {
  21127. height: math.unit(5 + 11 / 12, "feet"),
  21128. weight: math.unit(180, "lb"),
  21129. name: "Back",
  21130. image: {
  21131. source: "./media/characters/sen/back.svg",
  21132. extra: 1321 / 1254
  21133. }
  21134. },
  21135. },
  21136. [
  21137. {
  21138. name: "Normal",
  21139. height: math.unit(5 + 11 / 12, "feet"),
  21140. default: true
  21141. },
  21142. ]
  21143. ))
  21144. characterMakers.push(() => makeCharacter(
  21145. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21146. {
  21147. front: {
  21148. height: math.unit(166.6, "cm"),
  21149. weight: math.unit(66.6, "kg"),
  21150. name: "Front",
  21151. image: {
  21152. source: "./media/characters/fruity/front.svg",
  21153. extra: 1510 / 1386,
  21154. bottom: 0.04
  21155. }
  21156. },
  21157. back: {
  21158. height: math.unit(166.6, "cm"),
  21159. weight: math.unit(66.6, "lb"),
  21160. name: "Back",
  21161. image: {
  21162. source: "./media/characters/fruity/back.svg",
  21163. extra: 1563 / 1435,
  21164. bottom: 0.005
  21165. }
  21166. },
  21167. },
  21168. [
  21169. {
  21170. name: "Normal",
  21171. height: math.unit(166.6, "cm"),
  21172. default: true
  21173. },
  21174. {
  21175. name: "Demonic",
  21176. height: math.unit(166.6, "feet")
  21177. },
  21178. ]
  21179. ))
  21180. characterMakers.push(() => makeCharacter(
  21181. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21182. {
  21183. side: {
  21184. height: math.unit(10, "feet"),
  21185. weight: math.unit(500, "lb"),
  21186. name: "Side",
  21187. image: {
  21188. source: "./media/characters/zost/side.svg",
  21189. extra: 966 / 880,
  21190. bottom: 0.075
  21191. }
  21192. },
  21193. mawFront: {
  21194. height: math.unit(1.08, "meters"),
  21195. name: "Maw (Front)",
  21196. image: {
  21197. source: "./media/characters/zost/maw-front.svg"
  21198. }
  21199. },
  21200. mawSide: {
  21201. height: math.unit(2.66, "feet"),
  21202. name: "Maw (Side)",
  21203. image: {
  21204. source: "./media/characters/zost/maw-side.svg"
  21205. }
  21206. },
  21207. },
  21208. [
  21209. {
  21210. name: "Normal",
  21211. height: math.unit(10, "feet"),
  21212. default: true
  21213. },
  21214. ]
  21215. ))
  21216. characterMakers.push(() => makeCharacter(
  21217. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21218. {
  21219. front: {
  21220. height: math.unit(5 + 4 / 12, "feet"),
  21221. weight: math.unit(120, "lb"),
  21222. name: "Front",
  21223. image: {
  21224. source: "./media/characters/luci/front.svg",
  21225. extra: 1985 / 1884,
  21226. bottom: 0.04
  21227. }
  21228. },
  21229. back: {
  21230. height: math.unit(5 + 4 / 12, "feet"),
  21231. weight: math.unit(120, "lb"),
  21232. name: "Back",
  21233. image: {
  21234. source: "./media/characters/luci/back.svg",
  21235. extra: 1892 / 1791,
  21236. bottom: 0.002
  21237. }
  21238. },
  21239. },
  21240. [
  21241. {
  21242. name: "Normal",
  21243. height: math.unit(5 + 4 / 12, "feet"),
  21244. default: true
  21245. },
  21246. ]
  21247. ))
  21248. characterMakers.push(() => makeCharacter(
  21249. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21250. {
  21251. front: {
  21252. height: math.unit(1500, "feet"),
  21253. weight: math.unit(3.8e6, "tons"),
  21254. name: "Front",
  21255. image: {
  21256. source: "./media/characters/2th/front.svg",
  21257. extra: 3489 / 3350,
  21258. bottom: 0.1
  21259. }
  21260. },
  21261. foot: {
  21262. height: math.unit(461, "feet"),
  21263. name: "Foot",
  21264. image: {
  21265. source: "./media/characters/2th/foot.svg"
  21266. }
  21267. },
  21268. },
  21269. [
  21270. {
  21271. name: "\"Micro\"",
  21272. height: math.unit(15 + 7 / 12, "feet")
  21273. },
  21274. {
  21275. name: "Normal",
  21276. height: math.unit(1500, "feet"),
  21277. default: true
  21278. },
  21279. {
  21280. name: "Macro",
  21281. height: math.unit(5000, "feet")
  21282. },
  21283. {
  21284. name: "Megamacro",
  21285. height: math.unit(15, "miles")
  21286. },
  21287. {
  21288. name: "Gigamacro",
  21289. height: math.unit(4000, "miles")
  21290. },
  21291. {
  21292. name: "Galactic",
  21293. height: math.unit(50, "AU")
  21294. },
  21295. ]
  21296. ))
  21297. characterMakers.push(() => makeCharacter(
  21298. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21299. {
  21300. front: {
  21301. height: math.unit(5 + 6 / 12, "feet"),
  21302. weight: math.unit(220, "lb"),
  21303. name: "Front",
  21304. image: {
  21305. source: "./media/characters/amethyst/front.svg",
  21306. extra: 2078 / 2040,
  21307. bottom: 0.045
  21308. }
  21309. },
  21310. back: {
  21311. height: math.unit(5 + 6 / 12, "feet"),
  21312. weight: math.unit(220, "lb"),
  21313. name: "Back",
  21314. image: {
  21315. source: "./media/characters/amethyst/back.svg",
  21316. extra: 2021 / 1989,
  21317. bottom: 0.02
  21318. }
  21319. },
  21320. },
  21321. [
  21322. {
  21323. name: "Normal",
  21324. height: math.unit(5 + 6 / 12, "feet"),
  21325. default: true
  21326. },
  21327. ]
  21328. ))
  21329. characterMakers.push(() => makeCharacter(
  21330. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21331. {
  21332. front: {
  21333. height: math.unit(4 + 11 / 12, "feet"),
  21334. weight: math.unit(120, "lb"),
  21335. name: "Front",
  21336. image: {
  21337. source: "./media/characters/yumi-akiyama/front.svg",
  21338. extra: 1327 / 1235,
  21339. bottom: 0.02
  21340. }
  21341. },
  21342. back: {
  21343. height: math.unit(4 + 11 / 12, "feet"),
  21344. weight: math.unit(120, "lb"),
  21345. name: "Back",
  21346. image: {
  21347. source: "./media/characters/yumi-akiyama/back.svg",
  21348. extra: 1287 / 1245,
  21349. bottom: 0.002
  21350. }
  21351. },
  21352. },
  21353. [
  21354. {
  21355. name: "Galactic",
  21356. height: math.unit(50, "galaxies"),
  21357. default: true
  21358. },
  21359. {
  21360. name: "Universal",
  21361. height: math.unit(100, "universes")
  21362. },
  21363. ]
  21364. ))
  21365. characterMakers.push(() => makeCharacter(
  21366. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21367. {
  21368. front: {
  21369. height: math.unit(8, "feet"),
  21370. weight: math.unit(500, "lb"),
  21371. name: "Front",
  21372. image: {
  21373. source: "./media/characters/rifter-yrmori/front.svg",
  21374. extra: 1180 / 1125,
  21375. bottom: 0.02
  21376. }
  21377. },
  21378. back: {
  21379. height: math.unit(8, "feet"),
  21380. weight: math.unit(500, "lb"),
  21381. name: "Back",
  21382. image: {
  21383. source: "./media/characters/rifter-yrmori/back.svg",
  21384. extra: 1190 / 1145,
  21385. bottom: 0.001
  21386. }
  21387. },
  21388. wings: {
  21389. height: math.unit(7.75, "feet"),
  21390. weight: math.unit(500, "lb"),
  21391. name: "Wings",
  21392. image: {
  21393. source: "./media/characters/rifter-yrmori/wings.svg",
  21394. extra: 1357 / 1285
  21395. }
  21396. },
  21397. maw: {
  21398. height: math.unit(0.8, "feet"),
  21399. name: "Maw",
  21400. image: {
  21401. source: "./media/characters/rifter-yrmori/maw.svg"
  21402. }
  21403. },
  21404. mawfront: {
  21405. height: math.unit(1.45, "feet"),
  21406. name: "Maw (Front)",
  21407. image: {
  21408. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21409. }
  21410. },
  21411. },
  21412. [
  21413. {
  21414. name: "Normal",
  21415. height: math.unit(8, "feet"),
  21416. default: true
  21417. },
  21418. {
  21419. name: "Macro",
  21420. height: math.unit(42, "meters")
  21421. },
  21422. ]
  21423. ))
  21424. characterMakers.push(() => makeCharacter(
  21425. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21426. {
  21427. were: {
  21428. height: math.unit(25 + 6 / 12, "feet"),
  21429. weight: math.unit(10000, "lb"),
  21430. name: "Were",
  21431. image: {
  21432. source: "./media/characters/tahajin/were.svg",
  21433. extra: 801 / 770,
  21434. bottom: 0.042
  21435. }
  21436. },
  21437. aquatic: {
  21438. height: math.unit(6 + 4 / 12, "feet"),
  21439. weight: math.unit(160, "lb"),
  21440. name: "Aquatic",
  21441. image: {
  21442. source: "./media/characters/tahajin/aquatic.svg",
  21443. extra: 572 / 542,
  21444. bottom: 0.04
  21445. }
  21446. },
  21447. chow: {
  21448. height: math.unit(8 + 11 / 12, "feet"),
  21449. weight: math.unit(450, "lb"),
  21450. name: "Chow",
  21451. image: {
  21452. source: "./media/characters/tahajin/chow.svg",
  21453. extra: 660 / 640,
  21454. bottom: 0.015
  21455. }
  21456. },
  21457. demiNaga: {
  21458. height: math.unit(6 + 8 / 12, "feet"),
  21459. weight: math.unit(300, "lb"),
  21460. name: "Demi Naga",
  21461. image: {
  21462. source: "./media/characters/tahajin/demi-naga.svg",
  21463. extra: 643 / 615,
  21464. bottom: 0.1
  21465. }
  21466. },
  21467. data: {
  21468. height: math.unit(5, "inches"),
  21469. weight: math.unit(0.1, "lb"),
  21470. name: "Data",
  21471. image: {
  21472. source: "./media/characters/tahajin/data.svg"
  21473. }
  21474. },
  21475. fluu: {
  21476. height: math.unit(5 + 7 / 12, "feet"),
  21477. weight: math.unit(140, "lb"),
  21478. name: "Fluu",
  21479. image: {
  21480. source: "./media/characters/tahajin/fluu.svg",
  21481. extra: 628 / 592,
  21482. bottom: 0.02
  21483. }
  21484. },
  21485. starWarrior: {
  21486. height: math.unit(4 + 5 / 12, "feet"),
  21487. weight: math.unit(50, "lb"),
  21488. name: "Star Warrior",
  21489. image: {
  21490. source: "./media/characters/tahajin/star-warrior.svg"
  21491. }
  21492. },
  21493. },
  21494. [
  21495. {
  21496. name: "Normal",
  21497. height: math.unit(25 + 6 / 12, "feet"),
  21498. default: true
  21499. },
  21500. ]
  21501. ))
  21502. characterMakers.push(() => makeCharacter(
  21503. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21504. {
  21505. front: {
  21506. height: math.unit(8, "feet"),
  21507. weight: math.unit(350, "lb"),
  21508. name: "Front",
  21509. image: {
  21510. source: "./media/characters/gabira/front.svg",
  21511. extra: 608 / 580,
  21512. bottom: 0.03
  21513. }
  21514. },
  21515. back: {
  21516. height: math.unit(8, "feet"),
  21517. weight: math.unit(350, "lb"),
  21518. name: "Back",
  21519. image: {
  21520. source: "./media/characters/gabira/back.svg",
  21521. extra: 608 / 580,
  21522. bottom: 0.03
  21523. }
  21524. },
  21525. },
  21526. [
  21527. {
  21528. name: "Normal",
  21529. height: math.unit(8, "feet"),
  21530. default: true
  21531. },
  21532. ]
  21533. ))
  21534. characterMakers.push(() => makeCharacter(
  21535. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21536. {
  21537. front: {
  21538. height: math.unit(5 + 3 / 12, "feet"),
  21539. weight: math.unit(137, "lb"),
  21540. name: "Front",
  21541. image: {
  21542. source: "./media/characters/sasha-katraine/front.svg",
  21543. bottom: 0.045
  21544. }
  21545. },
  21546. },
  21547. [
  21548. {
  21549. name: "Micro",
  21550. height: math.unit(5, "inches")
  21551. },
  21552. {
  21553. name: "Normal",
  21554. height: math.unit(5 + 3 / 12, "feet"),
  21555. default: true
  21556. },
  21557. ]
  21558. ))
  21559. characterMakers.push(() => makeCharacter(
  21560. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21561. {
  21562. side: {
  21563. height: math.unit(4, "inches"),
  21564. weight: math.unit(200, "grams"),
  21565. name: "Side",
  21566. image: {
  21567. source: "./media/characters/der/side.svg",
  21568. extra: 719 / 400,
  21569. bottom: 30.6 / 749.9187
  21570. }
  21571. },
  21572. },
  21573. [
  21574. {
  21575. name: "Micro",
  21576. height: math.unit(4, "inches"),
  21577. default: true
  21578. },
  21579. ]
  21580. ))
  21581. characterMakers.push(() => makeCharacter(
  21582. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21583. {
  21584. side: {
  21585. height: math.unit(30, "meters"),
  21586. weight: math.unit(700, "tonnes"),
  21587. name: "Side",
  21588. image: {
  21589. source: "./media/characters/fixerdragon/side.svg",
  21590. extra: (1293.0514 - 116.03) / 1106.86,
  21591. bottom: 116.03 / 1293.0514
  21592. }
  21593. },
  21594. },
  21595. [
  21596. {
  21597. name: "Planck",
  21598. height: math.unit(1.6e-35, "meters")
  21599. },
  21600. {
  21601. name: "Micro",
  21602. height: math.unit(0.4, "meters")
  21603. },
  21604. {
  21605. name: "Normal",
  21606. height: math.unit(30, "meters"),
  21607. default: true
  21608. },
  21609. {
  21610. name: "Megamacro",
  21611. height: math.unit(1.2, "megameters")
  21612. },
  21613. {
  21614. name: "Teramacro",
  21615. height: math.unit(130, "terameters")
  21616. },
  21617. {
  21618. name: "Yottamacro",
  21619. height: math.unit(6200, "yottameters")
  21620. },
  21621. ]
  21622. ));
  21623. characterMakers.push(() => makeCharacter(
  21624. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21625. {
  21626. front: {
  21627. height: math.unit(8, "feet"),
  21628. weight: math.unit(250, "lb"),
  21629. name: "Front",
  21630. image: {
  21631. source: "./media/characters/kite/front.svg",
  21632. extra: 2796 / 2659,
  21633. bottom: 0.002
  21634. }
  21635. },
  21636. },
  21637. [
  21638. {
  21639. name: "Normal",
  21640. height: math.unit(8, "feet"),
  21641. default: true
  21642. },
  21643. {
  21644. name: "Macro",
  21645. height: math.unit(360, "feet")
  21646. },
  21647. {
  21648. name: "Megamacro",
  21649. height: math.unit(1500, "feet")
  21650. },
  21651. ]
  21652. ))
  21653. characterMakers.push(() => makeCharacter(
  21654. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21655. {
  21656. front: {
  21657. height: math.unit(5 + 11/12, "feet"),
  21658. weight: math.unit(170, "lb"),
  21659. name: "Front",
  21660. image: {
  21661. source: "./media/characters/poojawa-vynar/front.svg",
  21662. extra: 1735/1585,
  21663. bottom: 96/1831
  21664. }
  21665. },
  21666. back: {
  21667. height: math.unit(5 + 11/12, "feet"),
  21668. weight: math.unit(170, "lb"),
  21669. name: "Back",
  21670. image: {
  21671. source: "./media/characters/poojawa-vynar/back.svg",
  21672. extra: 1749/1607,
  21673. bottom: 28/1777
  21674. }
  21675. },
  21676. male: {
  21677. height: math.unit(5 + 11/12, "feet"),
  21678. weight: math.unit(170, "lb"),
  21679. name: "Male",
  21680. image: {
  21681. source: "./media/characters/poojawa-vynar/male.svg",
  21682. extra: 1855/1713,
  21683. bottom: 63/1918
  21684. }
  21685. },
  21686. taur: {
  21687. height: math.unit(5 + 11/12, "feet"),
  21688. weight: math.unit(170, "lb"),
  21689. name: "Taur",
  21690. image: {
  21691. source: "./media/characters/poojawa-vynar/taur.svg",
  21692. extra: 1151/1059,
  21693. bottom: 356/1507
  21694. }
  21695. },
  21696. frontDressed: {
  21697. height: math.unit(5 + 11/12, "feet"),
  21698. weight: math.unit(170, "lb"),
  21699. name: "Front (Dressed)",
  21700. image: {
  21701. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  21702. extra: 1735/1585,
  21703. bottom: 96/1831
  21704. }
  21705. },
  21706. backDressed: {
  21707. height: math.unit(5 + 11/12, "feet"),
  21708. weight: math.unit(170, "lb"),
  21709. name: "Back (Dressed)",
  21710. image: {
  21711. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  21712. extra: 1749/1607,
  21713. bottom: 28/1777
  21714. }
  21715. },
  21716. maleDressed: {
  21717. height: math.unit(5 + 11/12, "feet"),
  21718. weight: math.unit(170, "lb"),
  21719. name: "Male (Dressed)",
  21720. image: {
  21721. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  21722. extra: 1855/1713,
  21723. bottom: 63/1918
  21724. }
  21725. },
  21726. taurDressed: {
  21727. height: math.unit(5 + 11/12, "feet"),
  21728. weight: math.unit(170, "lb"),
  21729. name: "Taur (Dressed)",
  21730. image: {
  21731. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  21732. extra: 1151/1059,
  21733. bottom: 356/1507
  21734. }
  21735. },
  21736. maw: {
  21737. height: math.unit(1.46, "feet"),
  21738. name: "Maw",
  21739. image: {
  21740. source: "./media/characters/poojawa-vynar/maw.svg"
  21741. }
  21742. },
  21743. head: {
  21744. height: math.unit(2.34, "feet"),
  21745. name: "Head",
  21746. image: {
  21747. source: "./media/characters/poojawa-vynar/head.svg"
  21748. }
  21749. },
  21750. paw: {
  21751. height: math.unit(1.61, "feet"),
  21752. name: "Paw",
  21753. image: {
  21754. source: "./media/characters/poojawa-vynar/paw.svg"
  21755. }
  21756. },
  21757. pawToering: {
  21758. height: math.unit(1.72, "feet"),
  21759. name: "Paw (Toering)",
  21760. image: {
  21761. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  21762. }
  21763. },
  21764. toering: {
  21765. height: math.unit(2.9, "inches"),
  21766. name: "Toering",
  21767. image: {
  21768. source: "./media/characters/poojawa-vynar/toering.svg"
  21769. }
  21770. },
  21771. shaft: {
  21772. height: math.unit(0.625, "feet"),
  21773. name: "Shaft",
  21774. image: {
  21775. source: "./media/characters/poojawa-vynar/shaft.svg"
  21776. }
  21777. },
  21778. spade: {
  21779. height: math.unit(0.42, "feet"),
  21780. name: "Spade",
  21781. image: {
  21782. source: "./media/characters/poojawa-vynar/spade.svg"
  21783. }
  21784. },
  21785. },
  21786. [
  21787. {
  21788. name: "Shortstack",
  21789. height: math.unit(4, "feet")
  21790. },
  21791. {
  21792. name: "Normal",
  21793. height: math.unit(5 + 11 / 12, "feet"),
  21794. default: true
  21795. },
  21796. {
  21797. name: "Tauric",
  21798. height: math.unit(4, "meters")
  21799. },
  21800. ]
  21801. ))
  21802. characterMakers.push(() => makeCharacter(
  21803. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21804. {
  21805. front: {
  21806. height: math.unit(293, "meters"),
  21807. weight: math.unit(70400, "tons"),
  21808. name: "Front",
  21809. image: {
  21810. source: "./media/characters/violette/front.svg",
  21811. extra: 1227 / 1180,
  21812. bottom: 0.005
  21813. }
  21814. },
  21815. back: {
  21816. height: math.unit(293, "meters"),
  21817. weight: math.unit(70400, "tons"),
  21818. name: "Back",
  21819. image: {
  21820. source: "./media/characters/violette/back.svg",
  21821. extra: 1227 / 1180,
  21822. bottom: 0.005
  21823. }
  21824. },
  21825. },
  21826. [
  21827. {
  21828. name: "Macro",
  21829. height: math.unit(293, "meters"),
  21830. default: true
  21831. },
  21832. ]
  21833. ))
  21834. characterMakers.push(() => makeCharacter(
  21835. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21836. {
  21837. front: {
  21838. height: math.unit(1050, "feet"),
  21839. weight: math.unit(200000, "tons"),
  21840. name: "Front",
  21841. image: {
  21842. source: "./media/characters/alessandra/front.svg",
  21843. extra: 960 / 912,
  21844. bottom: 0.06
  21845. }
  21846. },
  21847. },
  21848. [
  21849. {
  21850. name: "Macro",
  21851. height: math.unit(1050, "feet")
  21852. },
  21853. {
  21854. name: "Macro+",
  21855. height: math.unit(900, "meters"),
  21856. default: true
  21857. },
  21858. ]
  21859. ))
  21860. characterMakers.push(() => makeCharacter(
  21861. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21862. {
  21863. front: {
  21864. height: math.unit(5, "feet"),
  21865. weight: math.unit(187, "lb"),
  21866. name: "Front",
  21867. image: {
  21868. source: "./media/characters/person/front.svg",
  21869. extra: 3087 / 2945,
  21870. bottom: 91 / 3181
  21871. }
  21872. },
  21873. },
  21874. [
  21875. {
  21876. name: "Micro",
  21877. height: math.unit(3, "inches")
  21878. },
  21879. {
  21880. name: "Normal",
  21881. height: math.unit(5, "feet"),
  21882. default: true
  21883. },
  21884. {
  21885. name: "Macro",
  21886. height: math.unit(90, "feet")
  21887. },
  21888. {
  21889. name: "Max Size",
  21890. height: math.unit(280, "feet")
  21891. },
  21892. ]
  21893. ))
  21894. characterMakers.push(() => makeCharacter(
  21895. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21896. {
  21897. front: {
  21898. height: math.unit(4.5, "meters"),
  21899. weight: math.unit(3200, "lb"),
  21900. name: "Front",
  21901. image: {
  21902. source: "./media/characters/ty/front.svg",
  21903. extra: 1038 / 960,
  21904. bottom: 31.156 / 1068
  21905. }
  21906. },
  21907. back: {
  21908. height: math.unit(4.5, "meters"),
  21909. weight: math.unit(3200, "lb"),
  21910. name: "Back",
  21911. image: {
  21912. source: "./media/characters/ty/back.svg",
  21913. extra: 1044 / 966,
  21914. bottom: 7.48 / 1049
  21915. }
  21916. },
  21917. },
  21918. [
  21919. {
  21920. name: "Normal",
  21921. height: math.unit(4.5, "meters"),
  21922. default: true
  21923. },
  21924. ]
  21925. ))
  21926. characterMakers.push(() => makeCharacter(
  21927. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21928. {
  21929. front: {
  21930. height: math.unit(5 + 4 / 12, "feet"),
  21931. weight: math.unit(115, "lb"),
  21932. name: "Front",
  21933. image: {
  21934. source: "./media/characters/rocky/front.svg",
  21935. extra: 1012 / 975,
  21936. bottom: 54 / 1066
  21937. }
  21938. },
  21939. },
  21940. [
  21941. {
  21942. name: "Normal",
  21943. height: math.unit(5 + 4 / 12, "feet"),
  21944. default: true
  21945. },
  21946. ]
  21947. ))
  21948. characterMakers.push(() => makeCharacter(
  21949. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21950. {
  21951. upright: {
  21952. height: math.unit(6, "meters"),
  21953. weight: math.unit(4000, "kg"),
  21954. name: "Upright",
  21955. image: {
  21956. source: "./media/characters/ruin/upright.svg",
  21957. extra: 668 / 661,
  21958. bottom: 42 / 799.8396
  21959. }
  21960. },
  21961. },
  21962. [
  21963. {
  21964. name: "Normal",
  21965. height: math.unit(6, "meters"),
  21966. default: true
  21967. },
  21968. ]
  21969. ))
  21970. characterMakers.push(() => makeCharacter(
  21971. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21972. {
  21973. front: {
  21974. height: math.unit(5, "feet"),
  21975. weight: math.unit(106, "lb"),
  21976. name: "Front",
  21977. image: {
  21978. source: "./media/characters/robin/front.svg",
  21979. extra: 862 / 799,
  21980. bottom: 42.4 / 914.8856
  21981. }
  21982. },
  21983. },
  21984. [
  21985. {
  21986. name: "Normal",
  21987. height: math.unit(5, "feet"),
  21988. default: true
  21989. },
  21990. ]
  21991. ))
  21992. characterMakers.push(() => makeCharacter(
  21993. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21994. {
  21995. side: {
  21996. height: math.unit(3, "feet"),
  21997. weight: math.unit(225, "lb"),
  21998. name: "Side",
  21999. image: {
  22000. source: "./media/characters/saian/side.svg",
  22001. extra: 566 / 356,
  22002. bottom: 79.7 / 643
  22003. }
  22004. },
  22005. maw: {
  22006. height: math.unit(2.85, "feet"),
  22007. name: "Maw",
  22008. image: {
  22009. source: "./media/characters/saian/maw.svg"
  22010. }
  22011. },
  22012. },
  22013. [
  22014. {
  22015. name: "Normal",
  22016. height: math.unit(3, "feet"),
  22017. default: true
  22018. },
  22019. ]
  22020. ))
  22021. characterMakers.push(() => makeCharacter(
  22022. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22023. {
  22024. side: {
  22025. height: math.unit(8, "feet"),
  22026. weight: math.unit(300, "lb"),
  22027. name: "Side",
  22028. image: {
  22029. source: "./media/characters/equus-silvermane/side.svg",
  22030. extra: 2176 / 2050,
  22031. bottom: 65.7 / 2245
  22032. }
  22033. },
  22034. front: {
  22035. height: math.unit(8, "feet"),
  22036. weight: math.unit(300, "lb"),
  22037. name: "Front",
  22038. image: {
  22039. source: "./media/characters/equus-silvermane/front.svg",
  22040. extra: 4633 / 4400,
  22041. bottom: 71.3 / 4706.915
  22042. }
  22043. },
  22044. sideStepping: {
  22045. height: math.unit(8, "feet"),
  22046. weight: math.unit(300, "lb"),
  22047. name: "Side (Stepping)",
  22048. image: {
  22049. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22050. extra: 1968 / 1860,
  22051. bottom: 16.4 / 1989
  22052. }
  22053. },
  22054. },
  22055. [
  22056. {
  22057. name: "Normal",
  22058. height: math.unit(8, "feet")
  22059. },
  22060. {
  22061. name: "Minimacro",
  22062. height: math.unit(75, "feet"),
  22063. default: true
  22064. },
  22065. {
  22066. name: "Macro",
  22067. height: math.unit(150, "feet")
  22068. },
  22069. {
  22070. name: "Macro+",
  22071. height: math.unit(1000, "feet")
  22072. },
  22073. {
  22074. name: "Megamacro",
  22075. height: math.unit(1, "mile")
  22076. },
  22077. ]
  22078. ))
  22079. characterMakers.push(() => makeCharacter(
  22080. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22081. {
  22082. side: {
  22083. height: math.unit(20, "feet"),
  22084. weight: math.unit(30000, "kg"),
  22085. name: "Side",
  22086. image: {
  22087. source: "./media/characters/windar/side.svg",
  22088. extra: 1491 / 1248,
  22089. bottom: 82.56 / 1568
  22090. }
  22091. },
  22092. },
  22093. [
  22094. {
  22095. name: "Normal",
  22096. height: math.unit(20, "feet"),
  22097. default: true
  22098. },
  22099. ]
  22100. ))
  22101. characterMakers.push(() => makeCharacter(
  22102. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22103. {
  22104. side: {
  22105. height: math.unit(15.66, "feet"),
  22106. weight: math.unit(150, "lb"),
  22107. name: "Side",
  22108. image: {
  22109. source: "./media/characters/melody/side.svg",
  22110. extra: 1097 / 944,
  22111. bottom: 11.8 / 1109
  22112. }
  22113. },
  22114. sideOutfit: {
  22115. height: math.unit(15.66, "feet"),
  22116. weight: math.unit(150, "lb"),
  22117. name: "Side (Outfit)",
  22118. image: {
  22119. source: "./media/characters/melody/side-outfit.svg",
  22120. extra: 1097 / 944,
  22121. bottom: 11.8 / 1109
  22122. }
  22123. },
  22124. },
  22125. [
  22126. {
  22127. name: "Normal",
  22128. height: math.unit(15.66, "feet"),
  22129. default: true
  22130. },
  22131. ]
  22132. ))
  22133. characterMakers.push(() => makeCharacter(
  22134. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22135. {
  22136. front: {
  22137. height: math.unit(8, "feet"),
  22138. weight: math.unit(325, "lb"),
  22139. name: "Front",
  22140. image: {
  22141. source: "./media/characters/windera/front.svg",
  22142. extra: 3180 / 2845,
  22143. bottom: 178 / 3365
  22144. }
  22145. },
  22146. },
  22147. [
  22148. {
  22149. name: "Normal",
  22150. height: math.unit(8, "feet"),
  22151. default: true
  22152. },
  22153. ]
  22154. ))
  22155. characterMakers.push(() => makeCharacter(
  22156. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22157. {
  22158. front: {
  22159. height: math.unit(28.75, "feet"),
  22160. weight: math.unit(2000, "kg"),
  22161. name: "Front",
  22162. image: {
  22163. source: "./media/characters/sonear/front.svg",
  22164. extra: 1041.1 / 964.9,
  22165. bottom: 53.7 / 1096.6
  22166. }
  22167. },
  22168. },
  22169. [
  22170. {
  22171. name: "Normal",
  22172. height: math.unit(28.75, "feet"),
  22173. default: true
  22174. },
  22175. ]
  22176. ))
  22177. characterMakers.push(() => makeCharacter(
  22178. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22179. {
  22180. side: {
  22181. height: math.unit(25.5, "feet"),
  22182. weight: math.unit(23000, "kg"),
  22183. name: "Side",
  22184. image: {
  22185. source: "./media/characters/kanara/side.svg"
  22186. }
  22187. },
  22188. },
  22189. [
  22190. {
  22191. name: "Normal",
  22192. height: math.unit(25.5, "feet"),
  22193. default: true
  22194. },
  22195. ]
  22196. ))
  22197. characterMakers.push(() => makeCharacter(
  22198. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22199. {
  22200. side: {
  22201. height: math.unit(10, "feet"),
  22202. weight: math.unit(1000, "kg"),
  22203. name: "Side",
  22204. image: {
  22205. source: "./media/characters/ereus/side.svg",
  22206. extra: 1157 / 959,
  22207. bottom: 153 / 1312.5
  22208. }
  22209. },
  22210. },
  22211. [
  22212. {
  22213. name: "Normal",
  22214. height: math.unit(10, "feet"),
  22215. default: true
  22216. },
  22217. ]
  22218. ))
  22219. characterMakers.push(() => makeCharacter(
  22220. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22221. {
  22222. side: {
  22223. height: math.unit(4.5, "feet"),
  22224. weight: math.unit(500, "lb"),
  22225. name: "Side",
  22226. image: {
  22227. source: "./media/characters/e-ter/side.svg",
  22228. extra: 1550 / 1248,
  22229. bottom: 146 / 1694
  22230. }
  22231. },
  22232. },
  22233. [
  22234. {
  22235. name: "Normal",
  22236. height: math.unit(4.5, "feet"),
  22237. default: true
  22238. },
  22239. ]
  22240. ))
  22241. characterMakers.push(() => makeCharacter(
  22242. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22243. {
  22244. side: {
  22245. height: math.unit(9.7, "feet"),
  22246. weight: math.unit(4000, "kg"),
  22247. name: "Side",
  22248. image: {
  22249. source: "./media/characters/yamie/side.svg"
  22250. }
  22251. },
  22252. },
  22253. [
  22254. {
  22255. name: "Normal",
  22256. height: math.unit(9.7, "feet"),
  22257. default: true
  22258. },
  22259. ]
  22260. ))
  22261. characterMakers.push(() => makeCharacter(
  22262. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22263. {
  22264. front: {
  22265. height: math.unit(50, "feet"),
  22266. weight: math.unit(50000, "kg"),
  22267. name: "Front",
  22268. image: {
  22269. source: "./media/characters/anders/front.svg",
  22270. extra: 570 / 539,
  22271. bottom: 14.7 / 586.7
  22272. }
  22273. },
  22274. },
  22275. [
  22276. {
  22277. name: "Large",
  22278. height: math.unit(50, "feet")
  22279. },
  22280. {
  22281. name: "Macro",
  22282. height: math.unit(2000, "feet"),
  22283. default: true
  22284. },
  22285. {
  22286. name: "Megamacro",
  22287. height: math.unit(12, "miles")
  22288. },
  22289. ]
  22290. ))
  22291. characterMakers.push(() => makeCharacter(
  22292. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22293. {
  22294. front: {
  22295. height: math.unit(7 + 2 / 12, "feet"),
  22296. weight: math.unit(300, "lb"),
  22297. name: "Front",
  22298. image: {
  22299. source: "./media/characters/reban/front.svg",
  22300. extra: 516 / 487,
  22301. bottom: 42.82 / 558.356
  22302. }
  22303. },
  22304. dick: {
  22305. height: math.unit(7 / 5, "feet"),
  22306. name: "Dick",
  22307. image: {
  22308. source: "./media/characters/reban/dick.svg"
  22309. }
  22310. },
  22311. },
  22312. [
  22313. {
  22314. name: "Natural Height",
  22315. height: math.unit(7 + 2 / 12, "feet")
  22316. },
  22317. {
  22318. name: "Macro",
  22319. height: math.unit(500, "feet"),
  22320. default: true
  22321. },
  22322. {
  22323. name: "Canon Height",
  22324. height: math.unit(50, "AU")
  22325. },
  22326. ]
  22327. ))
  22328. characterMakers.push(() => makeCharacter(
  22329. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22330. {
  22331. front: {
  22332. height: math.unit(6, "feet"),
  22333. weight: math.unit(150, "lb"),
  22334. name: "Front",
  22335. image: {
  22336. source: "./media/characters/terrance-keayes/front.svg",
  22337. extra: 1.005,
  22338. bottom: 151 / 1615
  22339. }
  22340. },
  22341. side: {
  22342. height: math.unit(6, "feet"),
  22343. weight: math.unit(150, "lb"),
  22344. name: "Side",
  22345. image: {
  22346. source: "./media/characters/terrance-keayes/side.svg",
  22347. extra: 1.005,
  22348. bottom: 129.4 / 1544
  22349. }
  22350. },
  22351. back: {
  22352. height: math.unit(6, "feet"),
  22353. weight: math.unit(150, "lb"),
  22354. name: "Back",
  22355. image: {
  22356. source: "./media/characters/terrance-keayes/back.svg",
  22357. extra: 1.005,
  22358. bottom: 58.4 / 1557.3
  22359. }
  22360. },
  22361. dick: {
  22362. height: math.unit(6 * 0.208, "feet"),
  22363. name: "Dick",
  22364. image: {
  22365. source: "./media/characters/terrance-keayes/dick.svg"
  22366. }
  22367. },
  22368. },
  22369. [
  22370. {
  22371. name: "Canon Height",
  22372. height: math.unit(35, "miles"),
  22373. default: true
  22374. },
  22375. ]
  22376. ))
  22377. characterMakers.push(() => makeCharacter(
  22378. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22379. {
  22380. front: {
  22381. height: math.unit(6, "feet"),
  22382. weight: math.unit(150, "lb"),
  22383. name: "Front",
  22384. image: {
  22385. source: "./media/characters/ofelia/front.svg",
  22386. extra: 546 / 541,
  22387. bottom: 39 / 583
  22388. }
  22389. },
  22390. back: {
  22391. height: math.unit(6, "feet"),
  22392. weight: math.unit(150, "lb"),
  22393. name: "Back",
  22394. image: {
  22395. source: "./media/characters/ofelia/back.svg",
  22396. extra: 564 / 559.5,
  22397. bottom: 8.69 / 573.02
  22398. }
  22399. },
  22400. maw: {
  22401. height: math.unit(1, "feet"),
  22402. name: "Maw",
  22403. image: {
  22404. source: "./media/characters/ofelia/maw.svg"
  22405. }
  22406. },
  22407. foot: {
  22408. height: math.unit(1.949, "feet"),
  22409. name: "Foot",
  22410. image: {
  22411. source: "./media/characters/ofelia/foot.svg"
  22412. }
  22413. },
  22414. },
  22415. [
  22416. {
  22417. name: "Canon Height",
  22418. height: math.unit(2000, "miles"),
  22419. default: true
  22420. },
  22421. ]
  22422. ))
  22423. characterMakers.push(() => makeCharacter(
  22424. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22425. {
  22426. front: {
  22427. height: math.unit(6, "feet"),
  22428. weight: math.unit(150, "lb"),
  22429. name: "Front",
  22430. image: {
  22431. source: "./media/characters/samuel/front.svg",
  22432. extra: 265 / 258,
  22433. bottom: 2 / 266.1566
  22434. }
  22435. },
  22436. },
  22437. [
  22438. {
  22439. name: "Macro",
  22440. height: math.unit(100, "feet"),
  22441. default: true
  22442. },
  22443. {
  22444. name: "Full Size",
  22445. height: math.unit(1000, "miles")
  22446. },
  22447. ]
  22448. ))
  22449. characterMakers.push(() => makeCharacter(
  22450. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22451. {
  22452. front: {
  22453. height: math.unit(6, "feet"),
  22454. weight: math.unit(300, "lb"),
  22455. name: "Front",
  22456. image: {
  22457. source: "./media/characters/beishir-kiel/front.svg",
  22458. extra: 569 / 547,
  22459. bottom: 41.9 / 609
  22460. }
  22461. },
  22462. maw: {
  22463. height: math.unit(6 * 0.202, "feet"),
  22464. name: "Maw",
  22465. image: {
  22466. source: "./media/characters/beishir-kiel/maw.svg"
  22467. }
  22468. },
  22469. },
  22470. [
  22471. {
  22472. name: "Macro",
  22473. height: math.unit(300, "feet"),
  22474. default: true
  22475. },
  22476. ]
  22477. ))
  22478. characterMakers.push(() => makeCharacter(
  22479. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22480. {
  22481. front: {
  22482. height: math.unit(5 + 7/12, "feet"),
  22483. weight: math.unit(120, "lb"),
  22484. name: "Front",
  22485. image: {
  22486. source: "./media/characters/logan-grey/front.svg",
  22487. extra: 1836/1738,
  22488. bottom: 108/1944
  22489. }
  22490. },
  22491. back: {
  22492. height: math.unit(5 + 7/12, "feet"),
  22493. weight: math.unit(120, "lb"),
  22494. name: "Back",
  22495. image: {
  22496. source: "./media/characters/logan-grey/back.svg",
  22497. extra: 1880/1794,
  22498. bottom: 24/1904
  22499. }
  22500. },
  22501. frontSfw: {
  22502. height: math.unit(5 + 7/12, "feet"),
  22503. weight: math.unit(120, "lb"),
  22504. name: "Front (SFW)",
  22505. image: {
  22506. source: "./media/characters/logan-grey/front-sfw.svg",
  22507. extra: 1836/1738,
  22508. bottom: 108/1944
  22509. }
  22510. },
  22511. backSfw: {
  22512. height: math.unit(5 + 7/12, "feet"),
  22513. weight: math.unit(120, "lb"),
  22514. name: "Back (SFW)",
  22515. image: {
  22516. source: "./media/characters/logan-grey/back-sfw.svg",
  22517. extra: 1880/1794,
  22518. bottom: 24/1904
  22519. }
  22520. },
  22521. hands: {
  22522. height: math.unit(0.84, "feet"),
  22523. name: "Hands",
  22524. image: {
  22525. source: "./media/characters/logan-grey/hands.svg"
  22526. }
  22527. },
  22528. paws: {
  22529. height: math.unit(0.72, "feet"),
  22530. name: "Paws",
  22531. image: {
  22532. source: "./media/characters/logan-grey/paws.svg"
  22533. }
  22534. },
  22535. cock: {
  22536. height: math.unit(1.45, "feet"),
  22537. name: "Cock",
  22538. image: {
  22539. source: "./media/characters/logan-grey/cock.svg"
  22540. }
  22541. },
  22542. cockAlt: {
  22543. height: math.unit(1.437, "feet"),
  22544. name: "Cock (alt)",
  22545. image: {
  22546. source: "./media/characters/logan-grey/cock-alt.svg"
  22547. }
  22548. },
  22549. },
  22550. [
  22551. {
  22552. name: "Normal",
  22553. height: math.unit(5 + 8 / 12, "feet")
  22554. },
  22555. {
  22556. name: "The 500 Foot Femboy",
  22557. height: math.unit(500, "feet"),
  22558. default: true
  22559. },
  22560. {
  22561. name: "Megmacro",
  22562. height: math.unit(20, "miles")
  22563. },
  22564. ]
  22565. ))
  22566. characterMakers.push(() => makeCharacter(
  22567. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22568. {
  22569. front: {
  22570. height: math.unit(8 + 2 / 12, "feet"),
  22571. weight: math.unit(275, "lb"),
  22572. name: "Front",
  22573. image: {
  22574. source: "./media/characters/draganta/front.svg",
  22575. extra: 1177 / 1135,
  22576. bottom: 33.46 / 1212.1
  22577. }
  22578. },
  22579. },
  22580. [
  22581. {
  22582. name: "Normal",
  22583. height: math.unit(8 + 6 / 12, "feet"),
  22584. default: true
  22585. },
  22586. {
  22587. name: "Macro",
  22588. height: math.unit(150, "feet")
  22589. },
  22590. {
  22591. name: "Megamacro",
  22592. height: math.unit(1000, "miles")
  22593. },
  22594. ]
  22595. ))
  22596. characterMakers.push(() => makeCharacter(
  22597. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22598. {
  22599. front: {
  22600. height: math.unit(1.72, "m"),
  22601. weight: math.unit(80, "lb"),
  22602. name: "Front",
  22603. image: {
  22604. source: "./media/characters/voski/front.svg",
  22605. extra: 2076.22 / 2022.4,
  22606. bottom: 102.7 / 2177.3866
  22607. }
  22608. },
  22609. frontNsfw: {
  22610. height: math.unit(1.72, "m"),
  22611. weight: math.unit(80, "lb"),
  22612. name: "Front (NSFW)",
  22613. image: {
  22614. source: "./media/characters/voski/front-nsfw.svg",
  22615. extra: 2076.22 / 2022.4,
  22616. bottom: 102.7 / 2177.3866
  22617. }
  22618. },
  22619. back: {
  22620. height: math.unit(1.72, "m"),
  22621. weight: math.unit(80, "lb"),
  22622. name: "Back",
  22623. image: {
  22624. source: "./media/characters/voski/back.svg",
  22625. extra: 2104 / 2051,
  22626. bottom: 10.45 / 2113.63
  22627. }
  22628. },
  22629. },
  22630. [
  22631. {
  22632. name: "Normal",
  22633. height: math.unit(1.72, "m")
  22634. },
  22635. {
  22636. name: "Macro",
  22637. height: math.unit(55, "m"),
  22638. default: true
  22639. },
  22640. {
  22641. name: "Macro+",
  22642. height: math.unit(300, "m")
  22643. },
  22644. {
  22645. name: "Macro++",
  22646. height: math.unit(700, "m")
  22647. },
  22648. {
  22649. name: "Macro+++",
  22650. height: math.unit(4500, "m")
  22651. },
  22652. {
  22653. name: "Macro++++",
  22654. height: math.unit(45, "km")
  22655. },
  22656. {
  22657. name: "Macro+++++",
  22658. height: math.unit(1220, "km")
  22659. },
  22660. ]
  22661. ))
  22662. characterMakers.push(() => makeCharacter(
  22663. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22664. {
  22665. front: {
  22666. height: math.unit(2.3, "m"),
  22667. weight: math.unit(304, "kg"),
  22668. name: "Front",
  22669. image: {
  22670. source: "./media/characters/icowom-lee/front.svg",
  22671. extra: 985 / 955,
  22672. bottom: 25.4 / 1012
  22673. }
  22674. },
  22675. fronttentacles: {
  22676. height: math.unit(2.3, "m"),
  22677. weight: math.unit(304, "kg"),
  22678. name: "Front-tentacles",
  22679. image: {
  22680. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22681. extra: 985 / 955,
  22682. bottom: 25.4 / 1012
  22683. }
  22684. },
  22685. back: {
  22686. height: math.unit(2.3, "m"),
  22687. weight: math.unit(304, "kg"),
  22688. name: "Back",
  22689. image: {
  22690. source: "./media/characters/icowom-lee/back.svg",
  22691. extra: 975 / 954,
  22692. bottom: 9.5 / 985
  22693. }
  22694. },
  22695. backtentacles: {
  22696. height: math.unit(2.3, "m"),
  22697. weight: math.unit(304, "kg"),
  22698. name: "Back-tentacles",
  22699. image: {
  22700. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22701. extra: 975 / 954,
  22702. bottom: 9.5 / 985
  22703. }
  22704. },
  22705. frontDressed: {
  22706. height: math.unit(2.3, "m"),
  22707. weight: math.unit(304, "kg"),
  22708. name: "Front (Dressed)",
  22709. image: {
  22710. source: "./media/characters/icowom-lee/front-dressed.svg",
  22711. extra: 3076 / 2933,
  22712. bottom: 51.4 / 3125.1889
  22713. }
  22714. },
  22715. rump: {
  22716. height: math.unit(0.776, "meters"),
  22717. name: "Rump",
  22718. image: {
  22719. source: "./media/characters/icowom-lee/rump.svg"
  22720. }
  22721. },
  22722. genitals: {
  22723. height: math.unit(0.78, "meters"),
  22724. name: "Genitals",
  22725. image: {
  22726. source: "./media/characters/icowom-lee/genitals.svg"
  22727. }
  22728. },
  22729. },
  22730. [
  22731. {
  22732. name: "Normal",
  22733. height: math.unit(2.3, "meters"),
  22734. default: true
  22735. },
  22736. {
  22737. name: "Macro",
  22738. height: math.unit(94, "meters"),
  22739. default: true
  22740. },
  22741. ]
  22742. ))
  22743. characterMakers.push(() => makeCharacter(
  22744. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22745. {
  22746. front: {
  22747. height: math.unit(22, "meters"),
  22748. weight: math.unit(21000, "kg"),
  22749. name: "Front",
  22750. image: {
  22751. source: "./media/characters/shock-diamond/front.svg",
  22752. extra: 2204 / 2053,
  22753. bottom: 65 / 2239.47
  22754. }
  22755. },
  22756. frontNude: {
  22757. height: math.unit(22, "meters"),
  22758. weight: math.unit(21000, "kg"),
  22759. name: "Front (Nude)",
  22760. image: {
  22761. source: "./media/characters/shock-diamond/front-nude.svg",
  22762. extra: 2514 / 2285,
  22763. bottom: 13 / 2527.56
  22764. }
  22765. },
  22766. },
  22767. [
  22768. {
  22769. name: "Normal",
  22770. height: math.unit(3, "meters")
  22771. },
  22772. {
  22773. name: "Macro",
  22774. height: math.unit(22, "meters"),
  22775. default: true
  22776. },
  22777. ]
  22778. ))
  22779. characterMakers.push(() => makeCharacter(
  22780. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22781. {
  22782. front: {
  22783. height: math.unit(5 + 4 / 12, "feet"),
  22784. weight: math.unit(120, "lb"),
  22785. name: "Front",
  22786. image: {
  22787. source: "./media/characters/rory/front.svg",
  22788. extra: 1318/1241,
  22789. bottom: 42/1360
  22790. }
  22791. },
  22792. back: {
  22793. height: math.unit(5 + 4 / 12, "feet"),
  22794. weight: math.unit(120, "lb"),
  22795. name: "Back",
  22796. image: {
  22797. source: "./media/characters/rory/back.svg",
  22798. extra: 1318/1241,
  22799. bottom: 42/1360
  22800. }
  22801. },
  22802. butt: {
  22803. height: math.unit(1.74, "feet"),
  22804. name: "Butt",
  22805. image: {
  22806. source: "./media/characters/rory/butt.svg"
  22807. }
  22808. },
  22809. dick: {
  22810. height: math.unit(1.02, "feet"),
  22811. name: "Dick",
  22812. image: {
  22813. source: "./media/characters/rory/dick.svg"
  22814. }
  22815. },
  22816. paws: {
  22817. height: math.unit(1, "feet"),
  22818. name: "Paws",
  22819. image: {
  22820. source: "./media/characters/rory/paws.svg"
  22821. }
  22822. },
  22823. frontAlt: {
  22824. height: math.unit(5 + 4 / 12, "feet"),
  22825. weight: math.unit(120, "lb"),
  22826. name: "Front (Alt)",
  22827. image: {
  22828. source: "./media/characters/rory/front-alt.svg",
  22829. extra: 589 / 556,
  22830. bottom: 45.7 / 635.76
  22831. }
  22832. },
  22833. frontAltNude: {
  22834. height: math.unit(5 + 4 / 12, "feet"),
  22835. weight: math.unit(120, "lb"),
  22836. name: "Front (Alt, Nude)",
  22837. image: {
  22838. source: "./media/characters/rory/front-alt-nude.svg",
  22839. extra: 589 / 556,
  22840. bottom: 45.7 / 635.76
  22841. }
  22842. },
  22843. side: {
  22844. height: math.unit(5 + 4 / 12, "feet"),
  22845. weight: math.unit(120, "lb"),
  22846. name: "Side",
  22847. image: {
  22848. source: "./media/characters/rory/side.svg",
  22849. extra: 597 / 564,
  22850. bottom: 55 / 653
  22851. }
  22852. },
  22853. backAlt: {
  22854. height: math.unit(5 + 4 / 12, "feet"),
  22855. weight: math.unit(120, "lb"),
  22856. name: "Back (Alt)",
  22857. image: {
  22858. source: "./media/characters/rory/back-alt.svg",
  22859. extra: 620 / 585,
  22860. bottom: 8.86 / 630.43
  22861. }
  22862. },
  22863. dickAlt: {
  22864. height: math.unit(0.86, "feet"),
  22865. name: "Dick (Alt)",
  22866. image: {
  22867. source: "./media/characters/rory/dick-alt.svg"
  22868. }
  22869. },
  22870. },
  22871. [
  22872. {
  22873. name: "Normal",
  22874. height: math.unit(5 + 4 / 12, "feet"),
  22875. default: true
  22876. },
  22877. {
  22878. name: "Macro",
  22879. height: math.unit(100, "feet")
  22880. },
  22881. {
  22882. name: "Macro+",
  22883. height: math.unit(140, "feet")
  22884. },
  22885. {
  22886. name: "Macro++",
  22887. height: math.unit(300, "feet")
  22888. },
  22889. ]
  22890. ))
  22891. characterMakers.push(() => makeCharacter(
  22892. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22893. {
  22894. front: {
  22895. height: math.unit(5 + 9 / 12, "feet"),
  22896. weight: math.unit(190, "lb"),
  22897. name: "Front",
  22898. image: {
  22899. source: "./media/characters/sprisk/front.svg",
  22900. extra: 1225 / 1180,
  22901. bottom: 42.7 / 1266.4
  22902. }
  22903. },
  22904. frontNsfw: {
  22905. height: math.unit(5 + 9 / 12, "feet"),
  22906. weight: math.unit(190, "lb"),
  22907. name: "Front (NSFW)",
  22908. image: {
  22909. source: "./media/characters/sprisk/front-nsfw.svg",
  22910. extra: 1225 / 1180,
  22911. bottom: 42.7 / 1266.4
  22912. }
  22913. },
  22914. back: {
  22915. height: math.unit(5 + 9 / 12, "feet"),
  22916. weight: math.unit(190, "lb"),
  22917. name: "Back",
  22918. image: {
  22919. source: "./media/characters/sprisk/back.svg",
  22920. extra: 1247 / 1200,
  22921. bottom: 5.6 / 1253.04
  22922. }
  22923. },
  22924. },
  22925. [
  22926. {
  22927. name: "Tiny",
  22928. height: math.unit(2, "inches")
  22929. },
  22930. {
  22931. name: "Normal",
  22932. height: math.unit(5 + 9 / 12, "feet"),
  22933. default: true
  22934. },
  22935. {
  22936. name: "Mini Macro",
  22937. height: math.unit(18, "feet")
  22938. },
  22939. {
  22940. name: "Macro",
  22941. height: math.unit(100, "feet")
  22942. },
  22943. {
  22944. name: "MACRO",
  22945. height: math.unit(50, "miles")
  22946. },
  22947. {
  22948. name: "M A C R O",
  22949. height: math.unit(300, "miles")
  22950. },
  22951. ]
  22952. ))
  22953. characterMakers.push(() => makeCharacter(
  22954. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22955. {
  22956. side: {
  22957. height: math.unit(15.6, "meters"),
  22958. weight: math.unit(700000, "kg"),
  22959. name: "Side",
  22960. image: {
  22961. source: "./media/characters/bunsen/side.svg",
  22962. extra: 1644 / 358
  22963. }
  22964. },
  22965. foot: {
  22966. height: math.unit(1.611 * 1644 / 358, "meter"),
  22967. name: "Foot",
  22968. image: {
  22969. source: "./media/characters/bunsen/foot.svg"
  22970. }
  22971. },
  22972. },
  22973. [
  22974. {
  22975. name: "Small",
  22976. height: math.unit(10, "feet")
  22977. },
  22978. {
  22979. name: "Normal",
  22980. height: math.unit(15.6, "meters"),
  22981. default: true
  22982. },
  22983. ]
  22984. ))
  22985. characterMakers.push(() => makeCharacter(
  22986. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22987. {
  22988. front: {
  22989. height: math.unit(4 + 11 / 12, "feet"),
  22990. weight: math.unit(140, "lb"),
  22991. name: "Front",
  22992. image: {
  22993. source: "./media/characters/sesh/front.svg",
  22994. extra: 3420 / 3231,
  22995. bottom: 72 / 3949.5
  22996. }
  22997. },
  22998. },
  22999. [
  23000. {
  23001. name: "Normal",
  23002. height: math.unit(4 + 11 / 12, "feet")
  23003. },
  23004. {
  23005. name: "Grown",
  23006. height: math.unit(15, "feet"),
  23007. default: true
  23008. },
  23009. {
  23010. name: "Macro",
  23011. height: math.unit(1500, "feet")
  23012. },
  23013. {
  23014. name: "Megamacro",
  23015. height: math.unit(30, "miles")
  23016. },
  23017. {
  23018. name: "Continental",
  23019. height: math.unit(3000, "miles")
  23020. },
  23021. {
  23022. name: "Gravity Mass",
  23023. height: math.unit(300000, "miles")
  23024. },
  23025. {
  23026. name: "Planet Buster",
  23027. height: math.unit(30000000, "miles")
  23028. },
  23029. {
  23030. name: "Big",
  23031. height: math.unit(3000000000, "miles")
  23032. },
  23033. ]
  23034. ))
  23035. characterMakers.push(() => makeCharacter(
  23036. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23037. {
  23038. front: {
  23039. height: math.unit(9, "feet"),
  23040. weight: math.unit(350, "lb"),
  23041. name: "Front",
  23042. image: {
  23043. source: "./media/characters/pepper/front.svg",
  23044. extra: 1448 / 1312,
  23045. bottom: 9.4 / 1457.88
  23046. }
  23047. },
  23048. back: {
  23049. height: math.unit(9, "feet"),
  23050. weight: math.unit(350, "lb"),
  23051. name: "Back",
  23052. image: {
  23053. source: "./media/characters/pepper/back.svg",
  23054. extra: 1423 / 1300,
  23055. bottom: 4.6 / 1429
  23056. }
  23057. },
  23058. maw: {
  23059. height: math.unit(0.932, "feet"),
  23060. name: "Maw",
  23061. image: {
  23062. source: "./media/characters/pepper/maw.svg"
  23063. }
  23064. },
  23065. },
  23066. [
  23067. {
  23068. name: "Normal",
  23069. height: math.unit(9, "feet"),
  23070. default: true
  23071. },
  23072. ]
  23073. ))
  23074. characterMakers.push(() => makeCharacter(
  23075. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23076. {
  23077. front: {
  23078. height: math.unit(6, "feet"),
  23079. weight: math.unit(150, "lb"),
  23080. name: "Front",
  23081. image: {
  23082. source: "./media/characters/maelstrom/front.svg",
  23083. extra: 2100 / 1883,
  23084. bottom: 94 / 2196.7
  23085. }
  23086. },
  23087. },
  23088. [
  23089. {
  23090. name: "Less Kaiju",
  23091. height: math.unit(200, "feet")
  23092. },
  23093. {
  23094. name: "Kaiju",
  23095. height: math.unit(400, "feet"),
  23096. default: true
  23097. },
  23098. {
  23099. name: "Kaiju-er",
  23100. height: math.unit(600, "feet")
  23101. },
  23102. ]
  23103. ))
  23104. characterMakers.push(() => makeCharacter(
  23105. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23106. {
  23107. front: {
  23108. height: math.unit(6 + 5 / 12, "feet"),
  23109. weight: math.unit(180, "lb"),
  23110. name: "Front",
  23111. image: {
  23112. source: "./media/characters/lexir/front.svg",
  23113. extra: 180 / 172,
  23114. bottom: 12 / 192
  23115. }
  23116. },
  23117. back: {
  23118. height: math.unit(6 + 5 / 12, "feet"),
  23119. weight: math.unit(180, "lb"),
  23120. name: "Back",
  23121. image: {
  23122. source: "./media/characters/lexir/back.svg",
  23123. extra: 183.84 / 175.5,
  23124. bottom: 3.1 / 187
  23125. }
  23126. },
  23127. },
  23128. [
  23129. {
  23130. name: "Very Smal",
  23131. height: math.unit(1, "nm")
  23132. },
  23133. {
  23134. name: "Normal",
  23135. height: math.unit(6 + 5 / 12, "feet"),
  23136. default: true
  23137. },
  23138. {
  23139. name: "Macro",
  23140. height: math.unit(1, "mile")
  23141. },
  23142. {
  23143. name: "Megamacro",
  23144. height: math.unit(50, "miles")
  23145. },
  23146. ]
  23147. ))
  23148. characterMakers.push(() => makeCharacter(
  23149. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23150. {
  23151. front: {
  23152. height: math.unit(1.5, "meters"),
  23153. weight: math.unit(100, "lb"),
  23154. name: "Front",
  23155. image: {
  23156. source: "./media/characters/maksio/front.svg",
  23157. extra: 1549 / 1531,
  23158. bottom: 123.7 / 1674.5429
  23159. }
  23160. },
  23161. back: {
  23162. height: math.unit(1.5, "meters"),
  23163. weight: math.unit(100, "lb"),
  23164. name: "Back",
  23165. image: {
  23166. source: "./media/characters/maksio/back.svg",
  23167. extra: 1541 / 1509,
  23168. bottom: 97 / 1639
  23169. }
  23170. },
  23171. hand: {
  23172. height: math.unit(0.621, "feet"),
  23173. name: "Hand",
  23174. image: {
  23175. source: "./media/characters/maksio/hand.svg"
  23176. }
  23177. },
  23178. foot: {
  23179. height: math.unit(1.611, "feet"),
  23180. name: "Foot",
  23181. image: {
  23182. source: "./media/characters/maksio/foot.svg"
  23183. }
  23184. },
  23185. },
  23186. [
  23187. {
  23188. name: "Shrunken",
  23189. height: math.unit(10, "cm")
  23190. },
  23191. {
  23192. name: "Normal",
  23193. height: math.unit(150, "cm"),
  23194. default: true
  23195. },
  23196. ]
  23197. ))
  23198. characterMakers.push(() => makeCharacter(
  23199. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23200. {
  23201. front: {
  23202. height: math.unit(100, "feet"),
  23203. name: "Front",
  23204. image: {
  23205. source: "./media/characters/erza-bear/front.svg",
  23206. extra: 2449 / 2390,
  23207. bottom: 46 / 2494
  23208. }
  23209. },
  23210. back: {
  23211. height: math.unit(100, "feet"),
  23212. name: "Back",
  23213. image: {
  23214. source: "./media/characters/erza-bear/back.svg",
  23215. extra: 2489 / 2430,
  23216. bottom: 85.4 / 2480
  23217. }
  23218. },
  23219. tail: {
  23220. height: math.unit(42, "feet"),
  23221. name: "Tail",
  23222. image: {
  23223. source: "./media/characters/erza-bear/tail.svg"
  23224. }
  23225. },
  23226. tongue: {
  23227. height: math.unit(8, "feet"),
  23228. name: "Tongue",
  23229. image: {
  23230. source: "./media/characters/erza-bear/tongue.svg"
  23231. }
  23232. },
  23233. dick: {
  23234. height: math.unit(10.5, "feet"),
  23235. name: "Dick",
  23236. image: {
  23237. source: "./media/characters/erza-bear/dick.svg"
  23238. }
  23239. },
  23240. dickVertical: {
  23241. height: math.unit(16.9, "feet"),
  23242. name: "Dick (Vertical)",
  23243. image: {
  23244. source: "./media/characters/erza-bear/dick-vertical.svg"
  23245. }
  23246. },
  23247. },
  23248. [
  23249. {
  23250. name: "Macro",
  23251. height: math.unit(100, "feet"),
  23252. default: true
  23253. },
  23254. ]
  23255. ))
  23256. characterMakers.push(() => makeCharacter(
  23257. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23258. {
  23259. front: {
  23260. height: math.unit(172, "cm"),
  23261. weight: math.unit(73, "kg"),
  23262. name: "Front",
  23263. image: {
  23264. source: "./media/characters/violet-flor/front.svg",
  23265. extra: 1530 / 1442,
  23266. bottom: 61.9 / 1588.8
  23267. }
  23268. },
  23269. back: {
  23270. height: math.unit(180, "cm"),
  23271. weight: math.unit(73, "kg"),
  23272. name: "Back",
  23273. image: {
  23274. source: "./media/characters/violet-flor/back.svg",
  23275. extra: 1692 / 1630,
  23276. bottom: 20 / 1712
  23277. }
  23278. },
  23279. },
  23280. [
  23281. {
  23282. name: "Normal",
  23283. height: math.unit(172, "cm"),
  23284. default: true
  23285. },
  23286. ]
  23287. ))
  23288. characterMakers.push(() => makeCharacter(
  23289. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23290. {
  23291. front: {
  23292. height: math.unit(6, "feet"),
  23293. weight: math.unit(220, "lb"),
  23294. name: "Front",
  23295. image: {
  23296. source: "./media/characters/lynn-rhea/front.svg",
  23297. extra: 310 / 273
  23298. }
  23299. },
  23300. back: {
  23301. height: math.unit(6, "feet"),
  23302. weight: math.unit(220, "lb"),
  23303. name: "Back",
  23304. image: {
  23305. source: "./media/characters/lynn-rhea/back.svg",
  23306. extra: 310 / 273
  23307. }
  23308. },
  23309. dicks: {
  23310. height: math.unit(0.9, "feet"),
  23311. name: "Dicks",
  23312. image: {
  23313. source: "./media/characters/lynn-rhea/dicks.svg"
  23314. }
  23315. },
  23316. slit: {
  23317. height: math.unit(0.4, "feet"),
  23318. name: "Slit",
  23319. image: {
  23320. source: "./media/characters/lynn-rhea/slit.svg"
  23321. }
  23322. },
  23323. },
  23324. [
  23325. {
  23326. name: "Micro",
  23327. height: math.unit(1, "inch")
  23328. },
  23329. {
  23330. name: "Macro",
  23331. height: math.unit(60, "feet"),
  23332. default: true
  23333. },
  23334. {
  23335. name: "Megamacro",
  23336. height: math.unit(2, "miles")
  23337. },
  23338. {
  23339. name: "Gigamacro",
  23340. height: math.unit(3, "earths")
  23341. },
  23342. {
  23343. name: "Galactic",
  23344. height: math.unit(0.8, "galaxies")
  23345. },
  23346. ]
  23347. ))
  23348. characterMakers.push(() => makeCharacter(
  23349. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23350. {
  23351. front: {
  23352. height: math.unit(1600, "feet"),
  23353. weight: math.unit(85758785169, "kg"),
  23354. name: "Front",
  23355. image: {
  23356. source: "./media/characters/valathos/front.svg",
  23357. extra: 1451 / 1339
  23358. }
  23359. },
  23360. },
  23361. [
  23362. {
  23363. name: "Macro",
  23364. height: math.unit(1600, "feet"),
  23365. default: true
  23366. },
  23367. ]
  23368. ))
  23369. characterMakers.push(() => makeCharacter(
  23370. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23371. {
  23372. front: {
  23373. height: math.unit(7 + 5 / 12, "feet"),
  23374. weight: math.unit(300, "lb"),
  23375. name: "Front",
  23376. image: {
  23377. source: "./media/characters/azula/front.svg",
  23378. extra: 3208 / 2880,
  23379. bottom: 80.2 / 3277
  23380. }
  23381. },
  23382. back: {
  23383. height: math.unit(7 + 5 / 12, "feet"),
  23384. weight: math.unit(300, "lb"),
  23385. name: "Back",
  23386. image: {
  23387. source: "./media/characters/azula/back.svg",
  23388. extra: 3169 / 2822,
  23389. bottom: 150.6 / 3321
  23390. }
  23391. },
  23392. },
  23393. [
  23394. {
  23395. name: "Normal",
  23396. height: math.unit(7 + 5 / 12, "feet"),
  23397. default: true
  23398. },
  23399. {
  23400. name: "Big",
  23401. height: math.unit(20, "feet")
  23402. },
  23403. ]
  23404. ))
  23405. characterMakers.push(() => makeCharacter(
  23406. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23407. {
  23408. front: {
  23409. height: math.unit(5 + 1 / 12, "feet"),
  23410. weight: math.unit(110, "lb"),
  23411. name: "Front",
  23412. image: {
  23413. source: "./media/characters/rupert/front.svg",
  23414. extra: 1549 / 1495,
  23415. bottom: 54.2 / 1604.4
  23416. }
  23417. },
  23418. },
  23419. [
  23420. {
  23421. name: "Normal",
  23422. height: math.unit(5 + 1 / 12, "feet"),
  23423. default: true
  23424. },
  23425. ]
  23426. ))
  23427. characterMakers.push(() => makeCharacter(
  23428. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23429. {
  23430. front: {
  23431. height: math.unit(8 + 4 / 12, "feet"),
  23432. weight: math.unit(350, "lb"),
  23433. name: "Front",
  23434. image: {
  23435. source: "./media/characters/sheera-castellar/front.svg",
  23436. extra: 1957 / 1894,
  23437. bottom: 26.97 / 1975.017
  23438. }
  23439. },
  23440. side: {
  23441. height: math.unit(8 + 4 / 12, "feet"),
  23442. weight: math.unit(350, "lb"),
  23443. name: "Side",
  23444. image: {
  23445. source: "./media/characters/sheera-castellar/side.svg",
  23446. extra: 1957 / 1894
  23447. }
  23448. },
  23449. back: {
  23450. height: math.unit(8 + 4 / 12, "feet"),
  23451. weight: math.unit(350, "lb"),
  23452. name: "Back",
  23453. image: {
  23454. source: "./media/characters/sheera-castellar/back.svg",
  23455. extra: 1957 / 1894
  23456. }
  23457. },
  23458. angled: {
  23459. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23460. weight: math.unit(350, "lb"),
  23461. name: "Angled",
  23462. image: {
  23463. source: "./media/characters/sheera-castellar/angled.svg",
  23464. extra: 1807 / 1707,
  23465. bottom: 68 / 1875
  23466. }
  23467. },
  23468. genitals: {
  23469. height: math.unit(2.2, "feet"),
  23470. name: "Genitals",
  23471. image: {
  23472. source: "./media/characters/sheera-castellar/genitals.svg"
  23473. }
  23474. },
  23475. taur: {
  23476. height: math.unit(10 + 6/12, "feet"),
  23477. name: "Taur",
  23478. image: {
  23479. source: "./media/characters/sheera-castellar/taur.svg",
  23480. extra: 2017/1909,
  23481. bottom: 185/2202
  23482. }
  23483. },
  23484. },
  23485. [
  23486. {
  23487. name: "Normal",
  23488. height: math.unit(8 + 4 / 12, "feet")
  23489. },
  23490. {
  23491. name: "Macro",
  23492. height: math.unit(150, "feet"),
  23493. default: true
  23494. },
  23495. {
  23496. name: "Macro+",
  23497. height: math.unit(800, "feet")
  23498. },
  23499. ]
  23500. ))
  23501. characterMakers.push(() => makeCharacter(
  23502. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23503. {
  23504. front: {
  23505. height: math.unit(6, "feet"),
  23506. weight: math.unit(150, "lb"),
  23507. name: "Front",
  23508. image: {
  23509. source: "./media/characters/jaipur/front.svg",
  23510. extra: 3860 / 3731,
  23511. bottom: 287 / 4140
  23512. }
  23513. },
  23514. back: {
  23515. height: math.unit(6, "feet"),
  23516. weight: math.unit(150, "lb"),
  23517. name: "Back",
  23518. image: {
  23519. source: "./media/characters/jaipur/back.svg",
  23520. extra: 4060 / 3930,
  23521. bottom: 151 / 4200
  23522. }
  23523. },
  23524. },
  23525. [
  23526. {
  23527. name: "Normal",
  23528. height: math.unit(1.85, "meters"),
  23529. default: true
  23530. },
  23531. {
  23532. name: "Macro",
  23533. height: math.unit(150, "meters")
  23534. },
  23535. {
  23536. name: "Macro+",
  23537. height: math.unit(0.5, "miles")
  23538. },
  23539. {
  23540. name: "Macro++",
  23541. height: math.unit(2.5, "miles")
  23542. },
  23543. {
  23544. name: "Macro+++",
  23545. height: math.unit(12, "miles")
  23546. },
  23547. {
  23548. name: "Macro++++",
  23549. height: math.unit(120, "miles")
  23550. },
  23551. {
  23552. name: "Macro+++++",
  23553. height: math.unit(1200, "miles")
  23554. },
  23555. ]
  23556. ))
  23557. characterMakers.push(() => makeCharacter(
  23558. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23559. {
  23560. front: {
  23561. height: math.unit(6, "feet"),
  23562. weight: math.unit(150, "lb"),
  23563. name: "Front",
  23564. image: {
  23565. source: "./media/characters/sheila-wolf/front.svg",
  23566. extra: 1931 / 1808,
  23567. bottom: 29.5 / 1960
  23568. }
  23569. },
  23570. dick: {
  23571. height: math.unit(1.464, "feet"),
  23572. name: "Dick",
  23573. image: {
  23574. source: "./media/characters/sheila-wolf/dick.svg"
  23575. }
  23576. },
  23577. muzzle: {
  23578. height: math.unit(0.513, "feet"),
  23579. name: "Muzzle",
  23580. image: {
  23581. source: "./media/characters/sheila-wolf/muzzle.svg"
  23582. }
  23583. },
  23584. },
  23585. [
  23586. {
  23587. name: "Macro",
  23588. height: math.unit(70, "feet"),
  23589. default: true
  23590. },
  23591. ]
  23592. ))
  23593. characterMakers.push(() => makeCharacter(
  23594. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23595. {
  23596. front: {
  23597. height: math.unit(32, "meters"),
  23598. weight: math.unit(300000, "kg"),
  23599. name: "Front",
  23600. image: {
  23601. source: "./media/characters/almor/front.svg",
  23602. extra: 1408 / 1322,
  23603. bottom: 94.6 / 1506.5
  23604. }
  23605. },
  23606. },
  23607. [
  23608. {
  23609. name: "Macro",
  23610. height: math.unit(32, "meters"),
  23611. default: true
  23612. },
  23613. ]
  23614. ))
  23615. characterMakers.push(() => makeCharacter(
  23616. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23617. {
  23618. front: {
  23619. height: math.unit(7, "feet"),
  23620. weight: math.unit(200, "lb"),
  23621. name: "Front",
  23622. image: {
  23623. source: "./media/characters/silver/front.svg",
  23624. extra: 472.1 / 450.5,
  23625. bottom: 26.5 / 499.424
  23626. }
  23627. },
  23628. },
  23629. [
  23630. {
  23631. name: "Normal",
  23632. height: math.unit(7, "feet"),
  23633. default: true
  23634. },
  23635. {
  23636. name: "Macro",
  23637. height: math.unit(800, "feet")
  23638. },
  23639. {
  23640. name: "Megamacro",
  23641. height: math.unit(250, "miles")
  23642. },
  23643. ]
  23644. ))
  23645. characterMakers.push(() => makeCharacter(
  23646. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23647. {
  23648. front: {
  23649. height: math.unit(6, "feet"),
  23650. weight: math.unit(150, "lb"),
  23651. name: "Front",
  23652. image: {
  23653. source: "./media/characters/pliskin/front.svg",
  23654. extra: 1469 / 1359,
  23655. bottom: 70 / 1540
  23656. }
  23657. },
  23658. },
  23659. [
  23660. {
  23661. name: "Micro",
  23662. height: math.unit(3, "inches")
  23663. },
  23664. {
  23665. name: "Normal",
  23666. height: math.unit(5 + 11 / 12, "feet"),
  23667. default: true
  23668. },
  23669. {
  23670. name: "Macro",
  23671. height: math.unit(120, "feet")
  23672. },
  23673. ]
  23674. ))
  23675. characterMakers.push(() => makeCharacter(
  23676. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23677. {
  23678. front: {
  23679. height: math.unit(6, "feet"),
  23680. weight: math.unit(150, "lb"),
  23681. name: "Front",
  23682. image: {
  23683. source: "./media/characters/sammy/front.svg",
  23684. extra: 1193 / 1089,
  23685. bottom: 30.5 / 1226
  23686. }
  23687. },
  23688. },
  23689. [
  23690. {
  23691. name: "Macro",
  23692. height: math.unit(1700, "feet"),
  23693. default: true
  23694. },
  23695. {
  23696. name: "Examacro",
  23697. height: math.unit(2.5e9, "lightyears")
  23698. },
  23699. ]
  23700. ))
  23701. characterMakers.push(() => makeCharacter(
  23702. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23703. {
  23704. front: {
  23705. height: math.unit(21, "meters"),
  23706. weight: math.unit(12, "tonnes"),
  23707. name: "Front",
  23708. image: {
  23709. source: "./media/characters/kuru/front.svg",
  23710. extra: 4301 / 3785,
  23711. bottom: 371.3 / 4691
  23712. }
  23713. },
  23714. },
  23715. [
  23716. {
  23717. name: "Macro",
  23718. height: math.unit(21, "meters"),
  23719. default: true
  23720. },
  23721. ]
  23722. ))
  23723. characterMakers.push(() => makeCharacter(
  23724. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23725. {
  23726. front: {
  23727. height: math.unit(23, "meters"),
  23728. weight: math.unit(12.2, "tonnes"),
  23729. name: "Front",
  23730. image: {
  23731. source: "./media/characters/rakka/front.svg",
  23732. extra: 4670 / 4169,
  23733. bottom: 301 / 4968.7
  23734. }
  23735. },
  23736. },
  23737. [
  23738. {
  23739. name: "Macro",
  23740. height: math.unit(23, "meters"),
  23741. default: true
  23742. },
  23743. ]
  23744. ))
  23745. characterMakers.push(() => makeCharacter(
  23746. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23747. {
  23748. front: {
  23749. height: math.unit(6, "feet"),
  23750. weight: math.unit(150, "lb"),
  23751. name: "Front",
  23752. image: {
  23753. source: "./media/characters/rhys-feline/front.svg",
  23754. extra: 2488 / 2308,
  23755. bottom: 35.67 / 2519.19
  23756. }
  23757. },
  23758. },
  23759. [
  23760. {
  23761. name: "Really Small",
  23762. height: math.unit(1, "nm")
  23763. },
  23764. {
  23765. name: "Micro",
  23766. height: math.unit(4, "inches")
  23767. },
  23768. {
  23769. name: "Normal",
  23770. height: math.unit(4 + 10 / 12, "feet"),
  23771. default: true
  23772. },
  23773. {
  23774. name: "Macro",
  23775. height: math.unit(100, "feet")
  23776. },
  23777. {
  23778. name: "Megamacto",
  23779. height: math.unit(50, "miles")
  23780. },
  23781. ]
  23782. ))
  23783. characterMakers.push(() => makeCharacter(
  23784. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23785. {
  23786. side: {
  23787. height: math.unit(30, "feet"),
  23788. weight: math.unit(35000, "kg"),
  23789. name: "Side",
  23790. image: {
  23791. source: "./media/characters/alydar/side.svg",
  23792. extra: 234 / 222,
  23793. bottom: 6.5 / 241
  23794. }
  23795. },
  23796. front: {
  23797. height: math.unit(30, "feet"),
  23798. weight: math.unit(35000, "kg"),
  23799. name: "Front",
  23800. image: {
  23801. source: "./media/characters/alydar/front.svg",
  23802. extra: 223.37 / 210.2,
  23803. bottom: 22.3 / 246.76
  23804. }
  23805. },
  23806. top: {
  23807. height: math.unit(64.54, "feet"),
  23808. weight: math.unit(35000, "kg"),
  23809. name: "Top",
  23810. image: {
  23811. source: "./media/characters/alydar/top.svg"
  23812. }
  23813. },
  23814. anthro: {
  23815. height: math.unit(30, "feet"),
  23816. weight: math.unit(9000, "kg"),
  23817. name: "Anthro",
  23818. image: {
  23819. source: "./media/characters/alydar/anthro.svg",
  23820. extra: 432 / 421,
  23821. bottom: 7.18 / 440
  23822. }
  23823. },
  23824. maw: {
  23825. height: math.unit(11.693, "feet"),
  23826. name: "Maw",
  23827. image: {
  23828. source: "./media/characters/alydar/maw.svg"
  23829. }
  23830. },
  23831. head: {
  23832. height: math.unit(11.693, "feet"),
  23833. name: "Head",
  23834. image: {
  23835. source: "./media/characters/alydar/head.svg"
  23836. }
  23837. },
  23838. headAlt: {
  23839. height: math.unit(12.861, "feet"),
  23840. name: "Head (Alt)",
  23841. image: {
  23842. source: "./media/characters/alydar/head-alt.svg"
  23843. }
  23844. },
  23845. wing: {
  23846. height: math.unit(20.712, "feet"),
  23847. name: "Wing",
  23848. image: {
  23849. source: "./media/characters/alydar/wing.svg"
  23850. }
  23851. },
  23852. wingFeather: {
  23853. height: math.unit(9.662, "feet"),
  23854. name: "Wing Feather",
  23855. image: {
  23856. source: "./media/characters/alydar/wing-feather.svg"
  23857. }
  23858. },
  23859. countourFeather: {
  23860. height: math.unit(4.154, "feet"),
  23861. name: "Contour Feather",
  23862. image: {
  23863. source: "./media/characters/alydar/contour-feather.svg"
  23864. }
  23865. },
  23866. },
  23867. [
  23868. {
  23869. name: "Diplomatic",
  23870. height: math.unit(13, "feet"),
  23871. default: true
  23872. },
  23873. {
  23874. name: "Small",
  23875. height: math.unit(30, "feet")
  23876. },
  23877. {
  23878. name: "Normal",
  23879. height: math.unit(95, "feet"),
  23880. default: true
  23881. },
  23882. {
  23883. name: "Large",
  23884. height: math.unit(285, "feet")
  23885. },
  23886. {
  23887. name: "Incomprehensible",
  23888. height: math.unit(450, "megameters")
  23889. },
  23890. ]
  23891. ))
  23892. characterMakers.push(() => makeCharacter(
  23893. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23894. {
  23895. side: {
  23896. height: math.unit(11, "feet"),
  23897. weight: math.unit(1750, "kg"),
  23898. name: "Side",
  23899. image: {
  23900. source: "./media/characters/selicia/side.svg",
  23901. extra: 440 / 396,
  23902. bottom: 24.8 / 465.979
  23903. }
  23904. },
  23905. maw: {
  23906. height: math.unit(4.665, "feet"),
  23907. name: "Maw",
  23908. image: {
  23909. source: "./media/characters/selicia/maw.svg"
  23910. }
  23911. },
  23912. },
  23913. [
  23914. {
  23915. name: "Normal",
  23916. height: math.unit(11, "feet"),
  23917. default: true
  23918. },
  23919. ]
  23920. ))
  23921. characterMakers.push(() => makeCharacter(
  23922. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23923. {
  23924. side: {
  23925. height: math.unit(2 + 6 / 12, "feet"),
  23926. weight: math.unit(30, "lb"),
  23927. name: "Side",
  23928. image: {
  23929. source: "./media/characters/layla/side.svg",
  23930. extra: 244 / 188,
  23931. bottom: 18.2 / 262.1
  23932. }
  23933. },
  23934. back: {
  23935. height: math.unit(2 + 6 / 12, "feet"),
  23936. weight: math.unit(30, "lb"),
  23937. name: "Back",
  23938. image: {
  23939. source: "./media/characters/layla/back.svg",
  23940. extra: 308 / 241.5,
  23941. bottom: 8.9 / 316.8
  23942. }
  23943. },
  23944. cumming: {
  23945. height: math.unit(2 + 6 / 12, "feet"),
  23946. weight: math.unit(30, "lb"),
  23947. name: "Cumming",
  23948. image: {
  23949. source: "./media/characters/layla/cumming.svg",
  23950. extra: 342 / 279,
  23951. bottom: 595 / 938
  23952. }
  23953. },
  23954. dickFlaccid: {
  23955. height: math.unit(2.595, "feet"),
  23956. name: "Flaccid Genitals",
  23957. image: {
  23958. source: "./media/characters/layla/dick-flaccid.svg"
  23959. }
  23960. },
  23961. dickErect: {
  23962. height: math.unit(2.359, "feet"),
  23963. name: "Erect Genitals",
  23964. image: {
  23965. source: "./media/characters/layla/dick-erect.svg"
  23966. }
  23967. },
  23968. dragon: {
  23969. height: math.unit(40, "feet"),
  23970. name: "Dragon",
  23971. image: {
  23972. source: "./media/characters/layla/dragon.svg",
  23973. extra: 610/535,
  23974. bottom: 367/977
  23975. }
  23976. },
  23977. taur: {
  23978. height: math.unit(30, "feet"),
  23979. name: "Taur",
  23980. image: {
  23981. source: "./media/characters/layla/taur.svg",
  23982. extra: 1268/1199,
  23983. bottom: 112/1380
  23984. }
  23985. },
  23986. },
  23987. [
  23988. {
  23989. name: "Micro",
  23990. height: math.unit(1, "inch")
  23991. },
  23992. {
  23993. name: "Small",
  23994. height: math.unit(1, "foot")
  23995. },
  23996. {
  23997. name: "Normal",
  23998. height: math.unit(2 + 6 / 12, "feet"),
  23999. default: true
  24000. },
  24001. {
  24002. name: "Macro",
  24003. height: math.unit(200, "feet")
  24004. },
  24005. {
  24006. name: "Megamacro",
  24007. height: math.unit(1000, "miles")
  24008. },
  24009. {
  24010. name: "Planetary",
  24011. height: math.unit(8000, "miles")
  24012. },
  24013. {
  24014. name: "True Layla",
  24015. height: math.unit(200000 * 7, "multiverses")
  24016. },
  24017. ]
  24018. ))
  24019. characterMakers.push(() => makeCharacter(
  24020. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24021. {
  24022. back: {
  24023. height: math.unit(10.5, "feet"),
  24024. weight: math.unit(800, "lb"),
  24025. name: "Back",
  24026. image: {
  24027. source: "./media/characters/knox/back.svg",
  24028. extra: 1486 / 1089,
  24029. bottom: 107 / 1601.4
  24030. }
  24031. },
  24032. side: {
  24033. height: math.unit(10.5, "feet"),
  24034. weight: math.unit(800, "lb"),
  24035. name: "Side",
  24036. image: {
  24037. source: "./media/characters/knox/side.svg",
  24038. extra: 244 / 218,
  24039. bottom: 14 / 260
  24040. }
  24041. },
  24042. },
  24043. [
  24044. {
  24045. name: "Compact",
  24046. height: math.unit(10.5, "feet"),
  24047. default: true
  24048. },
  24049. {
  24050. name: "Dynamax",
  24051. height: math.unit(210, "feet")
  24052. },
  24053. {
  24054. name: "Full Macro",
  24055. height: math.unit(850, "feet")
  24056. },
  24057. ]
  24058. ))
  24059. characterMakers.push(() => makeCharacter(
  24060. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24061. {
  24062. front: {
  24063. height: math.unit(28, "feet"),
  24064. weight: math.unit(10500, "lb"),
  24065. name: "Front",
  24066. image: {
  24067. source: "./media/characters/kayda/front.svg",
  24068. extra: 1536 / 1428,
  24069. bottom: 68.7 / 1603
  24070. }
  24071. },
  24072. back: {
  24073. height: math.unit(28, "feet"),
  24074. weight: math.unit(10500, "lb"),
  24075. name: "Back",
  24076. image: {
  24077. source: "./media/characters/kayda/back.svg",
  24078. extra: 1557 / 1464,
  24079. bottom: 39.5 / 1597.49
  24080. }
  24081. },
  24082. dick: {
  24083. height: math.unit(3.858, "feet"),
  24084. name: "Dick",
  24085. image: {
  24086. source: "./media/characters/kayda/dick.svg"
  24087. }
  24088. },
  24089. },
  24090. [
  24091. {
  24092. name: "Macro",
  24093. height: math.unit(28, "feet"),
  24094. default: true
  24095. },
  24096. ]
  24097. ))
  24098. characterMakers.push(() => makeCharacter(
  24099. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24100. {
  24101. front: {
  24102. height: math.unit(10 + 11 / 12, "feet"),
  24103. weight: math.unit(1400, "lb"),
  24104. name: "Front",
  24105. image: {
  24106. source: "./media/characters/brian/front.svg",
  24107. extra: 737 / 692,
  24108. bottom: 55.4 / 785
  24109. }
  24110. },
  24111. },
  24112. [
  24113. {
  24114. name: "Normal",
  24115. height: math.unit(10 + 11 / 12, "feet"),
  24116. default: true
  24117. },
  24118. ]
  24119. ))
  24120. characterMakers.push(() => makeCharacter(
  24121. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24122. {
  24123. front: {
  24124. height: math.unit(5 + 8 / 12, "feet"),
  24125. weight: math.unit(140, "lb"),
  24126. name: "Front",
  24127. image: {
  24128. source: "./media/characters/khemri/front.svg",
  24129. extra: 4780 / 4059,
  24130. bottom: 80.1 / 4859.25
  24131. }
  24132. },
  24133. },
  24134. [
  24135. {
  24136. name: "Micro",
  24137. height: math.unit(6, "inches")
  24138. },
  24139. {
  24140. name: "Normal",
  24141. height: math.unit(5 + 8 / 12, "feet"),
  24142. default: true
  24143. },
  24144. ]
  24145. ))
  24146. characterMakers.push(() => makeCharacter(
  24147. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24148. {
  24149. front: {
  24150. height: math.unit(13, "feet"),
  24151. weight: math.unit(1700, "lb"),
  24152. name: "Front",
  24153. image: {
  24154. source: "./media/characters/felix-braveheart/front.svg",
  24155. extra: 1222 / 1157,
  24156. bottom: 53.2 / 1280
  24157. }
  24158. },
  24159. back: {
  24160. height: math.unit(13, "feet"),
  24161. weight: math.unit(1700, "lb"),
  24162. name: "Back",
  24163. image: {
  24164. source: "./media/characters/felix-braveheart/back.svg",
  24165. extra: 1277 / 1203,
  24166. bottom: 50.2 / 1327
  24167. }
  24168. },
  24169. feral: {
  24170. height: math.unit(6, "feet"),
  24171. weight: math.unit(400, "lb"),
  24172. name: "Feral",
  24173. image: {
  24174. source: "./media/characters/felix-braveheart/feral.svg",
  24175. extra: 682 / 625,
  24176. bottom: 6.9 / 688
  24177. }
  24178. },
  24179. },
  24180. [
  24181. {
  24182. name: "Normal",
  24183. height: math.unit(13, "feet"),
  24184. default: true
  24185. },
  24186. ]
  24187. ))
  24188. characterMakers.push(() => makeCharacter(
  24189. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24190. {
  24191. side: {
  24192. height: math.unit(5 + 11 / 12, "feet"),
  24193. weight: math.unit(1400, "lb"),
  24194. name: "Side",
  24195. image: {
  24196. source: "./media/characters/shadow-blade/side.svg",
  24197. extra: 1726 / 1267,
  24198. bottom: 58.4 / 1785
  24199. }
  24200. },
  24201. },
  24202. [
  24203. {
  24204. name: "Normal",
  24205. height: math.unit(5 + 11 / 12, "feet"),
  24206. default: true
  24207. },
  24208. ]
  24209. ))
  24210. characterMakers.push(() => makeCharacter(
  24211. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24212. {
  24213. front: {
  24214. height: math.unit(1 + 6 / 12, "feet"),
  24215. weight: math.unit(25, "lb"),
  24216. name: "Front",
  24217. image: {
  24218. source: "./media/characters/karla-halldor/front.svg",
  24219. extra: 1459 / 1383,
  24220. bottom: 12 / 1472
  24221. }
  24222. },
  24223. },
  24224. [
  24225. {
  24226. name: "Normal",
  24227. height: math.unit(1 + 6 / 12, "feet"),
  24228. default: true
  24229. },
  24230. ]
  24231. ))
  24232. characterMakers.push(() => makeCharacter(
  24233. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24234. {
  24235. front: {
  24236. height: math.unit(6 + 2 / 12, "feet"),
  24237. weight: math.unit(160, "lb"),
  24238. name: "Front",
  24239. image: {
  24240. source: "./media/characters/ariam/front.svg",
  24241. extra: 1073/976,
  24242. bottom: 52/1125
  24243. }
  24244. },
  24245. back: {
  24246. height: math.unit(6 + 2/12, "feet"),
  24247. weight: math.unit(160, "lb"),
  24248. name: "Back",
  24249. image: {
  24250. source: "./media/characters/ariam/back.svg",
  24251. extra: 1103/1023,
  24252. bottom: 9/1112
  24253. }
  24254. },
  24255. dressed: {
  24256. height: math.unit(6 + 2/12, "feet"),
  24257. weight: math.unit(160, "lb"),
  24258. name: "Dressed",
  24259. image: {
  24260. source: "./media/characters/ariam/dressed.svg",
  24261. extra: 1099/1009,
  24262. bottom: 25/1124
  24263. }
  24264. },
  24265. squatting: {
  24266. height: math.unit(4.1, "feet"),
  24267. weight: math.unit(160, "lb"),
  24268. name: "Squatting",
  24269. image: {
  24270. source: "./media/characters/ariam/squatting.svg",
  24271. extra: 2617 / 2112,
  24272. bottom: 61.2 / 2681,
  24273. }
  24274. },
  24275. },
  24276. [
  24277. {
  24278. name: "Normal",
  24279. height: math.unit(6 + 2 / 12, "feet"),
  24280. default: true
  24281. },
  24282. {
  24283. name: "Normal+",
  24284. height: math.unit(4, "meters")
  24285. },
  24286. {
  24287. name: "Macro",
  24288. height: math.unit(50, "meters")
  24289. },
  24290. {
  24291. name: "Macro+",
  24292. height: math.unit(100, "meters")
  24293. },
  24294. {
  24295. name: "Megamacro",
  24296. height: math.unit(20, "km")
  24297. },
  24298. {
  24299. name: "Caretaker",
  24300. height: math.unit(444, "megameters")
  24301. },
  24302. ]
  24303. ))
  24304. characterMakers.push(() => makeCharacter(
  24305. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24306. {
  24307. front: {
  24308. height: math.unit(1.67, "meters"),
  24309. weight: math.unit(140, "lb"),
  24310. name: "Front",
  24311. image: {
  24312. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24313. extra: 438 / 410,
  24314. bottom: 0.75 / 439
  24315. }
  24316. },
  24317. },
  24318. [
  24319. {
  24320. name: "Shrunken",
  24321. height: math.unit(7.6, "cm")
  24322. },
  24323. {
  24324. name: "Human Scale",
  24325. height: math.unit(1.67, "meters")
  24326. },
  24327. {
  24328. name: "Wolxi Scale",
  24329. height: math.unit(36.7, "meters"),
  24330. default: true
  24331. },
  24332. ]
  24333. ))
  24334. characterMakers.push(() => makeCharacter(
  24335. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24336. {
  24337. front: {
  24338. height: math.unit(1.73, "meters"),
  24339. weight: math.unit(240, "lb"),
  24340. name: "Front",
  24341. image: {
  24342. source: "./media/characters/izue-two-mothers/front.svg",
  24343. extra: 469 / 437,
  24344. bottom: 1.24 / 470.6
  24345. }
  24346. },
  24347. },
  24348. [
  24349. {
  24350. name: "Shrunken",
  24351. height: math.unit(7.86, "cm")
  24352. },
  24353. {
  24354. name: "Human Scale",
  24355. height: math.unit(1.73, "meters")
  24356. },
  24357. {
  24358. name: "Wolxi Scale",
  24359. height: math.unit(38, "meters"),
  24360. default: true
  24361. },
  24362. ]
  24363. ))
  24364. characterMakers.push(() => makeCharacter(
  24365. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24366. {
  24367. front: {
  24368. height: math.unit(1.55, "meters"),
  24369. weight: math.unit(120, "lb"),
  24370. name: "Front",
  24371. image: {
  24372. source: "./media/characters/teeku-love-shack/front.svg",
  24373. extra: 387 / 362,
  24374. bottom: 1.51 / 388
  24375. }
  24376. },
  24377. },
  24378. [
  24379. {
  24380. name: "Shrunken",
  24381. height: math.unit(7, "cm")
  24382. },
  24383. {
  24384. name: "Human Scale",
  24385. height: math.unit(1.55, "meters")
  24386. },
  24387. {
  24388. name: "Wolxi Scale",
  24389. height: math.unit(34.1, "meters"),
  24390. default: true
  24391. },
  24392. ]
  24393. ))
  24394. characterMakers.push(() => makeCharacter(
  24395. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24396. {
  24397. front: {
  24398. height: math.unit(1.83, "meters"),
  24399. weight: math.unit(135, "lb"),
  24400. name: "Front",
  24401. image: {
  24402. source: "./media/characters/dejma-the-red/front.svg",
  24403. extra: 480 / 458,
  24404. bottom: 1.8 / 482
  24405. }
  24406. },
  24407. },
  24408. [
  24409. {
  24410. name: "Shrunken",
  24411. height: math.unit(8.3, "cm")
  24412. },
  24413. {
  24414. name: "Human Scale",
  24415. height: math.unit(1.83, "meters")
  24416. },
  24417. {
  24418. name: "Wolxi Scale",
  24419. height: math.unit(40, "meters"),
  24420. default: true
  24421. },
  24422. ]
  24423. ))
  24424. characterMakers.push(() => makeCharacter(
  24425. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24426. {
  24427. front: {
  24428. height: math.unit(1.78, "meters"),
  24429. weight: math.unit(65, "kg"),
  24430. name: "Front",
  24431. image: {
  24432. source: "./media/characters/aki/front.svg",
  24433. extra: 452 / 415
  24434. }
  24435. },
  24436. frontNsfw: {
  24437. height: math.unit(1.78, "meters"),
  24438. weight: math.unit(65, "kg"),
  24439. name: "Front (NSFW)",
  24440. image: {
  24441. source: "./media/characters/aki/front-nsfw.svg",
  24442. extra: 452 / 415
  24443. }
  24444. },
  24445. back: {
  24446. height: math.unit(1.78, "meters"),
  24447. weight: math.unit(65, "kg"),
  24448. name: "Back",
  24449. image: {
  24450. source: "./media/characters/aki/back.svg",
  24451. extra: 452 / 415
  24452. }
  24453. },
  24454. rump: {
  24455. height: math.unit(2.05, "feet"),
  24456. name: "Rump",
  24457. image: {
  24458. source: "./media/characters/aki/rump.svg"
  24459. }
  24460. },
  24461. dick: {
  24462. height: math.unit(0.95, "feet"),
  24463. name: "Dick",
  24464. image: {
  24465. source: "./media/characters/aki/dick.svg"
  24466. }
  24467. },
  24468. },
  24469. [
  24470. {
  24471. name: "Micro",
  24472. height: math.unit(15, "cm")
  24473. },
  24474. {
  24475. name: "Normal",
  24476. height: math.unit(178, "cm"),
  24477. default: true
  24478. },
  24479. {
  24480. name: "Macro",
  24481. height: math.unit(214, "m")
  24482. },
  24483. {
  24484. name: "Macro+",
  24485. height: math.unit(534, "m")
  24486. },
  24487. ]
  24488. ))
  24489. characterMakers.push(() => makeCharacter(
  24490. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24491. {
  24492. front: {
  24493. height: math.unit(5 + 5 / 12, "feet"),
  24494. weight: math.unit(120, "lb"),
  24495. name: "Front",
  24496. image: {
  24497. source: "./media/characters/ari/front.svg",
  24498. extra: 714.5 / 682,
  24499. bottom: 8 / 722.5
  24500. }
  24501. },
  24502. },
  24503. [
  24504. {
  24505. name: "Normal",
  24506. height: math.unit(5 + 5 / 12, "feet")
  24507. },
  24508. {
  24509. name: "Macro",
  24510. height: math.unit(100, "feet"),
  24511. default: true
  24512. },
  24513. {
  24514. name: "Megamacro",
  24515. height: math.unit(100, "miles")
  24516. },
  24517. {
  24518. name: "Gigamacro",
  24519. height: math.unit(80000, "miles")
  24520. },
  24521. ]
  24522. ))
  24523. characterMakers.push(() => makeCharacter(
  24524. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24525. {
  24526. side: {
  24527. height: math.unit(9, "feet"),
  24528. weight: math.unit(400, "kg"),
  24529. name: "Side",
  24530. image: {
  24531. source: "./media/characters/bolt/side.svg",
  24532. extra: 1126 / 896,
  24533. bottom: 60 / 1187.3,
  24534. }
  24535. },
  24536. },
  24537. [
  24538. {
  24539. name: "Micro",
  24540. height: math.unit(5, "inches")
  24541. },
  24542. {
  24543. name: "Normal",
  24544. height: math.unit(9, "feet"),
  24545. default: true
  24546. },
  24547. {
  24548. name: "Macro",
  24549. height: math.unit(700, "feet")
  24550. },
  24551. {
  24552. name: "Max Size",
  24553. height: math.unit(1.52e22, "yottameters")
  24554. },
  24555. ]
  24556. ))
  24557. characterMakers.push(() => makeCharacter(
  24558. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24559. {
  24560. front: {
  24561. height: math.unit(4.53, "meters"),
  24562. weight: math.unit(3, "tons"),
  24563. name: "Front",
  24564. image: {
  24565. source: "./media/characters/draekon-sylviar/front.svg",
  24566. extra: 1228 / 1068,
  24567. bottom: 41 / 1270
  24568. }
  24569. },
  24570. tail: {
  24571. height: math.unit(1.772, "meter"),
  24572. name: "Tail",
  24573. image: {
  24574. source: "./media/characters/draekon-sylviar/tail.svg"
  24575. }
  24576. },
  24577. head: {
  24578. height: math.unit(1.331, "meter"),
  24579. name: "Head",
  24580. image: {
  24581. source: "./media/characters/draekon-sylviar/head.svg"
  24582. }
  24583. },
  24584. hand: {
  24585. height: math.unit(0.564, "meter"),
  24586. name: "Hand",
  24587. image: {
  24588. source: "./media/characters/draekon-sylviar/hand.svg"
  24589. }
  24590. },
  24591. foot: {
  24592. height: math.unit(0.621, "meter"),
  24593. name: "Foot",
  24594. image: {
  24595. source: "./media/characters/draekon-sylviar/foot.svg",
  24596. bottom: 32 / 324
  24597. }
  24598. },
  24599. dick: {
  24600. height: math.unit(61, "cm"),
  24601. name: "Dick",
  24602. image: {
  24603. source: "./media/characters/draekon-sylviar/dick.svg"
  24604. }
  24605. },
  24606. dickseparated: {
  24607. height: math.unit(61, "cm"),
  24608. name: "Dick-separated",
  24609. image: {
  24610. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24611. }
  24612. },
  24613. },
  24614. [
  24615. {
  24616. name: "Small",
  24617. height: math.unit(4.53 / 2, "meters"),
  24618. default: true
  24619. },
  24620. {
  24621. name: "Normal",
  24622. height: math.unit(4.53, "meters"),
  24623. default: true
  24624. },
  24625. {
  24626. name: "Large",
  24627. height: math.unit(4.53 * 2, "meters"),
  24628. },
  24629. ]
  24630. ))
  24631. characterMakers.push(() => makeCharacter(
  24632. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24633. {
  24634. front: {
  24635. height: math.unit(6 + 2 / 12, "feet"),
  24636. weight: math.unit(180, "lb"),
  24637. name: "Front",
  24638. image: {
  24639. source: "./media/characters/brawler/front.svg",
  24640. extra: 3301 / 3027,
  24641. bottom: 138 / 3439
  24642. }
  24643. },
  24644. },
  24645. [
  24646. {
  24647. name: "Normal",
  24648. height: math.unit(6 + 2 / 12, "feet"),
  24649. default: true
  24650. },
  24651. ]
  24652. ))
  24653. characterMakers.push(() => makeCharacter(
  24654. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24655. {
  24656. front: {
  24657. height: math.unit(11, "feet"),
  24658. weight: math.unit(1000, "lb"),
  24659. name: "Front",
  24660. image: {
  24661. source: "./media/characters/alex/front.svg",
  24662. bottom: 44.5 / 620
  24663. }
  24664. },
  24665. },
  24666. [
  24667. {
  24668. name: "Micro",
  24669. height: math.unit(5, "inches")
  24670. },
  24671. {
  24672. name: "Normal",
  24673. height: math.unit(11, "feet"),
  24674. default: true
  24675. },
  24676. {
  24677. name: "Macro",
  24678. height: math.unit(9.5e9, "feet")
  24679. },
  24680. {
  24681. name: "Max Size",
  24682. height: math.unit(1.4e283, "yottameters")
  24683. },
  24684. ]
  24685. ))
  24686. characterMakers.push(() => makeCharacter(
  24687. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24688. {
  24689. female: {
  24690. height: math.unit(29.9, "m"),
  24691. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24692. name: "Female",
  24693. image: {
  24694. source: "./media/characters/zenari/female.svg",
  24695. extra: 3281.6 / 3217,
  24696. bottom: 72.2 / 3353
  24697. }
  24698. },
  24699. male: {
  24700. height: math.unit(27.7, "m"),
  24701. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24702. name: "Male",
  24703. image: {
  24704. source: "./media/characters/zenari/male.svg",
  24705. extra: 3008 / 2991,
  24706. bottom: 54.6 / 3069
  24707. }
  24708. },
  24709. },
  24710. [
  24711. {
  24712. name: "Macro",
  24713. height: math.unit(29.7, "meters"),
  24714. default: true
  24715. },
  24716. ]
  24717. ))
  24718. characterMakers.push(() => makeCharacter(
  24719. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24720. {
  24721. female: {
  24722. height: math.unit(23.8, "m"),
  24723. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24724. name: "Female",
  24725. image: {
  24726. source: "./media/characters/mactarian/female.svg",
  24727. extra: 2662 / 2569,
  24728. bottom: 73 / 2736
  24729. }
  24730. },
  24731. male: {
  24732. height: math.unit(23.8, "m"),
  24733. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24734. name: "Male",
  24735. image: {
  24736. source: "./media/characters/mactarian/male.svg",
  24737. extra: 2673 / 2600,
  24738. bottom: 76 / 2750
  24739. }
  24740. },
  24741. },
  24742. [
  24743. {
  24744. name: "Macro",
  24745. height: math.unit(23.8, "meters"),
  24746. default: true
  24747. },
  24748. ]
  24749. ))
  24750. characterMakers.push(() => makeCharacter(
  24751. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24752. {
  24753. female: {
  24754. height: math.unit(19.3, "m"),
  24755. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24756. name: "Female",
  24757. image: {
  24758. source: "./media/characters/umok/female.svg",
  24759. extra: 2186 / 2078,
  24760. bottom: 87 / 2277
  24761. }
  24762. },
  24763. male: {
  24764. height: math.unit(19.5, "m"),
  24765. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24766. name: "Male",
  24767. image: {
  24768. source: "./media/characters/umok/male.svg",
  24769. extra: 2233 / 2140,
  24770. bottom: 24.4 / 2258
  24771. }
  24772. },
  24773. },
  24774. [
  24775. {
  24776. name: "Macro",
  24777. height: math.unit(19.3, "meters"),
  24778. default: true
  24779. },
  24780. ]
  24781. ))
  24782. characterMakers.push(() => makeCharacter(
  24783. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24784. {
  24785. female: {
  24786. height: math.unit(26.15, "m"),
  24787. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24788. name: "Female",
  24789. image: {
  24790. source: "./media/characters/joraxian/female.svg",
  24791. extra: 2912 / 2824,
  24792. bottom: 36 / 2956
  24793. }
  24794. },
  24795. male: {
  24796. height: math.unit(25.4, "m"),
  24797. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24798. name: "Male",
  24799. image: {
  24800. source: "./media/characters/joraxian/male.svg",
  24801. extra: 2877 / 2721,
  24802. bottom: 82 / 2967
  24803. }
  24804. },
  24805. },
  24806. [
  24807. {
  24808. name: "Macro",
  24809. height: math.unit(26.15, "meters"),
  24810. default: true
  24811. },
  24812. ]
  24813. ))
  24814. characterMakers.push(() => makeCharacter(
  24815. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24816. {
  24817. female: {
  24818. height: math.unit(21.6, "m"),
  24819. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24820. name: "Female",
  24821. image: {
  24822. source: "./media/characters/sthara/female.svg",
  24823. extra: 2516 / 2347,
  24824. bottom: 21.5 / 2537
  24825. }
  24826. },
  24827. male: {
  24828. height: math.unit(24, "m"),
  24829. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24830. name: "Male",
  24831. image: {
  24832. source: "./media/characters/sthara/male.svg",
  24833. extra: 2732 / 2607,
  24834. bottom: 23 / 2732
  24835. }
  24836. },
  24837. },
  24838. [
  24839. {
  24840. name: "Macro",
  24841. height: math.unit(21.6, "meters"),
  24842. default: true
  24843. },
  24844. ]
  24845. ))
  24846. characterMakers.push(() => makeCharacter(
  24847. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24848. {
  24849. front: {
  24850. height: math.unit(6 + 4 / 12, "feet"),
  24851. weight: math.unit(175, "lb"),
  24852. name: "Front",
  24853. image: {
  24854. source: "./media/characters/luka-bryzant/front.svg",
  24855. extra: 311 / 289,
  24856. bottom: 4 / 315
  24857. }
  24858. },
  24859. back: {
  24860. height: math.unit(6 + 4 / 12, "feet"),
  24861. weight: math.unit(175, "lb"),
  24862. name: "Back",
  24863. image: {
  24864. source: "./media/characters/luka-bryzant/back.svg",
  24865. extra: 311 / 289,
  24866. bottom: 3.8 / 313.7
  24867. }
  24868. },
  24869. },
  24870. [
  24871. {
  24872. name: "Micro",
  24873. height: math.unit(10, "inches")
  24874. },
  24875. {
  24876. name: "Normal",
  24877. height: math.unit(6 + 4 / 12, "feet"),
  24878. default: true
  24879. },
  24880. {
  24881. name: "Large",
  24882. height: math.unit(12, "feet")
  24883. },
  24884. ]
  24885. ))
  24886. characterMakers.push(() => makeCharacter(
  24887. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24888. {
  24889. front: {
  24890. height: math.unit(5 + 7 / 12, "feet"),
  24891. weight: math.unit(185, "lb"),
  24892. name: "Front",
  24893. image: {
  24894. source: "./media/characters/aman-aquila/front.svg",
  24895. extra: 1013 / 976,
  24896. bottom: 45.6 / 1057
  24897. }
  24898. },
  24899. side: {
  24900. height: math.unit(5 + 7 / 12, "feet"),
  24901. weight: math.unit(185, "lb"),
  24902. name: "Side",
  24903. image: {
  24904. source: "./media/characters/aman-aquila/side.svg",
  24905. extra: 1054 / 1011,
  24906. bottom: 15 / 1070
  24907. }
  24908. },
  24909. back: {
  24910. height: math.unit(5 + 7 / 12, "feet"),
  24911. weight: math.unit(185, "lb"),
  24912. name: "Back",
  24913. image: {
  24914. source: "./media/characters/aman-aquila/back.svg",
  24915. extra: 1026 / 970,
  24916. bottom: 12 / 1039
  24917. }
  24918. },
  24919. head: {
  24920. height: math.unit(1.211, "feet"),
  24921. name: "Head",
  24922. image: {
  24923. source: "./media/characters/aman-aquila/head.svg",
  24924. }
  24925. },
  24926. },
  24927. [
  24928. {
  24929. name: "Minimicro",
  24930. height: math.unit(0.057, "inches")
  24931. },
  24932. {
  24933. name: "Micro",
  24934. height: math.unit(7, "inches")
  24935. },
  24936. {
  24937. name: "Mini",
  24938. height: math.unit(3 + 7 / 12, "feet")
  24939. },
  24940. {
  24941. name: "Normal",
  24942. height: math.unit(5 + 7 / 12, "feet"),
  24943. default: true
  24944. },
  24945. {
  24946. name: "Macro",
  24947. height: math.unit(157 + 7 / 12, "feet")
  24948. },
  24949. {
  24950. name: "Megamacro",
  24951. height: math.unit(1557 + 7 / 12, "feet")
  24952. },
  24953. {
  24954. name: "Gigamacro",
  24955. height: math.unit(15557 + 7 / 12, "feet")
  24956. },
  24957. ]
  24958. ))
  24959. characterMakers.push(() => makeCharacter(
  24960. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24961. {
  24962. front: {
  24963. height: math.unit(3 + 2 / 12, "inches"),
  24964. weight: math.unit(0.3, "ounces"),
  24965. name: "Front",
  24966. image: {
  24967. source: "./media/characters/hiphae/front.svg",
  24968. extra: 1931 / 1683,
  24969. bottom: 24 / 1955
  24970. }
  24971. },
  24972. },
  24973. [
  24974. {
  24975. name: "Normal",
  24976. height: math.unit(3 + 1 / 2, "inches"),
  24977. default: true
  24978. },
  24979. ]
  24980. ))
  24981. characterMakers.push(() => makeCharacter(
  24982. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24983. {
  24984. front: {
  24985. height: math.unit(5 + 10 / 12, "feet"),
  24986. weight: math.unit(165, "lb"),
  24987. name: "Front",
  24988. image: {
  24989. source: "./media/characters/nicky/front.svg",
  24990. extra: 3144 / 2886,
  24991. bottom: 45.6 / 3192
  24992. }
  24993. },
  24994. back: {
  24995. height: math.unit(5 + 10 / 12, "feet"),
  24996. weight: math.unit(165, "lb"),
  24997. name: "Back",
  24998. image: {
  24999. source: "./media/characters/nicky/back.svg",
  25000. extra: 3055 / 2804,
  25001. bottom: 28.4 / 3087
  25002. }
  25003. },
  25004. frontclothed: {
  25005. height: math.unit(5 + 10 / 12, "feet"),
  25006. weight: math.unit(165, "lb"),
  25007. name: "Front-clothed",
  25008. image: {
  25009. source: "./media/characters/nicky/front-clothed.svg",
  25010. extra: 3184.9 / 2926.9,
  25011. bottom: 86.5 / 3239.9
  25012. }
  25013. },
  25014. foot: {
  25015. height: math.unit(1.16, "feet"),
  25016. name: "Foot",
  25017. image: {
  25018. source: "./media/characters/nicky/foot.svg"
  25019. }
  25020. },
  25021. feet: {
  25022. height: math.unit(1.34, "feet"),
  25023. name: "Feet",
  25024. image: {
  25025. source: "./media/characters/nicky/feet.svg"
  25026. }
  25027. },
  25028. maw: {
  25029. height: math.unit(0.9, "feet"),
  25030. name: "Maw",
  25031. image: {
  25032. source: "./media/characters/nicky/maw.svg"
  25033. }
  25034. },
  25035. },
  25036. [
  25037. {
  25038. name: "Normal",
  25039. height: math.unit(5 + 10 / 12, "feet"),
  25040. default: true
  25041. },
  25042. {
  25043. name: "Macro",
  25044. height: math.unit(60, "feet")
  25045. },
  25046. {
  25047. name: "Megamacro",
  25048. height: math.unit(1, "mile")
  25049. },
  25050. ]
  25051. ))
  25052. characterMakers.push(() => makeCharacter(
  25053. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25054. {
  25055. side: {
  25056. height: math.unit(10, "feet"),
  25057. weight: math.unit(600, "lb"),
  25058. name: "Side",
  25059. image: {
  25060. source: "./media/characters/blair/side.svg",
  25061. bottom: 16.6 / 475,
  25062. extra: 458 / 431
  25063. }
  25064. },
  25065. },
  25066. [
  25067. {
  25068. name: "Micro",
  25069. height: math.unit(8, "inches")
  25070. },
  25071. {
  25072. name: "Normal",
  25073. height: math.unit(10, "feet"),
  25074. default: true
  25075. },
  25076. {
  25077. name: "Macro",
  25078. height: math.unit(180, "feet")
  25079. },
  25080. ]
  25081. ))
  25082. characterMakers.push(() => makeCharacter(
  25083. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25084. {
  25085. front: {
  25086. height: math.unit(5 + 4 / 12, "feet"),
  25087. weight: math.unit(125, "lb"),
  25088. name: "Front",
  25089. image: {
  25090. source: "./media/characters/fisher/front.svg",
  25091. extra: 444 / 390,
  25092. bottom: 2 / 444.8
  25093. }
  25094. },
  25095. },
  25096. [
  25097. {
  25098. name: "Micro",
  25099. height: math.unit(4, "inches")
  25100. },
  25101. {
  25102. name: "Normal",
  25103. height: math.unit(5 + 4 / 12, "feet"),
  25104. default: true
  25105. },
  25106. {
  25107. name: "Macro",
  25108. height: math.unit(100, "feet")
  25109. },
  25110. ]
  25111. ))
  25112. characterMakers.push(() => makeCharacter(
  25113. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25114. {
  25115. front: {
  25116. height: math.unit(6.71, "feet"),
  25117. weight: math.unit(200, "lb"),
  25118. capacity: math.unit(1000000, "people"),
  25119. name: "Front",
  25120. image: {
  25121. source: "./media/characters/gliss/front.svg",
  25122. extra: 2347 / 2231,
  25123. bottom: 113 / 2462
  25124. }
  25125. },
  25126. hammerspaceSize: {
  25127. height: math.unit(6.71 * 717, "feet"),
  25128. weight: math.unit(200, "lb"),
  25129. capacity: math.unit(1000000, "people"),
  25130. name: "Hammerspace Size",
  25131. image: {
  25132. source: "./media/characters/gliss/front.svg",
  25133. extra: 2347 / 2231,
  25134. bottom: 113 / 2462
  25135. }
  25136. },
  25137. },
  25138. [
  25139. {
  25140. name: "Normal",
  25141. height: math.unit(6.71, "feet"),
  25142. default: true
  25143. },
  25144. ]
  25145. ))
  25146. characterMakers.push(() => makeCharacter(
  25147. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25148. {
  25149. side: {
  25150. height: math.unit(1.44, "m"),
  25151. weight: math.unit(80, "kg"),
  25152. name: "Side",
  25153. image: {
  25154. source: "./media/characters/dune-anderson/side.svg",
  25155. bottom: 49 / 1426
  25156. }
  25157. },
  25158. },
  25159. [
  25160. {
  25161. name: "Wolf-sized",
  25162. height: math.unit(1.44, "meters")
  25163. },
  25164. {
  25165. name: "Normal",
  25166. height: math.unit(5.05, "meters"),
  25167. default: true
  25168. },
  25169. {
  25170. name: "Big",
  25171. height: math.unit(14.4, "meters")
  25172. },
  25173. {
  25174. name: "Huge",
  25175. height: math.unit(144, "meters")
  25176. },
  25177. ]
  25178. ))
  25179. characterMakers.push(() => makeCharacter(
  25180. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25181. {
  25182. front: {
  25183. height: math.unit(7, "feet"),
  25184. weight: math.unit(425, "lb"),
  25185. name: "Front",
  25186. image: {
  25187. source: "./media/characters/hind/front.svg",
  25188. extra: 2091 / 1860,
  25189. bottom: 129 / 2220
  25190. }
  25191. },
  25192. back: {
  25193. height: math.unit(7, "feet"),
  25194. weight: math.unit(425, "lb"),
  25195. name: "Back",
  25196. image: {
  25197. source: "./media/characters/hind/back.svg",
  25198. extra: 2091 / 1860,
  25199. bottom: 24.6 / 2309
  25200. }
  25201. },
  25202. tail: {
  25203. height: math.unit(2.8, "feet"),
  25204. name: "Tail",
  25205. image: {
  25206. source: "./media/characters/hind/tail.svg"
  25207. }
  25208. },
  25209. head: {
  25210. height: math.unit(2.55, "feet"),
  25211. name: "Head",
  25212. image: {
  25213. source: "./media/characters/hind/head.svg"
  25214. }
  25215. },
  25216. },
  25217. [
  25218. {
  25219. name: "XS",
  25220. height: math.unit(0.7, "feet")
  25221. },
  25222. {
  25223. name: "Normal",
  25224. height: math.unit(7, "feet"),
  25225. default: true
  25226. },
  25227. {
  25228. name: "XL",
  25229. height: math.unit(70, "feet")
  25230. },
  25231. ]
  25232. ))
  25233. characterMakers.push(() => makeCharacter(
  25234. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25235. {
  25236. front: {
  25237. height: math.unit(2.1, "meters"),
  25238. weight: math.unit(150, "lb"),
  25239. name: "Front",
  25240. image: {
  25241. source: "./media/characters/tharquench-sizestealer/front.svg",
  25242. extra: 1605/1470,
  25243. bottom: 36/1641
  25244. }
  25245. },
  25246. frontAlt: {
  25247. height: math.unit(2.1, "meters"),
  25248. weight: math.unit(150, "lb"),
  25249. name: "Front (Alt)",
  25250. image: {
  25251. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25252. extra: 2318 / 2063,
  25253. bottom: 93.4 / 2410
  25254. }
  25255. },
  25256. },
  25257. [
  25258. {
  25259. name: "Nano",
  25260. height: math.unit(1, "mm")
  25261. },
  25262. {
  25263. name: "Micro",
  25264. height: math.unit(1, "cm")
  25265. },
  25266. {
  25267. name: "Normal",
  25268. height: math.unit(2.1, "meters"),
  25269. default: true
  25270. },
  25271. ]
  25272. ))
  25273. characterMakers.push(() => makeCharacter(
  25274. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25275. {
  25276. front: {
  25277. height: math.unit(7 + 5 / 12, "feet"),
  25278. weight: math.unit(357, "lb"),
  25279. name: "Front",
  25280. image: {
  25281. source: "./media/characters/solex-draconov/front.svg",
  25282. extra: 1993 / 1865,
  25283. bottom: 117 / 2111
  25284. }
  25285. },
  25286. },
  25287. [
  25288. {
  25289. name: "Natural Height",
  25290. height: math.unit(7 + 5 / 12, "feet"),
  25291. default: true
  25292. },
  25293. {
  25294. name: "Macro",
  25295. height: math.unit(350, "feet")
  25296. },
  25297. {
  25298. name: "Macro+",
  25299. height: math.unit(1000, "feet")
  25300. },
  25301. {
  25302. name: "Megamacro",
  25303. height: math.unit(20, "km")
  25304. },
  25305. {
  25306. name: "Megamacro+",
  25307. height: math.unit(1000, "km")
  25308. },
  25309. {
  25310. name: "Gigamacro",
  25311. height: math.unit(2.5, "Gm")
  25312. },
  25313. {
  25314. name: "Teramacro",
  25315. height: math.unit(15, "Tm")
  25316. },
  25317. {
  25318. name: "Galactic",
  25319. height: math.unit(30, "Zm")
  25320. },
  25321. {
  25322. name: "Universal",
  25323. height: math.unit(21000, "Ym")
  25324. },
  25325. {
  25326. name: "Omniversal",
  25327. height: math.unit(9.861e50, "Ym")
  25328. },
  25329. {
  25330. name: "Existential",
  25331. height: math.unit(1e300, "meters")
  25332. },
  25333. ]
  25334. ))
  25335. characterMakers.push(() => makeCharacter(
  25336. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25337. {
  25338. side: {
  25339. height: math.unit(25, "feet"),
  25340. weight: math.unit(90000, "lb"),
  25341. name: "Side",
  25342. image: {
  25343. source: "./media/characters/mandarax/side.svg",
  25344. extra: 614 / 332,
  25345. bottom: 55 / 630
  25346. }
  25347. },
  25348. head: {
  25349. height: math.unit(11.4, "feet"),
  25350. name: "Head",
  25351. image: {
  25352. source: "./media/characters/mandarax/head.svg"
  25353. }
  25354. },
  25355. belly: {
  25356. height: math.unit(33, "feet"),
  25357. name: "Belly",
  25358. capacity: math.unit(500, "people"),
  25359. image: {
  25360. source: "./media/characters/mandarax/belly.svg"
  25361. }
  25362. },
  25363. dick: {
  25364. height: math.unit(8.46, "feet"),
  25365. name: "Dick",
  25366. image: {
  25367. source: "./media/characters/mandarax/dick.svg"
  25368. }
  25369. },
  25370. top: {
  25371. height: math.unit(28, "meters"),
  25372. name: "Top",
  25373. image: {
  25374. source: "./media/characters/mandarax/top.svg"
  25375. }
  25376. },
  25377. },
  25378. [
  25379. {
  25380. name: "Normal",
  25381. height: math.unit(25, "feet"),
  25382. default: true
  25383. },
  25384. ]
  25385. ))
  25386. characterMakers.push(() => makeCharacter(
  25387. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25388. {
  25389. front: {
  25390. height: math.unit(5, "feet"),
  25391. weight: math.unit(90, "lb"),
  25392. name: "Front",
  25393. image: {
  25394. source: "./media/characters/pixil/front.svg",
  25395. extra: 2000 / 1618,
  25396. bottom: 12.3 / 2011
  25397. }
  25398. },
  25399. },
  25400. [
  25401. {
  25402. name: "Normal",
  25403. height: math.unit(5, "feet"),
  25404. default: true
  25405. },
  25406. {
  25407. name: "Megamacro",
  25408. height: math.unit(10, "miles"),
  25409. },
  25410. ]
  25411. ))
  25412. characterMakers.push(() => makeCharacter(
  25413. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25414. {
  25415. front: {
  25416. height: math.unit(7 + 2 / 12, "feet"),
  25417. weight: math.unit(200, "lb"),
  25418. name: "Front",
  25419. image: {
  25420. source: "./media/characters/angel/front.svg",
  25421. extra: 1830 / 1737,
  25422. bottom: 22.6 / 1854,
  25423. }
  25424. },
  25425. },
  25426. [
  25427. {
  25428. name: "Normal",
  25429. height: math.unit(7 + 2 / 12, "feet"),
  25430. default: true
  25431. },
  25432. {
  25433. name: "Macro",
  25434. height: math.unit(1000, "feet")
  25435. },
  25436. {
  25437. name: "Megamacro",
  25438. height: math.unit(2, "miles")
  25439. },
  25440. {
  25441. name: "Gigamacro",
  25442. height: math.unit(20, "earths")
  25443. },
  25444. ]
  25445. ))
  25446. characterMakers.push(() => makeCharacter(
  25447. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25448. {
  25449. front: {
  25450. height: math.unit(5, "feet"),
  25451. weight: math.unit(180, "lb"),
  25452. name: "Front",
  25453. image: {
  25454. source: "./media/characters/mekana/front.svg",
  25455. extra: 1671 / 1605,
  25456. bottom: 3.5 / 1691
  25457. }
  25458. },
  25459. side: {
  25460. height: math.unit(5, "feet"),
  25461. weight: math.unit(180, "lb"),
  25462. name: "Side",
  25463. image: {
  25464. source: "./media/characters/mekana/side.svg",
  25465. extra: 1671 / 1605,
  25466. bottom: 3.5 / 1691
  25467. }
  25468. },
  25469. back: {
  25470. height: math.unit(5, "feet"),
  25471. weight: math.unit(180, "lb"),
  25472. name: "Back",
  25473. image: {
  25474. source: "./media/characters/mekana/back.svg",
  25475. extra: 1671 / 1605,
  25476. bottom: 3.5 / 1691
  25477. }
  25478. },
  25479. },
  25480. [
  25481. {
  25482. name: "Normal",
  25483. height: math.unit(5, "feet"),
  25484. default: true
  25485. },
  25486. ]
  25487. ))
  25488. characterMakers.push(() => makeCharacter(
  25489. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25490. {
  25491. front: {
  25492. height: math.unit(4 + 6 / 12, "feet"),
  25493. weight: math.unit(80, "lb"),
  25494. name: "Front",
  25495. image: {
  25496. source: "./media/characters/pixie/front.svg",
  25497. extra: 1924 / 1825,
  25498. bottom: 22.4 / 1946
  25499. }
  25500. },
  25501. },
  25502. [
  25503. {
  25504. name: "Normal",
  25505. height: math.unit(4 + 6 / 12, "feet"),
  25506. default: true
  25507. },
  25508. {
  25509. name: "Macro",
  25510. height: math.unit(40, "feet")
  25511. },
  25512. ]
  25513. ))
  25514. characterMakers.push(() => makeCharacter(
  25515. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25516. {
  25517. front: {
  25518. height: math.unit(2.1, "meters"),
  25519. weight: math.unit(200, "lb"),
  25520. name: "Front",
  25521. image: {
  25522. source: "./media/characters/the-lascivious/front.svg",
  25523. extra: 1 / 0.893,
  25524. bottom: 3.5 / 573.7
  25525. }
  25526. },
  25527. },
  25528. [
  25529. {
  25530. name: "Human Scale",
  25531. height: math.unit(2.1, "meters")
  25532. },
  25533. {
  25534. name: "Wolxi Scale",
  25535. height: math.unit(46.2, "m"),
  25536. default: true
  25537. },
  25538. {
  25539. name: "Boinker of Buildings",
  25540. height: math.unit(10, "km")
  25541. },
  25542. {
  25543. name: "Shagger of Skyscrapers",
  25544. height: math.unit(40, "km")
  25545. },
  25546. {
  25547. name: "Banger of Boroughs",
  25548. height: math.unit(4000, "km")
  25549. },
  25550. {
  25551. name: "Screwer of States",
  25552. height: math.unit(100000, "km")
  25553. },
  25554. {
  25555. name: "Pounder of Planets",
  25556. height: math.unit(2000000, "km")
  25557. },
  25558. ]
  25559. ))
  25560. characterMakers.push(() => makeCharacter(
  25561. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25562. {
  25563. front: {
  25564. height: math.unit(6, "feet"),
  25565. weight: math.unit(150, "lb"),
  25566. name: "Front",
  25567. image: {
  25568. source: "./media/characters/aj/front.svg",
  25569. extra: 2039 / 1562,
  25570. bottom: 40 / 2079
  25571. }
  25572. },
  25573. },
  25574. [
  25575. {
  25576. name: "Normal",
  25577. height: math.unit(11 + 6 / 12, "feet"),
  25578. default: true
  25579. },
  25580. {
  25581. name: "Megamacro",
  25582. height: math.unit(60, "megameters")
  25583. },
  25584. ]
  25585. ))
  25586. characterMakers.push(() => makeCharacter(
  25587. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25588. {
  25589. side: {
  25590. height: math.unit(31 + 8 / 12, "feet"),
  25591. weight: math.unit(75000, "kg"),
  25592. name: "Side",
  25593. image: {
  25594. source: "./media/characters/koros/side.svg",
  25595. extra: 1442 / 1297,
  25596. bottom: 122.7 / 1562
  25597. }
  25598. },
  25599. dicksKingsCrown: {
  25600. height: math.unit(6, "feet"),
  25601. name: "Dicks (King's Crown)",
  25602. image: {
  25603. source: "./media/characters/koros/dicks-kings-crown.svg"
  25604. }
  25605. },
  25606. dicksTailSet: {
  25607. height: math.unit(3, "feet"),
  25608. name: "Dicks (Tail Set)",
  25609. image: {
  25610. source: "./media/characters/koros/dicks-tail-set.svg"
  25611. }
  25612. },
  25613. dickCumming: {
  25614. height: math.unit(7.98, "feet"),
  25615. name: "Dick (Cumming)",
  25616. image: {
  25617. source: "./media/characters/koros/dick-cumming.svg"
  25618. }
  25619. },
  25620. dicksBack: {
  25621. height: math.unit(5.9, "feet"),
  25622. name: "Dicks (Back)",
  25623. image: {
  25624. source: "./media/characters/koros/dicks-back.svg"
  25625. }
  25626. },
  25627. dicksFront: {
  25628. height: math.unit(3.72, "feet"),
  25629. name: "Dicks (Front)",
  25630. image: {
  25631. source: "./media/characters/koros/dicks-front.svg"
  25632. }
  25633. },
  25634. dicksPeeking: {
  25635. height: math.unit(3.0, "feet"),
  25636. name: "Dicks (Peeking)",
  25637. image: {
  25638. source: "./media/characters/koros/dicks-peeking.svg"
  25639. }
  25640. },
  25641. eye: {
  25642. height: math.unit(1.7, "feet"),
  25643. name: "Eye",
  25644. image: {
  25645. source: "./media/characters/koros/eye.svg"
  25646. }
  25647. },
  25648. headFront: {
  25649. height: math.unit(11.69, "feet"),
  25650. name: "Head (Front)",
  25651. image: {
  25652. source: "./media/characters/koros/head-front.svg"
  25653. }
  25654. },
  25655. headSide: {
  25656. height: math.unit(14, "feet"),
  25657. name: "Head (Side)",
  25658. image: {
  25659. source: "./media/characters/koros/head-side.svg"
  25660. }
  25661. },
  25662. leg: {
  25663. height: math.unit(17, "feet"),
  25664. name: "Leg",
  25665. image: {
  25666. source: "./media/characters/koros/leg.svg"
  25667. }
  25668. },
  25669. mawSide: {
  25670. height: math.unit(12.8, "feet"),
  25671. name: "Maw (Side)",
  25672. image: {
  25673. source: "./media/characters/koros/maw-side.svg"
  25674. }
  25675. },
  25676. mawSpitting: {
  25677. height: math.unit(17, "feet"),
  25678. name: "Maw (Spitting)",
  25679. image: {
  25680. source: "./media/characters/koros/maw-spitting.svg"
  25681. }
  25682. },
  25683. slit: {
  25684. height: math.unit(2.8, "feet"),
  25685. name: "Slit",
  25686. image: {
  25687. source: "./media/characters/koros/slit.svg"
  25688. }
  25689. },
  25690. stomach: {
  25691. height: math.unit(6.8, "feet"),
  25692. capacity: math.unit(20, "people"),
  25693. name: "Stomach",
  25694. image: {
  25695. source: "./media/characters/koros/stomach.svg"
  25696. }
  25697. },
  25698. wingspanBottom: {
  25699. height: math.unit(114, "feet"),
  25700. name: "Wingspan (Bottom)",
  25701. image: {
  25702. source: "./media/characters/koros/wingspan-bottom.svg"
  25703. }
  25704. },
  25705. wingspanTop: {
  25706. height: math.unit(104, "feet"),
  25707. name: "Wingspan (Top)",
  25708. image: {
  25709. source: "./media/characters/koros/wingspan-top.svg"
  25710. }
  25711. },
  25712. },
  25713. [
  25714. {
  25715. name: "Normal",
  25716. height: math.unit(31 + 8 / 12, "feet"),
  25717. default: true
  25718. },
  25719. ]
  25720. ))
  25721. characterMakers.push(() => makeCharacter(
  25722. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25723. {
  25724. front: {
  25725. height: math.unit(18 + 5 / 12, "feet"),
  25726. weight: math.unit(3750, "kg"),
  25727. name: "Front",
  25728. image: {
  25729. source: "./media/characters/vexx/front.svg",
  25730. extra: 426 / 396,
  25731. bottom: 31.5 / 458
  25732. }
  25733. },
  25734. maw: {
  25735. height: math.unit(6, "feet"),
  25736. name: "Maw",
  25737. image: {
  25738. source: "./media/characters/vexx/maw.svg"
  25739. }
  25740. },
  25741. },
  25742. [
  25743. {
  25744. name: "Normal",
  25745. height: math.unit(18 + 5 / 12, "feet"),
  25746. default: true
  25747. },
  25748. ]
  25749. ))
  25750. characterMakers.push(() => makeCharacter(
  25751. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25752. {
  25753. front: {
  25754. height: math.unit(17 + 6 / 12, "feet"),
  25755. weight: math.unit(150, "lb"),
  25756. name: "Front",
  25757. image: {
  25758. source: "./media/characters/baadra/front.svg",
  25759. extra: 3137 / 2890,
  25760. bottom: 168.4 / 3305
  25761. }
  25762. },
  25763. back: {
  25764. height: math.unit(17 + 6 / 12, "feet"),
  25765. weight: math.unit(150, "lb"),
  25766. name: "Back",
  25767. image: {
  25768. source: "./media/characters/baadra/back.svg",
  25769. extra: 3142 / 2890,
  25770. bottom: 220 / 3371
  25771. }
  25772. },
  25773. head: {
  25774. height: math.unit(5.45, "feet"),
  25775. name: "Head",
  25776. image: {
  25777. source: "./media/characters/baadra/head.svg"
  25778. }
  25779. },
  25780. headAngry: {
  25781. height: math.unit(4.95, "feet"),
  25782. name: "Head (Angry)",
  25783. image: {
  25784. source: "./media/characters/baadra/head-angry.svg"
  25785. }
  25786. },
  25787. headOpen: {
  25788. height: math.unit(6, "feet"),
  25789. name: "Head (Open)",
  25790. image: {
  25791. source: "./media/characters/baadra/head-open.svg"
  25792. }
  25793. },
  25794. },
  25795. [
  25796. {
  25797. name: "Normal",
  25798. height: math.unit(17 + 6 / 12, "feet"),
  25799. default: true
  25800. },
  25801. ]
  25802. ))
  25803. characterMakers.push(() => makeCharacter(
  25804. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25805. {
  25806. front: {
  25807. height: math.unit(7 + 3 / 12, "feet"),
  25808. weight: math.unit(180, "lb"),
  25809. name: "Front",
  25810. image: {
  25811. source: "./media/characters/juri/front.svg",
  25812. extra: 1401 / 1237,
  25813. bottom: 18.5 / 1418
  25814. }
  25815. },
  25816. side: {
  25817. height: math.unit(7 + 3 / 12, "feet"),
  25818. weight: math.unit(180, "lb"),
  25819. name: "Side",
  25820. image: {
  25821. source: "./media/characters/juri/side.svg",
  25822. extra: 1424 / 1242,
  25823. bottom: 18.5 / 1447
  25824. }
  25825. },
  25826. sitting: {
  25827. height: math.unit(6, "feet"),
  25828. weight: math.unit(180, "lb"),
  25829. name: "Sitting",
  25830. image: {
  25831. source: "./media/characters/juri/sitting.svg",
  25832. extra: 1270 / 1143,
  25833. bottom: 100 / 1343
  25834. }
  25835. },
  25836. back: {
  25837. height: math.unit(7 + 3 / 12, "feet"),
  25838. weight: math.unit(180, "lb"),
  25839. name: "Back",
  25840. image: {
  25841. source: "./media/characters/juri/back.svg",
  25842. extra: 1377 / 1240,
  25843. bottom: 23.7 / 1405
  25844. }
  25845. },
  25846. maw: {
  25847. height: math.unit(2.8, "feet"),
  25848. name: "Maw",
  25849. image: {
  25850. source: "./media/characters/juri/maw.svg"
  25851. }
  25852. },
  25853. stomach: {
  25854. height: math.unit(0.89, "feet"),
  25855. capacity: math.unit(4, "liters"),
  25856. name: "Stomach",
  25857. image: {
  25858. source: "./media/characters/juri/stomach.svg"
  25859. }
  25860. },
  25861. },
  25862. [
  25863. {
  25864. name: "Normal",
  25865. height: math.unit(7 + 3 / 12, "feet"),
  25866. default: true
  25867. },
  25868. ]
  25869. ))
  25870. characterMakers.push(() => makeCharacter(
  25871. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25872. {
  25873. fox: {
  25874. height: math.unit(5 + 6 / 12, "feet"),
  25875. weight: math.unit(140, "lb"),
  25876. name: "Fox",
  25877. image: {
  25878. source: "./media/characters/maxene-sita/fox.svg",
  25879. extra: 146 / 138,
  25880. bottom: 2.1 / 148.19
  25881. }
  25882. },
  25883. foxLaying: {
  25884. height: math.unit(1.70, "feet"),
  25885. weight: math.unit(140, "lb"),
  25886. name: "Fox (Laying)",
  25887. image: {
  25888. source: "./media/characters/maxene-sita/fox-laying.svg",
  25889. extra: 910 / 572,
  25890. bottom: 71 / 981
  25891. }
  25892. },
  25893. kitsune: {
  25894. height: math.unit(10, "feet"),
  25895. weight: math.unit(800, "lb"),
  25896. name: "Kitsune",
  25897. image: {
  25898. source: "./media/characters/maxene-sita/kitsune.svg",
  25899. extra: 185 / 176,
  25900. bottom: 4.7 / 189.9
  25901. }
  25902. },
  25903. hellhound: {
  25904. height: math.unit(10, "feet"),
  25905. weight: math.unit(700, "lb"),
  25906. name: "Hellhound",
  25907. image: {
  25908. source: "./media/characters/maxene-sita/hellhound.svg",
  25909. extra: 1600 / 1545,
  25910. bottom: 81 / 1681
  25911. }
  25912. },
  25913. },
  25914. [
  25915. {
  25916. name: "Normal",
  25917. height: math.unit(5 + 6 / 12, "feet"),
  25918. default: true
  25919. },
  25920. ]
  25921. ))
  25922. characterMakers.push(() => makeCharacter(
  25923. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25924. {
  25925. front: {
  25926. height: math.unit(3 + 4 / 12, "feet"),
  25927. weight: math.unit(70, "lb"),
  25928. name: "Front",
  25929. image: {
  25930. source: "./media/characters/maia/front.svg",
  25931. extra: 227 / 219.5,
  25932. bottom: 40 / 267
  25933. }
  25934. },
  25935. back: {
  25936. height: math.unit(3 + 4 / 12, "feet"),
  25937. weight: math.unit(70, "lb"),
  25938. name: "Back",
  25939. image: {
  25940. source: "./media/characters/maia/back.svg",
  25941. extra: 237 / 225
  25942. }
  25943. },
  25944. },
  25945. [
  25946. {
  25947. name: "Normal",
  25948. height: math.unit(3 + 4 / 12, "feet"),
  25949. default: true
  25950. },
  25951. ]
  25952. ))
  25953. characterMakers.push(() => makeCharacter(
  25954. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25955. {
  25956. front: {
  25957. height: math.unit(5 + 10 / 12, "feet"),
  25958. weight: math.unit(197, "lb"),
  25959. name: "Front",
  25960. image: {
  25961. source: "./media/characters/jabaro/front.svg",
  25962. extra: 225 / 216,
  25963. bottom: 5.06 / 230
  25964. }
  25965. },
  25966. back: {
  25967. height: math.unit(5 + 10 / 12, "feet"),
  25968. weight: math.unit(197, "lb"),
  25969. name: "Back",
  25970. image: {
  25971. source: "./media/characters/jabaro/back.svg",
  25972. extra: 225 / 219,
  25973. bottom: 1.9 / 227
  25974. }
  25975. },
  25976. },
  25977. [
  25978. {
  25979. name: "Normal",
  25980. height: math.unit(5 + 10 / 12, "feet"),
  25981. default: true
  25982. },
  25983. ]
  25984. ))
  25985. characterMakers.push(() => makeCharacter(
  25986. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25987. {
  25988. front: {
  25989. height: math.unit(5 + 8 / 12, "feet"),
  25990. weight: math.unit(139, "lb"),
  25991. name: "Front",
  25992. image: {
  25993. source: "./media/characters/risa/front.svg",
  25994. extra: 270 / 260,
  25995. bottom: 11.2 / 282
  25996. }
  25997. },
  25998. back: {
  25999. height: math.unit(5 + 8 / 12, "feet"),
  26000. weight: math.unit(139, "lb"),
  26001. name: "Back",
  26002. image: {
  26003. source: "./media/characters/risa/back.svg",
  26004. extra: 264 / 255,
  26005. bottom: 4 / 268
  26006. }
  26007. },
  26008. },
  26009. [
  26010. {
  26011. name: "Normal",
  26012. height: math.unit(5 + 8 / 12, "feet"),
  26013. default: true
  26014. },
  26015. ]
  26016. ))
  26017. characterMakers.push(() => makeCharacter(
  26018. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26019. {
  26020. front: {
  26021. height: math.unit(2 + 11 / 12, "feet"),
  26022. weight: math.unit(30, "lb"),
  26023. name: "Front",
  26024. image: {
  26025. source: "./media/characters/weatley/front.svg",
  26026. bottom: 10.7 / 414,
  26027. extra: 403.5 / 362
  26028. }
  26029. },
  26030. back: {
  26031. height: math.unit(2 + 11 / 12, "feet"),
  26032. weight: math.unit(30, "lb"),
  26033. name: "Back",
  26034. image: {
  26035. source: "./media/characters/weatley/back.svg",
  26036. bottom: 10.7 / 414,
  26037. extra: 403.5 / 362
  26038. }
  26039. },
  26040. },
  26041. [
  26042. {
  26043. name: "Normal",
  26044. height: math.unit(2 + 11 / 12, "feet"),
  26045. default: true
  26046. },
  26047. ]
  26048. ))
  26049. characterMakers.push(() => makeCharacter(
  26050. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26051. {
  26052. front: {
  26053. height: math.unit(5 + 2 / 12, "feet"),
  26054. weight: math.unit(50, "kg"),
  26055. name: "Front",
  26056. image: {
  26057. source: "./media/characters/mercury-crescent/front.svg",
  26058. extra: 1088 / 1033,
  26059. bottom: 18.9 / 1109
  26060. }
  26061. },
  26062. },
  26063. [
  26064. {
  26065. name: "Normal",
  26066. height: math.unit(5 + 2 / 12, "feet"),
  26067. default: true
  26068. },
  26069. ]
  26070. ))
  26071. characterMakers.push(() => makeCharacter(
  26072. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26073. {
  26074. front: {
  26075. height: math.unit(2, "feet"),
  26076. weight: math.unit(15, "kg"),
  26077. name: "Front",
  26078. image: {
  26079. source: "./media/characters/diamond-jones/front.svg",
  26080. extra: 727/723,
  26081. bottom: 46/773
  26082. }
  26083. },
  26084. },
  26085. [
  26086. {
  26087. name: "Normal",
  26088. height: math.unit(2, "feet"),
  26089. default: true
  26090. },
  26091. ]
  26092. ))
  26093. characterMakers.push(() => makeCharacter(
  26094. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26095. {
  26096. front: {
  26097. height: math.unit(3, "feet"),
  26098. weight: math.unit(30, "kg"),
  26099. name: "Front",
  26100. image: {
  26101. source: "./media/characters/sweet-bit/front.svg",
  26102. extra: 675 / 567,
  26103. bottom: 27.7 / 703
  26104. }
  26105. },
  26106. },
  26107. [
  26108. {
  26109. name: "Normal",
  26110. height: math.unit(3, "feet"),
  26111. default: true
  26112. },
  26113. ]
  26114. ))
  26115. characterMakers.push(() => makeCharacter(
  26116. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26117. {
  26118. side: {
  26119. height: math.unit(9.178, "feet"),
  26120. weight: math.unit(500, "lb"),
  26121. name: "Side",
  26122. image: {
  26123. source: "./media/characters/umbrazen/side.svg",
  26124. extra: 1730 / 1473,
  26125. bottom: 34.6 / 1765
  26126. }
  26127. },
  26128. },
  26129. [
  26130. {
  26131. name: "Normal",
  26132. height: math.unit(9.178, "feet"),
  26133. default: true
  26134. },
  26135. ]
  26136. ))
  26137. characterMakers.push(() => makeCharacter(
  26138. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26139. {
  26140. front: {
  26141. height: math.unit(10, "feet"),
  26142. weight: math.unit(750, "lb"),
  26143. name: "Front",
  26144. image: {
  26145. source: "./media/characters/arlist/front.svg",
  26146. extra: 961 / 778,
  26147. bottom: 6.2 / 986
  26148. }
  26149. },
  26150. },
  26151. [
  26152. {
  26153. name: "Normal",
  26154. height: math.unit(10, "feet"),
  26155. default: true
  26156. },
  26157. ]
  26158. ))
  26159. characterMakers.push(() => makeCharacter(
  26160. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26161. {
  26162. front: {
  26163. height: math.unit(5 + 1 / 12, "feet"),
  26164. weight: math.unit(110, "lb"),
  26165. name: "Front",
  26166. image: {
  26167. source: "./media/characters/aradel/front.svg",
  26168. extra: 324 / 303,
  26169. bottom: 3.6 / 329.4
  26170. }
  26171. },
  26172. },
  26173. [
  26174. {
  26175. name: "Normal",
  26176. height: math.unit(5 + 1 / 12, "feet"),
  26177. default: true
  26178. },
  26179. ]
  26180. ))
  26181. characterMakers.push(() => makeCharacter(
  26182. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26183. {
  26184. front: {
  26185. height: math.unit(3 + 8 / 12, "feet"),
  26186. weight: math.unit(50, "lb"),
  26187. name: "Front",
  26188. image: {
  26189. source: "./media/characters/serryn/front.svg",
  26190. extra: 1792 / 1656,
  26191. bottom: 43.5 / 1840
  26192. }
  26193. },
  26194. },
  26195. [
  26196. {
  26197. name: "Normal",
  26198. height: math.unit(3 + 8 / 12, "feet"),
  26199. default: true
  26200. },
  26201. ]
  26202. ))
  26203. characterMakers.push(() => makeCharacter(
  26204. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26205. {
  26206. front: {
  26207. height: math.unit(7 + 10 / 12, "feet"),
  26208. weight: math.unit(255, "lb"),
  26209. name: "Front",
  26210. image: {
  26211. source: "./media/characters/xavier-thyme/front.svg",
  26212. extra: 3733 / 3642,
  26213. bottom: 131 / 3869
  26214. }
  26215. },
  26216. frontRaven: {
  26217. height: math.unit(7 + 10 / 12, "feet"),
  26218. weight: math.unit(255, "lb"),
  26219. name: "Front (Raven)",
  26220. image: {
  26221. source: "./media/characters/xavier-thyme/front-raven.svg",
  26222. extra: 4385 / 3642,
  26223. bottom: 131 / 4517
  26224. }
  26225. },
  26226. },
  26227. [
  26228. {
  26229. name: "Normal",
  26230. height: math.unit(7 + 10 / 12, "feet"),
  26231. default: true
  26232. },
  26233. ]
  26234. ))
  26235. characterMakers.push(() => makeCharacter(
  26236. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26237. {
  26238. front: {
  26239. height: math.unit(1.6, "m"),
  26240. weight: math.unit(50, "kg"),
  26241. name: "Front",
  26242. image: {
  26243. source: "./media/characters/kiki/front.svg",
  26244. extra: 4682 / 3610,
  26245. bottom: 115 / 4777
  26246. }
  26247. },
  26248. },
  26249. [
  26250. {
  26251. name: "Normal",
  26252. height: math.unit(1.6, "meters"),
  26253. default: true
  26254. },
  26255. ]
  26256. ))
  26257. characterMakers.push(() => makeCharacter(
  26258. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26259. {
  26260. front: {
  26261. height: math.unit(50, "m"),
  26262. weight: math.unit(500, "tonnes"),
  26263. name: "Front",
  26264. image: {
  26265. source: "./media/characters/ryoko/front.svg",
  26266. extra: 4632 / 3926,
  26267. bottom: 193 / 4823
  26268. }
  26269. },
  26270. },
  26271. [
  26272. {
  26273. name: "Normal",
  26274. height: math.unit(50, "meters"),
  26275. default: true
  26276. },
  26277. ]
  26278. ))
  26279. characterMakers.push(() => makeCharacter(
  26280. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26281. {
  26282. front: {
  26283. height: math.unit(30, "m"),
  26284. weight: math.unit(22, "tonnes"),
  26285. name: "Front",
  26286. image: {
  26287. source: "./media/characters/elio/front.svg",
  26288. extra: 4582 / 3720,
  26289. bottom: 236 / 4828
  26290. }
  26291. },
  26292. },
  26293. [
  26294. {
  26295. name: "Normal",
  26296. height: math.unit(30, "meters"),
  26297. default: true
  26298. },
  26299. ]
  26300. ))
  26301. characterMakers.push(() => makeCharacter(
  26302. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26303. {
  26304. front: {
  26305. height: math.unit(6 + 3 / 12, "feet"),
  26306. weight: math.unit(120, "lb"),
  26307. name: "Front",
  26308. image: {
  26309. source: "./media/characters/azura/front.svg",
  26310. extra: 1149 / 1135,
  26311. bottom: 45 / 1194
  26312. }
  26313. },
  26314. frontClothed: {
  26315. height: math.unit(6 + 3 / 12, "feet"),
  26316. weight: math.unit(120, "lb"),
  26317. name: "Front (Clothed)",
  26318. image: {
  26319. source: "./media/characters/azura/front-clothed.svg",
  26320. extra: 1149 / 1135,
  26321. bottom: 45 / 1194
  26322. }
  26323. },
  26324. },
  26325. [
  26326. {
  26327. name: "Normal",
  26328. height: math.unit(6 + 3 / 12, "feet"),
  26329. default: true
  26330. },
  26331. {
  26332. name: "Macro",
  26333. height: math.unit(20 + 6 / 12, "feet")
  26334. },
  26335. {
  26336. name: "Megamacro",
  26337. height: math.unit(12, "miles")
  26338. },
  26339. {
  26340. name: "Gigamacro",
  26341. height: math.unit(10000, "miles")
  26342. },
  26343. {
  26344. name: "Teramacro",
  26345. height: math.unit(900000, "miles")
  26346. },
  26347. ]
  26348. ))
  26349. characterMakers.push(() => makeCharacter(
  26350. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26351. {
  26352. front: {
  26353. height: math.unit(12, "feet"),
  26354. weight: math.unit(1, "ton"),
  26355. capacity: math.unit(660000, "gallons"),
  26356. name: "Front",
  26357. image: {
  26358. source: "./media/characters/zeus/front.svg",
  26359. extra: 5005 / 4717,
  26360. bottom: 363 / 5388
  26361. }
  26362. },
  26363. },
  26364. [
  26365. {
  26366. name: "Normal",
  26367. height: math.unit(12, "feet")
  26368. },
  26369. {
  26370. name: "Preferred Size",
  26371. height: math.unit(0.5, "miles"),
  26372. default: true
  26373. },
  26374. {
  26375. name: "Giga Horse",
  26376. height: math.unit(300, "miles")
  26377. },
  26378. {
  26379. name: "Riding Planets",
  26380. height: math.unit(30, "megameters")
  26381. },
  26382. {
  26383. name: "Cosmic Giant",
  26384. height: math.unit(3, "zettameters")
  26385. },
  26386. {
  26387. name: "Breeding God",
  26388. height: math.unit(9.92e22, "yottameters")
  26389. },
  26390. ]
  26391. ))
  26392. characterMakers.push(() => makeCharacter(
  26393. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26394. {
  26395. side: {
  26396. height: math.unit(9, "feet"),
  26397. weight: math.unit(1500, "kg"),
  26398. name: "Side",
  26399. image: {
  26400. source: "./media/characters/fang/side.svg",
  26401. extra: 924 / 866,
  26402. bottom: 47.5 / 972.3
  26403. }
  26404. },
  26405. },
  26406. [
  26407. {
  26408. name: "Normal",
  26409. height: math.unit(9, "feet"),
  26410. default: true
  26411. },
  26412. {
  26413. name: "Macro",
  26414. height: math.unit(75 + 6 / 12, "feet")
  26415. },
  26416. {
  26417. name: "Teramacro",
  26418. height: math.unit(50000, "miles")
  26419. },
  26420. ]
  26421. ))
  26422. characterMakers.push(() => makeCharacter(
  26423. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26424. {
  26425. front: {
  26426. height: math.unit(10, "feet"),
  26427. weight: math.unit(2, "tons"),
  26428. name: "Front",
  26429. image: {
  26430. source: "./media/characters/rekhit/front.svg",
  26431. extra: 2796 / 2590,
  26432. bottom: 225 / 3022
  26433. }
  26434. },
  26435. },
  26436. [
  26437. {
  26438. name: "Normal",
  26439. height: math.unit(10, "feet"),
  26440. default: true
  26441. },
  26442. {
  26443. name: "Macro",
  26444. height: math.unit(500, "feet")
  26445. },
  26446. ]
  26447. ))
  26448. characterMakers.push(() => makeCharacter(
  26449. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26450. {
  26451. front: {
  26452. height: math.unit(7 + 6.451 / 12, "feet"),
  26453. weight: math.unit(310, "lb"),
  26454. name: "Front",
  26455. image: {
  26456. source: "./media/characters/dahlia-verrick/front.svg",
  26457. extra: 1488 / 1365,
  26458. bottom: 6.2 / 1495
  26459. }
  26460. },
  26461. back: {
  26462. height: math.unit(7 + 6.451 / 12, "feet"),
  26463. weight: math.unit(310, "lb"),
  26464. name: "Back",
  26465. image: {
  26466. source: "./media/characters/dahlia-verrick/back.svg",
  26467. extra: 1472 / 1351,
  26468. bottom: 5.28 / 1477
  26469. }
  26470. },
  26471. frontBusiness: {
  26472. height: math.unit(7 + 6.451 / 12, "feet"),
  26473. weight: math.unit(200, "lb"),
  26474. name: "Front (Business)",
  26475. image: {
  26476. source: "./media/characters/dahlia-verrick/front-business.svg",
  26477. extra: 1478 / 1381,
  26478. bottom: 5.5 / 1484
  26479. }
  26480. },
  26481. frontCasual: {
  26482. height: math.unit(7 + 6.451 / 12, "feet"),
  26483. weight: math.unit(200, "lb"),
  26484. name: "Front (Casual)",
  26485. image: {
  26486. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26487. extra: 1478 / 1381,
  26488. bottom: 5.5 / 1484
  26489. }
  26490. },
  26491. },
  26492. [
  26493. {
  26494. name: "Travel-Sized",
  26495. height: math.unit(7.45, "inches")
  26496. },
  26497. {
  26498. name: "Normal",
  26499. height: math.unit(7 + 6.451 / 12, "feet"),
  26500. default: true
  26501. },
  26502. {
  26503. name: "Hitting the Town",
  26504. height: math.unit(37 + 8 / 12, "feet")
  26505. },
  26506. {
  26507. name: "Stomp in the Suburbs",
  26508. height: math.unit(964 + 9.728 / 12, "feet")
  26509. },
  26510. {
  26511. name: "Sit on the City",
  26512. height: math.unit(61747 + 10.592 / 12, "feet")
  26513. },
  26514. {
  26515. name: "Glomp the Globe",
  26516. height: math.unit(252919327 + 4.832 / 12, "feet")
  26517. },
  26518. ]
  26519. ))
  26520. characterMakers.push(() => makeCharacter(
  26521. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26522. {
  26523. front: {
  26524. height: math.unit(6 + 4 / 12, "feet"),
  26525. weight: math.unit(320, "lb"),
  26526. name: "Front",
  26527. image: {
  26528. source: "./media/characters/balina-mahigan/front.svg",
  26529. extra: 447 / 428,
  26530. bottom: 18 / 466
  26531. }
  26532. },
  26533. back: {
  26534. height: math.unit(6 + 4 / 12, "feet"),
  26535. weight: math.unit(320, "lb"),
  26536. name: "Back",
  26537. image: {
  26538. source: "./media/characters/balina-mahigan/back.svg",
  26539. extra: 445 / 428,
  26540. bottom: 4.07 / 448
  26541. }
  26542. },
  26543. arm: {
  26544. height: math.unit(1.88, "feet"),
  26545. name: "Arm",
  26546. image: {
  26547. source: "./media/characters/balina-mahigan/arm.svg"
  26548. }
  26549. },
  26550. backPort: {
  26551. height: math.unit(0.685, "feet"),
  26552. name: "Back Port",
  26553. image: {
  26554. source: "./media/characters/balina-mahigan/back-port.svg"
  26555. }
  26556. },
  26557. hoofpaw: {
  26558. height: math.unit(1.41, "feet"),
  26559. name: "Hoofpaw",
  26560. image: {
  26561. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26562. }
  26563. },
  26564. leftHandBack: {
  26565. height: math.unit(0.938, "feet"),
  26566. name: "Left Hand (Back)",
  26567. image: {
  26568. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26569. }
  26570. },
  26571. leftHandFront: {
  26572. height: math.unit(0.938, "feet"),
  26573. name: "Left Hand (Front)",
  26574. image: {
  26575. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26576. }
  26577. },
  26578. rightHandBack: {
  26579. height: math.unit(0.95, "feet"),
  26580. name: "Right Hand (Back)",
  26581. image: {
  26582. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26583. }
  26584. },
  26585. rightHandFront: {
  26586. height: math.unit(0.95, "feet"),
  26587. name: "Right Hand (Front)",
  26588. image: {
  26589. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26590. }
  26591. },
  26592. },
  26593. [
  26594. {
  26595. name: "Normal",
  26596. height: math.unit(6 + 4 / 12, "feet"),
  26597. default: true
  26598. },
  26599. ]
  26600. ))
  26601. characterMakers.push(() => makeCharacter(
  26602. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26603. {
  26604. front: {
  26605. height: math.unit(6, "feet"),
  26606. weight: math.unit(320, "lb"),
  26607. name: "Front",
  26608. image: {
  26609. source: "./media/characters/balina-mejeri/front.svg",
  26610. extra: 517 / 488,
  26611. bottom: 44.2 / 561
  26612. }
  26613. },
  26614. },
  26615. [
  26616. {
  26617. name: "Normal",
  26618. height: math.unit(6 + 4 / 12, "feet")
  26619. },
  26620. {
  26621. name: "Business",
  26622. height: math.unit(155, "feet"),
  26623. default: true
  26624. },
  26625. ]
  26626. ))
  26627. characterMakers.push(() => makeCharacter(
  26628. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26629. {
  26630. kneeling: {
  26631. height: math.unit(6 + 4 / 12, "feet"),
  26632. weight: math.unit(300 * 20, "lb"),
  26633. name: "Kneeling",
  26634. image: {
  26635. source: "./media/characters/balbarian/kneeling.svg",
  26636. extra: 922 / 862,
  26637. bottom: 42.4 / 965
  26638. }
  26639. },
  26640. },
  26641. [
  26642. {
  26643. name: "Normal",
  26644. height: math.unit(6 + 4 / 12, "feet")
  26645. },
  26646. {
  26647. name: "Treasured",
  26648. height: math.unit(18 + 9 / 12, "feet"),
  26649. default: true
  26650. },
  26651. {
  26652. name: "Macro",
  26653. height: math.unit(900, "feet")
  26654. },
  26655. ]
  26656. ))
  26657. characterMakers.push(() => makeCharacter(
  26658. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26659. {
  26660. front: {
  26661. height: math.unit(6 + 4 / 12, "feet"),
  26662. weight: math.unit(325, "lb"),
  26663. name: "Front",
  26664. image: {
  26665. source: "./media/characters/balina-amarini/front.svg",
  26666. extra: 415 / 403,
  26667. bottom: 19 / 433.4
  26668. }
  26669. },
  26670. back: {
  26671. height: math.unit(6 + 4 / 12, "feet"),
  26672. weight: math.unit(325, "lb"),
  26673. name: "Back",
  26674. image: {
  26675. source: "./media/characters/balina-amarini/back.svg",
  26676. extra: 415 / 403,
  26677. bottom: 13.5 / 432
  26678. }
  26679. },
  26680. overdrive: {
  26681. height: math.unit(6 + 4 / 12, "feet"),
  26682. weight: math.unit(400, "lb"),
  26683. name: "Overdrive",
  26684. image: {
  26685. source: "./media/characters/balina-amarini/overdrive.svg",
  26686. extra: 269 / 259,
  26687. bottom: 12 / 282
  26688. }
  26689. },
  26690. },
  26691. [
  26692. {
  26693. name: "Boom",
  26694. height: math.unit(9 + 10 / 12, "feet"),
  26695. default: true
  26696. },
  26697. {
  26698. name: "Macro",
  26699. height: math.unit(280, "feet")
  26700. },
  26701. ]
  26702. ))
  26703. characterMakers.push(() => makeCharacter(
  26704. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26705. {
  26706. goddess: {
  26707. height: math.unit(600, "feet"),
  26708. weight: math.unit(2000000, "tons"),
  26709. name: "Goddess",
  26710. image: {
  26711. source: "./media/characters/lady-kubwa/goddess.svg",
  26712. extra: 1240.5 / 1223,
  26713. bottom: 22 / 1263
  26714. }
  26715. },
  26716. goddesser: {
  26717. height: math.unit(900, "feet"),
  26718. weight: math.unit(20000000, "lb"),
  26719. name: "Goddess-er",
  26720. image: {
  26721. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26722. extra: 899 / 888,
  26723. bottom: 12.6 / 912
  26724. }
  26725. },
  26726. },
  26727. [
  26728. {
  26729. name: "Macro",
  26730. height: math.unit(600, "feet"),
  26731. default: true
  26732. },
  26733. {
  26734. name: "Megamacro",
  26735. height: math.unit(250, "miles")
  26736. },
  26737. ]
  26738. ))
  26739. characterMakers.push(() => makeCharacter(
  26740. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26741. {
  26742. front: {
  26743. height: math.unit(7 + 7 / 12, "feet"),
  26744. weight: math.unit(250, "lb"),
  26745. name: "Front",
  26746. image: {
  26747. source: "./media/characters/tala-grovehorn/front.svg",
  26748. extra: 2636 / 2525,
  26749. bottom: 147 / 2781
  26750. }
  26751. },
  26752. back: {
  26753. height: math.unit(7 + 7 / 12, "feet"),
  26754. weight: math.unit(250, "lb"),
  26755. name: "Back",
  26756. image: {
  26757. source: "./media/characters/tala-grovehorn/back.svg",
  26758. extra: 2635 / 2539,
  26759. bottom: 100 / 2732.8
  26760. }
  26761. },
  26762. mouth: {
  26763. height: math.unit(1.15, "feet"),
  26764. name: "Mouth",
  26765. image: {
  26766. source: "./media/characters/tala-grovehorn/mouth.svg"
  26767. }
  26768. },
  26769. dick: {
  26770. height: math.unit(2.36, "feet"),
  26771. name: "Dick",
  26772. image: {
  26773. source: "./media/characters/tala-grovehorn/dick.svg"
  26774. }
  26775. },
  26776. slit: {
  26777. height: math.unit(0.61, "feet"),
  26778. name: "Slit",
  26779. image: {
  26780. source: "./media/characters/tala-grovehorn/slit.svg"
  26781. }
  26782. },
  26783. },
  26784. [
  26785. ]
  26786. ))
  26787. characterMakers.push(() => makeCharacter(
  26788. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26789. {
  26790. front: {
  26791. height: math.unit(7 + 7 / 12, "feet"),
  26792. weight: math.unit(225, "lb"),
  26793. name: "Front",
  26794. image: {
  26795. source: "./media/characters/epona/front.svg",
  26796. extra: 2445 / 2290,
  26797. bottom: 251 / 2696
  26798. }
  26799. },
  26800. back: {
  26801. height: math.unit(7 + 7 / 12, "feet"),
  26802. weight: math.unit(225, "lb"),
  26803. name: "Back",
  26804. image: {
  26805. source: "./media/characters/epona/back.svg",
  26806. extra: 2546 / 2408,
  26807. bottom: 44 / 2589
  26808. }
  26809. },
  26810. genitals: {
  26811. height: math.unit(1.5, "feet"),
  26812. name: "Genitals",
  26813. image: {
  26814. source: "./media/characters/epona/genitals.svg"
  26815. }
  26816. },
  26817. },
  26818. [
  26819. {
  26820. name: "Normal",
  26821. height: math.unit(7 + 7 / 12, "feet"),
  26822. default: true
  26823. },
  26824. ]
  26825. ))
  26826. characterMakers.push(() => makeCharacter(
  26827. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26828. {
  26829. front: {
  26830. height: math.unit(7, "feet"),
  26831. weight: math.unit(518, "lb"),
  26832. name: "Front",
  26833. image: {
  26834. source: "./media/characters/avia-bloodbourn/front.svg",
  26835. extra: 1466 / 1350,
  26836. bottom: 65 / 1527
  26837. }
  26838. },
  26839. },
  26840. [
  26841. ]
  26842. ))
  26843. characterMakers.push(() => makeCharacter(
  26844. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26845. {
  26846. front: {
  26847. height: math.unit(9.35, "feet"),
  26848. weight: math.unit(600, "lb"),
  26849. name: "Front",
  26850. image: {
  26851. source: "./media/characters/amera/front.svg",
  26852. extra: 891 / 818,
  26853. bottom: 30 / 922.7
  26854. }
  26855. },
  26856. back: {
  26857. height: math.unit(9.35, "feet"),
  26858. weight: math.unit(600, "lb"),
  26859. name: "Back",
  26860. image: {
  26861. source: "./media/characters/amera/back.svg",
  26862. extra: 876 / 824,
  26863. bottom: 6.8 / 884
  26864. }
  26865. },
  26866. dick: {
  26867. height: math.unit(2.14, "feet"),
  26868. name: "Dick",
  26869. image: {
  26870. source: "./media/characters/amera/dick.svg"
  26871. }
  26872. },
  26873. },
  26874. [
  26875. {
  26876. name: "Normal",
  26877. height: math.unit(9.35, "feet"),
  26878. default: true
  26879. },
  26880. ]
  26881. ))
  26882. characterMakers.push(() => makeCharacter(
  26883. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26884. {
  26885. kneeling: {
  26886. height: math.unit(3 + 4 / 12, "feet"),
  26887. weight: math.unit(90, "lb"),
  26888. name: "Kneeling",
  26889. image: {
  26890. source: "./media/characters/rosewen/kneeling.svg",
  26891. extra: 1835 / 1571,
  26892. bottom: 27.7 / 1862
  26893. }
  26894. },
  26895. },
  26896. [
  26897. {
  26898. name: "Normal",
  26899. height: math.unit(3 + 4 / 12, "feet"),
  26900. default: true
  26901. },
  26902. ]
  26903. ))
  26904. characterMakers.push(() => makeCharacter(
  26905. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26906. {
  26907. front: {
  26908. height: math.unit(5 + 10 / 12, "feet"),
  26909. weight: math.unit(200, "lb"),
  26910. name: "Front",
  26911. image: {
  26912. source: "./media/characters/sabah/front.svg",
  26913. extra: 849 / 763,
  26914. bottom: 33.9 / 881
  26915. }
  26916. },
  26917. },
  26918. [
  26919. {
  26920. name: "Normal",
  26921. height: math.unit(5 + 10 / 12, "feet"),
  26922. default: true
  26923. },
  26924. ]
  26925. ))
  26926. characterMakers.push(() => makeCharacter(
  26927. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26928. {
  26929. front: {
  26930. height: math.unit(3 + 5 / 12, "feet"),
  26931. weight: math.unit(40, "kg"),
  26932. name: "Front",
  26933. image: {
  26934. source: "./media/characters/purple-flame/front.svg",
  26935. extra: 1577 / 1412,
  26936. bottom: 97 / 1694
  26937. }
  26938. },
  26939. frontDressed: {
  26940. height: math.unit(3 + 5 / 12, "feet"),
  26941. weight: math.unit(40, "kg"),
  26942. name: "Front (Dressed)",
  26943. image: {
  26944. source: "./media/characters/purple-flame/front-dressed.svg",
  26945. extra: 1577 / 1412,
  26946. bottom: 97 / 1694
  26947. }
  26948. },
  26949. headphones: {
  26950. height: math.unit(0.85, "feet"),
  26951. name: "Headphones",
  26952. image: {
  26953. source: "./media/characters/purple-flame/headphones.svg"
  26954. }
  26955. },
  26956. },
  26957. [
  26958. {
  26959. name: "Really Small",
  26960. height: math.unit(5, "cm")
  26961. },
  26962. {
  26963. name: "Micro",
  26964. height: math.unit(1 + 5 / 12, "feet")
  26965. },
  26966. {
  26967. name: "Normal",
  26968. height: math.unit(3 + 5 / 12, "feet"),
  26969. default: true
  26970. },
  26971. {
  26972. name: "Minimacro",
  26973. height: math.unit(125, "feet")
  26974. },
  26975. {
  26976. name: "Macro",
  26977. height: math.unit(0.5, "miles")
  26978. },
  26979. {
  26980. name: "Megamacro",
  26981. height: math.unit(50, "miles")
  26982. },
  26983. {
  26984. name: "Gigantic",
  26985. height: math.unit(750, "miles")
  26986. },
  26987. {
  26988. name: "Planetary",
  26989. height: math.unit(15000, "miles")
  26990. },
  26991. ]
  26992. ))
  26993. characterMakers.push(() => makeCharacter(
  26994. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26995. {
  26996. front: {
  26997. height: math.unit(14, "feet"),
  26998. weight: math.unit(959, "lb"),
  26999. name: "Front",
  27000. image: {
  27001. source: "./media/characters/arsenal/front.svg",
  27002. extra: 2357 / 2157,
  27003. bottom: 93 / 2458
  27004. }
  27005. },
  27006. },
  27007. [
  27008. {
  27009. name: "Normal",
  27010. height: math.unit(14, "feet"),
  27011. default: true
  27012. },
  27013. ]
  27014. ))
  27015. characterMakers.push(() => makeCharacter(
  27016. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27017. {
  27018. front: {
  27019. height: math.unit(6, "feet"),
  27020. weight: math.unit(150, "lb"),
  27021. name: "Front",
  27022. image: {
  27023. source: "./media/characters/adira/front.svg",
  27024. extra: 1078 / 1029,
  27025. bottom: 87 / 1166
  27026. }
  27027. },
  27028. },
  27029. [
  27030. {
  27031. name: "Micro",
  27032. height: math.unit(4, "inches"),
  27033. default: true
  27034. },
  27035. {
  27036. name: "Macro",
  27037. height: math.unit(50, "feet")
  27038. },
  27039. ]
  27040. ))
  27041. characterMakers.push(() => makeCharacter(
  27042. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27043. {
  27044. front: {
  27045. height: math.unit(16, "feet"),
  27046. weight: math.unit(1000, "lb"),
  27047. name: "Front",
  27048. image: {
  27049. source: "./media/characters/grim/front.svg",
  27050. extra: 622 / 614,
  27051. bottom: 18.1 / 642
  27052. }
  27053. },
  27054. back: {
  27055. height: math.unit(16, "feet"),
  27056. weight: math.unit(1000, "lb"),
  27057. name: "Back",
  27058. image: {
  27059. source: "./media/characters/grim/back.svg",
  27060. extra: 610.6 / 602,
  27061. bottom: 40.8 / 652
  27062. }
  27063. },
  27064. hunched: {
  27065. height: math.unit(9.75, "feet"),
  27066. weight: math.unit(1000, "lb"),
  27067. name: "Hunched",
  27068. image: {
  27069. source: "./media/characters/grim/hunched.svg",
  27070. extra: 304 / 297,
  27071. bottom: 35.4 / 394
  27072. }
  27073. },
  27074. },
  27075. [
  27076. {
  27077. name: "Normal",
  27078. height: math.unit(16, "feet"),
  27079. default: true
  27080. },
  27081. ]
  27082. ))
  27083. characterMakers.push(() => makeCharacter(
  27084. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27085. {
  27086. front: {
  27087. height: math.unit(2.3, "meters"),
  27088. weight: math.unit(300, "lb"),
  27089. name: "Front",
  27090. image: {
  27091. source: "./media/characters/sinja/front-sfw.svg",
  27092. extra: 1393 / 1294,
  27093. bottom: 70 / 1463
  27094. }
  27095. },
  27096. frontNsfw: {
  27097. height: math.unit(2.3, "meters"),
  27098. weight: math.unit(300, "lb"),
  27099. name: "Front (NSFW)",
  27100. image: {
  27101. source: "./media/characters/sinja/front-nsfw.svg",
  27102. extra: 1393 / 1294,
  27103. bottom: 70 / 1463
  27104. }
  27105. },
  27106. back: {
  27107. height: math.unit(2.3, "meters"),
  27108. weight: math.unit(300, "lb"),
  27109. name: "Back",
  27110. image: {
  27111. source: "./media/characters/sinja/back.svg",
  27112. extra: 1393 / 1294,
  27113. bottom: 70 / 1463
  27114. }
  27115. },
  27116. head: {
  27117. height: math.unit(1.771, "feet"),
  27118. name: "Head",
  27119. image: {
  27120. source: "./media/characters/sinja/head.svg"
  27121. }
  27122. },
  27123. slit: {
  27124. height: math.unit(0.8, "feet"),
  27125. name: "Slit",
  27126. image: {
  27127. source: "./media/characters/sinja/slit.svg"
  27128. }
  27129. },
  27130. },
  27131. [
  27132. {
  27133. name: "Normal",
  27134. height: math.unit(2.3, "meters")
  27135. },
  27136. {
  27137. name: "Macro",
  27138. height: math.unit(91, "meters"),
  27139. default: true
  27140. },
  27141. {
  27142. name: "Megamacro",
  27143. height: math.unit(91440, "meters")
  27144. },
  27145. {
  27146. name: "Gigamacro",
  27147. height: math.unit(60960000, "meters")
  27148. },
  27149. {
  27150. name: "Teramacro",
  27151. height: math.unit(9144000000, "meters")
  27152. },
  27153. ]
  27154. ))
  27155. characterMakers.push(() => makeCharacter(
  27156. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27157. {
  27158. front: {
  27159. height: math.unit(1.7, "meters"),
  27160. weight: math.unit(130, "lb"),
  27161. name: "Front",
  27162. image: {
  27163. source: "./media/characters/kyu/front.svg",
  27164. extra: 415 / 395,
  27165. bottom: 5 / 420
  27166. }
  27167. },
  27168. head: {
  27169. height: math.unit(1.75, "feet"),
  27170. name: "Head",
  27171. image: {
  27172. source: "./media/characters/kyu/head.svg"
  27173. }
  27174. },
  27175. foot: {
  27176. height: math.unit(0.81, "feet"),
  27177. name: "Foot",
  27178. image: {
  27179. source: "./media/characters/kyu/foot.svg"
  27180. }
  27181. },
  27182. },
  27183. [
  27184. {
  27185. name: "Normal",
  27186. height: math.unit(1.7, "meters")
  27187. },
  27188. {
  27189. name: "Macro",
  27190. height: math.unit(131, "feet"),
  27191. default: true
  27192. },
  27193. {
  27194. name: "Megamacro",
  27195. height: math.unit(91440, "meters")
  27196. },
  27197. {
  27198. name: "Gigamacro",
  27199. height: math.unit(60960000, "meters")
  27200. },
  27201. {
  27202. name: "Teramacro",
  27203. height: math.unit(9144000000, "meters")
  27204. },
  27205. ]
  27206. ))
  27207. characterMakers.push(() => makeCharacter(
  27208. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27209. {
  27210. front: {
  27211. height: math.unit(7 + 1 / 12, "feet"),
  27212. weight: math.unit(250, "lb"),
  27213. name: "Front",
  27214. image: {
  27215. source: "./media/characters/joey/front.svg",
  27216. extra: 1791 / 1537,
  27217. bottom: 28 / 1816
  27218. }
  27219. },
  27220. },
  27221. [
  27222. {
  27223. name: "Micro",
  27224. height: math.unit(3, "inches")
  27225. },
  27226. {
  27227. name: "Normal",
  27228. height: math.unit(7 + 1 / 12, "feet"),
  27229. default: true
  27230. },
  27231. ]
  27232. ))
  27233. characterMakers.push(() => makeCharacter(
  27234. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27235. {
  27236. front: {
  27237. height: math.unit(165, "cm"),
  27238. weight: math.unit(140, "lb"),
  27239. name: "Front",
  27240. image: {
  27241. source: "./media/characters/sam-evans/front.svg",
  27242. extra: 3417 / 3230,
  27243. bottom: 41.3 / 3417
  27244. }
  27245. },
  27246. frontSixTails: {
  27247. height: math.unit(165, "cm"),
  27248. weight: math.unit(140, "lb"),
  27249. name: "Front-six-tails",
  27250. image: {
  27251. source: "./media/characters/sam-evans/front-six-tails.svg",
  27252. extra: 3417 / 3230,
  27253. bottom: 41.3 / 3417
  27254. }
  27255. },
  27256. back: {
  27257. height: math.unit(165, "cm"),
  27258. weight: math.unit(140, "lb"),
  27259. name: "Back",
  27260. image: {
  27261. source: "./media/characters/sam-evans/back.svg",
  27262. extra: 3227 / 3032,
  27263. bottom: 6.8 / 3234
  27264. }
  27265. },
  27266. face: {
  27267. height: math.unit(0.68, "feet"),
  27268. name: "Face",
  27269. image: {
  27270. source: "./media/characters/sam-evans/face.svg"
  27271. }
  27272. },
  27273. },
  27274. [
  27275. {
  27276. name: "Normal",
  27277. height: math.unit(165, "cm"),
  27278. default: true
  27279. },
  27280. {
  27281. name: "Macro",
  27282. height: math.unit(100, "meters")
  27283. },
  27284. {
  27285. name: "Macro+",
  27286. height: math.unit(800, "meters")
  27287. },
  27288. {
  27289. name: "Macro++",
  27290. height: math.unit(3, "km")
  27291. },
  27292. {
  27293. name: "Macro+++",
  27294. height: math.unit(30, "km")
  27295. },
  27296. ]
  27297. ))
  27298. characterMakers.push(() => makeCharacter(
  27299. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27300. {
  27301. front: {
  27302. height: math.unit(10, "feet"),
  27303. weight: math.unit(750, "lb"),
  27304. name: "Front",
  27305. image: {
  27306. source: "./media/characters/juliet-a/front.svg",
  27307. extra: 1766 / 1720,
  27308. bottom: 43 / 1809
  27309. }
  27310. },
  27311. back: {
  27312. height: math.unit(10, "feet"),
  27313. weight: math.unit(750, "lb"),
  27314. name: "Back",
  27315. image: {
  27316. source: "./media/characters/juliet-a/back.svg",
  27317. extra: 1781 / 1734,
  27318. bottom: 35 / 1810,
  27319. }
  27320. },
  27321. },
  27322. [
  27323. {
  27324. name: "Normal",
  27325. height: math.unit(10, "feet"),
  27326. default: true
  27327. },
  27328. {
  27329. name: "Dragon Form",
  27330. height: math.unit(250, "feet")
  27331. },
  27332. {
  27333. name: "Macro",
  27334. height: math.unit(1000, "feet")
  27335. },
  27336. {
  27337. name: "Megamacro",
  27338. height: math.unit(10000, "feet")
  27339. }
  27340. ]
  27341. ))
  27342. characterMakers.push(() => makeCharacter(
  27343. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27344. {
  27345. regular: {
  27346. height: math.unit(7 + 3 / 12, "feet"),
  27347. weight: math.unit(260, "lb"),
  27348. name: "Regular",
  27349. image: {
  27350. source: "./media/characters/wild/regular.svg",
  27351. extra: 97.45 / 92,
  27352. bottom: 6.8 / 104.3
  27353. }
  27354. },
  27355. biggums: {
  27356. height: math.unit(8 + 6 / 12, "feet"),
  27357. weight: math.unit(425, "lb"),
  27358. name: "Biggums",
  27359. image: {
  27360. source: "./media/characters/wild/biggums.svg",
  27361. extra: 97.45 / 92,
  27362. bottom: 7.5 / 132.34
  27363. }
  27364. },
  27365. mawRegular: {
  27366. height: math.unit(1.24, "feet"),
  27367. name: "Maw (Regular)",
  27368. image: {
  27369. source: "./media/characters/wild/maw.svg"
  27370. }
  27371. },
  27372. mawBiggums: {
  27373. height: math.unit(1.47, "feet"),
  27374. name: "Maw (Biggums)",
  27375. image: {
  27376. source: "./media/characters/wild/maw.svg"
  27377. }
  27378. },
  27379. },
  27380. [
  27381. {
  27382. name: "Normal",
  27383. height: math.unit(7 + 3 / 12, "feet"),
  27384. default: true
  27385. },
  27386. ]
  27387. ))
  27388. characterMakers.push(() => makeCharacter(
  27389. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27390. {
  27391. front: {
  27392. height: math.unit(2.5, "meters"),
  27393. weight: math.unit(200, "kg"),
  27394. name: "Front",
  27395. image: {
  27396. source: "./media/characters/vidar/front.svg",
  27397. extra: 2994 / 2795,
  27398. bottom: 56 / 3061
  27399. }
  27400. },
  27401. back: {
  27402. height: math.unit(2.5, "meters"),
  27403. weight: math.unit(200, "kg"),
  27404. name: "Back",
  27405. image: {
  27406. source: "./media/characters/vidar/back.svg",
  27407. extra: 3131 / 2928,
  27408. bottom: 13.5 / 3141.5
  27409. }
  27410. },
  27411. feral: {
  27412. height: math.unit(2.5, "meters"),
  27413. weight: math.unit(2000, "kg"),
  27414. name: "Feral",
  27415. image: {
  27416. source: "./media/characters/vidar/feral.svg",
  27417. extra: 2790 / 1765,
  27418. bottom: 6 / 2796
  27419. }
  27420. },
  27421. },
  27422. [
  27423. {
  27424. name: "Normal",
  27425. height: math.unit(2.5, "meters"),
  27426. default: true
  27427. },
  27428. {
  27429. name: "Macro",
  27430. height: math.unit(100, "meters")
  27431. },
  27432. ]
  27433. ))
  27434. characterMakers.push(() => makeCharacter(
  27435. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27436. {
  27437. front: {
  27438. height: math.unit(5 + 9 / 12, "feet"),
  27439. weight: math.unit(120, "lb"),
  27440. name: "Front",
  27441. image: {
  27442. source: "./media/characters/ash/front.svg",
  27443. extra: 2189 / 1961,
  27444. bottom: 5.2 / 2194
  27445. }
  27446. },
  27447. },
  27448. [
  27449. {
  27450. name: "Normal",
  27451. height: math.unit(5 + 9 / 12, "feet"),
  27452. default: true
  27453. },
  27454. ]
  27455. ))
  27456. characterMakers.push(() => makeCharacter(
  27457. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27458. {
  27459. front: {
  27460. height: math.unit(9, "feet"),
  27461. weight: math.unit(10000, "lb"),
  27462. name: "Front",
  27463. image: {
  27464. source: "./media/characters/gygabite/front.svg",
  27465. bottom: 31.7 / 537.8,
  27466. extra: 505 / 370
  27467. }
  27468. },
  27469. },
  27470. [
  27471. {
  27472. name: "Normal",
  27473. height: math.unit(9, "feet"),
  27474. default: true
  27475. },
  27476. ]
  27477. ))
  27478. characterMakers.push(() => makeCharacter(
  27479. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27480. {
  27481. front: {
  27482. height: math.unit(12, "feet"),
  27483. weight: math.unit(35000, "lb"),
  27484. name: "Front",
  27485. image: {
  27486. source: "./media/characters/p0tat0/front.svg",
  27487. extra: 1065 / 921,
  27488. bottom: 55.7 / 1121.25
  27489. }
  27490. },
  27491. },
  27492. [
  27493. {
  27494. name: "Normal",
  27495. height: math.unit(12, "feet"),
  27496. default: true
  27497. },
  27498. ]
  27499. ))
  27500. characterMakers.push(() => makeCharacter(
  27501. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27502. {
  27503. side: {
  27504. height: math.unit(6.5, "feet"),
  27505. weight: math.unit(800, "lb"),
  27506. name: "Side",
  27507. image: {
  27508. source: "./media/characters/dusk/side.svg",
  27509. extra: 615 / 373,
  27510. bottom: 53 / 664
  27511. }
  27512. },
  27513. sitting: {
  27514. height: math.unit(7, "feet"),
  27515. weight: math.unit(800, "lb"),
  27516. name: "Sitting",
  27517. image: {
  27518. source: "./media/characters/dusk/sitting.svg",
  27519. extra: 753 / 425,
  27520. bottom: 33 / 774
  27521. }
  27522. },
  27523. head: {
  27524. height: math.unit(6.1, "feet"),
  27525. name: "Head",
  27526. image: {
  27527. source: "./media/characters/dusk/head.svg"
  27528. }
  27529. },
  27530. },
  27531. [
  27532. {
  27533. name: "Normal",
  27534. height: math.unit(7, "feet"),
  27535. default: true
  27536. },
  27537. ]
  27538. ))
  27539. characterMakers.push(() => makeCharacter(
  27540. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27541. {
  27542. front: {
  27543. height: math.unit(15, "feet"),
  27544. weight: math.unit(7000, "lb"),
  27545. name: "Front",
  27546. image: {
  27547. source: "./media/characters/jay-direwolf/front.svg",
  27548. extra: 1810 / 1732,
  27549. bottom: 66 / 1892
  27550. }
  27551. },
  27552. },
  27553. [
  27554. {
  27555. name: "Normal",
  27556. height: math.unit(15, "feet"),
  27557. default: true
  27558. },
  27559. ]
  27560. ))
  27561. characterMakers.push(() => makeCharacter(
  27562. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27563. {
  27564. front: {
  27565. height: math.unit(4 + 9 / 12, "feet"),
  27566. weight: math.unit(130, "lb"),
  27567. name: "Front",
  27568. image: {
  27569. source: "./media/characters/anchovie/front.svg",
  27570. extra: 382 / 350,
  27571. bottom: 25 / 409
  27572. }
  27573. },
  27574. back: {
  27575. height: math.unit(4 + 9 / 12, "feet"),
  27576. weight: math.unit(130, "lb"),
  27577. name: "Back",
  27578. image: {
  27579. source: "./media/characters/anchovie/back.svg",
  27580. extra: 385 / 352,
  27581. bottom: 16.6 / 402
  27582. }
  27583. },
  27584. frontDressed: {
  27585. height: math.unit(4 + 9 / 12, "feet"),
  27586. weight: math.unit(130, "lb"),
  27587. name: "Front (Dressed)",
  27588. image: {
  27589. source: "./media/characters/anchovie/front-dressed.svg",
  27590. extra: 382 / 350,
  27591. bottom: 25 / 409
  27592. }
  27593. },
  27594. backDressed: {
  27595. height: math.unit(4 + 9 / 12, "feet"),
  27596. weight: math.unit(130, "lb"),
  27597. name: "Back (Dressed)",
  27598. image: {
  27599. source: "./media/characters/anchovie/back-dressed.svg",
  27600. extra: 385 / 352,
  27601. bottom: 16.6 / 402
  27602. }
  27603. },
  27604. },
  27605. [
  27606. {
  27607. name: "Micro",
  27608. height: math.unit(6.4, "inches")
  27609. },
  27610. {
  27611. name: "Normal",
  27612. height: math.unit(4 + 9 / 12, "feet"),
  27613. default: true
  27614. },
  27615. ]
  27616. ))
  27617. characterMakers.push(() => makeCharacter(
  27618. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27619. {
  27620. front: {
  27621. height: math.unit(2, "meters"),
  27622. weight: math.unit(180, "lb"),
  27623. name: "Front",
  27624. image: {
  27625. source: "./media/characters/acidrenamon/front.svg",
  27626. extra: 987 / 890,
  27627. bottom: 22.8 / 1009
  27628. }
  27629. },
  27630. back: {
  27631. height: math.unit(2, "meters"),
  27632. weight: math.unit(180, "lb"),
  27633. name: "Back",
  27634. image: {
  27635. source: "./media/characters/acidrenamon/back.svg",
  27636. extra: 983 / 891,
  27637. bottom: 8.4 / 992
  27638. }
  27639. },
  27640. head: {
  27641. height: math.unit(1.92, "feet"),
  27642. name: "Head",
  27643. image: {
  27644. source: "./media/characters/acidrenamon/head.svg"
  27645. }
  27646. },
  27647. rump: {
  27648. height: math.unit(1.72, "feet"),
  27649. name: "Rump",
  27650. image: {
  27651. source: "./media/characters/acidrenamon/rump.svg"
  27652. }
  27653. },
  27654. tail: {
  27655. height: math.unit(4.2, "feet"),
  27656. name: "Tail",
  27657. image: {
  27658. source: "./media/characters/acidrenamon/tail.svg"
  27659. }
  27660. },
  27661. },
  27662. [
  27663. {
  27664. name: "Normal",
  27665. height: math.unit(2, "meters"),
  27666. default: true
  27667. },
  27668. {
  27669. name: "Minimacro",
  27670. height: math.unit(7, "meters")
  27671. },
  27672. {
  27673. name: "Macro",
  27674. height: math.unit(200, "meters")
  27675. },
  27676. {
  27677. name: "Gigamacro",
  27678. height: math.unit(0.2, "earths")
  27679. },
  27680. ]
  27681. ))
  27682. characterMakers.push(() => makeCharacter(
  27683. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27684. {
  27685. front: {
  27686. height: math.unit(152, "feet"),
  27687. name: "Front",
  27688. image: {
  27689. source: "./media/characters/kenzie-lee/front.svg",
  27690. extra: 1869/1774,
  27691. bottom: 128/1997
  27692. }
  27693. },
  27694. side: {
  27695. height: math.unit(86, "feet"),
  27696. name: "Side",
  27697. image: {
  27698. source: "./media/characters/kenzie-lee/side.svg",
  27699. extra: 930/815,
  27700. bottom: 177/1107
  27701. }
  27702. },
  27703. paw: {
  27704. height: math.unit(15, "feet"),
  27705. name: "Paw",
  27706. image: {
  27707. source: "./media/characters/kenzie-lee/paw.svg"
  27708. }
  27709. },
  27710. },
  27711. [
  27712. {
  27713. name: "Micro",
  27714. height: math.unit(1.5, "inches")
  27715. },
  27716. {
  27717. name: "Normal",
  27718. height: math.unit(152, "feet"),
  27719. default: true
  27720. },
  27721. {
  27722. name: "Megamacro",
  27723. height: math.unit(7, "miles")
  27724. },
  27725. {
  27726. name: "Gigamacro",
  27727. height: math.unit(8000, "miles")
  27728. },
  27729. ]
  27730. ))
  27731. characterMakers.push(() => makeCharacter(
  27732. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27733. {
  27734. side: {
  27735. height: math.unit(6, "feet"),
  27736. weight: math.unit(150, "lb"),
  27737. name: "Side",
  27738. image: {
  27739. source: "./media/characters/withers/side.svg",
  27740. extra: 1830 / 1728,
  27741. bottom: 96 / 1927
  27742. }
  27743. },
  27744. front: {
  27745. height: math.unit(6, "feet"),
  27746. weight: math.unit(150, "lb"),
  27747. name: "Front",
  27748. image: {
  27749. source: "./media/characters/withers/front.svg",
  27750. extra: 1514 / 1438,
  27751. bottom: 118 / 1632
  27752. }
  27753. },
  27754. },
  27755. [
  27756. {
  27757. name: "Macro",
  27758. height: math.unit(168, "feet"),
  27759. default: true
  27760. },
  27761. {
  27762. name: "Megamacro",
  27763. height: math.unit(15, "miles")
  27764. }
  27765. ]
  27766. ))
  27767. characterMakers.push(() => makeCharacter(
  27768. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27769. {
  27770. front: {
  27771. height: math.unit(6 + 7 / 12, "feet"),
  27772. weight: math.unit(250, "lb"),
  27773. name: "Front",
  27774. image: {
  27775. source: "./media/characters/nemoskii/front.svg",
  27776. extra: 2270 / 1734,
  27777. bottom: 86 / 2354
  27778. }
  27779. },
  27780. back: {
  27781. height: math.unit(6 + 7 / 12, "feet"),
  27782. weight: math.unit(250, "lb"),
  27783. name: "Back",
  27784. image: {
  27785. source: "./media/characters/nemoskii/back.svg",
  27786. extra: 1845 / 1788,
  27787. bottom: 10.5 / 1852
  27788. }
  27789. },
  27790. head: {
  27791. height: math.unit(1.31, "feet"),
  27792. name: "Head",
  27793. image: {
  27794. source: "./media/characters/nemoskii/head.svg"
  27795. }
  27796. },
  27797. },
  27798. [
  27799. {
  27800. name: "Micro",
  27801. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27802. },
  27803. {
  27804. name: "Normal",
  27805. height: math.unit(6 + 7 / 12, "feet"),
  27806. default: true
  27807. },
  27808. {
  27809. name: "Macro",
  27810. height: math.unit((6 + 7 / 12) * 150, "feet")
  27811. },
  27812. {
  27813. name: "Macro+",
  27814. height: math.unit((6 + 7 / 12) * 500, "feet")
  27815. },
  27816. {
  27817. name: "Megamacro",
  27818. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27819. },
  27820. ]
  27821. ))
  27822. characterMakers.push(() => makeCharacter(
  27823. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27824. {
  27825. front: {
  27826. height: math.unit(1, "mile"),
  27827. weight: math.unit(265261.9, "lb"),
  27828. name: "Front",
  27829. image: {
  27830. source: "./media/characters/shui/front.svg",
  27831. extra: 1633 / 1564,
  27832. bottom: 91.5 / 1726
  27833. }
  27834. },
  27835. },
  27836. [
  27837. {
  27838. name: "Macro",
  27839. height: math.unit(1, "mile"),
  27840. default: true
  27841. },
  27842. ]
  27843. ))
  27844. characterMakers.push(() => makeCharacter(
  27845. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27846. {
  27847. front: {
  27848. height: math.unit(12 + 6 / 12, "feet"),
  27849. weight: math.unit(1342, "lb"),
  27850. name: "Front",
  27851. image: {
  27852. source: "./media/characters/arokh-takakura/front.svg",
  27853. extra: 1089 / 1043,
  27854. bottom: 77.4 / 1176.7
  27855. }
  27856. },
  27857. back: {
  27858. height: math.unit(12 + 6 / 12, "feet"),
  27859. weight: math.unit(1342, "lb"),
  27860. name: "Back",
  27861. image: {
  27862. source: "./media/characters/arokh-takakura/back.svg",
  27863. extra: 1046 / 1019,
  27864. bottom: 102 / 1150
  27865. }
  27866. },
  27867. },
  27868. [
  27869. {
  27870. name: "Big",
  27871. height: math.unit(12 + 6 / 12, "feet"),
  27872. default: true
  27873. },
  27874. ]
  27875. ))
  27876. characterMakers.push(() => makeCharacter(
  27877. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27878. {
  27879. front: {
  27880. height: math.unit(5 + 6 / 12, "feet"),
  27881. weight: math.unit(150, "lb"),
  27882. name: "Front",
  27883. image: {
  27884. source: "./media/characters/theo/front.svg",
  27885. extra: 1184 / 1131,
  27886. bottom: 7.4 / 1191
  27887. }
  27888. },
  27889. },
  27890. [
  27891. {
  27892. name: "Micro",
  27893. height: math.unit(5, "inches")
  27894. },
  27895. {
  27896. name: "Normal",
  27897. height: math.unit(5 + 6 / 12, "feet"),
  27898. default: true
  27899. },
  27900. ]
  27901. ))
  27902. characterMakers.push(() => makeCharacter(
  27903. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27904. {
  27905. front: {
  27906. height: math.unit(5 + 9 / 12, "feet"),
  27907. weight: math.unit(130, "lb"),
  27908. name: "Front",
  27909. image: {
  27910. source: "./media/characters/cecelia-swift/front.svg",
  27911. extra: 502 / 484,
  27912. bottom: 23 / 523
  27913. }
  27914. },
  27915. back: {
  27916. height: math.unit(5 + 9 / 12, "feet"),
  27917. weight: math.unit(130, "lb"),
  27918. name: "Back",
  27919. image: {
  27920. source: "./media/characters/cecelia-swift/back.svg",
  27921. extra: 499 / 485,
  27922. bottom: 12 / 511
  27923. }
  27924. },
  27925. head: {
  27926. height: math.unit(0.90, "feet"),
  27927. name: "Head",
  27928. image: {
  27929. source: "./media/characters/cecelia-swift/head.svg"
  27930. }
  27931. },
  27932. rump: {
  27933. height: math.unit(1.75, "feet"),
  27934. name: "Rump",
  27935. image: {
  27936. source: "./media/characters/cecelia-swift/rump.svg"
  27937. }
  27938. },
  27939. },
  27940. [
  27941. {
  27942. name: "Normal",
  27943. height: math.unit(5 + 9 / 12, "feet"),
  27944. default: true
  27945. },
  27946. {
  27947. name: "Big",
  27948. height: math.unit(50, "feet")
  27949. },
  27950. {
  27951. name: "Macro",
  27952. height: math.unit(100, "feet")
  27953. },
  27954. {
  27955. name: "Macro+",
  27956. height: math.unit(500, "feet")
  27957. },
  27958. {
  27959. name: "Macro++",
  27960. height: math.unit(1000, "feet")
  27961. },
  27962. ]
  27963. ))
  27964. characterMakers.push(() => makeCharacter(
  27965. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27966. {
  27967. front: {
  27968. height: math.unit(6, "feet"),
  27969. weight: math.unit(150, "lb"),
  27970. name: "Front",
  27971. image: {
  27972. source: "./media/characters/kaunan/front.svg",
  27973. extra: 2890 / 2523,
  27974. bottom: 49 / 2939
  27975. }
  27976. },
  27977. },
  27978. [
  27979. {
  27980. name: "Macro",
  27981. height: math.unit(150, "feet"),
  27982. default: true
  27983. },
  27984. ]
  27985. ))
  27986. characterMakers.push(() => makeCharacter(
  27987. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27988. {
  27989. front: {
  27990. height: math.unit(175, "cm"),
  27991. weight: math.unit(60, "kg"),
  27992. name: "Front",
  27993. image: {
  27994. source: "./media/characters/fei/front.svg",
  27995. extra: 1873/1723,
  27996. bottom: 53/1926
  27997. }
  27998. },
  27999. },
  28000. [
  28001. {
  28002. name: "Mortal",
  28003. height: math.unit(175, "cm")
  28004. },
  28005. {
  28006. name: "Normal",
  28007. height: math.unit(3500, "m"),
  28008. default: true
  28009. },
  28010. {
  28011. name: "Stroll",
  28012. height: math.unit(17.5, "km")
  28013. },
  28014. {
  28015. name: "Showoff",
  28016. height: math.unit(175, "km")
  28017. },
  28018. ]
  28019. ))
  28020. characterMakers.push(() => makeCharacter(
  28021. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28022. {
  28023. front: {
  28024. height: math.unit(7, "feet"),
  28025. weight: math.unit(1000, "kg"),
  28026. name: "Front",
  28027. image: {
  28028. source: "./media/characters/edrax/front.svg",
  28029. extra: 2838 / 2550,
  28030. bottom: 130 / 2968
  28031. }
  28032. },
  28033. },
  28034. [
  28035. {
  28036. name: "Small",
  28037. height: math.unit(7, "feet")
  28038. },
  28039. {
  28040. name: "Normal",
  28041. height: math.unit(1500, "meters")
  28042. },
  28043. {
  28044. name: "Mega",
  28045. height: math.unit(12000000, "km"),
  28046. default: true
  28047. },
  28048. {
  28049. name: "Megamacro",
  28050. height: math.unit(10600000, "lightyears")
  28051. },
  28052. {
  28053. name: "Hypermacro",
  28054. height: math.unit(256, "yottameters")
  28055. },
  28056. ]
  28057. ))
  28058. characterMakers.push(() => makeCharacter(
  28059. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28060. {
  28061. front: {
  28062. height: math.unit(10, "feet"),
  28063. weight: math.unit(750, "lb"),
  28064. name: "Front",
  28065. image: {
  28066. source: "./media/characters/clove/front.svg",
  28067. extra: 1918/1751,
  28068. bottom: 52/1970
  28069. }
  28070. },
  28071. back: {
  28072. height: math.unit(10, "feet"),
  28073. weight: math.unit(750, "lb"),
  28074. name: "Back",
  28075. image: {
  28076. source: "./media/characters/clove/back.svg",
  28077. extra: 1912/1747,
  28078. bottom: 50/1962
  28079. }
  28080. },
  28081. },
  28082. [
  28083. {
  28084. name: "Normal",
  28085. height: math.unit(10, "feet"),
  28086. default: true
  28087. },
  28088. ]
  28089. ))
  28090. characterMakers.push(() => makeCharacter(
  28091. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28092. {
  28093. front: {
  28094. height: math.unit(4, "feet"),
  28095. weight: math.unit(50, "lb"),
  28096. name: "Front",
  28097. image: {
  28098. source: "./media/characters/alex-rabbit/front.svg",
  28099. extra: 507 / 458,
  28100. bottom: 18.5 / 527
  28101. }
  28102. },
  28103. back: {
  28104. height: math.unit(4, "feet"),
  28105. weight: math.unit(50, "lb"),
  28106. name: "Back",
  28107. image: {
  28108. source: "./media/characters/alex-rabbit/back.svg",
  28109. extra: 502 / 460,
  28110. bottom: 18.9 / 521
  28111. }
  28112. },
  28113. },
  28114. [
  28115. {
  28116. name: "Normal",
  28117. height: math.unit(4, "feet"),
  28118. default: true
  28119. },
  28120. ]
  28121. ))
  28122. characterMakers.push(() => makeCharacter(
  28123. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28124. {
  28125. front: {
  28126. height: math.unit(1 + 3 / 12, "feet"),
  28127. weight: math.unit(80, "lb"),
  28128. name: "Front",
  28129. image: {
  28130. source: "./media/characters/zander-rose/front.svg",
  28131. extra: 916 / 797,
  28132. bottom: 17 / 933
  28133. }
  28134. },
  28135. back: {
  28136. height: math.unit(1 + 3 / 12, "feet"),
  28137. weight: math.unit(80, "lb"),
  28138. name: "Back",
  28139. image: {
  28140. source: "./media/characters/zander-rose/back.svg",
  28141. extra: 903 / 779,
  28142. bottom: 31 / 934
  28143. }
  28144. },
  28145. },
  28146. [
  28147. {
  28148. name: "Normal",
  28149. height: math.unit(1 + 3 / 12, "feet"),
  28150. default: true
  28151. },
  28152. ]
  28153. ))
  28154. characterMakers.push(() => makeCharacter(
  28155. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28156. {
  28157. anthro: {
  28158. height: math.unit(6, "feet"),
  28159. weight: math.unit(150, "lb"),
  28160. name: "Anthro",
  28161. image: {
  28162. source: "./media/characters/razz/anthro.svg",
  28163. extra: 1437 / 1343,
  28164. bottom: 48 / 1485
  28165. }
  28166. },
  28167. feral: {
  28168. height: math.unit(6, "feet"),
  28169. weight: math.unit(150, "lb"),
  28170. name: "Feral",
  28171. image: {
  28172. source: "./media/characters/razz/feral.svg",
  28173. extra: 2569 / 1385,
  28174. bottom: 95 / 2664
  28175. }
  28176. },
  28177. },
  28178. [
  28179. {
  28180. name: "Normal",
  28181. height: math.unit(6, "feet"),
  28182. default: true
  28183. },
  28184. ]
  28185. ))
  28186. characterMakers.push(() => makeCharacter(
  28187. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28188. {
  28189. front: {
  28190. height: math.unit(9 + 4 / 12, "feet"),
  28191. weight: math.unit(500, "lb"),
  28192. name: "Front",
  28193. image: {
  28194. source: "./media/characters/morrigan/front.svg",
  28195. extra: 2707 / 2579,
  28196. bottom: 156 / 2863
  28197. }
  28198. },
  28199. },
  28200. [
  28201. {
  28202. name: "Normal",
  28203. height: math.unit(9 + 4 / 12, "feet"),
  28204. default: true
  28205. },
  28206. ]
  28207. ))
  28208. characterMakers.push(() => makeCharacter(
  28209. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28210. {
  28211. front: {
  28212. height: math.unit(5, "stories"),
  28213. weight: math.unit(4000, "lb"),
  28214. name: "Front",
  28215. image: {
  28216. source: "./media/characters/jenene/front.svg",
  28217. extra: 1780 / 1710,
  28218. bottom: 57 / 1837
  28219. }
  28220. },
  28221. },
  28222. [
  28223. {
  28224. name: "Normal",
  28225. height: math.unit(5, "stories"),
  28226. default: true
  28227. },
  28228. ]
  28229. ))
  28230. characterMakers.push(() => makeCharacter(
  28231. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28232. {
  28233. taurSfw: {
  28234. height: math.unit(10, "meters"),
  28235. weight: math.unit(17500, "kg"),
  28236. name: "Taur",
  28237. image: {
  28238. source: "./media/characters/faey/taur-sfw.svg",
  28239. extra: 1200 / 968,
  28240. bottom: 41 / 1241
  28241. }
  28242. },
  28243. chestmaw: {
  28244. height: math.unit(2.01, "meters"),
  28245. name: "Chestmaw",
  28246. image: {
  28247. source: "./media/characters/faey/chestmaw.svg"
  28248. }
  28249. },
  28250. foot: {
  28251. height: math.unit(2.43, "meters"),
  28252. name: "Foot",
  28253. image: {
  28254. source: "./media/characters/faey/foot.svg"
  28255. }
  28256. },
  28257. jaws: {
  28258. height: math.unit(1.66, "meters"),
  28259. name: "Jaws",
  28260. image: {
  28261. source: "./media/characters/faey/jaws.svg"
  28262. }
  28263. },
  28264. tongues: {
  28265. height: math.unit(2.01, "meters"),
  28266. name: "Tongues",
  28267. image: {
  28268. source: "./media/characters/faey/tongues.svg"
  28269. }
  28270. },
  28271. },
  28272. [
  28273. {
  28274. name: "Small",
  28275. height: math.unit(10, "meters"),
  28276. default: true
  28277. },
  28278. {
  28279. name: "Big",
  28280. height: math.unit(500000, "km")
  28281. },
  28282. ]
  28283. ))
  28284. characterMakers.push(() => makeCharacter(
  28285. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28286. {
  28287. front: {
  28288. height: math.unit(7, "feet"),
  28289. weight: math.unit(275, "lb"),
  28290. name: "Front",
  28291. image: {
  28292. source: "./media/characters/roku/front.svg",
  28293. extra: 903 / 878,
  28294. bottom: 37 / 940
  28295. }
  28296. },
  28297. },
  28298. [
  28299. {
  28300. name: "Normal",
  28301. height: math.unit(7, "feet"),
  28302. default: true
  28303. },
  28304. {
  28305. name: "Macro",
  28306. height: math.unit(500, "feet")
  28307. },
  28308. {
  28309. name: "Megamacro",
  28310. height: math.unit(200, "miles")
  28311. },
  28312. ]
  28313. ))
  28314. characterMakers.push(() => makeCharacter(
  28315. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28316. {
  28317. front: {
  28318. height: math.unit(6 + 2 / 12, "feet"),
  28319. weight: math.unit(150, "lb"),
  28320. name: "Front",
  28321. image: {
  28322. source: "./media/characters/lira/front.svg",
  28323. extra: 1727 / 1605,
  28324. bottom: 26 / 1753
  28325. }
  28326. },
  28327. back: {
  28328. height: math.unit(6 + 2 / 12, "feet"),
  28329. weight: math.unit(150, "lb"),
  28330. name: "Back",
  28331. image: {
  28332. source: "./media/characters/lira/back.svg",
  28333. extra: 1713/1621,
  28334. bottom: 20/1733
  28335. }
  28336. },
  28337. hand: {
  28338. height: math.unit(0.75, "feet"),
  28339. name: "Hand",
  28340. image: {
  28341. source: "./media/characters/lira/hand.svg"
  28342. }
  28343. },
  28344. maw: {
  28345. height: math.unit(0.65, "feet"),
  28346. name: "Maw",
  28347. image: {
  28348. source: "./media/characters/lira/maw.svg"
  28349. }
  28350. },
  28351. pawDigi: {
  28352. height: math.unit(1.6, "feet"),
  28353. name: "Paw Digi",
  28354. image: {
  28355. source: "./media/characters/lira/paw-digi.svg"
  28356. }
  28357. },
  28358. pawPlanti: {
  28359. height: math.unit(1.4, "feet"),
  28360. name: "Paw Planti",
  28361. image: {
  28362. source: "./media/characters/lira/paw-planti.svg"
  28363. }
  28364. },
  28365. },
  28366. [
  28367. {
  28368. name: "Normal",
  28369. height: math.unit(6 + 2 / 12, "feet"),
  28370. default: true
  28371. },
  28372. {
  28373. name: "Macro",
  28374. height: math.unit(100, "feet")
  28375. },
  28376. {
  28377. name: "Macro²",
  28378. height: math.unit(1600, "feet")
  28379. },
  28380. {
  28381. name: "Planetary",
  28382. height: math.unit(20, "earths")
  28383. },
  28384. ]
  28385. ))
  28386. characterMakers.push(() => makeCharacter(
  28387. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28388. {
  28389. front: {
  28390. height: math.unit(6, "feet"),
  28391. weight: math.unit(150, "lb"),
  28392. name: "Front",
  28393. image: {
  28394. source: "./media/characters/hadjet/front.svg",
  28395. extra: 1480 / 1346,
  28396. bottom: 26 / 1506
  28397. }
  28398. },
  28399. frontNsfw: {
  28400. height: math.unit(6, "feet"),
  28401. weight: math.unit(150, "lb"),
  28402. name: "Front (NSFW)",
  28403. image: {
  28404. source: "./media/characters/hadjet/front-nsfw.svg",
  28405. extra: 1440 / 1358,
  28406. bottom: 52 / 1492
  28407. }
  28408. },
  28409. },
  28410. [
  28411. {
  28412. name: "Macro",
  28413. height: math.unit(10, "stories"),
  28414. default: true
  28415. },
  28416. {
  28417. name: "Megamacro",
  28418. height: math.unit(1.5, "miles")
  28419. },
  28420. {
  28421. name: "Megamacro+",
  28422. height: math.unit(5, "miles")
  28423. },
  28424. ]
  28425. ))
  28426. characterMakers.push(() => makeCharacter(
  28427. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28428. {
  28429. side: {
  28430. height: math.unit(106, "feet"),
  28431. weight: math.unit(500, "tonnes"),
  28432. name: "Side",
  28433. image: {
  28434. source: "./media/characters/kodran/side.svg",
  28435. extra: 553 / 480,
  28436. bottom: 33 / 586
  28437. }
  28438. },
  28439. front: {
  28440. height: math.unit(132, "feet"),
  28441. weight: math.unit(500, "tonnes"),
  28442. name: "Front",
  28443. image: {
  28444. source: "./media/characters/kodran/front.svg",
  28445. extra: 667 / 643,
  28446. bottom: 42 / 709
  28447. }
  28448. },
  28449. flying: {
  28450. height: math.unit(350, "feet"),
  28451. weight: math.unit(500, "tonnes"),
  28452. name: "Flying",
  28453. image: {
  28454. source: "./media/characters/kodran/flying.svg"
  28455. }
  28456. },
  28457. foot: {
  28458. height: math.unit(33, "feet"),
  28459. name: "Foot",
  28460. image: {
  28461. source: "./media/characters/kodran/foot.svg"
  28462. }
  28463. },
  28464. footFront: {
  28465. height: math.unit(19, "feet"),
  28466. name: "Foot (Front)",
  28467. image: {
  28468. source: "./media/characters/kodran/foot-front.svg",
  28469. extra: 261 / 261,
  28470. bottom: 91 / 352
  28471. }
  28472. },
  28473. headFront: {
  28474. height: math.unit(53, "feet"),
  28475. name: "Head (Front)",
  28476. image: {
  28477. source: "./media/characters/kodran/head-front.svg"
  28478. }
  28479. },
  28480. headSide: {
  28481. height: math.unit(65, "feet"),
  28482. name: "Head (Side)",
  28483. image: {
  28484. source: "./media/characters/kodran/head-side.svg"
  28485. }
  28486. },
  28487. throat: {
  28488. height: math.unit(79, "feet"),
  28489. name: "Throat",
  28490. image: {
  28491. source: "./media/characters/kodran/throat.svg"
  28492. }
  28493. },
  28494. },
  28495. [
  28496. {
  28497. name: "Large",
  28498. height: math.unit(106, "feet"),
  28499. default: true
  28500. },
  28501. ]
  28502. ))
  28503. characterMakers.push(() => makeCharacter(
  28504. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28505. {
  28506. side: {
  28507. height: math.unit(11, "feet"),
  28508. weight: math.unit(150, "lb"),
  28509. name: "Side",
  28510. image: {
  28511. source: "./media/characters/pyxaron/side.svg",
  28512. extra: 305 / 195,
  28513. bottom: 17 / 322
  28514. }
  28515. },
  28516. },
  28517. [
  28518. {
  28519. name: "Normal",
  28520. height: math.unit(11, "feet"),
  28521. default: true
  28522. },
  28523. ]
  28524. ))
  28525. characterMakers.push(() => makeCharacter(
  28526. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28527. {
  28528. front: {
  28529. height: math.unit(6, "feet"),
  28530. weight: math.unit(150, "lb"),
  28531. name: "Front",
  28532. image: {
  28533. source: "./media/characters/meep/front.svg",
  28534. extra: 88 / 80,
  28535. bottom: 6 / 94
  28536. }
  28537. },
  28538. },
  28539. [
  28540. {
  28541. name: "Fun Sized",
  28542. height: math.unit(2, "inches"),
  28543. default: true
  28544. },
  28545. {
  28546. name: "Friend Sized",
  28547. height: math.unit(8, "inches")
  28548. },
  28549. ]
  28550. ))
  28551. characterMakers.push(() => makeCharacter(
  28552. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28553. {
  28554. front: {
  28555. height: math.unit(15, "feet"),
  28556. weight: math.unit(2500, "lb"),
  28557. name: "Front",
  28558. image: {
  28559. source: "./media/characters/holly-rabbit/front.svg",
  28560. extra: 1433 / 1233,
  28561. bottom: 125 / 1558
  28562. }
  28563. },
  28564. dick: {
  28565. height: math.unit(4.6, "feet"),
  28566. name: "Dick",
  28567. image: {
  28568. source: "./media/characters/holly-rabbit/dick.svg"
  28569. }
  28570. },
  28571. },
  28572. [
  28573. {
  28574. name: "Normal",
  28575. height: math.unit(15, "feet"),
  28576. default: true
  28577. },
  28578. {
  28579. name: "Macro",
  28580. height: math.unit(250, "feet")
  28581. },
  28582. {
  28583. name: "Macro+",
  28584. height: math.unit(2500, "feet")
  28585. },
  28586. ]
  28587. ))
  28588. characterMakers.push(() => makeCharacter(
  28589. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28590. {
  28591. front: {
  28592. height: math.unit(3.02, "meters"),
  28593. weight: math.unit(500, "kg"),
  28594. name: "Front",
  28595. image: {
  28596. source: "./media/characters/drena/front.svg",
  28597. extra: 282 / 243,
  28598. bottom: 8 / 290
  28599. }
  28600. },
  28601. side: {
  28602. height: math.unit(3.02, "meters"),
  28603. weight: math.unit(500, "kg"),
  28604. name: "Side",
  28605. image: {
  28606. source: "./media/characters/drena/side.svg",
  28607. extra: 280 / 245,
  28608. bottom: 10 / 290
  28609. }
  28610. },
  28611. back: {
  28612. height: math.unit(3.02, "meters"),
  28613. weight: math.unit(500, "kg"),
  28614. name: "Back",
  28615. image: {
  28616. source: "./media/characters/drena/back.svg",
  28617. extra: 278 / 243,
  28618. bottom: 2 / 280
  28619. }
  28620. },
  28621. foot: {
  28622. height: math.unit(0.75, "meters"),
  28623. name: "Foot",
  28624. image: {
  28625. source: "./media/characters/drena/foot.svg"
  28626. }
  28627. },
  28628. maw: {
  28629. height: math.unit(0.82, "meters"),
  28630. name: "Maw",
  28631. image: {
  28632. source: "./media/characters/drena/maw.svg"
  28633. }
  28634. },
  28635. rump: {
  28636. height: math.unit(0.93, "meters"),
  28637. name: "Rump",
  28638. image: {
  28639. source: "./media/characters/drena/rump.svg"
  28640. }
  28641. },
  28642. },
  28643. [
  28644. {
  28645. name: "Normal",
  28646. height: math.unit(3.02, "meters"),
  28647. default: true
  28648. },
  28649. ]
  28650. ))
  28651. characterMakers.push(() => makeCharacter(
  28652. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28653. {
  28654. front: {
  28655. height: math.unit(6 + 4 / 12, "feet"),
  28656. weight: math.unit(250, "lb"),
  28657. name: "Front",
  28658. image: {
  28659. source: "./media/characters/remmyzilla/front.svg",
  28660. extra: 4033 / 3588,
  28661. bottom: 123 / 4156
  28662. }
  28663. },
  28664. back: {
  28665. height: math.unit(6 + 4 / 12, "feet"),
  28666. weight: math.unit(250, "lb"),
  28667. name: "Back",
  28668. image: {
  28669. source: "./media/characters/remmyzilla/back.svg",
  28670. extra: 2687 / 2555,
  28671. bottom: 48 / 2735
  28672. }
  28673. },
  28674. paw: {
  28675. height: math.unit(1.73, "feet"),
  28676. name: "Paw",
  28677. image: {
  28678. source: "./media/characters/remmyzilla/paw.svg"
  28679. }
  28680. },
  28681. maw: {
  28682. height: math.unit(1.73, "feet"),
  28683. name: "Maw",
  28684. image: {
  28685. source: "./media/characters/remmyzilla/maw.svg"
  28686. }
  28687. },
  28688. },
  28689. [
  28690. {
  28691. name: "Normal",
  28692. height: math.unit(6 + 4 / 12, "feet")
  28693. },
  28694. {
  28695. name: "Minimacro",
  28696. height: math.unit(12 + 8 / 12, "feet")
  28697. },
  28698. {
  28699. name: "Normal",
  28700. height: math.unit(640, "feet"),
  28701. default: true
  28702. },
  28703. {
  28704. name: "Megamacro",
  28705. height: math.unit(6400, "feet")
  28706. },
  28707. {
  28708. name: "Gigamacro",
  28709. height: math.unit(64000, "miles")
  28710. },
  28711. ]
  28712. ))
  28713. characterMakers.push(() => makeCharacter(
  28714. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28715. {
  28716. front: {
  28717. height: math.unit(2.5, "meters"),
  28718. weight: math.unit(300, "lb"),
  28719. name: "Front",
  28720. image: {
  28721. source: "./media/characters/lawrence/front.svg",
  28722. extra: 357 / 335,
  28723. bottom: 30 / 387
  28724. }
  28725. },
  28726. back: {
  28727. height: math.unit(2.5, "meters"),
  28728. weight: math.unit(300, "lb"),
  28729. name: "Back",
  28730. image: {
  28731. source: "./media/characters/lawrence/back.svg",
  28732. extra: 357 / 338,
  28733. bottom: 16 / 373
  28734. }
  28735. },
  28736. head: {
  28737. height: math.unit(0.9, "meter"),
  28738. name: "Head",
  28739. image: {
  28740. source: "./media/characters/lawrence/head.svg"
  28741. }
  28742. },
  28743. maw: {
  28744. height: math.unit(0.7, "meter"),
  28745. name: "Maw",
  28746. image: {
  28747. source: "./media/characters/lawrence/maw.svg"
  28748. }
  28749. },
  28750. footBottom: {
  28751. height: math.unit(0.5, "meter"),
  28752. name: "Foot (Bottom)",
  28753. image: {
  28754. source: "./media/characters/lawrence/foot-bottom.svg"
  28755. }
  28756. },
  28757. footTop: {
  28758. height: math.unit(0.5, "meter"),
  28759. name: "Foot (Top)",
  28760. image: {
  28761. source: "./media/characters/lawrence/foot-top.svg"
  28762. }
  28763. },
  28764. },
  28765. [
  28766. {
  28767. name: "Normal",
  28768. height: math.unit(2.5, "meters"),
  28769. default: true
  28770. },
  28771. {
  28772. name: "Macro",
  28773. height: math.unit(95, "meters")
  28774. },
  28775. {
  28776. name: "Megamacro",
  28777. height: math.unit(150, "km")
  28778. },
  28779. ]
  28780. ))
  28781. characterMakers.push(() => makeCharacter(
  28782. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28783. {
  28784. front: {
  28785. height: math.unit(4.2, "meters"),
  28786. name: "Front",
  28787. image: {
  28788. source: "./media/characters/sydney/front.svg",
  28789. extra: 1323 / 1277,
  28790. bottom: 111 / 1434
  28791. }
  28792. },
  28793. },
  28794. [
  28795. {
  28796. name: "Normal",
  28797. height: math.unit(4.2, "meters"),
  28798. default: true
  28799. },
  28800. ]
  28801. ))
  28802. characterMakers.push(() => makeCharacter(
  28803. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28804. {
  28805. back: {
  28806. height: math.unit(201, "feet"),
  28807. name: "Back",
  28808. image: {
  28809. source: "./media/characters/jessica/back.svg",
  28810. extra: 273 / 259,
  28811. bottom: 7 / 280
  28812. }
  28813. },
  28814. },
  28815. [
  28816. {
  28817. name: "Normal",
  28818. height: math.unit(201, "feet"),
  28819. default: true
  28820. },
  28821. {
  28822. name: "Megamacro",
  28823. height: math.unit(8, "miles")
  28824. },
  28825. ]
  28826. ))
  28827. characterMakers.push(() => makeCharacter(
  28828. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28829. {
  28830. side: {
  28831. height: math.unit(320, "cm"),
  28832. name: "Side",
  28833. image: {
  28834. source: "./media/characters/victoria/side.svg",
  28835. extra: 778 / 346,
  28836. bottom: 56 / 834
  28837. }
  28838. },
  28839. maw: {
  28840. height: math.unit(5.9, "feet"),
  28841. name: "Maw",
  28842. image: {
  28843. source: "./media/characters/victoria/maw.svg"
  28844. }
  28845. },
  28846. },
  28847. [
  28848. {
  28849. name: "Normal",
  28850. height: math.unit(320, "cm"),
  28851. default: true
  28852. },
  28853. ]
  28854. ))
  28855. characterMakers.push(() => makeCharacter(
  28856. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28857. {
  28858. front: {
  28859. height: math.unit(5 + 6 / 12, "feet"),
  28860. name: "Front",
  28861. image: {
  28862. source: "./media/characters/cat/front.svg",
  28863. extra: 1449/1295,
  28864. bottom: 34/1483
  28865. }
  28866. },
  28867. back: {
  28868. height: math.unit(5 + 6 / 12, "feet"),
  28869. name: "Back",
  28870. image: {
  28871. source: "./media/characters/cat/back.svg",
  28872. extra: 1466/1301,
  28873. bottom: 19/1485
  28874. }
  28875. },
  28876. taur: {
  28877. height: math.unit(7, "feet"),
  28878. name: "Taur",
  28879. image: {
  28880. source: "./media/characters/cat/taur.svg",
  28881. extra: 1389/1233,
  28882. bottom: 83/1472
  28883. }
  28884. },
  28885. lucarioFront: {
  28886. height: math.unit(4, "feet"),
  28887. name: "Lucario (Front)",
  28888. image: {
  28889. source: "./media/characters/cat/lucario-front.svg",
  28890. extra: 1149/1019,
  28891. bottom: 84/1233
  28892. }
  28893. },
  28894. lucarioBack: {
  28895. height: math.unit(4, "feet"),
  28896. name: "Lucario (Back)",
  28897. image: {
  28898. source: "./media/characters/cat/lucario-back.svg",
  28899. extra: 1190/1059,
  28900. bottom: 33/1223
  28901. }
  28902. },
  28903. megaLucario: {
  28904. height: math.unit(4, "feet"),
  28905. name: "Mega Lucario",
  28906. image: {
  28907. source: "./media/characters/cat/mega-lucario.svg",
  28908. extra: 1515 / 1319,
  28909. bottom: 63 / 1578
  28910. }
  28911. },
  28912. nickit: {
  28913. height: math.unit(2, "feet"),
  28914. name: "Nickit",
  28915. image: {
  28916. source: "./media/characters/cat/nickit.svg",
  28917. extra: 1980 / 1585,
  28918. bottom: 102 / 2082
  28919. }
  28920. },
  28921. lopunnyFront: {
  28922. height: math.unit(5, "feet"),
  28923. name: "Lopunny (Front)",
  28924. image: {
  28925. source: "./media/characters/cat/lopunny-front.svg",
  28926. extra: 1782 / 1469,
  28927. bottom: 38 / 1820
  28928. }
  28929. },
  28930. lopunnyBack: {
  28931. height: math.unit(5, "feet"),
  28932. name: "Lopunny (Back)",
  28933. image: {
  28934. source: "./media/characters/cat/lopunny-back.svg",
  28935. extra: 1660 / 1490,
  28936. bottom: 25 / 1685
  28937. }
  28938. },
  28939. },
  28940. [
  28941. {
  28942. name: "Really small",
  28943. height: math.unit(1, "nm")
  28944. },
  28945. {
  28946. name: "Micro",
  28947. height: math.unit(5, "inches")
  28948. },
  28949. {
  28950. name: "Normal",
  28951. height: math.unit(5 + 6 / 12, "feet"),
  28952. default: true
  28953. },
  28954. {
  28955. name: "Macro",
  28956. height: math.unit(50, "feet")
  28957. },
  28958. {
  28959. name: "Macro+",
  28960. height: math.unit(150, "feet")
  28961. },
  28962. {
  28963. name: "Megamacro",
  28964. height: math.unit(100, "miles")
  28965. },
  28966. ]
  28967. ))
  28968. characterMakers.push(() => makeCharacter(
  28969. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28970. {
  28971. front: {
  28972. height: math.unit(63.4, "meters"),
  28973. weight: math.unit(3.28349e+6, "kilograms"),
  28974. name: "Front",
  28975. image: {
  28976. source: "./media/characters/kirina-violet/front.svg",
  28977. extra: 2812 / 2725,
  28978. bottom: 0 / 2812
  28979. }
  28980. },
  28981. back: {
  28982. height: math.unit(63.4, "meters"),
  28983. weight: math.unit(3.28349e+6, "kilograms"),
  28984. name: "Back",
  28985. image: {
  28986. source: "./media/characters/kirina-violet/back.svg",
  28987. extra: 2812 / 2725,
  28988. bottom: 0 / 2812
  28989. }
  28990. },
  28991. mouth: {
  28992. height: math.unit(4.35, "meters"),
  28993. name: "Mouth",
  28994. image: {
  28995. source: "./media/characters/kirina-violet/mouth.svg"
  28996. }
  28997. },
  28998. paw: {
  28999. height: math.unit(5.6, "meters"),
  29000. name: "Paw",
  29001. image: {
  29002. source: "./media/characters/kirina-violet/paw.svg"
  29003. }
  29004. },
  29005. tail: {
  29006. height: math.unit(18, "meters"),
  29007. name: "Tail",
  29008. image: {
  29009. source: "./media/characters/kirina-violet/tail.svg"
  29010. }
  29011. },
  29012. },
  29013. [
  29014. {
  29015. name: "Macro",
  29016. height: math.unit(63.4, "meters"),
  29017. default: true
  29018. },
  29019. ]
  29020. ))
  29021. characterMakers.push(() => makeCharacter(
  29022. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29023. {
  29024. front: {
  29025. height: math.unit(75, "feet"),
  29026. name: "Front",
  29027. image: {
  29028. source: "./media/characters/cat-gigachu/front.svg",
  29029. extra: 1239/1027,
  29030. bottom: 32/1271
  29031. }
  29032. },
  29033. back: {
  29034. height: math.unit(75, "feet"),
  29035. name: "Back",
  29036. image: {
  29037. source: "./media/characters/cat-gigachu/back.svg",
  29038. extra: 1229/1030,
  29039. bottom: 9/1238
  29040. }
  29041. },
  29042. },
  29043. [
  29044. {
  29045. name: "Dynamax",
  29046. height: math.unit(75, "feet"),
  29047. default: true
  29048. },
  29049. ]
  29050. ))
  29051. characterMakers.push(() => makeCharacter(
  29052. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29053. {
  29054. front: {
  29055. height: math.unit(6, "feet"),
  29056. weight: math.unit(150, "lb"),
  29057. name: "Front",
  29058. image: {
  29059. source: "./media/characters/sfaiyan/front.svg",
  29060. extra: 999 / 978,
  29061. bottom: 5 / 1004
  29062. }
  29063. },
  29064. },
  29065. [
  29066. {
  29067. name: "Normal",
  29068. height: math.unit(1.82, "meters")
  29069. },
  29070. {
  29071. name: "Giant",
  29072. height: math.unit(2.27, "km"),
  29073. default: true
  29074. },
  29075. ]
  29076. ))
  29077. characterMakers.push(() => makeCharacter(
  29078. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29079. {
  29080. front: {
  29081. height: math.unit(179, "cm"),
  29082. weight: math.unit(100, "kg"),
  29083. name: "Front",
  29084. image: {
  29085. source: "./media/characters/raunehkeli/front.svg",
  29086. extra: 1934 / 1926,
  29087. bottom: 0 / 1934
  29088. }
  29089. },
  29090. },
  29091. [
  29092. {
  29093. name: "Normal",
  29094. height: math.unit(179, "cm")
  29095. },
  29096. {
  29097. name: "Maximum",
  29098. height: math.unit(575, "meters"),
  29099. default: true
  29100. },
  29101. ]
  29102. ))
  29103. characterMakers.push(() => makeCharacter(
  29104. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29105. {
  29106. front: {
  29107. height: math.unit(6, "feet"),
  29108. weight: math.unit(150, "lb"),
  29109. name: "Front",
  29110. image: {
  29111. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29112. extra: 2625 / 2518,
  29113. bottom: 60 / 2685
  29114. }
  29115. },
  29116. },
  29117. [
  29118. {
  29119. name: "Normal",
  29120. height: math.unit(6 + 2 / 12, "feet")
  29121. },
  29122. {
  29123. name: "Macro",
  29124. height: math.unit(1180, "feet"),
  29125. default: true
  29126. },
  29127. ]
  29128. ))
  29129. characterMakers.push(() => makeCharacter(
  29130. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29131. {
  29132. front: {
  29133. height: math.unit(5 + 6 / 12, "feet"),
  29134. weight: math.unit(108, "lb"),
  29135. name: "Front",
  29136. image: {
  29137. source: "./media/characters/lilith-zott/front.svg",
  29138. extra: 2510 / 2238,
  29139. bottom: 100 / 2610
  29140. }
  29141. },
  29142. frontDressed: {
  29143. height: math.unit(5 + 6 / 12, "feet"),
  29144. weight: math.unit(108, "lb"),
  29145. name: "Front (Dressed)",
  29146. image: {
  29147. source: "./media/characters/lilith-zott/front-dressed.svg",
  29148. extra: 2510 / 2238,
  29149. bottom: 100 / 2610
  29150. }
  29151. },
  29152. },
  29153. [
  29154. {
  29155. name: "Normal",
  29156. height: math.unit(5 + 6 / 12, "feet")
  29157. },
  29158. {
  29159. name: "Macro",
  29160. height: math.unit(1030, "feet"),
  29161. default: true
  29162. },
  29163. ]
  29164. ))
  29165. characterMakers.push(() => makeCharacter(
  29166. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29167. {
  29168. front: {
  29169. height: math.unit(6, "feet"),
  29170. weight: math.unit(150, "lb"),
  29171. name: "Front",
  29172. image: {
  29173. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29174. extra: 2567 / 2435,
  29175. bottom: 39 / 2606
  29176. }
  29177. },
  29178. frontSuper: {
  29179. height: math.unit(6, "feet"),
  29180. name: "Front (Super)",
  29181. image: {
  29182. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29183. extra: 2567 / 2435,
  29184. bottom: 39 / 2606
  29185. }
  29186. },
  29187. },
  29188. [
  29189. {
  29190. name: "Normal",
  29191. height: math.unit(5 + 10 / 12, "feet")
  29192. },
  29193. {
  29194. name: "Macro",
  29195. height: math.unit(1100, "feet"),
  29196. default: true
  29197. },
  29198. ]
  29199. ))
  29200. characterMakers.push(() => makeCharacter(
  29201. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29202. {
  29203. front: {
  29204. height: math.unit(100, "miles"),
  29205. name: "Front",
  29206. image: {
  29207. source: "./media/characters/sona/front.svg",
  29208. extra: 2433 / 2201,
  29209. bottom: 53 / 2486
  29210. }
  29211. },
  29212. foot: {
  29213. height: math.unit(16.1, "miles"),
  29214. name: "Foot",
  29215. image: {
  29216. source: "./media/characters/sona/foot.svg"
  29217. }
  29218. },
  29219. },
  29220. [
  29221. {
  29222. name: "Macro",
  29223. height: math.unit(100, "miles"),
  29224. default: true
  29225. },
  29226. ]
  29227. ))
  29228. characterMakers.push(() => makeCharacter(
  29229. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29230. {
  29231. front: {
  29232. height: math.unit(6, "feet"),
  29233. weight: math.unit(150, "lb"),
  29234. name: "Front",
  29235. image: {
  29236. source: "./media/characters/bailey/front.svg",
  29237. extra: 1778 / 1724,
  29238. bottom: 30 / 1808
  29239. }
  29240. },
  29241. },
  29242. [
  29243. {
  29244. name: "Micro",
  29245. height: math.unit(4, "inches")
  29246. },
  29247. {
  29248. name: "Normal",
  29249. height: math.unit(5 + 5 / 12, "feet"),
  29250. default: true
  29251. },
  29252. {
  29253. name: "Macro",
  29254. height: math.unit(250, "feet")
  29255. },
  29256. {
  29257. name: "Megamacro",
  29258. height: math.unit(100, "miles")
  29259. },
  29260. ]
  29261. ))
  29262. characterMakers.push(() => makeCharacter(
  29263. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29264. {
  29265. front: {
  29266. height: math.unit(5 + 2 / 12, "feet"),
  29267. weight: math.unit(120, "lb"),
  29268. name: "Front",
  29269. image: {
  29270. source: "./media/characters/snaps/front.svg",
  29271. extra: 2370 / 2177,
  29272. bottom: 48 / 2418
  29273. }
  29274. },
  29275. back: {
  29276. height: math.unit(5 + 2 / 12, "feet"),
  29277. weight: math.unit(120, "lb"),
  29278. name: "Back",
  29279. image: {
  29280. source: "./media/characters/snaps/back.svg",
  29281. extra: 2408 / 2258,
  29282. bottom: 15 / 2423
  29283. }
  29284. },
  29285. },
  29286. [
  29287. {
  29288. name: "Micro",
  29289. height: math.unit(9, "inches")
  29290. },
  29291. {
  29292. name: "Normal",
  29293. height: math.unit(5 + 2 / 12, "feet"),
  29294. default: true
  29295. },
  29296. {
  29297. name: "Mini Macro",
  29298. height: math.unit(10, "feet")
  29299. },
  29300. ]
  29301. ))
  29302. characterMakers.push(() => makeCharacter(
  29303. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29304. {
  29305. front: {
  29306. height: math.unit(1.8, "meters"),
  29307. weight: math.unit(85, "kg"),
  29308. name: "Front",
  29309. image: {
  29310. source: "./media/characters/azteck/front.svg",
  29311. extra: 2815 / 2625,
  29312. bottom: 89 / 2904
  29313. }
  29314. },
  29315. back: {
  29316. height: math.unit(1.8, "meters"),
  29317. weight: math.unit(85, "kg"),
  29318. name: "Back",
  29319. image: {
  29320. source: "./media/characters/azteck/back.svg",
  29321. extra: 2856 / 2648,
  29322. bottom: 85 / 2941
  29323. }
  29324. },
  29325. frontDressed: {
  29326. height: math.unit(1.8, "meters"),
  29327. weight: math.unit(85, "kg"),
  29328. name: "Front (Dressed)",
  29329. image: {
  29330. source: "./media/characters/azteck/front-dressed.svg",
  29331. extra: 2147 / 2003,
  29332. bottom: 68 / 2215
  29333. }
  29334. },
  29335. head: {
  29336. height: math.unit(0.47, "meters"),
  29337. weight: math.unit(85, "kg"),
  29338. name: "Head",
  29339. image: {
  29340. source: "./media/characters/azteck/head.svg"
  29341. }
  29342. },
  29343. },
  29344. [
  29345. {
  29346. name: "Bite sized",
  29347. height: math.unit(16, "cm")
  29348. },
  29349. {
  29350. name: "Normal",
  29351. height: math.unit(1.8, "meters"),
  29352. default: true
  29353. },
  29354. ]
  29355. ))
  29356. characterMakers.push(() => makeCharacter(
  29357. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29358. {
  29359. front: {
  29360. height: math.unit(6, "feet"),
  29361. weight: math.unit(150, "lb"),
  29362. name: "Front",
  29363. image: {
  29364. source: "./media/characters/pidge/front.svg",
  29365. extra: 620 / 588,
  29366. bottom: 9 / 629
  29367. }
  29368. },
  29369. back: {
  29370. height: math.unit(6, "feet"),
  29371. weight: math.unit(150, "lb"),
  29372. name: "Back",
  29373. image: {
  29374. source: "./media/characters/pidge/back.svg",
  29375. extra: 620 / 588,
  29376. bottom: 9 / 629
  29377. }
  29378. },
  29379. },
  29380. [
  29381. {
  29382. name: "Macro",
  29383. height: math.unit(1, "mile"),
  29384. default: true
  29385. },
  29386. ]
  29387. ))
  29388. characterMakers.push(() => makeCharacter(
  29389. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29390. {
  29391. front: {
  29392. height: math.unit(6, "feet"),
  29393. weight: math.unit(150, "lb"),
  29394. name: "Front",
  29395. image: {
  29396. source: "./media/characters/en/front.svg",
  29397. extra: 1697 / 1563,
  29398. bottom: 103 / 1800
  29399. }
  29400. },
  29401. back: {
  29402. height: math.unit(6, "feet"),
  29403. weight: math.unit(150, "lb"),
  29404. name: "Back",
  29405. image: {
  29406. source: "./media/characters/en/back.svg",
  29407. extra: 1700 / 1570,
  29408. bottom: 51 / 1751
  29409. }
  29410. },
  29411. frontDressed: {
  29412. height: math.unit(6, "feet"),
  29413. weight: math.unit(150, "lb"),
  29414. name: "Front (Dressed)",
  29415. image: {
  29416. source: "./media/characters/en/front-dressed.svg",
  29417. extra: 1697 / 1563,
  29418. bottom: 103 / 1800
  29419. }
  29420. },
  29421. backDressed: {
  29422. height: math.unit(6, "feet"),
  29423. weight: math.unit(150, "lb"),
  29424. name: "Back (Dressed)",
  29425. image: {
  29426. source: "./media/characters/en/back-dressed.svg",
  29427. extra: 1700 / 1570,
  29428. bottom: 51 / 1751
  29429. }
  29430. },
  29431. },
  29432. [
  29433. {
  29434. name: "Macro",
  29435. height: math.unit(210, "feet"),
  29436. default: true
  29437. },
  29438. ]
  29439. ))
  29440. characterMakers.push(() => makeCharacter(
  29441. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29442. {
  29443. front: {
  29444. height: math.unit(6, "feet"),
  29445. weight: math.unit(150, "lb"),
  29446. name: "Front",
  29447. image: {
  29448. source: "./media/characters/haze-orris/front.svg",
  29449. extra: 3975 / 3525,
  29450. bottom: 137 / 4112
  29451. }
  29452. },
  29453. },
  29454. [
  29455. {
  29456. name: "Micro",
  29457. height: math.unit(150, "mm"),
  29458. default: true
  29459. },
  29460. ]
  29461. ))
  29462. characterMakers.push(() => makeCharacter(
  29463. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29464. {
  29465. front: {
  29466. height: math.unit(6, "feet"),
  29467. weight: math.unit(150, "lb"),
  29468. name: "Front",
  29469. image: {
  29470. source: "./media/characters/casselene-yaro/front.svg",
  29471. extra: 4721 / 4541,
  29472. bottom: 82 / 4803
  29473. }
  29474. },
  29475. back: {
  29476. height: math.unit(6, "feet"),
  29477. weight: math.unit(150, "lb"),
  29478. name: "Back",
  29479. image: {
  29480. source: "./media/characters/casselene-yaro/back.svg",
  29481. extra: 4569 / 4377,
  29482. bottom: 69 / 4638
  29483. }
  29484. },
  29485. frontDressed: {
  29486. height: math.unit(6, "feet"),
  29487. weight: math.unit(150, "lb"),
  29488. name: "Front-dressed",
  29489. image: {
  29490. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29491. extra: 4721 / 4541,
  29492. bottom: 82 / 4803
  29493. }
  29494. },
  29495. },
  29496. [
  29497. {
  29498. name: "Macro",
  29499. height: math.unit(190, "feet"),
  29500. default: true
  29501. },
  29502. ]
  29503. ))
  29504. characterMakers.push(() => makeCharacter(
  29505. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29506. {
  29507. front: {
  29508. height: math.unit(6, "feet"),
  29509. weight: math.unit(150, "lb"),
  29510. name: "Front",
  29511. image: {
  29512. source: "./media/characters/myra-rue-delore/front.svg",
  29513. extra: 1340 / 1308,
  29514. bottom: 67 / 1407
  29515. }
  29516. },
  29517. back: {
  29518. height: math.unit(6, "feet"),
  29519. weight: math.unit(150, "lb"),
  29520. name: "Back",
  29521. image: {
  29522. source: "./media/characters/myra-rue-delore/back.svg",
  29523. extra: 1341 / 1310,
  29524. bottom: 40 / 1381
  29525. }
  29526. },
  29527. frontDressed: {
  29528. height: math.unit(6, "feet"),
  29529. weight: math.unit(150, "lb"),
  29530. name: "Front (Dressed)",
  29531. image: {
  29532. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29533. extra: 1340 / 1308,
  29534. bottom: 67 / 1407
  29535. }
  29536. },
  29537. },
  29538. [
  29539. {
  29540. name: "Macro",
  29541. height: math.unit(150, "feet"),
  29542. default: true
  29543. },
  29544. ]
  29545. ))
  29546. characterMakers.push(() => makeCharacter(
  29547. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29548. {
  29549. front: {
  29550. height: math.unit(10, "feet"),
  29551. weight: math.unit(15015, "lb"),
  29552. name: "Front",
  29553. image: {
  29554. source: "./media/characters/fem!plat/front.svg",
  29555. extra: 2799 / 2604,
  29556. bottom: 149 / 2948
  29557. }
  29558. },
  29559. },
  29560. [
  29561. {
  29562. name: "Normal",
  29563. height: math.unit(10, "feet"),
  29564. default: true
  29565. },
  29566. {
  29567. name: "Macro",
  29568. height: math.unit(100, "feet")
  29569. },
  29570. {
  29571. name: "Megamacro",
  29572. height: math.unit(1000, "feet")
  29573. },
  29574. ]
  29575. ))
  29576. characterMakers.push(() => makeCharacter(
  29577. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29578. {
  29579. front: {
  29580. height: math.unit(15 + 5 / 12, "feet"),
  29581. weight: math.unit(4600, "lb"),
  29582. name: "Front",
  29583. image: {
  29584. source: "./media/characters/neapolitan-ananassa/front.svg",
  29585. extra: 2903 / 2736,
  29586. bottom: 0 / 2903
  29587. }
  29588. },
  29589. side: {
  29590. height: math.unit(15 + 5 / 12, "feet"),
  29591. weight: math.unit(4600, "lb"),
  29592. name: "Side",
  29593. image: {
  29594. source: "./media/characters/neapolitan-ananassa/side.svg",
  29595. extra: 2925 / 2719,
  29596. bottom: 0 / 2925
  29597. }
  29598. },
  29599. back: {
  29600. height: math.unit(15 + 5 / 12, "feet"),
  29601. weight: math.unit(4600, "lb"),
  29602. name: "Back",
  29603. image: {
  29604. source: "./media/characters/neapolitan-ananassa/back.svg",
  29605. extra: 2903 / 2736,
  29606. bottom: 0 / 2903
  29607. }
  29608. },
  29609. },
  29610. [
  29611. {
  29612. name: "Normal",
  29613. height: math.unit(15 + 5 / 12, "feet"),
  29614. default: true
  29615. },
  29616. {
  29617. name: "Post-Millenium",
  29618. height: math.unit(35 + 5 / 12, "feet")
  29619. },
  29620. {
  29621. name: "Post-Era",
  29622. height: math.unit(450 + 5 / 12, "feet")
  29623. },
  29624. ]
  29625. ))
  29626. characterMakers.push(() => makeCharacter(
  29627. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29628. {
  29629. front: {
  29630. height: math.unit(300, "meters"),
  29631. weight: math.unit(125000, "tonnes"),
  29632. name: "Front",
  29633. image: {
  29634. source: "./media/characters/pazuzu/front.svg",
  29635. extra: 877 / 794,
  29636. bottom: 47 / 924
  29637. }
  29638. },
  29639. },
  29640. [
  29641. {
  29642. name: "Macro",
  29643. height: math.unit(300, "meters"),
  29644. default: true
  29645. },
  29646. ]
  29647. ))
  29648. characterMakers.push(() => makeCharacter(
  29649. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29650. {
  29651. side: {
  29652. height: math.unit(10 + 7 / 12, "feet"),
  29653. weight: math.unit(2.5, "tons"),
  29654. name: "Side",
  29655. image: {
  29656. source: "./media/characters/aasha/side.svg",
  29657. extra: 1345 / 1245,
  29658. bottom: 111 / 1456
  29659. }
  29660. },
  29661. back: {
  29662. height: math.unit(10 + 7 / 12, "feet"),
  29663. weight: math.unit(2.5, "tons"),
  29664. name: "Back",
  29665. image: {
  29666. source: "./media/characters/aasha/back.svg",
  29667. extra: 1133 / 1057,
  29668. bottom: 257 / 1390
  29669. }
  29670. },
  29671. },
  29672. [
  29673. {
  29674. name: "Normal",
  29675. height: math.unit(10 + 7 / 12, "feet"),
  29676. default: true
  29677. },
  29678. ]
  29679. ))
  29680. characterMakers.push(() => makeCharacter(
  29681. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29682. {
  29683. front: {
  29684. height: math.unit(6 + 3 / 12, "feet"),
  29685. name: "Front",
  29686. image: {
  29687. source: "./media/characters/nevan/front.svg",
  29688. extra: 704 / 704,
  29689. bottom: 28 / 732
  29690. }
  29691. },
  29692. back: {
  29693. height: math.unit(6 + 3 / 12, "feet"),
  29694. name: "Back",
  29695. image: {
  29696. source: "./media/characters/nevan/back.svg",
  29697. extra: 714 / 714,
  29698. bottom: 21 / 735
  29699. }
  29700. },
  29701. frontFlaccid: {
  29702. height: math.unit(6 + 3 / 12, "feet"),
  29703. name: "Front (Flaccid)",
  29704. image: {
  29705. source: "./media/characters/nevan/front-flaccid.svg",
  29706. extra: 704 / 704,
  29707. bottom: 28 / 732
  29708. }
  29709. },
  29710. frontErect: {
  29711. height: math.unit(6 + 3 / 12, "feet"),
  29712. name: "Front (Erect)",
  29713. image: {
  29714. source: "./media/characters/nevan/front-erect.svg",
  29715. extra: 704 / 704,
  29716. bottom: 28 / 732
  29717. }
  29718. },
  29719. backFlaccid: {
  29720. height: math.unit(6 + 3 / 12, "feet"),
  29721. name: "Back (Flaccid)",
  29722. image: {
  29723. source: "./media/characters/nevan/back-flaccid.svg",
  29724. extra: 714 / 714,
  29725. bottom: 21 / 735
  29726. }
  29727. },
  29728. },
  29729. [
  29730. {
  29731. name: "Normal",
  29732. height: math.unit(6 + 3 / 12, "feet"),
  29733. default: true
  29734. },
  29735. ]
  29736. ))
  29737. characterMakers.push(() => makeCharacter(
  29738. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29739. {
  29740. front: {
  29741. height: math.unit(4, "feet"),
  29742. name: "Front",
  29743. image: {
  29744. source: "./media/characters/arhan/front.svg",
  29745. extra: 3368 / 3133,
  29746. bottom: 0 / 3368
  29747. }
  29748. },
  29749. side: {
  29750. height: math.unit(4, "feet"),
  29751. name: "Side",
  29752. image: {
  29753. source: "./media/characters/arhan/side.svg",
  29754. extra: 3347 / 3105,
  29755. bottom: 0 / 3347
  29756. }
  29757. },
  29758. tongue: {
  29759. height: math.unit(1.42, "feet"),
  29760. name: "Tongue",
  29761. image: {
  29762. source: "./media/characters/arhan/tongue.svg"
  29763. }
  29764. },
  29765. head: {
  29766. height: math.unit(0.85, "feet"),
  29767. name: "Head",
  29768. image: {
  29769. source: "./media/characters/arhan/head.svg"
  29770. }
  29771. },
  29772. },
  29773. [
  29774. {
  29775. name: "Normal",
  29776. height: math.unit(4, "feet"),
  29777. default: true
  29778. },
  29779. ]
  29780. ))
  29781. characterMakers.push(() => makeCharacter(
  29782. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29783. {
  29784. front: {
  29785. height: math.unit(5 + 7.5 / 12, "feet"),
  29786. weight: math.unit(120, "lb"),
  29787. name: "Front",
  29788. image: {
  29789. source: "./media/characters/digi-duncan/front.svg",
  29790. extra: 330 / 326,
  29791. bottom: 16 / 346
  29792. }
  29793. },
  29794. side: {
  29795. height: math.unit(5 + 7.5 / 12, "feet"),
  29796. weight: math.unit(120, "lb"),
  29797. name: "Side",
  29798. image: {
  29799. source: "./media/characters/digi-duncan/side.svg",
  29800. extra: 341 / 337,
  29801. bottom: 1 / 342
  29802. }
  29803. },
  29804. back: {
  29805. height: math.unit(5 + 7.5 / 12, "feet"),
  29806. weight: math.unit(120, "lb"),
  29807. name: "Back",
  29808. image: {
  29809. source: "./media/characters/digi-duncan/back.svg",
  29810. extra: 330 / 326,
  29811. bottom: 12 / 342
  29812. }
  29813. },
  29814. },
  29815. [
  29816. {
  29817. name: "Speck",
  29818. height: math.unit(0.25, "mm")
  29819. },
  29820. {
  29821. name: "Micro",
  29822. height: math.unit(5, "mm")
  29823. },
  29824. {
  29825. name: "Tiny",
  29826. height: math.unit(0.5, "inches"),
  29827. default: true
  29828. },
  29829. {
  29830. name: "Human",
  29831. height: math.unit(5 + 7.5 / 12, "feet")
  29832. },
  29833. {
  29834. name: "Minigiant",
  29835. height: math.unit(8 + 5.25, "feet")
  29836. },
  29837. {
  29838. name: "Giant",
  29839. height: math.unit(2000, "feet")
  29840. },
  29841. {
  29842. name: "Mega",
  29843. height: math.unit(371.1, "miles")
  29844. },
  29845. ]
  29846. ))
  29847. characterMakers.push(() => makeCharacter(
  29848. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29849. {
  29850. front: {
  29851. height: math.unit(2, "meters"),
  29852. weight: math.unit(350, "kg"),
  29853. name: "Front",
  29854. image: {
  29855. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29856. extra: 898 / 838,
  29857. bottom: 9 / 907
  29858. }
  29859. },
  29860. },
  29861. [
  29862. {
  29863. name: "Micro",
  29864. height: math.unit(8, "meters")
  29865. },
  29866. {
  29867. name: "Normal",
  29868. height: math.unit(50, "meters"),
  29869. default: true
  29870. },
  29871. {
  29872. name: "Macro",
  29873. height: math.unit(500, "meters")
  29874. },
  29875. ]
  29876. ))
  29877. characterMakers.push(() => makeCharacter(
  29878. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29879. {
  29880. front: {
  29881. height: math.unit(6 + 6 / 12, "feet"),
  29882. name: "Front",
  29883. image: {
  29884. source: "./media/characters/khardesh/front.svg",
  29885. extra: 888 / 797,
  29886. bottom: 25 / 913
  29887. }
  29888. },
  29889. },
  29890. [
  29891. {
  29892. name: "Normal",
  29893. height: math.unit(6 + 6 / 12, "feet"),
  29894. default: true
  29895. },
  29896. {
  29897. name: "Normal+",
  29898. height: math.unit(4, "meters")
  29899. },
  29900. {
  29901. name: "Macro",
  29902. height: math.unit(50, "meters")
  29903. },
  29904. {
  29905. name: "Macro+",
  29906. height: math.unit(100, "meters")
  29907. },
  29908. {
  29909. name: "Megamacro",
  29910. height: math.unit(20, "km")
  29911. },
  29912. ]
  29913. ))
  29914. characterMakers.push(() => makeCharacter(
  29915. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29916. {
  29917. front: {
  29918. height: math.unit(6, "feet"),
  29919. weight: math.unit(150, "lb"),
  29920. name: "Front",
  29921. image: {
  29922. source: "./media/characters/kosho/front.svg",
  29923. extra: 1847 / 1847,
  29924. bottom: 86 / 1933
  29925. }
  29926. },
  29927. },
  29928. [
  29929. {
  29930. name: "Second-stage micro",
  29931. height: math.unit(0.5, "inches")
  29932. },
  29933. {
  29934. name: "First-stage micro",
  29935. height: math.unit(6, "inches")
  29936. },
  29937. {
  29938. name: "Normal",
  29939. height: math.unit(6, "feet"),
  29940. default: true
  29941. },
  29942. {
  29943. name: "First-stage macro",
  29944. height: math.unit(72, "feet")
  29945. },
  29946. {
  29947. name: "Second-stage macro",
  29948. height: math.unit(864, "feet")
  29949. },
  29950. ]
  29951. ))
  29952. characterMakers.push(() => makeCharacter(
  29953. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29954. {
  29955. normal: {
  29956. height: math.unit(4 + 6 / 12, "feet"),
  29957. name: "Normal",
  29958. image: {
  29959. source: "./media/characters/hydra/normal.svg",
  29960. extra: 2833 / 2634,
  29961. bottom: 68 / 2901
  29962. }
  29963. },
  29964. smol: {
  29965. height: math.unit(0.705, "inches"),
  29966. name: "Smol",
  29967. image: {
  29968. source: "./media/characters/hydra/smol.svg",
  29969. extra: 2715 / 2540,
  29970. bottom: 0 / 2715
  29971. }
  29972. },
  29973. },
  29974. [
  29975. {
  29976. name: "Normal",
  29977. height: math.unit(4 + 6 / 12, "feet"),
  29978. default: true
  29979. }
  29980. ]
  29981. ))
  29982. characterMakers.push(() => makeCharacter(
  29983. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29984. {
  29985. front: {
  29986. height: math.unit(0.6, "cm"),
  29987. name: "Front",
  29988. image: {
  29989. source: "./media/characters/daz/front.svg",
  29990. extra: 1682 / 1164,
  29991. bottom: 42 / 1724
  29992. }
  29993. },
  29994. },
  29995. [
  29996. {
  29997. name: "Normal",
  29998. height: math.unit(0.6, "cm"),
  29999. default: true
  30000. },
  30001. ]
  30002. ))
  30003. characterMakers.push(() => makeCharacter(
  30004. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30005. {
  30006. front: {
  30007. height: math.unit(6, "feet"),
  30008. weight: math.unit(235, "lb"),
  30009. name: "Front",
  30010. image: {
  30011. source: "./media/characters/theo-pangolin/front.svg",
  30012. extra: 1996 / 1969,
  30013. bottom: 115 / 2111
  30014. }
  30015. },
  30016. back: {
  30017. height: math.unit(6, "feet"),
  30018. weight: math.unit(235, "lb"),
  30019. name: "Back",
  30020. image: {
  30021. source: "./media/characters/theo-pangolin/back.svg",
  30022. extra: 1979 / 1979,
  30023. bottom: 40 / 2019
  30024. }
  30025. },
  30026. feral: {
  30027. height: math.unit(2, "feet"),
  30028. weight: math.unit(30, "lb"),
  30029. name: "Feral",
  30030. image: {
  30031. source: "./media/characters/theo-pangolin/feral.svg",
  30032. extra: 803 / 791,
  30033. bottom: 181 / 984
  30034. }
  30035. },
  30036. footFive: {
  30037. height: math.unit(1.43, "feet"),
  30038. name: "Foot (Five Toes)",
  30039. image: {
  30040. source: "./media/characters/theo-pangolin/foot-five.svg"
  30041. }
  30042. },
  30043. footFour: {
  30044. height: math.unit(1.43, "feet"),
  30045. name: "Foot (Four Toes)",
  30046. image: {
  30047. source: "./media/characters/theo-pangolin/foot-four.svg"
  30048. }
  30049. },
  30050. handFour: {
  30051. height: math.unit(0.81, "feet"),
  30052. name: "Hand (Four Fingers)",
  30053. image: {
  30054. source: "./media/characters/theo-pangolin/hand-four.svg"
  30055. }
  30056. },
  30057. handThree: {
  30058. height: math.unit(0.81, "feet"),
  30059. name: "Hand (Three Fingers)",
  30060. image: {
  30061. source: "./media/characters/theo-pangolin/hand-three.svg"
  30062. }
  30063. },
  30064. headFront: {
  30065. height: math.unit(1.37, "feet"),
  30066. name: "Head (Front)",
  30067. image: {
  30068. source: "./media/characters/theo-pangolin/head-front.svg"
  30069. }
  30070. },
  30071. headSide: {
  30072. height: math.unit(1.43, "feet"),
  30073. name: "Head (Side)",
  30074. image: {
  30075. source: "./media/characters/theo-pangolin/head-side.svg"
  30076. }
  30077. },
  30078. tongue: {
  30079. height: math.unit(2.29, "feet"),
  30080. name: "Tongue",
  30081. image: {
  30082. source: "./media/characters/theo-pangolin/tongue.svg"
  30083. }
  30084. },
  30085. },
  30086. [
  30087. {
  30088. name: "Normal",
  30089. height: math.unit(6, "feet")
  30090. },
  30091. {
  30092. name: "Macro",
  30093. height: math.unit(400, "feet"),
  30094. default: true
  30095. },
  30096. ]
  30097. ))
  30098. characterMakers.push(() => makeCharacter(
  30099. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30100. {
  30101. front: {
  30102. height: math.unit(6, "inches"),
  30103. weight: math.unit(0.036, "kg"),
  30104. name: "Front",
  30105. image: {
  30106. source: "./media/characters/renée/front.svg",
  30107. extra: 900 / 886,
  30108. bottom: 8 / 908
  30109. }
  30110. },
  30111. },
  30112. [
  30113. {
  30114. name: "Nano",
  30115. height: math.unit(1, "nm")
  30116. },
  30117. {
  30118. name: "Micro",
  30119. height: math.unit(1, "mm")
  30120. },
  30121. {
  30122. name: "Normal",
  30123. height: math.unit(6, "inches")
  30124. },
  30125. {
  30126. name: "Macro",
  30127. height: math.unit(2000, "feet"),
  30128. default: true
  30129. },
  30130. {
  30131. name: "Megamacro",
  30132. height: math.unit(2, "km")
  30133. },
  30134. {
  30135. name: "Gigamacro",
  30136. height: math.unit(2000, "km")
  30137. },
  30138. {
  30139. name: "Teramacro",
  30140. height: math.unit(250000, "km")
  30141. },
  30142. ]
  30143. ))
  30144. characterMakers.push(() => makeCharacter(
  30145. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30146. {
  30147. front: {
  30148. height: math.unit(4, "meters"),
  30149. weight: math.unit(150, "kg"),
  30150. name: "Front",
  30151. image: {
  30152. source: "./media/characters/caledvwlch/front.svg",
  30153. extra: 1760 / 1551,
  30154. bottom: 28 / 1788
  30155. }
  30156. },
  30157. side: {
  30158. height: math.unit(4, "meters"),
  30159. weight: math.unit(150, "kg"),
  30160. name: "Side",
  30161. image: {
  30162. source: "./media/characters/caledvwlch/side.svg",
  30163. extra: 1605 / 1536,
  30164. bottom: 31 / 1636
  30165. }
  30166. },
  30167. back: {
  30168. height: math.unit(4, "meters"),
  30169. weight: math.unit(150, "kg"),
  30170. name: "Back",
  30171. image: {
  30172. source: "./media/characters/caledvwlch/back.svg",
  30173. extra: 1635 / 1565,
  30174. bottom: 27 / 1662
  30175. }
  30176. },
  30177. },
  30178. [
  30179. {
  30180. name: "\"Incognito\"",
  30181. height: math.unit(4, "meters")
  30182. },
  30183. {
  30184. name: "Small rampage",
  30185. height: math.unit(600, "meters")
  30186. },
  30187. {
  30188. name: "Mega",
  30189. height: math.unit(30, "km")
  30190. },
  30191. {
  30192. name: "Home-size",
  30193. height: math.unit(50, "km"),
  30194. default: true
  30195. },
  30196. {
  30197. name: "Giga",
  30198. height: math.unit(300, "km")
  30199. },
  30200. {
  30201. name: "Lounging",
  30202. height: math.unit(11000, "km")
  30203. },
  30204. {
  30205. name: "Planet snacking",
  30206. height: math.unit(2000000, "km")
  30207. },
  30208. ]
  30209. ))
  30210. characterMakers.push(() => makeCharacter(
  30211. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30212. {
  30213. front: {
  30214. height: math.unit(6, "feet"),
  30215. weight: math.unit(215, "lb"),
  30216. name: "Front",
  30217. image: {
  30218. source: "./media/characters/sapphire-svell/front.svg",
  30219. extra: 495 / 455,
  30220. bottom: 20 / 515
  30221. }
  30222. },
  30223. back: {
  30224. height: math.unit(6, "feet"),
  30225. weight: math.unit(216, "lb"),
  30226. name: "Back",
  30227. image: {
  30228. source: "./media/characters/sapphire-svell/back.svg",
  30229. extra: 497 / 477,
  30230. bottom: 7 / 504
  30231. }
  30232. },
  30233. maw: {
  30234. height: math.unit(1.57, "feet"),
  30235. name: "Maw",
  30236. image: {
  30237. source: "./media/characters/sapphire-svell/maw.svg"
  30238. }
  30239. },
  30240. foot: {
  30241. height: math.unit(1.07, "feet"),
  30242. name: "Foot",
  30243. image: {
  30244. source: "./media/characters/sapphire-svell/foot.svg"
  30245. }
  30246. },
  30247. toering: {
  30248. height: math.unit(1.7, "inch"),
  30249. name: "Toering",
  30250. image: {
  30251. source: "./media/characters/sapphire-svell/toering.svg"
  30252. }
  30253. },
  30254. },
  30255. [
  30256. {
  30257. name: "Normal",
  30258. height: math.unit(300, "feet"),
  30259. default: true
  30260. },
  30261. {
  30262. name: "Augmented",
  30263. height: math.unit(1250, "feet")
  30264. },
  30265. {
  30266. name: "Unleashed",
  30267. height: math.unit(3000, "feet")
  30268. },
  30269. ]
  30270. ))
  30271. characterMakers.push(() => makeCharacter(
  30272. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30273. {
  30274. side: {
  30275. height: math.unit(2 + 3 / 12, "feet"),
  30276. weight: math.unit(110, "lb"),
  30277. name: "Side",
  30278. image: {
  30279. source: "./media/characters/glitch-flux/side.svg",
  30280. extra: 997 / 805,
  30281. bottom: 20 / 1017
  30282. }
  30283. },
  30284. },
  30285. [
  30286. {
  30287. name: "Normal",
  30288. height: math.unit(2 + 3 / 12, "feet"),
  30289. default: true
  30290. },
  30291. ]
  30292. ))
  30293. characterMakers.push(() => makeCharacter(
  30294. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30295. {
  30296. front: {
  30297. height: math.unit(4, "meters"),
  30298. name: "Front",
  30299. image: {
  30300. source: "./media/characters/mid/front.svg",
  30301. extra: 507 / 476,
  30302. bottom: 17 / 524
  30303. }
  30304. },
  30305. back: {
  30306. height: math.unit(4, "meters"),
  30307. name: "Back",
  30308. image: {
  30309. source: "./media/characters/mid/back.svg",
  30310. extra: 519 / 487,
  30311. bottom: 7 / 526
  30312. }
  30313. },
  30314. stuck: {
  30315. height: math.unit(2.2, "meters"),
  30316. name: "Stuck",
  30317. image: {
  30318. source: "./media/characters/mid/stuck.svg",
  30319. extra: 1951 / 1869,
  30320. bottom: 88 / 2039
  30321. }
  30322. }
  30323. },
  30324. [
  30325. {
  30326. name: "Normal",
  30327. height: math.unit(4, "meters"),
  30328. default: true
  30329. },
  30330. {
  30331. name: "Big",
  30332. height: math.unit(10, "meters")
  30333. },
  30334. {
  30335. name: "Macro",
  30336. height: math.unit(800, "meters")
  30337. },
  30338. {
  30339. name: "Megamacro",
  30340. height: math.unit(100, "km")
  30341. },
  30342. {
  30343. name: "Overgrown",
  30344. height: math.unit(1, "parsec")
  30345. },
  30346. ]
  30347. ))
  30348. characterMakers.push(() => makeCharacter(
  30349. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30350. {
  30351. front: {
  30352. height: math.unit(2.5, "meters"),
  30353. weight: math.unit(225, "kg"),
  30354. name: "Front",
  30355. image: {
  30356. source: "./media/characters/iris/front.svg",
  30357. extra: 3348 / 3251,
  30358. bottom: 205 / 3553
  30359. }
  30360. },
  30361. maw: {
  30362. height: math.unit(0.56, "meter"),
  30363. name: "Maw",
  30364. image: {
  30365. source: "./media/characters/iris/maw.svg"
  30366. }
  30367. },
  30368. },
  30369. [
  30370. {
  30371. name: "Mewter cat",
  30372. height: math.unit(1.2, "meters")
  30373. },
  30374. {
  30375. name: "Minimacro",
  30376. height: math.unit(2.5, "meters"),
  30377. default: true
  30378. },
  30379. {
  30380. name: "Macro",
  30381. height: math.unit(180, "meters")
  30382. },
  30383. {
  30384. name: "Megamacro",
  30385. height: math.unit(2746, "meters")
  30386. },
  30387. ]
  30388. ))
  30389. characterMakers.push(() => makeCharacter(
  30390. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30391. {
  30392. front: {
  30393. height: math.unit(6, "feet"),
  30394. weight: math.unit(135, "lb"),
  30395. name: "Front",
  30396. image: {
  30397. source: "./media/characters/axel/front.svg",
  30398. extra: 908 / 908,
  30399. bottom: 58 / 966
  30400. }
  30401. },
  30402. side: {
  30403. height: math.unit(6, "feet"),
  30404. weight: math.unit(135, "lb"),
  30405. name: "Side",
  30406. image: {
  30407. source: "./media/characters/axel/side.svg",
  30408. extra: 958 / 958,
  30409. bottom: 11 / 969
  30410. }
  30411. },
  30412. back: {
  30413. height: math.unit(6, "feet"),
  30414. weight: math.unit(135, "lb"),
  30415. name: "Back",
  30416. image: {
  30417. source: "./media/characters/axel/back.svg",
  30418. extra: 887 / 887,
  30419. bottom: 34 / 921
  30420. }
  30421. },
  30422. head: {
  30423. height: math.unit(1.07, "feet"),
  30424. name: "Head",
  30425. image: {
  30426. source: "./media/characters/axel/head.svg"
  30427. }
  30428. },
  30429. beak: {
  30430. height: math.unit(1.4, "feet"),
  30431. name: "Beak",
  30432. image: {
  30433. source: "./media/characters/axel/beak.svg"
  30434. }
  30435. },
  30436. beakSide: {
  30437. height: math.unit(1.4, "feet"),
  30438. name: "Beak Side",
  30439. image: {
  30440. source: "./media/characters/axel/beak-side.svg"
  30441. }
  30442. },
  30443. sheath: {
  30444. height: math.unit(0.5, "feet"),
  30445. name: "Sheath",
  30446. image: {
  30447. source: "./media/characters/axel/sheath.svg"
  30448. }
  30449. },
  30450. dick: {
  30451. height: math.unit(0.98, "feet"),
  30452. name: "Dick",
  30453. image: {
  30454. source: "./media/characters/axel/dick.svg"
  30455. }
  30456. },
  30457. },
  30458. [
  30459. {
  30460. name: "Macro",
  30461. height: math.unit(68, "meters"),
  30462. default: true
  30463. },
  30464. ]
  30465. ))
  30466. characterMakers.push(() => makeCharacter(
  30467. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30468. {
  30469. front: {
  30470. height: math.unit(3.5, "meters"),
  30471. weight: math.unit(1200, "kg"),
  30472. name: "Front",
  30473. image: {
  30474. source: "./media/characters/joanna/front.svg",
  30475. extra: 1596 / 1488,
  30476. bottom: 29 / 1625
  30477. }
  30478. },
  30479. back: {
  30480. height: math.unit(3.5, "meters"),
  30481. weight: math.unit(1200, "kg"),
  30482. name: "Back",
  30483. image: {
  30484. source: "./media/characters/joanna/back.svg",
  30485. extra: 1594 / 1495,
  30486. bottom: 26 / 1620
  30487. }
  30488. },
  30489. frontShorts: {
  30490. height: math.unit(3.5, "meters"),
  30491. weight: math.unit(1200, "kg"),
  30492. name: "Front (Shorts)",
  30493. image: {
  30494. source: "./media/characters/joanna/front-shorts.svg",
  30495. extra: 1596 / 1488,
  30496. bottom: 29 / 1625
  30497. }
  30498. },
  30499. frontBiker: {
  30500. height: math.unit(3.5, "meters"),
  30501. weight: math.unit(1200, "kg"),
  30502. name: "Front (Biker)",
  30503. image: {
  30504. source: "./media/characters/joanna/front-biker.svg",
  30505. extra: 1596 / 1488,
  30506. bottom: 29 / 1625
  30507. }
  30508. },
  30509. backBiker: {
  30510. height: math.unit(3.5, "meters"),
  30511. weight: math.unit(1200, "kg"),
  30512. name: "Back (Biker)",
  30513. image: {
  30514. source: "./media/characters/joanna/back-biker.svg",
  30515. extra: 1594 / 1495,
  30516. bottom: 88 / 1682
  30517. }
  30518. },
  30519. bikeLeft: {
  30520. height: math.unit(2.4, "meters"),
  30521. weight: math.unit(1600, "kg"),
  30522. name: "Bike (Left)",
  30523. image: {
  30524. source: "./media/characters/joanna/bike-left.svg",
  30525. extra: 720 / 720,
  30526. bottom: 8 / 728
  30527. }
  30528. },
  30529. bikeRight: {
  30530. height: math.unit(2.4, "meters"),
  30531. weight: math.unit(1600, "kg"),
  30532. name: "Bike (Right)",
  30533. image: {
  30534. source: "./media/characters/joanna/bike-right.svg",
  30535. extra: 720 / 720,
  30536. bottom: 8 / 728
  30537. }
  30538. },
  30539. },
  30540. [
  30541. {
  30542. name: "Incognito",
  30543. height: math.unit(3.5, "meters")
  30544. },
  30545. {
  30546. name: "Casual Big",
  30547. height: math.unit(200, "meters")
  30548. },
  30549. {
  30550. name: "Macro",
  30551. height: math.unit(600, "meters")
  30552. },
  30553. {
  30554. name: "Original",
  30555. height: math.unit(20, "km"),
  30556. default: true
  30557. },
  30558. {
  30559. name: "Giga",
  30560. height: math.unit(400, "km")
  30561. },
  30562. {
  30563. name: "Lounging",
  30564. height: math.unit(1500, "km")
  30565. },
  30566. {
  30567. name: "Planetary",
  30568. height: math.unit(200000, "km")
  30569. },
  30570. ]
  30571. ))
  30572. characterMakers.push(() => makeCharacter(
  30573. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30574. {
  30575. front: {
  30576. height: math.unit(6, "feet"),
  30577. weight: math.unit(150, "lb"),
  30578. name: "Front",
  30579. image: {
  30580. source: "./media/characters/hugo-sigil/front.svg",
  30581. extra: 522 / 500,
  30582. bottom: 2 / 524
  30583. }
  30584. },
  30585. back: {
  30586. height: math.unit(6, "feet"),
  30587. weight: math.unit(150, "lb"),
  30588. name: "Back",
  30589. image: {
  30590. source: "./media/characters/hugo-sigil/back.svg",
  30591. extra: 519 / 495,
  30592. bottom: 5 / 524
  30593. }
  30594. },
  30595. maw: {
  30596. height: math.unit(1.4, "feet"),
  30597. weight: math.unit(150, "lb"),
  30598. name: "Maw",
  30599. image: {
  30600. source: "./media/characters/hugo-sigil/maw.svg"
  30601. }
  30602. },
  30603. feet: {
  30604. height: math.unit(1.56, "feet"),
  30605. weight: math.unit(150, "lb"),
  30606. name: "Feet",
  30607. image: {
  30608. source: "./media/characters/hugo-sigil/feet.svg",
  30609. extra: 177 / 177,
  30610. bottom: 12 / 189
  30611. }
  30612. },
  30613. },
  30614. [
  30615. {
  30616. name: "Normal",
  30617. height: math.unit(6, "feet")
  30618. },
  30619. {
  30620. name: "Macro",
  30621. height: math.unit(200, "feet"),
  30622. default: true
  30623. },
  30624. ]
  30625. ))
  30626. characterMakers.push(() => makeCharacter(
  30627. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30628. {
  30629. front: {
  30630. height: math.unit(6, "feet"),
  30631. weight: math.unit(150, "lb"),
  30632. name: "Front",
  30633. image: {
  30634. source: "./media/characters/peri/front.svg",
  30635. extra: 2354 / 2233,
  30636. bottom: 49 / 2403
  30637. }
  30638. },
  30639. },
  30640. [
  30641. {
  30642. name: "Really Small",
  30643. height: math.unit(1, "nm")
  30644. },
  30645. {
  30646. name: "Micro",
  30647. height: math.unit(4, "inches")
  30648. },
  30649. {
  30650. name: "Normal",
  30651. height: math.unit(7, "inches"),
  30652. default: true
  30653. },
  30654. {
  30655. name: "Macro",
  30656. height: math.unit(400, "feet")
  30657. },
  30658. {
  30659. name: "Megamacro",
  30660. height: math.unit(100, "miles")
  30661. },
  30662. ]
  30663. ))
  30664. characterMakers.push(() => makeCharacter(
  30665. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30666. {
  30667. frontSlim: {
  30668. height: math.unit(7, "feet"),
  30669. name: "Front (Slim)",
  30670. image: {
  30671. source: "./media/characters/issilora/front-slim.svg",
  30672. extra: 529 / 449,
  30673. bottom: 53 / 582
  30674. }
  30675. },
  30676. sideSlim: {
  30677. height: math.unit(7, "feet"),
  30678. name: "Side (Slim)",
  30679. image: {
  30680. source: "./media/characters/issilora/side-slim.svg",
  30681. extra: 570 / 480,
  30682. bottom: 30 / 600
  30683. }
  30684. },
  30685. backSlim: {
  30686. height: math.unit(7, "feet"),
  30687. name: "Back (Slim)",
  30688. image: {
  30689. source: "./media/characters/issilora/back-slim.svg",
  30690. extra: 537 / 455,
  30691. bottom: 46 / 583
  30692. }
  30693. },
  30694. frontBuff: {
  30695. height: math.unit(7, "feet"),
  30696. name: "Front (Buff)",
  30697. image: {
  30698. source: "./media/characters/issilora/front-buff.svg",
  30699. extra: 2310 / 2035,
  30700. bottom: 335 / 2645
  30701. }
  30702. },
  30703. head: {
  30704. height: math.unit(1.94, "feet"),
  30705. name: "Head",
  30706. image: {
  30707. source: "./media/characters/issilora/head.svg"
  30708. }
  30709. },
  30710. },
  30711. [
  30712. {
  30713. name: "Minimum",
  30714. height: math.unit(7, "feet")
  30715. },
  30716. {
  30717. name: "Comfortable",
  30718. height: math.unit(17, "feet")
  30719. },
  30720. {
  30721. name: "Fun Size",
  30722. height: math.unit(47, "feet")
  30723. },
  30724. {
  30725. name: "Natural Macro",
  30726. height: math.unit(137, "feet"),
  30727. default: true
  30728. },
  30729. {
  30730. name: "Maximum Kaiju",
  30731. height: math.unit(397, "feet")
  30732. },
  30733. ]
  30734. ))
  30735. characterMakers.push(() => makeCharacter(
  30736. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30737. {
  30738. front: {
  30739. height: math.unit(50 + 9/12, "feet"),
  30740. weight: math.unit(32.8, "tons"),
  30741. name: "Front",
  30742. image: {
  30743. source: "./media/characters/irb'iiritaahn/front.svg",
  30744. extra: 1878/1826,
  30745. bottom: 326/2204
  30746. }
  30747. },
  30748. back: {
  30749. height: math.unit(50 + 9/12, "feet"),
  30750. weight: math.unit(32.8, "tons"),
  30751. name: "Back",
  30752. image: {
  30753. source: "./media/characters/irb'iiritaahn/back.svg",
  30754. extra: 2052/2018,
  30755. bottom: 152/2204
  30756. }
  30757. },
  30758. head: {
  30759. height: math.unit(12.86, "feet"),
  30760. name: "Head",
  30761. image: {
  30762. source: "./media/characters/irb'iiritaahn/head.svg"
  30763. }
  30764. },
  30765. maw: {
  30766. height: math.unit(9.66, "feet"),
  30767. name: "Maw",
  30768. image: {
  30769. source: "./media/characters/irb'iiritaahn/maw.svg"
  30770. }
  30771. },
  30772. frontDick: {
  30773. height: math.unit(8.78461, "feet"),
  30774. name: "Front Dick",
  30775. image: {
  30776. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30777. }
  30778. },
  30779. rearDick: {
  30780. height: math.unit(8.78461, "feet"),
  30781. name: "Rear Dick",
  30782. image: {
  30783. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30784. }
  30785. },
  30786. rearDickUnfolded: {
  30787. height: math.unit(8.78, "feet"),
  30788. name: "Rear Dick (Unfolded)",
  30789. image: {
  30790. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30791. }
  30792. },
  30793. wings: {
  30794. height: math.unit(43, "feet"),
  30795. name: "Wings",
  30796. image: {
  30797. source: "./media/characters/irb'iiritaahn/wings.svg"
  30798. }
  30799. },
  30800. },
  30801. [
  30802. {
  30803. name: "Macro",
  30804. height: math.unit(50 + 9/12, "feet"),
  30805. default: true
  30806. },
  30807. ]
  30808. ))
  30809. characterMakers.push(() => makeCharacter(
  30810. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30811. {
  30812. front: {
  30813. height: math.unit(205, "cm"),
  30814. weight: math.unit(102, "kg"),
  30815. name: "Front",
  30816. image: {
  30817. source: "./media/characters/irbisgreif/front.svg",
  30818. extra: 785/706,
  30819. bottom: 13/798
  30820. }
  30821. },
  30822. back: {
  30823. height: math.unit(205, "cm"),
  30824. weight: math.unit(102, "kg"),
  30825. name: "Back",
  30826. image: {
  30827. source: "./media/characters/irbisgreif/back.svg",
  30828. extra: 713/701,
  30829. bottom: 26/739
  30830. }
  30831. },
  30832. frontDressed: {
  30833. height: math.unit(216, "cm"),
  30834. weight: math.unit(102, "kg"),
  30835. name: "Front-dressed",
  30836. image: {
  30837. source: "./media/characters/irbisgreif/front-dressed.svg",
  30838. extra: 902/776,
  30839. bottom: 14/916
  30840. }
  30841. },
  30842. sideDressed: {
  30843. height: math.unit(195, "cm"),
  30844. weight: math.unit(102, "kg"),
  30845. name: "Side-dressed",
  30846. image: {
  30847. source: "./media/characters/irbisgreif/side-dressed.svg",
  30848. extra: 788/688,
  30849. bottom: 21/809
  30850. }
  30851. },
  30852. backDressed: {
  30853. height: math.unit(216, "cm"),
  30854. weight: math.unit(102, "kg"),
  30855. name: "Back-dressed",
  30856. image: {
  30857. source: "./media/characters/irbisgreif/back-dressed.svg",
  30858. extra: 901/783,
  30859. bottom: 10/911
  30860. }
  30861. },
  30862. dick: {
  30863. height: math.unit(0.49, "feet"),
  30864. name: "Dick",
  30865. image: {
  30866. source: "./media/characters/irbisgreif/dick.svg"
  30867. }
  30868. },
  30869. wingTop: {
  30870. height: math.unit(1.93 , "feet"),
  30871. name: "Wing-top",
  30872. image: {
  30873. source: "./media/characters/irbisgreif/wing-top.svg"
  30874. }
  30875. },
  30876. wingBottom: {
  30877. height: math.unit(1.93 , "feet"),
  30878. name: "Wing-bottom",
  30879. image: {
  30880. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30881. }
  30882. },
  30883. },
  30884. [
  30885. {
  30886. name: "Normal",
  30887. height: math.unit(216, "cm"),
  30888. default: true
  30889. },
  30890. ]
  30891. ))
  30892. characterMakers.push(() => makeCharacter(
  30893. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30894. {
  30895. front: {
  30896. height: math.unit(6, "feet"),
  30897. weight: math.unit(150, "lb"),
  30898. name: "Front",
  30899. image: {
  30900. source: "./media/characters/pride/front.svg",
  30901. extra: 1299/1230,
  30902. bottom: 18/1317
  30903. }
  30904. },
  30905. },
  30906. [
  30907. {
  30908. name: "Normal",
  30909. height: math.unit(7, "feet")
  30910. },
  30911. {
  30912. name: "Mini-macro",
  30913. height: math.unit(11, "feet")
  30914. },
  30915. {
  30916. name: "Macro",
  30917. height: math.unit(15, "meters"),
  30918. default: true
  30919. },
  30920. {
  30921. name: "Macro+",
  30922. height: math.unit(40, "meters")
  30923. },
  30924. ]
  30925. ))
  30926. characterMakers.push(() => makeCharacter(
  30927. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30928. {
  30929. front: {
  30930. height: math.unit(4 + 2 / 12, "feet"),
  30931. weight: math.unit(95, "lb"),
  30932. name: "Front",
  30933. image: {
  30934. source: "./media/characters/vaelophis-nyx/front.svg",
  30935. extra: 2532/2330,
  30936. bottom: 0/2532
  30937. }
  30938. },
  30939. back: {
  30940. height: math.unit(4 + 2 / 12, "feet"),
  30941. weight: math.unit(95, "lb"),
  30942. name: "Back",
  30943. image: {
  30944. source: "./media/characters/vaelophis-nyx/back.svg",
  30945. extra: 2484/2361,
  30946. bottom: 0/2484
  30947. }
  30948. },
  30949. feralSide: {
  30950. height: math.unit(2 + 1/12, "feet"),
  30951. weight: math.unit(20, "lb"),
  30952. name: "Feral (Side)",
  30953. image: {
  30954. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30955. extra: 1721/1581,
  30956. bottom: 70/1791
  30957. }
  30958. },
  30959. feralLazing: {
  30960. height: math.unit(1.08, "feet"),
  30961. weight: math.unit(20, "lb"),
  30962. name: "Feral (Lazing)",
  30963. image: {
  30964. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30965. extra: 822/822,
  30966. bottom: 248/1070
  30967. }
  30968. },
  30969. ear: {
  30970. height: math.unit(0.416, "feet"),
  30971. name: "Ear",
  30972. image: {
  30973. source: "./media/characters/vaelophis-nyx/ear.svg"
  30974. }
  30975. },
  30976. eye: {
  30977. height: math.unit(0.0748, "feet"),
  30978. name: "Eye",
  30979. image: {
  30980. source: "./media/characters/vaelophis-nyx/eye.svg"
  30981. }
  30982. },
  30983. mouth: {
  30984. height: math.unit(0.378, "feet"),
  30985. name: "Mouth",
  30986. image: {
  30987. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30988. }
  30989. },
  30990. spade: {
  30991. height: math.unit(0.55, "feet"),
  30992. name: "Spade",
  30993. image: {
  30994. source: "./media/characters/vaelophis-nyx/spade.svg"
  30995. }
  30996. },
  30997. },
  30998. [
  30999. {
  31000. name: "Normal",
  31001. height: math.unit(4 + 2/12, "feet"),
  31002. default: true
  31003. },
  31004. ]
  31005. ))
  31006. characterMakers.push(() => makeCharacter(
  31007. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31008. {
  31009. front: {
  31010. height: math.unit(7, "feet"),
  31011. weight: math.unit(231, "lb"),
  31012. name: "Front",
  31013. image: {
  31014. source: "./media/characters/flux/front.svg",
  31015. extra: 919/871,
  31016. bottom: 0/919
  31017. }
  31018. },
  31019. back: {
  31020. height: math.unit(7, "feet"),
  31021. weight: math.unit(231, "lb"),
  31022. name: "Back",
  31023. image: {
  31024. source: "./media/characters/flux/back.svg",
  31025. extra: 1040/992,
  31026. bottom: 0/1040
  31027. }
  31028. },
  31029. frontDressed: {
  31030. height: math.unit(7, "feet"),
  31031. weight: math.unit(231, "lb"),
  31032. name: "Front (Dressed)",
  31033. image: {
  31034. source: "./media/characters/flux/front-dressed.svg",
  31035. extra: 919/871,
  31036. bottom: 0/919
  31037. }
  31038. },
  31039. feralSide: {
  31040. height: math.unit(5, "feet"),
  31041. weight: math.unit(150, "lb"),
  31042. name: "Feral (Side)",
  31043. image: {
  31044. source: "./media/characters/flux/feral-side.svg",
  31045. extra: 598/528,
  31046. bottom: 28/626
  31047. }
  31048. },
  31049. head: {
  31050. height: math.unit(1.585, "feet"),
  31051. name: "Head",
  31052. image: {
  31053. source: "./media/characters/flux/head.svg"
  31054. }
  31055. },
  31056. headSide: {
  31057. height: math.unit(1.74, "feet"),
  31058. name: "Head (Side)",
  31059. image: {
  31060. source: "./media/characters/flux/head-side.svg"
  31061. }
  31062. },
  31063. headSideFire: {
  31064. height: math.unit(1.76, "feet"),
  31065. name: "Head (Side, Fire)",
  31066. image: {
  31067. source: "./media/characters/flux/head-side-fire.svg"
  31068. }
  31069. },
  31070. },
  31071. [
  31072. {
  31073. name: "Normal",
  31074. height: math.unit(7, "feet"),
  31075. default: true
  31076. },
  31077. ]
  31078. ))
  31079. characterMakers.push(() => makeCharacter(
  31080. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31081. {
  31082. front: {
  31083. height: math.unit(9, "feet"),
  31084. weight: math.unit(1012, "lb"),
  31085. name: "Front",
  31086. image: {
  31087. source: "./media/characters/ulfra-lupae/front.svg",
  31088. extra: 1083/1011,
  31089. bottom: 67/1150
  31090. }
  31091. },
  31092. },
  31093. [
  31094. {
  31095. name: "Micro",
  31096. height: math.unit(6, "inches")
  31097. },
  31098. {
  31099. name: "Socializing",
  31100. height: math.unit(6 + 5/12, "feet")
  31101. },
  31102. {
  31103. name: "Normal",
  31104. height: math.unit(9, "feet"),
  31105. default: true
  31106. },
  31107. {
  31108. name: "Macro",
  31109. height: math.unit(150, "feet")
  31110. },
  31111. ]
  31112. ))
  31113. characterMakers.push(() => makeCharacter(
  31114. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31115. {
  31116. front: {
  31117. height: math.unit(5 + 2/12, "feet"),
  31118. weight: math.unit(120, "lb"),
  31119. name: "Front",
  31120. image: {
  31121. source: "./media/characters/timber/front.svg",
  31122. extra: 2814/2705,
  31123. bottom: 181/2995
  31124. }
  31125. },
  31126. },
  31127. [
  31128. {
  31129. name: "Normal",
  31130. height: math.unit(5 + 2/12, "feet"),
  31131. default: true
  31132. },
  31133. ]
  31134. ))
  31135. characterMakers.push(() => makeCharacter(
  31136. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31137. {
  31138. front: {
  31139. height: math.unit(5 + 7/12, "feet"),
  31140. weight: math.unit(220, "lb"),
  31141. name: "Front",
  31142. image: {
  31143. source: "./media/characters/nicki/front.svg",
  31144. extra: 453/419,
  31145. bottom: 7/460
  31146. }
  31147. },
  31148. frontAlt: {
  31149. height: math.unit(5 + 7/12, "feet"),
  31150. weight: math.unit(220, "lb"),
  31151. name: "Front-alt",
  31152. image: {
  31153. source: "./media/characters/nicki/front-alt.svg",
  31154. extra: 435/411,
  31155. bottom: 12/447
  31156. }
  31157. },
  31158. back: {
  31159. height: math.unit(5 + 7/12, "feet"),
  31160. weight: math.unit(220, "lb"),
  31161. name: "Back",
  31162. image: {
  31163. source: "./media/characters/nicki/back.svg",
  31164. extra: 440/413,
  31165. bottom: 19/459
  31166. }
  31167. },
  31168. taur: {
  31169. height: math.unit(7 + 6/12, "feet"),
  31170. weight: math.unit(700, "lb"),
  31171. name: "Taur",
  31172. image: {
  31173. source: "./media/characters/nicki/taur.svg",
  31174. extra: 975/773,
  31175. bottom: 0/975
  31176. }
  31177. },
  31178. frontNsfw: {
  31179. height: math.unit(5 + 7/12, "feet"),
  31180. weight: math.unit(220, "lb"),
  31181. name: "Front (NSFW)",
  31182. image: {
  31183. source: "./media/characters/nicki/front-nsfw.svg",
  31184. extra: 453/419,
  31185. bottom: 7/460
  31186. }
  31187. },
  31188. frontNsfwAlt: {
  31189. height: math.unit(5 + 7/12, "feet"),
  31190. weight: math.unit(220, "lb"),
  31191. name: "Front (Alt, NSFW)",
  31192. image: {
  31193. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31194. extra: 435/411,
  31195. bottom: 12/447
  31196. }
  31197. },
  31198. backNsfw: {
  31199. height: math.unit(5 + 7/12, "feet"),
  31200. weight: math.unit(220, "lb"),
  31201. name: "Back (NSFW)",
  31202. image: {
  31203. source: "./media/characters/nicki/back-nsfw.svg",
  31204. extra: 440/413,
  31205. bottom: 19/459
  31206. }
  31207. },
  31208. head: {
  31209. height: math.unit(2.1, "feet"),
  31210. name: "Head",
  31211. image: {
  31212. source: "./media/characters/nicki/head.svg"
  31213. }
  31214. },
  31215. paw: {
  31216. height: math.unit(1.88, "feet"),
  31217. name: "Paw",
  31218. image: {
  31219. source: "./media/characters/nicki/paw.svg"
  31220. }
  31221. },
  31222. },
  31223. [
  31224. {
  31225. name: "Normal",
  31226. height: math.unit(5 + 7/12, "feet"),
  31227. default: true
  31228. },
  31229. ]
  31230. ))
  31231. characterMakers.push(() => makeCharacter(
  31232. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31233. {
  31234. front: {
  31235. height: math.unit(7 + 10/12, "feet"),
  31236. weight: math.unit(3.5, "tons"),
  31237. name: "Front",
  31238. image: {
  31239. source: "./media/characters/lee/front.svg",
  31240. extra: 1773/1615,
  31241. bottom: 86/1859
  31242. }
  31243. },
  31244. hand: {
  31245. height: math.unit(1.78, "feet"),
  31246. name: "Hand",
  31247. image: {
  31248. source: "./media/characters/lee/hand.svg"
  31249. }
  31250. },
  31251. maw: {
  31252. height: math.unit(1.18, "feet"),
  31253. name: "Maw",
  31254. image: {
  31255. source: "./media/characters/lee/maw.svg"
  31256. }
  31257. },
  31258. },
  31259. [
  31260. {
  31261. name: "Normal",
  31262. height: math.unit(7 + 10/12, "feet"),
  31263. default: true
  31264. },
  31265. ]
  31266. ))
  31267. characterMakers.push(() => makeCharacter(
  31268. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31269. {
  31270. front: {
  31271. height: math.unit(9, "feet"),
  31272. name: "Front",
  31273. image: {
  31274. source: "./media/characters/guti/front.svg",
  31275. extra: 4551/4355,
  31276. bottom: 123/4674
  31277. }
  31278. },
  31279. tongue: {
  31280. height: math.unit(1, "feet"),
  31281. name: "Tongue",
  31282. image: {
  31283. source: "./media/characters/guti/tongue.svg"
  31284. }
  31285. },
  31286. paw: {
  31287. height: math.unit(1.18, "feet"),
  31288. name: "Paw",
  31289. image: {
  31290. source: "./media/characters/guti/paw.svg"
  31291. }
  31292. },
  31293. },
  31294. [
  31295. {
  31296. name: "Normal",
  31297. height: math.unit(9, "feet"),
  31298. default: true
  31299. },
  31300. ]
  31301. ))
  31302. characterMakers.push(() => makeCharacter(
  31303. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31304. {
  31305. side: {
  31306. height: math.unit(5, "meters"),
  31307. name: "Side",
  31308. image: {
  31309. source: "./media/characters/vesper/side.svg",
  31310. extra: 1605/1518,
  31311. bottom: 0/1605
  31312. }
  31313. },
  31314. },
  31315. [
  31316. {
  31317. name: "Small",
  31318. height: math.unit(5, "meters")
  31319. },
  31320. {
  31321. name: "Sage",
  31322. height: math.unit(100, "meters"),
  31323. default: true
  31324. },
  31325. {
  31326. name: "Fun Size",
  31327. height: math.unit(600, "meters")
  31328. },
  31329. {
  31330. name: "Goddess",
  31331. height: math.unit(20000, "km")
  31332. },
  31333. {
  31334. name: "Maximum",
  31335. height: math.unit(5, "galaxies")
  31336. },
  31337. ]
  31338. ))
  31339. characterMakers.push(() => makeCharacter(
  31340. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31341. {
  31342. front: {
  31343. height: math.unit(6 + 3/12, "feet"),
  31344. weight: math.unit(190, "lb"),
  31345. name: "Front",
  31346. image: {
  31347. source: "./media/characters/gawain/front.svg",
  31348. extra: 2222/2139,
  31349. bottom: 90/2312
  31350. }
  31351. },
  31352. back: {
  31353. height: math.unit(6 + 3/12, "feet"),
  31354. weight: math.unit(190, "lb"),
  31355. name: "Back",
  31356. image: {
  31357. source: "./media/characters/gawain/back.svg",
  31358. extra: 2199/2111,
  31359. bottom: 73/2272
  31360. }
  31361. },
  31362. },
  31363. [
  31364. {
  31365. name: "Normal",
  31366. height: math.unit(6 + 3/12, "feet"),
  31367. default: true
  31368. },
  31369. ]
  31370. ))
  31371. characterMakers.push(() => makeCharacter(
  31372. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31373. {
  31374. side: {
  31375. height: math.unit(3.5, "meters"),
  31376. weight: math.unit(16000, "lb"),
  31377. name: "Side",
  31378. image: {
  31379. source: "./media/characters/dascalti/side.svg",
  31380. extra: 392/273,
  31381. bottom: 47/439
  31382. }
  31383. },
  31384. breath: {
  31385. height: math.unit(7.4, "feet"),
  31386. name: "Breath",
  31387. image: {
  31388. source: "./media/characters/dascalti/breath.svg"
  31389. }
  31390. },
  31391. fed: {
  31392. height: math.unit(3.6, "meters"),
  31393. weight: math.unit(16000, "lb"),
  31394. name: "Fed",
  31395. image: {
  31396. source: "./media/characters/dascalti/fed.svg",
  31397. extra: 1419/820,
  31398. bottom: 95/1514
  31399. }
  31400. },
  31401. },
  31402. [
  31403. {
  31404. name: "Normal",
  31405. height: math.unit(3.5, "meters"),
  31406. default: true
  31407. },
  31408. ]
  31409. ))
  31410. characterMakers.push(() => makeCharacter(
  31411. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31412. {
  31413. front: {
  31414. height: math.unit(3 + 5/12, "feet"),
  31415. name: "Front",
  31416. image: {
  31417. source: "./media/characters/mauve/front.svg",
  31418. extra: 1126/1033,
  31419. bottom: 65/1191
  31420. }
  31421. },
  31422. side: {
  31423. height: math.unit(3 + 5/12, "feet"),
  31424. name: "Side",
  31425. image: {
  31426. source: "./media/characters/mauve/side.svg",
  31427. extra: 1089/1001,
  31428. bottom: 29/1118
  31429. }
  31430. },
  31431. back: {
  31432. height: math.unit(3 + 5/12, "feet"),
  31433. name: "Back",
  31434. image: {
  31435. source: "./media/characters/mauve/back.svg",
  31436. extra: 1173/1053,
  31437. bottom: 109/1282
  31438. }
  31439. },
  31440. },
  31441. [
  31442. {
  31443. name: "Normal",
  31444. height: math.unit(3 + 5/12, "feet"),
  31445. default: true
  31446. },
  31447. ]
  31448. ))
  31449. characterMakers.push(() => makeCharacter(
  31450. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31451. {
  31452. front: {
  31453. height: math.unit(6 + 3/12, "feet"),
  31454. weight: math.unit(430, "lb"),
  31455. name: "Front",
  31456. image: {
  31457. source: "./media/characters/carlos/front.svg",
  31458. extra: 1964/1913,
  31459. bottom: 70/2034
  31460. }
  31461. },
  31462. },
  31463. [
  31464. {
  31465. name: "Normal",
  31466. height: math.unit(6 + 3/12, "feet"),
  31467. default: true
  31468. },
  31469. ]
  31470. ))
  31471. characterMakers.push(() => makeCharacter(
  31472. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31473. {
  31474. back: {
  31475. height: math.unit(5 + 10/12, "feet"),
  31476. weight: math.unit(200, "lb"),
  31477. name: "Back",
  31478. image: {
  31479. source: "./media/characters/jax/back.svg",
  31480. extra: 764/739,
  31481. bottom: 25/789
  31482. }
  31483. },
  31484. },
  31485. [
  31486. {
  31487. name: "Normal",
  31488. height: math.unit(5 + 10/12, "feet"),
  31489. default: true
  31490. },
  31491. ]
  31492. ))
  31493. characterMakers.push(() => makeCharacter(
  31494. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31495. {
  31496. front: {
  31497. height: math.unit(8, "feet"),
  31498. weight: math.unit(250, "lb"),
  31499. name: "Front",
  31500. image: {
  31501. source: "./media/characters/eikthynir/front.svg",
  31502. extra: 1332/1166,
  31503. bottom: 82/1414
  31504. }
  31505. },
  31506. back: {
  31507. height: math.unit(8, "feet"),
  31508. weight: math.unit(250, "lb"),
  31509. name: "Back",
  31510. image: {
  31511. source: "./media/characters/eikthynir/back.svg",
  31512. extra: 1342/1190,
  31513. bottom: 19/1361
  31514. }
  31515. },
  31516. dick: {
  31517. height: math.unit(2.35, "feet"),
  31518. name: "Dick",
  31519. image: {
  31520. source: "./media/characters/eikthynir/dick.svg"
  31521. }
  31522. },
  31523. },
  31524. [
  31525. {
  31526. name: "Normal",
  31527. height: math.unit(8, "feet"),
  31528. default: true
  31529. },
  31530. ]
  31531. ))
  31532. characterMakers.push(() => makeCharacter(
  31533. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31534. {
  31535. front: {
  31536. height: math.unit(99, "meters"),
  31537. weight: math.unit(13000, "tons"),
  31538. name: "Front",
  31539. image: {
  31540. source: "./media/characters/zlmos/front.svg",
  31541. extra: 2202/1992,
  31542. bottom: 315/2517
  31543. }
  31544. },
  31545. },
  31546. [
  31547. {
  31548. name: "Macro",
  31549. height: math.unit(99, "meters"),
  31550. default: true
  31551. },
  31552. ]
  31553. ))
  31554. characterMakers.push(() => makeCharacter(
  31555. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31556. {
  31557. front: {
  31558. height: math.unit(6 + 5/12, "feet"),
  31559. name: "Front",
  31560. image: {
  31561. source: "./media/characters/purri/front.svg",
  31562. extra: 1698/1610,
  31563. bottom: 32/1730
  31564. }
  31565. },
  31566. frontAlt: {
  31567. height: math.unit(6 + 5/12, "feet"),
  31568. name: "Front (Alt)",
  31569. image: {
  31570. source: "./media/characters/purri/front-alt.svg",
  31571. extra: 450/420,
  31572. bottom: 26/476
  31573. }
  31574. },
  31575. boots: {
  31576. height: math.unit(5.5, "feet"),
  31577. name: "Boots",
  31578. image: {
  31579. source: "./media/characters/purri/boots.svg",
  31580. extra: 905/853,
  31581. bottom: 18/923
  31582. }
  31583. },
  31584. lying: {
  31585. height: math.unit(2, "feet"),
  31586. name: "Lying",
  31587. image: {
  31588. source: "./media/characters/purri/lying.svg",
  31589. extra: 940/843,
  31590. bottom: 146/1086
  31591. }
  31592. },
  31593. devious: {
  31594. height: math.unit(1.77, "feet"),
  31595. name: "Devious",
  31596. image: {
  31597. source: "./media/characters/purri/devious.svg",
  31598. extra: 1440/1155,
  31599. bottom: 147/1587
  31600. }
  31601. },
  31602. bean: {
  31603. height: math.unit(1.94, "feet"),
  31604. name: "Bean",
  31605. image: {
  31606. source: "./media/characters/purri/bean.svg"
  31607. }
  31608. },
  31609. },
  31610. [
  31611. {
  31612. name: "Micro",
  31613. height: math.unit(1, "mm")
  31614. },
  31615. {
  31616. name: "Normal",
  31617. height: math.unit(6 + 5/12, "feet"),
  31618. default: true
  31619. },
  31620. {
  31621. name: "Macro :3c",
  31622. height: math.unit(2, "miles")
  31623. },
  31624. ]
  31625. ))
  31626. characterMakers.push(() => makeCharacter(
  31627. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31628. {
  31629. front: {
  31630. height: math.unit(6 + 2/12, "feet"),
  31631. weight: math.unit(250, "lb"),
  31632. name: "Front",
  31633. image: {
  31634. source: "./media/characters/moonlight/front.svg",
  31635. extra: 1044/908,
  31636. bottom: 56/1100
  31637. }
  31638. },
  31639. feral: {
  31640. height: math.unit(3 + 1/12, "feet"),
  31641. weight: math.unit(50, "kg"),
  31642. name: "Feral",
  31643. image: {
  31644. source: "./media/characters/moonlight/feral.svg",
  31645. extra: 3705/2791,
  31646. bottom: 145/3850
  31647. }
  31648. },
  31649. paw: {
  31650. height: math.unit(1, "feet"),
  31651. name: "Paw",
  31652. image: {
  31653. source: "./media/characters/moonlight/paw.svg"
  31654. }
  31655. },
  31656. paws: {
  31657. height: math.unit(0.98, "feet"),
  31658. name: "Paws",
  31659. image: {
  31660. source: "./media/characters/moonlight/paws.svg",
  31661. extra: 939/939,
  31662. bottom: 50/989
  31663. }
  31664. },
  31665. mouth: {
  31666. height: math.unit(0.48, "feet"),
  31667. name: "Mouth",
  31668. image: {
  31669. source: "./media/characters/moonlight/mouth.svg"
  31670. }
  31671. },
  31672. dick: {
  31673. height: math.unit(1.46, "feet"),
  31674. name: "Dick",
  31675. image: {
  31676. source: "./media/characters/moonlight/dick.svg"
  31677. }
  31678. },
  31679. },
  31680. [
  31681. {
  31682. name: "Normal",
  31683. height: math.unit(6 + 2/12, "feet"),
  31684. default: true
  31685. },
  31686. {
  31687. name: "Macro",
  31688. height: math.unit(300, "feet")
  31689. },
  31690. {
  31691. name: "Macro+",
  31692. height: math.unit(1, "mile")
  31693. },
  31694. {
  31695. name: "Mt. Moon",
  31696. height: math.unit(5, "miles")
  31697. },
  31698. {
  31699. name: "Megamacro",
  31700. height: math.unit(15, "miles")
  31701. },
  31702. ]
  31703. ))
  31704. characterMakers.push(() => makeCharacter(
  31705. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31706. {
  31707. back: {
  31708. height: math.unit(6, "feet"),
  31709. weight: math.unit(150, "lb"),
  31710. name: "Back",
  31711. image: {
  31712. source: "./media/characters/sylen/back.svg",
  31713. extra: 1335/1273,
  31714. bottom: 107/1442
  31715. }
  31716. },
  31717. },
  31718. [
  31719. {
  31720. name: "Normal",
  31721. height: math.unit(5 + 5/12, "feet")
  31722. },
  31723. {
  31724. name: "Megamacro",
  31725. height: math.unit(3, "miles"),
  31726. default: true
  31727. },
  31728. ]
  31729. ))
  31730. characterMakers.push(() => makeCharacter(
  31731. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31732. {
  31733. front: {
  31734. height: math.unit(6, "feet"),
  31735. weight: math.unit(190, "lb"),
  31736. name: "Front",
  31737. image: {
  31738. source: "./media/characters/huttser/front.svg",
  31739. extra: 1152/1058,
  31740. bottom: 23/1175
  31741. }
  31742. },
  31743. side: {
  31744. height: math.unit(6, "feet"),
  31745. weight: math.unit(190, "lb"),
  31746. name: "Side",
  31747. image: {
  31748. source: "./media/characters/huttser/side.svg",
  31749. extra: 1174/1065,
  31750. bottom: 18/1192
  31751. }
  31752. },
  31753. back: {
  31754. height: math.unit(6, "feet"),
  31755. weight: math.unit(190, "lb"),
  31756. name: "Back",
  31757. image: {
  31758. source: "./media/characters/huttser/back.svg",
  31759. extra: 1158/1056,
  31760. bottom: 12/1170
  31761. }
  31762. },
  31763. },
  31764. [
  31765. ]
  31766. ))
  31767. characterMakers.push(() => makeCharacter(
  31768. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31769. {
  31770. side: {
  31771. height: math.unit(12 + 9/12, "feet"),
  31772. weight: math.unit(15000, "lb"),
  31773. name: "Side",
  31774. image: {
  31775. source: "./media/characters/faan/side.svg",
  31776. extra: 2747/2697,
  31777. bottom: 0/2747
  31778. }
  31779. },
  31780. front: {
  31781. height: math.unit(12 + 9/12, "feet"),
  31782. weight: math.unit(15000, "lb"),
  31783. name: "Front",
  31784. image: {
  31785. source: "./media/characters/faan/front.svg",
  31786. extra: 607/571,
  31787. bottom: 24/631
  31788. }
  31789. },
  31790. head: {
  31791. height: math.unit(2.85, "feet"),
  31792. name: "Head",
  31793. image: {
  31794. source: "./media/characters/faan/head.svg"
  31795. }
  31796. },
  31797. headAlt: {
  31798. height: math.unit(3.13, "feet"),
  31799. name: "Head-alt",
  31800. image: {
  31801. source: "./media/characters/faan/head-alt.svg"
  31802. }
  31803. },
  31804. },
  31805. [
  31806. {
  31807. name: "Normal",
  31808. height: math.unit(12 + 9/12, "feet"),
  31809. default: true
  31810. },
  31811. ]
  31812. ))
  31813. characterMakers.push(() => makeCharacter(
  31814. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31815. {
  31816. front: {
  31817. height: math.unit(6, "feet"),
  31818. weight: math.unit(300, "lb"),
  31819. name: "Front",
  31820. image: {
  31821. source: "./media/characters/tanio/front.svg",
  31822. extra: 711/673,
  31823. bottom: 25/736
  31824. }
  31825. },
  31826. },
  31827. [
  31828. {
  31829. name: "Normal",
  31830. height: math.unit(6, "feet"),
  31831. default: true
  31832. },
  31833. ]
  31834. ))
  31835. characterMakers.push(() => makeCharacter(
  31836. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31837. {
  31838. front: {
  31839. height: math.unit(3, "inches"),
  31840. name: "Front",
  31841. image: {
  31842. source: "./media/characters/noboru/front.svg",
  31843. extra: 1039/932,
  31844. bottom: 18/1057
  31845. }
  31846. },
  31847. },
  31848. [
  31849. {
  31850. name: "Micro",
  31851. height: math.unit(3, "inches"),
  31852. default: true
  31853. },
  31854. ]
  31855. ))
  31856. characterMakers.push(() => makeCharacter(
  31857. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31858. {
  31859. front: {
  31860. height: math.unit(1.85, "meters"),
  31861. weight: math.unit(80, "kg"),
  31862. name: "Front",
  31863. image: {
  31864. source: "./media/characters/daniel-barrett/front.svg",
  31865. extra: 355/337,
  31866. bottom: 9/364
  31867. }
  31868. },
  31869. },
  31870. [
  31871. {
  31872. name: "Pico",
  31873. height: math.unit(0.0433, "mm")
  31874. },
  31875. {
  31876. name: "Nano",
  31877. height: math.unit(1.5, "mm")
  31878. },
  31879. {
  31880. name: "Micro",
  31881. height: math.unit(5.3, "cm"),
  31882. default: true
  31883. },
  31884. {
  31885. name: "Normal",
  31886. height: math.unit(1.85, "meters")
  31887. },
  31888. {
  31889. name: "Macro",
  31890. height: math.unit(64.7, "meters")
  31891. },
  31892. {
  31893. name: "Megamacro",
  31894. height: math.unit(2.26, "km")
  31895. },
  31896. {
  31897. name: "Gigamacro",
  31898. height: math.unit(79, "km")
  31899. },
  31900. {
  31901. name: "Teramacro",
  31902. height: math.unit(2765, "km")
  31903. },
  31904. {
  31905. name: "Petamacro",
  31906. height: math.unit(96678, "km")
  31907. },
  31908. ]
  31909. ))
  31910. characterMakers.push(() => makeCharacter(
  31911. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31912. {
  31913. front: {
  31914. height: math.unit(30, "meters"),
  31915. weight: math.unit(400, "tons"),
  31916. name: "Front",
  31917. image: {
  31918. source: "./media/characters/zeel/front.svg",
  31919. extra: 2599/2599,
  31920. bottom: 226/2825
  31921. }
  31922. },
  31923. },
  31924. [
  31925. {
  31926. name: "Macro",
  31927. height: math.unit(30, "meters"),
  31928. default: true
  31929. },
  31930. ]
  31931. ))
  31932. characterMakers.push(() => makeCharacter(
  31933. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31934. {
  31935. front: {
  31936. height: math.unit(6 + 7/12, "feet"),
  31937. weight: math.unit(210, "lb"),
  31938. name: "Front",
  31939. image: {
  31940. source: "./media/characters/tarn/front.svg",
  31941. extra: 3517/3220,
  31942. bottom: 91/3608
  31943. }
  31944. },
  31945. back: {
  31946. height: math.unit(6 + 7/12, "feet"),
  31947. weight: math.unit(210, "lb"),
  31948. name: "Back",
  31949. image: {
  31950. source: "./media/characters/tarn/back.svg",
  31951. extra: 3566/3241,
  31952. bottom: 34/3600
  31953. }
  31954. },
  31955. dick: {
  31956. height: math.unit(1.65, "feet"),
  31957. name: "Dick",
  31958. image: {
  31959. source: "./media/characters/tarn/dick.svg"
  31960. }
  31961. },
  31962. paw: {
  31963. height: math.unit(1.80, "feet"),
  31964. name: "Paw",
  31965. image: {
  31966. source: "./media/characters/tarn/paw.svg"
  31967. }
  31968. },
  31969. tongue: {
  31970. height: math.unit(0.97, "feet"),
  31971. name: "Tongue",
  31972. image: {
  31973. source: "./media/characters/tarn/tongue.svg"
  31974. }
  31975. },
  31976. },
  31977. [
  31978. {
  31979. name: "Micro",
  31980. height: math.unit(4, "inches")
  31981. },
  31982. {
  31983. name: "Normal",
  31984. height: math.unit(6 + 7/12, "feet"),
  31985. default: true
  31986. },
  31987. {
  31988. name: "Macro",
  31989. height: math.unit(300, "feet")
  31990. },
  31991. ]
  31992. ))
  31993. characterMakers.push(() => makeCharacter(
  31994. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31995. {
  31996. front: {
  31997. height: math.unit(5 + 7/12, "feet"),
  31998. weight: math.unit(80, "kg"),
  31999. name: "Front",
  32000. image: {
  32001. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32002. extra: 3023/2865,
  32003. bottom: 33/3056
  32004. }
  32005. },
  32006. back: {
  32007. height: math.unit(5 + 7/12, "feet"),
  32008. weight: math.unit(80, "kg"),
  32009. name: "Back",
  32010. image: {
  32011. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32012. extra: 3020/2886,
  32013. bottom: 30/3050
  32014. }
  32015. },
  32016. dick: {
  32017. height: math.unit(0.98, "feet"),
  32018. name: "Dick",
  32019. image: {
  32020. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32021. }
  32022. },
  32023. anatomy: {
  32024. height: math.unit(2.86, "feet"),
  32025. name: "Anatomy",
  32026. image: {
  32027. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32028. }
  32029. },
  32030. },
  32031. [
  32032. {
  32033. name: "Really Small",
  32034. height: math.unit(2, "inches")
  32035. },
  32036. {
  32037. name: "Micro",
  32038. height: math.unit(5.583, "inches")
  32039. },
  32040. {
  32041. name: "Normal",
  32042. height: math.unit(5 + 7/12, "feet"),
  32043. default: true
  32044. },
  32045. {
  32046. name: "Macro",
  32047. height: math.unit(67, "feet")
  32048. },
  32049. {
  32050. name: "Megamacro",
  32051. height: math.unit(134, "feet")
  32052. },
  32053. ]
  32054. ))
  32055. characterMakers.push(() => makeCharacter(
  32056. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32057. {
  32058. front: {
  32059. height: math.unit(9, "feet"),
  32060. weight: math.unit(120, "lb"),
  32061. name: "Front",
  32062. image: {
  32063. source: "./media/characters/sally/front.svg",
  32064. extra: 1506/1349,
  32065. bottom: 66/1572
  32066. }
  32067. },
  32068. },
  32069. [
  32070. {
  32071. name: "Normal",
  32072. height: math.unit(9, "feet"),
  32073. default: true
  32074. },
  32075. ]
  32076. ))
  32077. characterMakers.push(() => makeCharacter(
  32078. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32079. {
  32080. front: {
  32081. height: math.unit(8, "feet"),
  32082. weight: math.unit(900, "lb"),
  32083. name: "Front",
  32084. image: {
  32085. source: "./media/characters/owen/front.svg",
  32086. extra: 1761/1657,
  32087. bottom: 74/1835
  32088. }
  32089. },
  32090. side: {
  32091. height: math.unit(8, "feet"),
  32092. weight: math.unit(900, "lb"),
  32093. name: "Side",
  32094. image: {
  32095. source: "./media/characters/owen/side.svg",
  32096. extra: 1797/1734,
  32097. bottom: 30/1827
  32098. }
  32099. },
  32100. back: {
  32101. height: math.unit(8, "feet"),
  32102. weight: math.unit(900, "lb"),
  32103. name: "Back",
  32104. image: {
  32105. source: "./media/characters/owen/back.svg",
  32106. extra: 1796/1706,
  32107. bottom: 59/1855
  32108. }
  32109. },
  32110. maw: {
  32111. height: math.unit(1.76, "feet"),
  32112. name: "Maw",
  32113. image: {
  32114. source: "./media/characters/owen/maw.svg"
  32115. }
  32116. },
  32117. },
  32118. [
  32119. {
  32120. name: "Normal",
  32121. height: math.unit(8, "feet"),
  32122. default: true
  32123. },
  32124. ]
  32125. ))
  32126. characterMakers.push(() => makeCharacter(
  32127. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32128. {
  32129. front: {
  32130. height: math.unit(4, "feet"),
  32131. weight: math.unit(400, "lb"),
  32132. name: "Front",
  32133. image: {
  32134. source: "./media/characters/ryth/front.svg",
  32135. extra: 1920/1748,
  32136. bottom: 42/1962
  32137. }
  32138. },
  32139. back: {
  32140. height: math.unit(4, "feet"),
  32141. weight: math.unit(400, "lb"),
  32142. name: "Back",
  32143. image: {
  32144. source: "./media/characters/ryth/back.svg",
  32145. extra: 1897/1690,
  32146. bottom: 89/1986
  32147. }
  32148. },
  32149. mouth: {
  32150. height: math.unit(1.39, "feet"),
  32151. name: "Mouth",
  32152. image: {
  32153. source: "./media/characters/ryth/mouth.svg"
  32154. }
  32155. },
  32156. tailmaw: {
  32157. height: math.unit(1.23, "feet"),
  32158. name: "Tailmaw",
  32159. image: {
  32160. source: "./media/characters/ryth/tailmaw.svg"
  32161. }
  32162. },
  32163. goia: {
  32164. height: math.unit(4, "meters"),
  32165. weight: math.unit(10800, "lb"),
  32166. name: "Goia",
  32167. image: {
  32168. source: "./media/characters/ryth/goia.svg",
  32169. extra: 745/640,
  32170. bottom: 107/852
  32171. }
  32172. },
  32173. goiaFront: {
  32174. height: math.unit(4, "meters"),
  32175. weight: math.unit(10800, "lb"),
  32176. name: "Goia (Front)",
  32177. image: {
  32178. source: "./media/characters/ryth/goia-front.svg",
  32179. extra: 750/586,
  32180. bottom: 114/864
  32181. }
  32182. },
  32183. goiaMaw: {
  32184. height: math.unit(5.55, "feet"),
  32185. name: "Goia Maw",
  32186. image: {
  32187. source: "./media/characters/ryth/goia-maw.svg"
  32188. }
  32189. },
  32190. goiaForepaw: {
  32191. height: math.unit(3.5, "feet"),
  32192. name: "Goia Forepaw",
  32193. image: {
  32194. source: "./media/characters/ryth/goia-forepaw.svg"
  32195. }
  32196. },
  32197. goiaHindpaw: {
  32198. height: math.unit(5.55, "feet"),
  32199. name: "Goia Hindpaw",
  32200. image: {
  32201. source: "./media/characters/ryth/goia-hindpaw.svg"
  32202. }
  32203. },
  32204. },
  32205. [
  32206. {
  32207. name: "Normal",
  32208. height: math.unit(4, "feet"),
  32209. default: true
  32210. },
  32211. ]
  32212. ))
  32213. characterMakers.push(() => makeCharacter(
  32214. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32215. {
  32216. front: {
  32217. height: math.unit(7, "feet"),
  32218. weight: math.unit(180, "lb"),
  32219. name: "Front",
  32220. image: {
  32221. source: "./media/characters/necrolance/front.svg",
  32222. extra: 1062/947,
  32223. bottom: 41/1103
  32224. }
  32225. },
  32226. back: {
  32227. height: math.unit(7, "feet"),
  32228. weight: math.unit(180, "lb"),
  32229. name: "Back",
  32230. image: {
  32231. source: "./media/characters/necrolance/back.svg",
  32232. extra: 1045/984,
  32233. bottom: 14/1059
  32234. }
  32235. },
  32236. wing: {
  32237. height: math.unit(2.67, "feet"),
  32238. name: "Wing",
  32239. image: {
  32240. source: "./media/characters/necrolance/wing.svg"
  32241. }
  32242. },
  32243. },
  32244. [
  32245. {
  32246. name: "Normal",
  32247. height: math.unit(7, "feet"),
  32248. default: true
  32249. },
  32250. ]
  32251. ))
  32252. characterMakers.push(() => makeCharacter(
  32253. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32254. {
  32255. front: {
  32256. height: math.unit(76, "meters"),
  32257. weight: math.unit(30000, "tons"),
  32258. name: "Front",
  32259. image: {
  32260. source: "./media/characters/tyler/front.svg",
  32261. extra: 1640/1640,
  32262. bottom: 114/1754
  32263. }
  32264. },
  32265. },
  32266. [
  32267. {
  32268. name: "Macro",
  32269. height: math.unit(76, "meters"),
  32270. default: true
  32271. },
  32272. ]
  32273. ))
  32274. characterMakers.push(() => makeCharacter(
  32275. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32276. {
  32277. front: {
  32278. height: math.unit(4 + 11/12, "feet"),
  32279. weight: math.unit(132, "lb"),
  32280. name: "Front",
  32281. image: {
  32282. source: "./media/characters/icey/front.svg",
  32283. extra: 2750/2550,
  32284. bottom: 33/2783
  32285. }
  32286. },
  32287. back: {
  32288. height: math.unit(4 + 11/12, "feet"),
  32289. weight: math.unit(132, "lb"),
  32290. name: "Back",
  32291. image: {
  32292. source: "./media/characters/icey/back.svg",
  32293. extra: 2624/2481,
  32294. bottom: 35/2659
  32295. }
  32296. },
  32297. },
  32298. [
  32299. {
  32300. name: "Normal",
  32301. height: math.unit(4 + 11/12, "feet"),
  32302. default: true
  32303. },
  32304. ]
  32305. ))
  32306. characterMakers.push(() => makeCharacter(
  32307. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32308. {
  32309. front: {
  32310. height: math.unit(100, "feet"),
  32311. weight: math.unit(0, "lb"),
  32312. name: "Front",
  32313. image: {
  32314. source: "./media/characters/smile/front.svg",
  32315. extra: 2983/2912,
  32316. bottom: 162/3145
  32317. }
  32318. },
  32319. back: {
  32320. height: math.unit(100, "feet"),
  32321. weight: math.unit(0, "lb"),
  32322. name: "Back",
  32323. image: {
  32324. source: "./media/characters/smile/back.svg",
  32325. extra: 3143/3031,
  32326. bottom: 91/3234
  32327. }
  32328. },
  32329. head: {
  32330. height: math.unit(26.3, "feet"),
  32331. weight: math.unit(0, "lb"),
  32332. name: "Head",
  32333. image: {
  32334. source: "./media/characters/smile/head.svg"
  32335. }
  32336. },
  32337. collar: {
  32338. height: math.unit(5.3, "feet"),
  32339. weight: math.unit(0, "lb"),
  32340. name: "Collar",
  32341. image: {
  32342. source: "./media/characters/smile/collar.svg"
  32343. }
  32344. },
  32345. },
  32346. [
  32347. {
  32348. name: "Macro",
  32349. height: math.unit(100, "feet"),
  32350. default: true
  32351. },
  32352. ]
  32353. ))
  32354. characterMakers.push(() => makeCharacter(
  32355. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32356. {
  32357. dragon: {
  32358. height: math.unit(26, "feet"),
  32359. weight: math.unit(36, "tons"),
  32360. name: "Dragon",
  32361. image: {
  32362. source: "./media/characters/arimphae/dragon.svg",
  32363. extra: 1574/983,
  32364. bottom: 357/1931
  32365. }
  32366. },
  32367. drake: {
  32368. height: math.unit(9, "feet"),
  32369. weight: math.unit(1.5, "tons"),
  32370. name: "Drake",
  32371. image: {
  32372. source: "./media/characters/arimphae/drake.svg",
  32373. extra: 1120/925,
  32374. bottom: 435/1555
  32375. }
  32376. },
  32377. },
  32378. [
  32379. {
  32380. name: "Small",
  32381. height: math.unit(26*5/9, "feet")
  32382. },
  32383. {
  32384. name: "Normal",
  32385. height: math.unit(26, "feet"),
  32386. default: true
  32387. },
  32388. ]
  32389. ))
  32390. characterMakers.push(() => makeCharacter(
  32391. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32392. {
  32393. front: {
  32394. height: math.unit(8 + 9/12, "feet"),
  32395. name: "Front",
  32396. image: {
  32397. source: "./media/characters/xander/front.svg",
  32398. extra: 1237/974,
  32399. bottom: 94/1331
  32400. }
  32401. },
  32402. },
  32403. [
  32404. {
  32405. name: "Normal",
  32406. height: math.unit(8 + 9/12, "feet"),
  32407. default: true
  32408. },
  32409. {
  32410. name: "Gaze Grabber",
  32411. height: math.unit(13 + 8/12, "feet")
  32412. },
  32413. {
  32414. name: "Jaw Dropper",
  32415. height: math.unit(27, "feet")
  32416. },
  32417. {
  32418. name: "Show Stopper",
  32419. height: math.unit(136, "feet")
  32420. },
  32421. {
  32422. name: "Superstar",
  32423. height: math.unit(1.9e6, "miles")
  32424. },
  32425. ]
  32426. ))
  32427. characterMakers.push(() => makeCharacter(
  32428. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32429. {
  32430. side: {
  32431. height: math.unit(2100, "feet"),
  32432. name: "Side",
  32433. image: {
  32434. source: "./media/characters/osiris/side.svg",
  32435. extra: 1105/939,
  32436. bottom: 167/1272
  32437. }
  32438. },
  32439. },
  32440. [
  32441. {
  32442. name: "Macro",
  32443. height: math.unit(2100, "feet"),
  32444. default: true
  32445. },
  32446. ]
  32447. ))
  32448. characterMakers.push(() => makeCharacter(
  32449. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32450. {
  32451. front: {
  32452. height: math.unit(6 + 8/12, "feet"),
  32453. weight: math.unit(225, "lb"),
  32454. name: "Front",
  32455. image: {
  32456. source: "./media/characters/rhys-londe/front.svg",
  32457. extra: 2258/2141,
  32458. bottom: 188/2446
  32459. }
  32460. },
  32461. back: {
  32462. height: math.unit(6 + 8/12, "feet"),
  32463. weight: math.unit(225, "lb"),
  32464. name: "Back",
  32465. image: {
  32466. source: "./media/characters/rhys-londe/back.svg",
  32467. extra: 2237/2137,
  32468. bottom: 63/2300
  32469. }
  32470. },
  32471. frontNsfw: {
  32472. height: math.unit(6 + 8/12, "feet"),
  32473. weight: math.unit(225, "lb"),
  32474. name: "Front (NSFW)",
  32475. image: {
  32476. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32477. extra: 2258/2141,
  32478. bottom: 188/2446
  32479. }
  32480. },
  32481. backNsfw: {
  32482. height: math.unit(6 + 8/12, "feet"),
  32483. weight: math.unit(225, "lb"),
  32484. name: "Back (NSFW)",
  32485. image: {
  32486. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32487. extra: 2237/2137,
  32488. bottom: 63/2300
  32489. }
  32490. },
  32491. dick: {
  32492. height: math.unit(30, "inches"),
  32493. name: "Dick",
  32494. image: {
  32495. source: "./media/characters/rhys-londe/dick.svg"
  32496. }
  32497. },
  32498. maw: {
  32499. height: math.unit(1.6, "feet"),
  32500. name: "Maw",
  32501. image: {
  32502. source: "./media/characters/rhys-londe/maw.svg"
  32503. }
  32504. },
  32505. },
  32506. [
  32507. {
  32508. name: "Normal",
  32509. height: math.unit(6 + 8/12, "feet"),
  32510. default: true
  32511. },
  32512. ]
  32513. ))
  32514. characterMakers.push(() => makeCharacter(
  32515. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32516. {
  32517. front: {
  32518. height: math.unit(3 + 10/12, "feet"),
  32519. weight: math.unit(90, "lb"),
  32520. name: "Front",
  32521. image: {
  32522. source: "./media/characters/taivas-ensim/front.svg",
  32523. extra: 1327/1216,
  32524. bottom: 96/1423
  32525. }
  32526. },
  32527. back: {
  32528. height: math.unit(3 + 10/12, "feet"),
  32529. weight: math.unit(90, "lb"),
  32530. name: "Back",
  32531. image: {
  32532. source: "./media/characters/taivas-ensim/back.svg",
  32533. extra: 1355/1247,
  32534. bottom: 11/1366
  32535. }
  32536. },
  32537. frontNsfw: {
  32538. height: math.unit(3 + 10/12, "feet"),
  32539. weight: math.unit(90, "lb"),
  32540. name: "Front (NSFW)",
  32541. image: {
  32542. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32543. extra: 1327/1216,
  32544. bottom: 96/1423
  32545. }
  32546. },
  32547. backNsfw: {
  32548. height: math.unit(3 + 10/12, "feet"),
  32549. weight: math.unit(90, "lb"),
  32550. name: "Back (NSFW)",
  32551. image: {
  32552. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32553. extra: 1355/1247,
  32554. bottom: 11/1366
  32555. }
  32556. },
  32557. },
  32558. [
  32559. {
  32560. name: "Normal",
  32561. height: math.unit(3 + 10/12, "feet"),
  32562. default: true
  32563. },
  32564. ]
  32565. ))
  32566. characterMakers.push(() => makeCharacter(
  32567. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32568. {
  32569. front: {
  32570. height: math.unit(9 + 6/12, "feet"),
  32571. weight: math.unit(940, "lb"),
  32572. name: "Front",
  32573. image: {
  32574. source: "./media/characters/byliss/front.svg",
  32575. extra: 1327/1290,
  32576. bottom: 82/1409
  32577. }
  32578. },
  32579. back: {
  32580. height: math.unit(9 + 6/12, "feet"),
  32581. weight: math.unit(940, "lb"),
  32582. name: "Back",
  32583. image: {
  32584. source: "./media/characters/byliss/back.svg",
  32585. extra: 1376/1349,
  32586. bottom: 9/1385
  32587. }
  32588. },
  32589. frontNsfw: {
  32590. height: math.unit(9 + 6/12, "feet"),
  32591. weight: math.unit(940, "lb"),
  32592. name: "Front (NSFW)",
  32593. image: {
  32594. source: "./media/characters/byliss/front-nsfw.svg",
  32595. extra: 1327/1290,
  32596. bottom: 82/1409
  32597. }
  32598. },
  32599. backNsfw: {
  32600. height: math.unit(9 + 6/12, "feet"),
  32601. weight: math.unit(940, "lb"),
  32602. name: "Back (NSFW)",
  32603. image: {
  32604. source: "./media/characters/byliss/back-nsfw.svg",
  32605. extra: 1376/1349,
  32606. bottom: 9/1385
  32607. }
  32608. },
  32609. },
  32610. [
  32611. {
  32612. name: "Normal",
  32613. height: math.unit(9 + 6/12, "feet"),
  32614. default: true
  32615. },
  32616. ]
  32617. ))
  32618. characterMakers.push(() => makeCharacter(
  32619. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32620. {
  32621. front: {
  32622. height: math.unit(5 + 2/12, "feet"),
  32623. weight: math.unit(200, "lb"),
  32624. name: "Front",
  32625. image: {
  32626. source: "./media/characters/noraly/front.svg",
  32627. extra: 4985/4773,
  32628. bottom: 150/5135
  32629. }
  32630. },
  32631. full: {
  32632. height: math.unit(5 + 2/12, "feet"),
  32633. weight: math.unit(164, "lb"),
  32634. name: "Full",
  32635. image: {
  32636. source: "./media/characters/noraly/full.svg",
  32637. extra: 1114/1059,
  32638. bottom: 35/1149
  32639. }
  32640. },
  32641. fuller: {
  32642. height: math.unit(5 + 2/12, "feet"),
  32643. weight: math.unit(230, "lb"),
  32644. name: "Fuller",
  32645. image: {
  32646. source: "./media/characters/noraly/fuller.svg",
  32647. extra: 1114/1059,
  32648. bottom: 35/1149
  32649. }
  32650. },
  32651. fullest: {
  32652. height: math.unit(5 + 2/12, "feet"),
  32653. weight: math.unit(300, "lb"),
  32654. name: "Fullest",
  32655. image: {
  32656. source: "./media/characters/noraly/fullest.svg",
  32657. extra: 1114/1059,
  32658. bottom: 35/1149
  32659. }
  32660. },
  32661. },
  32662. [
  32663. {
  32664. name: "Normal",
  32665. height: math.unit(5 + 2/12, "feet"),
  32666. default: true
  32667. },
  32668. ]
  32669. ))
  32670. characterMakers.push(() => makeCharacter(
  32671. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32672. {
  32673. front: {
  32674. height: math.unit(5 + 2/12, "feet"),
  32675. weight: math.unit(210, "lb"),
  32676. name: "Front",
  32677. image: {
  32678. source: "./media/characters/pera/front.svg",
  32679. extra: 1560/1531,
  32680. bottom: 165/1725
  32681. }
  32682. },
  32683. back: {
  32684. height: math.unit(5 + 2/12, "feet"),
  32685. weight: math.unit(210, "lb"),
  32686. name: "Back",
  32687. image: {
  32688. source: "./media/characters/pera/back.svg",
  32689. extra: 1523/1493,
  32690. bottom: 152/1675
  32691. }
  32692. },
  32693. dick: {
  32694. height: math.unit(2.4, "feet"),
  32695. name: "Dick",
  32696. image: {
  32697. source: "./media/characters/pera/dick.svg"
  32698. }
  32699. },
  32700. },
  32701. [
  32702. {
  32703. name: "Normal",
  32704. height: math.unit(5 + 2/12, "feet"),
  32705. default: true
  32706. },
  32707. ]
  32708. ))
  32709. characterMakers.push(() => makeCharacter(
  32710. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32711. {
  32712. front: {
  32713. height: math.unit(12, "feet"),
  32714. weight: math.unit(3200, "lb"),
  32715. name: "Front",
  32716. image: {
  32717. source: "./media/characters/julian/front.svg",
  32718. extra: 2962/2701,
  32719. bottom: 184/3146
  32720. }
  32721. },
  32722. maw: {
  32723. height: math.unit(5.35, "feet"),
  32724. name: "Maw",
  32725. image: {
  32726. source: "./media/characters/julian/maw.svg"
  32727. }
  32728. },
  32729. paw: {
  32730. height: math.unit(3.07, "feet"),
  32731. name: "Paw",
  32732. image: {
  32733. source: "./media/characters/julian/paw.svg"
  32734. }
  32735. },
  32736. },
  32737. [
  32738. {
  32739. name: "Default",
  32740. height: math.unit(12, "feet"),
  32741. default: true
  32742. },
  32743. {
  32744. name: "Big",
  32745. height: math.unit(50, "feet")
  32746. },
  32747. {
  32748. name: "Really Big",
  32749. height: math.unit(1, "mile")
  32750. },
  32751. {
  32752. name: "Extremely Big",
  32753. height: math.unit(100, "miles")
  32754. },
  32755. {
  32756. name: "Planet Hugger",
  32757. height: math.unit(200, "megameters")
  32758. },
  32759. {
  32760. name: "Unreasonably Big",
  32761. height: math.unit(1e300, "meters")
  32762. },
  32763. ]
  32764. ))
  32765. characterMakers.push(() => makeCharacter(
  32766. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32767. {
  32768. solgooleo: {
  32769. height: math.unit(4, "meters"),
  32770. weight: math.unit(6000*1.5, "kg"),
  32771. volume: math.unit(6000, "liters"),
  32772. name: "Solgooleo",
  32773. image: {
  32774. source: "./media/characters/pi/solgooleo.svg",
  32775. extra: 388/331,
  32776. bottom: 29/417
  32777. }
  32778. },
  32779. },
  32780. [
  32781. {
  32782. name: "Normal",
  32783. height: math.unit(4, "meters"),
  32784. default: true
  32785. },
  32786. ]
  32787. ))
  32788. characterMakers.push(() => makeCharacter(
  32789. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32790. {
  32791. front: {
  32792. height: math.unit(8, "feet"),
  32793. weight: math.unit(4, "tons"),
  32794. name: "Front",
  32795. image: {
  32796. source: "./media/characters/shaun/front.svg",
  32797. extra: 503/495,
  32798. bottom: 20/523
  32799. }
  32800. },
  32801. back: {
  32802. height: math.unit(8, "feet"),
  32803. weight: math.unit(4, "tons"),
  32804. name: "Back",
  32805. image: {
  32806. source: "./media/characters/shaun/back.svg",
  32807. extra: 487/480,
  32808. bottom: 20/507
  32809. }
  32810. },
  32811. },
  32812. [
  32813. {
  32814. name: "Lorg",
  32815. height: math.unit(8, "feet"),
  32816. default: true
  32817. },
  32818. ]
  32819. ))
  32820. characterMakers.push(() => makeCharacter(
  32821. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32822. {
  32823. front: {
  32824. height: math.unit(7, "feet"),
  32825. name: "Front",
  32826. image: {
  32827. source: "./media/characters/sini/front.svg",
  32828. extra: 726/678,
  32829. bottom: 35/761
  32830. }
  32831. },
  32832. back: {
  32833. height: math.unit(7, "feet"),
  32834. name: "Back",
  32835. image: {
  32836. source: "./media/characters/sini/back.svg",
  32837. extra: 743/701,
  32838. bottom: 12/755
  32839. }
  32840. },
  32841. mawAnthro: {
  32842. height: math.unit(2.14, "feet"),
  32843. name: "Maw (Anthro)",
  32844. image: {
  32845. source: "./media/characters/sini/maw-anthro.svg"
  32846. }
  32847. },
  32848. dick: {
  32849. height: math.unit(1.45, "feet"),
  32850. name: "Dick (Anthro)",
  32851. image: {
  32852. source: "./media/characters/sini/dick-anthro.svg"
  32853. }
  32854. },
  32855. feral: {
  32856. height: math.unit(16, "feet"),
  32857. name: "Feral",
  32858. image: {
  32859. source: "./media/characters/sini/feral.svg",
  32860. extra: 814/605,
  32861. bottom: 11/825
  32862. }
  32863. },
  32864. mawFeral: {
  32865. height: math.unit(5.66, "feet"),
  32866. name: "Maw-feral",
  32867. image: {
  32868. source: "./media/characters/sini/maw-feral.svg"
  32869. }
  32870. },
  32871. footFeral: {
  32872. height: math.unit(5.17, "feet"),
  32873. name: "Foot-feral",
  32874. image: {
  32875. source: "./media/characters/sini/foot-feral.svg"
  32876. }
  32877. },
  32878. },
  32879. [
  32880. {
  32881. name: "Normal",
  32882. height: math.unit(7, "feet"),
  32883. default: true
  32884. },
  32885. ]
  32886. ))
  32887. characterMakers.push(() => makeCharacter(
  32888. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32889. {
  32890. side: {
  32891. height: math.unit(13, "meters"),
  32892. weight: math.unit(9072, "kg"),
  32893. name: "Side",
  32894. image: {
  32895. source: "./media/characters/raylldo/side.svg",
  32896. extra: 403/344,
  32897. bottom: 42/445
  32898. }
  32899. },
  32900. leaping: {
  32901. height: math.unit(12.3, "meters"),
  32902. weight: math.unit(9072, "kg"),
  32903. name: "Leaping",
  32904. image: {
  32905. source: "./media/characters/raylldo/leaping.svg",
  32906. extra: 470/249,
  32907. bottom: 13/483
  32908. }
  32909. },
  32910. flying: {
  32911. height: math.unit(18, "meters"),
  32912. weight: math.unit(9072, "kg"),
  32913. name: "Flying",
  32914. image: {
  32915. source: "./media/characters/raylldo/flying.svg"
  32916. }
  32917. },
  32918. head: {
  32919. height: math.unit(5.85, "meters"),
  32920. name: "Head",
  32921. image: {
  32922. source: "./media/characters/raylldo/head.svg"
  32923. }
  32924. },
  32925. maw: {
  32926. height: math.unit(5.32, "meters"),
  32927. name: "Maw",
  32928. image: {
  32929. source: "./media/characters/raylldo/maw.svg"
  32930. }
  32931. },
  32932. eye: {
  32933. height: math.unit(0.54, "meters"),
  32934. name: "Eye",
  32935. image: {
  32936. source: "./media/characters/raylldo/eye.svg"
  32937. }
  32938. },
  32939. },
  32940. [
  32941. {
  32942. name: "Normal",
  32943. height: math.unit(13, "meters"),
  32944. default: true
  32945. },
  32946. ]
  32947. ))
  32948. characterMakers.push(() => makeCharacter(
  32949. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32950. {
  32951. anthroFront: {
  32952. height: math.unit(9, "feet"),
  32953. weight: math.unit(600, "lb"),
  32954. name: "Anthro (Front)",
  32955. image: {
  32956. source: "./media/characters/glint/anthro-front.svg",
  32957. extra: 1097/1018,
  32958. bottom: 28/1125
  32959. }
  32960. },
  32961. anthroBack: {
  32962. height: math.unit(9, "feet"),
  32963. weight: math.unit(600, "lb"),
  32964. name: "Anthro (Back)",
  32965. image: {
  32966. source: "./media/characters/glint/anthro-back.svg",
  32967. extra: 1154/997,
  32968. bottom: 36/1190
  32969. }
  32970. },
  32971. feral: {
  32972. height: math.unit(11, "feet"),
  32973. weight: math.unit(50000, "lb"),
  32974. name: "Feral",
  32975. image: {
  32976. source: "./media/characters/glint/feral.svg",
  32977. extra: 3035/1585,
  32978. bottom: 1169/4204
  32979. }
  32980. },
  32981. dickAnthro: {
  32982. height: math.unit(0.7, "meters"),
  32983. name: "Dick (Anthro)",
  32984. image: {
  32985. source: "./media/characters/glint/dick-anthro.svg"
  32986. }
  32987. },
  32988. dickFeral: {
  32989. height: math.unit(2.65, "meters"),
  32990. name: "Dick (Feral)",
  32991. image: {
  32992. source: "./media/characters/glint/dick-feral.svg"
  32993. }
  32994. },
  32995. slitHidden: {
  32996. height: math.unit(5.85, "meters"),
  32997. name: "Slit (Hidden)",
  32998. image: {
  32999. source: "./media/characters/glint/slit-hidden.svg"
  33000. }
  33001. },
  33002. slitErect: {
  33003. height: math.unit(5.85, "meters"),
  33004. name: "Slit (Erect)",
  33005. image: {
  33006. source: "./media/characters/glint/slit-erect.svg"
  33007. }
  33008. },
  33009. mawAnthro: {
  33010. height: math.unit(0.63, "meters"),
  33011. name: "Maw (Anthro)",
  33012. image: {
  33013. source: "./media/characters/glint/maw.svg"
  33014. }
  33015. },
  33016. mawFeral: {
  33017. height: math.unit(2.89, "meters"),
  33018. name: "Maw (Feral)",
  33019. image: {
  33020. source: "./media/characters/glint/maw.svg"
  33021. }
  33022. },
  33023. },
  33024. [
  33025. {
  33026. name: "Normal",
  33027. height: math.unit(9, "feet"),
  33028. default: true
  33029. },
  33030. ]
  33031. ))
  33032. characterMakers.push(() => makeCharacter(
  33033. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33034. {
  33035. side: {
  33036. height: math.unit(15, "feet"),
  33037. weight: math.unit(5000, "kg"),
  33038. name: "Side",
  33039. image: {
  33040. source: "./media/characters/kairne/side.svg",
  33041. extra: 979/811,
  33042. bottom: 13/992
  33043. }
  33044. },
  33045. front: {
  33046. height: math.unit(15, "feet"),
  33047. weight: math.unit(5000, "kg"),
  33048. name: "Front",
  33049. image: {
  33050. source: "./media/characters/kairne/front.svg",
  33051. extra: 908/814,
  33052. bottom: 26/934
  33053. }
  33054. },
  33055. sideNsfw: {
  33056. height: math.unit(15, "feet"),
  33057. weight: math.unit(5000, "kg"),
  33058. name: "Side (NSFW)",
  33059. image: {
  33060. source: "./media/characters/kairne/side-nsfw.svg",
  33061. extra: 979/811,
  33062. bottom: 13/992
  33063. }
  33064. },
  33065. frontNsfw: {
  33066. height: math.unit(15, "feet"),
  33067. weight: math.unit(5000, "kg"),
  33068. name: "Front (NSFW)",
  33069. image: {
  33070. source: "./media/characters/kairne/front-nsfw.svg",
  33071. extra: 908/814,
  33072. bottom: 26/934
  33073. }
  33074. },
  33075. dickCaged: {
  33076. height: math.unit(0.65, "meters"),
  33077. name: "Dick-caged",
  33078. image: {
  33079. source: "./media/characters/kairne/dick-caged.svg"
  33080. }
  33081. },
  33082. dick: {
  33083. height: math.unit(0.79, "meters"),
  33084. name: "Dick",
  33085. image: {
  33086. source: "./media/characters/kairne/dick.svg"
  33087. }
  33088. },
  33089. genitals: {
  33090. height: math.unit(1.29, "meters"),
  33091. name: "Genitals",
  33092. image: {
  33093. source: "./media/characters/kairne/genitals.svg"
  33094. }
  33095. },
  33096. maw: {
  33097. height: math.unit(1.73, "meters"),
  33098. name: "Maw",
  33099. image: {
  33100. source: "./media/characters/kairne/maw.svg"
  33101. }
  33102. },
  33103. },
  33104. [
  33105. {
  33106. name: "Normal",
  33107. height: math.unit(15, "feet"),
  33108. default: true
  33109. },
  33110. ]
  33111. ))
  33112. characterMakers.push(() => makeCharacter(
  33113. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33114. {
  33115. front: {
  33116. height: math.unit(5 + 8/12, "feet"),
  33117. weight: math.unit(139, "lb"),
  33118. name: "Front",
  33119. image: {
  33120. source: "./media/characters/biscuit-jackal/front.svg",
  33121. extra: 2106/1961,
  33122. bottom: 58/2164
  33123. }
  33124. },
  33125. back: {
  33126. height: math.unit(5 + 8/12, "feet"),
  33127. weight: math.unit(139, "lb"),
  33128. name: "Back",
  33129. image: {
  33130. source: "./media/characters/biscuit-jackal/back.svg",
  33131. extra: 2132/1976,
  33132. bottom: 57/2189
  33133. }
  33134. },
  33135. werejackal: {
  33136. height: math.unit(6 + 3/12, "feet"),
  33137. weight: math.unit(188, "lb"),
  33138. name: "Werejackal",
  33139. image: {
  33140. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33141. extra: 2373/2178,
  33142. bottom: 53/2426
  33143. }
  33144. },
  33145. },
  33146. [
  33147. {
  33148. name: "Normal",
  33149. height: math.unit(5 + 8/12, "feet"),
  33150. default: true
  33151. },
  33152. ]
  33153. ))
  33154. characterMakers.push(() => makeCharacter(
  33155. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33156. {
  33157. front: {
  33158. height: math.unit(140, "cm"),
  33159. weight: math.unit(45, "kg"),
  33160. name: "Front",
  33161. image: {
  33162. source: "./media/characters/tayra-white/front.svg",
  33163. extra: 2229/2192,
  33164. bottom: 75/2304
  33165. }
  33166. },
  33167. },
  33168. [
  33169. {
  33170. name: "Normal",
  33171. height: math.unit(140, "cm"),
  33172. default: true
  33173. },
  33174. ]
  33175. ))
  33176. characterMakers.push(() => makeCharacter(
  33177. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33178. {
  33179. front: {
  33180. height: math.unit(4 + 5/12, "feet"),
  33181. name: "Front",
  33182. image: {
  33183. source: "./media/characters/scoop/front.svg",
  33184. extra: 1257/1136,
  33185. bottom: 69/1326
  33186. }
  33187. },
  33188. back: {
  33189. height: math.unit(4 + 5/12, "feet"),
  33190. name: "Back",
  33191. image: {
  33192. source: "./media/characters/scoop/back.svg",
  33193. extra: 1321/1152,
  33194. bottom: 32/1353
  33195. }
  33196. },
  33197. maw: {
  33198. height: math.unit(0.68, "feet"),
  33199. name: "Maw",
  33200. image: {
  33201. source: "./media/characters/scoop/maw.svg"
  33202. }
  33203. },
  33204. },
  33205. [
  33206. {
  33207. name: "Really Small",
  33208. height: math.unit(1, "mm")
  33209. },
  33210. {
  33211. name: "Micro",
  33212. height: math.unit(1, "inch")
  33213. },
  33214. {
  33215. name: "Normal",
  33216. height: math.unit(4 + 5/12, "feet"),
  33217. default: true
  33218. },
  33219. {
  33220. name: "Macro",
  33221. height: math.unit(200, "feet")
  33222. },
  33223. {
  33224. name: "Megamacro",
  33225. height: math.unit(3240, "feet")
  33226. },
  33227. {
  33228. name: "Teramacro",
  33229. height: math.unit(2500, "miles")
  33230. },
  33231. ]
  33232. ))
  33233. characterMakers.push(() => makeCharacter(
  33234. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33235. {
  33236. front: {
  33237. height: math.unit(15 + 7/12, "feet"),
  33238. name: "Front",
  33239. image: {
  33240. source: "./media/characters/saphinara/front.svg",
  33241. extra: 604/546,
  33242. bottom: 19/623
  33243. }
  33244. },
  33245. side: {
  33246. height: math.unit(15 + 7/12, "feet"),
  33247. name: "Side",
  33248. image: {
  33249. source: "./media/characters/saphinara/side.svg",
  33250. extra: 605/547,
  33251. bottom: 6/611
  33252. }
  33253. },
  33254. back: {
  33255. height: math.unit(15 + 7/12, "feet"),
  33256. name: "Back",
  33257. image: {
  33258. source: "./media/characters/saphinara/back.svg",
  33259. extra: 591/531,
  33260. bottom: 13/604
  33261. }
  33262. },
  33263. frontTail: {
  33264. height: math.unit(15 + 7/12, "feet"),
  33265. name: "Front (Full Tail)",
  33266. image: {
  33267. source: "./media/characters/saphinara/front-tail.svg",
  33268. extra: 748/547,
  33269. bottom: 66/814
  33270. }
  33271. },
  33272. },
  33273. [
  33274. {
  33275. name: "Normal",
  33276. height: math.unit(15 + 7/12, "feet"),
  33277. default: true
  33278. },
  33279. {
  33280. name: "Angry",
  33281. height: math.unit(30 + 6/12, "feet")
  33282. },
  33283. {
  33284. name: "Enraged",
  33285. height: math.unit(102 + 1/12, "feet")
  33286. },
  33287. ]
  33288. ))
  33289. characterMakers.push(() => makeCharacter(
  33290. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33291. {
  33292. front: {
  33293. height: math.unit(6 + 8/12, "feet"),
  33294. weight: math.unit(300, "lb"),
  33295. name: "Front",
  33296. image: {
  33297. source: "./media/characters/jrain/front.svg",
  33298. extra: 3039/2865,
  33299. bottom: 399/3438
  33300. }
  33301. },
  33302. back: {
  33303. height: math.unit(6 + 8/12, "feet"),
  33304. weight: math.unit(300, "lb"),
  33305. name: "Back",
  33306. image: {
  33307. source: "./media/characters/jrain/back.svg",
  33308. extra: 3089/2938,
  33309. bottom: 172/3261
  33310. }
  33311. },
  33312. head: {
  33313. height: math.unit(2.14, "feet"),
  33314. name: "Head",
  33315. image: {
  33316. source: "./media/characters/jrain/head.svg"
  33317. }
  33318. },
  33319. maw: {
  33320. height: math.unit(1.77, "feet"),
  33321. name: "Maw",
  33322. image: {
  33323. source: "./media/characters/jrain/maw.svg"
  33324. }
  33325. },
  33326. leftHand: {
  33327. height: math.unit(1.1, "feet"),
  33328. name: "Left Hand",
  33329. image: {
  33330. source: "./media/characters/jrain/left-hand.svg"
  33331. }
  33332. },
  33333. rightHand: {
  33334. height: math.unit(1.1, "feet"),
  33335. name: "Right Hand",
  33336. image: {
  33337. source: "./media/characters/jrain/right-hand.svg"
  33338. }
  33339. },
  33340. eye: {
  33341. height: math.unit(0.35, "feet"),
  33342. name: "Eye",
  33343. image: {
  33344. source: "./media/characters/jrain/eye.svg"
  33345. }
  33346. },
  33347. },
  33348. [
  33349. {
  33350. name: "Normal",
  33351. height: math.unit(6 + 8/12, "feet"),
  33352. default: true
  33353. },
  33354. {
  33355. name: "Casually Large",
  33356. height: math.unit(25, "feet")
  33357. },
  33358. {
  33359. name: "Giant",
  33360. height: math.unit(100, "feet")
  33361. },
  33362. {
  33363. name: "Kaiju",
  33364. height: math.unit(300, "feet")
  33365. },
  33366. ]
  33367. ))
  33368. characterMakers.push(() => makeCharacter(
  33369. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33370. {
  33371. dragon: {
  33372. height: math.unit(5, "meters"),
  33373. name: "Dragon",
  33374. image: {
  33375. source: "./media/characters/sabrina/dragon.svg",
  33376. extra: 3670 / 2365,
  33377. bottom: 333 / 4003
  33378. }
  33379. },
  33380. gryphon: {
  33381. height: math.unit(3, "meters"),
  33382. name: "Gryphon",
  33383. image: {
  33384. source: "./media/characters/sabrina/gryphon.svg",
  33385. extra: 1576 / 945,
  33386. bottom: 71 / 1647
  33387. }
  33388. },
  33389. snake: {
  33390. height: math.unit(12, "meters"),
  33391. name: "Snake",
  33392. image: {
  33393. source: "./media/characters/sabrina/snake.svg",
  33394. extra: 1758 / 1320,
  33395. bottom: 186 / 1944
  33396. }
  33397. },
  33398. collar: {
  33399. height: math.unit(1.86, "meters"),
  33400. name: "Collar",
  33401. image: {
  33402. source: "./media/characters/sabrina/collar.svg"
  33403. }
  33404. },
  33405. eye: {
  33406. height: math.unit(0.53, "meters"),
  33407. name: "Eye",
  33408. image: {
  33409. source: "./media/characters/sabrina/eye.svg"
  33410. }
  33411. },
  33412. foot: {
  33413. height: math.unit(1.86, "meters"),
  33414. name: "Foot",
  33415. image: {
  33416. source: "./media/characters/sabrina/foot.svg"
  33417. }
  33418. },
  33419. hand: {
  33420. height: math.unit(1.32, "meters"),
  33421. name: "Hand",
  33422. image: {
  33423. source: "./media/characters/sabrina/hand.svg"
  33424. }
  33425. },
  33426. head: {
  33427. height: math.unit(2.44, "meters"),
  33428. name: "Head",
  33429. image: {
  33430. source: "./media/characters/sabrina/head.svg"
  33431. }
  33432. },
  33433. headAngry: {
  33434. height: math.unit(2.44, "meters"),
  33435. name: "Head (Angry))",
  33436. image: {
  33437. source: "./media/characters/sabrina/head-angry.svg"
  33438. }
  33439. },
  33440. maw: {
  33441. height: math.unit(1.65, "meters"),
  33442. name: "Maw",
  33443. image: {
  33444. source: "./media/characters/sabrina/maw.svg"
  33445. }
  33446. },
  33447. spikes: {
  33448. height: math.unit(1.69, "meters"),
  33449. name: "Spikes",
  33450. image: {
  33451. source: "./media/characters/sabrina/spikes.svg"
  33452. }
  33453. },
  33454. stomach: {
  33455. height: math.unit(1.15, "meters"),
  33456. name: "Stomach",
  33457. image: {
  33458. source: "./media/characters/sabrina/stomach.svg"
  33459. }
  33460. },
  33461. tongue: {
  33462. height: math.unit(1.27, "meters"),
  33463. name: "Tongue",
  33464. image: {
  33465. source: "./media/characters/sabrina/tongue.svg"
  33466. }
  33467. },
  33468. wingDorsal: {
  33469. height: math.unit(4.85, "meters"),
  33470. name: "Wing (Dorsal)",
  33471. image: {
  33472. source: "./media/characters/sabrina/wing-dorsal.svg"
  33473. }
  33474. },
  33475. wingVentral: {
  33476. height: math.unit(4.85, "meters"),
  33477. name: "Wing (Ventral)",
  33478. image: {
  33479. source: "./media/characters/sabrina/wing-ventral.svg"
  33480. }
  33481. },
  33482. },
  33483. [
  33484. {
  33485. name: "Normal",
  33486. height: math.unit(5, "meters"),
  33487. default: true
  33488. },
  33489. ]
  33490. ))
  33491. characterMakers.push(() => makeCharacter(
  33492. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33493. {
  33494. frontMaid: {
  33495. height: math.unit(5 + 5/12, "feet"),
  33496. weight: math.unit(130, "lb"),
  33497. name: "Front (Maid)",
  33498. image: {
  33499. source: "./media/characters/midnight-tales/front-maid.svg",
  33500. extra: 489/454,
  33501. bottom: 61/550
  33502. }
  33503. },
  33504. frontFormal: {
  33505. height: math.unit(5 + 5/12, "feet"),
  33506. weight: math.unit(130, "lb"),
  33507. name: "Front (Formal)",
  33508. image: {
  33509. source: "./media/characters/midnight-tales/front-formal.svg",
  33510. extra: 489/454,
  33511. bottom: 61/550
  33512. }
  33513. },
  33514. back: {
  33515. height: math.unit(5 + 5/12, "feet"),
  33516. weight: math.unit(130, "lb"),
  33517. name: "Back",
  33518. image: {
  33519. source: "./media/characters/midnight-tales/back.svg",
  33520. extra: 498/456,
  33521. bottom: 33/531
  33522. }
  33523. },
  33524. frontBeast: {
  33525. height: math.unit(40, "feet"),
  33526. weight: math.unit(64000, "lb"),
  33527. name: "Front (Beast)",
  33528. image: {
  33529. source: "./media/characters/midnight-tales/front-beast.svg",
  33530. extra: 927/860,
  33531. bottom: 53/980
  33532. }
  33533. },
  33534. backBeast: {
  33535. height: math.unit(40, "feet"),
  33536. weight: math.unit(64000, "lb"),
  33537. name: "Back (Beast)",
  33538. image: {
  33539. source: "./media/characters/midnight-tales/back-beast.svg",
  33540. extra: 929/855,
  33541. bottom: 16/945
  33542. }
  33543. },
  33544. footBeast: {
  33545. height: math.unit(6.7, "feet"),
  33546. name: "Foot (Beast)",
  33547. image: {
  33548. source: "./media/characters/midnight-tales/foot-beast.svg"
  33549. }
  33550. },
  33551. headBeast: {
  33552. height: math.unit(8, "feet"),
  33553. name: "Head (Beast)",
  33554. image: {
  33555. source: "./media/characters/midnight-tales/head-beast.svg"
  33556. }
  33557. },
  33558. },
  33559. [
  33560. {
  33561. name: "Normal",
  33562. height: math.unit(5 + 5 / 12, "feet"),
  33563. default: true
  33564. },
  33565. {
  33566. name: "Macro",
  33567. height: math.unit(25, "feet")
  33568. },
  33569. ]
  33570. ))
  33571. characterMakers.push(() => makeCharacter(
  33572. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33573. {
  33574. front: {
  33575. height: math.unit(5 + 10/12, "feet"),
  33576. name: "Front",
  33577. image: {
  33578. source: "./media/characters/argon/front.svg",
  33579. extra: 2009/1935,
  33580. bottom: 118/2127
  33581. }
  33582. },
  33583. back: {
  33584. height: math.unit(5 + 10/12, "feet"),
  33585. name: "Back",
  33586. image: {
  33587. source: "./media/characters/argon/back.svg",
  33588. extra: 2047/1992,
  33589. bottom: 20/2067
  33590. }
  33591. },
  33592. frontDressed: {
  33593. height: math.unit(5 + 10/12, "feet"),
  33594. name: "Front (Dressed)",
  33595. image: {
  33596. source: "./media/characters/argon/front-dressed.svg",
  33597. extra: 2009/1935,
  33598. bottom: 118/2127
  33599. }
  33600. },
  33601. },
  33602. [
  33603. {
  33604. name: "Normal",
  33605. height: math.unit(5 + 10/12, "feet"),
  33606. default: true
  33607. },
  33608. ]
  33609. ))
  33610. characterMakers.push(() => makeCharacter(
  33611. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33612. {
  33613. front: {
  33614. height: math.unit(8 + 6/12, "feet"),
  33615. weight: math.unit(1150, "lb"),
  33616. name: "Front",
  33617. image: {
  33618. source: "./media/characters/kichi/front.svg",
  33619. extra: 1267/1164,
  33620. bottom: 61/1328
  33621. }
  33622. },
  33623. back: {
  33624. height: math.unit(8 + 6/12, "feet"),
  33625. weight: math.unit(1150, "lb"),
  33626. name: "Back",
  33627. image: {
  33628. source: "./media/characters/kichi/back.svg",
  33629. extra: 1273/1166,
  33630. bottom: 33/1306
  33631. }
  33632. },
  33633. },
  33634. [
  33635. {
  33636. name: "Normal",
  33637. height: math.unit(8 + 6/12, "feet"),
  33638. default: true
  33639. },
  33640. ]
  33641. ))
  33642. characterMakers.push(() => makeCharacter(
  33643. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33644. {
  33645. front: {
  33646. height: math.unit(6, "feet"),
  33647. weight: math.unit(210, "lb"),
  33648. name: "Front",
  33649. image: {
  33650. source: "./media/characters/manetel-greyscale/front.svg",
  33651. extra: 350/312,
  33652. bottom: 8/358
  33653. }
  33654. },
  33655. },
  33656. [
  33657. {
  33658. name: "Micro",
  33659. height: math.unit(2, "inches")
  33660. },
  33661. {
  33662. name: "Normal",
  33663. height: math.unit(6, "feet"),
  33664. default: true
  33665. },
  33666. {
  33667. name: "Minimacro",
  33668. height: math.unit(17, "feet")
  33669. },
  33670. {
  33671. name: "Macro",
  33672. height: math.unit(117, "feet")
  33673. },
  33674. ]
  33675. ))
  33676. characterMakers.push(() => makeCharacter(
  33677. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33678. {
  33679. side: {
  33680. height: math.unit(5 + 1/12, "feet"),
  33681. weight: math.unit(418, "lb"),
  33682. name: "Side",
  33683. image: {
  33684. source: "./media/characters/softpurr/side.svg",
  33685. extra: 1993/1945,
  33686. bottom: 134/2127
  33687. }
  33688. },
  33689. front: {
  33690. height: math.unit(5 + 1/12, "feet"),
  33691. weight: math.unit(418, "lb"),
  33692. name: "Front",
  33693. image: {
  33694. source: "./media/characters/softpurr/front.svg",
  33695. extra: 1950/1856,
  33696. bottom: 174/2124
  33697. }
  33698. },
  33699. paw: {
  33700. height: math.unit(1, "feet"),
  33701. name: "Paw",
  33702. image: {
  33703. source: "./media/characters/softpurr/paw.svg"
  33704. }
  33705. },
  33706. },
  33707. [
  33708. {
  33709. name: "Normal",
  33710. height: math.unit(5 + 1/12, "feet"),
  33711. default: true
  33712. },
  33713. ]
  33714. ))
  33715. characterMakers.push(() => makeCharacter(
  33716. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33717. {
  33718. front: {
  33719. height: math.unit(260, "meters"),
  33720. name: "Front",
  33721. image: {
  33722. source: "./media/characters/anahita/front.svg",
  33723. extra: 665/635,
  33724. bottom: 89/754
  33725. }
  33726. },
  33727. },
  33728. [
  33729. {
  33730. name: "Macro",
  33731. height: math.unit(260, "meters"),
  33732. default: true
  33733. },
  33734. ]
  33735. ))
  33736. characterMakers.push(() => makeCharacter(
  33737. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33738. {
  33739. front: {
  33740. height: math.unit(4 + 10/12, "feet"),
  33741. weight: math.unit(160, "lb"),
  33742. name: "Front",
  33743. image: {
  33744. source: "./media/characters/chip-mouse/front.svg",
  33745. extra: 3528/3408,
  33746. bottom: 0/3528
  33747. }
  33748. },
  33749. frontNsfw: {
  33750. height: math.unit(4 + 10/12, "feet"),
  33751. weight: math.unit(160, "lb"),
  33752. name: "Front (NSFW)",
  33753. image: {
  33754. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33755. extra: 3528/3408,
  33756. bottom: 0/3528
  33757. }
  33758. },
  33759. },
  33760. [
  33761. {
  33762. name: "Normal",
  33763. height: math.unit(4 + 10/12, "feet"),
  33764. default: true
  33765. },
  33766. ]
  33767. ))
  33768. characterMakers.push(() => makeCharacter(
  33769. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33770. {
  33771. side: {
  33772. height: math.unit(10, "feet"),
  33773. weight: math.unit(14000, "lb"),
  33774. name: "Side",
  33775. image: {
  33776. source: "./media/characters/kremm/side.svg",
  33777. extra: 1390/1053,
  33778. bottom: 90/1480
  33779. }
  33780. },
  33781. gut: {
  33782. height: math.unit(5.8, "feet"),
  33783. name: "Gut",
  33784. image: {
  33785. source: "./media/characters/kremm/gut.svg"
  33786. }
  33787. },
  33788. ass: {
  33789. height: math.unit(6.1, "feet"),
  33790. name: "Ass",
  33791. image: {
  33792. source: "./media/characters/kremm/ass.svg"
  33793. }
  33794. },
  33795. jaws: {
  33796. height: math.unit(2.2, "feet"),
  33797. name: "Jaws",
  33798. image: {
  33799. source: "./media/characters/kremm/jaws.svg"
  33800. }
  33801. },
  33802. dick: {
  33803. height: math.unit(4.26, "feet"),
  33804. name: "Dick",
  33805. image: {
  33806. source: "./media/characters/kremm/dick.svg"
  33807. }
  33808. },
  33809. },
  33810. [
  33811. {
  33812. name: "Normal",
  33813. height: math.unit(10, "feet"),
  33814. default: true
  33815. },
  33816. ]
  33817. ))
  33818. characterMakers.push(() => makeCharacter(
  33819. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33820. {
  33821. front: {
  33822. height: math.unit(30, "stories"),
  33823. name: "Front",
  33824. image: {
  33825. source: "./media/characters/kai/front.svg",
  33826. extra: 1892/1718,
  33827. bottom: 162/2054
  33828. }
  33829. },
  33830. },
  33831. [
  33832. {
  33833. name: "Macro",
  33834. height: math.unit(30, "stories"),
  33835. default: true
  33836. },
  33837. ]
  33838. ))
  33839. characterMakers.push(() => makeCharacter(
  33840. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33841. {
  33842. front: {
  33843. height: math.unit(6 + 4/12, "feet"),
  33844. weight: math.unit(145, "lb"),
  33845. name: "Front",
  33846. image: {
  33847. source: "./media/characters/sykes/front.svg",
  33848. extra: 1321 / 1187,
  33849. bottom: 66 / 1387
  33850. }
  33851. },
  33852. back: {
  33853. height: math.unit(6 + 4/12, "feet"),
  33854. weight: math.unit(145, "lb"),
  33855. name: "Back",
  33856. image: {
  33857. source: "./media/characters/sykes/back.svg",
  33858. extra: 1326/1181,
  33859. bottom: 31/1357
  33860. }
  33861. },
  33862. handBack: {
  33863. height: math.unit(0.9, "feet"),
  33864. name: "Hand (Back)",
  33865. image: {
  33866. source: "./media/characters/sykes/hand-back.svg"
  33867. }
  33868. },
  33869. handFront: {
  33870. height: math.unit(0.839, "feet"),
  33871. name: "Hand (Front)",
  33872. image: {
  33873. source: "./media/characters/sykes/hand-front.svg"
  33874. }
  33875. },
  33876. leftFoot: {
  33877. height: math.unit(1.2, "feet"),
  33878. name: "Foot (Left)",
  33879. image: {
  33880. source: "./media/characters/sykes/foot-left.svg"
  33881. }
  33882. },
  33883. rightFoot: {
  33884. height: math.unit(1.2, "feet"),
  33885. name: "Foot (Right)",
  33886. image: {
  33887. source: "./media/characters/sykes/foot-right.svg"
  33888. }
  33889. },
  33890. maw: {
  33891. height: math.unit(1.93, "feet"),
  33892. name: "Maw",
  33893. image: {
  33894. source: "./media/characters/sykes/maw.svg"
  33895. }
  33896. },
  33897. teeth: {
  33898. height: math.unit(0.51, "feet"),
  33899. name: "Teeth",
  33900. image: {
  33901. source: "./media/characters/sykes/teeth.svg"
  33902. }
  33903. },
  33904. tongue: {
  33905. height: math.unit(2.13, "feet"),
  33906. name: "Tongue",
  33907. image: {
  33908. source: "./media/characters/sykes/tongue.svg"
  33909. }
  33910. },
  33911. uvula: {
  33912. height: math.unit(0.16, "feet"),
  33913. name: "Uvula",
  33914. image: {
  33915. source: "./media/characters/sykes/uvula.svg"
  33916. }
  33917. },
  33918. collar: {
  33919. height: math.unit(0.287, "feet"),
  33920. name: "Collar",
  33921. image: {
  33922. source: "./media/characters/sykes/collar.svg"
  33923. }
  33924. },
  33925. },
  33926. [
  33927. {
  33928. name: "Shrunken",
  33929. height: math.unit(5, "inches")
  33930. },
  33931. {
  33932. name: "Normal",
  33933. height: math.unit(6 + 4 / 12, "feet"),
  33934. default: true
  33935. },
  33936. {
  33937. name: "Big",
  33938. height: math.unit(15, "feet")
  33939. },
  33940. ]
  33941. ))
  33942. characterMakers.push(() => makeCharacter(
  33943. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33944. {
  33945. front: {
  33946. height: math.unit(5 + 8/12, "feet"),
  33947. weight: math.unit(190, "lb"),
  33948. name: "Front",
  33949. image: {
  33950. source: "./media/characters/oven-otter/front.svg",
  33951. extra: 1809/1740,
  33952. bottom: 181/1990
  33953. }
  33954. },
  33955. back: {
  33956. height: math.unit(5 + 8/12, "feet"),
  33957. weight: math.unit(190, "lb"),
  33958. name: "Back",
  33959. image: {
  33960. source: "./media/characters/oven-otter/back.svg",
  33961. extra: 1709/1635,
  33962. bottom: 118/1827
  33963. }
  33964. },
  33965. hand: {
  33966. height: math.unit(1.07, "feet"),
  33967. name: "Hand",
  33968. image: {
  33969. source: "./media/characters/oven-otter/hand.svg"
  33970. }
  33971. },
  33972. beans: {
  33973. height: math.unit(1.74, "feet"),
  33974. name: "Beans",
  33975. image: {
  33976. source: "./media/characters/oven-otter/beans.svg"
  33977. }
  33978. },
  33979. },
  33980. [
  33981. {
  33982. name: "Micro",
  33983. height: math.unit(0.5, "inches")
  33984. },
  33985. {
  33986. name: "Normal",
  33987. height: math.unit(5 + 8/12, "feet"),
  33988. default: true
  33989. },
  33990. {
  33991. name: "Macro",
  33992. height: math.unit(250, "feet")
  33993. },
  33994. {
  33995. name: "Really High",
  33996. height: math.unit(420, "feet")
  33997. },
  33998. ]
  33999. ))
  34000. characterMakers.push(() => makeCharacter(
  34001. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34002. {
  34003. front: {
  34004. height: math.unit(5, "meters"),
  34005. weight: math.unit(292000000000000, "kg"),
  34006. name: "Front",
  34007. image: {
  34008. source: "./media/characters/devourer/front.svg",
  34009. extra: 1800/1733,
  34010. bottom: 211/2011
  34011. }
  34012. },
  34013. maw: {
  34014. height: math.unit(1.1, "meter"),
  34015. name: "Maw",
  34016. image: {
  34017. source: "./media/characters/devourer/maw.svg"
  34018. }
  34019. },
  34020. },
  34021. [
  34022. {
  34023. name: "Small",
  34024. height: math.unit(3, "meters")
  34025. },
  34026. {
  34027. name: "Large",
  34028. height: math.unit(5, "meters"),
  34029. default: true
  34030. },
  34031. ]
  34032. ))
  34033. characterMakers.push(() => makeCharacter(
  34034. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34035. {
  34036. front: {
  34037. height: math.unit(6, "feet"),
  34038. weight: math.unit(400, "lb"),
  34039. name: "Front",
  34040. image: {
  34041. source: "./media/characters/ellarby/front.svg",
  34042. extra: 1909/1763,
  34043. bottom: 80/1989
  34044. }
  34045. },
  34046. back: {
  34047. height: math.unit(6, "feet"),
  34048. weight: math.unit(400, "lb"),
  34049. name: "Back",
  34050. image: {
  34051. source: "./media/characters/ellarby/back.svg",
  34052. extra: 1914/1784,
  34053. bottom: 172/2086
  34054. }
  34055. },
  34056. },
  34057. [
  34058. {
  34059. name: "Mischief",
  34060. height: math.unit(18, "inches")
  34061. },
  34062. {
  34063. name: "Trouble",
  34064. height: math.unit(12, "feet")
  34065. },
  34066. {
  34067. name: "Havoc",
  34068. height: math.unit(200, "feet"),
  34069. default: true
  34070. },
  34071. {
  34072. name: "Pandemonium",
  34073. height: math.unit(1, "mile")
  34074. },
  34075. {
  34076. name: "Catastrophe",
  34077. height: math.unit(100, "miles")
  34078. },
  34079. ]
  34080. ))
  34081. characterMakers.push(() => makeCharacter(
  34082. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34083. {
  34084. front: {
  34085. height: math.unit(4.7, "meters"),
  34086. weight: math.unit(6500, "kg"),
  34087. name: "Front",
  34088. image: {
  34089. source: "./media/characters/vex/front.svg",
  34090. extra: 1288/1140,
  34091. bottom: 100/1388
  34092. }
  34093. },
  34094. },
  34095. [
  34096. {
  34097. name: "Normal",
  34098. height: math.unit(4.7, "meters"),
  34099. default: true
  34100. },
  34101. ]
  34102. ))
  34103. characterMakers.push(() => makeCharacter(
  34104. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34105. {
  34106. normal: {
  34107. height: math.unit(6, "feet"),
  34108. weight: math.unit(350, "lb"),
  34109. name: "Normal",
  34110. image: {
  34111. source: "./media/characters/teshy/normal.svg",
  34112. extra: 1795/1735,
  34113. bottom: 16/1811
  34114. }
  34115. },
  34116. monsterFront: {
  34117. height: math.unit(12, "feet"),
  34118. weight: math.unit(4700, "lb"),
  34119. name: "Monster (Front)",
  34120. image: {
  34121. source: "./media/characters/teshy/monster-front.svg",
  34122. extra: 2042/2034,
  34123. bottom: 128/2170
  34124. }
  34125. },
  34126. monsterSide: {
  34127. height: math.unit(12, "feet"),
  34128. weight: math.unit(4700, "lb"),
  34129. name: "Monster (Side)",
  34130. image: {
  34131. source: "./media/characters/teshy/monster-side.svg",
  34132. extra: 2067/2056,
  34133. bottom: 70/2137
  34134. }
  34135. },
  34136. monsterBack: {
  34137. height: math.unit(12, "feet"),
  34138. weight: math.unit(4700, "lb"),
  34139. name: "Monster (Back)",
  34140. image: {
  34141. source: "./media/characters/teshy/monster-back.svg",
  34142. extra: 1921/1914,
  34143. bottom: 171/2092
  34144. }
  34145. },
  34146. },
  34147. [
  34148. {
  34149. name: "Normal",
  34150. height: math.unit(6, "feet"),
  34151. default: true
  34152. },
  34153. ]
  34154. ))
  34155. characterMakers.push(() => makeCharacter(
  34156. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34157. {
  34158. front: {
  34159. height: math.unit(6, "feet"),
  34160. name: "Front",
  34161. image: {
  34162. source: "./media/characters/ramey/front.svg",
  34163. extra: 790/787,
  34164. bottom: 27/817
  34165. }
  34166. },
  34167. },
  34168. [
  34169. {
  34170. name: "Normal",
  34171. height: math.unit(6, "feet"),
  34172. default: true
  34173. },
  34174. ]
  34175. ))
  34176. characterMakers.push(() => makeCharacter(
  34177. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34178. {
  34179. front: {
  34180. height: math.unit(5 + 5/12, "feet"),
  34181. weight: math.unit(120, "lb"),
  34182. name: "Front",
  34183. image: {
  34184. source: "./media/characters/phirae/front.svg",
  34185. extra: 2491/2436,
  34186. bottom: 38/2529
  34187. }
  34188. },
  34189. },
  34190. [
  34191. {
  34192. name: "Normal",
  34193. height: math.unit(5 + 5/12, "feet"),
  34194. default: true
  34195. },
  34196. ]
  34197. ))
  34198. characterMakers.push(() => makeCharacter(
  34199. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  34200. {
  34201. front: {
  34202. height: math.unit(5 + 3/12, "feet"),
  34203. name: "Front",
  34204. image: {
  34205. source: "./media/characters/stagglas/front.svg",
  34206. extra: 962/882,
  34207. bottom: 53/1015
  34208. }
  34209. },
  34210. feral: {
  34211. height: math.unit(335, "cm"),
  34212. name: "Feral",
  34213. image: {
  34214. source: "./media/characters/stagglas/feral.svg",
  34215. extra: 1732/1090,
  34216. bottom: 48/1780
  34217. }
  34218. },
  34219. },
  34220. [
  34221. {
  34222. name: "Normal",
  34223. height: math.unit(5 + 3/12, "feet"),
  34224. default: true
  34225. },
  34226. ]
  34227. ))
  34228. characterMakers.push(() => makeCharacter(
  34229. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  34230. {
  34231. front: {
  34232. height: math.unit(5 + 4/12, "feet"),
  34233. weight: math.unit(145, "lb"),
  34234. name: "Front",
  34235. image: {
  34236. source: "./media/characters/starra/front.svg",
  34237. extra: 1790/1691,
  34238. bottom: 91/1881
  34239. }
  34240. },
  34241. },
  34242. [
  34243. {
  34244. name: "Normal",
  34245. height: math.unit(5 + 4/12, "feet"),
  34246. default: true
  34247. },
  34248. ]
  34249. ))
  34250. characterMakers.push(() => makeCharacter(
  34251. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34252. {
  34253. front: {
  34254. height: math.unit(2.2, "meters"),
  34255. name: "Front",
  34256. image: {
  34257. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  34258. extra: 1194/1005,
  34259. bottom: 25/1219
  34260. }
  34261. },
  34262. },
  34263. [
  34264. {
  34265. name: "Normal",
  34266. height: math.unit(2.2, "meters"),
  34267. default: true
  34268. },
  34269. ]
  34270. ))
  34271. characterMakers.push(() => makeCharacter(
  34272. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34273. {
  34274. side: {
  34275. height: math.unit(8 + 2/12, "feet"),
  34276. weight: math.unit(1240, "lb"),
  34277. name: "Side",
  34278. image: {
  34279. source: "./media/characters/mika-valentine/side.svg",
  34280. extra: 2670/2501,
  34281. bottom: 250/2920
  34282. }
  34283. },
  34284. },
  34285. [
  34286. {
  34287. name: "Normal",
  34288. height: math.unit(8 + 2/12, "feet"),
  34289. default: true
  34290. },
  34291. ]
  34292. ))
  34293. characterMakers.push(() => makeCharacter(
  34294. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34295. {
  34296. front: {
  34297. height: math.unit(7 + 2/12, "feet"),
  34298. name: "Front",
  34299. image: {
  34300. source: "./media/characters/xoltol/front.svg",
  34301. extra: 2212/2124,
  34302. bottom: 84/2296
  34303. }
  34304. },
  34305. side: {
  34306. height: math.unit(7 + 2/12, "feet"),
  34307. name: "Side",
  34308. image: {
  34309. source: "./media/characters/xoltol/side.svg",
  34310. extra: 2273/2197,
  34311. bottom: 26/2299
  34312. }
  34313. },
  34314. hand: {
  34315. height: math.unit(2.5, "feet"),
  34316. name: "Hand",
  34317. image: {
  34318. source: "./media/characters/xoltol/hand.svg"
  34319. }
  34320. },
  34321. },
  34322. [
  34323. {
  34324. name: "Small-ish",
  34325. height: math.unit(5 + 11/12, "feet")
  34326. },
  34327. {
  34328. name: "Normal",
  34329. height: math.unit(7 + 2/12, "feet")
  34330. },
  34331. {
  34332. name: "\"Macro\"",
  34333. height: math.unit(14 + 9/12, "feet"),
  34334. default: true
  34335. },
  34336. {
  34337. name: "Alternate Height",
  34338. height: math.unit(20, "feet")
  34339. },
  34340. {
  34341. name: "Actually Macro",
  34342. height: math.unit(100, "feet")
  34343. },
  34344. ]
  34345. ))
  34346. characterMakers.push(() => makeCharacter(
  34347. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34348. {
  34349. front: {
  34350. height: math.unit(5 + 2/12, "feet"),
  34351. name: "Front",
  34352. image: {
  34353. source: "./media/characters/kotetsu-redwood/front.svg",
  34354. extra: 1053/942,
  34355. bottom: 60/1113
  34356. }
  34357. },
  34358. },
  34359. [
  34360. {
  34361. name: "Normal",
  34362. height: math.unit(5 + 2/12, "feet"),
  34363. default: true
  34364. },
  34365. ]
  34366. ))
  34367. characterMakers.push(() => makeCharacter(
  34368. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34369. {
  34370. front: {
  34371. height: math.unit(2.4, "meters"),
  34372. weight: math.unit(125, "kg"),
  34373. name: "Front",
  34374. image: {
  34375. source: "./media/characters/lilith/front.svg",
  34376. extra: 1590/1513,
  34377. bottom: 203/1793
  34378. }
  34379. },
  34380. },
  34381. [
  34382. {
  34383. name: "Humanoid",
  34384. height: math.unit(2.4, "meters")
  34385. },
  34386. {
  34387. name: "Normal",
  34388. height: math.unit(6, "meters"),
  34389. default: true
  34390. },
  34391. {
  34392. name: "Largest",
  34393. height: math.unit(55, "meters")
  34394. },
  34395. ]
  34396. ))
  34397. characterMakers.push(() => makeCharacter(
  34398. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34399. {
  34400. front: {
  34401. height: math.unit(8 + 4/12, "feet"),
  34402. weight: math.unit(535, "lb"),
  34403. name: "Front",
  34404. image: {
  34405. source: "./media/characters/beh'kah-bolger/front.svg",
  34406. extra: 1660/1603,
  34407. bottom: 37/1697
  34408. }
  34409. },
  34410. },
  34411. [
  34412. {
  34413. name: "Normal",
  34414. height: math.unit(8 + 4/12, "feet"),
  34415. default: true
  34416. },
  34417. {
  34418. name: "Kaiju",
  34419. height: math.unit(250, "feet")
  34420. },
  34421. {
  34422. name: "Still Growing",
  34423. height: math.unit(10, "miles")
  34424. },
  34425. {
  34426. name: "Continental",
  34427. height: math.unit(5000, "miles")
  34428. },
  34429. {
  34430. name: "Final Form",
  34431. height: math.unit(2500000, "miles")
  34432. },
  34433. ]
  34434. ))
  34435. characterMakers.push(() => makeCharacter(
  34436. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34437. {
  34438. front: {
  34439. height: math.unit(7 + 2/12, "feet"),
  34440. weight: math.unit(230, "kg"),
  34441. name: "Front",
  34442. image: {
  34443. source: "./media/characters/tatyana-milewska/front.svg",
  34444. extra: 1199/1150,
  34445. bottom: 86/1285
  34446. }
  34447. },
  34448. },
  34449. [
  34450. {
  34451. name: "Normal",
  34452. height: math.unit(7 + 2/12, "feet"),
  34453. default: true
  34454. },
  34455. {
  34456. name: "Big",
  34457. height: math.unit(12, "feet")
  34458. },
  34459. {
  34460. name: "Minimacro",
  34461. height: math.unit(20, "feet")
  34462. },
  34463. {
  34464. name: "Macro",
  34465. height: math.unit(120, "feet")
  34466. },
  34467. ]
  34468. ))
  34469. characterMakers.push(() => makeCharacter(
  34470. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34471. {
  34472. front: {
  34473. height: math.unit(7 + 8/12, "feet"),
  34474. weight: math.unit(152, "kg"),
  34475. name: "Front",
  34476. image: {
  34477. source: "./media/characters/helen-arri/front.svg",
  34478. extra: 440/423,
  34479. bottom: 14/454
  34480. }
  34481. },
  34482. back: {
  34483. height: math.unit(7 + 8/12, "feet"),
  34484. weight: math.unit(152, "kg"),
  34485. name: "Back",
  34486. image: {
  34487. source: "./media/characters/helen-arri/back.svg",
  34488. extra: 443/426,
  34489. bottom: 8/451
  34490. }
  34491. },
  34492. },
  34493. [
  34494. {
  34495. name: "Normal",
  34496. height: math.unit(7 + 8/12, "feet"),
  34497. default: true
  34498. },
  34499. {
  34500. name: "Big",
  34501. height: math.unit(14, "feet")
  34502. },
  34503. {
  34504. name: "Minimacro",
  34505. height: math.unit(24, "feet")
  34506. },
  34507. {
  34508. name: "Macro",
  34509. height: math.unit(140, "feet")
  34510. },
  34511. ]
  34512. ))
  34513. characterMakers.push(() => makeCharacter(
  34514. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34515. {
  34516. front: {
  34517. height: math.unit(6, "meters"),
  34518. name: "Front",
  34519. image: {
  34520. source: "./media/characters/ehanu-rehu/front.svg",
  34521. extra: 1800/1800,
  34522. bottom: 59/1859
  34523. }
  34524. },
  34525. },
  34526. [
  34527. {
  34528. name: "Normal",
  34529. height: math.unit(6, "meters"),
  34530. default: true
  34531. },
  34532. ]
  34533. ))
  34534. characterMakers.push(() => makeCharacter(
  34535. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34536. {
  34537. front: {
  34538. height: math.unit(7 + 3/12, "feet"),
  34539. name: "Front",
  34540. image: {
  34541. source: "./media/characters/renholder/front.svg",
  34542. extra: 3096/2960,
  34543. bottom: 250/3346
  34544. }
  34545. },
  34546. },
  34547. [
  34548. {
  34549. name: "Normal Bat",
  34550. height: math.unit(7 + 3/12, "feet"),
  34551. default: true
  34552. },
  34553. {
  34554. name: "Slightly Tall Bat",
  34555. height: math.unit(100, "feet")
  34556. },
  34557. {
  34558. name: "Big Bat",
  34559. height: math.unit(1000, "feet")
  34560. },
  34561. {
  34562. name: "City-Sized Bat",
  34563. height: math.unit(200000, "feet")
  34564. },
  34565. {
  34566. name: "Bigger Bat",
  34567. height: math.unit(10000, "miles")
  34568. },
  34569. {
  34570. name: "Solar Sized Bat",
  34571. height: math.unit(100, "AU")
  34572. },
  34573. {
  34574. name: "Galactic Bat",
  34575. height: math.unit(200000, "lightyears")
  34576. },
  34577. {
  34578. name: "Universally Known Bat",
  34579. height: math.unit(1, "universe")
  34580. },
  34581. ]
  34582. ))
  34583. characterMakers.push(() => makeCharacter(
  34584. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34585. {
  34586. front: {
  34587. height: math.unit(6 + 11/12, "feet"),
  34588. weight: math.unit(250, "lb"),
  34589. name: "Front",
  34590. image: {
  34591. source: "./media/characters/cookiecat/front.svg",
  34592. extra: 893/827,
  34593. bottom: 14/907
  34594. }
  34595. },
  34596. },
  34597. [
  34598. {
  34599. name: "Micro",
  34600. height: math.unit(3, "inches")
  34601. },
  34602. {
  34603. name: "Normal",
  34604. height: math.unit(6 + 11/12, "feet"),
  34605. default: true
  34606. },
  34607. {
  34608. name: "Macro",
  34609. height: math.unit(100, "feet")
  34610. },
  34611. {
  34612. name: "Macro+",
  34613. height: math.unit(404, "feet")
  34614. },
  34615. {
  34616. name: "Megamacro",
  34617. height: math.unit(165, "miles")
  34618. },
  34619. {
  34620. name: "Planetary",
  34621. height: math.unit(4600, "miles")
  34622. },
  34623. ]
  34624. ))
  34625. characterMakers.push(() => makeCharacter(
  34626. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34627. {
  34628. front: {
  34629. height: math.unit(10 + 3/12, "feet"),
  34630. weight: math.unit(1500, "lb"),
  34631. name: "Front",
  34632. image: {
  34633. source: "./media/characters/tux-kusanagi/front.svg",
  34634. extra: 944/840,
  34635. bottom: 39/983
  34636. }
  34637. },
  34638. back: {
  34639. height: math.unit(10 + 3/12, "feet"),
  34640. weight: math.unit(1500, "lb"),
  34641. name: "Back",
  34642. image: {
  34643. source: "./media/characters/tux-kusanagi/back.svg",
  34644. extra: 941/842,
  34645. bottom: 28/969
  34646. }
  34647. },
  34648. rump: {
  34649. height: math.unit(5.25, "feet"),
  34650. name: "Rump",
  34651. image: {
  34652. source: "./media/characters/tux-kusanagi/rump.svg"
  34653. }
  34654. },
  34655. beak: {
  34656. height: math.unit(1.54, "feet"),
  34657. name: "Beak",
  34658. image: {
  34659. source: "./media/characters/tux-kusanagi/beak.svg"
  34660. }
  34661. },
  34662. },
  34663. [
  34664. {
  34665. name: "Normal",
  34666. height: math.unit(10 + 3/12, "feet"),
  34667. default: true
  34668. },
  34669. ]
  34670. ))
  34671. characterMakers.push(() => makeCharacter(
  34672. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34673. {
  34674. front: {
  34675. height: math.unit(58, "feet"),
  34676. weight: math.unit(200, "tons"),
  34677. name: "Front",
  34678. image: {
  34679. source: "./media/characters/uzarmazari/front.svg",
  34680. extra: 1575/1455,
  34681. bottom: 152/1727
  34682. }
  34683. },
  34684. back: {
  34685. height: math.unit(58, "feet"),
  34686. weight: math.unit(200, "tons"),
  34687. name: "Back",
  34688. image: {
  34689. source: "./media/characters/uzarmazari/back.svg",
  34690. extra: 1585/1510,
  34691. bottom: 157/1742
  34692. }
  34693. },
  34694. head: {
  34695. height: math.unit(26, "feet"),
  34696. name: "Head",
  34697. image: {
  34698. source: "./media/characters/uzarmazari/head.svg"
  34699. }
  34700. },
  34701. },
  34702. [
  34703. {
  34704. name: "Normal",
  34705. height: math.unit(58, "feet"),
  34706. default: true
  34707. },
  34708. ]
  34709. ))
  34710. characterMakers.push(() => makeCharacter(
  34711. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34712. {
  34713. side: {
  34714. height: math.unit(15, "feet"),
  34715. name: "Side",
  34716. image: {
  34717. source: "./media/characters/akitu/side.svg",
  34718. extra: 1421/1321,
  34719. bottom: 157/1578
  34720. }
  34721. },
  34722. front: {
  34723. height: math.unit(15, "feet"),
  34724. name: "Front",
  34725. image: {
  34726. source: "./media/characters/akitu/front.svg",
  34727. extra: 1435/1326,
  34728. bottom: 232/1667
  34729. }
  34730. },
  34731. },
  34732. [
  34733. {
  34734. name: "Normal",
  34735. height: math.unit(15, "feet"),
  34736. default: true
  34737. },
  34738. ]
  34739. ))
  34740. characterMakers.push(() => makeCharacter(
  34741. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34742. {
  34743. front: {
  34744. height: math.unit(10 + 8/12, "feet"),
  34745. name: "Front",
  34746. image: {
  34747. source: "./media/characters/azalie-croixland/front.svg",
  34748. extra: 1972/1856,
  34749. bottom: 31/2003
  34750. }
  34751. },
  34752. },
  34753. [
  34754. {
  34755. name: "Original Height",
  34756. height: math.unit(5 + 4/12, "feet")
  34757. },
  34758. {
  34759. name: "Normal Height",
  34760. height: math.unit(10 + 8/12, "feet"),
  34761. default: true
  34762. },
  34763. ]
  34764. ))
  34765. characterMakers.push(() => makeCharacter(
  34766. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34767. {
  34768. side: {
  34769. height: math.unit(7 + 1/12, "feet"),
  34770. weight: math.unit(245, "lb"),
  34771. name: "Side",
  34772. image: {
  34773. source: "./media/characters/kavus-kazian/side.svg",
  34774. extra: 349/342,
  34775. bottom: 15/364
  34776. }
  34777. },
  34778. },
  34779. [
  34780. {
  34781. name: "Normal",
  34782. height: math.unit(7 + 1/12, "feet"),
  34783. default: true
  34784. },
  34785. ]
  34786. ))
  34787. characterMakers.push(() => makeCharacter(
  34788. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34789. {
  34790. normal: {
  34791. height: math.unit(5 + 11/12, "feet"),
  34792. name: "Normal",
  34793. image: {
  34794. source: "./media/characters/moonlight-rose/normal.svg",
  34795. extra: 1979/1835,
  34796. bottom: 14/1993
  34797. }
  34798. },
  34799. demon: {
  34800. height: math.unit(5, "km"),
  34801. name: "Demon",
  34802. image: {
  34803. source: "./media/characters/moonlight-rose/demon.svg",
  34804. extra: 986/916,
  34805. bottom: 28/1014
  34806. }
  34807. },
  34808. },
  34809. [
  34810. {
  34811. name: "\"Natural\" height",
  34812. height: math.unit(5 + 11/12, "feet")
  34813. },
  34814. {
  34815. name: "Comfortable Size",
  34816. height: math.unit(40, "meters")
  34817. },
  34818. {
  34819. name: "Common Size",
  34820. height: math.unit(50, "km"),
  34821. default: true
  34822. },
  34823. {
  34824. name: "Demonic",
  34825. height: math.unit(1.24415e+21, "meters")
  34826. },
  34827. ]
  34828. ))
  34829. characterMakers.push(() => makeCharacter(
  34830. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34831. {
  34832. front: {
  34833. height: math.unit(16, "feet"),
  34834. weight: math.unit(610, "kg"),
  34835. name: "Front",
  34836. image: {
  34837. source: "./media/characters/huckle/front.svg",
  34838. extra: 1731/1625,
  34839. bottom: 33/1764
  34840. }
  34841. },
  34842. back: {
  34843. height: math.unit(16, "feet"),
  34844. weight: math.unit(610, "kg"),
  34845. name: "Back",
  34846. image: {
  34847. source: "./media/characters/huckle/back.svg",
  34848. extra: 1738/1651,
  34849. bottom: 37/1775
  34850. }
  34851. },
  34852. laughing: {
  34853. height: math.unit(3.75, "feet"),
  34854. name: "Laughing",
  34855. image: {
  34856. source: "./media/characters/huckle/laughing.svg"
  34857. }
  34858. },
  34859. angry: {
  34860. height: math.unit(4.15, "feet"),
  34861. name: "Angry",
  34862. image: {
  34863. source: "./media/characters/huckle/angry.svg"
  34864. }
  34865. },
  34866. },
  34867. [
  34868. {
  34869. name: "Normal",
  34870. height: math.unit(16, "feet"),
  34871. default: true
  34872. },
  34873. {
  34874. name: "Mini Macro",
  34875. height: math.unit(463, "feet")
  34876. },
  34877. {
  34878. name: "Macro",
  34879. height: math.unit(1680, "meters")
  34880. },
  34881. {
  34882. name: "Mega Macro",
  34883. height: math.unit(175, "km")
  34884. },
  34885. {
  34886. name: "Terra Macro",
  34887. height: math.unit(32, "gigameters")
  34888. },
  34889. {
  34890. name: "Multiverse+",
  34891. height: math.unit(2.56e23, "yottameters")
  34892. },
  34893. ]
  34894. ))
  34895. characterMakers.push(() => makeCharacter(
  34896. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34897. {
  34898. front: {
  34899. height: math.unit(6 + 9/12, "feet"),
  34900. weight: math.unit(280, "lb"),
  34901. name: "Front",
  34902. image: {
  34903. source: "./media/characters/candy/front.svg",
  34904. extra: 234/217,
  34905. bottom: 11/245
  34906. }
  34907. },
  34908. },
  34909. [
  34910. {
  34911. name: "Really Small",
  34912. height: math.unit(0.1, "nm")
  34913. },
  34914. {
  34915. name: "Micro",
  34916. height: math.unit(2, "inches")
  34917. },
  34918. {
  34919. name: "Normal",
  34920. height: math.unit(6 + 9/12, "feet"),
  34921. default: true
  34922. },
  34923. {
  34924. name: "Small Macro",
  34925. height: math.unit(69, "feet")
  34926. },
  34927. {
  34928. name: "Macro",
  34929. height: math.unit(160, "feet")
  34930. },
  34931. {
  34932. name: "Megamacro",
  34933. height: math.unit(22000, "miles")
  34934. },
  34935. {
  34936. name: "Gigamacro",
  34937. height: math.unit(50000, "miles")
  34938. },
  34939. ]
  34940. ))
  34941. characterMakers.push(() => makeCharacter(
  34942. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  34943. {
  34944. front: {
  34945. height: math.unit(4, "feet"),
  34946. weight: math.unit(90, "lb"),
  34947. name: "Front",
  34948. image: {
  34949. source: "./media/characters/joey-mcdonald/front.svg",
  34950. extra: 1059/852,
  34951. bottom: 33/1092
  34952. }
  34953. },
  34954. back: {
  34955. height: math.unit(4, "feet"),
  34956. weight: math.unit(90, "lb"),
  34957. name: "Back",
  34958. image: {
  34959. source: "./media/characters/joey-mcdonald/back.svg",
  34960. extra: 1077/879,
  34961. bottom: 5/1082
  34962. }
  34963. },
  34964. frontKobold: {
  34965. height: math.unit(4, "feet"),
  34966. weight: math.unit(100, "lb"),
  34967. name: "Front-kobold",
  34968. image: {
  34969. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  34970. extra: 1480/1367,
  34971. bottom: 0/1480
  34972. }
  34973. },
  34974. backKobold: {
  34975. height: math.unit(4, "feet"),
  34976. weight: math.unit(100, "lb"),
  34977. name: "Back-kobold",
  34978. image: {
  34979. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  34980. extra: 1449/1361,
  34981. bottom: 0/1449
  34982. }
  34983. },
  34984. },
  34985. [
  34986. {
  34987. name: "Normal",
  34988. height: math.unit(4, "feet"),
  34989. default: true
  34990. },
  34991. ]
  34992. ))
  34993. characterMakers.push(() => makeCharacter(
  34994. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34995. {
  34996. front: {
  34997. height: math.unit(12 + 6/12, "feet"),
  34998. name: "Front",
  34999. image: {
  35000. source: "./media/characters/kass-lockheed/front.svg",
  35001. extra: 354/343,
  35002. bottom: 9/363
  35003. }
  35004. },
  35005. back: {
  35006. height: math.unit(12 + 6/12, "feet"),
  35007. name: "Back",
  35008. image: {
  35009. source: "./media/characters/kass-lockheed/back.svg",
  35010. extra: 364/352,
  35011. bottom: 3/367
  35012. }
  35013. },
  35014. dick: {
  35015. height: math.unit(3.12, "feet"),
  35016. name: "Dick",
  35017. image: {
  35018. source: "./media/characters/kass-lockheed/dick.svg"
  35019. }
  35020. },
  35021. head: {
  35022. height: math.unit(2.6, "feet"),
  35023. name: "Head",
  35024. image: {
  35025. source: "./media/characters/kass-lockheed/head.svg"
  35026. }
  35027. },
  35028. bleh: {
  35029. height: math.unit(2.85, "feet"),
  35030. name: "Bleh",
  35031. image: {
  35032. source: "./media/characters/kass-lockheed/bleh.svg"
  35033. }
  35034. },
  35035. smug: {
  35036. height: math.unit(2.85, "feet"),
  35037. name: "Smug",
  35038. image: {
  35039. source: "./media/characters/kass-lockheed/smug.svg"
  35040. }
  35041. },
  35042. },
  35043. [
  35044. {
  35045. name: "Normal",
  35046. height: math.unit(12 + 6/12, "feet"),
  35047. default: true
  35048. },
  35049. ]
  35050. ))
  35051. characterMakers.push(() => makeCharacter(
  35052. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35053. {
  35054. front: {
  35055. height: math.unit(6 + 2/12, "feet"),
  35056. name: "Front",
  35057. image: {
  35058. source: "./media/characters/taylor/front.svg",
  35059. extra: 639/495,
  35060. bottom: 12/651
  35061. }
  35062. },
  35063. },
  35064. [
  35065. {
  35066. name: "Normal",
  35067. height: math.unit(6 + 2/12, "feet"),
  35068. default: true
  35069. },
  35070. {
  35071. name: "Big",
  35072. height: math.unit(15, "feet")
  35073. },
  35074. {
  35075. name: "Lorg",
  35076. height: math.unit(80, "feet")
  35077. },
  35078. {
  35079. name: "Too Lorg",
  35080. height: math.unit(120, "feet")
  35081. },
  35082. ]
  35083. ))
  35084. characterMakers.push(() => makeCharacter(
  35085. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  35086. {
  35087. front: {
  35088. height: math.unit(15, "feet"),
  35089. name: "Front",
  35090. image: {
  35091. source: "./media/characters/kaizer/front.svg",
  35092. extra: 1612/1436,
  35093. bottom: 43/1655
  35094. }
  35095. },
  35096. },
  35097. [
  35098. {
  35099. name: "Normal",
  35100. height: math.unit(15, "feet"),
  35101. default: true
  35102. },
  35103. ]
  35104. ))
  35105. characterMakers.push(() => makeCharacter(
  35106. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  35107. {
  35108. front: {
  35109. height: math.unit(2, "feet"),
  35110. weight: math.unit(30, "lb"),
  35111. name: "Front",
  35112. image: {
  35113. source: "./media/characters/sandy/front.svg",
  35114. extra: 1439/1307,
  35115. bottom: 194/1633
  35116. }
  35117. },
  35118. },
  35119. [
  35120. {
  35121. name: "Normal",
  35122. height: math.unit(2, "feet"),
  35123. default: true
  35124. },
  35125. ]
  35126. ))
  35127. characterMakers.push(() => makeCharacter(
  35128. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  35129. {
  35130. front: {
  35131. height: math.unit(3, "feet"),
  35132. name: "Front",
  35133. image: {
  35134. source: "./media/characters/mellvi/front.svg",
  35135. extra: 1831/1630,
  35136. bottom: 58/1889
  35137. }
  35138. },
  35139. },
  35140. [
  35141. {
  35142. name: "Normal",
  35143. height: math.unit(3, "feet"),
  35144. default: true
  35145. },
  35146. ]
  35147. ))
  35148. characterMakers.push(() => makeCharacter(
  35149. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  35150. {
  35151. front: {
  35152. height: math.unit(5 + 11/12, "feet"),
  35153. weight: math.unit(200, "lb"),
  35154. name: "Front",
  35155. image: {
  35156. source: "./media/characters/shirou/front.svg",
  35157. extra: 2491/2383,
  35158. bottom: 189/2680
  35159. }
  35160. },
  35161. back: {
  35162. height: math.unit(5 + 11/12, "feet"),
  35163. weight: math.unit(200, "lb"),
  35164. name: "Back",
  35165. image: {
  35166. source: "./media/characters/shirou/back.svg",
  35167. extra: 2554/2450,
  35168. bottom: 76/2630
  35169. }
  35170. },
  35171. },
  35172. [
  35173. {
  35174. name: "Normal",
  35175. height: math.unit(5 + 11/12, "feet"),
  35176. default: true
  35177. },
  35178. ]
  35179. ))
  35180. characterMakers.push(() => makeCharacter(
  35181. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  35182. {
  35183. front: {
  35184. height: math.unit(6 + 3/12, "feet"),
  35185. weight: math.unit(177, "lb"),
  35186. name: "Front",
  35187. image: {
  35188. source: "./media/characters/noryu/front.svg",
  35189. extra: 973/885,
  35190. bottom: 10/983
  35191. }
  35192. },
  35193. },
  35194. [
  35195. {
  35196. name: "Normal",
  35197. height: math.unit(6 + 3/12, "feet"),
  35198. default: true
  35199. },
  35200. ]
  35201. ))
  35202. characterMakers.push(() => makeCharacter(
  35203. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  35204. {
  35205. front: {
  35206. height: math.unit(5 + 6/12, "feet"),
  35207. weight: math.unit(170, "lb"),
  35208. name: "Front",
  35209. image: {
  35210. source: "./media/characters/mevolas-rubenido/front.svg",
  35211. extra: 2109/1901,
  35212. bottom: 96/2205
  35213. }
  35214. },
  35215. },
  35216. [
  35217. {
  35218. name: "Normal",
  35219. height: math.unit(5 + 6/12, "feet"),
  35220. default: true
  35221. },
  35222. ]
  35223. ))
  35224. characterMakers.push(() => makeCharacter(
  35225. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  35226. {
  35227. front: {
  35228. height: math.unit(100, "feet"),
  35229. name: "Front",
  35230. image: {
  35231. source: "./media/characters/dee/front.svg",
  35232. extra: 2153/2036,
  35233. bottom: 59/2212
  35234. }
  35235. },
  35236. back: {
  35237. height: math.unit(100, "feet"),
  35238. name: "Back",
  35239. image: {
  35240. source: "./media/characters/dee/back.svg",
  35241. extra: 2183/2058,
  35242. bottom: 75/2258
  35243. }
  35244. },
  35245. foot: {
  35246. height: math.unit(19.43, "feet"),
  35247. name: "Foot",
  35248. image: {
  35249. source: "./media/characters/dee/foot.svg"
  35250. }
  35251. },
  35252. hoof: {
  35253. height: math.unit(20.6, "feet"),
  35254. name: "Hoof",
  35255. image: {
  35256. source: "./media/characters/dee/hoof.svg"
  35257. }
  35258. },
  35259. },
  35260. [
  35261. {
  35262. name: "Macro",
  35263. height: math.unit(100, "feet"),
  35264. default: true
  35265. },
  35266. ]
  35267. ))
  35268. characterMakers.push(() => makeCharacter(
  35269. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35270. {
  35271. front: {
  35272. height: math.unit(5 + 6/12, "feet"),
  35273. name: "Front",
  35274. image: {
  35275. source: "./media/characters/teh/front.svg",
  35276. extra: 1002/847,
  35277. bottom: 62/1064
  35278. }
  35279. },
  35280. },
  35281. [
  35282. {
  35283. name: "Normal",
  35284. height: math.unit(5 + 6/12, "feet"),
  35285. default: true
  35286. },
  35287. ]
  35288. ))
  35289. characterMakers.push(() => makeCharacter(
  35290. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35291. {
  35292. side: {
  35293. height: math.unit(6 + 1/12, "feet"),
  35294. weight: math.unit(204, "lb"),
  35295. name: "Side",
  35296. image: {
  35297. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35298. extra: 974/775,
  35299. bottom: 169/1143
  35300. }
  35301. },
  35302. sitting: {
  35303. height: math.unit(6 + 2/12, "feet"),
  35304. weight: math.unit(204, "lb"),
  35305. name: "Sitting",
  35306. image: {
  35307. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35308. extra: 1175/964,
  35309. bottom: 378/1553
  35310. }
  35311. },
  35312. },
  35313. [
  35314. {
  35315. name: "Normal",
  35316. height: math.unit(6 + 1/12, "feet"),
  35317. default: true
  35318. },
  35319. ]
  35320. ))
  35321. characterMakers.push(() => makeCharacter(
  35322. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35323. {
  35324. front: {
  35325. height: math.unit(6, "inches"),
  35326. name: "Front",
  35327. image: {
  35328. source: "./media/characters/tululi/front.svg",
  35329. extra: 1997/1876,
  35330. bottom: 20/2017
  35331. }
  35332. },
  35333. },
  35334. [
  35335. {
  35336. name: "Normal",
  35337. height: math.unit(6, "inches"),
  35338. default: true
  35339. },
  35340. ]
  35341. ))
  35342. characterMakers.push(() => makeCharacter(
  35343. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35344. {
  35345. front: {
  35346. height: math.unit(4 + 1/12, "feet"),
  35347. name: "Front",
  35348. image: {
  35349. source: "./media/characters/star/front.svg",
  35350. extra: 1493/1189,
  35351. bottom: 48/1541
  35352. }
  35353. },
  35354. },
  35355. [
  35356. {
  35357. name: "Normal",
  35358. height: math.unit(4 + 1/12, "feet"),
  35359. default: true
  35360. },
  35361. ]
  35362. ))
  35363. characterMakers.push(() => makeCharacter(
  35364. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35365. {
  35366. front: {
  35367. height: math.unit(6 + 3/12, "feet"),
  35368. name: "Front",
  35369. image: {
  35370. source: "./media/characters/comet/front.svg",
  35371. extra: 1681/1462,
  35372. bottom: 26/1707
  35373. }
  35374. },
  35375. },
  35376. [
  35377. {
  35378. name: "Normal",
  35379. height: math.unit(6 + 3/12, "feet"),
  35380. default: true
  35381. },
  35382. ]
  35383. ))
  35384. characterMakers.push(() => makeCharacter(
  35385. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35386. {
  35387. front: {
  35388. height: math.unit(950, "feet"),
  35389. name: "Front",
  35390. image: {
  35391. source: "./media/characters/vortex/front.svg",
  35392. extra: 1497/1434,
  35393. bottom: 56/1553
  35394. }
  35395. },
  35396. maw: {
  35397. height: math.unit(285, "feet"),
  35398. name: "Maw",
  35399. image: {
  35400. source: "./media/characters/vortex/maw.svg"
  35401. }
  35402. },
  35403. },
  35404. [
  35405. {
  35406. name: "Macro",
  35407. height: math.unit(950, "feet"),
  35408. default: true
  35409. },
  35410. ]
  35411. ))
  35412. characterMakers.push(() => makeCharacter(
  35413. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35414. {
  35415. front: {
  35416. height: math.unit(600, "feet"),
  35417. weight: math.unit(0.02, "grams"),
  35418. name: "Front",
  35419. image: {
  35420. source: "./media/characters/doodle/front.svg",
  35421. extra: 1578/1413,
  35422. bottom: 37/1615
  35423. }
  35424. },
  35425. },
  35426. [
  35427. {
  35428. name: "Macro",
  35429. height: math.unit(600, "feet"),
  35430. default: true
  35431. },
  35432. ]
  35433. ))
  35434. characterMakers.push(() => makeCharacter(
  35435. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35436. {
  35437. front: {
  35438. height: math.unit(6 + 6/12, "feet"),
  35439. name: "Front",
  35440. image: {
  35441. source: "./media/characters/jai/front.svg",
  35442. extra: 1645/1534,
  35443. bottom: 115/1760
  35444. }
  35445. },
  35446. },
  35447. [
  35448. {
  35449. name: "Normal",
  35450. height: math.unit(6 + 6/12, "feet"),
  35451. default: true
  35452. },
  35453. ]
  35454. ))
  35455. characterMakers.push(() => makeCharacter(
  35456. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35457. {
  35458. front: {
  35459. height: math.unit(6 + 8/12, "feet"),
  35460. name: "Front",
  35461. image: {
  35462. source: "./media/characters/pixel/front.svg",
  35463. extra: 1900/1735,
  35464. bottom: 63/1963
  35465. }
  35466. },
  35467. },
  35468. [
  35469. {
  35470. name: "Normal",
  35471. height: math.unit(6 + 8/12, "feet"),
  35472. default: true
  35473. },
  35474. ]
  35475. ))
  35476. characterMakers.push(() => makeCharacter(
  35477. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35478. {
  35479. back: {
  35480. height: math.unit(4 + 1/12, "feet"),
  35481. weight: math.unit(75, "lb"),
  35482. name: "Back",
  35483. image: {
  35484. source: "./media/characters/rhett/back.svg",
  35485. extra: 930/878,
  35486. bottom: 25/955
  35487. }
  35488. },
  35489. front: {
  35490. height: math.unit(4 + 1/12, "feet"),
  35491. weight: math.unit(75, "lb"),
  35492. name: "Front",
  35493. image: {
  35494. source: "./media/characters/rhett/front.svg",
  35495. extra: 1682/1586,
  35496. bottom: 92/1774
  35497. }
  35498. },
  35499. },
  35500. [
  35501. {
  35502. name: "Micro",
  35503. height: math.unit(8, "inches")
  35504. },
  35505. {
  35506. name: "Tiny",
  35507. height: math.unit(2, "feet")
  35508. },
  35509. {
  35510. name: "Normal",
  35511. height: math.unit(4 + 1/12, "feet"),
  35512. default: true
  35513. },
  35514. ]
  35515. ))
  35516. characterMakers.push(() => makeCharacter(
  35517. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35518. {
  35519. front: {
  35520. height: math.unit(3 + 3/12, "feet"),
  35521. name: "Front",
  35522. image: {
  35523. source: "./media/characters/penny/front.svg",
  35524. extra: 1406/1311,
  35525. bottom: 26/1432
  35526. }
  35527. },
  35528. },
  35529. [
  35530. {
  35531. name: "Normal",
  35532. height: math.unit(3 + 3/12, "feet"),
  35533. default: true
  35534. },
  35535. ]
  35536. ))
  35537. characterMakers.push(() => makeCharacter(
  35538. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35539. {
  35540. front: {
  35541. height: math.unit(4 + 11/12, "feet"),
  35542. name: "Front",
  35543. image: {
  35544. source: "./media/characters/monty/front.svg",
  35545. extra: 1479/1209,
  35546. bottom: 0/1479
  35547. }
  35548. },
  35549. },
  35550. [
  35551. {
  35552. name: "Normal",
  35553. height: math.unit(4 + 11/12, "feet"),
  35554. default: true
  35555. },
  35556. ]
  35557. ))
  35558. characterMakers.push(() => makeCharacter(
  35559. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35560. {
  35561. front: {
  35562. height: math.unit(8 + 4/12, "feet"),
  35563. name: "Front",
  35564. image: {
  35565. source: "./media/characters/sterling/front.svg",
  35566. extra: 1420/1236,
  35567. bottom: 27/1447
  35568. }
  35569. },
  35570. },
  35571. [
  35572. {
  35573. name: "Normal",
  35574. height: math.unit(8 + 4/12, "feet"),
  35575. default: true
  35576. },
  35577. ]
  35578. ))
  35579. characterMakers.push(() => makeCharacter(
  35580. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35581. {
  35582. front: {
  35583. height: math.unit(15, "feet"),
  35584. name: "Front",
  35585. image: {
  35586. source: "./media/characters/marble/front.svg",
  35587. extra: 973/937,
  35588. bottom: 32/1005
  35589. }
  35590. },
  35591. },
  35592. [
  35593. {
  35594. name: "Normal",
  35595. height: math.unit(15, "feet"),
  35596. default: true
  35597. },
  35598. ]
  35599. ))
  35600. characterMakers.push(() => makeCharacter(
  35601. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35602. {
  35603. front: {
  35604. height: math.unit(3, "inches"),
  35605. name: "Front",
  35606. image: {
  35607. source: "./media/characters/powder/front.svg",
  35608. extra: 1504/1334,
  35609. bottom: 518/2022
  35610. }
  35611. },
  35612. },
  35613. [
  35614. {
  35615. name: "Normal",
  35616. height: math.unit(3, "inches"),
  35617. default: true
  35618. },
  35619. ]
  35620. ))
  35621. characterMakers.push(() => makeCharacter(
  35622. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35623. {
  35624. front: {
  35625. height: math.unit(4 + 5/12, "feet"),
  35626. name: "Front",
  35627. image: {
  35628. source: "./media/characters/joey-raccoon/front.svg",
  35629. extra: 1273/1197,
  35630. bottom: 0/1273
  35631. }
  35632. },
  35633. },
  35634. [
  35635. {
  35636. name: "Normal",
  35637. height: math.unit(4 + 5/12, "feet"),
  35638. default: true
  35639. },
  35640. ]
  35641. ))
  35642. characterMakers.push(() => makeCharacter(
  35643. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35644. {
  35645. front: {
  35646. height: math.unit(8 + 4/12, "feet"),
  35647. name: "Front",
  35648. image: {
  35649. source: "./media/characters/vick/front.svg",
  35650. extra: 2187/2118,
  35651. bottom: 47/2234
  35652. }
  35653. },
  35654. },
  35655. [
  35656. {
  35657. name: "Normal",
  35658. height: math.unit(8 + 4/12, "feet"),
  35659. default: true
  35660. },
  35661. ]
  35662. ))
  35663. characterMakers.push(() => makeCharacter(
  35664. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35665. {
  35666. front: {
  35667. height: math.unit(5 + 5/12, "feet"),
  35668. name: "Front",
  35669. image: {
  35670. source: "./media/characters/mitsy/front.svg",
  35671. extra: 1842/1695,
  35672. bottom: 0/1842
  35673. }
  35674. },
  35675. },
  35676. [
  35677. {
  35678. name: "Normal",
  35679. height: math.unit(5 + 5/12, "feet"),
  35680. default: true
  35681. },
  35682. ]
  35683. ))
  35684. characterMakers.push(() => makeCharacter(
  35685. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35686. {
  35687. front: {
  35688. height: math.unit(6 + 3/12, "feet"),
  35689. name: "Front",
  35690. image: {
  35691. source: "./media/characters/silvy/front.svg",
  35692. extra: 1995/1836,
  35693. bottom: 225/2220
  35694. }
  35695. },
  35696. },
  35697. [
  35698. {
  35699. name: "Normal",
  35700. height: math.unit(6 + 3/12, "feet"),
  35701. default: true
  35702. },
  35703. ]
  35704. ))
  35705. characterMakers.push(() => makeCharacter(
  35706. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35707. {
  35708. front: {
  35709. height: math.unit(3 + 8/12, "feet"),
  35710. name: "Front",
  35711. image: {
  35712. source: "./media/characters/rodney/front.svg",
  35713. extra: 1956/1747,
  35714. bottom: 31/1987
  35715. }
  35716. },
  35717. frontDressed: {
  35718. height: math.unit(2.9, "feet"),
  35719. name: "Front (Dressed)",
  35720. image: {
  35721. source: "./media/characters/rodney/front-dressed.svg",
  35722. extra: 1382/1241,
  35723. bottom: 385/1767
  35724. }
  35725. },
  35726. },
  35727. [
  35728. {
  35729. name: "Normal",
  35730. height: math.unit(3 + 8/12, "feet"),
  35731. default: true
  35732. },
  35733. ]
  35734. ))
  35735. characterMakers.push(() => makeCharacter(
  35736. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35737. {
  35738. front: {
  35739. height: math.unit(5 + 9/12, "feet"),
  35740. weight: math.unit(194, "lbs"),
  35741. name: "Front",
  35742. image: {
  35743. source: "./media/characters/zakail-sudekai/front.svg",
  35744. extra: 2696/2533,
  35745. bottom: 248/2944
  35746. }
  35747. },
  35748. maw: {
  35749. height: math.unit(1.35, "feet"),
  35750. name: "Maw",
  35751. image: {
  35752. source: "./media/characters/zakail-sudekai/maw.svg"
  35753. }
  35754. },
  35755. },
  35756. [
  35757. {
  35758. name: "Normal",
  35759. height: math.unit(5 + 9/12, "feet"),
  35760. default: true
  35761. },
  35762. ]
  35763. ))
  35764. characterMakers.push(() => makeCharacter(
  35765. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35766. {
  35767. front: {
  35768. height: math.unit(8 + 4/12, "feet"),
  35769. weight: math.unit(1200, "lb"),
  35770. name: "Front",
  35771. image: {
  35772. source: "./media/characters/eleanor/front.svg",
  35773. extra: 1226/1192,
  35774. bottom: 52/1278
  35775. }
  35776. },
  35777. back: {
  35778. height: math.unit(8 + 4/12, "feet"),
  35779. weight: math.unit(1200, "lb"),
  35780. name: "Back",
  35781. image: {
  35782. source: "./media/characters/eleanor/back.svg",
  35783. extra: 1242/1184,
  35784. bottom: 60/1302
  35785. }
  35786. },
  35787. head: {
  35788. height: math.unit(2.62, "feet"),
  35789. name: "Head",
  35790. image: {
  35791. source: "./media/characters/eleanor/head.svg"
  35792. }
  35793. },
  35794. },
  35795. [
  35796. {
  35797. name: "Normal",
  35798. height: math.unit(8 + 4/12, "feet"),
  35799. default: true
  35800. },
  35801. ]
  35802. ))
  35803. characterMakers.push(() => makeCharacter(
  35804. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35805. {
  35806. front: {
  35807. height: math.unit(8 + 4/12, "feet"),
  35808. weight: math.unit(750, "lb"),
  35809. name: "Front",
  35810. image: {
  35811. source: "./media/characters/tanya/front.svg",
  35812. extra: 1749/1615,
  35813. bottom: 33/1782
  35814. }
  35815. },
  35816. },
  35817. [
  35818. {
  35819. name: "Normal",
  35820. height: math.unit(8 + 4/12, "feet"),
  35821. default: true
  35822. },
  35823. ]
  35824. ))
  35825. characterMakers.push(() => makeCharacter(
  35826. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35827. {
  35828. front: {
  35829. height: math.unit(5, "feet"),
  35830. weight: math.unit(225, "lb"),
  35831. name: "Front",
  35832. image: {
  35833. source: "./media/characters/cindy/front.svg",
  35834. extra: 1320/1250,
  35835. bottom: 42/1362
  35836. }
  35837. },
  35838. frontDressed: {
  35839. height: math.unit(5, "feet"),
  35840. weight: math.unit(225, "lb"),
  35841. name: "Front (Dressed)",
  35842. image: {
  35843. source: "./media/characters/cindy/front-dressed.svg",
  35844. extra: 1320/1250,
  35845. bottom: 42/1362
  35846. }
  35847. },
  35848. back: {
  35849. height: math.unit(5, "feet"),
  35850. weight: math.unit(225, "lb"),
  35851. name: "Back",
  35852. image: {
  35853. source: "./media/characters/cindy/back.svg",
  35854. extra: 1384/1346,
  35855. bottom: 14/1398
  35856. }
  35857. },
  35858. },
  35859. [
  35860. {
  35861. name: "Normal",
  35862. height: math.unit(5, "feet"),
  35863. default: true
  35864. },
  35865. ]
  35866. ))
  35867. characterMakers.push(() => makeCharacter(
  35868. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35869. {
  35870. front: {
  35871. height: math.unit(6 + 9/12, "feet"),
  35872. weight: math.unit(440, "lb"),
  35873. name: "Front",
  35874. image: {
  35875. source: "./media/characters/wilbur-owen/front.svg",
  35876. extra: 1575/1448,
  35877. bottom: 72/1647
  35878. }
  35879. },
  35880. back: {
  35881. height: math.unit(6 + 9/12, "feet"),
  35882. weight: math.unit(440, "lb"),
  35883. name: "Back",
  35884. image: {
  35885. source: "./media/characters/wilbur-owen/back.svg",
  35886. extra: 1578/1445,
  35887. bottom: 36/1614
  35888. }
  35889. },
  35890. },
  35891. [
  35892. {
  35893. name: "Normal",
  35894. height: math.unit(6 + 9/12, "feet"),
  35895. default: true
  35896. },
  35897. ]
  35898. ))
  35899. characterMakers.push(() => makeCharacter(
  35900. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35901. {
  35902. front: {
  35903. height: math.unit(6 + 5/12, "feet"),
  35904. weight: math.unit(650, "lb"),
  35905. name: "Front",
  35906. image: {
  35907. source: "./media/characters/keegan/front.svg",
  35908. extra: 2387/2198,
  35909. bottom: 33/2420
  35910. }
  35911. },
  35912. side: {
  35913. height: math.unit(6 + 5/12, "feet"),
  35914. weight: math.unit(650, "lb"),
  35915. name: "Side",
  35916. image: {
  35917. source: "./media/characters/keegan/side.svg",
  35918. extra: 2390/2202,
  35919. bottom: 47/2437
  35920. }
  35921. },
  35922. back: {
  35923. height: math.unit(6 + 5/12, "feet"),
  35924. weight: math.unit(650, "lb"),
  35925. name: "Back",
  35926. image: {
  35927. source: "./media/characters/keegan/back.svg",
  35928. extra: 2418/2268,
  35929. bottom: 15/2433
  35930. }
  35931. },
  35932. frontSfw: {
  35933. height: math.unit(6 + 5/12, "feet"),
  35934. weight: math.unit(650, "lb"),
  35935. name: "Front (SFW)",
  35936. image: {
  35937. source: "./media/characters/keegan/front-sfw.svg",
  35938. extra: 2387/2198,
  35939. bottom: 33/2420
  35940. }
  35941. },
  35942. beans: {
  35943. height: math.unit(1.85, "feet"),
  35944. name: "Beans",
  35945. image: {
  35946. source: "./media/characters/keegan/beans.svg"
  35947. }
  35948. },
  35949. },
  35950. [
  35951. {
  35952. name: "Normal",
  35953. height: math.unit(6 + 5/12, "feet"),
  35954. default: true
  35955. },
  35956. ]
  35957. ))
  35958. characterMakers.push(() => makeCharacter(
  35959. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35960. {
  35961. front: {
  35962. height: math.unit(9, "feet"),
  35963. name: "Front",
  35964. image: {
  35965. source: "./media/characters/colton/front.svg",
  35966. extra: 1589/1326,
  35967. bottom: 139/1728
  35968. }
  35969. },
  35970. },
  35971. [
  35972. {
  35973. name: "Normal",
  35974. height: math.unit(9, "feet"),
  35975. default: true
  35976. },
  35977. ]
  35978. ))
  35979. characterMakers.push(() => makeCharacter(
  35980. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35981. {
  35982. front: {
  35983. height: math.unit(2 + 9/12, "feet"),
  35984. name: "Front",
  35985. image: {
  35986. source: "./media/characters/bora/front.svg",
  35987. extra: 1265/1250,
  35988. bottom: 24/1289
  35989. }
  35990. },
  35991. },
  35992. [
  35993. {
  35994. name: "Normal",
  35995. height: math.unit(2 + 9/12, "feet"),
  35996. default: true
  35997. },
  35998. ]
  35999. ))
  36000. characterMakers.push(() => makeCharacter(
  36001. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  36002. {
  36003. front: {
  36004. height: math.unit(8, "feet"),
  36005. name: "Front",
  36006. image: {
  36007. source: "./media/characters/myu-myu/front.svg",
  36008. extra: 1949/1857,
  36009. bottom: 90/2039
  36010. }
  36011. },
  36012. },
  36013. [
  36014. {
  36015. name: "Normal",
  36016. height: math.unit(8, "feet"),
  36017. default: true
  36018. },
  36019. {
  36020. name: "Big",
  36021. height: math.unit(15, "feet")
  36022. },
  36023. {
  36024. name: "BIG",
  36025. height: math.unit(25, "feet")
  36026. },
  36027. ]
  36028. ))
  36029. characterMakers.push(() => makeCharacter(
  36030. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  36031. {
  36032. side: {
  36033. height: math.unit(7 + 5/12, "feet"),
  36034. weight: math.unit(2800, "lb"),
  36035. name: "Side",
  36036. image: {
  36037. source: "./media/characters/haloren/side.svg",
  36038. extra: 1793/409,
  36039. bottom: 59/1852
  36040. }
  36041. },
  36042. frontPaw: {
  36043. height: math.unit(2.36, "feet"),
  36044. name: "Front paw",
  36045. image: {
  36046. source: "./media/characters/haloren/front-paw.svg"
  36047. }
  36048. },
  36049. hindPaw: {
  36050. height: math.unit(3.18, "feet"),
  36051. name: "Hind paw",
  36052. image: {
  36053. source: "./media/characters/haloren/hind-paw.svg"
  36054. }
  36055. },
  36056. maw: {
  36057. height: math.unit(5.05, "feet"),
  36058. name: "Maw",
  36059. image: {
  36060. source: "./media/characters/haloren/maw.svg"
  36061. }
  36062. },
  36063. dick: {
  36064. height: math.unit(2.90, "feet"),
  36065. name: "Dick",
  36066. image: {
  36067. source: "./media/characters/haloren/dick.svg"
  36068. }
  36069. },
  36070. },
  36071. [
  36072. {
  36073. name: "Normal",
  36074. height: math.unit(7 + 5/12, "feet"),
  36075. default: true
  36076. },
  36077. {
  36078. name: "Enhanced",
  36079. height: math.unit(14 + 3/12, "feet")
  36080. },
  36081. ]
  36082. ))
  36083. characterMakers.push(() => makeCharacter(
  36084. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  36085. {
  36086. front: {
  36087. height: math.unit(171, "cm"),
  36088. name: "Front",
  36089. image: {
  36090. source: "./media/characters/kimmy/front.svg",
  36091. extra: 1491/1435,
  36092. bottom: 53/1544
  36093. }
  36094. },
  36095. },
  36096. [
  36097. {
  36098. name: "Small",
  36099. height: math.unit(9, "cm")
  36100. },
  36101. {
  36102. name: "Normal",
  36103. height: math.unit(171, "cm"),
  36104. default: true
  36105. },
  36106. ]
  36107. ))
  36108. characterMakers.push(() => makeCharacter(
  36109. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  36110. {
  36111. front: {
  36112. height: math.unit(8, "feet"),
  36113. weight: math.unit(300, "lb"),
  36114. name: "Front",
  36115. image: {
  36116. source: "./media/characters/galeboomer/front.svg",
  36117. extra: 4651/4415,
  36118. bottom: 162/4813
  36119. }
  36120. },
  36121. back: {
  36122. height: math.unit(8, "feet"),
  36123. weight: math.unit(300, "lb"),
  36124. name: "Back",
  36125. image: {
  36126. source: "./media/characters/galeboomer/back.svg",
  36127. extra: 4544/4314,
  36128. bottom: 16/4560
  36129. }
  36130. },
  36131. frontAlt: {
  36132. height: math.unit(8, "feet"),
  36133. weight: math.unit(300, "lb"),
  36134. name: "Front (Alt)",
  36135. image: {
  36136. source: "./media/characters/galeboomer/front-alt.svg",
  36137. extra: 4458/4228,
  36138. bottom: 68/4526
  36139. }
  36140. },
  36141. maw: {
  36142. height: math.unit(1.2, "feet"),
  36143. name: "Maw",
  36144. image: {
  36145. source: "./media/characters/galeboomer/maw.svg"
  36146. }
  36147. },
  36148. },
  36149. [
  36150. {
  36151. name: "Normal",
  36152. height: math.unit(8, "feet"),
  36153. default: true
  36154. },
  36155. ]
  36156. ))
  36157. characterMakers.push(() => makeCharacter(
  36158. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  36159. {
  36160. front: {
  36161. height: math.unit(5 + 9/12, "feet"),
  36162. weight: math.unit(120, "lb"),
  36163. name: "Front",
  36164. image: {
  36165. source: "./media/characters/chyr/front.svg",
  36166. extra: 1323/1254,
  36167. bottom: 63/1386
  36168. }
  36169. },
  36170. back: {
  36171. height: math.unit(5 + 9/12, "feet"),
  36172. weight: math.unit(120, "lb"),
  36173. name: "Back",
  36174. image: {
  36175. source: "./media/characters/chyr/back.svg",
  36176. extra: 1323/1252,
  36177. bottom: 48/1371
  36178. }
  36179. },
  36180. },
  36181. [
  36182. {
  36183. name: "Normal",
  36184. height: math.unit(5 + 9/12, "feet"),
  36185. default: true
  36186. },
  36187. ]
  36188. ))
  36189. characterMakers.push(() => makeCharacter(
  36190. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  36191. {
  36192. front: {
  36193. height: math.unit(7, "feet"),
  36194. weight: math.unit(310, "lb"),
  36195. name: "Front",
  36196. image: {
  36197. source: "./media/characters/solarus/front.svg",
  36198. extra: 2415/2021,
  36199. bottom: 103/2518
  36200. }
  36201. },
  36202. back: {
  36203. height: math.unit(7, "feet"),
  36204. weight: math.unit(310, "lb"),
  36205. name: "Back",
  36206. image: {
  36207. source: "./media/characters/solarus/back.svg",
  36208. extra: 2463/2089,
  36209. bottom: 79/2542
  36210. }
  36211. },
  36212. },
  36213. [
  36214. {
  36215. name: "Normal",
  36216. height: math.unit(7, "feet"),
  36217. default: true
  36218. },
  36219. ]
  36220. ))
  36221. characterMakers.push(() => makeCharacter(
  36222. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  36223. {
  36224. front: {
  36225. height: math.unit(16, "feet"),
  36226. name: "Front",
  36227. image: {
  36228. source: "./media/characters/mutsuju-koizaemon/front.svg",
  36229. extra: 1844/1780,
  36230. bottom: 58/1902
  36231. }
  36232. },
  36233. winterCoat: {
  36234. height: math.unit(16, "feet"),
  36235. name: "Winter Coat",
  36236. image: {
  36237. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  36238. extra: 1807/1775,
  36239. bottom: 69/1876
  36240. }
  36241. },
  36242. },
  36243. [
  36244. {
  36245. name: "Normal",
  36246. height: math.unit(16, "feet"),
  36247. default: true
  36248. },
  36249. {
  36250. name: "Chicago Size",
  36251. height: math.unit(560, "feet")
  36252. },
  36253. ]
  36254. ))
  36255. characterMakers.push(() => makeCharacter(
  36256. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  36257. {
  36258. front: {
  36259. height: math.unit(11 + 6/12, "feet"),
  36260. weight: math.unit(1366, "lb"),
  36261. name: "Front",
  36262. image: {
  36263. source: "./media/characters/lexor/front.svg",
  36264. extra: 1560/1481,
  36265. bottom: 211/1771
  36266. }
  36267. },
  36268. back: {
  36269. height: math.unit(11 + 6/12, "feet"),
  36270. weight: math.unit(1366, "lb"),
  36271. name: "Back",
  36272. image: {
  36273. source: "./media/characters/lexor/back.svg",
  36274. extra: 1614/1533,
  36275. bottom: 76/1690
  36276. }
  36277. },
  36278. maw: {
  36279. height: math.unit(3, "feet"),
  36280. name: "Maw",
  36281. image: {
  36282. source: "./media/characters/lexor/maw.svg"
  36283. }
  36284. },
  36285. dick: {
  36286. height: math.unit(2.59, "feet"),
  36287. name: "Dick",
  36288. image: {
  36289. source: "./media/characters/lexor/dick.svg"
  36290. }
  36291. },
  36292. },
  36293. [
  36294. {
  36295. name: "Normal",
  36296. height: math.unit(11 + 6/12, "feet"),
  36297. default: true
  36298. },
  36299. ]
  36300. ))
  36301. characterMakers.push(() => makeCharacter(
  36302. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36303. {
  36304. front: {
  36305. height: math.unit(5 + 8/12, "feet"),
  36306. name: "Front",
  36307. image: {
  36308. source: "./media/characters/magnum/front.svg",
  36309. extra: 942/855,
  36310. bottom: 26/968
  36311. }
  36312. },
  36313. },
  36314. [
  36315. {
  36316. name: "Normal",
  36317. height: math.unit(5 + 8/12, "feet"),
  36318. default: true
  36319. },
  36320. ]
  36321. ))
  36322. characterMakers.push(() => makeCharacter(
  36323. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36324. {
  36325. front: {
  36326. height: math.unit(18 + 4/12, "feet"),
  36327. weight: math.unit(1500, "kg"),
  36328. name: "Front",
  36329. image: {
  36330. source: "./media/characters/solas-sharpsman/front.svg",
  36331. extra: 1698/1589,
  36332. bottom: 0/1698
  36333. }
  36334. },
  36335. },
  36336. [
  36337. {
  36338. name: "Normal",
  36339. height: math.unit(18 + 4/12, "feet"),
  36340. default: true
  36341. },
  36342. ]
  36343. ))
  36344. characterMakers.push(() => makeCharacter(
  36345. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36346. {
  36347. front: {
  36348. height: math.unit(5 + 5/12, "feet"),
  36349. weight: math.unit(180, "lb"),
  36350. name: "Front",
  36351. image: {
  36352. source: "./media/characters/october/front.svg",
  36353. extra: 1800/1650,
  36354. bottom: 0/1800
  36355. }
  36356. },
  36357. frontNsfw: {
  36358. height: math.unit(5 + 5/12, "feet"),
  36359. weight: math.unit(180, "lb"),
  36360. name: "Front (NSFW)",
  36361. image: {
  36362. source: "./media/characters/october/front-nsfw.svg",
  36363. extra: 1392/1307,
  36364. bottom: 42/1434
  36365. }
  36366. },
  36367. },
  36368. [
  36369. {
  36370. name: "Normal",
  36371. height: math.unit(5 + 5/12, "feet"),
  36372. default: true
  36373. },
  36374. ]
  36375. ))
  36376. characterMakers.push(() => makeCharacter(
  36377. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36378. {
  36379. front: {
  36380. height: math.unit(8 + 6/12, "feet"),
  36381. name: "Front",
  36382. image: {
  36383. source: "./media/characters/essynkardi/front.svg",
  36384. extra: 1914/1846,
  36385. bottom: 22/1936
  36386. }
  36387. },
  36388. },
  36389. [
  36390. {
  36391. name: "Normal",
  36392. height: math.unit(8 + 6/12, "feet"),
  36393. default: true
  36394. },
  36395. ]
  36396. ))
  36397. characterMakers.push(() => makeCharacter(
  36398. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36399. {
  36400. front: {
  36401. height: math.unit(6 + 6/12, "feet"),
  36402. weight: math.unit(7, "lb"),
  36403. name: "Front",
  36404. image: {
  36405. source: "./media/characters/icky/front.svg",
  36406. extra: 813/782,
  36407. bottom: 66/879
  36408. }
  36409. },
  36410. back: {
  36411. height: math.unit(6 + 6/12, "feet"),
  36412. weight: math.unit(7, "lb"),
  36413. name: "Back",
  36414. image: {
  36415. source: "./media/characters/icky/back.svg",
  36416. extra: 754/735,
  36417. bottom: 56/810
  36418. }
  36419. },
  36420. },
  36421. [
  36422. {
  36423. name: "Normal",
  36424. height: math.unit(6 + 6/12, "feet"),
  36425. default: true
  36426. },
  36427. ]
  36428. ))
  36429. characterMakers.push(() => makeCharacter(
  36430. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36431. {
  36432. front: {
  36433. height: math.unit(15, "feet"),
  36434. name: "Front",
  36435. image: {
  36436. source: "./media/characters/rojas/front.svg",
  36437. extra: 1462/1408,
  36438. bottom: 95/1557
  36439. }
  36440. },
  36441. back: {
  36442. height: math.unit(15, "feet"),
  36443. name: "Back",
  36444. image: {
  36445. source: "./media/characters/rojas/back.svg",
  36446. extra: 1023/954,
  36447. bottom: 28/1051
  36448. }
  36449. },
  36450. },
  36451. [
  36452. {
  36453. name: "Normal",
  36454. height: math.unit(15, "feet"),
  36455. default: true
  36456. },
  36457. ]
  36458. ))
  36459. characterMakers.push(() => makeCharacter(
  36460. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36461. {
  36462. frontHuman: {
  36463. height: math.unit(5 + 7/12, "feet"),
  36464. name: "Front (Human)",
  36465. image: {
  36466. source: "./media/characters/alek-dryagan/front-human.svg",
  36467. extra: 1687/1667,
  36468. bottom: 69/1756
  36469. }
  36470. },
  36471. backHuman: {
  36472. height: math.unit(5 + 7/12, "feet"),
  36473. name: "Back (Human)",
  36474. image: {
  36475. source: "./media/characters/alek-dryagan/back-human.svg",
  36476. extra: 1670/1649,
  36477. bottom: 65/1735
  36478. }
  36479. },
  36480. frontDemi: {
  36481. height: math.unit(65, "feet"),
  36482. name: "Front (Demi)",
  36483. image: {
  36484. source: "./media/characters/alek-dryagan/front-demi.svg",
  36485. extra: 1669/1642,
  36486. bottom: 49/1718
  36487. }
  36488. },
  36489. backDemi: {
  36490. height: math.unit(65, "feet"),
  36491. name: "Back (Demi)",
  36492. image: {
  36493. source: "./media/characters/alek-dryagan/back-demi.svg",
  36494. extra: 1658/1637,
  36495. bottom: 40/1698
  36496. }
  36497. },
  36498. mawHuman: {
  36499. height: math.unit(0.3, "feet"),
  36500. name: "Maw (Human)",
  36501. image: {
  36502. source: "./media/characters/alek-dryagan/maw-human.svg"
  36503. }
  36504. },
  36505. mawDemi: {
  36506. height: math.unit(3.8, "feet"),
  36507. name: "Maw (Demi)",
  36508. image: {
  36509. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36510. }
  36511. },
  36512. },
  36513. [
  36514. {
  36515. name: "Normal",
  36516. height: math.unit(5 + 7/12, "feet"),
  36517. default: true
  36518. },
  36519. ]
  36520. ))
  36521. characterMakers.push(() => makeCharacter(
  36522. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36523. {
  36524. frontHuman: {
  36525. height: math.unit(5 + 2/12, "feet"),
  36526. name: "Front (Human)",
  36527. image: {
  36528. source: "./media/characters/gen/front-human.svg",
  36529. extra: 1627/1538,
  36530. bottom: 71/1698
  36531. }
  36532. },
  36533. backHuman: {
  36534. height: math.unit(5 + 2/12, "feet"),
  36535. name: "Back (Human)",
  36536. image: {
  36537. source: "./media/characters/gen/back-human.svg",
  36538. extra: 1638/1548,
  36539. bottom: 69/1707
  36540. }
  36541. },
  36542. frontDemi: {
  36543. height: math.unit(5 + 2/12, "feet"),
  36544. name: "Front (Demi)",
  36545. image: {
  36546. source: "./media/characters/gen/front-demi.svg",
  36547. extra: 1627/1538,
  36548. bottom: 71/1698
  36549. }
  36550. },
  36551. backDemi: {
  36552. height: math.unit(5 + 2/12, "feet"),
  36553. name: "Back (Demi)",
  36554. image: {
  36555. source: "./media/characters/gen/back-demi.svg",
  36556. extra: 1638/1548,
  36557. bottom: 69/1707
  36558. }
  36559. },
  36560. },
  36561. [
  36562. {
  36563. name: "Normal",
  36564. height: math.unit(5 + 2/12, "feet"),
  36565. default: true
  36566. },
  36567. ]
  36568. ))
  36569. characterMakers.push(() => makeCharacter(
  36570. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36571. {
  36572. frontImp: {
  36573. height: math.unit(1 + 11/12, "feet"),
  36574. name: "Front (Imp)",
  36575. image: {
  36576. source: "./media/characters/max-kobold/front-imp.svg",
  36577. extra: 1238/1134,
  36578. bottom: 81/1319
  36579. }
  36580. },
  36581. backImp: {
  36582. height: math.unit(1 + 11/12, "feet"),
  36583. name: "Back (Imp)",
  36584. image: {
  36585. source: "./media/characters/max-kobold/back-imp.svg",
  36586. extra: 1334/1175,
  36587. bottom: 34/1368
  36588. }
  36589. },
  36590. frontDemi: {
  36591. height: math.unit(5 + 9/12, "feet"),
  36592. name: "Front (Demi)",
  36593. image: {
  36594. source: "./media/characters/max-kobold/front-demi.svg",
  36595. extra: 1715/1685,
  36596. bottom: 54/1769
  36597. }
  36598. },
  36599. backDemi: {
  36600. height: math.unit(5 + 9/12, "feet"),
  36601. name: "Back (Demi)",
  36602. image: {
  36603. source: "./media/characters/max-kobold/back-demi.svg",
  36604. extra: 1752/1729,
  36605. bottom: 41/1793
  36606. }
  36607. },
  36608. handImp: {
  36609. height: math.unit(0.45, "feet"),
  36610. name: "Hand (Imp)",
  36611. image: {
  36612. source: "./media/characters/max-kobold/hand.svg"
  36613. }
  36614. },
  36615. pawImp: {
  36616. height: math.unit(0.46, "feet"),
  36617. name: "Paw (Imp)",
  36618. image: {
  36619. source: "./media/characters/max-kobold/paw.svg"
  36620. }
  36621. },
  36622. handDemi: {
  36623. height: math.unit(0.80, "feet"),
  36624. name: "Hand (Demi)",
  36625. image: {
  36626. source: "./media/characters/max-kobold/hand.svg"
  36627. }
  36628. },
  36629. pawDemi: {
  36630. height: math.unit(1.1, "feet"),
  36631. name: "Paw (Demi)",
  36632. image: {
  36633. source: "./media/characters/max-kobold/paw.svg"
  36634. }
  36635. },
  36636. headImp: {
  36637. height: math.unit(1.33, "feet"),
  36638. name: "Head (Imp)",
  36639. image: {
  36640. source: "./media/characters/max-kobold/head-imp.svg"
  36641. }
  36642. },
  36643. mawImp: {
  36644. height: math.unit(0.75, "feet"),
  36645. name: "Maw (Imp)",
  36646. image: {
  36647. source: "./media/characters/max-kobold/maw-imp.svg"
  36648. }
  36649. },
  36650. mawDemi: {
  36651. height: math.unit(0.42, "feet"),
  36652. name: "Maw (Demi)",
  36653. image: {
  36654. source: "./media/characters/max-kobold/maw-demi.svg"
  36655. }
  36656. },
  36657. },
  36658. [
  36659. {
  36660. name: "Normal",
  36661. height: math.unit(1 + 11/12, "feet"),
  36662. default: true
  36663. },
  36664. ]
  36665. ))
  36666. characterMakers.push(() => makeCharacter(
  36667. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36668. {
  36669. front: {
  36670. height: math.unit(7 + 5/12, "feet"),
  36671. name: "Front",
  36672. image: {
  36673. source: "./media/characters/carbon/front.svg",
  36674. extra: 1754/1689,
  36675. bottom: 65/1819
  36676. }
  36677. },
  36678. back: {
  36679. height: math.unit(7 + 5/12, "feet"),
  36680. name: "Back",
  36681. image: {
  36682. source: "./media/characters/carbon/back.svg",
  36683. extra: 1762/1695,
  36684. bottom: 24/1786
  36685. }
  36686. },
  36687. frontGigantamax: {
  36688. height: math.unit(150, "feet"),
  36689. name: "Front (Gigantamax)",
  36690. image: {
  36691. source: "./media/characters/carbon/front-gigantamax.svg",
  36692. extra: 1826/1669,
  36693. bottom: 59/1885
  36694. }
  36695. },
  36696. backGigantamax: {
  36697. height: math.unit(150, "feet"),
  36698. name: "Back (Gigantamax)",
  36699. image: {
  36700. source: "./media/characters/carbon/back-gigantamax.svg",
  36701. extra: 1796/1653,
  36702. bottom: 53/1849
  36703. }
  36704. },
  36705. maw: {
  36706. height: math.unit(0.48, "feet"),
  36707. name: "Maw",
  36708. image: {
  36709. source: "./media/characters/carbon/maw.svg"
  36710. }
  36711. },
  36712. mawGigantamax: {
  36713. height: math.unit(7.5, "feet"),
  36714. name: "Maw (Gigantamax)",
  36715. image: {
  36716. source: "./media/characters/carbon/maw-gigantamax.svg"
  36717. }
  36718. },
  36719. },
  36720. [
  36721. {
  36722. name: "Normal",
  36723. height: math.unit(7 + 5/12, "feet"),
  36724. default: true
  36725. },
  36726. ]
  36727. ))
  36728. characterMakers.push(() => makeCharacter(
  36729. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36730. {
  36731. front: {
  36732. height: math.unit(6, "feet"),
  36733. name: "Front",
  36734. image: {
  36735. source: "./media/characters/maverick/front.svg",
  36736. extra: 1672/1661,
  36737. bottom: 85/1757
  36738. }
  36739. },
  36740. back: {
  36741. height: math.unit(6, "feet"),
  36742. name: "Back",
  36743. image: {
  36744. source: "./media/characters/maverick/back.svg",
  36745. extra: 1642/1631,
  36746. bottom: 38/1680
  36747. }
  36748. },
  36749. },
  36750. [
  36751. {
  36752. name: "Normal",
  36753. height: math.unit(6, "feet"),
  36754. default: true
  36755. },
  36756. ]
  36757. ))
  36758. characterMakers.push(() => makeCharacter(
  36759. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36760. {
  36761. front: {
  36762. height: math.unit(15, "feet"),
  36763. weight: math.unit(615, "lb"),
  36764. name: "Front",
  36765. image: {
  36766. source: "./media/characters/grockle/front.svg",
  36767. extra: 1535/1427,
  36768. bottom: 56/1591
  36769. }
  36770. },
  36771. },
  36772. [
  36773. {
  36774. name: "Normal",
  36775. height: math.unit(15, "feet"),
  36776. default: true
  36777. },
  36778. {
  36779. name: "Large",
  36780. height: math.unit(150, "feet")
  36781. },
  36782. {
  36783. name: "Macro",
  36784. height: math.unit(1876, "feet")
  36785. },
  36786. {
  36787. name: "Mega Macro",
  36788. height: math.unit(121940, "feet")
  36789. },
  36790. {
  36791. name: "Giga Macro",
  36792. height: math.unit(750, "km")
  36793. },
  36794. {
  36795. name: "Tera Macro",
  36796. height: math.unit(750000, "km")
  36797. },
  36798. {
  36799. name: "Galactic",
  36800. height: math.unit(1.4e5, "km")
  36801. },
  36802. {
  36803. name: "Godlike",
  36804. height: math.unit(9.8e280, "galaxies")
  36805. },
  36806. ]
  36807. ))
  36808. characterMakers.push(() => makeCharacter(
  36809. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36810. {
  36811. front: {
  36812. height: math.unit(11, "meters"),
  36813. weight: math.unit(20, "tonnes"),
  36814. name: "Front",
  36815. image: {
  36816. source: "./media/characters/alistair/front.svg",
  36817. extra: 1265/1009,
  36818. bottom: 93/1358
  36819. }
  36820. },
  36821. },
  36822. [
  36823. {
  36824. name: "Normal",
  36825. height: math.unit(11, "meters"),
  36826. default: true
  36827. },
  36828. ]
  36829. ))
  36830. characterMakers.push(() => makeCharacter(
  36831. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36832. {
  36833. front: {
  36834. height: math.unit(5 + 8/12, "feet"),
  36835. name: "Front",
  36836. image: {
  36837. source: "./media/characters/haruka/front.svg",
  36838. extra: 2012/1952,
  36839. bottom: 0/2012
  36840. }
  36841. },
  36842. },
  36843. [
  36844. {
  36845. name: "Normal",
  36846. height: math.unit(5 + 8/12, "feet"),
  36847. default: true
  36848. },
  36849. ]
  36850. ))
  36851. characterMakers.push(() => makeCharacter(
  36852. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36853. {
  36854. back: {
  36855. height: math.unit(9, "feet"),
  36856. name: "Back",
  36857. image: {
  36858. source: "./media/characters/vivian-sylveon/back.svg",
  36859. extra: 1853/1714,
  36860. bottom: 0/1853
  36861. }
  36862. },
  36863. },
  36864. [
  36865. {
  36866. name: "Normal",
  36867. height: math.unit(9, "feet"),
  36868. default: true
  36869. },
  36870. {
  36871. name: "Macro",
  36872. height: math.unit(500, "feet")
  36873. },
  36874. {
  36875. name: "Megamacro",
  36876. height: math.unit(600, "miles")
  36877. },
  36878. {
  36879. name: "Gigamacro",
  36880. height: math.unit(30000, "miles")
  36881. },
  36882. ]
  36883. ))
  36884. characterMakers.push(() => makeCharacter(
  36885. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36886. {
  36887. anthro: {
  36888. height: math.unit(5 + 10/12, "feet"),
  36889. weight: math.unit(100, "lb"),
  36890. name: "Anthro",
  36891. image: {
  36892. source: "./media/characters/daiki/anthro.svg",
  36893. extra: 1115/1027,
  36894. bottom: 69/1184
  36895. }
  36896. },
  36897. feral: {
  36898. height: math.unit(200, "feet"),
  36899. name: "Feral",
  36900. image: {
  36901. source: "./media/characters/daiki/feral.svg",
  36902. extra: 1256/313,
  36903. bottom: 39/1295
  36904. }
  36905. },
  36906. feralHead: {
  36907. height: math.unit(171, "feet"),
  36908. name: "Feral Head",
  36909. image: {
  36910. source: "./media/characters/daiki/feral-head.svg"
  36911. }
  36912. },
  36913. manaDragon: {
  36914. height: math.unit(170, "meters"),
  36915. name: "Mana-dragon",
  36916. image: {
  36917. source: "./media/characters/daiki/mana-dragon.svg",
  36918. extra: 763/420,
  36919. bottom: 97/860
  36920. }
  36921. },
  36922. },
  36923. [
  36924. {
  36925. name: "Normal",
  36926. height: math.unit(5 + 10/12, "feet"),
  36927. default: true
  36928. },
  36929. ]
  36930. ))
  36931. characterMakers.push(() => makeCharacter(
  36932. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36933. {
  36934. fullyEquippedFront: {
  36935. height: math.unit(3 + 1/12, "feet"),
  36936. weight: math.unit(24, "lb"),
  36937. name: "Fully Equipped (Front)",
  36938. image: {
  36939. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36940. extra: 687/605,
  36941. bottom: 18/705
  36942. }
  36943. },
  36944. fullyEquippedBack: {
  36945. height: math.unit(3 + 1/12, "feet"),
  36946. weight: math.unit(24, "lb"),
  36947. name: "Fully Equipped (Back)",
  36948. image: {
  36949. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36950. extra: 689/590,
  36951. bottom: 18/707
  36952. }
  36953. },
  36954. dailyWear: {
  36955. height: math.unit(3 + 1/12, "feet"),
  36956. weight: math.unit(24, "lb"),
  36957. name: "Daily Wear",
  36958. image: {
  36959. source: "./media/characters/tea-spot/daily-wear.svg",
  36960. extra: 701/620,
  36961. bottom: 21/722
  36962. }
  36963. },
  36964. maidWork: {
  36965. height: math.unit(3 + 1/12, "feet"),
  36966. weight: math.unit(24, "lb"),
  36967. name: "Maid Work",
  36968. image: {
  36969. source: "./media/characters/tea-spot/maid-work.svg",
  36970. extra: 693/609,
  36971. bottom: 15/708
  36972. }
  36973. },
  36974. },
  36975. [
  36976. {
  36977. name: "Normal",
  36978. height: math.unit(3 + 1/12, "feet"),
  36979. default: true
  36980. },
  36981. ]
  36982. ))
  36983. characterMakers.push(() => makeCharacter(
  36984. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36985. {
  36986. front: {
  36987. height: math.unit(175, "cm"),
  36988. weight: math.unit(75, "kg"),
  36989. name: "Front",
  36990. image: {
  36991. source: "./media/characters/chee/front.svg",
  36992. extra: 1796/1740,
  36993. bottom: 40/1836
  36994. }
  36995. },
  36996. },
  36997. [
  36998. {
  36999. name: "Micro-Micro",
  37000. height: math.unit(1, "nm")
  37001. },
  37002. {
  37003. name: "Micro-erst",
  37004. height: math.unit(1, "micrometer")
  37005. },
  37006. {
  37007. name: "Micro-er",
  37008. height: math.unit(1, "cm")
  37009. },
  37010. {
  37011. name: "Normal",
  37012. height: math.unit(175, "cm"),
  37013. default: true
  37014. },
  37015. {
  37016. name: "Macro",
  37017. height: math.unit(100, "m")
  37018. },
  37019. {
  37020. name: "Macro-er",
  37021. height: math.unit(1, "km")
  37022. },
  37023. {
  37024. name: "Macro-erst",
  37025. height: math.unit(10, "km")
  37026. },
  37027. {
  37028. name: "Macro-Macro",
  37029. height: math.unit(100, "km")
  37030. },
  37031. ]
  37032. ))
  37033. characterMakers.push(() => makeCharacter(
  37034. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  37035. {
  37036. front: {
  37037. height: math.unit(11 + 9/12, "feet"),
  37038. weight: math.unit(935, "lb"),
  37039. name: "Front",
  37040. image: {
  37041. source: "./media/characters/kingsley/front.svg",
  37042. extra: 1803/1674,
  37043. bottom: 127/1930
  37044. }
  37045. },
  37046. frontNude: {
  37047. height: math.unit(11 + 9/12, "feet"),
  37048. weight: math.unit(935, "lb"),
  37049. name: "Front (Nude)",
  37050. image: {
  37051. source: "./media/characters/kingsley/front-nude.svg",
  37052. extra: 1803/1674,
  37053. bottom: 127/1930
  37054. }
  37055. },
  37056. },
  37057. [
  37058. {
  37059. name: "Normal",
  37060. height: math.unit(11 + 9/12, "feet"),
  37061. default: true
  37062. },
  37063. ]
  37064. ))
  37065. characterMakers.push(() => makeCharacter(
  37066. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  37067. {
  37068. side: {
  37069. height: math.unit(9, "feet"),
  37070. name: "Side",
  37071. image: {
  37072. source: "./media/characters/rymel/side.svg",
  37073. extra: 792/469,
  37074. bottom: 121/913
  37075. }
  37076. },
  37077. maw: {
  37078. height: math.unit(2.4, "meters"),
  37079. name: "Maw",
  37080. image: {
  37081. source: "./media/characters/rymel/maw.svg"
  37082. }
  37083. },
  37084. },
  37085. [
  37086. {
  37087. name: "House Drake",
  37088. height: math.unit(2, "feet")
  37089. },
  37090. {
  37091. name: "Reduced",
  37092. height: math.unit(4.5, "feet")
  37093. },
  37094. {
  37095. name: "Normal",
  37096. height: math.unit(9, "feet"),
  37097. default: true
  37098. },
  37099. ]
  37100. ))
  37101. characterMakers.push(() => makeCharacter(
  37102. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  37103. {
  37104. front: {
  37105. height: math.unit(1.74, "meters"),
  37106. weight: math.unit(55, "kg"),
  37107. name: "Front",
  37108. image: {
  37109. source: "./media/characters/rubus/front.svg",
  37110. extra: 1894/1742,
  37111. bottom: 44/1938
  37112. }
  37113. },
  37114. },
  37115. [
  37116. {
  37117. name: "Normal",
  37118. height: math.unit(1.74, "meters"),
  37119. default: true
  37120. },
  37121. ]
  37122. ))
  37123. characterMakers.push(() => makeCharacter(
  37124. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  37125. {
  37126. front: {
  37127. height: math.unit(5 + 2/12, "feet"),
  37128. weight: math.unit(112, "lb"),
  37129. name: "Front",
  37130. image: {
  37131. source: "./media/characters/cassie-kingston/front.svg",
  37132. extra: 1438/1390,
  37133. bottom: 47/1485
  37134. }
  37135. },
  37136. },
  37137. [
  37138. {
  37139. name: "Normal",
  37140. height: math.unit(5 + 2/12, "feet"),
  37141. default: true
  37142. },
  37143. {
  37144. name: "Macro",
  37145. height: math.unit(128, "feet")
  37146. },
  37147. {
  37148. name: "Megamacro",
  37149. height: math.unit(2.56, "miles")
  37150. },
  37151. ]
  37152. ))
  37153. characterMakers.push(() => makeCharacter(
  37154. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  37155. {
  37156. front: {
  37157. height: math.unit(7, "feet"),
  37158. name: "Front",
  37159. image: {
  37160. source: "./media/characters/fox/front.svg",
  37161. extra: 1798/1703,
  37162. bottom: 55/1853
  37163. }
  37164. },
  37165. back: {
  37166. height: math.unit(7, "feet"),
  37167. name: "Back",
  37168. image: {
  37169. source: "./media/characters/fox/back.svg",
  37170. extra: 1748/1649,
  37171. bottom: 32/1780
  37172. }
  37173. },
  37174. head: {
  37175. height: math.unit(1.95, "feet"),
  37176. name: "Head",
  37177. image: {
  37178. source: "./media/characters/fox/head.svg"
  37179. }
  37180. },
  37181. dick: {
  37182. height: math.unit(1.33, "feet"),
  37183. name: "Dick",
  37184. image: {
  37185. source: "./media/characters/fox/dick.svg"
  37186. }
  37187. },
  37188. foot: {
  37189. height: math.unit(1, "feet"),
  37190. name: "Foot",
  37191. image: {
  37192. source: "./media/characters/fox/foot.svg"
  37193. }
  37194. },
  37195. paw: {
  37196. height: math.unit(0.92, "feet"),
  37197. name: "Paw",
  37198. image: {
  37199. source: "./media/characters/fox/paw.svg"
  37200. }
  37201. },
  37202. },
  37203. [
  37204. {
  37205. name: "Small",
  37206. height: math.unit(3, "inches")
  37207. },
  37208. {
  37209. name: "\"Realistic\"",
  37210. height: math.unit(7, "feet")
  37211. },
  37212. {
  37213. name: "Normal",
  37214. height: math.unit(150, "feet"),
  37215. default: true
  37216. },
  37217. {
  37218. name: "BIG",
  37219. height: math.unit(1200, "feet")
  37220. },
  37221. {
  37222. name: "👀",
  37223. height: math.unit(5, "miles")
  37224. },
  37225. {
  37226. name: "👀👀👀",
  37227. height: math.unit(64, "miles")
  37228. },
  37229. ]
  37230. ))
  37231. characterMakers.push(() => makeCharacter(
  37232. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  37233. {
  37234. front: {
  37235. height: math.unit(625, "feet"),
  37236. name: "Front",
  37237. image: {
  37238. source: "./media/characters/asonja-rossa/front.svg",
  37239. extra: 1833/1686,
  37240. bottom: 24/1857
  37241. }
  37242. },
  37243. back: {
  37244. height: math.unit(625, "feet"),
  37245. name: "Back",
  37246. image: {
  37247. source: "./media/characters/asonja-rossa/back.svg",
  37248. extra: 1852/1753,
  37249. bottom: 26/1878
  37250. }
  37251. },
  37252. },
  37253. [
  37254. {
  37255. name: "Macro",
  37256. height: math.unit(625, "feet"),
  37257. default: true
  37258. },
  37259. ]
  37260. ))
  37261. characterMakers.push(() => makeCharacter(
  37262. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  37263. {
  37264. side: {
  37265. height: math.unit(8, "feet"),
  37266. name: "Side",
  37267. image: {
  37268. source: "./media/characters/rezukii/side.svg",
  37269. extra: 979/542,
  37270. bottom: 87/1066
  37271. }
  37272. },
  37273. sitting: {
  37274. height: math.unit(14.6, "feet"),
  37275. name: "Sitting",
  37276. image: {
  37277. source: "./media/characters/rezukii/sitting.svg",
  37278. extra: 1023/813,
  37279. bottom: 45/1068
  37280. }
  37281. },
  37282. },
  37283. [
  37284. {
  37285. name: "Tiny",
  37286. height: math.unit(2, "feet")
  37287. },
  37288. {
  37289. name: "Smol",
  37290. height: math.unit(4, "feet")
  37291. },
  37292. {
  37293. name: "Normal",
  37294. height: math.unit(8, "feet"),
  37295. default: true
  37296. },
  37297. {
  37298. name: "Big",
  37299. height: math.unit(12, "feet")
  37300. },
  37301. {
  37302. name: "Macro",
  37303. height: math.unit(30, "feet")
  37304. },
  37305. ]
  37306. ))
  37307. characterMakers.push(() => makeCharacter(
  37308. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37309. {
  37310. front: {
  37311. height: math.unit(14, "feet"),
  37312. weight: math.unit(9.5, "tonnes"),
  37313. name: "Front",
  37314. image: {
  37315. source: "./media/characters/dawnheart/front.svg",
  37316. extra: 2792/2675,
  37317. bottom: 64/2856
  37318. }
  37319. },
  37320. },
  37321. [
  37322. {
  37323. name: "Normal",
  37324. height: math.unit(14, "feet"),
  37325. default: true
  37326. },
  37327. ]
  37328. ))
  37329. characterMakers.push(() => makeCharacter(
  37330. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37331. {
  37332. front: {
  37333. height: math.unit(1.7, "m"),
  37334. name: "Front",
  37335. image: {
  37336. source: "./media/characters/gladi/front.svg",
  37337. extra: 1460/1362,
  37338. bottom: 19/1479
  37339. }
  37340. },
  37341. back: {
  37342. height: math.unit(1.7, "m"),
  37343. name: "Back",
  37344. image: {
  37345. source: "./media/characters/gladi/back.svg",
  37346. extra: 1459/1357,
  37347. bottom: 12/1471
  37348. }
  37349. },
  37350. feral: {
  37351. height: math.unit(2.05, "m"),
  37352. name: "Feral",
  37353. image: {
  37354. source: "./media/characters/gladi/feral.svg",
  37355. extra: 821/557,
  37356. bottom: 91/912
  37357. }
  37358. },
  37359. },
  37360. [
  37361. {
  37362. name: "Shortest",
  37363. height: math.unit(70, "cm")
  37364. },
  37365. {
  37366. name: "Normal",
  37367. height: math.unit(1.7, "m")
  37368. },
  37369. {
  37370. name: "Macro",
  37371. height: math.unit(10, "m"),
  37372. default: true
  37373. },
  37374. {
  37375. name: "Tallest",
  37376. height: math.unit(200, "m")
  37377. },
  37378. ]
  37379. ))
  37380. characterMakers.push(() => makeCharacter(
  37381. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37382. {
  37383. front: {
  37384. height: math.unit(5 + 7/12, "feet"),
  37385. weight: math.unit(2, "tons"),
  37386. name: "Front",
  37387. image: {
  37388. source: "./media/characters/erdno/front.svg",
  37389. extra: 1234/1129,
  37390. bottom: 35/1269
  37391. }
  37392. },
  37393. angled: {
  37394. height: math.unit(5 + 7/12, "feet"),
  37395. weight: math.unit(2, "tons"),
  37396. name: "Angled",
  37397. image: {
  37398. source: "./media/characters/erdno/angled.svg",
  37399. extra: 1185/1139,
  37400. bottom: 36/1221
  37401. }
  37402. },
  37403. side: {
  37404. height: math.unit(5 + 7/12, "feet"),
  37405. weight: math.unit(2, "tons"),
  37406. name: "Side",
  37407. image: {
  37408. source: "./media/characters/erdno/side.svg",
  37409. extra: 1191/1144,
  37410. bottom: 40/1231
  37411. }
  37412. },
  37413. back: {
  37414. height: math.unit(5 + 7/12, "feet"),
  37415. weight: math.unit(2, "tons"),
  37416. name: "Back",
  37417. image: {
  37418. source: "./media/characters/erdno/back.svg",
  37419. extra: 1202/1146,
  37420. bottom: 17/1219
  37421. }
  37422. },
  37423. frontNsfw: {
  37424. height: math.unit(5 + 7/12, "feet"),
  37425. weight: math.unit(2, "tons"),
  37426. name: "Front (NSFW)",
  37427. image: {
  37428. source: "./media/characters/erdno/front-nsfw.svg",
  37429. extra: 1234/1129,
  37430. bottom: 35/1269
  37431. }
  37432. },
  37433. angledNsfw: {
  37434. height: math.unit(5 + 7/12, "feet"),
  37435. weight: math.unit(2, "tons"),
  37436. name: "Angled (NSFW)",
  37437. image: {
  37438. source: "./media/characters/erdno/angled-nsfw.svg",
  37439. extra: 1185/1139,
  37440. bottom: 36/1221
  37441. }
  37442. },
  37443. sideNsfw: {
  37444. height: math.unit(5 + 7/12, "feet"),
  37445. weight: math.unit(2, "tons"),
  37446. name: "Side (NSFW)",
  37447. image: {
  37448. source: "./media/characters/erdno/side-nsfw.svg",
  37449. extra: 1191/1144,
  37450. bottom: 40/1231
  37451. }
  37452. },
  37453. backNsfw: {
  37454. height: math.unit(5 + 7/12, "feet"),
  37455. weight: math.unit(2, "tons"),
  37456. name: "Back (NSFW)",
  37457. image: {
  37458. source: "./media/characters/erdno/back-nsfw.svg",
  37459. extra: 1202/1146,
  37460. bottom: 17/1219
  37461. }
  37462. },
  37463. frontHyper: {
  37464. height: math.unit(5 + 7/12, "feet"),
  37465. weight: math.unit(2, "tons"),
  37466. name: "Front (Hyper)",
  37467. image: {
  37468. source: "./media/characters/erdno/front-hyper.svg",
  37469. extra: 1298/1136,
  37470. bottom: 35/1333
  37471. }
  37472. },
  37473. },
  37474. [
  37475. {
  37476. name: "Normal",
  37477. height: math.unit(5 + 7/12, "feet"),
  37478. default: true
  37479. },
  37480. {
  37481. name: "Big",
  37482. height: math.unit(5.7, "meters")
  37483. },
  37484. {
  37485. name: "Macro",
  37486. height: math.unit(5.7, "kilometers")
  37487. },
  37488. {
  37489. name: "Megamacro",
  37490. height: math.unit(5.7, "earths")
  37491. },
  37492. ]
  37493. ))
  37494. characterMakers.push(() => makeCharacter(
  37495. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37496. {
  37497. front: {
  37498. height: math.unit(5 + 10/12, "feet"),
  37499. weight: math.unit(150, "lb"),
  37500. name: "Front",
  37501. image: {
  37502. source: "./media/characters/jamie/front.svg",
  37503. extra: 1908/1768,
  37504. bottom: 19/1927
  37505. }
  37506. },
  37507. },
  37508. [
  37509. {
  37510. name: "Minimum",
  37511. height: math.unit(2, "cm")
  37512. },
  37513. {
  37514. name: "Micro",
  37515. height: math.unit(3, "inches")
  37516. },
  37517. {
  37518. name: "Normal",
  37519. height: math.unit(5 + 10/12, "feet"),
  37520. default: true
  37521. },
  37522. {
  37523. name: "Macro",
  37524. height: math.unit(150, "feet")
  37525. },
  37526. {
  37527. name: "Megamacro",
  37528. height: math.unit(10000, "m")
  37529. },
  37530. ]
  37531. ))
  37532. characterMakers.push(() => makeCharacter(
  37533. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37534. {
  37535. front: {
  37536. height: math.unit(2, "meters"),
  37537. weight: math.unit(100, "kg"),
  37538. name: "Front",
  37539. image: {
  37540. source: "./media/characters/shiron/front.svg",
  37541. extra: 2103/1985,
  37542. bottom: 98/2201
  37543. }
  37544. },
  37545. back: {
  37546. height: math.unit(2, "meters"),
  37547. weight: math.unit(100, "kg"),
  37548. name: "Back",
  37549. image: {
  37550. source: "./media/characters/shiron/back.svg",
  37551. extra: 2110/2015,
  37552. bottom: 89/2199
  37553. }
  37554. },
  37555. hand: {
  37556. height: math.unit(0.96, "feet"),
  37557. name: "Hand",
  37558. image: {
  37559. source: "./media/characters/shiron/hand.svg"
  37560. }
  37561. },
  37562. foot: {
  37563. height: math.unit(1.464, "feet"),
  37564. name: "Foot",
  37565. image: {
  37566. source: "./media/characters/shiron/foot.svg"
  37567. }
  37568. },
  37569. },
  37570. [
  37571. {
  37572. name: "Normal",
  37573. height: math.unit(2, "meters")
  37574. },
  37575. {
  37576. name: "Macro",
  37577. height: math.unit(500, "meters"),
  37578. default: true
  37579. },
  37580. {
  37581. name: "Megamacro",
  37582. height: math.unit(20, "km")
  37583. },
  37584. ]
  37585. ))
  37586. characterMakers.push(() => makeCharacter(
  37587. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37588. {
  37589. front: {
  37590. height: math.unit(6, "feet"),
  37591. name: "Front",
  37592. image: {
  37593. source: "./media/characters/sam/front.svg",
  37594. extra: 849/826,
  37595. bottom: 19/868
  37596. }
  37597. },
  37598. },
  37599. [
  37600. {
  37601. name: "Normal",
  37602. height: math.unit(6, "feet"),
  37603. default: true
  37604. },
  37605. ]
  37606. ))
  37607. characterMakers.push(() => makeCharacter(
  37608. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37609. {
  37610. front: {
  37611. height: math.unit(8 + 4/12, "feet"),
  37612. weight: math.unit(122, "kg"),
  37613. name: "Front",
  37614. image: {
  37615. source: "./media/characters/namori-kurogawa/front.svg",
  37616. extra: 1894/1576,
  37617. bottom: 34/1928
  37618. }
  37619. },
  37620. },
  37621. [
  37622. {
  37623. name: "Normal",
  37624. height: math.unit(8 + 4/12, "feet"),
  37625. default: true
  37626. },
  37627. ]
  37628. ))
  37629. characterMakers.push(() => makeCharacter(
  37630. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37631. {
  37632. front: {
  37633. height: math.unit(9, "feet"),
  37634. weight: math.unit(621, "lb"),
  37635. name: "Front",
  37636. image: {
  37637. source: "./media/characters/unmru/front.svg",
  37638. extra: 1853/1747,
  37639. bottom: 73/1926
  37640. }
  37641. },
  37642. side: {
  37643. height: math.unit(9, "feet"),
  37644. weight: math.unit(621, "lb"),
  37645. name: "Side",
  37646. image: {
  37647. source: "./media/characters/unmru/side.svg",
  37648. extra: 1781/1671,
  37649. bottom: 127/1908
  37650. }
  37651. },
  37652. back: {
  37653. height: math.unit(9, "feet"),
  37654. weight: math.unit(621, "lb"),
  37655. name: "Back",
  37656. image: {
  37657. source: "./media/characters/unmru/back.svg",
  37658. extra: 1894/1765,
  37659. bottom: 75/1969
  37660. }
  37661. },
  37662. dick: {
  37663. height: math.unit(3, "feet"),
  37664. weight: math.unit(35, "lb"),
  37665. name: "Dick",
  37666. image: {
  37667. source: "./media/characters/unmru/dick.svg"
  37668. }
  37669. },
  37670. },
  37671. [
  37672. {
  37673. name: "Normal",
  37674. height: math.unit(9, "feet")
  37675. },
  37676. {
  37677. name: "Natural",
  37678. height: math.unit(27, "feet"),
  37679. default: true
  37680. },
  37681. {
  37682. name: "Giant",
  37683. height: math.unit(90, "feet")
  37684. },
  37685. {
  37686. name: "Kaiju",
  37687. height: math.unit(270, "feet")
  37688. },
  37689. {
  37690. name: "Macro",
  37691. height: math.unit(900, "feet")
  37692. },
  37693. {
  37694. name: "Macro+",
  37695. height: math.unit(2700, "feet")
  37696. },
  37697. {
  37698. name: "Megamacro",
  37699. height: math.unit(9000, "feet")
  37700. },
  37701. {
  37702. name: "City-Crushing",
  37703. height: math.unit(27000, "feet")
  37704. },
  37705. {
  37706. name: "Mountain-Mashing",
  37707. height: math.unit(90000, "feet")
  37708. },
  37709. {
  37710. name: "Earth-Eclipsing",
  37711. height: math.unit(2.7e8, "feet")
  37712. },
  37713. {
  37714. name: "Sol-Swallowing",
  37715. height: math.unit(9e10, "feet")
  37716. },
  37717. {
  37718. name: "Majoris-Munching",
  37719. height: math.unit(2.7e13, "feet")
  37720. },
  37721. ]
  37722. ))
  37723. characterMakers.push(() => makeCharacter(
  37724. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37725. {
  37726. front: {
  37727. height: math.unit(1, "inch"),
  37728. name: "Front",
  37729. image: {
  37730. source: "./media/characters/squeaks-mouse/front.svg",
  37731. extra: 352/308,
  37732. bottom: 25/377
  37733. }
  37734. },
  37735. },
  37736. [
  37737. {
  37738. name: "Micro",
  37739. height: math.unit(1, "inch"),
  37740. default: true
  37741. },
  37742. ]
  37743. ))
  37744. characterMakers.push(() => makeCharacter(
  37745. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37746. {
  37747. side: {
  37748. height: math.unit(35, "feet"),
  37749. name: "Side",
  37750. image: {
  37751. source: "./media/characters/sayko/side.svg",
  37752. extra: 1697/1021,
  37753. bottom: 82/1779
  37754. }
  37755. },
  37756. head: {
  37757. height: math.unit(16, "feet"),
  37758. name: "Head",
  37759. image: {
  37760. source: "./media/characters/sayko/head.svg"
  37761. }
  37762. },
  37763. forepaw: {
  37764. height: math.unit(7.85, "feet"),
  37765. name: "Forepaw",
  37766. image: {
  37767. source: "./media/characters/sayko/forepaw.svg"
  37768. }
  37769. },
  37770. hindpaw: {
  37771. height: math.unit(8.8, "feet"),
  37772. name: "Hindpaw",
  37773. image: {
  37774. source: "./media/characters/sayko/hindpaw.svg"
  37775. }
  37776. },
  37777. },
  37778. [
  37779. {
  37780. name: "Normal",
  37781. height: math.unit(35, "feet"),
  37782. default: true
  37783. },
  37784. {
  37785. name: "Colossus",
  37786. height: math.unit(100, "meters")
  37787. },
  37788. {
  37789. name: "\"Small\" Deity",
  37790. height: math.unit(1, "km")
  37791. },
  37792. {
  37793. name: "\"Large\" Deity",
  37794. height: math.unit(15, "km")
  37795. },
  37796. ]
  37797. ))
  37798. characterMakers.push(() => makeCharacter(
  37799. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37800. {
  37801. front: {
  37802. height: math.unit(6, "feet"),
  37803. weight: math.unit(250, "lb"),
  37804. name: "Front",
  37805. image: {
  37806. source: "./media/characters/mukiro/front.svg",
  37807. extra: 1368/1310,
  37808. bottom: 34/1402
  37809. }
  37810. },
  37811. },
  37812. [
  37813. {
  37814. name: "Normal",
  37815. height: math.unit(6, "feet"),
  37816. default: true
  37817. },
  37818. ]
  37819. ))
  37820. characterMakers.push(() => makeCharacter(
  37821. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37822. {
  37823. front: {
  37824. height: math.unit(12 + 4/12, "feet"),
  37825. name: "Front",
  37826. image: {
  37827. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37828. extra: 1346/1311,
  37829. bottom: 65/1411
  37830. }
  37831. },
  37832. },
  37833. [
  37834. {
  37835. name: "Base",
  37836. height: math.unit(12 + 4/12, "feet"),
  37837. default: true
  37838. },
  37839. {
  37840. name: "Macro",
  37841. height: math.unit(150, "feet")
  37842. },
  37843. {
  37844. name: "Mega",
  37845. height: math.unit(2, "miles")
  37846. },
  37847. {
  37848. name: "Demi God",
  37849. height: math.unit(4, "AU")
  37850. },
  37851. {
  37852. name: "God Size",
  37853. height: math.unit(1, "universe")
  37854. },
  37855. ]
  37856. ))
  37857. characterMakers.push(() => makeCharacter(
  37858. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37859. {
  37860. front: {
  37861. height: math.unit(3 + 3/12, "feet"),
  37862. weight: math.unit(88, "lb"),
  37863. name: "Front",
  37864. image: {
  37865. source: "./media/characters/trey/front.svg",
  37866. extra: 1815/1509,
  37867. bottom: 60/1875
  37868. }
  37869. },
  37870. },
  37871. [
  37872. {
  37873. name: "Normal",
  37874. height: math.unit(3 + 3/12, "feet"),
  37875. default: true
  37876. },
  37877. ]
  37878. ))
  37879. characterMakers.push(() => makeCharacter(
  37880. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  37881. {
  37882. front: {
  37883. height: math.unit(4, "meters"),
  37884. name: "Front",
  37885. image: {
  37886. source: "./media/characters/adelonda/front.svg",
  37887. extra: 1077/982,
  37888. bottom: 39/1116
  37889. }
  37890. },
  37891. back: {
  37892. height: math.unit(4, "meters"),
  37893. name: "Back",
  37894. image: {
  37895. source: "./media/characters/adelonda/back.svg",
  37896. extra: 1105/1003,
  37897. bottom: 25/1130
  37898. }
  37899. },
  37900. feral: {
  37901. height: math.unit(40/1.5, "meters"),
  37902. name: "Feral",
  37903. image: {
  37904. source: "./media/characters/adelonda/feral.svg",
  37905. extra: 597/271,
  37906. bottom: 387/984
  37907. }
  37908. },
  37909. },
  37910. [
  37911. {
  37912. name: "Normal",
  37913. height: math.unit(4, "meters"),
  37914. default: true
  37915. },
  37916. ]
  37917. ))
  37918. characterMakers.push(() => makeCharacter(
  37919. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37920. {
  37921. front: {
  37922. height: math.unit(8 + 4/12, "feet"),
  37923. weight: math.unit(670, "lb"),
  37924. name: "Front",
  37925. image: {
  37926. source: "./media/characters/acadiel/front.svg",
  37927. extra: 1901/1595,
  37928. bottom: 142/2043
  37929. }
  37930. },
  37931. },
  37932. [
  37933. {
  37934. name: "Normal",
  37935. height: math.unit(8 + 4/12, "feet"),
  37936. default: true
  37937. },
  37938. {
  37939. name: "Macro",
  37940. height: math.unit(200, "feet")
  37941. },
  37942. ]
  37943. ))
  37944. characterMakers.push(() => makeCharacter(
  37945. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37946. {
  37947. front: {
  37948. height: math.unit(6 + 2/12, "feet"),
  37949. weight: math.unit(185, "lb"),
  37950. name: "Front",
  37951. image: {
  37952. source: "./media/characters/kayne-ein/front.svg",
  37953. extra: 1780/1560,
  37954. bottom: 81/1861
  37955. }
  37956. },
  37957. },
  37958. [
  37959. {
  37960. name: "Normal",
  37961. height: math.unit(6 + 2/12, "feet"),
  37962. default: true
  37963. },
  37964. {
  37965. name: "Transformation Stage",
  37966. height: math.unit(15, "feet")
  37967. },
  37968. {
  37969. name: "Macro",
  37970. height: math.unit(150, "feet")
  37971. },
  37972. {
  37973. name: "Earth's Shadow",
  37974. height: math.unit(6200, "miles")
  37975. },
  37976. {
  37977. name: "Universal Demon",
  37978. height: math.unit(28e9, "parsecs")
  37979. },
  37980. {
  37981. name: "Multiverse God",
  37982. height: math.unit(3, "multiverses")
  37983. },
  37984. ]
  37985. ))
  37986. characterMakers.push(() => makeCharacter(
  37987. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37988. {
  37989. front: {
  37990. height: math.unit(5 + 5/12, "feet"),
  37991. name: "Front",
  37992. image: {
  37993. source: "./media/characters/fawn/front.svg",
  37994. extra: 1873/1731,
  37995. bottom: 95/1968
  37996. }
  37997. },
  37998. back: {
  37999. height: math.unit(5 + 5/12, "feet"),
  38000. name: "Back",
  38001. image: {
  38002. source: "./media/characters/fawn/back.svg",
  38003. extra: 1813/1700,
  38004. bottom: 14/1827
  38005. }
  38006. },
  38007. hoof: {
  38008. height: math.unit(1.45, "feet"),
  38009. name: "Hoof",
  38010. image: {
  38011. source: "./media/characters/fawn/hoof.svg"
  38012. }
  38013. },
  38014. },
  38015. [
  38016. {
  38017. name: "Normal",
  38018. height: math.unit(5 + 5/12, "feet"),
  38019. default: true
  38020. },
  38021. ]
  38022. ))
  38023. characterMakers.push(() => makeCharacter(
  38024. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  38025. {
  38026. front: {
  38027. height: math.unit(2 + 5/12, "feet"),
  38028. name: "Front",
  38029. image: {
  38030. source: "./media/characters/orion/front.svg",
  38031. extra: 1366/1304,
  38032. bottom: 43/1409
  38033. }
  38034. },
  38035. paw: {
  38036. height: math.unit(0.52, "feet"),
  38037. name: "Paw",
  38038. image: {
  38039. source: "./media/characters/orion/paw.svg"
  38040. }
  38041. },
  38042. },
  38043. [
  38044. {
  38045. name: "Normal",
  38046. height: math.unit(2 + 5/12, "feet"),
  38047. default: true
  38048. },
  38049. ]
  38050. ))
  38051. characterMakers.push(() => makeCharacter(
  38052. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  38053. {
  38054. front: {
  38055. height: math.unit(5 + 10/12, "feet"),
  38056. name: "Front",
  38057. image: {
  38058. source: "./media/characters/vera/front.svg",
  38059. extra: 1680/1575,
  38060. bottom: 49/1729
  38061. }
  38062. },
  38063. back: {
  38064. height: math.unit(5 + 10/12, "feet"),
  38065. name: "Back",
  38066. image: {
  38067. source: "./media/characters/vera/back.svg",
  38068. extra: 1700/1588,
  38069. bottom: 18/1718
  38070. }
  38071. },
  38072. arcanine: {
  38073. height: math.unit(6 + 8/12, "feet"),
  38074. name: "Arcanine",
  38075. image: {
  38076. source: "./media/characters/vera/arcanine.svg",
  38077. extra: 1590/1511,
  38078. bottom: 71/1661
  38079. }
  38080. },
  38081. maw: {
  38082. height: math.unit(0.82, "feet"),
  38083. name: "Maw",
  38084. image: {
  38085. source: "./media/characters/vera/maw.svg"
  38086. }
  38087. },
  38088. mawArcanine: {
  38089. height: math.unit(0.97, "feet"),
  38090. name: "Maw (Arcanine)",
  38091. image: {
  38092. source: "./media/characters/vera/maw-arcanine.svg"
  38093. }
  38094. },
  38095. paw: {
  38096. height: math.unit(0.75, "feet"),
  38097. name: "Paw",
  38098. image: {
  38099. source: "./media/characters/vera/paw.svg"
  38100. }
  38101. },
  38102. pawprint: {
  38103. height: math.unit(0.52, "feet"),
  38104. name: "Pawprint",
  38105. image: {
  38106. source: "./media/characters/vera/pawprint.svg"
  38107. }
  38108. },
  38109. },
  38110. [
  38111. {
  38112. name: "Normal",
  38113. height: math.unit(5 + 10/12, "feet"),
  38114. default: true
  38115. },
  38116. {
  38117. name: "Macro",
  38118. height: math.unit(75, "feet")
  38119. },
  38120. ]
  38121. ))
  38122. characterMakers.push(() => makeCharacter(
  38123. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  38124. {
  38125. front: {
  38126. height: math.unit(4, "feet"),
  38127. weight: math.unit(40, "lb"),
  38128. name: "Front",
  38129. image: {
  38130. source: "./media/characters/orvan-rabbit/front.svg",
  38131. extra: 1896/1642,
  38132. bottom: 29/1925
  38133. }
  38134. },
  38135. },
  38136. [
  38137. {
  38138. name: "Normal",
  38139. height: math.unit(4, "feet"),
  38140. default: true
  38141. },
  38142. ]
  38143. ))
  38144. characterMakers.push(() => makeCharacter(
  38145. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  38146. {
  38147. front: {
  38148. height: math.unit(6, "feet"),
  38149. weight: math.unit(168, "lb"),
  38150. name: "Front",
  38151. image: {
  38152. source: "./media/characters/lisa/front.svg",
  38153. extra: 2065/1867,
  38154. bottom: 46/2111
  38155. }
  38156. },
  38157. back: {
  38158. height: math.unit(6, "feet"),
  38159. weight: math.unit(168, "lb"),
  38160. name: "Back",
  38161. image: {
  38162. source: "./media/characters/lisa/back.svg",
  38163. extra: 1982/1838,
  38164. bottom: 29/2011
  38165. }
  38166. },
  38167. maw: {
  38168. height: math.unit(0.81, "feet"),
  38169. name: "Maw",
  38170. image: {
  38171. source: "./media/characters/lisa/maw.svg"
  38172. }
  38173. },
  38174. paw: {
  38175. height: math.unit(0.9, "feet"),
  38176. name: "Paw",
  38177. image: {
  38178. source: "./media/characters/lisa/paw.svg"
  38179. }
  38180. },
  38181. caribousune: {
  38182. height: math.unit(7 + 2/12, "feet"),
  38183. weight: math.unit(268, "lb"),
  38184. name: "Caribousune",
  38185. image: {
  38186. source: "./media/characters/lisa/caribousune.svg",
  38187. extra: 1843/1633,
  38188. bottom: 29/1872
  38189. }
  38190. },
  38191. frontCaribousune: {
  38192. height: math.unit(7 + 2/12, "feet"),
  38193. weight: math.unit(268, "lb"),
  38194. name: "Front (Caribousune)",
  38195. image: {
  38196. source: "./media/characters/lisa/front-caribousune.svg",
  38197. extra: 1818/1638,
  38198. bottom: 52/1870
  38199. }
  38200. },
  38201. sideCaribousune: {
  38202. height: math.unit(7 + 2/12, "feet"),
  38203. weight: math.unit(268, "lb"),
  38204. name: "Side (Caribousune)",
  38205. image: {
  38206. source: "./media/characters/lisa/side-caribousune.svg",
  38207. extra: 1851/1635,
  38208. bottom: 16/1867
  38209. }
  38210. },
  38211. backCaribousune: {
  38212. height: math.unit(7 + 2/12, "feet"),
  38213. weight: math.unit(268, "lb"),
  38214. name: "Back (Caribousune)",
  38215. image: {
  38216. source: "./media/characters/lisa/back-caribousune.svg",
  38217. extra: 1801/1604,
  38218. bottom: 44/1845
  38219. }
  38220. },
  38221. caribou: {
  38222. height: math.unit(7 + 2/12, "feet"),
  38223. weight: math.unit(268, "lb"),
  38224. name: "Caribou",
  38225. image: {
  38226. source: "./media/characters/lisa/caribou.svg",
  38227. extra: 1843/1633,
  38228. bottom: 29/1872
  38229. }
  38230. },
  38231. frontCaribou: {
  38232. height: math.unit(7 + 2/12, "feet"),
  38233. weight: math.unit(268, "lb"),
  38234. name: "Front (Caribou)",
  38235. image: {
  38236. source: "./media/characters/lisa/front-caribou.svg",
  38237. extra: 1818/1638,
  38238. bottom: 52/1870
  38239. }
  38240. },
  38241. sideCaribou: {
  38242. height: math.unit(7 + 2/12, "feet"),
  38243. weight: math.unit(268, "lb"),
  38244. name: "Side (Caribou)",
  38245. image: {
  38246. source: "./media/characters/lisa/side-caribou.svg",
  38247. extra: 1851/1635,
  38248. bottom: 16/1867
  38249. }
  38250. },
  38251. backCaribou: {
  38252. height: math.unit(7 + 2/12, "feet"),
  38253. weight: math.unit(268, "lb"),
  38254. name: "Back (Caribou)",
  38255. image: {
  38256. source: "./media/characters/lisa/back-caribou.svg",
  38257. extra: 1801/1604,
  38258. bottom: 44/1845
  38259. }
  38260. },
  38261. mawCaribou: {
  38262. height: math.unit(1.45, "feet"),
  38263. name: "Maw (Caribou)",
  38264. image: {
  38265. source: "./media/characters/lisa/maw-caribou.svg"
  38266. }
  38267. },
  38268. mawCaribousune: {
  38269. height: math.unit(1.45, "feet"),
  38270. name: "Maw (Caribousune)",
  38271. image: {
  38272. source: "./media/characters/lisa/maw-caribousune.svg"
  38273. }
  38274. },
  38275. pawCaribousune: {
  38276. height: math.unit(1.61, "feet"),
  38277. name: "Paw (Caribou)",
  38278. image: {
  38279. source: "./media/characters/lisa/paw-caribousune.svg"
  38280. }
  38281. },
  38282. },
  38283. [
  38284. {
  38285. name: "Normal",
  38286. height: math.unit(6, "feet")
  38287. },
  38288. {
  38289. name: "God Size",
  38290. height: math.unit(72, "feet"),
  38291. default: true
  38292. },
  38293. {
  38294. name: "Towering",
  38295. height: math.unit(288, "feet")
  38296. },
  38297. {
  38298. name: "City Size",
  38299. height: math.unit(48384, "feet")
  38300. },
  38301. {
  38302. name: "Continental",
  38303. height: math.unit(4200, "miles")
  38304. },
  38305. {
  38306. name: "Planet Eater",
  38307. height: math.unit(42, "earths")
  38308. },
  38309. {
  38310. name: "Star Swallower",
  38311. height: math.unit(42, "solarradii")
  38312. },
  38313. {
  38314. name: "System Swallower",
  38315. height: math.unit(84000, "AU")
  38316. },
  38317. {
  38318. name: "Galaxy Gobbler",
  38319. height: math.unit(42, "galaxies")
  38320. },
  38321. {
  38322. name: "Universe Devourer",
  38323. height: math.unit(42, "universes")
  38324. },
  38325. {
  38326. name: "Multiverse Muncher",
  38327. height: math.unit(42, "multiverses")
  38328. },
  38329. ]
  38330. ))
  38331. characterMakers.push(() => makeCharacter(
  38332. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38333. {
  38334. front: {
  38335. height: math.unit(36, "feet"),
  38336. name: "Front",
  38337. image: {
  38338. source: "./media/characters/shadow-rat/front.svg",
  38339. extra: 1845/1758,
  38340. bottom: 83/1928
  38341. }
  38342. },
  38343. },
  38344. [
  38345. {
  38346. name: "Macro",
  38347. height: math.unit(36, "feet"),
  38348. default: true
  38349. },
  38350. ]
  38351. ))
  38352. characterMakers.push(() => makeCharacter(
  38353. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38354. {
  38355. side: {
  38356. height: math.unit(8, "feet"),
  38357. weight: math.unit(2630, "lb"),
  38358. name: "Side",
  38359. image: {
  38360. source: "./media/characters/torallia/side.svg",
  38361. extra: 2164/2021,
  38362. bottom: 371/2535
  38363. }
  38364. },
  38365. },
  38366. [
  38367. {
  38368. name: "Mortal Interaction",
  38369. height: math.unit(8, "feet")
  38370. },
  38371. {
  38372. name: "Natural",
  38373. height: math.unit(24, "feet"),
  38374. default: true
  38375. },
  38376. {
  38377. name: "Giant",
  38378. height: math.unit(80, "feet")
  38379. },
  38380. {
  38381. name: "Kaiju",
  38382. height: math.unit(240, "feet")
  38383. },
  38384. {
  38385. name: "Macro",
  38386. height: math.unit(800, "feet")
  38387. },
  38388. {
  38389. name: "Macro+",
  38390. height: math.unit(2400, "feet")
  38391. },
  38392. {
  38393. name: "Macro++",
  38394. height: math.unit(8000, "feet")
  38395. },
  38396. {
  38397. name: "City-Crushing",
  38398. height: math.unit(24000, "feet")
  38399. },
  38400. {
  38401. name: "Mountain-Mashing",
  38402. height: math.unit(80000, "feet")
  38403. },
  38404. {
  38405. name: "District Demolisher",
  38406. height: math.unit(240000, "feet")
  38407. },
  38408. {
  38409. name: "Tri-County Terror",
  38410. height: math.unit(800000, "feet")
  38411. },
  38412. {
  38413. name: "State Smasher",
  38414. height: math.unit(2.4e6, "feet")
  38415. },
  38416. {
  38417. name: "Nation Nemesis",
  38418. height: math.unit(8e6, "feet")
  38419. },
  38420. {
  38421. name: "Continent Cracker",
  38422. height: math.unit(2.4e7, "feet")
  38423. },
  38424. {
  38425. name: "Planet-Pillaging",
  38426. height: math.unit(8e7, "feet")
  38427. },
  38428. {
  38429. name: "Earth-Eclipsing",
  38430. height: math.unit(2.4e8, "feet")
  38431. },
  38432. {
  38433. name: "Jovian-Jostling",
  38434. height: math.unit(8e8, "feet")
  38435. },
  38436. {
  38437. name: "Gas Giant Gulper",
  38438. height: math.unit(2.4e9, "feet")
  38439. },
  38440. {
  38441. name: "Astral Annihilator",
  38442. height: math.unit(8e9, "feet")
  38443. },
  38444. {
  38445. name: "Celestial Conqueror",
  38446. height: math.unit(2.4e10, "feet")
  38447. },
  38448. {
  38449. name: "Sol-Swallowing",
  38450. height: math.unit(8e10, "feet")
  38451. },
  38452. {
  38453. name: "Hunter of the Heavens",
  38454. height: math.unit(2.4e13, "feet")
  38455. },
  38456. ]
  38457. ))
  38458. characterMakers.push(() => makeCharacter(
  38459. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38460. {
  38461. front: {
  38462. height: math.unit(6 + 8/12, "feet"),
  38463. name: "Front",
  38464. image: {
  38465. source: "./media/characters/rebecca-pawlson/front.svg",
  38466. extra: 1737/1596,
  38467. bottom: 107/1844
  38468. }
  38469. },
  38470. back: {
  38471. height: math.unit(6 + 8/12, "feet"),
  38472. name: "Back",
  38473. image: {
  38474. source: "./media/characters/rebecca-pawlson/back.svg",
  38475. extra: 1702/1523,
  38476. bottom: 86/1788
  38477. }
  38478. },
  38479. },
  38480. [
  38481. {
  38482. name: "Normal",
  38483. height: math.unit(6 + 8/12, "feet")
  38484. },
  38485. {
  38486. name: "Mini Macro",
  38487. height: math.unit(10, "feet"),
  38488. default: true
  38489. },
  38490. {
  38491. name: "Macro",
  38492. height: math.unit(100, "feet")
  38493. },
  38494. {
  38495. name: "Mega Macro",
  38496. height: math.unit(2500, "feet")
  38497. },
  38498. {
  38499. name: "Giga Macro",
  38500. height: math.unit(50, "miles")
  38501. },
  38502. ]
  38503. ))
  38504. characterMakers.push(() => makeCharacter(
  38505. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38506. {
  38507. front: {
  38508. height: math.unit(7 + 6/12, "feet"),
  38509. weight: math.unit(600, "lb"),
  38510. name: "Front",
  38511. image: {
  38512. source: "./media/characters/moxie-nova/front.svg",
  38513. extra: 1734/1652,
  38514. bottom: 41/1775
  38515. }
  38516. },
  38517. },
  38518. [
  38519. {
  38520. name: "Normal",
  38521. height: math.unit(7 + 6/12, "feet"),
  38522. default: true
  38523. },
  38524. ]
  38525. ))
  38526. characterMakers.push(() => makeCharacter(
  38527. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38528. {
  38529. goat: {
  38530. height: math.unit(4, "feet"),
  38531. weight: math.unit(180, "lb"),
  38532. name: "Goat",
  38533. image: {
  38534. source: "./media/characters/tiffany/goat.svg",
  38535. extra: 1845/1595,
  38536. bottom: 106/1951
  38537. }
  38538. },
  38539. front: {
  38540. height: math.unit(5, "feet"),
  38541. weight: math.unit(150, "lb"),
  38542. name: "Foxcoon",
  38543. image: {
  38544. source: "./media/characters/tiffany/foxcoon.svg",
  38545. extra: 1941/1845,
  38546. bottom: 58/1999
  38547. }
  38548. },
  38549. },
  38550. [
  38551. {
  38552. name: "Normal",
  38553. height: math.unit(5, "feet"),
  38554. default: true
  38555. },
  38556. ]
  38557. ))
  38558. characterMakers.push(() => makeCharacter(
  38559. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38560. {
  38561. front: {
  38562. height: math.unit(8, "feet"),
  38563. weight: math.unit(300, "lb"),
  38564. name: "Front",
  38565. image: {
  38566. source: "./media/characters/raxinath/front.svg",
  38567. extra: 1407/1309,
  38568. bottom: 39/1446
  38569. }
  38570. },
  38571. back: {
  38572. height: math.unit(8, "feet"),
  38573. weight: math.unit(300, "lb"),
  38574. name: "Back",
  38575. image: {
  38576. source: "./media/characters/raxinath/back.svg",
  38577. extra: 1405/1315,
  38578. bottom: 9/1414
  38579. }
  38580. },
  38581. },
  38582. [
  38583. {
  38584. name: "Speck",
  38585. height: math.unit(0.5, "nm")
  38586. },
  38587. {
  38588. name: "Micro",
  38589. height: math.unit(3, "inches")
  38590. },
  38591. {
  38592. name: "Kobold",
  38593. height: math.unit(3, "feet")
  38594. },
  38595. {
  38596. name: "Normal",
  38597. height: math.unit(8, "feet"),
  38598. default: true
  38599. },
  38600. {
  38601. name: "Giant",
  38602. height: math.unit(50, "feet")
  38603. },
  38604. {
  38605. name: "Macro",
  38606. height: math.unit(1000, "feet")
  38607. },
  38608. {
  38609. name: "Megamacro",
  38610. height: math.unit(1, "mile")
  38611. },
  38612. ]
  38613. ))
  38614. characterMakers.push(() => makeCharacter(
  38615. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38616. {
  38617. front: {
  38618. height: math.unit(10, "feet"),
  38619. weight: math.unit(1442, "lb"),
  38620. name: "Front",
  38621. image: {
  38622. source: "./media/characters/mal-dragon/front.svg",
  38623. extra: 1515/1444,
  38624. bottom: 113/1628
  38625. }
  38626. },
  38627. back: {
  38628. height: math.unit(10, "feet"),
  38629. weight: math.unit(1442, "lb"),
  38630. name: "Back",
  38631. image: {
  38632. source: "./media/characters/mal-dragon/back.svg",
  38633. extra: 1527/1434,
  38634. bottom: 25/1552
  38635. }
  38636. },
  38637. },
  38638. [
  38639. {
  38640. name: "Mortal Interaction",
  38641. height: math.unit(10, "feet"),
  38642. default: true
  38643. },
  38644. {
  38645. name: "Large",
  38646. height: math.unit(30, "feet")
  38647. },
  38648. {
  38649. name: "Kaiju",
  38650. height: math.unit(300, "feet")
  38651. },
  38652. {
  38653. name: "Megamacro",
  38654. height: math.unit(10000, "feet")
  38655. },
  38656. {
  38657. name: "Continent Cracker",
  38658. height: math.unit(30000000, "feet")
  38659. },
  38660. {
  38661. name: "Sol-Swallowing",
  38662. height: math.unit(1e11, "feet")
  38663. },
  38664. {
  38665. name: "Light Universal",
  38666. height: math.unit(5, "universes")
  38667. },
  38668. {
  38669. name: "Universe Atoms",
  38670. height: math.unit(1.829e9, "universes")
  38671. },
  38672. {
  38673. name: "Light Multiversal",
  38674. height: math.unit(5, "multiverses")
  38675. },
  38676. {
  38677. name: "Multiverse Atoms",
  38678. height: math.unit(1.829e9, "multiverses")
  38679. },
  38680. {
  38681. name: "Fabric of Time",
  38682. height: math.unit(1e262, "multiverses")
  38683. },
  38684. ]
  38685. ))
  38686. characterMakers.push(() => makeCharacter(
  38687. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38688. {
  38689. front: {
  38690. height: math.unit(9, "feet"),
  38691. weight: math.unit(1050, "lb"),
  38692. name: "Front",
  38693. image: {
  38694. source: "./media/characters/tabitha/front.svg",
  38695. extra: 2083/1994,
  38696. bottom: 68/2151
  38697. }
  38698. },
  38699. },
  38700. [
  38701. {
  38702. name: "Baseline",
  38703. height: math.unit(9, "feet"),
  38704. default: true
  38705. },
  38706. {
  38707. name: "Giant",
  38708. height: math.unit(90, "feet")
  38709. },
  38710. {
  38711. name: "Macro",
  38712. height: math.unit(900, "feet")
  38713. },
  38714. {
  38715. name: "Megamacro",
  38716. height: math.unit(9000, "feet")
  38717. },
  38718. {
  38719. name: "City-Crushing",
  38720. height: math.unit(27000, "feet")
  38721. },
  38722. {
  38723. name: "Mountain-Mashing",
  38724. height: math.unit(90000, "feet")
  38725. },
  38726. {
  38727. name: "Nation Nemesis",
  38728. height: math.unit(9e6, "feet")
  38729. },
  38730. {
  38731. name: "Continent Cracker",
  38732. height: math.unit(27e6, "feet")
  38733. },
  38734. {
  38735. name: "Earth-Eclipsing",
  38736. height: math.unit(2.7e8, "feet")
  38737. },
  38738. {
  38739. name: "Gas Giant Gulper",
  38740. height: math.unit(2.7e9, "feet")
  38741. },
  38742. {
  38743. name: "Sol-Swallowing",
  38744. height: math.unit(9e10, "feet")
  38745. },
  38746. {
  38747. name: "Galaxy Gulper",
  38748. height: math.unit(9, "galaxies")
  38749. },
  38750. {
  38751. name: "Cosmos Churner",
  38752. height: math.unit(9, "universes")
  38753. },
  38754. ]
  38755. ))
  38756. characterMakers.push(() => makeCharacter(
  38757. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38758. {
  38759. front: {
  38760. height: math.unit(160, "cm"),
  38761. weight: math.unit(55, "kg"),
  38762. name: "Front",
  38763. image: {
  38764. source: "./media/characters/tow/front.svg",
  38765. extra: 1751/1722,
  38766. bottom: 74/1825
  38767. }
  38768. },
  38769. },
  38770. [
  38771. {
  38772. name: "Norm",
  38773. height: math.unit(160, "cm")
  38774. },
  38775. {
  38776. name: "Casual",
  38777. height: math.unit(3200, "m"),
  38778. default: true
  38779. },
  38780. {
  38781. name: "Show-Off",
  38782. height: math.unit(160, "km")
  38783. },
  38784. ]
  38785. ))
  38786. characterMakers.push(() => makeCharacter(
  38787. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38788. {
  38789. front: {
  38790. height: math.unit(7 + 11/12, "feet"),
  38791. weight: math.unit(342.8, "lb"),
  38792. name: "Front",
  38793. image: {
  38794. source: "./media/characters/vivian-orca-dragon/front.svg",
  38795. extra: 1890/1865,
  38796. bottom: 28/1918
  38797. }
  38798. },
  38799. },
  38800. [
  38801. {
  38802. name: "Micro",
  38803. height: math.unit(5, "inches")
  38804. },
  38805. {
  38806. name: "Normal",
  38807. height: math.unit(7 + 11/12, "feet"),
  38808. default: true
  38809. },
  38810. {
  38811. name: "Macro",
  38812. height: math.unit(395 + 7/12, "feet")
  38813. },
  38814. ]
  38815. ))
  38816. characterMakers.push(() => makeCharacter(
  38817. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38818. {
  38819. side: {
  38820. height: math.unit(10, "feet"),
  38821. weight: math.unit(1442, "lb"),
  38822. name: "Side",
  38823. image: {
  38824. source: "./media/characters/lotherakon/side.svg",
  38825. extra: 1604/1497,
  38826. bottom: 89/1693
  38827. }
  38828. },
  38829. },
  38830. [
  38831. {
  38832. name: "Mortal Interaction",
  38833. height: math.unit(10, "feet")
  38834. },
  38835. {
  38836. name: "Large",
  38837. height: math.unit(30, "feet"),
  38838. default: true
  38839. },
  38840. {
  38841. name: "Giant",
  38842. height: math.unit(100, "feet")
  38843. },
  38844. {
  38845. name: "Kaiju",
  38846. height: math.unit(300, "feet")
  38847. },
  38848. {
  38849. name: "Macro",
  38850. height: math.unit(1000, "feet")
  38851. },
  38852. {
  38853. name: "Macro+",
  38854. height: math.unit(3000, "feet")
  38855. },
  38856. {
  38857. name: "Megamacro",
  38858. height: math.unit(10000, "feet")
  38859. },
  38860. {
  38861. name: "City-Crushing",
  38862. height: math.unit(30000, "feet")
  38863. },
  38864. {
  38865. name: "Continent Cracker",
  38866. height: math.unit(30e6, "feet")
  38867. },
  38868. {
  38869. name: "Earth Eclipsing",
  38870. height: math.unit(3e8, "feet")
  38871. },
  38872. {
  38873. name: "Gas Giant Gulper",
  38874. height: math.unit(3e9, "feet")
  38875. },
  38876. {
  38877. name: "Sol-Swallowing",
  38878. height: math.unit(1e11, "feet")
  38879. },
  38880. {
  38881. name: "System Swallower",
  38882. height: math.unit(3e14, "feet")
  38883. },
  38884. {
  38885. name: "Galaxy Gulper",
  38886. height: math.unit(10, "galaxies")
  38887. },
  38888. {
  38889. name: "Light Universal",
  38890. height: math.unit(5, "universes")
  38891. },
  38892. {
  38893. name: "Universe Palm",
  38894. height: math.unit(20, "universes")
  38895. },
  38896. {
  38897. name: "Light Multiversal",
  38898. height: math.unit(5, "multiverses")
  38899. },
  38900. {
  38901. name: "Multiverse Palm",
  38902. height: math.unit(20, "multiverses")
  38903. },
  38904. {
  38905. name: "Inferno Incarnate",
  38906. height: math.unit(1e7, "multiverses")
  38907. },
  38908. ]
  38909. ))
  38910. characterMakers.push(() => makeCharacter(
  38911. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38912. {
  38913. front: {
  38914. height: math.unit(8, "feet"),
  38915. weight: math.unit(1200, "lb"),
  38916. name: "Front",
  38917. image: {
  38918. source: "./media/characters/malithee/front.svg",
  38919. extra: 1675/1640,
  38920. bottom: 162/1837
  38921. }
  38922. },
  38923. },
  38924. [
  38925. {
  38926. name: "Mortal Interaction",
  38927. height: math.unit(8, "feet"),
  38928. default: true
  38929. },
  38930. {
  38931. name: "Large",
  38932. height: math.unit(24, "feet")
  38933. },
  38934. {
  38935. name: "Kaiju",
  38936. height: math.unit(240, "feet")
  38937. },
  38938. {
  38939. name: "Megamacro",
  38940. height: math.unit(8000, "feet")
  38941. },
  38942. {
  38943. name: "Continent Cracker",
  38944. height: math.unit(24e6, "feet")
  38945. },
  38946. {
  38947. name: "Earth-Eclipsing",
  38948. height: math.unit(2.4e8, "feet")
  38949. },
  38950. {
  38951. name: "Sol-Swallowing",
  38952. height: math.unit(8e10, "feet")
  38953. },
  38954. {
  38955. name: "Galaxy Gulper",
  38956. height: math.unit(8, "galaxies")
  38957. },
  38958. {
  38959. name: "Light Universal",
  38960. height: math.unit(4, "universes")
  38961. },
  38962. {
  38963. name: "Universe Atoms",
  38964. height: math.unit(1.829e9, "universes")
  38965. },
  38966. {
  38967. name: "Light Multiversal",
  38968. height: math.unit(4, "multiverses")
  38969. },
  38970. {
  38971. name: "Multiverse Atoms",
  38972. height: math.unit(1.829e9, "multiverses")
  38973. },
  38974. {
  38975. name: "Nigh-Omnipresence",
  38976. height: math.unit(8e261, "multiverses")
  38977. },
  38978. ]
  38979. ))
  38980. characterMakers.push(() => makeCharacter(
  38981. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38982. {
  38983. front: {
  38984. height: math.unit(10, "feet"),
  38985. weight: math.unit(1500, "lb"),
  38986. name: "Front",
  38987. image: {
  38988. source: "./media/characters/miles-thestia/front.svg",
  38989. extra: 1812/1727,
  38990. bottom: 86/1898
  38991. }
  38992. },
  38993. back: {
  38994. height: math.unit(10, "feet"),
  38995. weight: math.unit(1500, "lb"),
  38996. name: "Back",
  38997. image: {
  38998. source: "./media/characters/miles-thestia/back.svg",
  38999. extra: 1799/1690,
  39000. bottom: 47/1846
  39001. }
  39002. },
  39003. frontNsfw: {
  39004. height: math.unit(10, "feet"),
  39005. weight: math.unit(1500, "lb"),
  39006. name: "Front (NSFW)",
  39007. image: {
  39008. source: "./media/characters/miles-thestia/front-nsfw.svg",
  39009. extra: 1812/1727,
  39010. bottom: 86/1898
  39011. }
  39012. },
  39013. },
  39014. [
  39015. {
  39016. name: "Mini-Macro",
  39017. height: math.unit(10, "feet"),
  39018. default: true
  39019. },
  39020. ]
  39021. ))
  39022. characterMakers.push(() => makeCharacter(
  39023. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  39024. {
  39025. front: {
  39026. height: math.unit(25, "feet"),
  39027. name: "Front",
  39028. image: {
  39029. source: "./media/characters/titan-s-wulf/front.svg",
  39030. extra: 1560/1484,
  39031. bottom: 76/1636
  39032. }
  39033. },
  39034. },
  39035. [
  39036. {
  39037. name: "Smallest",
  39038. height: math.unit(25, "feet"),
  39039. default: true
  39040. },
  39041. {
  39042. name: "Normal",
  39043. height: math.unit(200, "feet")
  39044. },
  39045. {
  39046. name: "Macro",
  39047. height: math.unit(200000, "feet")
  39048. },
  39049. {
  39050. name: "Multiversal Original",
  39051. height: math.unit(10000, "multiverses")
  39052. },
  39053. ]
  39054. ))
  39055. characterMakers.push(() => makeCharacter(
  39056. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  39057. {
  39058. front: {
  39059. height: math.unit(8, "feet"),
  39060. weight: math.unit(553, "lb"),
  39061. name: "Front",
  39062. image: {
  39063. source: "./media/characters/tawendeh/front.svg",
  39064. extra: 2365/2268,
  39065. bottom: 83/2448
  39066. }
  39067. },
  39068. frontClothed: {
  39069. height: math.unit(8, "feet"),
  39070. weight: math.unit(553, "lb"),
  39071. name: "Front (Clothed)",
  39072. image: {
  39073. source: "./media/characters/tawendeh/front-clothed.svg",
  39074. extra: 2365/2268,
  39075. bottom: 83/2448
  39076. }
  39077. },
  39078. back: {
  39079. height: math.unit(8, "feet"),
  39080. weight: math.unit(553, "lb"),
  39081. name: "Back",
  39082. image: {
  39083. source: "./media/characters/tawendeh/back.svg",
  39084. extra: 2397/2294,
  39085. bottom: 42/2439
  39086. }
  39087. },
  39088. },
  39089. [
  39090. {
  39091. name: "Mortal Interaction",
  39092. height: math.unit(8, "feet"),
  39093. default: true
  39094. },
  39095. {
  39096. name: "Giant",
  39097. height: math.unit(80, "feet")
  39098. },
  39099. {
  39100. name: "Macro",
  39101. height: math.unit(800, "feet")
  39102. },
  39103. {
  39104. name: "Megamacro",
  39105. height: math.unit(8000, "feet")
  39106. },
  39107. {
  39108. name: "City-Crushing",
  39109. height: math.unit(24000, "feet")
  39110. },
  39111. {
  39112. name: "Mountain-Mashing",
  39113. height: math.unit(80000, "feet")
  39114. },
  39115. {
  39116. name: "Nation Nemesis",
  39117. height: math.unit(8e6, "feet")
  39118. },
  39119. {
  39120. name: "Continent Cracker",
  39121. height: math.unit(24e6, "feet")
  39122. },
  39123. {
  39124. name: "Earth-Eclipsing",
  39125. height: math.unit(2.4e8, "feet")
  39126. },
  39127. {
  39128. name: "Gas Giant Gulper",
  39129. height: math.unit(2.4e9, "feet")
  39130. },
  39131. {
  39132. name: "Sol-Swallowing",
  39133. height: math.unit(8e10, "feet")
  39134. },
  39135. {
  39136. name: "Galaxy Gulper",
  39137. height: math.unit(8, "galaxies")
  39138. },
  39139. {
  39140. name: "Cosmos Churner",
  39141. height: math.unit(8, "universes")
  39142. },
  39143. {
  39144. name: "Omnipotent Otter",
  39145. height: math.unit(80, "universes")
  39146. },
  39147. ]
  39148. ))
  39149. characterMakers.push(() => makeCharacter(
  39150. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  39151. {
  39152. front: {
  39153. height: math.unit(2.6, "meters"),
  39154. weight: math.unit(900, "kg"),
  39155. name: "Front",
  39156. image: {
  39157. source: "./media/characters/neesha/front.svg",
  39158. extra: 1803/1653,
  39159. bottom: 128/1931
  39160. }
  39161. },
  39162. },
  39163. [
  39164. {
  39165. name: "Normal",
  39166. height: math.unit(2.6, "meters"),
  39167. default: true
  39168. },
  39169. {
  39170. name: "Macro",
  39171. height: math.unit(50, "meters")
  39172. },
  39173. ]
  39174. ))
  39175. characterMakers.push(() => makeCharacter(
  39176. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  39177. {
  39178. front: {
  39179. height: math.unit(5, "feet"),
  39180. weight: math.unit(185, "lb"),
  39181. name: "Front",
  39182. image: {
  39183. source: "./media/characters/kyera/front.svg",
  39184. extra: 1875/1790,
  39185. bottom: 96/1971
  39186. }
  39187. },
  39188. },
  39189. [
  39190. {
  39191. name: "Normal",
  39192. height: math.unit(5, "feet"),
  39193. default: true
  39194. },
  39195. ]
  39196. ))
  39197. characterMakers.push(() => makeCharacter(
  39198. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  39199. {
  39200. front: {
  39201. height: math.unit(7 + 6/12, "feet"),
  39202. weight: math.unit(540, "lb"),
  39203. name: "Front",
  39204. image: {
  39205. source: "./media/characters/yuko/front.svg",
  39206. extra: 1282/1222,
  39207. bottom: 101/1383
  39208. }
  39209. },
  39210. frontClothed: {
  39211. height: math.unit(7 + 6/12, "feet"),
  39212. weight: math.unit(540, "lb"),
  39213. name: "Front (Clothed)",
  39214. image: {
  39215. source: "./media/characters/yuko/front-clothed.svg",
  39216. extra: 1282/1222,
  39217. bottom: 101/1383
  39218. }
  39219. },
  39220. },
  39221. [
  39222. {
  39223. name: "Normal",
  39224. height: math.unit(7 + 6/12, "feet"),
  39225. default: true
  39226. },
  39227. {
  39228. name: "Macro",
  39229. height: math.unit(26 + 9/12, "feet")
  39230. },
  39231. {
  39232. name: "Megamacro",
  39233. height: math.unit(300, "feet")
  39234. },
  39235. {
  39236. name: "Gigamacro",
  39237. height: math.unit(5000, "feet")
  39238. },
  39239. {
  39240. name: "Planetary",
  39241. height: math.unit(10000, "miles")
  39242. },
  39243. ]
  39244. ))
  39245. characterMakers.push(() => makeCharacter(
  39246. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  39247. {
  39248. front: {
  39249. height: math.unit(8 + 2/12, "feet"),
  39250. weight: math.unit(600, "lb"),
  39251. name: "Front",
  39252. image: {
  39253. source: "./media/characters/deam-nitrel/front.svg",
  39254. extra: 1308/1234,
  39255. bottom: 125/1433
  39256. }
  39257. },
  39258. },
  39259. [
  39260. {
  39261. name: "Normal",
  39262. height: math.unit(8 + 2/12, "feet"),
  39263. default: true
  39264. },
  39265. ]
  39266. ))
  39267. characterMakers.push(() => makeCharacter(
  39268. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  39269. {
  39270. front: {
  39271. height: math.unit(6.1, "feet"),
  39272. weight: math.unit(180, "lb"),
  39273. name: "Front",
  39274. image: {
  39275. source: "./media/characters/skyress/front.svg",
  39276. extra: 1045/915,
  39277. bottom: 28/1073
  39278. }
  39279. },
  39280. maw: {
  39281. height: math.unit(1, "feet"),
  39282. name: "Maw",
  39283. image: {
  39284. source: "./media/characters/skyress/maw.svg"
  39285. }
  39286. },
  39287. },
  39288. [
  39289. {
  39290. name: "Normal",
  39291. height: math.unit(6.1, "feet"),
  39292. default: true
  39293. },
  39294. {
  39295. name: "Macro",
  39296. height: math.unit(200, "feet")
  39297. },
  39298. ]
  39299. ))
  39300. characterMakers.push(() => makeCharacter(
  39301. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39302. {
  39303. front: {
  39304. height: math.unit(4 + 2/12, "feet"),
  39305. weight: math.unit(40, "kg"),
  39306. name: "Front",
  39307. image: {
  39308. source: "./media/characters/amethyst-jones/front.svg",
  39309. extra: 1220/1150,
  39310. bottom: 101/1321
  39311. }
  39312. },
  39313. },
  39314. [
  39315. {
  39316. name: "Normal",
  39317. height: math.unit(4 + 2/12, "feet"),
  39318. default: true
  39319. },
  39320. ]
  39321. ))
  39322. characterMakers.push(() => makeCharacter(
  39323. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39324. {
  39325. front: {
  39326. height: math.unit(1.7, "m"),
  39327. weight: math.unit(135, "lb"),
  39328. name: "Front",
  39329. image: {
  39330. source: "./media/characters/jade/front.svg",
  39331. extra: 1818/1767,
  39332. bottom: 32/1850
  39333. }
  39334. },
  39335. back: {
  39336. height: math.unit(1.7, "m"),
  39337. weight: math.unit(135, "lb"),
  39338. name: "Back",
  39339. image: {
  39340. source: "./media/characters/jade/back.svg",
  39341. extra: 1869/1809,
  39342. bottom: 35/1904
  39343. }
  39344. },
  39345. hand: {
  39346. height: math.unit(0.24, "m"),
  39347. name: "Hand",
  39348. image: {
  39349. source: "./media/characters/jade/hand.svg"
  39350. }
  39351. },
  39352. foot: {
  39353. height: math.unit(0.263, "m"),
  39354. name: "Foot",
  39355. image: {
  39356. source: "./media/characters/jade/foot.svg"
  39357. }
  39358. },
  39359. dick: {
  39360. height: math.unit(0.47, "m"),
  39361. name: "Dick",
  39362. image: {
  39363. source: "./media/characters/jade/dick.svg"
  39364. }
  39365. },
  39366. },
  39367. [
  39368. {
  39369. name: "Micro",
  39370. height: math.unit(22, "cm")
  39371. },
  39372. {
  39373. name: "Normal",
  39374. height: math.unit(1.7, "m"),
  39375. default: true
  39376. },
  39377. {
  39378. name: "Macro",
  39379. height: math.unit(152, "m")
  39380. },
  39381. ]
  39382. ))
  39383. characterMakers.push(() => makeCharacter(
  39384. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39385. {
  39386. front: {
  39387. height: math.unit(100, "miles"),
  39388. weight: math.unit(20000, "tons"),
  39389. name: "Front",
  39390. image: {
  39391. source: "./media/characters/cookie/front.svg",
  39392. extra: 1125/1070,
  39393. bottom: 30/1155
  39394. }
  39395. },
  39396. },
  39397. [
  39398. {
  39399. name: "Big",
  39400. height: math.unit(50, "feet")
  39401. },
  39402. {
  39403. name: "Macro",
  39404. height: math.unit(100, "miles"),
  39405. default: true
  39406. },
  39407. {
  39408. name: "Megamacro",
  39409. height: math.unit(90000, "miles")
  39410. },
  39411. ]
  39412. ))
  39413. characterMakers.push(() => makeCharacter(
  39414. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39415. {
  39416. front: {
  39417. height: math.unit(6, "feet"),
  39418. weight: math.unit(145, "lb"),
  39419. name: "Front",
  39420. image: {
  39421. source: "./media/characters/farzian/front.svg",
  39422. extra: 1902/1693,
  39423. bottom: 108/2010
  39424. }
  39425. },
  39426. },
  39427. [
  39428. {
  39429. name: "Macro",
  39430. height: math.unit(500, "feet"),
  39431. default: true
  39432. },
  39433. ]
  39434. ))
  39435. characterMakers.push(() => makeCharacter(
  39436. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39437. {
  39438. front: {
  39439. height: math.unit(3 + 6/12, "feet"),
  39440. weight: math.unit(50, "lb"),
  39441. name: "Front",
  39442. image: {
  39443. source: "./media/characters/kimberly-tilson/front.svg",
  39444. extra: 1400/1322,
  39445. bottom: 36/1436
  39446. }
  39447. },
  39448. back: {
  39449. height: math.unit(3 + 6/12, "feet"),
  39450. weight: math.unit(50, "lb"),
  39451. name: "Back",
  39452. image: {
  39453. source: "./media/characters/kimberly-tilson/back.svg",
  39454. extra: 1370/1307,
  39455. bottom: 20/1390
  39456. }
  39457. },
  39458. },
  39459. [
  39460. {
  39461. name: "Normal",
  39462. height: math.unit(3 + 6/12, "feet"),
  39463. default: true
  39464. },
  39465. ]
  39466. ))
  39467. characterMakers.push(() => makeCharacter(
  39468. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39469. {
  39470. front: {
  39471. height: math.unit(1148, "feet"),
  39472. weight: math.unit(34057, "lb"),
  39473. name: "Front",
  39474. image: {
  39475. source: "./media/characters/harthos/front.svg",
  39476. extra: 1391/1339,
  39477. bottom: 13/1404
  39478. }
  39479. },
  39480. },
  39481. [
  39482. {
  39483. name: "Macro",
  39484. height: math.unit(1148, "feet"),
  39485. default: true
  39486. },
  39487. ]
  39488. ))
  39489. characterMakers.push(() => makeCharacter(
  39490. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39491. {
  39492. front: {
  39493. height: math.unit(15, "feet"),
  39494. name: "Front",
  39495. image: {
  39496. source: "./media/characters/hypatia/front.svg",
  39497. extra: 1653/1591,
  39498. bottom: 79/1732
  39499. }
  39500. },
  39501. },
  39502. [
  39503. {
  39504. name: "Normal",
  39505. height: math.unit(15, "feet")
  39506. },
  39507. {
  39508. name: "Small",
  39509. height: math.unit(300, "feet")
  39510. },
  39511. {
  39512. name: "Macro",
  39513. height: math.unit(2500, "feet"),
  39514. default: true
  39515. },
  39516. {
  39517. name: "Mega Macro",
  39518. height: math.unit(1500, "miles")
  39519. },
  39520. {
  39521. name: "Giga Macro",
  39522. height: math.unit(1.5e6, "miles")
  39523. },
  39524. ]
  39525. ))
  39526. characterMakers.push(() => makeCharacter(
  39527. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39528. {
  39529. front: {
  39530. height: math.unit(6, "feet"),
  39531. weight: math.unit(200, "lb"),
  39532. name: "Front",
  39533. image: {
  39534. source: "./media/characters/wulver/front.svg",
  39535. extra: 1724/1632,
  39536. bottom: 130/1854
  39537. }
  39538. },
  39539. frontNsfw: {
  39540. height: math.unit(6, "feet"),
  39541. weight: math.unit(200, "lb"),
  39542. name: "Front (NSFW)",
  39543. image: {
  39544. source: "./media/characters/wulver/front-nsfw.svg",
  39545. extra: 1724/1632,
  39546. bottom: 130/1854
  39547. }
  39548. },
  39549. },
  39550. [
  39551. {
  39552. name: "Human-Sized",
  39553. height: math.unit(6, "feet")
  39554. },
  39555. {
  39556. name: "Normal",
  39557. height: math.unit(4, "meters"),
  39558. default: true
  39559. },
  39560. {
  39561. name: "Large",
  39562. height: math.unit(6, "m")
  39563. },
  39564. ]
  39565. ))
  39566. characterMakers.push(() => makeCharacter(
  39567. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39568. {
  39569. front: {
  39570. height: math.unit(7, "feet"),
  39571. name: "Front",
  39572. image: {
  39573. source: "./media/characters/maru/front.svg",
  39574. extra: 1595/1570,
  39575. bottom: 0/1595
  39576. }
  39577. },
  39578. },
  39579. [
  39580. {
  39581. name: "Normal",
  39582. height: math.unit(7, "feet"),
  39583. default: true
  39584. },
  39585. {
  39586. name: "Macro",
  39587. height: math.unit(700, "feet")
  39588. },
  39589. {
  39590. name: "Mega Macro",
  39591. height: math.unit(25, "miles")
  39592. },
  39593. ]
  39594. ))
  39595. characterMakers.push(() => makeCharacter(
  39596. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39597. {
  39598. front: {
  39599. height: math.unit(6, "feet"),
  39600. weight: math.unit(170, "lb"),
  39601. name: "Front",
  39602. image: {
  39603. source: "./media/characters/xenon/front.svg",
  39604. extra: 1376/1305,
  39605. bottom: 56/1432
  39606. }
  39607. },
  39608. back: {
  39609. height: math.unit(6, "feet"),
  39610. weight: math.unit(170, "lb"),
  39611. name: "Back",
  39612. image: {
  39613. source: "./media/characters/xenon/back.svg",
  39614. extra: 1328/1259,
  39615. bottom: 95/1423
  39616. }
  39617. },
  39618. maw: {
  39619. height: math.unit(0.52, "feet"),
  39620. name: "Maw",
  39621. image: {
  39622. source: "./media/characters/xenon/maw.svg"
  39623. }
  39624. },
  39625. hand: {
  39626. height: math.unit(0.82, "feet"),
  39627. name: "Hand",
  39628. image: {
  39629. source: "./media/characters/xenon/hand.svg"
  39630. }
  39631. },
  39632. foot: {
  39633. height: math.unit(1.13, "feet"),
  39634. name: "Foot",
  39635. image: {
  39636. source: "./media/characters/xenon/foot.svg"
  39637. }
  39638. },
  39639. },
  39640. [
  39641. {
  39642. name: "Micro",
  39643. height: math.unit(0.8, "inches")
  39644. },
  39645. {
  39646. name: "Normal",
  39647. height: math.unit(6, "feet")
  39648. },
  39649. {
  39650. name: "Macro",
  39651. height: math.unit(50, "feet"),
  39652. default: true
  39653. },
  39654. {
  39655. name: "Macro+",
  39656. height: math.unit(250, "feet")
  39657. },
  39658. {
  39659. name: "Megamacro",
  39660. height: math.unit(1500, "feet")
  39661. },
  39662. ]
  39663. ))
  39664. characterMakers.push(() => makeCharacter(
  39665. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39666. {
  39667. front: {
  39668. height: math.unit(7 + 5/12, "feet"),
  39669. name: "Front",
  39670. image: {
  39671. source: "./media/characters/zane/front.svg",
  39672. extra: 1260/1203,
  39673. bottom: 94/1354
  39674. }
  39675. },
  39676. back: {
  39677. height: math.unit(5.05, "feet"),
  39678. name: "Back",
  39679. image: {
  39680. source: "./media/characters/zane/back.svg",
  39681. extra: 893/829,
  39682. bottom: 30/923
  39683. }
  39684. },
  39685. werewolf: {
  39686. height: math.unit(11, "feet"),
  39687. name: "Werewolf",
  39688. image: {
  39689. source: "./media/characters/zane/werewolf.svg",
  39690. extra: 1383/1323,
  39691. bottom: 89/1472
  39692. }
  39693. },
  39694. foot: {
  39695. height: math.unit(1.46, "feet"),
  39696. name: "Foot",
  39697. image: {
  39698. source: "./media/characters/zane/foot.svg"
  39699. }
  39700. },
  39701. footFront: {
  39702. height: math.unit(0.784, "feet"),
  39703. name: "Foot (Front)",
  39704. image: {
  39705. source: "./media/characters/zane/foot-front.svg"
  39706. }
  39707. },
  39708. dick: {
  39709. height: math.unit(1.95, "feet"),
  39710. name: "Dick",
  39711. image: {
  39712. source: "./media/characters/zane/dick.svg"
  39713. }
  39714. },
  39715. dickWerewolf: {
  39716. height: math.unit(3.77, "feet"),
  39717. name: "Dick (Werewolf)",
  39718. image: {
  39719. source: "./media/characters/zane/dick.svg"
  39720. }
  39721. },
  39722. },
  39723. [
  39724. {
  39725. name: "Normal",
  39726. height: math.unit(7 + 5/12, "feet"),
  39727. default: true
  39728. },
  39729. ]
  39730. ))
  39731. characterMakers.push(() => makeCharacter(
  39732. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39733. {
  39734. front: {
  39735. height: math.unit(6 + 2/12, "feet"),
  39736. weight: math.unit(284, "lb"),
  39737. name: "Front",
  39738. image: {
  39739. source: "./media/characters/benni-desparque/front.svg",
  39740. extra: 1353/1126,
  39741. bottom: 69/1422
  39742. }
  39743. },
  39744. },
  39745. [
  39746. {
  39747. name: "Civilian",
  39748. height: math.unit(6 + 2/12, "feet")
  39749. },
  39750. {
  39751. name: "Normal",
  39752. height: math.unit(98, "feet"),
  39753. default: true
  39754. },
  39755. {
  39756. name: "Kaiju Fighter",
  39757. height: math.unit(268, "feet")
  39758. },
  39759. ]
  39760. ))
  39761. characterMakers.push(() => makeCharacter(
  39762. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39763. {
  39764. front: {
  39765. height: math.unit(5, "feet"),
  39766. weight: math.unit(105, "lb"),
  39767. name: "Front",
  39768. image: {
  39769. source: "./media/characters/maxine/front.svg",
  39770. extra: 1386/1250,
  39771. bottom: 71/1457
  39772. }
  39773. },
  39774. },
  39775. [
  39776. {
  39777. name: "Normal",
  39778. height: math.unit(5, "feet"),
  39779. default: true
  39780. },
  39781. ]
  39782. ))
  39783. characterMakers.push(() => makeCharacter(
  39784. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39785. {
  39786. front: {
  39787. height: math.unit(11 + 7/12, "feet"),
  39788. weight: math.unit(9576, "lb"),
  39789. name: "Front",
  39790. image: {
  39791. source: "./media/characters/scaly/front.svg",
  39792. extra: 888/867,
  39793. bottom: 36/924
  39794. }
  39795. },
  39796. },
  39797. [
  39798. {
  39799. name: "Normal",
  39800. height: math.unit(11 + 7/12, "feet"),
  39801. default: true
  39802. },
  39803. ]
  39804. ))
  39805. characterMakers.push(() => makeCharacter(
  39806. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39807. {
  39808. front: {
  39809. height: math.unit(9, "inches"),
  39810. name: "Front",
  39811. image: {
  39812. source: "./media/characters/saelria/front.svg",
  39813. extra: 662/621,
  39814. bottom: 12/674
  39815. }
  39816. },
  39817. },
  39818. [
  39819. {
  39820. name: "Tiny",
  39821. height: math.unit(9, "inches"),
  39822. default: true
  39823. },
  39824. ]
  39825. ))
  39826. characterMakers.push(() => makeCharacter(
  39827. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39828. {
  39829. front: {
  39830. height: math.unit(80, "meters"),
  39831. weight: math.unit(7000, "tonnes"),
  39832. name: "Front",
  39833. image: {
  39834. source: "./media/characters/tef/front.svg",
  39835. extra: 2036/1991,
  39836. bottom: 54/2090
  39837. }
  39838. },
  39839. back: {
  39840. height: math.unit(80, "meters"),
  39841. weight: math.unit(7000, "tonnes"),
  39842. name: "Back",
  39843. image: {
  39844. source: "./media/characters/tef/back.svg",
  39845. extra: 2036/1991,
  39846. bottom: 54/2090
  39847. }
  39848. },
  39849. },
  39850. [
  39851. {
  39852. name: "Macro",
  39853. height: math.unit(80, "meters"),
  39854. default: true
  39855. },
  39856. ]
  39857. ))
  39858. characterMakers.push(() => makeCharacter(
  39859. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39860. {
  39861. front: {
  39862. height: math.unit(13, "feet"),
  39863. weight: math.unit(6, "tons"),
  39864. name: "Front",
  39865. image: {
  39866. source: "./media/characters/rover/front.svg",
  39867. extra: 1233/1156,
  39868. bottom: 50/1283
  39869. }
  39870. },
  39871. back: {
  39872. height: math.unit(13, "feet"),
  39873. weight: math.unit(6, "tons"),
  39874. name: "Back",
  39875. image: {
  39876. source: "./media/characters/rover/back.svg",
  39877. extra: 1327/1258,
  39878. bottom: 39/1366
  39879. }
  39880. },
  39881. },
  39882. [
  39883. {
  39884. name: "Normal",
  39885. height: math.unit(13, "feet"),
  39886. default: true
  39887. },
  39888. {
  39889. name: "Macro",
  39890. height: math.unit(1300, "feet")
  39891. },
  39892. {
  39893. name: "Megamacro",
  39894. height: math.unit(1300, "miles")
  39895. },
  39896. {
  39897. name: "Gigamacro",
  39898. height: math.unit(1300000, "miles")
  39899. },
  39900. ]
  39901. ))
  39902. characterMakers.push(() => makeCharacter(
  39903. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39904. {
  39905. front: {
  39906. height: math.unit(6, "feet"),
  39907. weight: math.unit(150, "lb"),
  39908. name: "Front",
  39909. image: {
  39910. source: "./media/characters/ariz/front.svg",
  39911. extra: 1401/1346,
  39912. bottom: 5/1406
  39913. }
  39914. },
  39915. },
  39916. [
  39917. {
  39918. name: "Normal",
  39919. height: math.unit(10, "feet"),
  39920. default: true
  39921. },
  39922. ]
  39923. ))
  39924. characterMakers.push(() => makeCharacter(
  39925. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39926. {
  39927. front: {
  39928. height: math.unit(6, "feet"),
  39929. weight: math.unit(140, "lb"),
  39930. name: "Front",
  39931. image: {
  39932. source: "./media/characters/sigrun/front.svg",
  39933. extra: 1418/1359,
  39934. bottom: 27/1445
  39935. }
  39936. },
  39937. },
  39938. [
  39939. {
  39940. name: "Macro",
  39941. height: math.unit(35, "feet"),
  39942. default: true
  39943. },
  39944. ]
  39945. ))
  39946. characterMakers.push(() => makeCharacter(
  39947. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39948. {
  39949. front: {
  39950. height: math.unit(6, "feet"),
  39951. weight: math.unit(150, "lb"),
  39952. name: "Front",
  39953. image: {
  39954. source: "./media/characters/numin/front.svg",
  39955. extra: 1433/1388,
  39956. bottom: 12/1445
  39957. }
  39958. },
  39959. },
  39960. [
  39961. {
  39962. name: "Macro",
  39963. height: math.unit(21.5, "km"),
  39964. default: true
  39965. },
  39966. ]
  39967. ))
  39968. characterMakers.push(() => makeCharacter(
  39969. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39970. {
  39971. front: {
  39972. height: math.unit(6, "feet"),
  39973. weight: math.unit(463, "lb"),
  39974. name: "Front",
  39975. image: {
  39976. source: "./media/characters/melwa/front.svg",
  39977. extra: 1307/1248,
  39978. bottom: 93/1400
  39979. }
  39980. },
  39981. },
  39982. [
  39983. {
  39984. name: "Macro",
  39985. height: math.unit(50, "meters"),
  39986. default: true
  39987. },
  39988. ]
  39989. ))
  39990. characterMakers.push(() => makeCharacter(
  39991. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39992. {
  39993. front: {
  39994. height: math.unit(325, "feet"),
  39995. name: "Front",
  39996. image: {
  39997. source: "./media/characters/zorkaiju/front.svg",
  39998. extra: 1955/1814,
  39999. bottom: 40/1995
  40000. }
  40001. },
  40002. frontExtended: {
  40003. height: math.unit(325, "feet"),
  40004. name: "Front (Extended)",
  40005. image: {
  40006. source: "./media/characters/zorkaiju/front-extended.svg",
  40007. extra: 1955/1814,
  40008. bottom: 40/1995
  40009. }
  40010. },
  40011. side: {
  40012. height: math.unit(325, "feet"),
  40013. name: "Side",
  40014. image: {
  40015. source: "./media/characters/zorkaiju/side.svg",
  40016. extra: 1495/1396,
  40017. bottom: 17/1512
  40018. }
  40019. },
  40020. sideExtended: {
  40021. height: math.unit(325, "feet"),
  40022. name: "Side (Extended)",
  40023. image: {
  40024. source: "./media/characters/zorkaiju/side-extended.svg",
  40025. extra: 1495/1396,
  40026. bottom: 17/1512
  40027. }
  40028. },
  40029. back: {
  40030. height: math.unit(325, "feet"),
  40031. name: "Back",
  40032. image: {
  40033. source: "./media/characters/zorkaiju/back.svg",
  40034. extra: 1959/1821,
  40035. bottom: 31/1990
  40036. }
  40037. },
  40038. backExtended: {
  40039. height: math.unit(325, "feet"),
  40040. name: "Back (Extended)",
  40041. image: {
  40042. source: "./media/characters/zorkaiju/back-extended.svg",
  40043. extra: 1959/1821,
  40044. bottom: 31/1990
  40045. }
  40046. },
  40047. hand: {
  40048. height: math.unit(58.4, "feet"),
  40049. name: "Hand",
  40050. image: {
  40051. source: "./media/characters/zorkaiju/hand.svg"
  40052. }
  40053. },
  40054. handExtended: {
  40055. height: math.unit(61.4, "feet"),
  40056. name: "Hand (Extended)",
  40057. image: {
  40058. source: "./media/characters/zorkaiju/hand-extended.svg"
  40059. }
  40060. },
  40061. foot: {
  40062. height: math.unit(95, "feet"),
  40063. name: "Foot",
  40064. image: {
  40065. source: "./media/characters/zorkaiju/foot.svg"
  40066. }
  40067. },
  40068. leftArm: {
  40069. height: math.unit(59, "feet"),
  40070. name: "Left Arm",
  40071. image: {
  40072. source: "./media/characters/zorkaiju/left-arm.svg"
  40073. }
  40074. },
  40075. rightArm: {
  40076. height: math.unit(59, "feet"),
  40077. name: "Right Arm",
  40078. image: {
  40079. source: "./media/characters/zorkaiju/right-arm.svg"
  40080. }
  40081. },
  40082. tail: {
  40083. height: math.unit(104, "feet"),
  40084. name: "Tail",
  40085. image: {
  40086. source: "./media/characters/zorkaiju/tail.svg"
  40087. }
  40088. },
  40089. tailExtended: {
  40090. height: math.unit(104, "feet"),
  40091. name: "Tail (Extended)",
  40092. image: {
  40093. source: "./media/characters/zorkaiju/tail-extended.svg"
  40094. }
  40095. },
  40096. tailBottom: {
  40097. height: math.unit(104, "feet"),
  40098. name: "Tail Bottom",
  40099. image: {
  40100. source: "./media/characters/zorkaiju/tail-bottom.svg"
  40101. }
  40102. },
  40103. crystal: {
  40104. height: math.unit(27.54, "feet"),
  40105. name: "Crystal",
  40106. image: {
  40107. source: "./media/characters/zorkaiju/crystal.svg"
  40108. }
  40109. },
  40110. },
  40111. [
  40112. {
  40113. name: "Kaiju",
  40114. height: math.unit(325, "feet"),
  40115. default: true
  40116. },
  40117. ]
  40118. ))
  40119. characterMakers.push(() => makeCharacter(
  40120. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  40121. {
  40122. front: {
  40123. height: math.unit(6 + 1/12, "feet"),
  40124. weight: math.unit(115, "lb"),
  40125. name: "Front",
  40126. image: {
  40127. source: "./media/characters/bailey-belfry/front.svg",
  40128. extra: 1240/1121,
  40129. bottom: 101/1341
  40130. }
  40131. },
  40132. },
  40133. [
  40134. {
  40135. name: "Normal",
  40136. height: math.unit(6 + 1/12, "feet"),
  40137. default: true
  40138. },
  40139. ]
  40140. ))
  40141. characterMakers.push(() => makeCharacter(
  40142. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  40143. {
  40144. side: {
  40145. height: math.unit(4, "meters"),
  40146. weight: math.unit(250, "kg"),
  40147. name: "Side",
  40148. image: {
  40149. source: "./media/characters/blacky/side.svg",
  40150. extra: 1027/919,
  40151. bottom: 43/1070
  40152. }
  40153. },
  40154. maw: {
  40155. height: math.unit(1, "meters"),
  40156. name: "Maw",
  40157. image: {
  40158. source: "./media/characters/blacky/maw.svg"
  40159. }
  40160. },
  40161. paw: {
  40162. height: math.unit(1, "meters"),
  40163. name: "Paw",
  40164. image: {
  40165. source: "./media/characters/blacky/paw.svg"
  40166. }
  40167. },
  40168. },
  40169. [
  40170. {
  40171. name: "Normal",
  40172. height: math.unit(4, "meters"),
  40173. default: true
  40174. },
  40175. ]
  40176. ))
  40177. characterMakers.push(() => makeCharacter(
  40178. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  40179. {
  40180. front: {
  40181. height: math.unit(170, "cm"),
  40182. weight: math.unit(66, "kg"),
  40183. name: "Front",
  40184. image: {
  40185. source: "./media/characters/thux-ei/front.svg",
  40186. extra: 1109/1011,
  40187. bottom: 8/1117
  40188. }
  40189. },
  40190. },
  40191. [
  40192. {
  40193. name: "Normal",
  40194. height: math.unit(170, "cm"),
  40195. default: true
  40196. },
  40197. ]
  40198. ))
  40199. characterMakers.push(() => makeCharacter(
  40200. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  40201. {
  40202. front: {
  40203. height: math.unit(5, "feet"),
  40204. weight: math.unit(120, "lb"),
  40205. name: "Front",
  40206. image: {
  40207. source: "./media/characters/roxanne-voltaire/front.svg",
  40208. extra: 1901/1779,
  40209. bottom: 53/1954
  40210. }
  40211. },
  40212. },
  40213. [
  40214. {
  40215. name: "Normal",
  40216. height: math.unit(5, "feet"),
  40217. default: true
  40218. },
  40219. {
  40220. name: "Giant",
  40221. height: math.unit(50, "feet")
  40222. },
  40223. {
  40224. name: "Titan",
  40225. height: math.unit(500, "feet")
  40226. },
  40227. {
  40228. name: "Macro",
  40229. height: math.unit(5000, "feet")
  40230. },
  40231. {
  40232. name: "Megamacro",
  40233. height: math.unit(50000, "feet")
  40234. },
  40235. {
  40236. name: "Gigamacro",
  40237. height: math.unit(500000, "feet")
  40238. },
  40239. {
  40240. name: "Teramacro",
  40241. height: math.unit(5e6, "feet")
  40242. },
  40243. ]
  40244. ))
  40245. characterMakers.push(() => makeCharacter(
  40246. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  40247. {
  40248. front: {
  40249. height: math.unit(6 + 2/12, "feet"),
  40250. name: "Front",
  40251. image: {
  40252. source: "./media/characters/squeaks/front.svg",
  40253. extra: 1823/1768,
  40254. bottom: 138/1961
  40255. }
  40256. },
  40257. },
  40258. [
  40259. {
  40260. name: "Micro",
  40261. height: math.unit(0.5, "inches")
  40262. },
  40263. {
  40264. name: "Normal",
  40265. height: math.unit(6 + 2/12, "feet"),
  40266. default: true
  40267. },
  40268. {
  40269. name: "Macro",
  40270. height: math.unit(600, "feet")
  40271. },
  40272. ]
  40273. ))
  40274. characterMakers.push(() => makeCharacter(
  40275. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  40276. {
  40277. front: {
  40278. height: math.unit(1.72, "meters"),
  40279. name: "Front",
  40280. image: {
  40281. source: "./media/characters/archinger/front.svg",
  40282. extra: 1861/1675,
  40283. bottom: 125/1986
  40284. }
  40285. },
  40286. back: {
  40287. height: math.unit(1.72, "meters"),
  40288. name: "Back",
  40289. image: {
  40290. source: "./media/characters/archinger/back.svg",
  40291. extra: 1844/1701,
  40292. bottom: 104/1948
  40293. }
  40294. },
  40295. cock: {
  40296. height: math.unit(0.59, "feet"),
  40297. name: "Cock",
  40298. image: {
  40299. source: "./media/characters/archinger/cock.svg"
  40300. }
  40301. },
  40302. },
  40303. [
  40304. {
  40305. name: "Normal",
  40306. height: math.unit(1.72, "meters"),
  40307. default: true
  40308. },
  40309. {
  40310. name: "Macro",
  40311. height: math.unit(84, "meters")
  40312. },
  40313. {
  40314. name: "Macro+",
  40315. height: math.unit(112, "meters")
  40316. },
  40317. {
  40318. name: "Macro++",
  40319. height: math.unit(960, "meters")
  40320. },
  40321. {
  40322. name: "Macro+++",
  40323. height: math.unit(4, "km")
  40324. },
  40325. {
  40326. name: "Macro++++",
  40327. height: math.unit(48, "km")
  40328. },
  40329. {
  40330. name: "Macro+++++",
  40331. height: math.unit(4500, "km")
  40332. },
  40333. ]
  40334. ))
  40335. characterMakers.push(() => makeCharacter(
  40336. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40337. {
  40338. front: {
  40339. height: math.unit(5 + 5/12, "feet"),
  40340. name: "Front",
  40341. image: {
  40342. source: "./media/characters/alsnapz/front.svg",
  40343. extra: 1157/1065,
  40344. bottom: 42/1199
  40345. }
  40346. },
  40347. },
  40348. [
  40349. {
  40350. name: "Normal",
  40351. height: math.unit(5 + 5/12, "feet"),
  40352. default: true
  40353. },
  40354. ]
  40355. ))
  40356. characterMakers.push(() => makeCharacter(
  40357. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40358. {
  40359. side: {
  40360. height: math.unit(3.2, "earths"),
  40361. name: "Side",
  40362. image: {
  40363. source: "./media/characters/mag/side.svg",
  40364. extra: 1331/1008,
  40365. bottom: 52/1383
  40366. }
  40367. },
  40368. wing: {
  40369. height: math.unit(1.94, "earths"),
  40370. name: "Wing",
  40371. image: {
  40372. source: "./media/characters/mag/wing.svg"
  40373. }
  40374. },
  40375. dick: {
  40376. height: math.unit(1.8, "earths"),
  40377. name: "Dick",
  40378. image: {
  40379. source: "./media/characters/mag/dick.svg"
  40380. }
  40381. },
  40382. ass: {
  40383. height: math.unit(1.33, "earths"),
  40384. name: "Ass",
  40385. image: {
  40386. source: "./media/characters/mag/ass.svg"
  40387. }
  40388. },
  40389. head: {
  40390. height: math.unit(1.1, "earths"),
  40391. name: "Head",
  40392. image: {
  40393. source: "./media/characters/mag/head.svg"
  40394. }
  40395. },
  40396. maw: {
  40397. height: math.unit(1.62, "earths"),
  40398. name: "Maw",
  40399. image: {
  40400. source: "./media/characters/mag/maw.svg"
  40401. }
  40402. },
  40403. },
  40404. [
  40405. {
  40406. name: "Small",
  40407. height: math.unit(162, "feet")
  40408. },
  40409. {
  40410. name: "Normal",
  40411. height: math.unit(3.2, "earths"),
  40412. default: true
  40413. },
  40414. ]
  40415. ))
  40416. characterMakers.push(() => makeCharacter(
  40417. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40418. {
  40419. front: {
  40420. height: math.unit(512, "feet"),
  40421. weight: math.unit(63509, "tonnes"),
  40422. name: "Front",
  40423. image: {
  40424. source: "./media/characters/vorrel-harroc/front.svg",
  40425. extra: 1075/1063,
  40426. bottom: 62/1137
  40427. }
  40428. },
  40429. },
  40430. [
  40431. {
  40432. name: "Normal",
  40433. height: math.unit(10, "feet")
  40434. },
  40435. {
  40436. name: "Macro",
  40437. height: math.unit(512, "feet"),
  40438. default: true
  40439. },
  40440. {
  40441. name: "Megamacro",
  40442. height: math.unit(256, "miles")
  40443. },
  40444. {
  40445. name: "Gigamacro",
  40446. height: math.unit(4096, "miles")
  40447. },
  40448. ]
  40449. ))
  40450. characterMakers.push(() => makeCharacter(
  40451. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40452. {
  40453. side: {
  40454. height: math.unit(50, "feet"),
  40455. name: "Side",
  40456. image: {
  40457. source: "./media/characters/froimar/side.svg",
  40458. extra: 855/638,
  40459. bottom: 99/954
  40460. }
  40461. },
  40462. },
  40463. [
  40464. {
  40465. name: "Macro",
  40466. height: math.unit(50, "feet"),
  40467. default: true
  40468. },
  40469. ]
  40470. ))
  40471. characterMakers.push(() => makeCharacter(
  40472. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40473. {
  40474. front: {
  40475. height: math.unit(210, "miles"),
  40476. name: "Front",
  40477. image: {
  40478. source: "./media/characters/timothy/front.svg",
  40479. extra: 1007/943,
  40480. bottom: 62/1069
  40481. }
  40482. },
  40483. frontSkirt: {
  40484. height: math.unit(210, "miles"),
  40485. name: "Front (Skirt)",
  40486. image: {
  40487. source: "./media/characters/timothy/front-skirt.svg",
  40488. extra: 1007/943,
  40489. bottom: 62/1069
  40490. }
  40491. },
  40492. frontCoat: {
  40493. height: math.unit(210, "miles"),
  40494. name: "Front (Coat)",
  40495. image: {
  40496. source: "./media/characters/timothy/front-coat.svg",
  40497. extra: 1007/943,
  40498. bottom: 62/1069
  40499. }
  40500. },
  40501. },
  40502. [
  40503. {
  40504. name: "Macro",
  40505. height: math.unit(210, "miles"),
  40506. default: true
  40507. },
  40508. {
  40509. name: "Megamacro",
  40510. height: math.unit(210000, "miles")
  40511. },
  40512. ]
  40513. ))
  40514. characterMakers.push(() => makeCharacter(
  40515. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40516. {
  40517. front: {
  40518. height: math.unit(188, "feet"),
  40519. name: "Front",
  40520. image: {
  40521. source: "./media/characters/pyotr/front.svg",
  40522. extra: 1912/1826,
  40523. bottom: 18/1930
  40524. }
  40525. },
  40526. },
  40527. [
  40528. {
  40529. name: "Macro",
  40530. height: math.unit(188, "feet"),
  40531. default: true
  40532. },
  40533. {
  40534. name: "Megamacro",
  40535. height: math.unit(8, "miles")
  40536. },
  40537. ]
  40538. ))
  40539. characterMakers.push(() => makeCharacter(
  40540. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40541. {
  40542. side: {
  40543. height: math.unit(10, "feet"),
  40544. weight: math.unit(4500, "lb"),
  40545. name: "Side",
  40546. image: {
  40547. source: "./media/characters/ackart/side.svg",
  40548. extra: 1776/1668,
  40549. bottom: 116/1892
  40550. }
  40551. },
  40552. },
  40553. [
  40554. {
  40555. name: "Normal",
  40556. height: math.unit(10, "feet"),
  40557. default: true
  40558. },
  40559. ]
  40560. ))
  40561. characterMakers.push(() => makeCharacter(
  40562. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40563. {
  40564. side: {
  40565. height: math.unit(21, "feet"),
  40566. name: "Side",
  40567. image: {
  40568. source: "./media/characters/nolow/side.svg",
  40569. extra: 1484/1434,
  40570. bottom: 85/1569
  40571. }
  40572. },
  40573. sideErect: {
  40574. height: math.unit(21, "feet"),
  40575. name: "Side-erect",
  40576. image: {
  40577. source: "./media/characters/nolow/side-erect.svg",
  40578. extra: 1484/1434,
  40579. bottom: 85/1569
  40580. }
  40581. },
  40582. },
  40583. [
  40584. {
  40585. name: "Regular",
  40586. height: math.unit(12, "feet")
  40587. },
  40588. {
  40589. name: "Big Chee",
  40590. height: math.unit(21, "feet"),
  40591. default: true
  40592. },
  40593. ]
  40594. ))
  40595. characterMakers.push(() => makeCharacter(
  40596. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40597. {
  40598. front: {
  40599. height: math.unit(7, "feet"),
  40600. weight: math.unit(250, "lb"),
  40601. name: "Front",
  40602. image: {
  40603. source: "./media/characters/nines/front.svg",
  40604. extra: 1741/1607,
  40605. bottom: 41/1782
  40606. }
  40607. },
  40608. side: {
  40609. height: math.unit(7, "feet"),
  40610. weight: math.unit(250, "lb"),
  40611. name: "Side",
  40612. image: {
  40613. source: "./media/characters/nines/side.svg",
  40614. extra: 1854/1735,
  40615. bottom: 93/1947
  40616. }
  40617. },
  40618. back: {
  40619. height: math.unit(7, "feet"),
  40620. weight: math.unit(250, "lb"),
  40621. name: "Back",
  40622. image: {
  40623. source: "./media/characters/nines/back.svg",
  40624. extra: 1748/1615,
  40625. bottom: 20/1768
  40626. }
  40627. },
  40628. },
  40629. [
  40630. {
  40631. name: "Megamacro",
  40632. height: math.unit(99, "km"),
  40633. default: true
  40634. },
  40635. ]
  40636. ))
  40637. characterMakers.push(() => makeCharacter(
  40638. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40639. {
  40640. front: {
  40641. height: math.unit(5 + 10/12, "feet"),
  40642. weight: math.unit(210, "lb"),
  40643. name: "Front",
  40644. image: {
  40645. source: "./media/characters/zenith/front.svg",
  40646. extra: 1531/1452,
  40647. bottom: 198/1729
  40648. }
  40649. },
  40650. back: {
  40651. height: math.unit(5 + 10/12, "feet"),
  40652. weight: math.unit(210, "lb"),
  40653. name: "Back",
  40654. image: {
  40655. source: "./media/characters/zenith/back.svg",
  40656. extra: 1571/1487,
  40657. bottom: 75/1646
  40658. }
  40659. },
  40660. },
  40661. [
  40662. {
  40663. name: "Normal",
  40664. height: math.unit(5 + 10/12, "feet"),
  40665. default: true
  40666. }
  40667. ]
  40668. ))
  40669. characterMakers.push(() => makeCharacter(
  40670. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40671. {
  40672. front: {
  40673. height: math.unit(4, "feet"),
  40674. weight: math.unit(60, "lb"),
  40675. name: "Front",
  40676. image: {
  40677. source: "./media/characters/jasper/front.svg",
  40678. extra: 1450/1379,
  40679. bottom: 19/1469
  40680. }
  40681. },
  40682. },
  40683. [
  40684. {
  40685. name: "Normal",
  40686. height: math.unit(4, "feet"),
  40687. default: true
  40688. },
  40689. ]
  40690. ))
  40691. characterMakers.push(() => makeCharacter(
  40692. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40693. {
  40694. front: {
  40695. height: math.unit(6 + 5/12, "feet"),
  40696. weight: math.unit(290, "lb"),
  40697. name: "Front",
  40698. image: {
  40699. source: "./media/characters/tiberius-thyben/front.svg",
  40700. extra: 757/739,
  40701. bottom: 39/796
  40702. }
  40703. },
  40704. },
  40705. [
  40706. {
  40707. name: "Micro",
  40708. height: math.unit(1.5, "inches")
  40709. },
  40710. {
  40711. name: "Normal",
  40712. height: math.unit(6 + 5/12, "feet"),
  40713. default: true
  40714. },
  40715. {
  40716. name: "Macro",
  40717. height: math.unit(300, "feet")
  40718. },
  40719. ]
  40720. ))
  40721. characterMakers.push(() => makeCharacter(
  40722. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40723. {
  40724. front: {
  40725. height: math.unit(5 + 6/12, "feet"),
  40726. weight: math.unit(60, "kg"),
  40727. name: "Front",
  40728. image: {
  40729. source: "./media/characters/sabre/front.svg",
  40730. extra: 738/671,
  40731. bottom: 27/765
  40732. }
  40733. },
  40734. },
  40735. [
  40736. {
  40737. name: "Teeny",
  40738. height: math.unit(2, "inches")
  40739. },
  40740. {
  40741. name: "Smol",
  40742. height: math.unit(8, "inches")
  40743. },
  40744. {
  40745. name: "Normal",
  40746. height: math.unit(5 + 6/12, "feet"),
  40747. default: true
  40748. },
  40749. {
  40750. name: "Mini-Macro",
  40751. height: math.unit(15, "feet")
  40752. },
  40753. {
  40754. name: "Macro",
  40755. height: math.unit(50, "feet")
  40756. },
  40757. ]
  40758. ))
  40759. characterMakers.push(() => makeCharacter(
  40760. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40761. {
  40762. front: {
  40763. height: math.unit(6 + 4/12, "feet"),
  40764. weight: math.unit(170, "lb"),
  40765. name: "Front",
  40766. image: {
  40767. source: "./media/characters/charlie/front.svg",
  40768. extra: 1348/1228,
  40769. bottom: 15/1363
  40770. }
  40771. },
  40772. },
  40773. [
  40774. {
  40775. name: "Macro",
  40776. height: math.unit(1700, "meters"),
  40777. default: true
  40778. },
  40779. {
  40780. name: "MegaMacro",
  40781. height: math.unit(20400, "meters")
  40782. },
  40783. ]
  40784. ))
  40785. characterMakers.push(() => makeCharacter(
  40786. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40787. {
  40788. front: {
  40789. height: math.unit(6 + 3/12, "feet"),
  40790. weight: math.unit(185, "lb"),
  40791. name: "Front",
  40792. image: {
  40793. source: "./media/characters/susan-grant/front.svg",
  40794. extra: 1351/1327,
  40795. bottom: 26/1377
  40796. }
  40797. },
  40798. },
  40799. [
  40800. {
  40801. name: "Normal",
  40802. height: math.unit(6 + 3/12, "feet"),
  40803. default: true
  40804. },
  40805. {
  40806. name: "Macro",
  40807. height: math.unit(225, "feet")
  40808. },
  40809. {
  40810. name: "Macro+",
  40811. height: math.unit(900, "feet")
  40812. },
  40813. {
  40814. name: "MegaMacro",
  40815. height: math.unit(14400, "feet")
  40816. },
  40817. ]
  40818. ))
  40819. characterMakers.push(() => makeCharacter(
  40820. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40821. {
  40822. front: {
  40823. height: math.unit(5 + 4/12, "feet"),
  40824. weight: math.unit(110, "lb"),
  40825. name: "Front",
  40826. image: {
  40827. source: "./media/characters/axel-isanov/front.svg",
  40828. extra: 1096/1065,
  40829. bottom: 13/1109
  40830. }
  40831. },
  40832. },
  40833. [
  40834. {
  40835. name: "Normal",
  40836. height: math.unit(5 + 4/12, "feet"),
  40837. default: true
  40838. },
  40839. ]
  40840. ))
  40841. characterMakers.push(() => makeCharacter(
  40842. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40843. {
  40844. front: {
  40845. height: math.unit(9, "feet"),
  40846. weight: math.unit(467, "lb"),
  40847. name: "Front",
  40848. image: {
  40849. source: "./media/characters/necahual/front.svg",
  40850. extra: 920/873,
  40851. bottom: 26/946
  40852. }
  40853. },
  40854. back: {
  40855. height: math.unit(9, "feet"),
  40856. weight: math.unit(467, "lb"),
  40857. name: "Back",
  40858. image: {
  40859. source: "./media/characters/necahual/back.svg",
  40860. extra: 930/884,
  40861. bottom: 16/946
  40862. }
  40863. },
  40864. frontUnderwear: {
  40865. height: math.unit(9, "feet"),
  40866. weight: math.unit(467, "lb"),
  40867. name: "Front (Underwear)",
  40868. image: {
  40869. source: "./media/characters/necahual/front-underwear.svg",
  40870. extra: 920/873,
  40871. bottom: 26/946
  40872. }
  40873. },
  40874. frontDressed: {
  40875. height: math.unit(9, "feet"),
  40876. weight: math.unit(467, "lb"),
  40877. name: "Front (Dressed)",
  40878. image: {
  40879. source: "./media/characters/necahual/front-dressed.svg",
  40880. extra: 920/873,
  40881. bottom: 26/946
  40882. }
  40883. },
  40884. },
  40885. [
  40886. {
  40887. name: "Comprsesed",
  40888. height: math.unit(9, "feet")
  40889. },
  40890. {
  40891. name: "Natural",
  40892. height: math.unit(15, "feet"),
  40893. default: true
  40894. },
  40895. {
  40896. name: "Boosted",
  40897. height: math.unit(50, "feet")
  40898. },
  40899. {
  40900. name: "Boosted+",
  40901. height: math.unit(150, "feet")
  40902. },
  40903. {
  40904. name: "Max",
  40905. height: math.unit(500, "feet")
  40906. },
  40907. ]
  40908. ))
  40909. characterMakers.push(() => makeCharacter(
  40910. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40911. {
  40912. front: {
  40913. height: math.unit(22 + 1/12, "feet"),
  40914. weight: math.unit(3200, "lb"),
  40915. name: "Front",
  40916. image: {
  40917. source: "./media/characters/theo-acacia/front.svg",
  40918. extra: 1796/1741,
  40919. bottom: 83/1879
  40920. }
  40921. },
  40922. frontUnderwear: {
  40923. height: math.unit(22 + 1/12, "feet"),
  40924. weight: math.unit(3200, "lb"),
  40925. name: "Front (Underwear)",
  40926. image: {
  40927. source: "./media/characters/theo-acacia/front-underwear.svg",
  40928. extra: 1796/1741,
  40929. bottom: 83/1879
  40930. }
  40931. },
  40932. frontNude: {
  40933. height: math.unit(22 + 1/12, "feet"),
  40934. weight: math.unit(3200, "lb"),
  40935. name: "Front (Nude)",
  40936. image: {
  40937. source: "./media/characters/theo-acacia/front-nude.svg",
  40938. extra: 1796/1741,
  40939. bottom: 83/1879
  40940. }
  40941. },
  40942. },
  40943. [
  40944. {
  40945. name: "Normal",
  40946. height: math.unit(22 + 1/12, "feet"),
  40947. default: true
  40948. },
  40949. ]
  40950. ))
  40951. characterMakers.push(() => makeCharacter(
  40952. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40953. {
  40954. front: {
  40955. height: math.unit(20, "feet"),
  40956. name: "Front",
  40957. image: {
  40958. source: "./media/characters/astra/front.svg",
  40959. extra: 1850/1714,
  40960. bottom: 106/1956
  40961. }
  40962. },
  40963. frontUndressed: {
  40964. height: math.unit(20, "feet"),
  40965. name: "Front (Undressed)",
  40966. image: {
  40967. source: "./media/characters/astra/front-undressed.svg",
  40968. extra: 1926/1749,
  40969. bottom: 0/1926
  40970. }
  40971. },
  40972. hand: {
  40973. height: math.unit(1.53, "feet"),
  40974. name: "Hand",
  40975. image: {
  40976. source: "./media/characters/astra/hand.svg"
  40977. }
  40978. },
  40979. paw: {
  40980. height: math.unit(1.53, "feet"),
  40981. name: "Paw",
  40982. image: {
  40983. source: "./media/characters/astra/paw.svg"
  40984. }
  40985. },
  40986. },
  40987. [
  40988. {
  40989. name: "Smallest",
  40990. height: math.unit(20, "feet")
  40991. },
  40992. {
  40993. name: "Normal",
  40994. height: math.unit(1e9, "miles"),
  40995. default: true
  40996. },
  40997. {
  40998. name: "Larger",
  40999. height: math.unit(5, "multiverses")
  41000. },
  41001. {
  41002. name: "Largest",
  41003. height: math.unit(1e9, "multiverses")
  41004. },
  41005. ]
  41006. ))
  41007. characterMakers.push(() => makeCharacter(
  41008. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41009. {
  41010. front: {
  41011. height: math.unit(8, "feet"),
  41012. name: "Front",
  41013. image: {
  41014. source: "./media/characters/breanna/front.svg",
  41015. extra: 1912/1632,
  41016. bottom: 33/1945
  41017. }
  41018. },
  41019. },
  41020. [
  41021. {
  41022. name: "Smallest",
  41023. height: math.unit(8, "feet")
  41024. },
  41025. {
  41026. name: "Normal",
  41027. height: math.unit(1, "mile"),
  41028. default: true
  41029. },
  41030. {
  41031. name: "Maximum",
  41032. height: math.unit(1500000000000, "lightyears")
  41033. },
  41034. ]
  41035. ))
  41036. characterMakers.push(() => makeCharacter(
  41037. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  41038. {
  41039. front: {
  41040. height: math.unit(5 + 11/12, "feet"),
  41041. weight: math.unit(155, "lb"),
  41042. name: "Front",
  41043. image: {
  41044. source: "./media/characters/cai/front.svg",
  41045. extra: 1823/1702,
  41046. bottom: 32/1855
  41047. }
  41048. },
  41049. back: {
  41050. height: math.unit(5 + 11/12, "feet"),
  41051. weight: math.unit(155, "lb"),
  41052. name: "Back",
  41053. image: {
  41054. source: "./media/characters/cai/back.svg",
  41055. extra: 1809/1708,
  41056. bottom: 31/1840
  41057. }
  41058. },
  41059. },
  41060. [
  41061. {
  41062. name: "Normal",
  41063. height: math.unit(5 + 11/12, "feet"),
  41064. default: true
  41065. },
  41066. {
  41067. name: "Big",
  41068. height: math.unit(15, "feet")
  41069. },
  41070. {
  41071. name: "Macro",
  41072. height: math.unit(200, "feet")
  41073. },
  41074. ]
  41075. ))
  41076. characterMakers.push(() => makeCharacter(
  41077. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  41078. {
  41079. front: {
  41080. height: math.unit(5 + 6/12, "feet"),
  41081. weight: math.unit(160, "lb"),
  41082. name: "Front",
  41083. image: {
  41084. source: "./media/characters/zanna-virtuedòttir/front.svg",
  41085. extra: 1227/1174,
  41086. bottom: 37/1264
  41087. }
  41088. },
  41089. },
  41090. [
  41091. {
  41092. name: "Macro",
  41093. height: math.unit(444, "meters"),
  41094. default: true
  41095. },
  41096. ]
  41097. ))
  41098. characterMakers.push(() => makeCharacter(
  41099. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  41100. {
  41101. front: {
  41102. height: math.unit(18 + 7/12, "feet"),
  41103. name: "Front",
  41104. image: {
  41105. source: "./media/characters/rex/front.svg",
  41106. extra: 1941/1807,
  41107. bottom: 66/2007
  41108. }
  41109. },
  41110. back: {
  41111. height: math.unit(18 + 7/12, "feet"),
  41112. name: "Back",
  41113. image: {
  41114. source: "./media/characters/rex/back.svg",
  41115. extra: 1937/1822,
  41116. bottom: 42/1979
  41117. }
  41118. },
  41119. boot: {
  41120. height: math.unit(3.45, "feet"),
  41121. name: "Boot",
  41122. image: {
  41123. source: "./media/characters/rex/boot.svg"
  41124. }
  41125. },
  41126. paw: {
  41127. height: math.unit(4.17, "feet"),
  41128. name: "Paw",
  41129. image: {
  41130. source: "./media/characters/rex/paw.svg"
  41131. }
  41132. },
  41133. head: {
  41134. height: math.unit(6.728, "feet"),
  41135. name: "Head",
  41136. image: {
  41137. source: "./media/characters/rex/head.svg"
  41138. }
  41139. },
  41140. },
  41141. [
  41142. {
  41143. name: "Nano",
  41144. height: math.unit(18 + 7/12, "feet")
  41145. },
  41146. {
  41147. name: "Micro",
  41148. height: math.unit(1.5, "megameters")
  41149. },
  41150. {
  41151. name: "Normal",
  41152. height: math.unit(440, "megameters"),
  41153. default: true
  41154. },
  41155. {
  41156. name: "Macro",
  41157. height: math.unit(2.5, "gigameters")
  41158. },
  41159. {
  41160. name: "Gigamacro",
  41161. height: math.unit(2, "galaxies")
  41162. },
  41163. ]
  41164. ))
  41165. characterMakers.push(() => makeCharacter(
  41166. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  41167. {
  41168. side: {
  41169. height: math.unit(32, "feet"),
  41170. weight: math.unit(250000, "lb"),
  41171. name: "Side",
  41172. image: {
  41173. source: "./media/characters/silverwing/side.svg",
  41174. extra: 1100/1019,
  41175. bottom: 204/1304
  41176. }
  41177. },
  41178. },
  41179. [
  41180. {
  41181. name: "Normal",
  41182. height: math.unit(32, "feet"),
  41183. default: true
  41184. },
  41185. ]
  41186. ))
  41187. characterMakers.push(() => makeCharacter(
  41188. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  41189. {
  41190. front: {
  41191. height: math.unit(6 + 6/12, "feet"),
  41192. weight: math.unit(350, "lb"),
  41193. name: "Front",
  41194. image: {
  41195. source: "./media/characters/tristan-hawthorne/front.svg",
  41196. extra: 1159/1124,
  41197. bottom: 37/1196
  41198. }
  41199. },
  41200. },
  41201. [
  41202. {
  41203. name: "Normal",
  41204. height: math.unit(6 + 6/12, "feet"),
  41205. default: true
  41206. },
  41207. ]
  41208. ))
  41209. characterMakers.push(() => makeCharacter(
  41210. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  41211. {
  41212. front: {
  41213. height: math.unit(5 + 11/12, "feet"),
  41214. weight: math.unit(190, "lb"),
  41215. name: "Front",
  41216. image: {
  41217. source: "./media/characters/mizu/front.svg",
  41218. extra: 1988/1788,
  41219. bottom: 14/2002
  41220. }
  41221. },
  41222. },
  41223. [
  41224. {
  41225. name: "Normal",
  41226. height: math.unit(5 + 11/12, "feet"),
  41227. default: true
  41228. },
  41229. ]
  41230. ))
  41231. characterMakers.push(() => makeCharacter(
  41232. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  41233. {
  41234. front: {
  41235. height: math.unit(6, "feet"),
  41236. name: "Front",
  41237. image: {
  41238. source: "./media/characters/moonlight-rose-terra/front.svg",
  41239. extra: 1434/1252,
  41240. bottom: 48/1482
  41241. }
  41242. },
  41243. },
  41244. [
  41245. {
  41246. name: "TRAPPIST-1D",
  41247. height: math.unit(4992*2, "km")
  41248. },
  41249. {
  41250. name: "Earth",
  41251. height: math.unit(6367*2, "km"),
  41252. default: true
  41253. },
  41254. {
  41255. name: "Kepler-22b",
  41256. height: math.unit(15282*2, "km")
  41257. },
  41258. ]
  41259. ))
  41260. characterMakers.push(() => makeCharacter(
  41261. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  41262. {
  41263. front: {
  41264. height: math.unit(6, "feet"),
  41265. name: "Front",
  41266. image: {
  41267. source: "./media/characters/moonlight-rose-neptune/front.svg",
  41268. extra: 1851/1712,
  41269. bottom: 0/1851
  41270. }
  41271. },
  41272. },
  41273. [
  41274. {
  41275. name: "Enceladus",
  41276. height: math.unit(513*2, "km")
  41277. },
  41278. {
  41279. name: "Europe",
  41280. height: math.unit(1560*2, "km")
  41281. },
  41282. {
  41283. name: "Neptune",
  41284. height: math.unit(24622*2, "km"),
  41285. default: true
  41286. },
  41287. {
  41288. name: "CoRoT-9b",
  41289. height: math.unit(75067*2, "km")
  41290. },
  41291. ]
  41292. ))
  41293. characterMakers.push(() => makeCharacter(
  41294. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  41295. {
  41296. front: {
  41297. height: math.unit(6, "feet"),
  41298. name: "Front",
  41299. image: {
  41300. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  41301. extra: 1367/1286,
  41302. bottom: 55/1422
  41303. }
  41304. },
  41305. },
  41306. [
  41307. {
  41308. name: "Saturn",
  41309. height: math.unit(58232*2, "km")
  41310. },
  41311. {
  41312. name: "Jupiter",
  41313. height: math.unit(69911*2, "km"),
  41314. default: true
  41315. },
  41316. {
  41317. name: "HD 100546 b",
  41318. height: math.unit(482938, "km")
  41319. },
  41320. ]
  41321. ))
  41322. characterMakers.push(() => makeCharacter(
  41323. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41324. {
  41325. front: {
  41326. height: math.unit(1.7, "feet"),
  41327. weight: math.unit(50, "lb"),
  41328. name: "Front",
  41329. image: {
  41330. source: "./media/characters/dechroma/front.svg",
  41331. extra: 1095/859,
  41332. bottom: 64/1159
  41333. }
  41334. },
  41335. },
  41336. [
  41337. {
  41338. name: "Normal",
  41339. height: math.unit(1.7, "feet"),
  41340. default: true
  41341. },
  41342. ]
  41343. ))
  41344. characterMakers.push(() => makeCharacter(
  41345. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41346. {
  41347. side: {
  41348. height: math.unit(30, "feet"),
  41349. name: "Side",
  41350. image: {
  41351. source: "./media/characters/veluren-thanazel/side.svg",
  41352. extra: 1611/633,
  41353. bottom: 118/1729
  41354. }
  41355. },
  41356. front: {
  41357. height: math.unit(30, "feet"),
  41358. name: "Front",
  41359. image: {
  41360. source: "./media/characters/veluren-thanazel/front.svg",
  41361. extra: 1486/636,
  41362. bottom: 238/1724
  41363. }
  41364. },
  41365. head: {
  41366. height: math.unit(21.4, "feet"),
  41367. name: "Head",
  41368. image: {
  41369. source: "./media/characters/veluren-thanazel/head.svg"
  41370. }
  41371. },
  41372. genitals: {
  41373. height: math.unit(19.4, "feet"),
  41374. name: "Genitals",
  41375. image: {
  41376. source: "./media/characters/veluren-thanazel/genitals.svg"
  41377. }
  41378. },
  41379. },
  41380. [
  41381. {
  41382. name: "Social",
  41383. height: math.unit(6, "feet")
  41384. },
  41385. {
  41386. name: "Play",
  41387. height: math.unit(12, "feet")
  41388. },
  41389. {
  41390. name: "True",
  41391. height: math.unit(30, "feet"),
  41392. default: true
  41393. },
  41394. ]
  41395. ))
  41396. characterMakers.push(() => makeCharacter(
  41397. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41398. {
  41399. front: {
  41400. height: math.unit(7 + 6/12, "feet"),
  41401. weight: math.unit(500, "kg"),
  41402. name: "Front",
  41403. image: {
  41404. source: "./media/characters/arcturas/front.svg",
  41405. extra: 1700/1500,
  41406. bottom: 145/1845
  41407. }
  41408. },
  41409. },
  41410. [
  41411. {
  41412. name: "Normal",
  41413. height: math.unit(7 + 6/12, "feet"),
  41414. default: true
  41415. },
  41416. ]
  41417. ))
  41418. characterMakers.push(() => makeCharacter(
  41419. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41420. {
  41421. side: {
  41422. height: math.unit(6, "feet"),
  41423. weight: math.unit(2, "tons"),
  41424. name: "Side",
  41425. image: {
  41426. source: "./media/characters/vitaen/side.svg",
  41427. extra: 1157/617,
  41428. bottom: 122/1279
  41429. }
  41430. },
  41431. },
  41432. [
  41433. {
  41434. name: "Normal",
  41435. height: math.unit(6, "feet"),
  41436. default: true
  41437. },
  41438. ]
  41439. ))
  41440. characterMakers.push(() => makeCharacter(
  41441. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41442. {
  41443. front: {
  41444. height: math.unit(19, "feet"),
  41445. name: "Front",
  41446. image: {
  41447. source: "./media/characters/fia-dreamweaver/front.svg",
  41448. extra: 1630/1504,
  41449. bottom: 25/1655
  41450. }
  41451. },
  41452. },
  41453. [
  41454. {
  41455. name: "Normal",
  41456. height: math.unit(19, "feet"),
  41457. default: true
  41458. },
  41459. ]
  41460. ))
  41461. characterMakers.push(() => makeCharacter(
  41462. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41463. {
  41464. front: {
  41465. height: math.unit(5 + 4/12, "feet"),
  41466. name: "Front",
  41467. image: {
  41468. source: "./media/characters/artan/front.svg",
  41469. extra: 1618/1535,
  41470. bottom: 46/1664
  41471. }
  41472. },
  41473. back: {
  41474. height: math.unit(5 + 4/12, "feet"),
  41475. name: "Back",
  41476. image: {
  41477. source: "./media/characters/artan/back.svg",
  41478. extra: 1618/1543,
  41479. bottom: 31/1649
  41480. }
  41481. },
  41482. },
  41483. [
  41484. {
  41485. name: "Normal",
  41486. height: math.unit(5 + 4/12, "feet"),
  41487. default: true
  41488. },
  41489. ]
  41490. ))
  41491. characterMakers.push(() => makeCharacter(
  41492. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41493. {
  41494. side: {
  41495. height: math.unit(182, "cm"),
  41496. weight: math.unit(1000, "lb"),
  41497. name: "Side",
  41498. image: {
  41499. source: "./media/characters/silver-dragon/side.svg",
  41500. extra: 710/287,
  41501. bottom: 88/798
  41502. }
  41503. },
  41504. },
  41505. [
  41506. {
  41507. name: "Normal",
  41508. height: math.unit(182, "cm"),
  41509. default: true
  41510. },
  41511. ]
  41512. ))
  41513. characterMakers.push(() => makeCharacter(
  41514. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41515. {
  41516. side: {
  41517. height: math.unit(6 + 6/12, "feet"),
  41518. weight: math.unit(1.5, "tons"),
  41519. name: "Side",
  41520. image: {
  41521. source: "./media/characters/zephyr/side.svg",
  41522. extra: 1433/586,
  41523. bottom: 109/1542
  41524. }
  41525. },
  41526. },
  41527. [
  41528. {
  41529. name: "Normal",
  41530. height: math.unit(6 + 6/12, "feet"),
  41531. default: true
  41532. },
  41533. ]
  41534. ))
  41535. characterMakers.push(() => makeCharacter(
  41536. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41537. {
  41538. side: {
  41539. height: math.unit(1, "feet"),
  41540. name: "Side",
  41541. image: {
  41542. source: "./media/characters/vixye/side.svg",
  41543. extra: 632/541,
  41544. bottom: 0/632
  41545. }
  41546. },
  41547. },
  41548. [
  41549. {
  41550. name: "Normal",
  41551. height: math.unit(1, "feet"),
  41552. default: true
  41553. },
  41554. {
  41555. name: "True",
  41556. height: math.unit(1e15, "multiverses")
  41557. },
  41558. ]
  41559. ))
  41560. characterMakers.push(() => makeCharacter(
  41561. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41562. {
  41563. front: {
  41564. height: math.unit(8 + 2/12, "feet"),
  41565. weight: math.unit(650, "lb"),
  41566. name: "Front",
  41567. image: {
  41568. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41569. extra: 1174/1137,
  41570. bottom: 82/1256
  41571. }
  41572. },
  41573. back: {
  41574. height: math.unit(8 + 2/12, "feet"),
  41575. weight: math.unit(650, "lb"),
  41576. name: "Back",
  41577. image: {
  41578. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41579. extra: 1204/1157,
  41580. bottom: 46/1250
  41581. }
  41582. },
  41583. },
  41584. [
  41585. {
  41586. name: "Wildform",
  41587. height: math.unit(8 + 2/12, "feet"),
  41588. default: true
  41589. },
  41590. ]
  41591. ))
  41592. characterMakers.push(() => makeCharacter(
  41593. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41594. {
  41595. front: {
  41596. height: math.unit(18, "feet"),
  41597. name: "Front",
  41598. image: {
  41599. source: "./media/characters/cyphin/front.svg",
  41600. extra: 970/886,
  41601. bottom: 42/1012
  41602. }
  41603. },
  41604. back: {
  41605. height: math.unit(18, "feet"),
  41606. name: "Back",
  41607. image: {
  41608. source: "./media/characters/cyphin/back.svg",
  41609. extra: 1009/894,
  41610. bottom: 24/1033
  41611. }
  41612. },
  41613. head: {
  41614. height: math.unit(5.05, "feet"),
  41615. name: "Head",
  41616. image: {
  41617. source: "./media/characters/cyphin/head.svg"
  41618. }
  41619. },
  41620. tailbud: {
  41621. height: math.unit(5, "feet"),
  41622. name: "Tailbud",
  41623. image: {
  41624. source: "./media/characters/cyphin/tailbud.svg"
  41625. }
  41626. },
  41627. },
  41628. [
  41629. ]
  41630. ))
  41631. characterMakers.push(() => makeCharacter(
  41632. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41633. {
  41634. side: {
  41635. height: math.unit(10, "feet"),
  41636. weight: math.unit(6, "tons"),
  41637. name: "Side",
  41638. image: {
  41639. source: "./media/characters/raijin/side.svg",
  41640. extra: 1529/613,
  41641. bottom: 337/1866
  41642. }
  41643. },
  41644. },
  41645. [
  41646. {
  41647. name: "Normal",
  41648. height: math.unit(10, "feet"),
  41649. default: true
  41650. },
  41651. ]
  41652. ))
  41653. characterMakers.push(() => makeCharacter(
  41654. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41655. {
  41656. side: {
  41657. height: math.unit(9, "feet"),
  41658. name: "Side",
  41659. image: {
  41660. source: "./media/characters/nilghais/side.svg",
  41661. extra: 1047/744,
  41662. bottom: 91/1138
  41663. }
  41664. },
  41665. head: {
  41666. height: math.unit(3.14, "feet"),
  41667. name: "Head",
  41668. image: {
  41669. source: "./media/characters/nilghais/head.svg"
  41670. }
  41671. },
  41672. mouth: {
  41673. height: math.unit(4.6, "feet"),
  41674. name: "Mouth",
  41675. image: {
  41676. source: "./media/characters/nilghais/mouth.svg"
  41677. }
  41678. },
  41679. wings: {
  41680. height: math.unit(24, "feet"),
  41681. name: "Wings",
  41682. image: {
  41683. source: "./media/characters/nilghais/wings.svg"
  41684. }
  41685. },
  41686. ass: {
  41687. height: math.unit(6.12, "feet"),
  41688. name: "Ass",
  41689. image: {
  41690. source: "./media/characters/nilghais/ass.svg"
  41691. }
  41692. },
  41693. },
  41694. [
  41695. {
  41696. name: "Normal",
  41697. height: math.unit(9, "feet"),
  41698. default: true
  41699. },
  41700. ]
  41701. ))
  41702. characterMakers.push(() => makeCharacter(
  41703. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41704. {
  41705. regular: {
  41706. height: math.unit(16 + 2/12, "feet"),
  41707. weight: math.unit(2300, "lb"),
  41708. name: "Regular",
  41709. image: {
  41710. source: "./media/characters/zolgar/regular.svg",
  41711. extra: 1246/1004,
  41712. bottom: 124/1370
  41713. }
  41714. },
  41715. boxers: {
  41716. height: math.unit(16 + 2/12, "feet"),
  41717. weight: math.unit(2300, "lb"),
  41718. name: "Boxers",
  41719. image: {
  41720. source: "./media/characters/zolgar/boxers.svg",
  41721. extra: 1246/1004,
  41722. bottom: 124/1370
  41723. }
  41724. },
  41725. armored: {
  41726. height: math.unit(16 + 2/12, "feet"),
  41727. weight: math.unit(2300, "lb"),
  41728. name: "Armored",
  41729. image: {
  41730. source: "./media/characters/zolgar/armored.svg",
  41731. extra: 1246/1004,
  41732. bottom: 124/1370
  41733. }
  41734. },
  41735. goth: {
  41736. height: math.unit(16 + 2/12, "feet"),
  41737. weight: math.unit(2300, "lb"),
  41738. name: "Goth",
  41739. image: {
  41740. source: "./media/characters/zolgar/goth.svg",
  41741. extra: 1246/1004,
  41742. bottom: 124/1370
  41743. }
  41744. },
  41745. },
  41746. [
  41747. {
  41748. name: "Shrunken Down",
  41749. height: math.unit(9 + 2/12, "feet")
  41750. },
  41751. {
  41752. name: "Normal",
  41753. height: math.unit(16 + 2/12, "feet"),
  41754. default: true
  41755. },
  41756. ]
  41757. ))
  41758. characterMakers.push(() => makeCharacter(
  41759. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41760. {
  41761. front: {
  41762. height: math.unit(6, "feet"),
  41763. weight: math.unit(168, "lb"),
  41764. name: "Front",
  41765. image: {
  41766. source: "./media/characters/luca/front.svg",
  41767. extra: 841/667,
  41768. bottom: 102/943
  41769. }
  41770. },
  41771. },
  41772. [
  41773. {
  41774. name: "Normal",
  41775. height: math.unit(6, "feet"),
  41776. default: true
  41777. },
  41778. ]
  41779. ))
  41780. characterMakers.push(() => makeCharacter(
  41781. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41782. {
  41783. side: {
  41784. height: math.unit(7 + 3/12, "feet"),
  41785. weight: math.unit(312, "lb"),
  41786. name: "Side",
  41787. image: {
  41788. source: "./media/characters/zezo/side.svg",
  41789. extra: 1192/1067,
  41790. bottom: 63/1255
  41791. }
  41792. },
  41793. },
  41794. [
  41795. {
  41796. name: "Normal",
  41797. height: math.unit(7 + 3/12, "feet"),
  41798. default: true
  41799. },
  41800. ]
  41801. ))
  41802. characterMakers.push(() => makeCharacter(
  41803. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41804. {
  41805. front: {
  41806. height: math.unit(5 + 5/12, "feet"),
  41807. weight: math.unit(170, "lb"),
  41808. name: "Front",
  41809. image: {
  41810. source: "./media/characters/mayso/front.svg",
  41811. extra: 1215/1108,
  41812. bottom: 16/1231
  41813. }
  41814. },
  41815. },
  41816. [
  41817. {
  41818. name: "Normal",
  41819. height: math.unit(5 + 5/12, "feet"),
  41820. default: true
  41821. },
  41822. ]
  41823. ))
  41824. characterMakers.push(() => makeCharacter(
  41825. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41826. {
  41827. front: {
  41828. height: math.unit(4 + 3/12, "feet"),
  41829. weight: math.unit(80, "lb"),
  41830. name: "Front",
  41831. image: {
  41832. source: "./media/characters/hess/front.svg",
  41833. extra: 1200/1123,
  41834. bottom: 16/1216
  41835. }
  41836. },
  41837. },
  41838. [
  41839. {
  41840. name: "Normal",
  41841. height: math.unit(4 + 3/12, "feet"),
  41842. default: true
  41843. },
  41844. ]
  41845. ))
  41846. characterMakers.push(() => makeCharacter(
  41847. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41848. {
  41849. front: {
  41850. height: math.unit(1.9, "meters"),
  41851. name: "Front",
  41852. image: {
  41853. source: "./media/characters/ashgar/front.svg",
  41854. extra: 1177/1146,
  41855. bottom: 99/1276
  41856. }
  41857. },
  41858. back: {
  41859. height: math.unit(1.9, "meters"),
  41860. name: "Back",
  41861. image: {
  41862. source: "./media/characters/ashgar/back.svg",
  41863. extra: 1201/1183,
  41864. bottom: 53/1254
  41865. }
  41866. },
  41867. feral: {
  41868. height: math.unit(1.4, "meters"),
  41869. name: "Feral",
  41870. image: {
  41871. source: "./media/characters/ashgar/feral.svg",
  41872. extra: 370/345,
  41873. bottom: 45/415
  41874. }
  41875. },
  41876. },
  41877. [
  41878. {
  41879. name: "Normal",
  41880. height: math.unit(1.9, "meters"),
  41881. default: true
  41882. },
  41883. ]
  41884. ))
  41885. characterMakers.push(() => makeCharacter(
  41886. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  41887. {
  41888. regular: {
  41889. height: math.unit(6, "feet"),
  41890. weight: math.unit(220, "lb"),
  41891. name: "Regular",
  41892. image: {
  41893. source: "./media/characters/phillip/regular.svg",
  41894. extra: 1373/1277,
  41895. bottom: 75/1448
  41896. }
  41897. },
  41898. dressed: {
  41899. height: math.unit(6, "feet"),
  41900. weight: math.unit(220, "lb"),
  41901. name: "Dressed",
  41902. image: {
  41903. source: "./media/characters/phillip/dressed.svg",
  41904. extra: 1373/1277,
  41905. bottom: 75/1448
  41906. }
  41907. },
  41908. paw: {
  41909. height: math.unit(1.44, "feet"),
  41910. name: "Paw",
  41911. image: {
  41912. source: "./media/characters/phillip/paw.svg"
  41913. }
  41914. },
  41915. },
  41916. [
  41917. {
  41918. name: "Normal",
  41919. height: math.unit(6, "feet"),
  41920. default: true
  41921. },
  41922. ]
  41923. ))
  41924. characterMakers.push(() => makeCharacter(
  41925. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  41926. {
  41927. side: {
  41928. height: math.unit(42, "feet"),
  41929. name: "Side",
  41930. image: {
  41931. source: "./media/characters/uvula/side.svg",
  41932. extra: 683/586,
  41933. bottom: 60/743
  41934. }
  41935. },
  41936. front: {
  41937. height: math.unit(42, "feet"),
  41938. name: "Front",
  41939. image: {
  41940. source: "./media/characters/uvula/front.svg",
  41941. extra: 705/613,
  41942. bottom: 54/759
  41943. }
  41944. },
  41945. maw: {
  41946. height: math.unit(23.5, "feet"),
  41947. name: "Maw",
  41948. image: {
  41949. source: "./media/characters/uvula/maw.svg"
  41950. }
  41951. },
  41952. },
  41953. [
  41954. {
  41955. name: "Original Size",
  41956. height: math.unit(14, "inches")
  41957. },
  41958. {
  41959. name: "Human Size",
  41960. height: math.unit(6, "feet")
  41961. },
  41962. {
  41963. name: "Big",
  41964. height: math.unit(42, "feet"),
  41965. default: true
  41966. },
  41967. {
  41968. name: "Bigger",
  41969. height: math.unit(100, "feet")
  41970. },
  41971. ]
  41972. ))
  41973. characterMakers.push(() => makeCharacter(
  41974. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  41975. {
  41976. front: {
  41977. height: math.unit(5 + 11/12, "feet"),
  41978. name: "Front",
  41979. image: {
  41980. source: "./media/characters/lannah/front.svg",
  41981. extra: 1208/1113,
  41982. bottom: 97/1305
  41983. }
  41984. },
  41985. },
  41986. [
  41987. {
  41988. name: "Normal",
  41989. height: math.unit(5 + 11/12, "feet"),
  41990. default: true
  41991. },
  41992. ]
  41993. ))
  41994. characterMakers.push(() => makeCharacter(
  41995. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  41996. {
  41997. front: {
  41998. height: math.unit(6 + 3/12, "feet"),
  41999. weight: math.unit(3.5, "tons"),
  42000. name: "Front",
  42001. image: {
  42002. source: "./media/characters/emberflame/front.svg",
  42003. extra: 1198/672,
  42004. bottom: 82/1280
  42005. }
  42006. },
  42007. side: {
  42008. height: math.unit(6 + 3/12, "feet"),
  42009. weight: math.unit(3.5, "tons"),
  42010. name: "Side",
  42011. image: {
  42012. source: "./media/characters/emberflame/side.svg",
  42013. extra: 938/527,
  42014. bottom: 56/994
  42015. }
  42016. },
  42017. },
  42018. [
  42019. {
  42020. name: "Normal",
  42021. height: math.unit(6 + 3/12, "feet"),
  42022. default: true
  42023. },
  42024. ]
  42025. ))
  42026. characterMakers.push(() => makeCharacter(
  42027. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  42028. {
  42029. side: {
  42030. height: math.unit(17.5, "feet"),
  42031. weight: math.unit(35, "tons"),
  42032. name: "Side",
  42033. image: {
  42034. source: "./media/characters/sophie-ambrose/side.svg",
  42035. extra: 1573/1242,
  42036. bottom: 71/1644
  42037. }
  42038. },
  42039. maw: {
  42040. height: math.unit(7.4, "feet"),
  42041. name: "Maw",
  42042. image: {
  42043. source: "./media/characters/sophie-ambrose/maw.svg"
  42044. }
  42045. },
  42046. },
  42047. [
  42048. {
  42049. name: "Normal",
  42050. height: math.unit(17.5, "feet"),
  42051. default: true
  42052. },
  42053. ]
  42054. ))
  42055. characterMakers.push(() => makeCharacter(
  42056. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42057. {
  42058. front: {
  42059. height: math.unit(280, "feet"),
  42060. weight: math.unit(550, "tons"),
  42061. name: "Front",
  42062. image: {
  42063. source: "./media/characters/king-mugi/front.svg",
  42064. extra: 1102/947,
  42065. bottom: 104/1206
  42066. }
  42067. },
  42068. },
  42069. [
  42070. {
  42071. name: "King Mugi",
  42072. height: math.unit(280, "feet"),
  42073. default: true
  42074. },
  42075. ]
  42076. ))
  42077. characterMakers.push(() => makeCharacter(
  42078. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42079. {
  42080. front: {
  42081. height: math.unit(64, "meters"),
  42082. name: "Front",
  42083. image: {
  42084. source: "./media/characters/nova-fox/front.svg",
  42085. extra: 1310/1246,
  42086. bottom: 65/1375
  42087. }
  42088. },
  42089. },
  42090. [
  42091. {
  42092. name: "Macro",
  42093. height: math.unit(64, "meters"),
  42094. default: true
  42095. },
  42096. ]
  42097. ))
  42098. characterMakers.push(() => makeCharacter(
  42099. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42100. {
  42101. front: {
  42102. height: math.unit(6 + 3/12, "feet"),
  42103. weight: math.unit(170, "lb"),
  42104. name: "Front",
  42105. image: {
  42106. source: "./media/characters/sam-bat/front.svg",
  42107. extra: 1601/1411,
  42108. bottom: 125/1726
  42109. }
  42110. },
  42111. back: {
  42112. height: math.unit(6 + 3/12, "feet"),
  42113. weight: math.unit(170, "lb"),
  42114. name: "Back",
  42115. image: {
  42116. source: "./media/characters/sam-bat/back.svg",
  42117. extra: 1577/1405,
  42118. bottom: 58/1635
  42119. }
  42120. },
  42121. },
  42122. [
  42123. {
  42124. name: "Normal",
  42125. height: math.unit(6 + 3/12, "feet"),
  42126. default: true
  42127. },
  42128. ]
  42129. ))
  42130. characterMakers.push(() => makeCharacter(
  42131. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  42132. {
  42133. front: {
  42134. height: math.unit(59, "feet"),
  42135. weight: math.unit(40000, "lb"),
  42136. name: "Front",
  42137. image: {
  42138. source: "./media/characters/inari/front.svg",
  42139. extra: 1884/1350,
  42140. bottom: 95/1979
  42141. }
  42142. },
  42143. },
  42144. [
  42145. {
  42146. name: "Gigantamax",
  42147. height: math.unit(59, "feet"),
  42148. default: true
  42149. },
  42150. ]
  42151. ))
  42152. characterMakers.push(() => makeCharacter(
  42153. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  42154. {
  42155. front: {
  42156. height: math.unit(5 + 8/12, "feet"),
  42157. name: "Front",
  42158. image: {
  42159. source: "./media/characters/elizabeth/front.svg",
  42160. extra: 1395/1298,
  42161. bottom: 54/1449
  42162. }
  42163. },
  42164. mouth: {
  42165. height: math.unit(1.97, "feet"),
  42166. name: "Mouth",
  42167. image: {
  42168. source: "./media/characters/elizabeth/mouth.svg"
  42169. }
  42170. },
  42171. foot: {
  42172. height: math.unit(1.17, "feet"),
  42173. name: "Foot",
  42174. image: {
  42175. source: "./media/characters/elizabeth/foot.svg"
  42176. }
  42177. },
  42178. },
  42179. [
  42180. {
  42181. name: "Normal",
  42182. height: math.unit(5 + 8/12, "feet"),
  42183. default: true
  42184. },
  42185. {
  42186. name: "Minimacro",
  42187. height: math.unit(18, "feet")
  42188. },
  42189. {
  42190. name: "Macro",
  42191. height: math.unit(180, "feet")
  42192. },
  42193. ]
  42194. ))
  42195. characterMakers.push(() => makeCharacter(
  42196. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  42197. {
  42198. front: {
  42199. height: math.unit(5 + 2/12, "feet"),
  42200. name: "Front",
  42201. image: {
  42202. source: "./media/characters/october-gossamer/front.svg",
  42203. extra: 505/454,
  42204. bottom: 7/512
  42205. }
  42206. },
  42207. back: {
  42208. height: math.unit(5 + 2/12, "feet"),
  42209. name: "Back",
  42210. image: {
  42211. source: "./media/characters/october-gossamer/back.svg",
  42212. extra: 501/454,
  42213. bottom: 11/512
  42214. }
  42215. },
  42216. },
  42217. [
  42218. {
  42219. name: "Normal",
  42220. height: math.unit(5 + 2/12, "feet"),
  42221. default: true
  42222. },
  42223. ]
  42224. ))
  42225. characterMakers.push(() => makeCharacter(
  42226. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  42227. {
  42228. front: {
  42229. height: math.unit(5, "feet"),
  42230. name: "Front",
  42231. image: {
  42232. source: "./media/characters/epiglottis/front.svg",
  42233. extra: 923/849,
  42234. bottom: 17/940
  42235. }
  42236. },
  42237. },
  42238. [
  42239. {
  42240. name: "Original Size",
  42241. height: math.unit(10, "inches")
  42242. },
  42243. {
  42244. name: "Human Size",
  42245. height: math.unit(5, "feet"),
  42246. default: true
  42247. },
  42248. {
  42249. name: "Big",
  42250. height: math.unit(25, "feet")
  42251. },
  42252. {
  42253. name: "Bigger",
  42254. height: math.unit(50, "feet")
  42255. },
  42256. {
  42257. name: "oh lawd",
  42258. height: math.unit(75, "feet")
  42259. },
  42260. ]
  42261. ))
  42262. characterMakers.push(() => makeCharacter(
  42263. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  42264. {
  42265. front: {
  42266. height: math.unit(2 + 4/12, "feet"),
  42267. weight: math.unit(60, "lb"),
  42268. name: "Front",
  42269. image: {
  42270. source: "./media/characters/lerm/front.svg",
  42271. extra: 796/790,
  42272. bottom: 79/875
  42273. }
  42274. },
  42275. },
  42276. [
  42277. {
  42278. name: "Normal",
  42279. height: math.unit(2 + 4/12, "feet"),
  42280. default: true
  42281. },
  42282. ]
  42283. ))
  42284. characterMakers.push(() => makeCharacter(
  42285. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42286. {
  42287. front: {
  42288. height: math.unit(5.5, "feet"),
  42289. weight: math.unit(130, "lb"),
  42290. name: "Front",
  42291. image: {
  42292. source: "./media/characters/xena-nebadon/front.svg",
  42293. extra: 1828/1730,
  42294. bottom: 79/1907
  42295. }
  42296. },
  42297. },
  42298. [
  42299. {
  42300. name: "Tiny Puppy",
  42301. height: math.unit(3, "inches")
  42302. },
  42303. {
  42304. name: "Normal",
  42305. height: math.unit(5.5, "feet"),
  42306. default: true
  42307. },
  42308. {
  42309. name: "Lotta Lady",
  42310. height: math.unit(12, "feet")
  42311. },
  42312. {
  42313. name: "Pretty Big",
  42314. height: math.unit(100, "feet")
  42315. },
  42316. {
  42317. name: "Big",
  42318. height: math.unit(500, "feet")
  42319. },
  42320. {
  42321. name: "Skyscraper Toys",
  42322. height: math.unit(2500, "feet")
  42323. },
  42324. {
  42325. name: "Plane Catcher",
  42326. height: math.unit(8, "miles")
  42327. },
  42328. {
  42329. name: "Planet Toys",
  42330. height: math.unit(15, "earths")
  42331. },
  42332. {
  42333. name: "Stardust",
  42334. height: math.unit(0.25, "galaxies")
  42335. },
  42336. {
  42337. name: "Snacks",
  42338. height: math.unit(70, "universes")
  42339. },
  42340. ]
  42341. ))
  42342. characterMakers.push(() => makeCharacter(
  42343. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42344. {
  42345. front: {
  42346. height: math.unit(1.6, "meters"),
  42347. weight: math.unit(60, "kg"),
  42348. name: "Front",
  42349. image: {
  42350. source: "./media/characters/bounty/front.svg",
  42351. extra: 1426/1308,
  42352. bottom: 15/1441
  42353. }
  42354. },
  42355. back: {
  42356. height: math.unit(1.6, "meters"),
  42357. weight: math.unit(60, "kg"),
  42358. name: "Back",
  42359. image: {
  42360. source: "./media/characters/bounty/back.svg",
  42361. extra: 1417/1307,
  42362. bottom: 8/1425
  42363. }
  42364. },
  42365. },
  42366. [
  42367. {
  42368. name: "Normal",
  42369. height: math.unit(1.6, "meters"),
  42370. default: true
  42371. },
  42372. {
  42373. name: "Macro",
  42374. height: math.unit(300, "meters")
  42375. },
  42376. ]
  42377. ))
  42378. characterMakers.push(() => makeCharacter(
  42379. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42380. {
  42381. front: {
  42382. height: math.unit(2 + 8/12, "feet"),
  42383. weight: math.unit(15, "lb"),
  42384. name: "Front",
  42385. image: {
  42386. source: "./media/characters/mochi/front.svg",
  42387. extra: 1022/852,
  42388. bottom: 435/1457
  42389. }
  42390. },
  42391. back: {
  42392. height: math.unit(2 + 8/12, "feet"),
  42393. weight: math.unit(15, "lb"),
  42394. name: "Back",
  42395. image: {
  42396. source: "./media/characters/mochi/back.svg",
  42397. extra: 1335/1119,
  42398. bottom: 39/1374
  42399. }
  42400. },
  42401. bird: {
  42402. height: math.unit(2 + 8/12, "feet"),
  42403. weight: math.unit(15, "lb"),
  42404. name: "Bird",
  42405. image: {
  42406. source: "./media/characters/mochi/bird.svg",
  42407. extra: 1251/1113,
  42408. bottom: 178/1429
  42409. }
  42410. },
  42411. kaiju: {
  42412. height: math.unit(154, "feet"),
  42413. weight: math.unit(1e7, "lb"),
  42414. name: "Kaiju",
  42415. image: {
  42416. source: "./media/characters/mochi/kaiju.svg",
  42417. extra: 460/324,
  42418. bottom: 40/500
  42419. }
  42420. },
  42421. head: {
  42422. height: math.unit(1.21, "feet"),
  42423. name: "Head",
  42424. image: {
  42425. source: "./media/characters/mochi/head.svg"
  42426. }
  42427. },
  42428. alternateTail: {
  42429. height: math.unit(2 + 8/12, "feet"),
  42430. weight: math.unit(45, "lb"),
  42431. name: "Alternate Tail",
  42432. image: {
  42433. source: "./media/characters/mochi/alternate-tail.svg",
  42434. extra: 139/76,
  42435. bottom: 45/184
  42436. }
  42437. },
  42438. },
  42439. [
  42440. {
  42441. name: "Micro",
  42442. height: math.unit(2, "inches")
  42443. },
  42444. {
  42445. name: "Normal",
  42446. height: math.unit(2 + 8/12, "feet"),
  42447. default: true
  42448. },
  42449. {
  42450. name: "Macro",
  42451. height: math.unit(106, "feet")
  42452. },
  42453. ]
  42454. ))
  42455. characterMakers.push(() => makeCharacter(
  42456. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42457. {
  42458. front: {
  42459. height: math.unit(5.67, "feet"),
  42460. weight: math.unit(135, "lb"),
  42461. name: "Front",
  42462. image: {
  42463. source: "./media/characters/sarel/front.svg",
  42464. extra: 865/788,
  42465. bottom: 97/962
  42466. }
  42467. },
  42468. back: {
  42469. height: math.unit(5.67, "feet"),
  42470. weight: math.unit(135, "lb"),
  42471. name: "Back",
  42472. image: {
  42473. source: "./media/characters/sarel/back.svg",
  42474. extra: 857/777,
  42475. bottom: 32/889
  42476. }
  42477. },
  42478. chozoan: {
  42479. height: math.unit(5.67, "feet"),
  42480. weight: math.unit(135, "lb"),
  42481. name: "Chozoan",
  42482. image: {
  42483. source: "./media/characters/sarel/chozoan.svg",
  42484. extra: 865/788,
  42485. bottom: 97/962
  42486. }
  42487. },
  42488. current: {
  42489. height: math.unit(5.67, "feet"),
  42490. weight: math.unit(135, "lb"),
  42491. name: "Current",
  42492. image: {
  42493. source: "./media/characters/sarel/current.svg",
  42494. extra: 865/788,
  42495. bottom: 97/962
  42496. }
  42497. },
  42498. head: {
  42499. height: math.unit(1.77, "feet"),
  42500. name: "Head",
  42501. image: {
  42502. source: "./media/characters/sarel/head.svg"
  42503. }
  42504. },
  42505. claws: {
  42506. height: math.unit(1.8, "feet"),
  42507. name: "Claws",
  42508. image: {
  42509. source: "./media/characters/sarel/claws.svg"
  42510. }
  42511. },
  42512. clawsAlt: {
  42513. height: math.unit(1.8, "feet"),
  42514. name: "Claws-alt",
  42515. image: {
  42516. source: "./media/characters/sarel/claws-alt.svg"
  42517. }
  42518. },
  42519. },
  42520. [
  42521. {
  42522. name: "Normal",
  42523. height: math.unit(5.67, "feet"),
  42524. default: true
  42525. },
  42526. ]
  42527. ))
  42528. characterMakers.push(() => makeCharacter(
  42529. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42530. {
  42531. front: {
  42532. height: math.unit(5500, "feet"),
  42533. name: "Front",
  42534. image: {
  42535. source: "./media/characters/alyonia/front.svg",
  42536. extra: 1200/1135,
  42537. bottom: 29/1229
  42538. }
  42539. },
  42540. back: {
  42541. height: math.unit(5500, "feet"),
  42542. name: "Back",
  42543. image: {
  42544. source: "./media/characters/alyonia/back.svg",
  42545. extra: 1205/1138,
  42546. bottom: 10/1215
  42547. }
  42548. },
  42549. },
  42550. [
  42551. {
  42552. name: "Small",
  42553. height: math.unit(10, "feet")
  42554. },
  42555. {
  42556. name: "Macro",
  42557. height: math.unit(500, "feet")
  42558. },
  42559. {
  42560. name: "Mega Macro",
  42561. height: math.unit(5500, "feet"),
  42562. default: true
  42563. },
  42564. {
  42565. name: "Mega Macro+",
  42566. height: math.unit(500000, "feet")
  42567. },
  42568. {
  42569. name: "Giga Macro",
  42570. height: math.unit(3000, "miles")
  42571. },
  42572. {
  42573. name: "Tera Macro",
  42574. height: math.unit(2.8e6, "miles")
  42575. },
  42576. {
  42577. name: "Galactic",
  42578. height: math.unit(120000, "lightyears")
  42579. },
  42580. ]
  42581. ))
  42582. characterMakers.push(() => makeCharacter(
  42583. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42584. {
  42585. werewolf: {
  42586. height: math.unit(8, "feet"),
  42587. weight: math.unit(425, "lb"),
  42588. name: "Werewolf",
  42589. image: {
  42590. source: "./media/characters/autumn/werewolf.svg",
  42591. extra: 2154/2031,
  42592. bottom: 160/2314
  42593. }
  42594. },
  42595. human: {
  42596. height: math.unit(5 + 8/12, "feet"),
  42597. weight: math.unit(150, "lb"),
  42598. name: "Human",
  42599. image: {
  42600. source: "./media/characters/autumn/human.svg",
  42601. extra: 1200/1149,
  42602. bottom: 30/1230
  42603. }
  42604. },
  42605. },
  42606. [
  42607. {
  42608. name: "Normal",
  42609. height: math.unit(8, "feet"),
  42610. default: true
  42611. },
  42612. ]
  42613. ))
  42614. characterMakers.push(() => makeCharacter(
  42615. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42616. {
  42617. front: {
  42618. height: math.unit(8 + 5/12, "feet"),
  42619. weight: math.unit(825, "lb"),
  42620. name: "Front",
  42621. image: {
  42622. source: "./media/characters/cobalt-charizard/front.svg",
  42623. extra: 1268/1155,
  42624. bottom: 122/1390
  42625. }
  42626. },
  42627. side: {
  42628. height: math.unit(8 + 5/12, "feet"),
  42629. weight: math.unit(825, "lb"),
  42630. name: "Side",
  42631. image: {
  42632. source: "./media/characters/cobalt-charizard/side.svg",
  42633. extra: 1348/1257,
  42634. bottom: 58/1406
  42635. }
  42636. },
  42637. gMax: {
  42638. height: math.unit(134 + 11/12, "feet"),
  42639. name: "G-Max",
  42640. image: {
  42641. source: "./media/characters/cobalt-charizard/g-max.svg",
  42642. extra: 1835/1541,
  42643. bottom: 151/1986
  42644. }
  42645. },
  42646. },
  42647. [
  42648. {
  42649. name: "Normal",
  42650. height: math.unit(8 + 5/12, "feet"),
  42651. default: true
  42652. },
  42653. ]
  42654. ))
  42655. characterMakers.push(() => makeCharacter(
  42656. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42657. {
  42658. front: {
  42659. height: math.unit(6 + 3/12, "feet"),
  42660. weight: math.unit(210, "lb"),
  42661. name: "Front",
  42662. image: {
  42663. source: "./media/characters/stella/front.svg",
  42664. extra: 3549/3335,
  42665. bottom: 51/3600
  42666. }
  42667. },
  42668. },
  42669. [
  42670. {
  42671. name: "Normal",
  42672. height: math.unit(6 + 3/12, "feet"),
  42673. default: true
  42674. },
  42675. ]
  42676. ))
  42677. characterMakers.push(() => makeCharacter(
  42678. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42679. {
  42680. front: {
  42681. height: math.unit(5, "feet"),
  42682. weight: math.unit(90, "lb"),
  42683. name: "Front",
  42684. image: {
  42685. source: "./media/characters/riley-bishop/front.svg",
  42686. extra: 1450/1428,
  42687. bottom: 152/1602
  42688. }
  42689. },
  42690. },
  42691. [
  42692. {
  42693. name: "Normal",
  42694. height: math.unit(5, "feet"),
  42695. default: true
  42696. },
  42697. ]
  42698. ))
  42699. characterMakers.push(() => makeCharacter(
  42700. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42701. {
  42702. side: {
  42703. height: math.unit(8 + 2/12, "feet"),
  42704. weight: math.unit(500, "kg"),
  42705. name: "Side",
  42706. image: {
  42707. source: "./media/characters/theo-arcanine/side.svg",
  42708. extra: 1342/1074,
  42709. bottom: 111/1453
  42710. }
  42711. },
  42712. },
  42713. [
  42714. {
  42715. name: "Normal",
  42716. height: math.unit(8 + 2/12, "feet"),
  42717. default: true
  42718. },
  42719. ]
  42720. ))
  42721. characterMakers.push(() => makeCharacter(
  42722. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  42723. {
  42724. front: {
  42725. height: math.unit(4, "feet"),
  42726. name: "Front",
  42727. image: {
  42728. source: "./media/characters/kali/front.svg",
  42729. extra: 1921/1357,
  42730. bottom: 70/1991
  42731. }
  42732. },
  42733. },
  42734. [
  42735. {
  42736. name: "Normal",
  42737. height: math.unit(4, "feet"),
  42738. default: true
  42739. },
  42740. {
  42741. name: "Macro",
  42742. height: math.unit(32, "meters")
  42743. },
  42744. {
  42745. name: "Macro+",
  42746. height: math.unit(150, "meters")
  42747. },
  42748. {
  42749. name: "Megamacro",
  42750. height: math.unit(7500, "meters")
  42751. },
  42752. {
  42753. name: "Megamacro+",
  42754. height: math.unit(80, "kilometers")
  42755. },
  42756. ]
  42757. ))
  42758. characterMakers.push(() => makeCharacter(
  42759. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  42760. {
  42761. side: {
  42762. height: math.unit(5 + 11/12, "feet"),
  42763. weight: math.unit(236, "lb"),
  42764. name: "Side",
  42765. image: {
  42766. source: "./media/characters/gapp/side.svg",
  42767. extra: 775/340,
  42768. bottom: 58/833
  42769. }
  42770. },
  42771. mouth: {
  42772. height: math.unit(2.98, "feet"),
  42773. name: "Mouth",
  42774. image: {
  42775. source: "./media/characters/gapp/mouth.svg"
  42776. }
  42777. },
  42778. },
  42779. [
  42780. {
  42781. name: "Normal",
  42782. height: math.unit(5 + 1/12, "feet"),
  42783. default: true
  42784. },
  42785. ]
  42786. ))
  42787. characterMakers.push(() => makeCharacter(
  42788. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  42789. {
  42790. front: {
  42791. height: math.unit(6, "feet"),
  42792. name: "Front",
  42793. image: {
  42794. source: "./media/characters/persephone/front.svg",
  42795. extra: 1895/1717,
  42796. bottom: 96/1991
  42797. }
  42798. },
  42799. back: {
  42800. height: math.unit(6, "feet"),
  42801. name: "Back",
  42802. image: {
  42803. source: "./media/characters/persephone/back.svg",
  42804. extra: 1868/1679,
  42805. bottom: 26/1894
  42806. }
  42807. },
  42808. casual: {
  42809. height: math.unit(6, "feet"),
  42810. name: "Casual",
  42811. image: {
  42812. source: "./media/characters/persephone/casual.svg",
  42813. extra: 1713/1541,
  42814. bottom: 76/1789
  42815. }
  42816. },
  42817. },
  42818. [
  42819. {
  42820. name: "Human Size",
  42821. height: math.unit(6, "feet")
  42822. },
  42823. {
  42824. name: "Big Steppy",
  42825. height: math.unit(600, "meters"),
  42826. default: true
  42827. },
  42828. {
  42829. name: "Galaxy Brain",
  42830. height: math.unit(1, "zettameter")
  42831. },
  42832. ]
  42833. ))
  42834. characterMakers.push(() => makeCharacter(
  42835. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  42836. {
  42837. front: {
  42838. height: math.unit(1.85, "meters"),
  42839. name: "Front",
  42840. image: {
  42841. source: "./media/characters/riley-foxthing/front.svg",
  42842. extra: 1495/1354,
  42843. bottom: 122/1617
  42844. }
  42845. },
  42846. frontAlt: {
  42847. height: math.unit(1.85, "meters"),
  42848. name: "Front (Alt)",
  42849. image: {
  42850. source: "./media/characters/riley-foxthing/front-alt.svg",
  42851. extra: 1572/1389,
  42852. bottom: 116/1688
  42853. }
  42854. },
  42855. },
  42856. [
  42857. {
  42858. name: "Normal Sized",
  42859. height: math.unit(1.85, "meters"),
  42860. default: true
  42861. },
  42862. {
  42863. name: "Quite Sizable",
  42864. height: math.unit(5, "meters")
  42865. },
  42866. {
  42867. name: "Rather Large",
  42868. height: math.unit(20, "meters")
  42869. },
  42870. {
  42871. name: "Macro",
  42872. height: math.unit(450, "meters")
  42873. },
  42874. {
  42875. name: "Giga",
  42876. height: math.unit(5, "km")
  42877. },
  42878. ]
  42879. ))
  42880. characterMakers.push(() => makeCharacter(
  42881. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  42882. {
  42883. front: {
  42884. height: math.unit(6, "feet"),
  42885. weight: math.unit(200, "lb"),
  42886. name: "Front",
  42887. image: {
  42888. source: "./media/characters/blizzard/front.svg",
  42889. extra: 1136/990,
  42890. bottom: 136/1272
  42891. }
  42892. },
  42893. back: {
  42894. height: math.unit(6, "feet"),
  42895. weight: math.unit(200, "lb"),
  42896. name: "Back",
  42897. image: {
  42898. source: "./media/characters/blizzard/back.svg",
  42899. extra: 1175/1034,
  42900. bottom: 97/1272
  42901. }
  42902. },
  42903. sitting: {
  42904. height: math.unit(3.725, "feet"),
  42905. weight: math.unit(200, "lb"),
  42906. name: "Sitting",
  42907. image: {
  42908. source: "./media/characters/blizzard/sitting.svg",
  42909. extra: 581/485,
  42910. bottom: 90/671
  42911. }
  42912. },
  42913. frontWizard: {
  42914. height: math.unit(7.9, "feet"),
  42915. weight: math.unit(200, "lb"),
  42916. name: "Front (Wizard)",
  42917. image: {
  42918. source: "./media/characters/blizzard/front-wizard.svg"
  42919. }
  42920. },
  42921. backWizard: {
  42922. height: math.unit(7.9, "feet"),
  42923. weight: math.unit(200, "lb"),
  42924. name: "Back (Wizard)",
  42925. image: {
  42926. source: "./media/characters/blizzard/back-wizard.svg"
  42927. }
  42928. },
  42929. frontNsfw: {
  42930. height: math.unit(6, "feet"),
  42931. weight: math.unit(200, "lb"),
  42932. name: "Front (NSFW)",
  42933. image: {
  42934. source: "./media/characters/blizzard/front-nsfw.svg",
  42935. extra: 1136/990,
  42936. bottom: 136/1272
  42937. }
  42938. },
  42939. backNsfw: {
  42940. height: math.unit(6, "feet"),
  42941. weight: math.unit(200, "lb"),
  42942. name: "Back (NSFW)",
  42943. image: {
  42944. source: "./media/characters/blizzard/back-nsfw.svg",
  42945. extra: 1175/1034,
  42946. bottom: 97/1272
  42947. }
  42948. },
  42949. sittingNsfw: {
  42950. height: math.unit(3.725, "feet"),
  42951. weight: math.unit(200, "lb"),
  42952. name: "Sitting (NSFW)",
  42953. image: {
  42954. source: "./media/characters/blizzard/sitting-nsfw.svg",
  42955. extra: 581/485,
  42956. bottom: 90/671
  42957. }
  42958. },
  42959. wizardFrontNsfw: {
  42960. height: math.unit(7.9, "feet"),
  42961. weight: math.unit(200, "lb"),
  42962. name: "Wizard (Front, NSFW)",
  42963. image: {
  42964. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  42965. }
  42966. },
  42967. },
  42968. [
  42969. {
  42970. name: "Normal",
  42971. height: math.unit(6, "feet"),
  42972. default: true
  42973. },
  42974. ]
  42975. ))
  42976. characterMakers.push(() => makeCharacter(
  42977. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  42978. {
  42979. front: {
  42980. height: math.unit(5 + 2/12, "feet"),
  42981. name: "Front",
  42982. image: {
  42983. source: "./media/characters/lumi/front.svg",
  42984. extra: 1328/1268,
  42985. bottom: 103/1431
  42986. }
  42987. },
  42988. back: {
  42989. height: math.unit(5 + 2/12, "feet"),
  42990. name: "Back",
  42991. image: {
  42992. source: "./media/characters/lumi/back.svg",
  42993. extra: 1381/1327,
  42994. bottom: 43/1424
  42995. }
  42996. },
  42997. },
  42998. [
  42999. {
  43000. name: "Normal",
  43001. height: math.unit(5 + 2/12, "feet"),
  43002. default: true
  43003. },
  43004. ]
  43005. ))
  43006. characterMakers.push(() => makeCharacter(
  43007. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43008. {
  43009. front: {
  43010. height: math.unit(5 + 9/12, "feet"),
  43011. name: "Front",
  43012. image: {
  43013. source: "./media/characters/aliya-cotton/front.svg",
  43014. extra: 577/564,
  43015. bottom: 29/606
  43016. }
  43017. },
  43018. },
  43019. [
  43020. {
  43021. name: "Normal",
  43022. height: math.unit(5 + 9/12, "feet"),
  43023. default: true
  43024. },
  43025. ]
  43026. ))
  43027. characterMakers.push(() => makeCharacter(
  43028. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  43029. {
  43030. front: {
  43031. height: math.unit(2.7, "meters"),
  43032. weight: math.unit(25000, "lb"),
  43033. name: "Front",
  43034. image: {
  43035. source: "./media/characters/noah-luxray/front.svg",
  43036. extra: 1644/825,
  43037. bottom: 339/1983
  43038. }
  43039. },
  43040. side: {
  43041. height: math.unit(2.97, "meters"),
  43042. weight: math.unit(25000, "lb"),
  43043. name: "Side",
  43044. image: {
  43045. source: "./media/characters/noah-luxray/side.svg",
  43046. extra: 1319/650,
  43047. bottom: 163/1482
  43048. }
  43049. },
  43050. dick: {
  43051. height: math.unit(7.4, "feet"),
  43052. weight: math.unit(2500, "lb"),
  43053. name: "Dick",
  43054. image: {
  43055. source: "./media/characters/noah-luxray/dick.svg"
  43056. }
  43057. },
  43058. dickAlt: {
  43059. height: math.unit(10.83, "feet"),
  43060. weight: math.unit(2500, "lb"),
  43061. name: "Dick-alt",
  43062. image: {
  43063. source: "./media/characters/noah-luxray/dick-alt.svg"
  43064. }
  43065. },
  43066. },
  43067. [
  43068. {
  43069. name: "BIG",
  43070. height: math.unit(2.7, "meters"),
  43071. default: true
  43072. },
  43073. ]
  43074. ))
  43075. characterMakers.push(() => makeCharacter(
  43076. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43077. {
  43078. standing: {
  43079. height: math.unit(183, "cm"),
  43080. weight: math.unit(68, "kg"),
  43081. name: "Standing",
  43082. image: {
  43083. source: "./media/characters/arion/standing.svg",
  43084. extra: 1869/1807,
  43085. bottom: 93/1962
  43086. }
  43087. },
  43088. reclining: {
  43089. height: math.unit(70.5, "cm"),
  43090. weight: math.unit(68, "lb"),
  43091. name: "Reclining",
  43092. image: {
  43093. source: "./media/characters/arion/reclining.svg",
  43094. extra: 937/870,
  43095. bottom: 63/1000
  43096. }
  43097. },
  43098. },
  43099. [
  43100. {
  43101. name: "Colossus Size, Low",
  43102. height: math.unit(33, "meters"),
  43103. default: true
  43104. },
  43105. {
  43106. name: "Colossus Size, Mid",
  43107. height: math.unit(52, "meters")
  43108. },
  43109. {
  43110. name: "Colossus Size, High",
  43111. height: math.unit(60, "meters")
  43112. },
  43113. {
  43114. name: "Titan Size, Low",
  43115. height: math.unit(91, "meters"),
  43116. },
  43117. {
  43118. name: "Titan Size, Mid",
  43119. height: math.unit(122, "meters")
  43120. },
  43121. {
  43122. name: "Titan Size, High",
  43123. height: math.unit(162, "meters")
  43124. },
  43125. ]
  43126. ))
  43127. characterMakers.push(() => makeCharacter(
  43128. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  43129. {
  43130. front: {
  43131. height: math.unit(53, "meters"),
  43132. name: "Front",
  43133. image: {
  43134. source: "./media/characters/stellar-marbey/front.svg",
  43135. extra: 1913/1805,
  43136. bottom: 92/2005
  43137. }
  43138. },
  43139. back: {
  43140. height: math.unit(53, "meters"),
  43141. name: "Back",
  43142. image: {
  43143. source: "./media/characters/stellar-marbey/back.svg",
  43144. extra: 1960/1851,
  43145. bottom: 28/1988
  43146. }
  43147. },
  43148. mouth: {
  43149. height: math.unit(3.5, "meters"),
  43150. name: "Mouth",
  43151. image: {
  43152. source: "./media/characters/stellar-marbey/mouth.svg"
  43153. }
  43154. },
  43155. },
  43156. [
  43157. {
  43158. name: "Macro",
  43159. height: math.unit(53, "meters"),
  43160. default: true
  43161. },
  43162. ]
  43163. ))
  43164. characterMakers.push(() => makeCharacter(
  43165. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  43166. {
  43167. front: {
  43168. height: math.unit(8 + 1/12, "feet"),
  43169. weight: math.unit(233, "lb"),
  43170. name: "Front",
  43171. image: {
  43172. source: "./media/characters/matsu/front.svg",
  43173. extra: 832/772,
  43174. bottom: 40/872
  43175. }
  43176. },
  43177. back: {
  43178. height: math.unit(8 + 1/12, "feet"),
  43179. weight: math.unit(233, "lb"),
  43180. name: "Back",
  43181. image: {
  43182. source: "./media/characters/matsu/back.svg",
  43183. extra: 839/780,
  43184. bottom: 47/886
  43185. }
  43186. },
  43187. },
  43188. [
  43189. {
  43190. name: "Normal",
  43191. height: math.unit(8 + 1/12, "feet"),
  43192. default: true
  43193. },
  43194. ]
  43195. ))
  43196. characterMakers.push(() => makeCharacter(
  43197. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  43198. {
  43199. front: {
  43200. height: math.unit(4, "feet"),
  43201. weight: math.unit(148, "lb"),
  43202. name: "Front",
  43203. image: {
  43204. source: "./media/characters/thiz/front.svg",
  43205. extra: 1913/1748,
  43206. bottom: 62/1975
  43207. }
  43208. },
  43209. },
  43210. [
  43211. {
  43212. name: "Normal",
  43213. height: math.unit(4, "feet"),
  43214. default: true
  43215. },
  43216. ]
  43217. ))
  43218. characterMakers.push(() => makeCharacter(
  43219. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  43220. {
  43221. front: {
  43222. height: math.unit(7 + 6/12, "feet"),
  43223. weight: math.unit(267, "lb"),
  43224. name: "Front",
  43225. image: {
  43226. source: "./media/characters/marcel/front.svg",
  43227. extra: 1221/1096,
  43228. bottom: 76/1297
  43229. }
  43230. },
  43231. },
  43232. [
  43233. {
  43234. name: "Normal",
  43235. height: math.unit(7 + 6/12, "feet"),
  43236. default: true
  43237. },
  43238. ]
  43239. ))
  43240. characterMakers.push(() => makeCharacter(
  43241. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  43242. {
  43243. side: {
  43244. height: math.unit(42, "meters"),
  43245. name: "Side",
  43246. image: {
  43247. source: "./media/characters/flake/side.svg",
  43248. extra: 1525/1306,
  43249. bottom: 209/1734
  43250. }
  43251. },
  43252. },
  43253. [
  43254. {
  43255. name: "Normal",
  43256. height: math.unit(42, "meters"),
  43257. default: true
  43258. },
  43259. ]
  43260. ))
  43261. characterMakers.push(() => makeCharacter(
  43262. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  43263. {
  43264. dressed: {
  43265. height: math.unit(6 + 4/12, "feet"),
  43266. weight: math.unit(520, "lb"),
  43267. name: "Dressed",
  43268. image: {
  43269. source: "./media/characters/someonne/dressed.svg",
  43270. extra: 1020/1010,
  43271. bottom: 178/1198
  43272. }
  43273. },
  43274. undressed: {
  43275. height: math.unit(6 + 4/12, "feet"),
  43276. weight: math.unit(520, "lb"),
  43277. name: "Undressed",
  43278. image: {
  43279. source: "./media/characters/someonne/undressed.svg",
  43280. extra: 1019/1014,
  43281. bottom: 169/1188
  43282. }
  43283. },
  43284. },
  43285. [
  43286. {
  43287. name: "Normal",
  43288. height: math.unit(6 + 4/12, "feet"),
  43289. default: true
  43290. },
  43291. ]
  43292. ))
  43293. characterMakers.push(() => makeCharacter(
  43294. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43295. {
  43296. front: {
  43297. height: math.unit(3, "feet"),
  43298. weight: math.unit(30, "lb"),
  43299. name: "Front",
  43300. image: {
  43301. source: "./media/characters/till/front.svg",
  43302. extra: 892/823,
  43303. bottom: 55/947
  43304. }
  43305. },
  43306. },
  43307. [
  43308. {
  43309. name: "Normal",
  43310. height: math.unit(3, "feet"),
  43311. default: true
  43312. },
  43313. ]
  43314. ))
  43315. characterMakers.push(() => makeCharacter(
  43316. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43317. {
  43318. front: {
  43319. height: math.unit(9 + 8/12, "feet"),
  43320. weight: math.unit(800, "lb"),
  43321. name: "Front",
  43322. image: {
  43323. source: "./media/characters/sydney-heki/front.svg",
  43324. extra: 1360/1300,
  43325. bottom: 22/1382
  43326. }
  43327. },
  43328. back: {
  43329. height: math.unit(9 + 8/12, "feet"),
  43330. weight: math.unit(800, "lb"),
  43331. name: "Back",
  43332. image: {
  43333. source: "./media/characters/sydney-heki/back.svg",
  43334. extra: 1356/1293,
  43335. bottom: 12/1368
  43336. }
  43337. },
  43338. frontDressed: {
  43339. height: math.unit(9 + 8/12, "feet"),
  43340. weight: math.unit(800, "lb"),
  43341. name: "Front-dressed",
  43342. image: {
  43343. source: "./media/characters/sydney-heki/front-dressed.svg",
  43344. extra: 1360/1300,
  43345. bottom: 22/1382
  43346. }
  43347. },
  43348. },
  43349. [
  43350. {
  43351. name: "Normal",
  43352. height: math.unit(9 + 8/12, "feet"),
  43353. default: true
  43354. },
  43355. {
  43356. name: "Macro",
  43357. height: math.unit(500, "feet")
  43358. },
  43359. {
  43360. name: "Megamacro",
  43361. height: math.unit(3.6, "miles")
  43362. },
  43363. ]
  43364. ))
  43365. characterMakers.push(() => makeCharacter(
  43366. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43367. {
  43368. front: {
  43369. height: math.unit(200, "cm"),
  43370. weight: math.unit(250, "lb"),
  43371. name: "Front",
  43372. image: {
  43373. source: "./media/characters/fowler-karlsson/front.svg",
  43374. extra: 897/845,
  43375. bottom: 123/1020
  43376. }
  43377. },
  43378. back: {
  43379. height: math.unit(200, "cm"),
  43380. weight: math.unit(250, "lb"),
  43381. name: "Back",
  43382. image: {
  43383. source: "./media/characters/fowler-karlsson/back.svg",
  43384. extra: 999/944,
  43385. bottom: 26/1025
  43386. }
  43387. },
  43388. dick: {
  43389. height: math.unit(1.92, "feet"),
  43390. weight: math.unit(150, "lb"),
  43391. name: "Dick",
  43392. image: {
  43393. source: "./media/characters/fowler-karlsson/dick.svg"
  43394. }
  43395. },
  43396. },
  43397. [
  43398. {
  43399. name: "Normal",
  43400. height: math.unit(200, "cm"),
  43401. default: true
  43402. },
  43403. {
  43404. name: "Smaller Macro",
  43405. height: math.unit(90, "m")
  43406. },
  43407. {
  43408. name: "Macro",
  43409. height: math.unit(150, "m")
  43410. },
  43411. {
  43412. name: "Bigger Macro",
  43413. height: math.unit(300, "m")
  43414. },
  43415. ]
  43416. ))
  43417. characterMakers.push(() => makeCharacter(
  43418. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43419. {
  43420. side: {
  43421. height: math.unit(8 + 2/12, "feet"),
  43422. weight: math.unit(1, "tonne"),
  43423. name: "Side",
  43424. image: {
  43425. source: "./media/characters/rylide/side.svg",
  43426. extra: 1318/1034,
  43427. bottom: 106/1424
  43428. }
  43429. },
  43430. sitting: {
  43431. height: math.unit(303, "cm"),
  43432. weight: math.unit(1, "tonne"),
  43433. name: "Sitting",
  43434. image: {
  43435. source: "./media/characters/rylide/sitting.svg",
  43436. extra: 1303/1103,
  43437. bottom: 36/1339
  43438. }
  43439. },
  43440. },
  43441. [
  43442. {
  43443. name: "Normal",
  43444. height: math.unit(8 + 2/12, "feet"),
  43445. default: true
  43446. },
  43447. ]
  43448. ))
  43449. characterMakers.push(() => makeCharacter(
  43450. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43451. {
  43452. front: {
  43453. height: math.unit(5 + 10/12, "feet"),
  43454. weight: math.unit(160, "lb"),
  43455. name: "Front",
  43456. image: {
  43457. source: "./media/characters/pudask/front.svg",
  43458. extra: 1616/1590,
  43459. bottom: 161/1777
  43460. }
  43461. },
  43462. },
  43463. [
  43464. {
  43465. name: "Ferret Height",
  43466. height: math.unit(2 + 5/12, "feet")
  43467. },
  43468. {
  43469. name: "Canon Height",
  43470. height: math.unit(5 + 10/12, "feet"),
  43471. default: true
  43472. },
  43473. ]
  43474. ))
  43475. characterMakers.push(() => makeCharacter(
  43476. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43477. {
  43478. front: {
  43479. height: math.unit(3 + 6/12, "feet"),
  43480. weight: math.unit(60, "lb"),
  43481. name: "Front",
  43482. image: {
  43483. source: "./media/characters/ramita/front.svg",
  43484. extra: 1402/1232,
  43485. bottom: 62/1464
  43486. }
  43487. },
  43488. dressed: {
  43489. height: math.unit(3 + 6/12, "feet"),
  43490. weight: math.unit(60, "lb"),
  43491. name: "Dressed",
  43492. image: {
  43493. source: "./media/characters/ramita/dressed.svg",
  43494. extra: 1534/1249,
  43495. bottom: 50/1584
  43496. }
  43497. },
  43498. },
  43499. [
  43500. {
  43501. name: "Normal",
  43502. height: math.unit(3 + 6/12, "feet"),
  43503. default: true
  43504. },
  43505. ]
  43506. ))
  43507. characterMakers.push(() => makeCharacter(
  43508. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43509. {
  43510. front: {
  43511. height: math.unit(8, "feet"),
  43512. name: "Front",
  43513. image: {
  43514. source: "./media/characters/ark/front.svg",
  43515. extra: 772/693,
  43516. bottom: 45/817
  43517. }
  43518. },
  43519. },
  43520. [
  43521. {
  43522. name: "Normal",
  43523. height: math.unit(8, "feet"),
  43524. default: true
  43525. },
  43526. ]
  43527. ))
  43528. characterMakers.push(() => makeCharacter(
  43529. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43530. {
  43531. front: {
  43532. height: math.unit(6, "feet"),
  43533. weight: math.unit(250, "lb"),
  43534. volume: math.unit(5/8, "gallons"),
  43535. name: "Front",
  43536. image: {
  43537. source: "./media/characters/ludwig-horn/front.svg",
  43538. extra: 1782/1635,
  43539. bottom: 96/1878
  43540. }
  43541. },
  43542. back: {
  43543. height: math.unit(6, "feet"),
  43544. weight: math.unit(250, "lb"),
  43545. volume: math.unit(5/8, "gallons"),
  43546. name: "Back",
  43547. image: {
  43548. source: "./media/characters/ludwig-horn/back.svg",
  43549. extra: 1874/1729,
  43550. bottom: 27/1901
  43551. }
  43552. },
  43553. dick: {
  43554. height: math.unit(1.05, "feet"),
  43555. weight: math.unit(15, "lb"),
  43556. volume: math.unit(5/8, "gallons"),
  43557. name: "Dick",
  43558. image: {
  43559. source: "./media/characters/ludwig-horn/dick.svg"
  43560. }
  43561. },
  43562. },
  43563. [
  43564. {
  43565. name: "Small",
  43566. height: math.unit(6, "feet")
  43567. },
  43568. {
  43569. name: "Typical",
  43570. height: math.unit(12, "feet"),
  43571. default: true
  43572. },
  43573. {
  43574. name: "Building",
  43575. height: math.unit(80, "feet")
  43576. },
  43577. {
  43578. name: "Town",
  43579. height: math.unit(800, "feet")
  43580. },
  43581. {
  43582. name: "Kingdom",
  43583. height: math.unit(80000, "feet")
  43584. },
  43585. {
  43586. name: "Planet",
  43587. height: math.unit(8000000, "feet")
  43588. },
  43589. {
  43590. name: "Universe",
  43591. height: math.unit(8000000000, "feet")
  43592. },
  43593. {
  43594. name: "Transcended",
  43595. height: math.unit(8e27, "feet")
  43596. },
  43597. ]
  43598. ))
  43599. characterMakers.push(() => makeCharacter(
  43600. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43601. {
  43602. front: {
  43603. height: math.unit(5, "feet"),
  43604. weight: math.unit(50, "kg"),
  43605. name: "Front",
  43606. image: {
  43607. source: "./media/characters/biot-avery/front.svg",
  43608. extra: 1295/1232,
  43609. bottom: 86/1381
  43610. }
  43611. },
  43612. },
  43613. [
  43614. {
  43615. name: "Normal",
  43616. height: math.unit(5, "feet"),
  43617. default: true
  43618. },
  43619. ]
  43620. ))
  43621. characterMakers.push(() => makeCharacter(
  43622. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  43623. {
  43624. front: {
  43625. height: math.unit(6, "feet"),
  43626. name: "Front",
  43627. image: {
  43628. source: "./media/characters/kitsune-kiro/front.svg",
  43629. extra: 1270/1158,
  43630. bottom: 42/1312
  43631. }
  43632. },
  43633. frontAlt: {
  43634. height: math.unit(6, "feet"),
  43635. name: "Front-alt",
  43636. image: {
  43637. source: "./media/characters/kitsune-kiro/front-alt.svg",
  43638. extra: 1130/1081,
  43639. bottom: 36/1166
  43640. }
  43641. },
  43642. },
  43643. [
  43644. {
  43645. name: "Smol",
  43646. height: math.unit(3, "feet")
  43647. },
  43648. {
  43649. name: "Normal",
  43650. height: math.unit(6, "feet"),
  43651. default: true
  43652. },
  43653. ]
  43654. ))
  43655. characterMakers.push(() => makeCharacter(
  43656. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  43657. {
  43658. front: {
  43659. height: math.unit(6, "feet"),
  43660. weight: math.unit(125, "lb"),
  43661. name: "Front",
  43662. image: {
  43663. source: "./media/characters/jack-thatcher/front.svg",
  43664. extra: 1474/1370,
  43665. bottom: 26/1500
  43666. }
  43667. },
  43668. back: {
  43669. height: math.unit(6, "feet"),
  43670. weight: math.unit(125, "lb"),
  43671. name: "Back",
  43672. image: {
  43673. source: "./media/characters/jack-thatcher/back.svg",
  43674. extra: 1489/1384,
  43675. bottom: 18/1507
  43676. }
  43677. },
  43678. },
  43679. [
  43680. {
  43681. name: "Normal",
  43682. height: math.unit(6, "feet"),
  43683. default: true
  43684. },
  43685. {
  43686. name: "Macro",
  43687. height: math.unit(75, "feet")
  43688. },
  43689. {
  43690. name: "Macro-er",
  43691. height: math.unit(250, "feet")
  43692. },
  43693. ]
  43694. ))
  43695. characterMakers.push(() => makeCharacter(
  43696. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  43697. {
  43698. front: {
  43699. height: math.unit(7, "feet"),
  43700. weight: math.unit(110, "kg"),
  43701. name: "Front",
  43702. image: {
  43703. source: "./media/characters/max-hyper/front.svg",
  43704. extra: 1969/1881,
  43705. bottom: 49/2018
  43706. }
  43707. },
  43708. },
  43709. [
  43710. {
  43711. name: "Normal",
  43712. height: math.unit(7, "feet"),
  43713. default: true
  43714. },
  43715. ]
  43716. ))
  43717. characterMakers.push(() => makeCharacter(
  43718. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  43719. {
  43720. front: {
  43721. height: math.unit(5 + 5/12, "feet"),
  43722. weight: math.unit(160, "lb"),
  43723. name: "Front",
  43724. image: {
  43725. source: "./media/characters/spook/front.svg",
  43726. extra: 794/791,
  43727. bottom: 54/848
  43728. }
  43729. },
  43730. back: {
  43731. height: math.unit(5 + 5/12, "feet"),
  43732. weight: math.unit(160, "lb"),
  43733. name: "Back",
  43734. image: {
  43735. source: "./media/characters/spook/back.svg",
  43736. extra: 812/798,
  43737. bottom: 32/844
  43738. }
  43739. },
  43740. },
  43741. [
  43742. {
  43743. name: "Normal",
  43744. height: math.unit(5 + 5/12, "feet"),
  43745. default: true
  43746. },
  43747. ]
  43748. ))
  43749. characterMakers.push(() => makeCharacter(
  43750. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  43751. {
  43752. front: {
  43753. height: math.unit(18, "feet"),
  43754. name: "Front",
  43755. image: {
  43756. source: "./media/characters/xeaduulix/front.svg",
  43757. extra: 1380/1166,
  43758. bottom: 110/1490
  43759. }
  43760. },
  43761. back: {
  43762. height: math.unit(18, "feet"),
  43763. name: "Back",
  43764. image: {
  43765. source: "./media/characters/xeaduulix/back.svg",
  43766. extra: 1592/1170,
  43767. bottom: 128/1720
  43768. }
  43769. },
  43770. frontNsfw: {
  43771. height: math.unit(18, "feet"),
  43772. name: "Front (NSFW)",
  43773. image: {
  43774. source: "./media/characters/xeaduulix/front-nsfw.svg",
  43775. extra: 1380/1166,
  43776. bottom: 110/1490
  43777. }
  43778. },
  43779. backNsfw: {
  43780. height: math.unit(18, "feet"),
  43781. name: "Back (NSFW)",
  43782. image: {
  43783. source: "./media/characters/xeaduulix/back-nsfw.svg",
  43784. extra: 1592/1170,
  43785. bottom: 128/1720
  43786. }
  43787. },
  43788. },
  43789. [
  43790. {
  43791. name: "Normal",
  43792. height: math.unit(18, "feet"),
  43793. default: true
  43794. },
  43795. ]
  43796. ))
  43797. characterMakers.push(() => makeCharacter(
  43798. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  43799. {
  43800. spreadWings: {
  43801. height: math.unit(20, "feet"),
  43802. name: "Spread Wings",
  43803. image: {
  43804. source: "./media/characters/fledge/spread-wings.svg",
  43805. extra: 693/635,
  43806. bottom: 26/719
  43807. }
  43808. },
  43809. front: {
  43810. height: math.unit(20, "feet"),
  43811. name: "Front",
  43812. image: {
  43813. source: "./media/characters/fledge/front.svg",
  43814. extra: 684/637,
  43815. bottom: 18/702
  43816. }
  43817. },
  43818. frontAlt: {
  43819. height: math.unit(20, "feet"),
  43820. name: "Front (Alt)",
  43821. image: {
  43822. source: "./media/characters/fledge/front-alt.svg",
  43823. extra: 708/664,
  43824. bottom: 13/721
  43825. }
  43826. },
  43827. back: {
  43828. height: math.unit(20, "feet"),
  43829. name: "Back",
  43830. image: {
  43831. source: "./media/characters/fledge/back.svg",
  43832. extra: 718/634,
  43833. bottom: 22/740
  43834. }
  43835. },
  43836. head: {
  43837. height: math.unit(5.55, "feet"),
  43838. name: "Head",
  43839. image: {
  43840. source: "./media/characters/fledge/head.svg"
  43841. }
  43842. },
  43843. headAlt: {
  43844. height: math.unit(5.1, "feet"),
  43845. name: "Head (Alt)",
  43846. image: {
  43847. source: "./media/characters/fledge/head-alt.svg"
  43848. }
  43849. },
  43850. },
  43851. [
  43852. {
  43853. name: "Small",
  43854. height: math.unit(6 + 2/12, "feet")
  43855. },
  43856. {
  43857. name: "Big",
  43858. height: math.unit(20, "feet"),
  43859. default: true
  43860. },
  43861. {
  43862. name: "Giant",
  43863. height: math.unit(100, "feet")
  43864. },
  43865. {
  43866. name: "Macro",
  43867. height: math.unit(200, "feet")
  43868. },
  43869. ]
  43870. ))
  43871. characterMakers.push(() => makeCharacter(
  43872. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  43873. {
  43874. front: {
  43875. height: math.unit(1, "meter"),
  43876. name: "Front",
  43877. image: {
  43878. source: "./media/characters/atlas-morenai/front.svg",
  43879. extra: 1275/1043,
  43880. bottom: 19/1294
  43881. }
  43882. },
  43883. back: {
  43884. height: math.unit(1, "meter"),
  43885. name: "Back",
  43886. image: {
  43887. source: "./media/characters/atlas-morenai/back.svg",
  43888. extra: 1141/1001,
  43889. bottom: 25/1166
  43890. }
  43891. },
  43892. },
  43893. [
  43894. {
  43895. name: "Normal",
  43896. height: math.unit(1, "meter"),
  43897. default: true
  43898. },
  43899. {
  43900. name: "Magic-Infused",
  43901. height: math.unit(5, "meters")
  43902. },
  43903. ]
  43904. ))
  43905. characterMakers.push(() => makeCharacter(
  43906. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  43907. {
  43908. front: {
  43909. height: math.unit(5, "meters"),
  43910. name: "Front",
  43911. image: {
  43912. source: "./media/characters/cintia/front.svg",
  43913. extra: 1312/1228,
  43914. bottom: 38/1350
  43915. }
  43916. },
  43917. back: {
  43918. height: math.unit(5, "meters"),
  43919. name: "Back",
  43920. image: {
  43921. source: "./media/characters/cintia/back.svg",
  43922. extra: 1260/1166,
  43923. bottom: 98/1358
  43924. }
  43925. },
  43926. frontDick: {
  43927. height: math.unit(5, "meters"),
  43928. name: "Front (Dick)",
  43929. image: {
  43930. source: "./media/characters/cintia/front-dick.svg",
  43931. extra: 1312/1228,
  43932. bottom: 38/1350
  43933. }
  43934. },
  43935. backDick: {
  43936. height: math.unit(5, "meters"),
  43937. name: "Back (Dick)",
  43938. image: {
  43939. source: "./media/characters/cintia/back-dick.svg",
  43940. extra: 1260/1166,
  43941. bottom: 98/1358
  43942. }
  43943. },
  43944. bust: {
  43945. height: math.unit(1.97, "meters"),
  43946. name: "Bust",
  43947. image: {
  43948. source: "./media/characters/cintia/bust.svg",
  43949. extra: 617/565,
  43950. bottom: 0/617
  43951. }
  43952. },
  43953. },
  43954. [
  43955. {
  43956. name: "Normal",
  43957. height: math.unit(5, "meters"),
  43958. default: true
  43959. },
  43960. ]
  43961. ))
  43962. characterMakers.push(() => makeCharacter(
  43963. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  43964. {
  43965. side: {
  43966. height: math.unit(100, "feet"),
  43967. name: "Side",
  43968. image: {
  43969. source: "./media/characters/denora/side.svg",
  43970. extra: 875/803,
  43971. bottom: 9/884
  43972. }
  43973. },
  43974. },
  43975. [
  43976. {
  43977. name: "Standard",
  43978. height: math.unit(100, "feet"),
  43979. default: true
  43980. },
  43981. {
  43982. name: "Grand",
  43983. height: math.unit(1000, "feet")
  43984. },
  43985. {
  43986. name: "Conquering",
  43987. height: math.unit(10000, "feet")
  43988. },
  43989. ]
  43990. ))
  43991. characterMakers.push(() => makeCharacter(
  43992. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  43993. {
  43994. dressed: {
  43995. height: math.unit(8 + 5/12, "feet"),
  43996. weight: math.unit(700, "lb"),
  43997. name: "Dressed",
  43998. image: {
  43999. source: "./media/characters/kiva/dressed.svg",
  44000. extra: 1102/1055,
  44001. bottom: 60/1162
  44002. }
  44003. },
  44004. nude: {
  44005. height: math.unit(8 + 5/12, "feet"),
  44006. weight: math.unit(700, "lb"),
  44007. name: "Nude",
  44008. image: {
  44009. source: "./media/characters/kiva/nude.svg",
  44010. extra: 1102/1055,
  44011. bottom: 60/1162
  44012. }
  44013. },
  44014. },
  44015. [
  44016. {
  44017. name: "Base Height",
  44018. height: math.unit(8 + 5/12, "feet"),
  44019. default: true
  44020. },
  44021. {
  44022. name: "Macro",
  44023. height: math.unit(100, "feet")
  44024. },
  44025. {
  44026. name: "Max",
  44027. height: math.unit(3280, "feet")
  44028. },
  44029. ]
  44030. ))
  44031. characterMakers.push(() => makeCharacter(
  44032. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44033. {
  44034. front: {
  44035. height: math.unit(6 + 8/12, "feet"),
  44036. weight: math.unit(250, "lb"),
  44037. name: "Front",
  44038. image: {
  44039. source: "./media/characters/ztragon/front.svg",
  44040. extra: 1825/1684,
  44041. bottom: 98/1923
  44042. }
  44043. },
  44044. },
  44045. [
  44046. {
  44047. name: "Normal",
  44048. height: math.unit(6 + 8/12, "feet"),
  44049. default: true
  44050. },
  44051. {
  44052. name: "Macro",
  44053. height: math.unit(80, "feet")
  44054. },
  44055. ]
  44056. ))
  44057. characterMakers.push(() => makeCharacter(
  44058. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44059. {
  44060. front: {
  44061. height: math.unit(10.4, "feet"),
  44062. weight: math.unit(2, "tons"),
  44063. name: "Front",
  44064. image: {
  44065. source: "./media/characters/yesenia/front.svg",
  44066. extra: 1479/1474,
  44067. bottom: 233/1712
  44068. }
  44069. },
  44070. },
  44071. [
  44072. {
  44073. name: "Normal",
  44074. height: math.unit(10.4, "feet"),
  44075. default: true
  44076. },
  44077. ]
  44078. ))
  44079. characterMakers.push(() => makeCharacter(
  44080. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44081. {
  44082. normal: {
  44083. height: math.unit(6 + 1/12, "feet"),
  44084. weight: math.unit(180, "lb"),
  44085. name: "Normal",
  44086. image: {
  44087. source: "./media/characters/leanne-lycheborne/normal.svg",
  44088. extra: 1748/1660,
  44089. bottom: 98/1846
  44090. }
  44091. },
  44092. were: {
  44093. height: math.unit(12, "feet"),
  44094. weight: math.unit(1600, "lb"),
  44095. name: "Were",
  44096. image: {
  44097. source: "./media/characters/leanne-lycheborne/were.svg",
  44098. extra: 1485/1432,
  44099. bottom: 66/1551
  44100. }
  44101. },
  44102. },
  44103. [
  44104. {
  44105. name: "Normal",
  44106. height: math.unit(6 + 1/12, "feet"),
  44107. default: true
  44108. },
  44109. ]
  44110. ))
  44111. characterMakers.push(() => makeCharacter(
  44112. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44113. {
  44114. side: {
  44115. height: math.unit(13, "feet"),
  44116. name: "Side",
  44117. image: {
  44118. source: "./media/characters/kira-tyler/side.svg",
  44119. extra: 693/393,
  44120. bottom: 58/751
  44121. }
  44122. },
  44123. },
  44124. [
  44125. {
  44126. name: "Normal",
  44127. height: math.unit(13, "feet"),
  44128. default: true
  44129. },
  44130. ]
  44131. ))
  44132. characterMakers.push(() => makeCharacter(
  44133. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  44134. {
  44135. front: {
  44136. height: math.unit(10.3, "feet"),
  44137. weight: math.unit(150, "lb"),
  44138. name: "Front",
  44139. image: {
  44140. source: "./media/characters/blaze/front.svg",
  44141. extra: 1378/1286,
  44142. bottom: 172/1550
  44143. }
  44144. },
  44145. },
  44146. [
  44147. {
  44148. name: "Normal",
  44149. height: math.unit(10.3, "feet"),
  44150. default: true
  44151. },
  44152. ]
  44153. ))
  44154. characterMakers.push(() => makeCharacter(
  44155. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  44156. {
  44157. side: {
  44158. height: math.unit(2, "meters"),
  44159. weight: math.unit(400, "kg"),
  44160. name: "Side",
  44161. image: {
  44162. source: "./media/characters/anu/side.svg",
  44163. extra: 506/394,
  44164. bottom: 18/524
  44165. }
  44166. },
  44167. },
  44168. [
  44169. {
  44170. name: "Humanoid",
  44171. height: math.unit(2, "meters")
  44172. },
  44173. {
  44174. name: "Normal",
  44175. height: math.unit(5, "meters"),
  44176. default: true
  44177. },
  44178. ]
  44179. ))
  44180. characterMakers.push(() => makeCharacter(
  44181. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  44182. {
  44183. front: {
  44184. height: math.unit(5 + 5/12, "feet"),
  44185. weight: math.unit(170, "lb"),
  44186. name: "Front",
  44187. image: {
  44188. source: "./media/characters/synx-the-lynx/front.svg",
  44189. extra: 1893/1745,
  44190. bottom: 17/1910
  44191. }
  44192. },
  44193. side: {
  44194. height: math.unit(5 + 5/12, "feet"),
  44195. weight: math.unit(170, "lb"),
  44196. name: "Side",
  44197. image: {
  44198. source: "./media/characters/synx-the-lynx/side.svg",
  44199. extra: 1884/1740,
  44200. bottom: 39/1923
  44201. }
  44202. },
  44203. back: {
  44204. height: math.unit(5 + 5/12, "feet"),
  44205. weight: math.unit(170, "lb"),
  44206. name: "Back",
  44207. image: {
  44208. source: "./media/characters/synx-the-lynx/back.svg",
  44209. extra: 1903/1755,
  44210. bottom: 14/1917
  44211. }
  44212. },
  44213. },
  44214. [
  44215. {
  44216. name: "Normal",
  44217. height: math.unit(5 + 5/12, "feet"),
  44218. default: true
  44219. },
  44220. ]
  44221. ))
  44222. characterMakers.push(() => makeCharacter(
  44223. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  44224. {
  44225. back: {
  44226. height: math.unit(15, "feet"),
  44227. name: "Back",
  44228. image: {
  44229. source: "./media/characters/nadezda-fex/back.svg",
  44230. extra: 1695/1481,
  44231. bottom: 25/1720
  44232. }
  44233. },
  44234. },
  44235. [
  44236. {
  44237. name: "Normal",
  44238. height: math.unit(15, "feet"),
  44239. default: true
  44240. },
  44241. {
  44242. name: "Macro",
  44243. height: math.unit(2.5, "miles")
  44244. },
  44245. {
  44246. name: "Goddess",
  44247. height: math.unit(2, "multiverses")
  44248. },
  44249. ]
  44250. ))
  44251. characterMakers.push(() => makeCharacter(
  44252. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  44253. {
  44254. front: {
  44255. height: math.unit(216, "cm"),
  44256. name: "Front",
  44257. image: {
  44258. source: "./media/characters/lev/front.svg",
  44259. extra: 1728/1670,
  44260. bottom: 82/1810
  44261. }
  44262. },
  44263. back: {
  44264. height: math.unit(216, "cm"),
  44265. name: "Back",
  44266. image: {
  44267. source: "./media/characters/lev/back.svg",
  44268. extra: 1738/1675,
  44269. bottom: 24/1762
  44270. }
  44271. },
  44272. dressed: {
  44273. height: math.unit(216, "cm"),
  44274. name: "Dressed",
  44275. image: {
  44276. source: "./media/characters/lev/dressed.svg",
  44277. extra: 1397/1351,
  44278. bottom: 73/1470
  44279. }
  44280. },
  44281. head: {
  44282. height: math.unit(0.51, "meter"),
  44283. name: "Head",
  44284. image: {
  44285. source: "./media/characters/lev/head.svg"
  44286. }
  44287. },
  44288. },
  44289. [
  44290. {
  44291. name: "Normal",
  44292. height: math.unit(216, "cm"),
  44293. default: true
  44294. },
  44295. {
  44296. name: "Relatively Macro",
  44297. height: math.unit(80, "meters")
  44298. },
  44299. {
  44300. name: "Megamacro",
  44301. height: math.unit(21600, "meters")
  44302. },
  44303. {
  44304. name: "Megamacro+",
  44305. height: math.unit(64800, "meters")
  44306. },
  44307. ]
  44308. ))
  44309. characterMakers.push(() => makeCharacter(
  44310. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  44311. {
  44312. front: {
  44313. height: math.unit(2, "meters"),
  44314. weight: math.unit(80, "kg"),
  44315. name: "Front",
  44316. image: {
  44317. source: "./media/characters/moka/front.svg",
  44318. extra: 1337/1255,
  44319. bottom: 58/1395
  44320. }
  44321. },
  44322. },
  44323. [
  44324. {
  44325. name: "Micro",
  44326. height: math.unit(15, "cm")
  44327. },
  44328. {
  44329. name: "Normal",
  44330. height: math.unit(2, "meters"),
  44331. default: true
  44332. },
  44333. {
  44334. name: "Macro",
  44335. height: math.unit(20, "meters"),
  44336. },
  44337. ]
  44338. ))
  44339. characterMakers.push(() => makeCharacter(
  44340. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  44341. {
  44342. front: {
  44343. height: math.unit(9, "feet"),
  44344. weight: math.unit(240, "lb"),
  44345. name: "Front",
  44346. image: {
  44347. source: "./media/characters/kuzco/front.svg",
  44348. extra: 1593/1487,
  44349. bottom: 32/1625
  44350. }
  44351. },
  44352. side: {
  44353. height: math.unit(9, "feet"),
  44354. weight: math.unit(240, "lb"),
  44355. name: "Side",
  44356. image: {
  44357. source: "./media/characters/kuzco/side.svg",
  44358. extra: 1575/1485,
  44359. bottom: 30/1605
  44360. }
  44361. },
  44362. back: {
  44363. height: math.unit(9, "feet"),
  44364. weight: math.unit(240, "lb"),
  44365. name: "Back",
  44366. image: {
  44367. source: "./media/characters/kuzco/back.svg",
  44368. extra: 1603/1514,
  44369. bottom: 14/1617
  44370. }
  44371. },
  44372. },
  44373. [
  44374. {
  44375. name: "Normal",
  44376. height: math.unit(9, "feet"),
  44377. default: true
  44378. },
  44379. ]
  44380. ))
  44381. characterMakers.push(() => makeCharacter(
  44382. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  44383. {
  44384. side: {
  44385. height: math.unit(2, "meters"),
  44386. weight: math.unit(300, "kg"),
  44387. name: "Side",
  44388. image: {
  44389. source: "./media/characters/ceruleus/side.svg",
  44390. extra: 1068/974,
  44391. bottom: 126/1194
  44392. }
  44393. },
  44394. },
  44395. [
  44396. {
  44397. name: "Normal",
  44398. height: math.unit(16, "meters"),
  44399. default: true
  44400. },
  44401. ]
  44402. ))
  44403. characterMakers.push(() => makeCharacter(
  44404. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  44405. {
  44406. front: {
  44407. height: math.unit(9, "feet"),
  44408. weight: math.unit(500, "kg"),
  44409. name: "Front",
  44410. image: {
  44411. source: "./media/characters/acouya/front.svg",
  44412. extra: 1660/1473,
  44413. bottom: 28/1688
  44414. }
  44415. },
  44416. },
  44417. [
  44418. {
  44419. name: "Normal",
  44420. height: math.unit(9, "feet"),
  44421. default: true
  44422. },
  44423. ]
  44424. ))
  44425. characterMakers.push(() => makeCharacter(
  44426. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  44427. {
  44428. front: {
  44429. height: math.unit(5 + 6/12, "feet"),
  44430. weight: math.unit(195, "lb"),
  44431. name: "Front",
  44432. image: {
  44433. source: "./media/characters/vant/front.svg",
  44434. extra: 1396/1320,
  44435. bottom: 20/1416
  44436. }
  44437. },
  44438. back: {
  44439. height: math.unit(5 + 6/12, "feet"),
  44440. weight: math.unit(195, "lb"),
  44441. name: "Back",
  44442. image: {
  44443. source: "./media/characters/vant/back.svg",
  44444. extra: 1396/1320,
  44445. bottom: 20/1416
  44446. }
  44447. },
  44448. maw: {
  44449. height: math.unit(0.75, "feet"),
  44450. name: "Maw",
  44451. image: {
  44452. source: "./media/characters/vant/maw.svg"
  44453. }
  44454. },
  44455. paw: {
  44456. height: math.unit(1.07, "feet"),
  44457. name: "Paw",
  44458. image: {
  44459. source: "./media/characters/vant/paw.svg"
  44460. }
  44461. },
  44462. },
  44463. [
  44464. {
  44465. name: "Micro",
  44466. height: math.unit(0.25, "inches")
  44467. },
  44468. {
  44469. name: "Normal",
  44470. height: math.unit(5 + 6/12, "feet"),
  44471. default: true
  44472. },
  44473. {
  44474. name: "Macro",
  44475. height: math.unit(75, "feet")
  44476. },
  44477. ]
  44478. ))
  44479. characterMakers.push(() => makeCharacter(
  44480. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  44481. {
  44482. front: {
  44483. height: math.unit(30, "meters"),
  44484. weight: math.unit(363, "tons"),
  44485. name: "Front",
  44486. image: {
  44487. source: "./media/characters/ahra/front.svg",
  44488. extra: 1914/1814,
  44489. bottom: 46/1960
  44490. }
  44491. },
  44492. },
  44493. [
  44494. {
  44495. name: "Macro",
  44496. height: math.unit(30, "meters"),
  44497. default: true
  44498. },
  44499. ]
  44500. ))
  44501. characterMakers.push(() => makeCharacter(
  44502. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  44503. {
  44504. undressed: {
  44505. height: math.unit(2, "m"),
  44506. weight: math.unit(250, "kg"),
  44507. name: "Undressed",
  44508. image: {
  44509. source: "./media/characters/coriander/undressed.svg",
  44510. extra: 1757/1606,
  44511. bottom: 107/1864
  44512. }
  44513. },
  44514. dressed: {
  44515. height: math.unit(2, "m"),
  44516. weight: math.unit(250, "kg"),
  44517. name: "Dressed",
  44518. image: {
  44519. source: "./media/characters/coriander/dressed.svg",
  44520. extra: 1757/1606,
  44521. bottom: 107/1864
  44522. }
  44523. },
  44524. },
  44525. [
  44526. {
  44527. name: "Normal",
  44528. height: math.unit(4, "meters"),
  44529. default: true
  44530. },
  44531. {
  44532. name: "XL",
  44533. height: math.unit(6, "meters")
  44534. },
  44535. {
  44536. name: "XXL",
  44537. height: math.unit(8, "meters")
  44538. },
  44539. ]
  44540. ))
  44541. characterMakers.push(() => makeCharacter(
  44542. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  44543. {
  44544. front: {
  44545. height: math.unit(6, "feet"),
  44546. name: "Front",
  44547. image: {
  44548. source: "./media/characters/syrinx/front.svg",
  44549. extra: 1557/1259,
  44550. bottom: 171/1728
  44551. }
  44552. },
  44553. },
  44554. [
  44555. {
  44556. name: "Normal",
  44557. height: math.unit(6 + 3/12, "feet"),
  44558. default: true
  44559. },
  44560. ]
  44561. ))
  44562. characterMakers.push(() => makeCharacter(
  44563. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  44564. {
  44565. front: {
  44566. height: math.unit(11 + 6/12, "feet"),
  44567. weight: math.unit(1.5, "tons"),
  44568. name: "Front",
  44569. image: {
  44570. source: "./media/characters/bor/front.svg",
  44571. extra: 1189/1109,
  44572. bottom: 170/1359
  44573. }
  44574. },
  44575. },
  44576. [
  44577. {
  44578. name: "Normal",
  44579. height: math.unit(11 + 6/12, "feet"),
  44580. default: true
  44581. },
  44582. {
  44583. name: "Macro",
  44584. height: math.unit(32 + 9/12, "feet")
  44585. },
  44586. ]
  44587. ))
  44588. characterMakers.push(() => makeCharacter(
  44589. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  44590. {
  44591. anthro: {
  44592. height: math.unit(9, "feet"),
  44593. weight: math.unit(2076, "lb"),
  44594. name: "Anthro",
  44595. image: {
  44596. source: "./media/characters/abacus/anthro.svg",
  44597. extra: 1540/1494,
  44598. bottom: 233/1773
  44599. }
  44600. },
  44601. pigeon: {
  44602. height: math.unit(1, "feet"),
  44603. name: "Pigeon",
  44604. image: {
  44605. source: "./media/characters/abacus/pigeon.svg",
  44606. extra: 528/525,
  44607. bottom: 46/574
  44608. }
  44609. },
  44610. },
  44611. [
  44612. {
  44613. name: "Normal",
  44614. height: math.unit(9, "feet"),
  44615. default: true
  44616. },
  44617. ]
  44618. ))
  44619. characterMakers.push(() => makeCharacter(
  44620. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  44621. {
  44622. side: {
  44623. height: math.unit(6, "feet"),
  44624. name: "Side",
  44625. image: {
  44626. source: "./media/characters/delkhan/side.svg",
  44627. extra: 1884/1786,
  44628. bottom: 308/2192
  44629. }
  44630. },
  44631. head: {
  44632. height: math.unit(3.38, "feet"),
  44633. name: "Head",
  44634. image: {
  44635. source: "./media/characters/delkhan/head.svg"
  44636. }
  44637. },
  44638. },
  44639. [
  44640. {
  44641. name: "Normal",
  44642. height: math.unit(72, "feet"),
  44643. default: true
  44644. },
  44645. {
  44646. name: "Giant",
  44647. height: math.unit(172, "feet")
  44648. },
  44649. ]
  44650. ))
  44651. characterMakers.push(() => makeCharacter(
  44652. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  44653. {
  44654. standing: {
  44655. height: math.unit(6, "feet"),
  44656. name: "Standing",
  44657. image: {
  44658. source: "./media/characters/euchidat/standing.svg",
  44659. extra: 1612/1553,
  44660. bottom: 116/1728
  44661. }
  44662. },
  44663. leaning: {
  44664. height: math.unit(6, "feet"),
  44665. name: "Leaning",
  44666. image: {
  44667. source: "./media/characters/euchidat/leaning.svg",
  44668. extra: 1719/1674,
  44669. bottom: 27/1746
  44670. }
  44671. },
  44672. },
  44673. [
  44674. {
  44675. name: "Normal",
  44676. height: math.unit(175, "feet"),
  44677. default: true
  44678. },
  44679. {
  44680. name: "Megamacro",
  44681. height: math.unit(190, "miles")
  44682. },
  44683. {
  44684. name: "Gigamacro",
  44685. height: math.unit(190000, "miles")
  44686. },
  44687. ]
  44688. ))
  44689. characterMakers.push(() => makeCharacter(
  44690. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  44691. {
  44692. front: {
  44693. height: math.unit(6, "feet"),
  44694. weight: math.unit(150, "lb"),
  44695. name: "Front",
  44696. image: {
  44697. source: "./media/characters/rebecca-stack/front.svg",
  44698. extra: 1256/1201,
  44699. bottom: 18/1274
  44700. }
  44701. },
  44702. },
  44703. [
  44704. {
  44705. name: "Normal",
  44706. height: math.unit(5 + 8/12, "feet"),
  44707. default: true
  44708. },
  44709. {
  44710. name: "Demolitionist",
  44711. height: math.unit(200, "feet")
  44712. },
  44713. {
  44714. name: "Out of Control",
  44715. height: math.unit(2, "miles")
  44716. },
  44717. {
  44718. name: "Giga",
  44719. height: math.unit(7200, "miles")
  44720. },
  44721. ]
  44722. ))
  44723. characterMakers.push(() => makeCharacter(
  44724. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  44725. {
  44726. front: {
  44727. height: math.unit(6, "feet"),
  44728. weight: math.unit(150, "lb"),
  44729. name: "Front",
  44730. image: {
  44731. source: "./media/characters/jenny-cartwright/front.svg",
  44732. extra: 1384/1376,
  44733. bottom: 58/1442
  44734. }
  44735. },
  44736. },
  44737. [
  44738. {
  44739. name: "Normal",
  44740. height: math.unit(6 + 7/12, "feet"),
  44741. default: true
  44742. },
  44743. {
  44744. name: "Librarian",
  44745. height: math.unit(55, "feet")
  44746. },
  44747. {
  44748. name: "Sightseer",
  44749. height: math.unit(50, "miles")
  44750. },
  44751. {
  44752. name: "Giga",
  44753. height: math.unit(30000, "miles")
  44754. },
  44755. ]
  44756. ))
  44757. //characters
  44758. function makeCharacters() {
  44759. const results = [];
  44760. characterMakers.forEach(character => {
  44761. results.push(character());
  44762. });
  44763. return results;
  44764. }