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

44732 строки
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. }
  1795. //species
  1796. function getSpeciesInfo(speciesList) {
  1797. let result = new Set();
  1798. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1799. result.add(entry)
  1800. });
  1801. return Array.from(result);
  1802. };
  1803. function getSpeciesInfoHelper(species) {
  1804. if (!speciesData[species]) {
  1805. console.warn(species + " doesn't exist");
  1806. return [];
  1807. }
  1808. if (speciesData[species].parents) {
  1809. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1810. } else {
  1811. return [species];
  1812. }
  1813. }
  1814. characterMakers.push(() => makeCharacter(
  1815. {
  1816. name: "Fen",
  1817. species: ["crux"],
  1818. description: {
  1819. title: "Bio",
  1820. text: "Very furry. Sheds on everything."
  1821. },
  1822. tags: [
  1823. "anthro",
  1824. "goo"
  1825. ]
  1826. },
  1827. {
  1828. back: {
  1829. height: math.unit(2.2428, "meter"),
  1830. weight: math.unit(124.738, "kg"),
  1831. name: "Back",
  1832. image: {
  1833. source: "./media/characters/fen/back.svg",
  1834. },
  1835. info: {
  1836. description: {
  1837. mode: "append",
  1838. text: "\n\nHe is not currently looking at you."
  1839. }
  1840. }
  1841. },
  1842. full: {
  1843. height: math.unit(0.91, "meter"),
  1844. weight: math.unit(225, "kg"),
  1845. name: "Full",
  1846. image: {
  1847. source: "./media/characters/fen/full.svg",
  1848. extra: 1133/859,
  1849. bottom: 145/1278
  1850. },
  1851. info: {
  1852. description: {
  1853. mode: "append",
  1854. text: "\n\nMunch."
  1855. }
  1856. }
  1857. },
  1858. kneeling: {
  1859. height: math.unit(5.4, "feet"),
  1860. weight: math.unit(124.738, "kg"),
  1861. name: "Kneeling",
  1862. image: {
  1863. source: "./media/characters/fen/kneeling.svg",
  1864. extra: 563 / 507
  1865. }
  1866. },
  1867. goo: {
  1868. height: math.unit(2.8, "feet"),
  1869. weight: math.unit(125, "kg"),
  1870. capacity: math.unit(1, "people"),
  1871. name: "Goo",
  1872. image: {
  1873. source: "./media/characters/fen/goo.svg",
  1874. bottom: 116 / 613
  1875. }
  1876. },
  1877. lounging: {
  1878. height: math.unit(6.5, "feet"),
  1879. weight: math.unit(125, "kg"),
  1880. name: "Lounging",
  1881. image: {
  1882. source: "./media/characters/fen/lounging.svg"
  1883. }
  1884. },
  1885. },
  1886. [
  1887. {
  1888. name: "Normal",
  1889. height: math.unit(2.2428, "meter")
  1890. },
  1891. {
  1892. name: "Big",
  1893. height: math.unit(12, "feet")
  1894. },
  1895. {
  1896. name: "Minimacro",
  1897. height: math.unit(40, "feet"),
  1898. default: true,
  1899. info: {
  1900. description: {
  1901. mode: "append",
  1902. text: "\n\nTOO DAMN BIG"
  1903. }
  1904. }
  1905. },
  1906. {
  1907. name: "Macro",
  1908. height: math.unit(100, "feet"),
  1909. info: {
  1910. description: {
  1911. mode: "append",
  1912. text: "\n\nTOO DAMN BIG"
  1913. }
  1914. }
  1915. },
  1916. {
  1917. name: "Macro+",
  1918. height: math.unit(300, "feet")
  1919. },
  1920. {
  1921. name: "Megamacro",
  1922. height: math.unit(2, "miles")
  1923. }
  1924. ]
  1925. ))
  1926. characterMakers.push(() => makeCharacter(
  1927. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1928. {
  1929. front: {
  1930. height: math.unit(183, "cm"),
  1931. weight: math.unit(80, "kg"),
  1932. name: "Front",
  1933. image: {
  1934. source: "./media/characters/sofia-fluttertail/front.svg",
  1935. bottom: 0.01,
  1936. extra: 2154 / 2081
  1937. }
  1938. },
  1939. frontAlt: {
  1940. height: math.unit(183, "cm"),
  1941. weight: math.unit(80, "kg"),
  1942. name: "Front (alt)",
  1943. image: {
  1944. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1945. }
  1946. },
  1947. back: {
  1948. height: math.unit(183, "cm"),
  1949. weight: math.unit(80, "kg"),
  1950. name: "Back",
  1951. image: {
  1952. source: "./media/characters/sofia-fluttertail/back.svg"
  1953. }
  1954. },
  1955. kneeling: {
  1956. height: math.unit(125, "cm"),
  1957. weight: math.unit(80, "kg"),
  1958. name: "Kneeling",
  1959. image: {
  1960. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1961. extra: 1033 / 977,
  1962. bottom: 23.7 / 1057
  1963. }
  1964. },
  1965. maw: {
  1966. height: math.unit(183 / 5, "cm"),
  1967. name: "Maw",
  1968. image: {
  1969. source: "./media/characters/sofia-fluttertail/maw.svg"
  1970. }
  1971. },
  1972. mawcloseup: {
  1973. height: math.unit(183 / 5 * 0.41, "cm"),
  1974. name: "Maw (Closeup)",
  1975. image: {
  1976. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1977. }
  1978. },
  1979. paws: {
  1980. height: math.unit(1.17, "feet"),
  1981. name: "Paws",
  1982. image: {
  1983. source: "./media/characters/sofia-fluttertail/paws.svg",
  1984. extra: 851 / 851,
  1985. bottom: 17 / 868
  1986. }
  1987. },
  1988. },
  1989. [
  1990. {
  1991. name: "Normal",
  1992. height: math.unit(1.83, "meter")
  1993. },
  1994. {
  1995. name: "Size Thief",
  1996. height: math.unit(18, "feet")
  1997. },
  1998. {
  1999. name: "50 Foot Collie",
  2000. height: math.unit(50, "feet")
  2001. },
  2002. {
  2003. name: "Macro",
  2004. height: math.unit(96, "feet"),
  2005. default: true
  2006. },
  2007. {
  2008. name: "Megamerger",
  2009. height: math.unit(650, "feet")
  2010. },
  2011. ]
  2012. ))
  2013. characterMakers.push(() => makeCharacter(
  2014. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2015. {
  2016. front: {
  2017. height: math.unit(7, "feet"),
  2018. weight: math.unit(100, "kg"),
  2019. name: "Front",
  2020. image: {
  2021. source: "./media/characters/march/front.svg",
  2022. extra: 1992/1851,
  2023. bottom: 39/2031
  2024. }
  2025. },
  2026. foot: {
  2027. height: math.unit(0.9, "feet"),
  2028. name: "Foot",
  2029. image: {
  2030. source: "./media/characters/march/foot.svg"
  2031. }
  2032. },
  2033. },
  2034. [
  2035. {
  2036. name: "Normal",
  2037. height: math.unit(7.9, "feet")
  2038. },
  2039. {
  2040. name: "Macro",
  2041. height: math.unit(220, "meters")
  2042. },
  2043. {
  2044. name: "Megamacro",
  2045. height: math.unit(2.98, "km"),
  2046. default: true
  2047. },
  2048. {
  2049. name: "Gigamacro",
  2050. height: math.unit(15963, "km")
  2051. },
  2052. {
  2053. name: "Teramacro",
  2054. height: math.unit(2980000000, "km")
  2055. },
  2056. {
  2057. name: "Examacro",
  2058. height: math.unit(250, "parsecs")
  2059. },
  2060. ]
  2061. ))
  2062. characterMakers.push(() => makeCharacter(
  2063. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2064. {
  2065. front: {
  2066. height: math.unit(6, "feet"),
  2067. weight: math.unit(60, "kg"),
  2068. name: "Front",
  2069. image: {
  2070. source: "./media/characters/noir/front.svg",
  2071. extra: 1,
  2072. bottom: 0.032
  2073. }
  2074. },
  2075. },
  2076. [
  2077. {
  2078. name: "Normal",
  2079. height: math.unit(6.6, "feet")
  2080. },
  2081. {
  2082. name: "Macro",
  2083. height: math.unit(500, "feet")
  2084. },
  2085. {
  2086. name: "Megamacro",
  2087. height: math.unit(2.5, "km"),
  2088. default: true
  2089. },
  2090. {
  2091. name: "Gigamacro",
  2092. height: math.unit(22500, "km")
  2093. },
  2094. {
  2095. name: "Teramacro",
  2096. height: math.unit(2500000000, "km")
  2097. },
  2098. {
  2099. name: "Examacro",
  2100. height: math.unit(200, "parsecs")
  2101. },
  2102. ]
  2103. ))
  2104. characterMakers.push(() => makeCharacter(
  2105. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2106. {
  2107. front: {
  2108. height: math.unit(7, "feet"),
  2109. weight: math.unit(100, "kg"),
  2110. name: "Front",
  2111. image: {
  2112. source: "./media/characters/okuri/front.svg",
  2113. extra: 1,
  2114. bottom: 0.037
  2115. }
  2116. },
  2117. back: {
  2118. height: math.unit(7, "feet"),
  2119. weight: math.unit(100, "kg"),
  2120. name: "Back",
  2121. image: {
  2122. source: "./media/characters/okuri/back.svg",
  2123. extra: 1,
  2124. bottom: 0.007
  2125. }
  2126. },
  2127. },
  2128. [
  2129. {
  2130. name: "Megamacro",
  2131. height: math.unit(100, "miles"),
  2132. default: true
  2133. },
  2134. ]
  2135. ))
  2136. characterMakers.push(() => makeCharacter(
  2137. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2138. {
  2139. front: {
  2140. height: math.unit(7, "feet"),
  2141. weight: math.unit(100, "kg"),
  2142. name: "Front",
  2143. image: {
  2144. source: "./media/characters/manny/front.svg",
  2145. extra: 1,
  2146. bottom: 0.06
  2147. }
  2148. },
  2149. back: {
  2150. height: math.unit(7, "feet"),
  2151. weight: math.unit(100, "kg"),
  2152. name: "Back",
  2153. image: {
  2154. source: "./media/characters/manny/back.svg",
  2155. extra: 1,
  2156. bottom: 0.014
  2157. }
  2158. },
  2159. },
  2160. [
  2161. {
  2162. name: "Normal",
  2163. height: math.unit(7, "feet"),
  2164. },
  2165. {
  2166. name: "Macro",
  2167. height: math.unit(78, "feet"),
  2168. default: true
  2169. },
  2170. {
  2171. name: "Macro+",
  2172. height: math.unit(300, "meters")
  2173. },
  2174. {
  2175. name: "Macro++",
  2176. height: math.unit(2400, "meters")
  2177. },
  2178. {
  2179. name: "Megamacro",
  2180. height: math.unit(5167, "meters")
  2181. },
  2182. {
  2183. name: "Gigamacro",
  2184. height: math.unit(41769, "miles")
  2185. },
  2186. ]
  2187. ))
  2188. characterMakers.push(() => makeCharacter(
  2189. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2190. {
  2191. front: {
  2192. height: math.unit(7, "feet"),
  2193. weight: math.unit(100, "kg"),
  2194. name: "Front",
  2195. image: {
  2196. source: "./media/characters/adake/front-1.svg"
  2197. }
  2198. },
  2199. frontAlt: {
  2200. height: math.unit(7, "feet"),
  2201. weight: math.unit(100, "kg"),
  2202. name: "Front (Alt)",
  2203. image: {
  2204. source: "./media/characters/adake/front-2.svg",
  2205. extra: 1,
  2206. bottom: 0.01
  2207. }
  2208. },
  2209. back: {
  2210. height: math.unit(7, "feet"),
  2211. weight: math.unit(100, "kg"),
  2212. name: "Back",
  2213. image: {
  2214. source: "./media/characters/adake/back.svg",
  2215. }
  2216. },
  2217. kneel: {
  2218. height: math.unit(5.385, "feet"),
  2219. weight: math.unit(100, "kg"),
  2220. name: "Kneeling",
  2221. image: {
  2222. source: "./media/characters/adake/kneel.svg",
  2223. bottom: 0.052
  2224. }
  2225. },
  2226. },
  2227. [
  2228. {
  2229. name: "Normal",
  2230. height: math.unit(7, "feet"),
  2231. },
  2232. {
  2233. name: "Macro",
  2234. height: math.unit(78, "feet"),
  2235. default: true
  2236. },
  2237. {
  2238. name: "Macro+",
  2239. height: math.unit(300, "meters")
  2240. },
  2241. {
  2242. name: "Macro++",
  2243. height: math.unit(2400, "meters")
  2244. },
  2245. {
  2246. name: "Megamacro",
  2247. height: math.unit(5167, "meters")
  2248. },
  2249. {
  2250. name: "Gigamacro",
  2251. height: math.unit(41769, "miles")
  2252. },
  2253. ]
  2254. ))
  2255. characterMakers.push(() => makeCharacter(
  2256. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2257. {
  2258. front: {
  2259. height: math.unit(1.65, "meters"),
  2260. weight: math.unit(50, "kg"),
  2261. name: "Front",
  2262. image: {
  2263. source: "./media/characters/elijah/front.svg",
  2264. extra: 858 / 830,
  2265. bottom: 95.5 / 953.8559
  2266. }
  2267. },
  2268. back: {
  2269. height: math.unit(1.65, "meters"),
  2270. weight: math.unit(50, "kg"),
  2271. name: "Back",
  2272. image: {
  2273. source: "./media/characters/elijah/back.svg",
  2274. extra: 895 / 850,
  2275. bottom: 5.3 / 897.956
  2276. }
  2277. },
  2278. frontNsfw: {
  2279. height: math.unit(1.65, "meters"),
  2280. weight: math.unit(50, "kg"),
  2281. name: "Front (NSFW)",
  2282. image: {
  2283. source: "./media/characters/elijah/front-nsfw.svg",
  2284. extra: 858 / 830,
  2285. bottom: 95.5 / 953.8559
  2286. }
  2287. },
  2288. backNsfw: {
  2289. height: math.unit(1.65, "meters"),
  2290. weight: math.unit(50, "kg"),
  2291. name: "Back (NSFW)",
  2292. image: {
  2293. source: "./media/characters/elijah/back-nsfw.svg",
  2294. extra: 895 / 850,
  2295. bottom: 5.3 / 897.956
  2296. }
  2297. },
  2298. dick: {
  2299. height: math.unit(1, "feet"),
  2300. name: "Dick",
  2301. image: {
  2302. source: "./media/characters/elijah/dick.svg"
  2303. }
  2304. },
  2305. beakOpen: {
  2306. height: math.unit(1.25, "feet"),
  2307. name: "Beak (Open)",
  2308. image: {
  2309. source: "./media/characters/elijah/beak-open.svg"
  2310. }
  2311. },
  2312. beakShut: {
  2313. height: math.unit(1.25, "feet"),
  2314. name: "Beak (Shut)",
  2315. image: {
  2316. source: "./media/characters/elijah/beak-shut.svg"
  2317. }
  2318. },
  2319. footFlexing: {
  2320. height: math.unit(1.61, "feet"),
  2321. name: "Foot (Flexing)",
  2322. image: {
  2323. source: "./media/characters/elijah/foot-flexing.svg"
  2324. }
  2325. },
  2326. footStepping: {
  2327. height: math.unit(1.44, "feet"),
  2328. name: "Foot (Stepping)",
  2329. image: {
  2330. source: "./media/characters/elijah/foot-stepping.svg"
  2331. }
  2332. },
  2333. plantigradeLeg: {
  2334. height: math.unit(2.34, "feet"),
  2335. name: "Plantigrade Leg",
  2336. image: {
  2337. source: "./media/characters/elijah/plantigrade-leg.svg"
  2338. }
  2339. },
  2340. plantigradeFootLeft: {
  2341. height: math.unit(0.9, "feet"),
  2342. name: "Plantigrade Foot (Left)",
  2343. image: {
  2344. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2345. }
  2346. },
  2347. plantigradeFootRight: {
  2348. height: math.unit(0.9, "feet"),
  2349. name: "Plantigrade Foot (Right)",
  2350. image: {
  2351. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2352. }
  2353. },
  2354. },
  2355. [
  2356. {
  2357. name: "Normal",
  2358. height: math.unit(1.65, "meters")
  2359. },
  2360. {
  2361. name: "Macro",
  2362. height: math.unit(55, "meters"),
  2363. default: true
  2364. },
  2365. {
  2366. name: "Macro+",
  2367. height: math.unit(105, "meters")
  2368. },
  2369. ]
  2370. ))
  2371. characterMakers.push(() => makeCharacter(
  2372. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2373. {
  2374. front: {
  2375. height: math.unit(11, "feet"),
  2376. weight: math.unit(320, "kg"),
  2377. name: "Front",
  2378. image: {
  2379. source: "./media/characters/rai/front.svg",
  2380. extra: 1802/1696,
  2381. bottom: 68/1870
  2382. }
  2383. },
  2384. frontDressed: {
  2385. height: math.unit(11, "feet"),
  2386. weight: math.unit(320, "kg"),
  2387. name: "Front (Dressed)",
  2388. image: {
  2389. source: "./media/characters/rai/front-dressed.svg",
  2390. extra: 1802/1696,
  2391. bottom: 68/1870
  2392. }
  2393. },
  2394. side: {
  2395. height: math.unit(11, "feet"),
  2396. weight: math.unit(320, "kg"),
  2397. name: "Side",
  2398. image: {
  2399. source: "./media/characters/rai/side.svg",
  2400. extra: 1789/1710,
  2401. bottom: 115/1904
  2402. }
  2403. },
  2404. back: {
  2405. height: math.unit(11, "feet"),
  2406. weight: math.unit(320, "kg"),
  2407. name: "Back",
  2408. image: {
  2409. source: "./media/characters/rai/back.svg",
  2410. extra: 1770/1707,
  2411. bottom: 28/1798
  2412. }
  2413. },
  2414. feral: {
  2415. height: math.unit(11, "feet"),
  2416. weight: math.unit(640, "kg"),
  2417. name: "Feral",
  2418. image: {
  2419. source: "./media/characters/rai/feral.svg",
  2420. extra: 1035/642,
  2421. bottom: 86/1121
  2422. }
  2423. },
  2424. dragon: {
  2425. height: math.unit(23, "feet"),
  2426. weight: math.unit(50000, "lb"),
  2427. name: "Dragon",
  2428. image: {
  2429. source: "./media/characters/rai/dragon.svg",
  2430. extra: 2498 / 2030,
  2431. bottom: 85.2 / 2584
  2432. }
  2433. },
  2434. maw: {
  2435. height: math.unit(6 / 3.81416, "feet"),
  2436. name: "Maw",
  2437. image: {
  2438. source: "./media/characters/rai/maw.svg"
  2439. }
  2440. },
  2441. },
  2442. [
  2443. {
  2444. name: "Normal",
  2445. height: math.unit(11, "feet")
  2446. },
  2447. {
  2448. name: "Macro",
  2449. height: math.unit(302, "feet"),
  2450. default: true
  2451. },
  2452. ]
  2453. ))
  2454. characterMakers.push(() => makeCharacter(
  2455. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2456. {
  2457. frontDressed: {
  2458. height: math.unit(216, "feet"),
  2459. weight: math.unit(7000000, "lb"),
  2460. name: "Front (Dressed)",
  2461. image: {
  2462. source: "./media/characters/jazzy/front-dressed.svg",
  2463. extra: 2738 / 2651,
  2464. bottom: 41.8 / 2786
  2465. }
  2466. },
  2467. backDressed: {
  2468. height: math.unit(216, "feet"),
  2469. weight: math.unit(7000000, "lb"),
  2470. name: "Back (Dressed)",
  2471. image: {
  2472. source: "./media/characters/jazzy/back-dressed.svg",
  2473. extra: 2775 / 2673,
  2474. bottom: 36.8 / 2817
  2475. }
  2476. },
  2477. front: {
  2478. height: math.unit(216, "feet"),
  2479. weight: math.unit(7000000, "lb"),
  2480. name: "Front",
  2481. image: {
  2482. source: "./media/characters/jazzy/front.svg",
  2483. extra: 2738 / 2651,
  2484. bottom: 41.8 / 2786
  2485. }
  2486. },
  2487. back: {
  2488. height: math.unit(216, "feet"),
  2489. weight: math.unit(7000000, "lb"),
  2490. name: "Back",
  2491. image: {
  2492. source: "./media/characters/jazzy/back.svg",
  2493. extra: 2775 / 2673,
  2494. bottom: 36.8 / 2817
  2495. }
  2496. },
  2497. maw: {
  2498. height: math.unit(20, "feet"),
  2499. name: "Maw",
  2500. image: {
  2501. source: "./media/characters/jazzy/maw.svg"
  2502. }
  2503. },
  2504. paws: {
  2505. height: math.unit(27.5, "feet"),
  2506. name: "Paws",
  2507. image: {
  2508. source: "./media/characters/jazzy/paws.svg"
  2509. }
  2510. },
  2511. eye: {
  2512. height: math.unit(4.4, "feet"),
  2513. name: "Eye",
  2514. image: {
  2515. source: "./media/characters/jazzy/eye.svg"
  2516. }
  2517. },
  2518. droneOffense: {
  2519. height: math.unit(9.5, "inches"),
  2520. name: "Drone (Offense)",
  2521. image: {
  2522. source: "./media/characters/jazzy/drone-offense.svg"
  2523. }
  2524. },
  2525. droneRecon: {
  2526. height: math.unit(9.5, "inches"),
  2527. name: "Drone (Recon)",
  2528. image: {
  2529. source: "./media/characters/jazzy/drone-recon.svg"
  2530. }
  2531. },
  2532. droneDefense: {
  2533. height: math.unit(9.5, "inches"),
  2534. name: "Drone (Defense)",
  2535. image: {
  2536. source: "./media/characters/jazzy/drone-defense.svg"
  2537. }
  2538. },
  2539. },
  2540. [
  2541. {
  2542. name: "Macro",
  2543. height: math.unit(216, "feet"),
  2544. default: true
  2545. },
  2546. ]
  2547. ))
  2548. characterMakers.push(() => makeCharacter(
  2549. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2550. {
  2551. front: {
  2552. height: math.unit(9 + 6/12, "feet"),
  2553. weight: math.unit(700, "lb"),
  2554. name: "Front",
  2555. image: {
  2556. source: "./media/characters/flamm/front.svg",
  2557. extra: 1751/1632,
  2558. bottom: 46/1797
  2559. }
  2560. },
  2561. buff: {
  2562. height: math.unit(9 + 6/12, "feet"),
  2563. weight: math.unit(950, "lb"),
  2564. name: "Buff",
  2565. image: {
  2566. source: "./media/characters/flamm/buff.svg",
  2567. extra: 3018/2874,
  2568. bottom: 221/3239
  2569. }
  2570. },
  2571. },
  2572. [
  2573. {
  2574. name: "Normal",
  2575. height: math.unit(9.5, "feet")
  2576. },
  2577. {
  2578. name: "Macro",
  2579. height: math.unit(200, "feet"),
  2580. default: true
  2581. },
  2582. ]
  2583. ))
  2584. characterMakers.push(() => makeCharacter(
  2585. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2586. {
  2587. front: {
  2588. height: math.unit(5 + 3/12, "feet"),
  2589. weight: math.unit(60, "kg"),
  2590. name: "Front",
  2591. image: {
  2592. source: "./media/characters/zephiro/front.svg",
  2593. extra: 2309 / 2162,
  2594. bottom: 0.069
  2595. }
  2596. },
  2597. side: {
  2598. height: math.unit(5 + 3/12, "feet"),
  2599. weight: math.unit(60, "kg"),
  2600. name: "Side",
  2601. image: {
  2602. source: "./media/characters/zephiro/side.svg",
  2603. extra: 2403 / 2279,
  2604. bottom: 0.015
  2605. }
  2606. },
  2607. back: {
  2608. height: math.unit(5 + 3/12, "feet"),
  2609. weight: math.unit(60, "kg"),
  2610. name: "Back",
  2611. image: {
  2612. source: "./media/characters/zephiro/back.svg",
  2613. extra: 2373 / 2244,
  2614. bottom: 0.013
  2615. }
  2616. },
  2617. hand: {
  2618. height: math.unit(0.68, "feet"),
  2619. name: "Hand",
  2620. image: {
  2621. source: "./media/characters/zephiro/hand.svg"
  2622. }
  2623. },
  2624. paw: {
  2625. height: math.unit(1, "feet"),
  2626. name: "Paw",
  2627. image: {
  2628. source: "./media/characters/zephiro/paw.svg"
  2629. }
  2630. },
  2631. beans: {
  2632. height: math.unit(0.93, "feet"),
  2633. name: "Beans",
  2634. image: {
  2635. source: "./media/characters/zephiro/beans.svg"
  2636. }
  2637. },
  2638. },
  2639. [
  2640. {
  2641. name: "Micro",
  2642. height: math.unit(3, "inches")
  2643. },
  2644. {
  2645. name: "Normal",
  2646. height: math.unit(5 + 3 / 12, "feet"),
  2647. default: true
  2648. },
  2649. {
  2650. name: "Macro",
  2651. height: math.unit(118, "feet")
  2652. },
  2653. ]
  2654. ))
  2655. characterMakers.push(() => makeCharacter(
  2656. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2657. {
  2658. front: {
  2659. height: math.unit(5, "feet"),
  2660. weight: math.unit(90, "kg"),
  2661. name: "Front",
  2662. image: {
  2663. source: "./media/characters/fory/front.svg",
  2664. extra: 2862 / 2674,
  2665. bottom: 180 / 3043.8
  2666. }
  2667. },
  2668. back: {
  2669. height: math.unit(5, "feet"),
  2670. weight: math.unit(90, "kg"),
  2671. name: "Back",
  2672. image: {
  2673. source: "./media/characters/fory/back.svg",
  2674. extra: 2962 / 2791,
  2675. bottom: 106 / 3071.8
  2676. }
  2677. },
  2678. foot: {
  2679. height: math.unit(2.14, "feet"),
  2680. name: "Foot",
  2681. image: {
  2682. source: "./media/characters/fory/foot.svg"
  2683. }
  2684. },
  2685. },
  2686. [
  2687. {
  2688. name: "Normal",
  2689. height: math.unit(5, "feet")
  2690. },
  2691. {
  2692. name: "Macro",
  2693. height: math.unit(50, "feet"),
  2694. default: true
  2695. },
  2696. {
  2697. name: "Megamacro",
  2698. height: math.unit(10, "miles")
  2699. },
  2700. {
  2701. name: "Gigamacro",
  2702. height: math.unit(5, "earths")
  2703. },
  2704. ]
  2705. ))
  2706. characterMakers.push(() => makeCharacter(
  2707. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2708. {
  2709. front: {
  2710. height: math.unit(7, "feet"),
  2711. weight: math.unit(90, "kg"),
  2712. name: "Front",
  2713. image: {
  2714. source: "./media/characters/kurrikage/front.svg",
  2715. extra: 1,
  2716. bottom: 0.035
  2717. }
  2718. },
  2719. back: {
  2720. height: math.unit(7, "feet"),
  2721. weight: math.unit(90, "lb"),
  2722. name: "Back",
  2723. image: {
  2724. source: "./media/characters/kurrikage/back.svg"
  2725. }
  2726. },
  2727. paw: {
  2728. height: math.unit(1.5, "feet"),
  2729. name: "Paw",
  2730. image: {
  2731. source: "./media/characters/kurrikage/paw.svg"
  2732. }
  2733. },
  2734. staff: {
  2735. height: math.unit(6.7, "feet"),
  2736. name: "Staff",
  2737. image: {
  2738. source: "./media/characters/kurrikage/staff.svg"
  2739. }
  2740. },
  2741. peek: {
  2742. height: math.unit(1.05, "feet"),
  2743. name: "Peeking",
  2744. image: {
  2745. source: "./media/characters/kurrikage/peek.svg",
  2746. bottom: 0.08
  2747. }
  2748. },
  2749. },
  2750. [
  2751. {
  2752. name: "Normal",
  2753. height: math.unit(12, "feet"),
  2754. default: true
  2755. },
  2756. {
  2757. name: "Big",
  2758. height: math.unit(20, "feet")
  2759. },
  2760. {
  2761. name: "Macro",
  2762. height: math.unit(500, "feet")
  2763. },
  2764. {
  2765. name: "Megamacro",
  2766. height: math.unit(20, "miles")
  2767. },
  2768. ]
  2769. ))
  2770. characterMakers.push(() => makeCharacter(
  2771. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2772. {
  2773. front: {
  2774. height: math.unit(6, "feet"),
  2775. weight: math.unit(75, "kg"),
  2776. name: "Front",
  2777. image: {
  2778. source: "./media/characters/shingo/front.svg",
  2779. extra: 1900/1825,
  2780. bottom: 82/1982
  2781. }
  2782. },
  2783. side: {
  2784. height: math.unit(6, "feet"),
  2785. weight: math.unit(75, "kg"),
  2786. name: "Side",
  2787. image: {
  2788. source: "./media/characters/shingo/side.svg",
  2789. extra: 1930/1865,
  2790. bottom: 16/1946
  2791. }
  2792. },
  2793. back: {
  2794. height: math.unit(6, "feet"),
  2795. weight: math.unit(75, "kg"),
  2796. name: "Back",
  2797. image: {
  2798. source: "./media/characters/shingo/back.svg",
  2799. extra: 1922/1852,
  2800. bottom: 16/1938
  2801. }
  2802. },
  2803. frontDressed: {
  2804. height: math.unit(6, "feet"),
  2805. weight: math.unit(150, "lb"),
  2806. name: "Front-dressed",
  2807. image: {
  2808. source: "./media/characters/shingo/front-dressed.svg",
  2809. extra: 1900/1825,
  2810. bottom: 82/1982
  2811. }
  2812. },
  2813. paw: {
  2814. height: math.unit(1.29, "feet"),
  2815. name: "Paw",
  2816. image: {
  2817. source: "./media/characters/shingo/paw.svg"
  2818. }
  2819. },
  2820. hand: {
  2821. height: math.unit(1.07, "feet"),
  2822. name: "Hand",
  2823. image: {
  2824. source: "./media/characters/shingo/hand.svg"
  2825. }
  2826. },
  2827. frontAlt: {
  2828. height: math.unit(6, "feet"),
  2829. weight: math.unit(75, "kg"),
  2830. name: "Front (Alt)",
  2831. image: {
  2832. source: "./media/characters/shingo/front-alt.svg",
  2833. extra: 3511 / 3338,
  2834. bottom: 0.005
  2835. }
  2836. },
  2837. frontAlt2: {
  2838. height: math.unit(6, "feet"),
  2839. weight: math.unit(75, "kg"),
  2840. name: "Front (Alt 2)",
  2841. image: {
  2842. source: "./media/characters/shingo/front-alt-2.svg",
  2843. extra: 706/681,
  2844. bottom: 11/717
  2845. }
  2846. },
  2847. pawAlt: {
  2848. height: math.unit(1, "feet"),
  2849. name: "Paw (Alt)",
  2850. image: {
  2851. source: "./media/characters/shingo/paw-alt.svg"
  2852. }
  2853. },
  2854. },
  2855. [
  2856. {
  2857. name: "Micro",
  2858. height: math.unit(4, "inches")
  2859. },
  2860. {
  2861. name: "Normal",
  2862. height: math.unit(6, "feet"),
  2863. default: true
  2864. },
  2865. {
  2866. name: "Macro",
  2867. height: math.unit(108, "feet")
  2868. },
  2869. {
  2870. name: "Macro+",
  2871. height: math.unit(1500, "feet")
  2872. },
  2873. ]
  2874. ))
  2875. characterMakers.push(() => makeCharacter(
  2876. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2877. {
  2878. side: {
  2879. height: math.unit(6, "feet"),
  2880. weight: math.unit(75, "kg"),
  2881. name: "Side",
  2882. image: {
  2883. source: "./media/characters/aigey/side.svg"
  2884. }
  2885. },
  2886. },
  2887. [
  2888. {
  2889. name: "Macro",
  2890. height: math.unit(200, "feet"),
  2891. default: true
  2892. },
  2893. {
  2894. name: "Megamacro",
  2895. height: math.unit(100, "miles")
  2896. },
  2897. ]
  2898. )
  2899. )
  2900. characterMakers.push(() => makeCharacter(
  2901. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2902. {
  2903. front: {
  2904. height: math.unit(5 + 5 / 12, "feet"),
  2905. weight: math.unit(75, "kg"),
  2906. name: "Front",
  2907. image: {
  2908. source: "./media/characters/natasha/front.svg",
  2909. extra: 859 / 824,
  2910. bottom: 23 / 879.6
  2911. }
  2912. },
  2913. frontNsfw: {
  2914. height: math.unit(5 + 5 / 12, "feet"),
  2915. weight: math.unit(75, "kg"),
  2916. name: "Front (NSFW)",
  2917. image: {
  2918. source: "./media/characters/natasha/front-nsfw.svg",
  2919. extra: 859 / 824,
  2920. bottom: 23 / 879.6
  2921. }
  2922. },
  2923. frontErect: {
  2924. height: math.unit(5 + 5 / 12, "feet"),
  2925. weight: math.unit(75, "kg"),
  2926. name: "Front (Erect)",
  2927. image: {
  2928. source: "./media/characters/natasha/front-erect.svg",
  2929. extra: 859 / 824,
  2930. bottom: 23 / 879.6
  2931. }
  2932. },
  2933. back: {
  2934. height: math.unit(5 + 5 / 12, "feet"),
  2935. weight: math.unit(75, "kg"),
  2936. name: "Back",
  2937. image: {
  2938. source: "./media/characters/natasha/back.svg",
  2939. extra: 887.9 / 852.6,
  2940. bottom: 9.7 / 896.4
  2941. }
  2942. },
  2943. backAlt: {
  2944. height: math.unit(5 + 5 / 12, "feet"),
  2945. weight: math.unit(75, "kg"),
  2946. name: "Back (Alt)",
  2947. image: {
  2948. source: "./media/characters/natasha/back-alt.svg",
  2949. extra: 1236.7 / 1192,
  2950. bottom: 22.3 / 1258.2
  2951. }
  2952. },
  2953. dick: {
  2954. height: math.unit(1.772, "feet"),
  2955. name: "Dick",
  2956. image: {
  2957. source: "./media/characters/natasha/dick.svg"
  2958. }
  2959. },
  2960. paw: {
  2961. height: math.unit(0.250, "meters"),
  2962. name: "Paw",
  2963. image: {
  2964. source: "./media/characters/natasha/paw.svg"
  2965. }
  2966. },
  2967. },
  2968. [
  2969. {
  2970. name: "Normal",
  2971. height: math.unit(5 + 5 / 12, "feet")
  2972. },
  2973. {
  2974. name: "Large",
  2975. height: math.unit(12, "feet")
  2976. },
  2977. {
  2978. name: "Macro",
  2979. height: math.unit(100, "feet"),
  2980. default: true
  2981. },
  2982. {
  2983. name: "Macro+",
  2984. height: math.unit(260, "feet")
  2985. },
  2986. {
  2987. name: "Macro++",
  2988. height: math.unit(1, "mile")
  2989. },
  2990. ]
  2991. ))
  2992. characterMakers.push(() => makeCharacter(
  2993. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2994. {
  2995. front: {
  2996. height: math.unit(6, "feet"),
  2997. weight: math.unit(75, "kg"),
  2998. name: "Front",
  2999. image: {
  3000. source: "./media/characters/malik/front.svg"
  3001. }
  3002. },
  3003. side: {
  3004. height: math.unit(6, "feet"),
  3005. weight: math.unit(75, "kg"),
  3006. name: "Side",
  3007. image: {
  3008. source: "./media/characters/malik/side.svg",
  3009. extra: 1.1539
  3010. }
  3011. },
  3012. back: {
  3013. height: math.unit(6, "feet"),
  3014. weight: math.unit(75, "kg"),
  3015. name: "Back",
  3016. image: {
  3017. source: "./media/characters/malik/back.svg"
  3018. }
  3019. },
  3020. },
  3021. [
  3022. {
  3023. name: "Macro",
  3024. height: math.unit(156, "feet"),
  3025. default: true
  3026. },
  3027. {
  3028. name: "Macro+",
  3029. height: math.unit(1188, "feet")
  3030. },
  3031. ]
  3032. ))
  3033. characterMakers.push(() => makeCharacter(
  3034. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3035. {
  3036. front: {
  3037. height: math.unit(6, "feet"),
  3038. weight: math.unit(75, "kg"),
  3039. name: "Front",
  3040. image: {
  3041. source: "./media/characters/sefer/front.svg",
  3042. extra: 848 / 659,
  3043. bottom: 28.3 / 876.442
  3044. }
  3045. },
  3046. back: {
  3047. height: math.unit(6, "feet"),
  3048. weight: math.unit(75, "kg"),
  3049. name: "Back",
  3050. image: {
  3051. source: "./media/characters/sefer/back.svg",
  3052. extra: 864 / 695,
  3053. bottom: 10 / 871
  3054. }
  3055. },
  3056. frontDressed: {
  3057. height: math.unit(6, "feet"),
  3058. weight: math.unit(75, "kg"),
  3059. name: "Front (Dressed)",
  3060. image: {
  3061. source: "./media/characters/sefer/front-dressed.svg",
  3062. extra: 839 / 653,
  3063. bottom: 37.6 / 878
  3064. }
  3065. },
  3066. },
  3067. [
  3068. {
  3069. name: "Normal",
  3070. height: math.unit(6, "feet"),
  3071. default: true
  3072. },
  3073. ]
  3074. ))
  3075. characterMakers.push(() => makeCharacter(
  3076. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3077. {
  3078. body: {
  3079. height: math.unit(2.2428, "meter"),
  3080. weight: math.unit(124.738, "kg"),
  3081. name: "Body",
  3082. image: {
  3083. extra: 1225 / 1050,
  3084. source: "./media/characters/north/front.svg"
  3085. }
  3086. }
  3087. },
  3088. [
  3089. {
  3090. name: "Micro",
  3091. height: math.unit(4, "inches")
  3092. },
  3093. {
  3094. name: "Macro",
  3095. height: math.unit(63, "meters")
  3096. },
  3097. {
  3098. name: "Megamacro",
  3099. height: math.unit(101, "miles"),
  3100. default: true
  3101. }
  3102. ]
  3103. ))
  3104. characterMakers.push(() => makeCharacter(
  3105. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3106. {
  3107. angled: {
  3108. height: math.unit(4, "meter"),
  3109. weight: math.unit(150, "kg"),
  3110. name: "Angled",
  3111. image: {
  3112. source: "./media/characters/talan/angled-sfw.svg",
  3113. bottom: 29 / 3734
  3114. }
  3115. },
  3116. angledNsfw: {
  3117. height: math.unit(4, "meter"),
  3118. weight: math.unit(150, "kg"),
  3119. name: "Angled (NSFW)",
  3120. image: {
  3121. source: "./media/characters/talan/angled-nsfw.svg",
  3122. bottom: 29 / 3734
  3123. }
  3124. },
  3125. frontNsfw: {
  3126. height: math.unit(4, "meter"),
  3127. weight: math.unit(150, "kg"),
  3128. name: "Front (NSFW)",
  3129. image: {
  3130. source: "./media/characters/talan/front-nsfw.svg",
  3131. bottom: 29 / 3734
  3132. }
  3133. },
  3134. sideNsfw: {
  3135. height: math.unit(4, "meter"),
  3136. weight: math.unit(150, "kg"),
  3137. name: "Side (NSFW)",
  3138. image: {
  3139. source: "./media/characters/talan/side-nsfw.svg",
  3140. bottom: 29 / 3734
  3141. }
  3142. },
  3143. back: {
  3144. height: math.unit(4, "meter"),
  3145. weight: math.unit(150, "kg"),
  3146. name: "Back",
  3147. image: {
  3148. source: "./media/characters/talan/back.svg"
  3149. }
  3150. },
  3151. dickBottom: {
  3152. height: math.unit(0.621, "meter"),
  3153. name: "Dick (Bottom)",
  3154. image: {
  3155. source: "./media/characters/talan/dick-bottom.svg"
  3156. }
  3157. },
  3158. dickTop: {
  3159. height: math.unit(0.621, "meter"),
  3160. name: "Dick (Top)",
  3161. image: {
  3162. source: "./media/characters/talan/dick-top.svg"
  3163. }
  3164. },
  3165. dickSide: {
  3166. height: math.unit(0.305, "meter"),
  3167. name: "Dick (Side)",
  3168. image: {
  3169. source: "./media/characters/talan/dick-side.svg"
  3170. }
  3171. },
  3172. dickFront: {
  3173. height: math.unit(0.305, "meter"),
  3174. name: "Dick (Front)",
  3175. image: {
  3176. source: "./media/characters/talan/dick-front.svg"
  3177. }
  3178. },
  3179. },
  3180. [
  3181. {
  3182. name: "Normal",
  3183. height: math.unit(4, "meters")
  3184. },
  3185. {
  3186. name: "Macro",
  3187. height: math.unit(100, "meters")
  3188. },
  3189. {
  3190. name: "Megamacro",
  3191. height: math.unit(2, "miles"),
  3192. default: true
  3193. },
  3194. {
  3195. name: "Gigamacro",
  3196. height: math.unit(5000, "miles")
  3197. },
  3198. {
  3199. name: "Teramacro",
  3200. height: math.unit(100, "parsecs")
  3201. }
  3202. ]
  3203. ))
  3204. characterMakers.push(() => makeCharacter(
  3205. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3206. {
  3207. front: {
  3208. height: math.unit(2, "meter"),
  3209. weight: math.unit(90, "kg"),
  3210. name: "Front",
  3211. image: {
  3212. source: "./media/characters/gael'rathus/front.svg"
  3213. }
  3214. },
  3215. frontAlt: {
  3216. height: math.unit(2, "meter"),
  3217. weight: math.unit(90, "kg"),
  3218. name: "Front (alt)",
  3219. image: {
  3220. source: "./media/characters/gael'rathus/front-alt.svg"
  3221. }
  3222. },
  3223. frontAlt2: {
  3224. height: math.unit(2, "meter"),
  3225. weight: math.unit(90, "kg"),
  3226. name: "Front (alt 2)",
  3227. image: {
  3228. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3229. }
  3230. }
  3231. },
  3232. [
  3233. {
  3234. name: "Normal",
  3235. height: math.unit(9, "feet"),
  3236. default: true
  3237. },
  3238. {
  3239. name: "Large",
  3240. height: math.unit(25, "feet")
  3241. },
  3242. {
  3243. name: "Macro",
  3244. height: math.unit(0.25, "miles")
  3245. },
  3246. {
  3247. name: "Megamacro",
  3248. height: math.unit(10, "miles")
  3249. }
  3250. ]
  3251. ))
  3252. characterMakers.push(() => makeCharacter(
  3253. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3254. {
  3255. side: {
  3256. height: math.unit(2, "meter"),
  3257. weight: math.unit(140, "kg"),
  3258. name: "Side",
  3259. image: {
  3260. source: "./media/characters/sosha/side.svg",
  3261. bottom: 0.042
  3262. }
  3263. },
  3264. },
  3265. [
  3266. {
  3267. name: "Normal",
  3268. height: math.unit(12, "feet"),
  3269. default: true
  3270. }
  3271. ]
  3272. ))
  3273. characterMakers.push(() => makeCharacter(
  3274. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3275. {
  3276. side: {
  3277. height: math.unit(5 + 5 / 12, "feet"),
  3278. weight: math.unit(170, "kg"),
  3279. name: "Side",
  3280. image: {
  3281. source: "./media/characters/runnola/side.svg",
  3282. extra: 741 / 448,
  3283. bottom: 0.05
  3284. }
  3285. },
  3286. },
  3287. [
  3288. {
  3289. name: "Small",
  3290. height: math.unit(3, "feet")
  3291. },
  3292. {
  3293. name: "Normal",
  3294. height: math.unit(5 + 5 / 12, "feet"),
  3295. default: true
  3296. },
  3297. {
  3298. name: "Big",
  3299. height: math.unit(10, "feet")
  3300. },
  3301. ]
  3302. ))
  3303. characterMakers.push(() => makeCharacter(
  3304. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3305. {
  3306. front: {
  3307. height: math.unit(2, "meter"),
  3308. weight: math.unit(50, "kg"),
  3309. name: "Front",
  3310. image: {
  3311. source: "./media/characters/kurribird/front.svg",
  3312. bottom: 0.015
  3313. }
  3314. },
  3315. frontAlt: {
  3316. height: math.unit(1.5, "meter"),
  3317. weight: math.unit(50, "kg"),
  3318. name: "Front (Alt)",
  3319. image: {
  3320. source: "./media/characters/kurribird/front-alt.svg",
  3321. extra: 1.45
  3322. }
  3323. },
  3324. },
  3325. [
  3326. {
  3327. name: "Normal",
  3328. height: math.unit(7, "feet")
  3329. },
  3330. {
  3331. name: "Big",
  3332. height: math.unit(12, "feet"),
  3333. default: true
  3334. },
  3335. {
  3336. name: "Macro",
  3337. height: math.unit(1500, "feet")
  3338. },
  3339. {
  3340. name: "Megamacro",
  3341. height: math.unit(2, "miles")
  3342. }
  3343. ]
  3344. ))
  3345. characterMakers.push(() => makeCharacter(
  3346. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3347. {
  3348. front: {
  3349. height: math.unit(2, "meter"),
  3350. weight: math.unit(80, "kg"),
  3351. name: "Front",
  3352. image: {
  3353. source: "./media/characters/elbial/front.svg",
  3354. extra: 1643 / 1556,
  3355. bottom: 60.2 / 1696
  3356. }
  3357. },
  3358. side: {
  3359. height: math.unit(2, "meter"),
  3360. weight: math.unit(80, "kg"),
  3361. name: "Side",
  3362. image: {
  3363. source: "./media/characters/elbial/side.svg",
  3364. extra: 1630 / 1565,
  3365. bottom: 71.5 / 1697
  3366. }
  3367. },
  3368. back: {
  3369. height: math.unit(2, "meter"),
  3370. weight: math.unit(80, "kg"),
  3371. name: "Back",
  3372. image: {
  3373. source: "./media/characters/elbial/back.svg",
  3374. extra: 1668 / 1595,
  3375. bottom: 5.6 / 1672
  3376. }
  3377. },
  3378. frontDressed: {
  3379. height: math.unit(2, "meter"),
  3380. weight: math.unit(80, "kg"),
  3381. name: "Front (Dressed)",
  3382. image: {
  3383. source: "./media/characters/elbial/front-dressed.svg",
  3384. extra: 1653 / 1584,
  3385. bottom: 57 / 1708
  3386. }
  3387. },
  3388. genitals: {
  3389. height: math.unit(2 / 3.367, "meter"),
  3390. name: "Genitals",
  3391. image: {
  3392. source: "./media/characters/elbial/genitals.svg"
  3393. }
  3394. },
  3395. },
  3396. [
  3397. {
  3398. name: "Large",
  3399. height: math.unit(100, "feet")
  3400. },
  3401. {
  3402. name: "Macro",
  3403. height: math.unit(500, "feet"),
  3404. default: true
  3405. },
  3406. {
  3407. name: "Megamacro",
  3408. height: math.unit(10, "miles")
  3409. },
  3410. {
  3411. name: "Gigamacro",
  3412. height: math.unit(25000, "miles")
  3413. },
  3414. {
  3415. name: "Full-Size",
  3416. height: math.unit(8000000, "gigaparsecs")
  3417. }
  3418. ]
  3419. ))
  3420. characterMakers.push(() => makeCharacter(
  3421. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3422. {
  3423. front: {
  3424. height: math.unit(2, "meter"),
  3425. weight: math.unit(60, "kg"),
  3426. name: "Front",
  3427. image: {
  3428. source: "./media/characters/noah/front.svg"
  3429. }
  3430. },
  3431. talons: {
  3432. height: math.unit(0.315, "meter"),
  3433. name: "Talons",
  3434. image: {
  3435. source: "./media/characters/noah/talons.svg"
  3436. }
  3437. }
  3438. },
  3439. [
  3440. {
  3441. name: "Large",
  3442. height: math.unit(50, "feet")
  3443. },
  3444. {
  3445. name: "Macro",
  3446. height: math.unit(750, "feet"),
  3447. default: true
  3448. },
  3449. {
  3450. name: "Megamacro",
  3451. height: math.unit(50, "miles")
  3452. },
  3453. {
  3454. name: "Gigamacro",
  3455. height: math.unit(100000, "miles")
  3456. },
  3457. {
  3458. name: "Full-Size",
  3459. height: math.unit(3000000000, "miles")
  3460. }
  3461. ]
  3462. ))
  3463. characterMakers.push(() => makeCharacter(
  3464. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3465. {
  3466. front: {
  3467. height: math.unit(2, "meter"),
  3468. weight: math.unit(80, "kg"),
  3469. name: "Front",
  3470. image: {
  3471. source: "./media/characters/natalya/front.svg"
  3472. }
  3473. },
  3474. back: {
  3475. height: math.unit(2, "meter"),
  3476. weight: math.unit(80, "kg"),
  3477. name: "Back",
  3478. image: {
  3479. source: "./media/characters/natalya/back.svg"
  3480. }
  3481. }
  3482. },
  3483. [
  3484. {
  3485. name: "Normal",
  3486. height: math.unit(150, "feet"),
  3487. default: true
  3488. },
  3489. {
  3490. name: "Megamacro",
  3491. height: math.unit(5, "miles")
  3492. },
  3493. {
  3494. name: "Full-Size",
  3495. height: math.unit(600, "kiloparsecs")
  3496. }
  3497. ]
  3498. ))
  3499. characterMakers.push(() => makeCharacter(
  3500. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3501. {
  3502. front: {
  3503. height: math.unit(2, "meter"),
  3504. weight: math.unit(50, "kg"),
  3505. name: "Front",
  3506. image: {
  3507. source: "./media/characters/erestrebah/front.svg",
  3508. extra: 208 / 193,
  3509. bottom: 0.055
  3510. }
  3511. },
  3512. back: {
  3513. height: math.unit(2, "meter"),
  3514. weight: math.unit(50, "kg"),
  3515. name: "Back",
  3516. image: {
  3517. source: "./media/characters/erestrebah/back.svg",
  3518. extra: 1.3
  3519. }
  3520. }
  3521. },
  3522. [
  3523. {
  3524. name: "Normal",
  3525. height: math.unit(10, "feet")
  3526. },
  3527. {
  3528. name: "Large",
  3529. height: math.unit(50, "feet"),
  3530. default: true
  3531. },
  3532. {
  3533. name: "Macro",
  3534. height: math.unit(300, "feet")
  3535. },
  3536. {
  3537. name: "Macro+",
  3538. height: math.unit(750, "feet")
  3539. },
  3540. {
  3541. name: "Megamacro",
  3542. height: math.unit(3, "miles")
  3543. }
  3544. ]
  3545. ))
  3546. characterMakers.push(() => makeCharacter(
  3547. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3548. {
  3549. front: {
  3550. height: math.unit(2, "meter"),
  3551. weight: math.unit(80, "kg"),
  3552. name: "Front",
  3553. image: {
  3554. source: "./media/characters/jennifer/front.svg",
  3555. bottom: 0.11,
  3556. extra: 1.16
  3557. }
  3558. },
  3559. frontAlt: {
  3560. height: math.unit(2, "meter"),
  3561. weight: math.unit(80, "kg"),
  3562. name: "Front (Alt)",
  3563. image: {
  3564. source: "./media/characters/jennifer/front-alt.svg"
  3565. }
  3566. }
  3567. },
  3568. [
  3569. {
  3570. name: "Canon Height",
  3571. height: math.unit(120, "feet"),
  3572. default: true
  3573. },
  3574. {
  3575. name: "Macro+",
  3576. height: math.unit(300, "feet")
  3577. },
  3578. {
  3579. name: "Megamacro",
  3580. height: math.unit(20000, "feet")
  3581. }
  3582. ]
  3583. ))
  3584. characterMakers.push(() => makeCharacter(
  3585. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3586. {
  3587. front: {
  3588. height: math.unit(2, "meter"),
  3589. weight: math.unit(50, "kg"),
  3590. name: "Front",
  3591. image: {
  3592. source: "./media/characters/kalista/front.svg",
  3593. extra: 1947 / 1700,
  3594. bottom: 76.6 / 1412.98
  3595. }
  3596. },
  3597. back: {
  3598. height: math.unit(2, "meter"),
  3599. weight: math.unit(50, "kg"),
  3600. name: "Back",
  3601. image: {
  3602. source: "./media/characters/kalista/back.svg",
  3603. extra: 1366 / 1156,
  3604. bottom: 33.9 / 1362.78
  3605. }
  3606. }
  3607. },
  3608. [
  3609. {
  3610. name: "Uncomfortably Small",
  3611. height: math.unit(10, "feet")
  3612. },
  3613. {
  3614. name: "Small",
  3615. height: math.unit(30, "feet")
  3616. },
  3617. {
  3618. name: "Macro",
  3619. height: math.unit(100, "feet"),
  3620. default: true
  3621. },
  3622. {
  3623. name: "Macro+",
  3624. height: math.unit(2000, "feet")
  3625. },
  3626. {
  3627. name: "True Form",
  3628. height: math.unit(8924, "miles")
  3629. }
  3630. ]
  3631. ))
  3632. characterMakers.push(() => makeCharacter(
  3633. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3634. {
  3635. front: {
  3636. height: math.unit(2, "meter"),
  3637. weight: math.unit(120, "kg"),
  3638. name: "Front",
  3639. image: {
  3640. source: "./media/characters/ggv/front.svg"
  3641. }
  3642. },
  3643. side: {
  3644. height: math.unit(2, "meter"),
  3645. weight: math.unit(120, "kg"),
  3646. name: "Side",
  3647. image: {
  3648. source: "./media/characters/ggv/side.svg"
  3649. }
  3650. }
  3651. },
  3652. [
  3653. {
  3654. name: "Extremely Puny",
  3655. height: math.unit(9 + 5 / 12, "feet")
  3656. },
  3657. {
  3658. name: "Horribly Small",
  3659. height: math.unit(47.7, "miles"),
  3660. default: true
  3661. },
  3662. {
  3663. name: "Reasonably Sized",
  3664. height: math.unit(25000, "parsecs")
  3665. },
  3666. {
  3667. name: "Slightly Uncompressed",
  3668. height: math.unit(7.77e31, "parsecs")
  3669. },
  3670. {
  3671. name: "Omniversal",
  3672. height: math.unit(1e300, "meters")
  3673. },
  3674. ]
  3675. ))
  3676. characterMakers.push(() => makeCharacter(
  3677. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3678. {
  3679. front: {
  3680. height: math.unit(2, "meter"),
  3681. weight: math.unit(75, "lb"),
  3682. name: "Front",
  3683. image: {
  3684. source: "./media/characters/napalm/front.svg"
  3685. }
  3686. },
  3687. back: {
  3688. height: math.unit(2, "meter"),
  3689. weight: math.unit(75, "lb"),
  3690. name: "Back",
  3691. image: {
  3692. source: "./media/characters/napalm/back.svg"
  3693. }
  3694. }
  3695. },
  3696. [
  3697. {
  3698. name: "Standard",
  3699. height: math.unit(55, "feet"),
  3700. default: true
  3701. }
  3702. ]
  3703. ))
  3704. characterMakers.push(() => makeCharacter(
  3705. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3706. {
  3707. front: {
  3708. height: math.unit(7 + 5 / 6, "feet"),
  3709. weight: math.unit(325, "lb"),
  3710. name: "Front",
  3711. image: {
  3712. source: "./media/characters/asana/front.svg",
  3713. extra: 1133 / 1060,
  3714. bottom: 15.2 / 1148.6
  3715. }
  3716. },
  3717. back: {
  3718. height: math.unit(7 + 5 / 6, "feet"),
  3719. weight: math.unit(325, "lb"),
  3720. name: "Back",
  3721. image: {
  3722. source: "./media/characters/asana/back.svg",
  3723. extra: 1114 / 1043,
  3724. bottom: 5 / 1120
  3725. }
  3726. },
  3727. dressedDark: {
  3728. height: math.unit(7 + 5 / 6, "feet"),
  3729. weight: math.unit(325, "lb"),
  3730. name: "Dressed (Dark)",
  3731. image: {
  3732. source: "./media/characters/asana/dressed-dark.svg",
  3733. extra: 1133 / 1060,
  3734. bottom: 15.2 / 1148.6
  3735. }
  3736. },
  3737. dressedLight: {
  3738. height: math.unit(7 + 5 / 6, "feet"),
  3739. weight: math.unit(325, "lb"),
  3740. name: "Dressed (Light)",
  3741. image: {
  3742. source: "./media/characters/asana/dressed-light.svg",
  3743. extra: 1133 / 1060,
  3744. bottom: 15.2 / 1148.6
  3745. }
  3746. },
  3747. },
  3748. [
  3749. {
  3750. name: "Standard",
  3751. height: math.unit(7 + 5 / 6, "feet"),
  3752. default: true
  3753. },
  3754. {
  3755. name: "Large",
  3756. height: math.unit(10, "meters")
  3757. },
  3758. {
  3759. name: "Macro",
  3760. height: math.unit(2500, "meters")
  3761. },
  3762. {
  3763. name: "Megamacro",
  3764. height: math.unit(5e6, "meters")
  3765. },
  3766. {
  3767. name: "Examacro",
  3768. height: math.unit(5e12, "lightyears")
  3769. },
  3770. {
  3771. name: "Max Size",
  3772. height: math.unit(1e31, "lightyears")
  3773. }
  3774. ]
  3775. ))
  3776. characterMakers.push(() => makeCharacter(
  3777. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3778. {
  3779. front: {
  3780. height: math.unit(2, "meter"),
  3781. weight: math.unit(60, "kg"),
  3782. name: "Front",
  3783. image: {
  3784. source: "./media/characters/ebony/front.svg",
  3785. bottom: 0.03,
  3786. extra: 1045 / 810 + 0.03
  3787. }
  3788. },
  3789. side: {
  3790. height: math.unit(2, "meter"),
  3791. weight: math.unit(60, "kg"),
  3792. name: "Side",
  3793. image: {
  3794. source: "./media/characters/ebony/side.svg",
  3795. bottom: 0.03,
  3796. extra: 1045 / 810 + 0.03
  3797. }
  3798. },
  3799. back: {
  3800. height: math.unit(2, "meter"),
  3801. weight: math.unit(60, "kg"),
  3802. name: "Back",
  3803. image: {
  3804. source: "./media/characters/ebony/back.svg",
  3805. bottom: 0.01,
  3806. extra: 1045 / 810 + 0.01
  3807. }
  3808. },
  3809. },
  3810. [
  3811. // TODO check why I did this lol
  3812. {
  3813. name: "Standard",
  3814. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3815. default: true
  3816. },
  3817. {
  3818. name: "Macro",
  3819. height: math.unit(200, "feet")
  3820. },
  3821. {
  3822. name: "Gigamacro",
  3823. height: math.unit(13000, "km")
  3824. }
  3825. ]
  3826. ))
  3827. characterMakers.push(() => makeCharacter(
  3828. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3829. {
  3830. front: {
  3831. height: math.unit(6, "feet"),
  3832. weight: math.unit(175, "lb"),
  3833. name: "Front",
  3834. image: {
  3835. source: "./media/characters/mountain/front.svg",
  3836. extra: 972 / 955,
  3837. bottom: 64 / 1036.6
  3838. }
  3839. },
  3840. back: {
  3841. height: math.unit(6, "feet"),
  3842. weight: math.unit(175, "lb"),
  3843. name: "Back",
  3844. image: {
  3845. source: "./media/characters/mountain/back.svg",
  3846. extra: 970 / 950,
  3847. bottom: 28.25 / 999
  3848. }
  3849. },
  3850. },
  3851. [
  3852. {
  3853. name: "Large",
  3854. height: math.unit(20, "meters")
  3855. },
  3856. {
  3857. name: "Macro",
  3858. height: math.unit(300, "meters")
  3859. },
  3860. {
  3861. name: "Gigamacro",
  3862. height: math.unit(10000, "km"),
  3863. default: true
  3864. },
  3865. {
  3866. name: "Examacro",
  3867. height: math.unit(10e9, "lightyears")
  3868. }
  3869. ]
  3870. ))
  3871. characterMakers.push(() => makeCharacter(
  3872. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3873. {
  3874. front: {
  3875. height: math.unit(8, "feet"),
  3876. weight: math.unit(500, "lb"),
  3877. name: "Front",
  3878. image: {
  3879. source: "./media/characters/rick/front.svg"
  3880. }
  3881. }
  3882. },
  3883. [
  3884. {
  3885. name: "Normal",
  3886. height: math.unit(8, "feet"),
  3887. default: true
  3888. },
  3889. {
  3890. name: "Macro",
  3891. height: math.unit(5, "km")
  3892. }
  3893. ]
  3894. ))
  3895. characterMakers.push(() => makeCharacter(
  3896. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3897. {
  3898. front: {
  3899. height: math.unit(8, "feet"),
  3900. weight: math.unit(120, "lb"),
  3901. name: "Front",
  3902. image: {
  3903. source: "./media/characters/ona/front.svg"
  3904. }
  3905. },
  3906. frontAlt: {
  3907. height: math.unit(8, "feet"),
  3908. weight: math.unit(120, "lb"),
  3909. name: "Front (Alt)",
  3910. image: {
  3911. source: "./media/characters/ona/front-alt.svg"
  3912. }
  3913. },
  3914. back: {
  3915. height: math.unit(8, "feet"),
  3916. weight: math.unit(120, "lb"),
  3917. name: "Back",
  3918. image: {
  3919. source: "./media/characters/ona/back.svg"
  3920. }
  3921. },
  3922. foot: {
  3923. height: math.unit(1.1, "feet"),
  3924. name: "Foot",
  3925. image: {
  3926. source: "./media/characters/ona/foot.svg"
  3927. }
  3928. }
  3929. },
  3930. [
  3931. {
  3932. name: "Megamacro",
  3933. height: math.unit(70, "km"),
  3934. default: true
  3935. },
  3936. {
  3937. name: "Gigamacro",
  3938. height: math.unit(681818, "miles")
  3939. },
  3940. {
  3941. name: "Examacro",
  3942. height: math.unit(3800000, "lightyears")
  3943. },
  3944. ]
  3945. ))
  3946. characterMakers.push(() => makeCharacter(
  3947. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3948. {
  3949. front: {
  3950. height: math.unit(12, "feet"),
  3951. weight: math.unit(3000, "lb"),
  3952. name: "Front",
  3953. image: {
  3954. source: "./media/characters/mech/front.svg",
  3955. extra: 2900 / 2770,
  3956. bottom: 110 / 3010
  3957. }
  3958. },
  3959. back: {
  3960. height: math.unit(12, "feet"),
  3961. weight: math.unit(3000, "lb"),
  3962. name: "Back",
  3963. image: {
  3964. source: "./media/characters/mech/back.svg",
  3965. extra: 3011 / 2890,
  3966. bottom: 94 / 3105
  3967. }
  3968. },
  3969. maw: {
  3970. height: math.unit(3.07, "feet"),
  3971. name: "Maw",
  3972. image: {
  3973. source: "./media/characters/mech/maw.svg"
  3974. }
  3975. },
  3976. head: {
  3977. height: math.unit(2.82, "feet"),
  3978. name: "Head",
  3979. image: {
  3980. source: "./media/characters/mech/head.svg"
  3981. }
  3982. },
  3983. dick: {
  3984. height: math.unit(1.43, "feet"),
  3985. name: "Dick",
  3986. image: {
  3987. source: "./media/characters/mech/dick.svg"
  3988. }
  3989. },
  3990. },
  3991. [
  3992. {
  3993. name: "Normal",
  3994. height: math.unit(12, "feet")
  3995. },
  3996. {
  3997. name: "Macro",
  3998. height: math.unit(300, "feet"),
  3999. default: true
  4000. },
  4001. {
  4002. name: "Macro+",
  4003. height: math.unit(1500, "feet")
  4004. },
  4005. ]
  4006. ))
  4007. characterMakers.push(() => makeCharacter(
  4008. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4009. {
  4010. front: {
  4011. height: math.unit(1.3, "meter"),
  4012. weight: math.unit(30, "kg"),
  4013. name: "Front",
  4014. image: {
  4015. source: "./media/characters/gregory/front.svg",
  4016. }
  4017. }
  4018. },
  4019. [
  4020. {
  4021. name: "Normal",
  4022. height: math.unit(1.3, "meter"),
  4023. default: true
  4024. },
  4025. {
  4026. name: "Macro",
  4027. height: math.unit(20, "meter")
  4028. }
  4029. ]
  4030. ))
  4031. characterMakers.push(() => makeCharacter(
  4032. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4033. {
  4034. front: {
  4035. height: math.unit(2.8, "meter"),
  4036. weight: math.unit(200, "kg"),
  4037. name: "Front",
  4038. image: {
  4039. source: "./media/characters/elory/front.svg",
  4040. }
  4041. }
  4042. },
  4043. [
  4044. {
  4045. name: "Normal",
  4046. height: math.unit(2.8, "meter"),
  4047. default: true
  4048. },
  4049. {
  4050. name: "Macro",
  4051. height: math.unit(38, "meter")
  4052. }
  4053. ]
  4054. ))
  4055. characterMakers.push(() => makeCharacter(
  4056. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4057. {
  4058. front: {
  4059. height: math.unit(470, "feet"),
  4060. weight: math.unit(924, "tons"),
  4061. name: "Front",
  4062. image: {
  4063. source: "./media/characters/angelpatamon/front.svg",
  4064. }
  4065. }
  4066. },
  4067. [
  4068. {
  4069. name: "Normal",
  4070. height: math.unit(470, "feet"),
  4071. default: true
  4072. },
  4073. {
  4074. name: "Deity Size I",
  4075. height: math.unit(28651.2, "km")
  4076. },
  4077. {
  4078. name: "Deity Size II",
  4079. height: math.unit(171907.2, "km")
  4080. }
  4081. ]
  4082. ))
  4083. characterMakers.push(() => makeCharacter(
  4084. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4085. {
  4086. side: {
  4087. height: math.unit(7.2, "meter"),
  4088. weight: math.unit(8.2, "tons"),
  4089. name: "Side",
  4090. image: {
  4091. source: "./media/characters/cryae/side.svg",
  4092. extra: 3500 / 1500
  4093. }
  4094. }
  4095. },
  4096. [
  4097. {
  4098. name: "Normal",
  4099. height: math.unit(7.2, "meter"),
  4100. default: true
  4101. }
  4102. ]
  4103. ))
  4104. characterMakers.push(() => makeCharacter(
  4105. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4106. {
  4107. front: {
  4108. height: math.unit(6, "feet"),
  4109. weight: math.unit(175, "lb"),
  4110. name: "Front",
  4111. image: {
  4112. source: "./media/characters/xera/front.svg",
  4113. extra: 2377 / 1972,
  4114. bottom: 75.5 / 2452
  4115. }
  4116. },
  4117. side: {
  4118. height: math.unit(6, "feet"),
  4119. weight: math.unit(175, "lb"),
  4120. name: "Side",
  4121. image: {
  4122. source: "./media/characters/xera/side.svg",
  4123. extra: 2345 / 2019,
  4124. bottom: 39.7 / 2384
  4125. }
  4126. },
  4127. back: {
  4128. height: math.unit(6, "feet"),
  4129. weight: math.unit(175, "lb"),
  4130. name: "Back",
  4131. image: {
  4132. source: "./media/characters/xera/back.svg",
  4133. extra: 2095 / 1984,
  4134. bottom: 67 / 2166
  4135. }
  4136. },
  4137. },
  4138. [
  4139. {
  4140. name: "Small",
  4141. height: math.unit(10, "feet")
  4142. },
  4143. {
  4144. name: "Macro",
  4145. height: math.unit(500, "meters"),
  4146. default: true
  4147. },
  4148. {
  4149. name: "Macro+",
  4150. height: math.unit(10, "km")
  4151. },
  4152. {
  4153. name: "Gigamacro",
  4154. height: math.unit(25000, "km")
  4155. },
  4156. {
  4157. name: "Teramacro",
  4158. height: math.unit(3e6, "km")
  4159. }
  4160. ]
  4161. ))
  4162. characterMakers.push(() => makeCharacter(
  4163. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4164. {
  4165. front: {
  4166. height: math.unit(6, "feet"),
  4167. weight: math.unit(175, "lb"),
  4168. name: "Front",
  4169. image: {
  4170. source: "./media/characters/nebula/front.svg",
  4171. extra: 2566 / 2362,
  4172. bottom: 81 / 2644
  4173. }
  4174. }
  4175. },
  4176. [
  4177. {
  4178. name: "Small",
  4179. height: math.unit(4.5, "meters")
  4180. },
  4181. {
  4182. name: "Macro",
  4183. height: math.unit(1500, "meters"),
  4184. default: true
  4185. },
  4186. {
  4187. name: "Megamacro",
  4188. height: math.unit(150, "km")
  4189. },
  4190. {
  4191. name: "Gigamacro",
  4192. height: math.unit(27000, "km")
  4193. }
  4194. ]
  4195. ))
  4196. characterMakers.push(() => makeCharacter(
  4197. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4198. {
  4199. front: {
  4200. height: math.unit(6, "feet"),
  4201. weight: math.unit(225, "lb"),
  4202. name: "Front",
  4203. image: {
  4204. source: "./media/characters/abysgar/front.svg"
  4205. }
  4206. }
  4207. },
  4208. [
  4209. {
  4210. name: "Small",
  4211. height: math.unit(4.5, "meters")
  4212. },
  4213. {
  4214. name: "Macro",
  4215. height: math.unit(1250, "meters"),
  4216. default: true
  4217. },
  4218. {
  4219. name: "Megamacro",
  4220. height: math.unit(125, "km")
  4221. },
  4222. {
  4223. name: "Gigamacro",
  4224. height: math.unit(26000, "km")
  4225. }
  4226. ]
  4227. ))
  4228. characterMakers.push(() => makeCharacter(
  4229. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4230. {
  4231. front: {
  4232. height: math.unit(6, "feet"),
  4233. weight: math.unit(180, "lb"),
  4234. name: "Front",
  4235. image: {
  4236. source: "./media/characters/yakuz/front.svg"
  4237. }
  4238. }
  4239. },
  4240. [
  4241. {
  4242. name: "Small",
  4243. height: math.unit(5, "meters")
  4244. },
  4245. {
  4246. name: "Macro",
  4247. height: math.unit(1500, "meters"),
  4248. default: true
  4249. },
  4250. {
  4251. name: "Megamacro",
  4252. height: math.unit(200, "km")
  4253. },
  4254. {
  4255. name: "Gigamacro",
  4256. height: math.unit(100000, "km")
  4257. }
  4258. ]
  4259. ))
  4260. characterMakers.push(() => makeCharacter(
  4261. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4262. {
  4263. front: {
  4264. height: math.unit(6, "feet"),
  4265. weight: math.unit(175, "lb"),
  4266. name: "Front",
  4267. image: {
  4268. source: "./media/characters/mirova/front.svg",
  4269. extra: 3334 / 3071,
  4270. bottom: 42 / 3375.6
  4271. }
  4272. }
  4273. },
  4274. [
  4275. {
  4276. name: "Small",
  4277. height: math.unit(5, "meters")
  4278. },
  4279. {
  4280. name: "Macro",
  4281. height: math.unit(900, "meters"),
  4282. default: true
  4283. },
  4284. {
  4285. name: "Megamacro",
  4286. height: math.unit(135, "km")
  4287. },
  4288. {
  4289. name: "Gigamacro",
  4290. height: math.unit(20000, "km")
  4291. }
  4292. ]
  4293. ))
  4294. characterMakers.push(() => makeCharacter(
  4295. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4296. {
  4297. side: {
  4298. height: math.unit(28.35, "feet"),
  4299. weight: math.unit(99.75, "tons"),
  4300. name: "Side",
  4301. image: {
  4302. source: "./media/characters/asana-mech/side.svg",
  4303. extra: 923 / 699,
  4304. bottom: 50 / 975
  4305. }
  4306. },
  4307. chaingun: {
  4308. height: math.unit(7, "feet"),
  4309. weight: math.unit(2400, "lb"),
  4310. name: "Chaingun",
  4311. image: {
  4312. source: "./media/characters/asana-mech/chaingun.svg"
  4313. }
  4314. },
  4315. laser: {
  4316. height: math.unit(7.12, "feet"),
  4317. weight: math.unit(2000, "lb"),
  4318. name: "Laser",
  4319. image: {
  4320. source: "./media/characters/asana-mech/laser.svg"
  4321. }
  4322. },
  4323. },
  4324. [
  4325. {
  4326. name: "Normal",
  4327. height: math.unit(28.35, "feet"),
  4328. default: true
  4329. },
  4330. {
  4331. name: "Macro",
  4332. height: math.unit(2500, "feet")
  4333. },
  4334. {
  4335. name: "Megamacro",
  4336. height: math.unit(25, "miles")
  4337. },
  4338. {
  4339. name: "Examacro",
  4340. height: math.unit(6e8, "lightyears")
  4341. },
  4342. ]
  4343. ))
  4344. characterMakers.push(() => makeCharacter(
  4345. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4346. {
  4347. front: {
  4348. height: math.unit(5, "meters"),
  4349. weight: math.unit(1000, "kg"),
  4350. name: "Front",
  4351. image: {
  4352. source: "./media/characters/asche/front.svg",
  4353. extra: 1258 / 1190,
  4354. bottom: 47 / 1305
  4355. }
  4356. },
  4357. frontUnderwear: {
  4358. height: math.unit(5, "meters"),
  4359. weight: math.unit(1000, "kg"),
  4360. name: "Front (Underwear)",
  4361. image: {
  4362. source: "./media/characters/asche/front-underwear.svg",
  4363. extra: 1258 / 1190,
  4364. bottom: 47 / 1305
  4365. }
  4366. },
  4367. frontDressed: {
  4368. height: math.unit(5, "meters"),
  4369. weight: math.unit(1000, "kg"),
  4370. name: "Front (Dressed)",
  4371. image: {
  4372. source: "./media/characters/asche/front-dressed.svg",
  4373. extra: 1258 / 1190,
  4374. bottom: 47 / 1305
  4375. }
  4376. },
  4377. frontArmor: {
  4378. height: math.unit(5, "meters"),
  4379. weight: math.unit(1000, "kg"),
  4380. name: "Front (Armored)",
  4381. image: {
  4382. source: "./media/characters/asche/front-armored.svg",
  4383. extra: 1374 / 1308,
  4384. bottom: 23 / 1397
  4385. }
  4386. },
  4387. mp724: {
  4388. height: math.unit(0.96, "meters"),
  4389. weight: math.unit(38, "kg"),
  4390. name: "H&K MP724",
  4391. image: {
  4392. source: "./media/characters/asche/h&k-mp724.svg"
  4393. }
  4394. },
  4395. side: {
  4396. height: math.unit(5, "meters"),
  4397. weight: math.unit(1000, "kg"),
  4398. name: "Side",
  4399. image: {
  4400. source: "./media/characters/asche/side.svg",
  4401. extra: 1717 / 1609,
  4402. bottom: 0.005
  4403. }
  4404. },
  4405. back: {
  4406. height: math.unit(5, "meters"),
  4407. weight: math.unit(1000, "kg"),
  4408. name: "Back",
  4409. image: {
  4410. source: "./media/characters/asche/back.svg",
  4411. extra: 1570 / 1501
  4412. }
  4413. },
  4414. },
  4415. [
  4416. {
  4417. name: "DEFCON 5",
  4418. height: math.unit(5, "meters")
  4419. },
  4420. {
  4421. name: "DEFCON 4",
  4422. height: math.unit(500, "meters"),
  4423. default: true
  4424. },
  4425. {
  4426. name: "DEFCON 3",
  4427. height: math.unit(5, "km")
  4428. },
  4429. {
  4430. name: "DEFCON 2",
  4431. height: math.unit(500, "km")
  4432. },
  4433. {
  4434. name: "DEFCON 1",
  4435. height: math.unit(500000, "km")
  4436. },
  4437. {
  4438. name: "DEFCON 0",
  4439. height: math.unit(3, "gigaparsecs")
  4440. },
  4441. ]
  4442. ))
  4443. characterMakers.push(() => makeCharacter(
  4444. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4445. {
  4446. front: {
  4447. height: math.unit(2, "meters"),
  4448. weight: math.unit(76, "kg"),
  4449. name: "Front",
  4450. image: {
  4451. source: "./media/characters/gale/front.svg"
  4452. }
  4453. },
  4454. frontAlt1: {
  4455. height: math.unit(2, "meters"),
  4456. weight: math.unit(76, "kg"),
  4457. name: "Front (Alt 1)",
  4458. image: {
  4459. source: "./media/characters/gale/front-alt-1.svg"
  4460. }
  4461. },
  4462. frontAlt2: {
  4463. height: math.unit(2, "meters"),
  4464. weight: math.unit(76, "kg"),
  4465. name: "Front (Alt 2)",
  4466. image: {
  4467. source: "./media/characters/gale/front-alt-2.svg"
  4468. }
  4469. },
  4470. },
  4471. [
  4472. {
  4473. name: "Normal",
  4474. height: math.unit(7, "feet")
  4475. },
  4476. {
  4477. name: "Macro",
  4478. height: math.unit(150, "feet"),
  4479. default: true
  4480. },
  4481. {
  4482. name: "Macro+",
  4483. height: math.unit(300, "feet")
  4484. },
  4485. ]
  4486. ))
  4487. characterMakers.push(() => makeCharacter(
  4488. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4489. {
  4490. front: {
  4491. height: math.unit(2, "meters"),
  4492. weight: math.unit(76, "kg"),
  4493. name: "Front",
  4494. image: {
  4495. source: "./media/characters/draylen/front.svg"
  4496. }
  4497. }
  4498. },
  4499. [
  4500. {
  4501. name: "Macro",
  4502. height: math.unit(150, "feet"),
  4503. default: true
  4504. }
  4505. ]
  4506. ))
  4507. characterMakers.push(() => makeCharacter(
  4508. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4509. {
  4510. front: {
  4511. height: math.unit(7 + 9 / 12, "feet"),
  4512. weight: math.unit(379, "lbs"),
  4513. name: "Front",
  4514. image: {
  4515. source: "./media/characters/chez/front.svg"
  4516. }
  4517. },
  4518. side: {
  4519. height: math.unit(7 + 9 / 12, "feet"),
  4520. weight: math.unit(379, "lbs"),
  4521. name: "Side",
  4522. image: {
  4523. source: "./media/characters/chez/side.svg"
  4524. }
  4525. }
  4526. },
  4527. [
  4528. {
  4529. name: "Normal",
  4530. height: math.unit(7 + 9 / 12, "feet"),
  4531. default: true
  4532. },
  4533. {
  4534. name: "God King",
  4535. height: math.unit(9750000, "meters")
  4536. }
  4537. ]
  4538. ))
  4539. characterMakers.push(() => makeCharacter(
  4540. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4541. {
  4542. front: {
  4543. height: math.unit(6, "feet"),
  4544. weight: math.unit(275, "lbs"),
  4545. name: "Front",
  4546. image: {
  4547. source: "./media/characters/kaylum/front.svg",
  4548. bottom: 0.01,
  4549. extra: 1166 / 1031
  4550. }
  4551. },
  4552. frontWingless: {
  4553. height: math.unit(6, "feet"),
  4554. weight: math.unit(275, "lbs"),
  4555. name: "Front (Wingless)",
  4556. image: {
  4557. source: "./media/characters/kaylum/front-wingless.svg",
  4558. bottom: 0.01,
  4559. extra: 1117 / 1031
  4560. }
  4561. }
  4562. },
  4563. [
  4564. {
  4565. name: "Normal",
  4566. height: math.unit(3.05, "meters")
  4567. },
  4568. {
  4569. name: "Master",
  4570. height: math.unit(5.5, "meters")
  4571. },
  4572. {
  4573. name: "Rampage",
  4574. height: math.unit(19, "meters")
  4575. },
  4576. {
  4577. name: "Macro Lite",
  4578. height: math.unit(37, "meters")
  4579. },
  4580. {
  4581. name: "Hyper Predator",
  4582. height: math.unit(61, "meters")
  4583. },
  4584. {
  4585. name: "Macro",
  4586. height: math.unit(138, "meters"),
  4587. default: true
  4588. }
  4589. ]
  4590. ))
  4591. characterMakers.push(() => makeCharacter(
  4592. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4593. {
  4594. front: {
  4595. height: math.unit(6, "feet"),
  4596. weight: math.unit(150, "lbs"),
  4597. name: "Front",
  4598. image: {
  4599. source: "./media/characters/geta/front.svg"
  4600. }
  4601. }
  4602. },
  4603. [
  4604. {
  4605. name: "Micro",
  4606. height: math.unit(3, "inches"),
  4607. default: true
  4608. },
  4609. {
  4610. name: "Normal",
  4611. height: math.unit(5 + 5 / 12, "feet")
  4612. }
  4613. ]
  4614. ))
  4615. characterMakers.push(() => makeCharacter(
  4616. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4617. {
  4618. front: {
  4619. height: math.unit(6, "feet"),
  4620. weight: math.unit(300, "lbs"),
  4621. name: "Front",
  4622. image: {
  4623. source: "./media/characters/tyrnn/front.svg"
  4624. }
  4625. }
  4626. },
  4627. [
  4628. {
  4629. name: "Main Height",
  4630. height: math.unit(355, "feet"),
  4631. default: true
  4632. },
  4633. {
  4634. name: "Fave. Height",
  4635. height: math.unit(2400, "feet")
  4636. }
  4637. ]
  4638. ))
  4639. characterMakers.push(() => makeCharacter(
  4640. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4641. {
  4642. front: {
  4643. height: math.unit(6, "feet"),
  4644. weight: math.unit(300, "lbs"),
  4645. name: "Front",
  4646. image: {
  4647. source: "./media/characters/appledectomy/front.svg"
  4648. }
  4649. }
  4650. },
  4651. [
  4652. {
  4653. name: "Macro",
  4654. height: math.unit(2500, "feet")
  4655. },
  4656. {
  4657. name: "Megamacro",
  4658. height: math.unit(50, "miles"),
  4659. default: true
  4660. },
  4661. {
  4662. name: "Gigamacro",
  4663. height: math.unit(5000, "miles")
  4664. },
  4665. {
  4666. name: "Teramacro",
  4667. height: math.unit(250000, "miles")
  4668. },
  4669. ]
  4670. ))
  4671. characterMakers.push(() => makeCharacter(
  4672. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4673. {
  4674. front: {
  4675. height: math.unit(6, "feet"),
  4676. weight: math.unit(200, "lbs"),
  4677. name: "Front",
  4678. image: {
  4679. source: "./media/characters/vulpes/front.svg",
  4680. extra: 573 / 543,
  4681. bottom: 0.033
  4682. }
  4683. },
  4684. side: {
  4685. height: math.unit(6, "feet"),
  4686. weight: math.unit(200, "lbs"),
  4687. name: "Side",
  4688. image: {
  4689. source: "./media/characters/vulpes/side.svg",
  4690. extra: 577 / 549,
  4691. bottom: 11 / 588
  4692. }
  4693. },
  4694. back: {
  4695. height: math.unit(6, "feet"),
  4696. weight: math.unit(200, "lbs"),
  4697. name: "Back",
  4698. image: {
  4699. source: "./media/characters/vulpes/back.svg",
  4700. extra: 573 / 549,
  4701. bottom: 20 / 593
  4702. }
  4703. },
  4704. feet: {
  4705. height: math.unit(1.276, "feet"),
  4706. name: "Feet",
  4707. image: {
  4708. source: "./media/characters/vulpes/feet.svg"
  4709. }
  4710. },
  4711. maw: {
  4712. height: math.unit(1.18, "feet"),
  4713. name: "Maw",
  4714. image: {
  4715. source: "./media/characters/vulpes/maw.svg"
  4716. }
  4717. },
  4718. },
  4719. [
  4720. {
  4721. name: "Micro",
  4722. height: math.unit(2, "inches")
  4723. },
  4724. {
  4725. name: "Normal",
  4726. height: math.unit(6.3, "feet")
  4727. },
  4728. {
  4729. name: "Macro",
  4730. height: math.unit(850, "feet")
  4731. },
  4732. {
  4733. name: "Megamacro",
  4734. height: math.unit(7500, "feet"),
  4735. default: true
  4736. },
  4737. {
  4738. name: "Gigamacro",
  4739. height: math.unit(570000, "miles")
  4740. }
  4741. ]
  4742. ))
  4743. characterMakers.push(() => makeCharacter(
  4744. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4745. {
  4746. front: {
  4747. height: math.unit(6, "feet"),
  4748. weight: math.unit(210, "lbs"),
  4749. name: "Front",
  4750. image: {
  4751. source: "./media/characters/rain-fallen/front.svg"
  4752. }
  4753. },
  4754. side: {
  4755. height: math.unit(6, "feet"),
  4756. weight: math.unit(210, "lbs"),
  4757. name: "Side",
  4758. image: {
  4759. source: "./media/characters/rain-fallen/side.svg"
  4760. }
  4761. },
  4762. back: {
  4763. height: math.unit(6, "feet"),
  4764. weight: math.unit(210, "lbs"),
  4765. name: "Back",
  4766. image: {
  4767. source: "./media/characters/rain-fallen/back.svg"
  4768. }
  4769. },
  4770. feral: {
  4771. height: math.unit(9, "feet"),
  4772. weight: math.unit(700, "lbs"),
  4773. name: "Feral",
  4774. image: {
  4775. source: "./media/characters/rain-fallen/feral.svg"
  4776. }
  4777. },
  4778. },
  4779. [
  4780. {
  4781. name: "Meddling with Mortals",
  4782. height: math.unit(8 + 8/12, "feet")
  4783. },
  4784. {
  4785. name: "Normal",
  4786. height: math.unit(5, "meter")
  4787. },
  4788. {
  4789. name: "Macro",
  4790. height: math.unit(150, "meter"),
  4791. default: true
  4792. },
  4793. {
  4794. name: "Megamacro",
  4795. height: math.unit(278e6, "meter")
  4796. },
  4797. {
  4798. name: "Gigamacro",
  4799. height: math.unit(2e9, "meter")
  4800. },
  4801. {
  4802. name: "Teramacro",
  4803. height: math.unit(8e12, "meter")
  4804. },
  4805. {
  4806. name: "Devourer",
  4807. height: math.unit(14, "zettameters")
  4808. },
  4809. {
  4810. name: "Scarlet King",
  4811. height: math.unit(18, "yottameters")
  4812. },
  4813. {
  4814. name: "Void",
  4815. height: math.unit(1e88, "yottameters")
  4816. }
  4817. ]
  4818. ))
  4819. characterMakers.push(() => makeCharacter(
  4820. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4821. {
  4822. standing: {
  4823. height: math.unit(6, "feet"),
  4824. weight: math.unit(180, "lbs"),
  4825. name: "Standing",
  4826. image: {
  4827. source: "./media/characters/zaakira/standing.svg",
  4828. extra: 1599/1504,
  4829. bottom: 39/1638
  4830. }
  4831. },
  4832. laying: {
  4833. height: math.unit(3, "feet"),
  4834. weight: math.unit(180, "lbs"),
  4835. name: "Laying",
  4836. image: {
  4837. source: "./media/characters/zaakira/laying.svg"
  4838. }
  4839. },
  4840. },
  4841. [
  4842. {
  4843. name: "Normal",
  4844. height: math.unit(12, "feet")
  4845. },
  4846. {
  4847. name: "Macro",
  4848. height: math.unit(279, "feet"),
  4849. default: true
  4850. }
  4851. ]
  4852. ))
  4853. characterMakers.push(() => makeCharacter(
  4854. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4855. {
  4856. femSfw: {
  4857. height: math.unit(8, "feet"),
  4858. weight: math.unit(350, "lb"),
  4859. name: "Fem",
  4860. image: {
  4861. source: "./media/characters/sigvald/fem-sfw.svg",
  4862. extra: 182 / 164,
  4863. bottom: 8.7 / 190.5
  4864. }
  4865. },
  4866. femNsfw: {
  4867. height: math.unit(8, "feet"),
  4868. weight: math.unit(350, "lb"),
  4869. name: "Fem (NSFW)",
  4870. image: {
  4871. source: "./media/characters/sigvald/fem-nsfw.svg",
  4872. extra: 182 / 164,
  4873. bottom: 8.7 / 190.5
  4874. }
  4875. },
  4876. maleNsfw: {
  4877. height: math.unit(8, "feet"),
  4878. weight: math.unit(350, "lb"),
  4879. name: "Male (NSFW)",
  4880. image: {
  4881. source: "./media/characters/sigvald/male-nsfw.svg",
  4882. extra: 182 / 164,
  4883. bottom: 8.7 / 190.5
  4884. }
  4885. },
  4886. hermNsfw: {
  4887. height: math.unit(8, "feet"),
  4888. weight: math.unit(350, "lb"),
  4889. name: "Herm (NSFW)",
  4890. image: {
  4891. source: "./media/characters/sigvald/herm-nsfw.svg",
  4892. extra: 182 / 164,
  4893. bottom: 8.7 / 190.5
  4894. }
  4895. },
  4896. dick: {
  4897. height: math.unit(2.36, "feet"),
  4898. name: "Dick",
  4899. image: {
  4900. source: "./media/characters/sigvald/dick.svg"
  4901. }
  4902. },
  4903. eye: {
  4904. height: math.unit(0.31, "feet"),
  4905. name: "Eye",
  4906. image: {
  4907. source: "./media/characters/sigvald/eye.svg"
  4908. }
  4909. },
  4910. mouth: {
  4911. height: math.unit(0.92, "feet"),
  4912. name: "Mouth",
  4913. image: {
  4914. source: "./media/characters/sigvald/mouth.svg"
  4915. }
  4916. },
  4917. paws: {
  4918. height: math.unit(2.2, "feet"),
  4919. name: "Paws",
  4920. image: {
  4921. source: "./media/characters/sigvald/paws.svg"
  4922. }
  4923. }
  4924. },
  4925. [
  4926. {
  4927. name: "Normal",
  4928. height: math.unit(8, "feet")
  4929. },
  4930. {
  4931. name: "Large",
  4932. height: math.unit(12, "feet")
  4933. },
  4934. {
  4935. name: "Larger",
  4936. height: math.unit(20, "feet")
  4937. },
  4938. {
  4939. name: "Macro",
  4940. height: math.unit(150, "feet")
  4941. },
  4942. {
  4943. name: "Macro+",
  4944. height: math.unit(200, "feet"),
  4945. default: true
  4946. },
  4947. ]
  4948. ))
  4949. characterMakers.push(() => makeCharacter(
  4950. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4951. {
  4952. side: {
  4953. height: math.unit(12, "feet"),
  4954. weight: math.unit(2000, "kg"),
  4955. name: "Side",
  4956. image: {
  4957. source: "./media/characters/scott/side.svg",
  4958. extra: 754 / 724,
  4959. bottom: 0.069
  4960. }
  4961. },
  4962. upright: {
  4963. height: math.unit(12, "feet"),
  4964. weight: math.unit(2000, "kg"),
  4965. name: "Upright",
  4966. image: {
  4967. source: "./media/characters/scott/upright.svg",
  4968. extra: 3881 / 3722,
  4969. bottom: 0.05
  4970. }
  4971. },
  4972. },
  4973. [
  4974. {
  4975. name: "Normal",
  4976. height: math.unit(12, "feet"),
  4977. default: true
  4978. },
  4979. ]
  4980. ))
  4981. characterMakers.push(() => makeCharacter(
  4982. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4983. {
  4984. side: {
  4985. height: math.unit(8, "meters"),
  4986. weight: math.unit(84755, "lbs"),
  4987. name: "Side",
  4988. image: {
  4989. source: "./media/characters/tobias/side.svg",
  4990. extra: 1474 / 1096,
  4991. bottom: 38.9 / 1513.1235
  4992. }
  4993. },
  4994. },
  4995. [
  4996. {
  4997. name: "Normal",
  4998. height: math.unit(8, "meters"),
  4999. default: true
  5000. },
  5001. ]
  5002. ))
  5003. characterMakers.push(() => makeCharacter(
  5004. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5005. {
  5006. front: {
  5007. height: math.unit(5.5, "feet"),
  5008. weight: math.unit(400, "lbs"),
  5009. name: "Front",
  5010. image: {
  5011. source: "./media/characters/kieran/front.svg",
  5012. extra: 2694 / 2364,
  5013. bottom: 217 / 2908
  5014. }
  5015. },
  5016. side: {
  5017. height: math.unit(5.5, "feet"),
  5018. weight: math.unit(400, "lbs"),
  5019. name: "Side",
  5020. image: {
  5021. source: "./media/characters/kieran/side.svg",
  5022. extra: 875 / 777,
  5023. bottom: 84.6 / 959
  5024. }
  5025. },
  5026. },
  5027. [
  5028. {
  5029. name: "Normal",
  5030. height: math.unit(5.5, "feet"),
  5031. default: true
  5032. },
  5033. ]
  5034. ))
  5035. characterMakers.push(() => makeCharacter(
  5036. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5037. {
  5038. side: {
  5039. height: math.unit(2, "meters"),
  5040. weight: math.unit(70, "kg"),
  5041. name: "Side",
  5042. image: {
  5043. source: "./media/characters/sanya/side.svg",
  5044. bottom: 0.02,
  5045. extra: 1.02
  5046. }
  5047. },
  5048. },
  5049. [
  5050. {
  5051. name: "Small",
  5052. height: math.unit(2, "meters")
  5053. },
  5054. {
  5055. name: "Normal",
  5056. height: math.unit(3, "meters")
  5057. },
  5058. {
  5059. name: "Macro",
  5060. height: math.unit(16, "meters"),
  5061. default: true
  5062. },
  5063. ]
  5064. ))
  5065. characterMakers.push(() => makeCharacter(
  5066. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5067. {
  5068. front: {
  5069. height: math.unit(2, "meters"),
  5070. weight: math.unit(120, "kg"),
  5071. name: "Front",
  5072. image: {
  5073. source: "./media/characters/miranda/front.svg",
  5074. extra: 195 / 185,
  5075. bottom: 10.9 / 206.5
  5076. }
  5077. },
  5078. back: {
  5079. height: math.unit(2, "meters"),
  5080. weight: math.unit(120, "kg"),
  5081. name: "Back",
  5082. image: {
  5083. source: "./media/characters/miranda/back.svg",
  5084. extra: 201 / 193,
  5085. bottom: 2.3 / 203.7
  5086. }
  5087. },
  5088. },
  5089. [
  5090. {
  5091. name: "Normal",
  5092. height: math.unit(10, "feet"),
  5093. default: true
  5094. }
  5095. ]
  5096. ))
  5097. characterMakers.push(() => makeCharacter(
  5098. { name: "James", species: ["deer"], tags: ["anthro"] },
  5099. {
  5100. side: {
  5101. height: math.unit(2, "meters"),
  5102. weight: math.unit(100, "kg"),
  5103. name: "Front",
  5104. image: {
  5105. source: "./media/characters/james/front.svg",
  5106. extra: 10 / 8.5
  5107. }
  5108. },
  5109. },
  5110. [
  5111. {
  5112. name: "Normal",
  5113. height: math.unit(8.5, "feet"),
  5114. default: true
  5115. }
  5116. ]
  5117. ))
  5118. characterMakers.push(() => makeCharacter(
  5119. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5120. {
  5121. side: {
  5122. height: math.unit(9.5, "feet"),
  5123. weight: math.unit(2500, "lbs"),
  5124. name: "Side",
  5125. image: {
  5126. source: "./media/characters/heather/side.svg"
  5127. }
  5128. },
  5129. },
  5130. [
  5131. {
  5132. name: "Normal",
  5133. height: math.unit(9.5, "feet"),
  5134. default: true
  5135. }
  5136. ]
  5137. ))
  5138. characterMakers.push(() => makeCharacter(
  5139. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5140. {
  5141. side: {
  5142. height: math.unit(6.5, "feet"),
  5143. weight: math.unit(400, "lbs"),
  5144. name: "Side",
  5145. image: {
  5146. source: "./media/characters/lukas/side.svg",
  5147. extra: 7.25 / 6.5
  5148. }
  5149. },
  5150. },
  5151. [
  5152. {
  5153. name: "Normal",
  5154. height: math.unit(6.5, "feet"),
  5155. default: true
  5156. }
  5157. ]
  5158. ))
  5159. characterMakers.push(() => makeCharacter(
  5160. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5161. {
  5162. side: {
  5163. height: math.unit(5, "feet"),
  5164. weight: math.unit(3000, "lbs"),
  5165. name: "Side",
  5166. image: {
  5167. source: "./media/characters/louise/side.svg"
  5168. }
  5169. },
  5170. },
  5171. [
  5172. {
  5173. name: "Normal",
  5174. height: math.unit(5, "feet"),
  5175. default: true
  5176. }
  5177. ]
  5178. ))
  5179. characterMakers.push(() => makeCharacter(
  5180. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5181. {
  5182. side: {
  5183. height: math.unit(6, "feet"),
  5184. weight: math.unit(150, "lbs"),
  5185. name: "Side",
  5186. image: {
  5187. source: "./media/characters/ramona/side.svg"
  5188. }
  5189. },
  5190. },
  5191. [
  5192. {
  5193. name: "Normal",
  5194. height: math.unit(5.3, "meters"),
  5195. default: true
  5196. },
  5197. {
  5198. name: "Macro",
  5199. height: math.unit(20, "stories")
  5200. },
  5201. {
  5202. name: "Macro+",
  5203. height: math.unit(50, "stories")
  5204. },
  5205. ]
  5206. ))
  5207. characterMakers.push(() => makeCharacter(
  5208. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5209. {
  5210. standing: {
  5211. height: math.unit(5.75, "feet"),
  5212. weight: math.unit(160, "lbs"),
  5213. name: "Standing",
  5214. image: {
  5215. source: "./media/characters/deerpuff/standing.svg",
  5216. extra: 682 / 624
  5217. }
  5218. },
  5219. sitting: {
  5220. height: math.unit(5.75 / 1.79, "feet"),
  5221. weight: math.unit(160, "lbs"),
  5222. name: "Sitting",
  5223. image: {
  5224. source: "./media/characters/deerpuff/sitting.svg",
  5225. bottom: 44 / 400,
  5226. extra: 1
  5227. }
  5228. },
  5229. taurLaying: {
  5230. height: math.unit(6, "feet"),
  5231. weight: math.unit(400, "lbs"),
  5232. name: "Taur (Laying)",
  5233. image: {
  5234. source: "./media/characters/deerpuff/taur-laying.svg"
  5235. }
  5236. },
  5237. },
  5238. [
  5239. {
  5240. name: "Puffball",
  5241. height: math.unit(6, "inches")
  5242. },
  5243. {
  5244. name: "Normalpuff",
  5245. height: math.unit(5.75, "feet")
  5246. },
  5247. {
  5248. name: "Macropuff",
  5249. height: math.unit(1500, "feet"),
  5250. default: true
  5251. },
  5252. {
  5253. name: "Megapuff",
  5254. height: math.unit(500, "miles")
  5255. },
  5256. {
  5257. name: "Gigapuff",
  5258. height: math.unit(250000, "miles")
  5259. },
  5260. {
  5261. name: "Omegapuff",
  5262. height: math.unit(1000, "lightyears")
  5263. },
  5264. ]
  5265. ))
  5266. characterMakers.push(() => makeCharacter(
  5267. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5268. {
  5269. stomping: {
  5270. height: math.unit(6, "feet"),
  5271. weight: math.unit(170, "lbs"),
  5272. name: "Stomping",
  5273. image: {
  5274. source: "./media/characters/vivian/stomping.svg"
  5275. }
  5276. },
  5277. sitting: {
  5278. height: math.unit(6 / 1.75, "feet"),
  5279. weight: math.unit(170, "lbs"),
  5280. name: "Sitting",
  5281. image: {
  5282. source: "./media/characters/vivian/sitting.svg",
  5283. bottom: 1 / 6.4,
  5284. extra: 1,
  5285. }
  5286. },
  5287. },
  5288. [
  5289. {
  5290. name: "Normal",
  5291. height: math.unit(7, "feet"),
  5292. default: true
  5293. },
  5294. {
  5295. name: "Macro",
  5296. height: math.unit(10, "stories")
  5297. },
  5298. {
  5299. name: "Macro+",
  5300. height: math.unit(30, "stories")
  5301. },
  5302. {
  5303. name: "Megamacro",
  5304. height: math.unit(10, "miles")
  5305. },
  5306. {
  5307. name: "Megamacro+",
  5308. height: math.unit(2750000, "meters")
  5309. },
  5310. ]
  5311. ))
  5312. characterMakers.push(() => makeCharacter(
  5313. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5314. {
  5315. front: {
  5316. height: math.unit(6, "feet"),
  5317. weight: math.unit(160, "lbs"),
  5318. name: "Front",
  5319. image: {
  5320. source: "./media/characters/prince/front.svg",
  5321. extra: 3400 / 3000
  5322. }
  5323. },
  5324. jumping: {
  5325. height: math.unit(6, "feet"),
  5326. weight: math.unit(160, "lbs"),
  5327. name: "Jumping",
  5328. image: {
  5329. source: "./media/characters/prince/jump.svg",
  5330. extra: 2555 / 2134
  5331. }
  5332. },
  5333. },
  5334. [
  5335. {
  5336. name: "Normal",
  5337. height: math.unit(7.75, "feet"),
  5338. default: true
  5339. },
  5340. {
  5341. name: "Not cute",
  5342. height: math.unit(17, "feet")
  5343. },
  5344. {
  5345. name: "I said NOT",
  5346. height: math.unit(91, "feet")
  5347. },
  5348. {
  5349. name: "Please stop",
  5350. height: math.unit(560, "feet")
  5351. },
  5352. {
  5353. name: "What have you done",
  5354. height: math.unit(2200, "feet")
  5355. },
  5356. {
  5357. name: "Deer God",
  5358. height: math.unit(3.6, "miles")
  5359. },
  5360. ]
  5361. ))
  5362. characterMakers.push(() => makeCharacter(
  5363. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5364. {
  5365. standing: {
  5366. height: math.unit(6, "feet"),
  5367. weight: math.unit(300, "lbs"),
  5368. name: "Standing",
  5369. image: {
  5370. source: "./media/characters/psymon/standing.svg",
  5371. extra: 1888 / 1810,
  5372. bottom: 0.05
  5373. }
  5374. },
  5375. slithering: {
  5376. height: math.unit(6, "feet"),
  5377. weight: math.unit(300, "lbs"),
  5378. name: "Slithering",
  5379. image: {
  5380. source: "./media/characters/psymon/slithering.svg",
  5381. extra: 1330 / 1224
  5382. }
  5383. },
  5384. slitheringAlt: {
  5385. height: math.unit(6, "feet"),
  5386. weight: math.unit(300, "lbs"),
  5387. name: "Slithering (Alt)",
  5388. image: {
  5389. source: "./media/characters/psymon/slithering-alt.svg",
  5390. extra: 1330 / 1224
  5391. }
  5392. },
  5393. },
  5394. [
  5395. {
  5396. name: "Normal",
  5397. height: math.unit(11.25, "feet"),
  5398. default: true
  5399. },
  5400. {
  5401. name: "Large",
  5402. height: math.unit(27, "feet")
  5403. },
  5404. {
  5405. name: "Giant",
  5406. height: math.unit(87, "feet")
  5407. },
  5408. {
  5409. name: "Macro",
  5410. height: math.unit(365, "feet")
  5411. },
  5412. {
  5413. name: "Megamacro",
  5414. height: math.unit(3, "miles")
  5415. },
  5416. {
  5417. name: "World Serpent",
  5418. height: math.unit(8000, "miles")
  5419. },
  5420. ]
  5421. ))
  5422. characterMakers.push(() => makeCharacter(
  5423. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5424. {
  5425. front: {
  5426. height: math.unit(6, "feet"),
  5427. weight: math.unit(180, "lbs"),
  5428. name: "Front",
  5429. image: {
  5430. source: "./media/characters/daimos/front.svg",
  5431. extra: 4160 / 3897,
  5432. bottom: 0.021
  5433. }
  5434. }
  5435. },
  5436. [
  5437. {
  5438. name: "Normal",
  5439. height: math.unit(8, "feet"),
  5440. default: true
  5441. },
  5442. {
  5443. name: "Big Dog",
  5444. height: math.unit(22, "feet")
  5445. },
  5446. {
  5447. name: "Macro",
  5448. height: math.unit(127, "feet")
  5449. },
  5450. {
  5451. name: "Megamacro",
  5452. height: math.unit(3600, "feet")
  5453. },
  5454. ]
  5455. ))
  5456. characterMakers.push(() => makeCharacter(
  5457. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5458. {
  5459. side: {
  5460. height: math.unit(6, "feet"),
  5461. weight: math.unit(180, "lbs"),
  5462. name: "Side",
  5463. image: {
  5464. source: "./media/characters/blake/side.svg",
  5465. extra: 1212 / 1120,
  5466. bottom: 0.05
  5467. }
  5468. },
  5469. crouched: {
  5470. height: math.unit(6 * 0.57, "feet"),
  5471. weight: math.unit(180, "lbs"),
  5472. name: "Crouched",
  5473. image: {
  5474. source: "./media/characters/blake/crouched.svg",
  5475. extra: 840 / 587,
  5476. bottom: 0.04
  5477. }
  5478. },
  5479. bent: {
  5480. height: math.unit(6 * 0.75, "feet"),
  5481. weight: math.unit(180, "lbs"),
  5482. name: "Bent",
  5483. image: {
  5484. source: "./media/characters/blake/bent.svg",
  5485. extra: 592 / 544,
  5486. bottom: 0.035
  5487. }
  5488. },
  5489. },
  5490. [
  5491. {
  5492. name: "Normal",
  5493. height: math.unit(8 + 1 / 6, "feet"),
  5494. default: true
  5495. },
  5496. {
  5497. name: "Big Backside",
  5498. height: math.unit(37, "feet")
  5499. },
  5500. {
  5501. name: "Subway Shredder",
  5502. height: math.unit(72, "feet")
  5503. },
  5504. {
  5505. name: "City Carver",
  5506. height: math.unit(1675, "feet")
  5507. },
  5508. {
  5509. name: "Tectonic Tweaker",
  5510. height: math.unit(2300, "miles")
  5511. },
  5512. ]
  5513. ))
  5514. characterMakers.push(() => makeCharacter(
  5515. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5516. {
  5517. front: {
  5518. height: math.unit(6, "feet"),
  5519. weight: math.unit(180, "lbs"),
  5520. name: "Front",
  5521. image: {
  5522. source: "./media/characters/guisetto/front.svg",
  5523. extra: 856 / 817,
  5524. bottom: 0.06
  5525. }
  5526. },
  5527. airborne: {
  5528. height: math.unit(6, "feet"),
  5529. weight: math.unit(180, "lbs"),
  5530. name: "Airborne",
  5531. image: {
  5532. source: "./media/characters/guisetto/airborne.svg",
  5533. extra: 584 / 525
  5534. }
  5535. },
  5536. },
  5537. [
  5538. {
  5539. name: "Normal",
  5540. height: math.unit(10 + 11 / 12, "feet"),
  5541. default: true
  5542. },
  5543. {
  5544. name: "Large",
  5545. height: math.unit(35, "feet")
  5546. },
  5547. {
  5548. name: "Macro",
  5549. height: math.unit(475, "feet")
  5550. },
  5551. ]
  5552. ))
  5553. characterMakers.push(() => makeCharacter(
  5554. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5555. {
  5556. front: {
  5557. height: math.unit(6, "feet"),
  5558. weight: math.unit(180, "lbs"),
  5559. name: "Front",
  5560. image: {
  5561. source: "./media/characters/luxor/front.svg",
  5562. extra: 2940 / 2152
  5563. }
  5564. },
  5565. back: {
  5566. height: math.unit(6, "feet"),
  5567. weight: math.unit(180, "lbs"),
  5568. name: "Back",
  5569. image: {
  5570. source: "./media/characters/luxor/back.svg",
  5571. extra: 1083 / 960
  5572. }
  5573. },
  5574. },
  5575. [
  5576. {
  5577. name: "Normal",
  5578. height: math.unit(5 + 5 / 6, "feet"),
  5579. default: true
  5580. },
  5581. {
  5582. name: "Lamp",
  5583. height: math.unit(50, "feet")
  5584. },
  5585. {
  5586. name: "Lämp",
  5587. height: math.unit(300, "feet")
  5588. },
  5589. {
  5590. name: "The sun is a lamp",
  5591. height: math.unit(250000, "miles")
  5592. },
  5593. ]
  5594. ))
  5595. characterMakers.push(() => makeCharacter(
  5596. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5597. {
  5598. front: {
  5599. height: math.unit(6, "feet"),
  5600. weight: math.unit(50, "lbs"),
  5601. name: "Front",
  5602. image: {
  5603. source: "./media/characters/huoyan/front.svg"
  5604. }
  5605. },
  5606. side: {
  5607. height: math.unit(6, "feet"),
  5608. weight: math.unit(180, "lbs"),
  5609. name: "Side",
  5610. image: {
  5611. source: "./media/characters/huoyan/side.svg"
  5612. }
  5613. },
  5614. },
  5615. [
  5616. {
  5617. name: "Chef",
  5618. height: math.unit(9, "feet")
  5619. },
  5620. {
  5621. name: "Normal",
  5622. height: math.unit(65, "feet"),
  5623. default: true
  5624. },
  5625. {
  5626. name: "Macro",
  5627. height: math.unit(780, "feet")
  5628. },
  5629. {
  5630. name: "Flaming Mountain",
  5631. height: math.unit(4.8, "miles")
  5632. },
  5633. {
  5634. name: "Celestial",
  5635. height: math.unit(765000, "miles")
  5636. },
  5637. ]
  5638. ))
  5639. characterMakers.push(() => makeCharacter(
  5640. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5641. {
  5642. front: {
  5643. height: math.unit(5 + 3 / 4, "feet"),
  5644. weight: math.unit(120, "lbs"),
  5645. name: "Front",
  5646. image: {
  5647. source: "./media/characters/tails/front.svg"
  5648. }
  5649. }
  5650. },
  5651. [
  5652. {
  5653. name: "Normal",
  5654. height: math.unit(5 + 3 / 4, "feet"),
  5655. default: true
  5656. }
  5657. ]
  5658. ))
  5659. characterMakers.push(() => makeCharacter(
  5660. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5661. {
  5662. front: {
  5663. height: math.unit(4, "feet"),
  5664. weight: math.unit(50, "lbs"),
  5665. name: "Front",
  5666. image: {
  5667. source: "./media/characters/rainy/front.svg"
  5668. }
  5669. }
  5670. },
  5671. [
  5672. {
  5673. name: "Macro",
  5674. height: math.unit(800, "feet"),
  5675. default: true
  5676. }
  5677. ]
  5678. ))
  5679. characterMakers.push(() => makeCharacter(
  5680. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5681. {
  5682. front: {
  5683. height: math.unit(6, "feet"),
  5684. weight: math.unit(150, "lbs"),
  5685. name: "Front",
  5686. image: {
  5687. source: "./media/characters/rainier/front.svg"
  5688. }
  5689. }
  5690. },
  5691. [
  5692. {
  5693. name: "Micro",
  5694. height: math.unit(2, "mm"),
  5695. default: true
  5696. }
  5697. ]
  5698. ))
  5699. characterMakers.push(() => makeCharacter(
  5700. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5701. {
  5702. front: {
  5703. height: math.unit(8 + 4/12, "feet"),
  5704. name: "Front",
  5705. image: {
  5706. source: "./media/characters/andy-renard/front.svg",
  5707. extra: 1839/1726,
  5708. bottom: 134/1973
  5709. }
  5710. },
  5711. back: {
  5712. height: math.unit(8 + 4/12, "feet"),
  5713. name: "Back",
  5714. image: {
  5715. source: "./media/characters/andy-renard/back.svg",
  5716. extra: 1838/1710,
  5717. bottom: 105/1943
  5718. }
  5719. },
  5720. },
  5721. [
  5722. {
  5723. name: "Tall",
  5724. height: math.unit(8 + 4/12, "feet")
  5725. },
  5726. {
  5727. name: "Mini Macro",
  5728. height: math.unit(15, "feet"),
  5729. default: true
  5730. },
  5731. {
  5732. name: "Macro",
  5733. height: math.unit(100, "feet")
  5734. },
  5735. {
  5736. name: "Mega Macro",
  5737. height: math.unit(1000, "feet")
  5738. },
  5739. {
  5740. name: "Giga Macro",
  5741. height: math.unit(10, "miles")
  5742. },
  5743. {
  5744. name: "God Macro",
  5745. height: math.unit(1, "multiverse")
  5746. },
  5747. ]
  5748. ))
  5749. characterMakers.push(() => makeCharacter(
  5750. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5751. {
  5752. front: {
  5753. height: math.unit(6, "feet"),
  5754. weight: math.unit(210, "lbs"),
  5755. name: "Front",
  5756. image: {
  5757. source: "./media/characters/cimmaron/front-sfw.svg",
  5758. extra: 701 / 676,
  5759. bottom: 0.046
  5760. }
  5761. },
  5762. back: {
  5763. height: math.unit(6, "feet"),
  5764. weight: math.unit(210, "lbs"),
  5765. name: "Back",
  5766. image: {
  5767. source: "./media/characters/cimmaron/back-sfw.svg",
  5768. extra: 701 / 676,
  5769. bottom: 0.046
  5770. }
  5771. },
  5772. frontNsfw: {
  5773. height: math.unit(6, "feet"),
  5774. weight: math.unit(210, "lbs"),
  5775. name: "Front (NSFW)",
  5776. image: {
  5777. source: "./media/characters/cimmaron/front-nsfw.svg",
  5778. extra: 701 / 676,
  5779. bottom: 0.046
  5780. }
  5781. },
  5782. backNsfw: {
  5783. height: math.unit(6, "feet"),
  5784. weight: math.unit(210, "lbs"),
  5785. name: "Back (NSFW)",
  5786. image: {
  5787. source: "./media/characters/cimmaron/back-nsfw.svg",
  5788. extra: 701 / 676,
  5789. bottom: 0.046
  5790. }
  5791. },
  5792. dick: {
  5793. height: math.unit(1.714, "feet"),
  5794. name: "Dick",
  5795. image: {
  5796. source: "./media/characters/cimmaron/dick.svg"
  5797. }
  5798. },
  5799. },
  5800. [
  5801. {
  5802. name: "Normal",
  5803. height: math.unit(6, "feet"),
  5804. default: true
  5805. },
  5806. {
  5807. name: "Macro Mayor",
  5808. height: math.unit(350, "meters")
  5809. },
  5810. ]
  5811. ))
  5812. characterMakers.push(() => makeCharacter(
  5813. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5814. {
  5815. front: {
  5816. height: math.unit(6, "feet"),
  5817. weight: math.unit(200, "lbs"),
  5818. name: "Front",
  5819. image: {
  5820. source: "./media/characters/akari/front.svg",
  5821. extra: 962 / 901,
  5822. bottom: 0.04
  5823. }
  5824. }
  5825. },
  5826. [
  5827. {
  5828. name: "Micro",
  5829. height: math.unit(5, "inches"),
  5830. default: true
  5831. },
  5832. {
  5833. name: "Normal",
  5834. height: math.unit(7, "feet")
  5835. },
  5836. ]
  5837. ))
  5838. characterMakers.push(() => makeCharacter(
  5839. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5840. {
  5841. front: {
  5842. height: math.unit(6, "feet"),
  5843. weight: math.unit(140, "lbs"),
  5844. name: "Front",
  5845. image: {
  5846. source: "./media/characters/cynosura/front.svg",
  5847. extra: 896 / 847
  5848. }
  5849. },
  5850. back: {
  5851. height: math.unit(6, "feet"),
  5852. weight: math.unit(140, "lbs"),
  5853. name: "Back",
  5854. image: {
  5855. source: "./media/characters/cynosura/back.svg",
  5856. extra: 1365 / 1250
  5857. }
  5858. },
  5859. },
  5860. [
  5861. {
  5862. name: "Micro",
  5863. height: math.unit(4, "inches")
  5864. },
  5865. {
  5866. name: "Normal",
  5867. height: math.unit(5.75, "feet"),
  5868. default: true
  5869. },
  5870. {
  5871. name: "Tall",
  5872. height: math.unit(10, "feet")
  5873. },
  5874. {
  5875. name: "Big",
  5876. height: math.unit(20, "feet")
  5877. },
  5878. {
  5879. name: "Macro",
  5880. height: math.unit(50, "feet")
  5881. },
  5882. ]
  5883. ))
  5884. characterMakers.push(() => makeCharacter(
  5885. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5886. {
  5887. front: {
  5888. height: math.unit(13 + 2/12, "feet"),
  5889. weight: math.unit(800, "kg"),
  5890. name: "Front",
  5891. image: {
  5892. source: "./media/characters/gin/front.svg",
  5893. extra: 1312/1191,
  5894. bottom: 45/1357
  5895. }
  5896. },
  5897. mouth: {
  5898. height: math.unit(2.39 * 1.8, "feet"),
  5899. name: "Mouth",
  5900. image: {
  5901. source: "./media/characters/gin/mouth.svg"
  5902. }
  5903. },
  5904. hand: {
  5905. height: math.unit(1.57 * 2.19, "feet"),
  5906. name: "Hand",
  5907. image: {
  5908. source: "./media/characters/gin/hand.svg"
  5909. }
  5910. },
  5911. foot: {
  5912. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5913. name: "Foot",
  5914. image: {
  5915. source: "./media/characters/gin/foot.svg"
  5916. }
  5917. },
  5918. sole: {
  5919. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5920. name: "Sole",
  5921. image: {
  5922. source: "./media/characters/gin/sole.svg"
  5923. }
  5924. },
  5925. },
  5926. [
  5927. {
  5928. name: "Very Small",
  5929. height: math.unit(13 + 2 / 12, "feet")
  5930. },
  5931. {
  5932. name: "Micro",
  5933. height: math.unit(600, "miles")
  5934. },
  5935. {
  5936. name: "Regular",
  5937. height: math.unit(20, "earths"),
  5938. default: true
  5939. },
  5940. {
  5941. name: "Macro",
  5942. height: math.unit(2.2, "solarradii")
  5943. },
  5944. {
  5945. name: "Teramacro",
  5946. height: math.unit(1.2, "galaxies")
  5947. },
  5948. {
  5949. name: "Omegamacro",
  5950. height: math.unit(200, "universes")
  5951. },
  5952. ]
  5953. ))
  5954. characterMakers.push(() => makeCharacter(
  5955. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5956. {
  5957. front: {
  5958. height: math.unit(6 + 1 / 6, "feet"),
  5959. weight: math.unit(178, "lbs"),
  5960. name: "Front",
  5961. image: {
  5962. source: "./media/characters/guy/front.svg"
  5963. }
  5964. }
  5965. },
  5966. [
  5967. {
  5968. name: "Normal",
  5969. height: math.unit(6 + 1 / 6, "feet"),
  5970. default: true
  5971. },
  5972. {
  5973. name: "Large",
  5974. height: math.unit(25 + 7 / 12, "feet")
  5975. },
  5976. {
  5977. name: "Macro",
  5978. height: math.unit(60 + 9 / 12, "feet")
  5979. },
  5980. {
  5981. name: "Macro+",
  5982. height: math.unit(246, "feet")
  5983. },
  5984. {
  5985. name: "Macro++",
  5986. height: math.unit(878, "feet")
  5987. }
  5988. ]
  5989. ))
  5990. characterMakers.push(() => makeCharacter(
  5991. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5992. {
  5993. front: {
  5994. height: math.unit(9, "feet"),
  5995. weight: math.unit(800, "lbs"),
  5996. name: "Front",
  5997. image: {
  5998. source: "./media/characters/tiberius/front.svg",
  5999. extra: 2295 / 2071
  6000. }
  6001. },
  6002. back: {
  6003. height: math.unit(9, "feet"),
  6004. weight: math.unit(800, "lbs"),
  6005. name: "Back",
  6006. image: {
  6007. source: "./media/characters/tiberius/back.svg",
  6008. extra: 2373 / 2160
  6009. }
  6010. },
  6011. },
  6012. [
  6013. {
  6014. name: "Normal",
  6015. height: math.unit(9, "feet"),
  6016. default: true
  6017. }
  6018. ]
  6019. ))
  6020. characterMakers.push(() => makeCharacter(
  6021. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6022. {
  6023. front: {
  6024. height: math.unit(6, "feet"),
  6025. weight: math.unit(600, "lbs"),
  6026. name: "Front",
  6027. image: {
  6028. source: "./media/characters/surgo/front.svg",
  6029. extra: 3591 / 2227
  6030. }
  6031. },
  6032. back: {
  6033. height: math.unit(6, "feet"),
  6034. weight: math.unit(600, "lbs"),
  6035. name: "Back",
  6036. image: {
  6037. source: "./media/characters/surgo/back.svg",
  6038. extra: 3557 / 2228
  6039. }
  6040. },
  6041. laying: {
  6042. height: math.unit(6 * 0.85, "feet"),
  6043. weight: math.unit(600, "lbs"),
  6044. name: "Laying",
  6045. image: {
  6046. source: "./media/characters/surgo/laying.svg"
  6047. }
  6048. },
  6049. },
  6050. [
  6051. {
  6052. name: "Normal",
  6053. height: math.unit(6, "feet"),
  6054. default: true
  6055. }
  6056. ]
  6057. ))
  6058. characterMakers.push(() => makeCharacter(
  6059. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6060. {
  6061. side: {
  6062. height: math.unit(6, "feet"),
  6063. weight: math.unit(150, "lbs"),
  6064. name: "Side",
  6065. image: {
  6066. source: "./media/characters/cibus/side.svg",
  6067. extra: 800 / 400
  6068. }
  6069. },
  6070. },
  6071. [
  6072. {
  6073. name: "Normal",
  6074. height: math.unit(6, "feet"),
  6075. default: true
  6076. }
  6077. ]
  6078. ))
  6079. characterMakers.push(() => makeCharacter(
  6080. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6081. {
  6082. front: {
  6083. height: math.unit(6, "feet"),
  6084. weight: math.unit(240, "lbs"),
  6085. name: "Front",
  6086. image: {
  6087. source: "./media/characters/nibbles/front.svg"
  6088. }
  6089. },
  6090. side: {
  6091. height: math.unit(6, "feet"),
  6092. weight: math.unit(240, "lbs"),
  6093. name: "Side",
  6094. image: {
  6095. source: "./media/characters/nibbles/side.svg"
  6096. }
  6097. },
  6098. },
  6099. [
  6100. {
  6101. name: "Normal",
  6102. height: math.unit(9, "feet"),
  6103. default: true
  6104. }
  6105. ]
  6106. ))
  6107. characterMakers.push(() => makeCharacter(
  6108. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6109. {
  6110. side: {
  6111. height: math.unit(5 + 1 / 6, "feet"),
  6112. weight: math.unit(130, "lbs"),
  6113. name: "Side",
  6114. image: {
  6115. source: "./media/characters/rikky/side.svg",
  6116. extra: 851 / 801
  6117. }
  6118. },
  6119. },
  6120. [
  6121. {
  6122. name: "Normal",
  6123. height: math.unit(5 + 1 / 6, "feet")
  6124. },
  6125. {
  6126. name: "Macro",
  6127. height: math.unit(152, "feet"),
  6128. default: true
  6129. },
  6130. {
  6131. name: "Megamacro",
  6132. height: math.unit(7, "miles")
  6133. }
  6134. ]
  6135. ))
  6136. characterMakers.push(() => makeCharacter(
  6137. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6138. {
  6139. side: {
  6140. height: math.unit(370, "cm"),
  6141. weight: math.unit(350, "lbs"),
  6142. name: "Side",
  6143. image: {
  6144. source: "./media/characters/malfressa/side.svg"
  6145. }
  6146. },
  6147. walking: {
  6148. height: math.unit(370, "cm"),
  6149. weight: math.unit(350, "lbs"),
  6150. name: "Walking",
  6151. image: {
  6152. source: "./media/characters/malfressa/walking.svg"
  6153. }
  6154. },
  6155. feral: {
  6156. height: math.unit(2500, "cm"),
  6157. weight: math.unit(100000, "lbs"),
  6158. name: "Feral",
  6159. image: {
  6160. source: "./media/characters/malfressa/feral.svg",
  6161. extra: 2108 / 837,
  6162. bottom: 0.02
  6163. }
  6164. },
  6165. },
  6166. [
  6167. {
  6168. name: "Normal",
  6169. height: math.unit(370, "cm")
  6170. },
  6171. {
  6172. name: "Macro",
  6173. height: math.unit(300, "meters"),
  6174. default: true
  6175. }
  6176. ]
  6177. ))
  6178. characterMakers.push(() => makeCharacter(
  6179. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6180. {
  6181. front: {
  6182. height: math.unit(6, "feet"),
  6183. weight: math.unit(60, "kg"),
  6184. name: "Front",
  6185. image: {
  6186. source: "./media/characters/jaro/front.svg"
  6187. }
  6188. },
  6189. back: {
  6190. height: math.unit(6, "feet"),
  6191. weight: math.unit(60, "kg"),
  6192. name: "Back",
  6193. image: {
  6194. source: "./media/characters/jaro/back.svg"
  6195. }
  6196. },
  6197. },
  6198. [
  6199. {
  6200. name: "Micro",
  6201. height: math.unit(7, "inches")
  6202. },
  6203. {
  6204. name: "Normal",
  6205. height: math.unit(5.5, "feet"),
  6206. default: true
  6207. },
  6208. {
  6209. name: "Minimacro",
  6210. height: math.unit(20, "feet")
  6211. },
  6212. {
  6213. name: "Macro",
  6214. height: math.unit(200, "meters")
  6215. }
  6216. ]
  6217. ))
  6218. characterMakers.push(() => makeCharacter(
  6219. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6220. {
  6221. front: {
  6222. height: math.unit(6, "feet"),
  6223. weight: math.unit(195, "lb"),
  6224. name: "Front",
  6225. image: {
  6226. source: "./media/characters/rogue/front.svg"
  6227. }
  6228. },
  6229. },
  6230. [
  6231. {
  6232. name: "Macro",
  6233. height: math.unit(90, "feet"),
  6234. default: true
  6235. },
  6236. ]
  6237. ))
  6238. characterMakers.push(() => makeCharacter(
  6239. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6240. {
  6241. front: {
  6242. height: math.unit(5 + 8 / 12, "feet"),
  6243. weight: math.unit(140, "lb"),
  6244. name: "Front",
  6245. image: {
  6246. source: "./media/characters/piper/front.svg",
  6247. extra: 3948/3655,
  6248. bottom: 0/3948
  6249. }
  6250. },
  6251. },
  6252. [
  6253. {
  6254. name: "Micro",
  6255. height: math.unit(2, "inches")
  6256. },
  6257. {
  6258. name: "Normal",
  6259. height: math.unit(5 + 8 / 12, "feet")
  6260. },
  6261. {
  6262. name: "Macro",
  6263. height: math.unit(250, "feet"),
  6264. default: true
  6265. },
  6266. {
  6267. name: "Megamacro",
  6268. height: math.unit(7, "miles")
  6269. },
  6270. ]
  6271. ))
  6272. characterMakers.push(() => makeCharacter(
  6273. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6274. {
  6275. front: {
  6276. height: math.unit(6, "feet"),
  6277. weight: math.unit(220, "lb"),
  6278. name: "Front",
  6279. image: {
  6280. source: "./media/characters/gemini/front.svg"
  6281. }
  6282. },
  6283. back: {
  6284. height: math.unit(6, "feet"),
  6285. weight: math.unit(220, "lb"),
  6286. name: "Back",
  6287. image: {
  6288. source: "./media/characters/gemini/back.svg"
  6289. }
  6290. },
  6291. kneeling: {
  6292. height: math.unit(6 / 1.5, "feet"),
  6293. weight: math.unit(220, "lb"),
  6294. name: "Kneeling",
  6295. image: {
  6296. source: "./media/characters/gemini/kneeling.svg",
  6297. bottom: 0.02
  6298. }
  6299. },
  6300. },
  6301. [
  6302. {
  6303. name: "Macro",
  6304. height: math.unit(300, "meters"),
  6305. default: true
  6306. },
  6307. {
  6308. name: "Megamacro",
  6309. height: math.unit(6900, "meters")
  6310. },
  6311. ]
  6312. ))
  6313. characterMakers.push(() => makeCharacter(
  6314. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6315. {
  6316. anthro: {
  6317. height: math.unit(2.35, "meters"),
  6318. weight: math.unit(73, "kg"),
  6319. name: "Anthro",
  6320. image: {
  6321. source: "./media/characters/alicia/anthro.svg",
  6322. extra: 2571 / 2385,
  6323. bottom: 75 / 2648
  6324. }
  6325. },
  6326. paw: {
  6327. height: math.unit(1.32, "feet"),
  6328. name: "Paw",
  6329. image: {
  6330. source: "./media/characters/alicia/paw.svg"
  6331. }
  6332. },
  6333. feral: {
  6334. height: math.unit(1.69, "meters"),
  6335. weight: math.unit(73, "kg"),
  6336. name: "Feral",
  6337. image: {
  6338. source: "./media/characters/alicia/feral.svg",
  6339. extra: 2123 / 1715,
  6340. bottom: 222 / 2349
  6341. }
  6342. },
  6343. },
  6344. [
  6345. {
  6346. name: "Normal",
  6347. height: math.unit(2.35, "meters")
  6348. },
  6349. {
  6350. name: "Macro",
  6351. height: math.unit(60, "meters"),
  6352. default: true
  6353. },
  6354. {
  6355. name: "Megamacro",
  6356. height: math.unit(10000, "kilometers")
  6357. },
  6358. ]
  6359. ))
  6360. characterMakers.push(() => makeCharacter(
  6361. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6362. {
  6363. front: {
  6364. height: math.unit(7, "feet"),
  6365. weight: math.unit(250, "lbs"),
  6366. name: "Front",
  6367. image: {
  6368. source: "./media/characters/archy/front.svg"
  6369. }
  6370. }
  6371. },
  6372. [
  6373. {
  6374. name: "Micro",
  6375. height: math.unit(1, "inch")
  6376. },
  6377. {
  6378. name: "Shorty",
  6379. height: math.unit(5, "feet")
  6380. },
  6381. {
  6382. name: "Normal",
  6383. height: math.unit(7, "feet")
  6384. },
  6385. {
  6386. name: "Macro",
  6387. height: math.unit(600, "meters"),
  6388. default: true
  6389. },
  6390. {
  6391. name: "Megamacro",
  6392. height: math.unit(1, "mile")
  6393. },
  6394. ]
  6395. ))
  6396. characterMakers.push(() => makeCharacter(
  6397. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6398. {
  6399. front: {
  6400. height: math.unit(1.65, "meters"),
  6401. weight: math.unit(74, "kg"),
  6402. name: "Front",
  6403. image: {
  6404. source: "./media/characters/berri/front.svg",
  6405. extra: 857 / 837,
  6406. bottom: 18 / 877
  6407. }
  6408. },
  6409. bum: {
  6410. height: math.unit(1.46, "feet"),
  6411. name: "Bum",
  6412. image: {
  6413. source: "./media/characters/berri/bum.svg"
  6414. }
  6415. },
  6416. mouth: {
  6417. height: math.unit(0.44, "feet"),
  6418. name: "Mouth",
  6419. image: {
  6420. source: "./media/characters/berri/mouth.svg"
  6421. }
  6422. },
  6423. paw: {
  6424. height: math.unit(0.826, "feet"),
  6425. name: "Paw",
  6426. image: {
  6427. source: "./media/characters/berri/paw.svg"
  6428. }
  6429. },
  6430. },
  6431. [
  6432. {
  6433. name: "Normal",
  6434. height: math.unit(1.65, "meters")
  6435. },
  6436. {
  6437. name: "Macro",
  6438. height: math.unit(60, "m"),
  6439. default: true
  6440. },
  6441. {
  6442. name: "Megamacro",
  6443. height: math.unit(9.213, "km")
  6444. },
  6445. {
  6446. name: "Planet Eater",
  6447. height: math.unit(489, "megameters")
  6448. },
  6449. {
  6450. name: "Teramacro",
  6451. height: math.unit(2471635000000, "meters")
  6452. },
  6453. {
  6454. name: "Examacro",
  6455. height: math.unit(8.0624e+26, "meters")
  6456. }
  6457. ]
  6458. ))
  6459. characterMakers.push(() => makeCharacter(
  6460. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6461. {
  6462. front: {
  6463. height: math.unit(1.72, "meters"),
  6464. weight: math.unit(68, "kg"),
  6465. name: "Front",
  6466. image: {
  6467. source: "./media/characters/lexi/front.svg"
  6468. }
  6469. }
  6470. },
  6471. [
  6472. {
  6473. name: "Very Smol",
  6474. height: math.unit(10, "mm")
  6475. },
  6476. {
  6477. name: "Micro",
  6478. height: math.unit(6.8, "cm"),
  6479. default: true
  6480. },
  6481. {
  6482. name: "Normal",
  6483. height: math.unit(1.72, "m")
  6484. }
  6485. ]
  6486. ))
  6487. characterMakers.push(() => makeCharacter(
  6488. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6489. {
  6490. front: {
  6491. height: math.unit(1.69, "meters"),
  6492. weight: math.unit(68, "kg"),
  6493. name: "Front",
  6494. image: {
  6495. source: "./media/characters/martin/front.svg",
  6496. extra: 596 / 581
  6497. }
  6498. }
  6499. },
  6500. [
  6501. {
  6502. name: "Micro",
  6503. height: math.unit(6.85, "cm"),
  6504. default: true
  6505. },
  6506. {
  6507. name: "Normal",
  6508. height: math.unit(1.69, "m")
  6509. }
  6510. ]
  6511. ))
  6512. characterMakers.push(() => makeCharacter(
  6513. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6514. {
  6515. front: {
  6516. height: math.unit(1.69, "meters"),
  6517. weight: math.unit(68, "kg"),
  6518. name: "Front",
  6519. image: {
  6520. source: "./media/characters/juno/front.svg"
  6521. }
  6522. }
  6523. },
  6524. [
  6525. {
  6526. name: "Micro",
  6527. height: math.unit(7, "cm")
  6528. },
  6529. {
  6530. name: "Normal",
  6531. height: math.unit(1.89, "m")
  6532. },
  6533. {
  6534. name: "Macro",
  6535. height: math.unit(353, "meters"),
  6536. default: true
  6537. }
  6538. ]
  6539. ))
  6540. characterMakers.push(() => makeCharacter(
  6541. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6542. {
  6543. front: {
  6544. height: math.unit(1.93, "meters"),
  6545. weight: math.unit(83, "kg"),
  6546. name: "Front",
  6547. image: {
  6548. source: "./media/characters/samantha/front.svg"
  6549. }
  6550. },
  6551. frontClothed: {
  6552. height: math.unit(1.93, "meters"),
  6553. weight: math.unit(83, "kg"),
  6554. name: "Front (Clothed)",
  6555. image: {
  6556. source: "./media/characters/samantha/front-clothed.svg"
  6557. }
  6558. },
  6559. back: {
  6560. height: math.unit(1.93, "meters"),
  6561. weight: math.unit(83, "kg"),
  6562. name: "Back",
  6563. image: {
  6564. source: "./media/characters/samantha/back.svg"
  6565. }
  6566. },
  6567. },
  6568. [
  6569. {
  6570. name: "Normal",
  6571. height: math.unit(1.93, "m")
  6572. },
  6573. {
  6574. name: "Macro",
  6575. height: math.unit(74, "meters"),
  6576. default: true
  6577. },
  6578. {
  6579. name: "Macro+",
  6580. height: math.unit(223, "meters"),
  6581. },
  6582. {
  6583. name: "Megamacro",
  6584. height: math.unit(8381, "meters"),
  6585. },
  6586. {
  6587. name: "Megamacro+",
  6588. height: math.unit(12000, "kilometers")
  6589. },
  6590. ]
  6591. ))
  6592. characterMakers.push(() => makeCharacter(
  6593. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6594. {
  6595. front: {
  6596. height: math.unit(1.92, "meters"),
  6597. weight: math.unit(80, "kg"),
  6598. name: "Front",
  6599. image: {
  6600. source: "./media/characters/dr-clay/front.svg"
  6601. }
  6602. },
  6603. frontClothed: {
  6604. height: math.unit(1.92, "meters"),
  6605. weight: math.unit(80, "kg"),
  6606. name: "Front (Clothed)",
  6607. image: {
  6608. source: "./media/characters/dr-clay/front-clothed.svg"
  6609. }
  6610. }
  6611. },
  6612. [
  6613. {
  6614. name: "Normal",
  6615. height: math.unit(1.92, "m")
  6616. },
  6617. {
  6618. name: "Macro",
  6619. height: math.unit(214, "meters"),
  6620. default: true
  6621. },
  6622. {
  6623. name: "Macro+",
  6624. height: math.unit(12.237, "meters"),
  6625. },
  6626. {
  6627. name: "Megamacro",
  6628. height: math.unit(557, "megameters"),
  6629. },
  6630. {
  6631. name: "Unimaginable",
  6632. height: math.unit(120e9, "lightyears")
  6633. },
  6634. ]
  6635. ))
  6636. characterMakers.push(() => makeCharacter(
  6637. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6638. {
  6639. front: {
  6640. height: math.unit(2, "meters"),
  6641. weight: math.unit(80, "kg"),
  6642. name: "Front",
  6643. image: {
  6644. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6645. }
  6646. }
  6647. },
  6648. [
  6649. {
  6650. name: "Teramacro",
  6651. height: math.unit(500000, "lightyears"),
  6652. default: true
  6653. },
  6654. ]
  6655. ))
  6656. characterMakers.push(() => makeCharacter(
  6657. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6658. {
  6659. crux: {
  6660. height: math.unit(2, "meters"),
  6661. weight: math.unit(150, "kg"),
  6662. name: "Crux",
  6663. image: {
  6664. source: "./media/characters/vemus/crux.svg",
  6665. extra: 1074/936,
  6666. bottom: 23/1097
  6667. }
  6668. },
  6669. skunkTanuki: {
  6670. height: math.unit(2, "meters"),
  6671. weight: math.unit(150, "kg"),
  6672. name: "Skunk-Tanuki",
  6673. image: {
  6674. source: "./media/characters/vemus/skunk-tanuki.svg",
  6675. extra: 926/893,
  6676. bottom: 20/946
  6677. }
  6678. },
  6679. },
  6680. [
  6681. {
  6682. name: "Normal",
  6683. height: math.unit(3.75, "meters"),
  6684. default: true
  6685. },
  6686. {
  6687. name: "Big",
  6688. height: math.unit(8, "meters")
  6689. },
  6690. {
  6691. name: "Macro",
  6692. height: math.unit(100, "meters")
  6693. },
  6694. {
  6695. name: "Macro+",
  6696. height: math.unit(1500, "meters")
  6697. },
  6698. {
  6699. name: "Stellar",
  6700. height: math.unit(14e8, "meters")
  6701. },
  6702. ]
  6703. ))
  6704. characterMakers.push(() => makeCharacter(
  6705. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6706. {
  6707. front: {
  6708. height: math.unit(2, "meters"),
  6709. weight: math.unit(70, "kg"),
  6710. name: "Front",
  6711. image: {
  6712. source: "./media/characters/beherit/front.svg",
  6713. extra: 1408 / 1242
  6714. }
  6715. }
  6716. },
  6717. [
  6718. {
  6719. name: "Normal",
  6720. height: math.unit(6, "feet")
  6721. },
  6722. {
  6723. name: "Lorg",
  6724. height: math.unit(25, "feet"),
  6725. default: true
  6726. },
  6727. {
  6728. name: "Lorger",
  6729. height: math.unit(75, "feet")
  6730. },
  6731. {
  6732. name: "Macro",
  6733. height: math.unit(200, "meters")
  6734. },
  6735. ]
  6736. ))
  6737. characterMakers.push(() => makeCharacter(
  6738. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6739. {
  6740. front: {
  6741. height: math.unit(2, "meters"),
  6742. weight: math.unit(150, "kg"),
  6743. name: "Front",
  6744. image: {
  6745. source: "./media/characters/everett/front.svg",
  6746. extra: 2038 / 1737,
  6747. bottom: 0.03
  6748. }
  6749. },
  6750. paw: {
  6751. height: math.unit(2 / 3.6, "meters"),
  6752. name: "Paw",
  6753. image: {
  6754. source: "./media/characters/everett/paw.svg"
  6755. }
  6756. },
  6757. },
  6758. [
  6759. {
  6760. name: "Normal",
  6761. height: math.unit(15, "feet"),
  6762. default: true
  6763. },
  6764. {
  6765. name: "Lorg",
  6766. height: math.unit(70, "feet"),
  6767. default: true
  6768. },
  6769. {
  6770. name: "Lorger",
  6771. height: math.unit(250, "feet")
  6772. },
  6773. {
  6774. name: "Macro",
  6775. height: math.unit(500, "meters")
  6776. },
  6777. ]
  6778. ))
  6779. characterMakers.push(() => makeCharacter(
  6780. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6781. {
  6782. front: {
  6783. height: math.unit(2, "meters"),
  6784. weight: math.unit(86, "kg"),
  6785. name: "Front",
  6786. image: {
  6787. source: "./media/characters/rose/front.svg",
  6788. extra: 1785/1636,
  6789. bottom: 30/1815
  6790. }
  6791. },
  6792. frontSporty: {
  6793. height: math.unit(2, "meters"),
  6794. weight: math.unit(86, "kg"),
  6795. name: "Front (Sporty)",
  6796. image: {
  6797. source: "./media/characters/rose/front-sporty.svg",
  6798. extra: 350/335,
  6799. bottom: 10/360
  6800. }
  6801. },
  6802. frontAlt: {
  6803. height: math.unit(1.6, "meters"),
  6804. weight: math.unit(86, "kg"),
  6805. name: "Front (Alt)",
  6806. image: {
  6807. source: "./media/characters/rose/front-alt.svg",
  6808. extra: 299/283,
  6809. bottom: 3/302
  6810. }
  6811. },
  6812. plush: {
  6813. height: math.unit(2, "meters"),
  6814. weight: math.unit(86/3, "kg"),
  6815. name: "Plush",
  6816. image: {
  6817. source: "./media/characters/rose/plush.svg",
  6818. extra: 361/337,
  6819. bottom: 11/372
  6820. }
  6821. },
  6822. },
  6823. [
  6824. {
  6825. name: "True Micro",
  6826. height: math.unit(9, "cm")
  6827. },
  6828. {
  6829. name: "Micro",
  6830. height: math.unit(16, "cm")
  6831. },
  6832. {
  6833. name: "Normal",
  6834. height: math.unit(1.85, "meters"),
  6835. default: true
  6836. },
  6837. {
  6838. name: "Mini-Macro",
  6839. height: math.unit(5, "meters")
  6840. },
  6841. {
  6842. name: "Macro",
  6843. height: math.unit(15, "meters")
  6844. },
  6845. {
  6846. name: "True Macro",
  6847. height: math.unit(40, "meters")
  6848. },
  6849. {
  6850. name: "City Scale",
  6851. height: math.unit(1, "km")
  6852. },
  6853. ]
  6854. ))
  6855. characterMakers.push(() => makeCharacter(
  6856. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6857. {
  6858. front: {
  6859. height: math.unit(2, "meters"),
  6860. weight: math.unit(350, "lbs"),
  6861. name: "Front",
  6862. image: {
  6863. source: "./media/characters/regal/front.svg"
  6864. }
  6865. },
  6866. back: {
  6867. height: math.unit(2, "meters"),
  6868. weight: math.unit(350, "lbs"),
  6869. name: "Back",
  6870. image: {
  6871. source: "./media/characters/regal/back.svg"
  6872. }
  6873. },
  6874. },
  6875. [
  6876. {
  6877. name: "Macro",
  6878. height: math.unit(350, "feet"),
  6879. default: true
  6880. }
  6881. ]
  6882. ))
  6883. characterMakers.push(() => makeCharacter(
  6884. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6885. {
  6886. front: {
  6887. height: math.unit(4 + 11 / 12, "feet"),
  6888. weight: math.unit(100, "lbs"),
  6889. name: "Front",
  6890. image: {
  6891. source: "./media/characters/opal/front.svg"
  6892. }
  6893. },
  6894. frontAlt: {
  6895. height: math.unit(4 + 11 / 12, "feet"),
  6896. weight: math.unit(100, "lbs"),
  6897. name: "Front (Alt)",
  6898. image: {
  6899. source: "./media/characters/opal/front-alt.svg"
  6900. }
  6901. },
  6902. },
  6903. [
  6904. {
  6905. name: "Small",
  6906. height: math.unit(4 + 11 / 12, "feet")
  6907. },
  6908. {
  6909. name: "Normal",
  6910. height: math.unit(20, "feet"),
  6911. default: true
  6912. },
  6913. {
  6914. name: "Macro",
  6915. height: math.unit(120, "feet")
  6916. },
  6917. {
  6918. name: "Megamacro",
  6919. height: math.unit(80, "miles")
  6920. },
  6921. {
  6922. name: "True Size",
  6923. height: math.unit(100000, "lightyears")
  6924. },
  6925. ]
  6926. ))
  6927. characterMakers.push(() => makeCharacter(
  6928. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6929. {
  6930. front: {
  6931. height: math.unit(6, "feet"),
  6932. weight: math.unit(200, "lbs"),
  6933. name: "Front",
  6934. image: {
  6935. source: "./media/characters/vector-wuff/front.svg"
  6936. }
  6937. }
  6938. },
  6939. [
  6940. {
  6941. name: "Normal",
  6942. height: math.unit(2.8, "meters")
  6943. },
  6944. {
  6945. name: "Macro",
  6946. height: math.unit(450, "meters"),
  6947. default: true
  6948. },
  6949. {
  6950. name: "Megamacro",
  6951. height: math.unit(15, "kilometers")
  6952. }
  6953. ]
  6954. ))
  6955. characterMakers.push(() => makeCharacter(
  6956. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6957. {
  6958. front: {
  6959. height: math.unit(6, "feet"),
  6960. weight: math.unit(256, "lbs"),
  6961. name: "Front",
  6962. image: {
  6963. source: "./media/characters/dannik/front.svg"
  6964. }
  6965. }
  6966. },
  6967. [
  6968. {
  6969. name: "Macro",
  6970. height: math.unit(69.57, "meters"),
  6971. default: true
  6972. },
  6973. ]
  6974. ))
  6975. characterMakers.push(() => makeCharacter(
  6976. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6977. {
  6978. front: {
  6979. height: math.unit(6, "feet"),
  6980. weight: math.unit(120, "lbs"),
  6981. name: "Front",
  6982. image: {
  6983. source: "./media/characters/azura-saharah/front.svg"
  6984. }
  6985. },
  6986. back: {
  6987. height: math.unit(6, "feet"),
  6988. weight: math.unit(120, "lbs"),
  6989. name: "Back",
  6990. image: {
  6991. source: "./media/characters/azura-saharah/back.svg"
  6992. }
  6993. },
  6994. },
  6995. [
  6996. {
  6997. name: "Macro",
  6998. height: math.unit(100, "feet"),
  6999. default: true
  7000. },
  7001. ]
  7002. ))
  7003. characterMakers.push(() => makeCharacter(
  7004. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7005. {
  7006. side: {
  7007. height: math.unit(5 + 4 / 12, "feet"),
  7008. weight: math.unit(163, "lbs"),
  7009. name: "Side",
  7010. image: {
  7011. source: "./media/characters/kennedy/side.svg"
  7012. }
  7013. }
  7014. },
  7015. [
  7016. {
  7017. name: "Standard Doggo",
  7018. height: math.unit(5 + 4 / 12, "feet")
  7019. },
  7020. {
  7021. name: "Big Doggo",
  7022. height: math.unit(25 + 3 / 12, "feet"),
  7023. default: true
  7024. },
  7025. ]
  7026. ))
  7027. characterMakers.push(() => makeCharacter(
  7028. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7029. {
  7030. front: {
  7031. height: math.unit(6, "feet"),
  7032. weight: math.unit(90, "lbs"),
  7033. name: "Front",
  7034. image: {
  7035. source: "./media/characters/odi-lunar/front.svg"
  7036. }
  7037. }
  7038. },
  7039. [
  7040. {
  7041. name: "Micro",
  7042. height: math.unit(3, "inches"),
  7043. default: true
  7044. },
  7045. {
  7046. name: "Normal",
  7047. height: math.unit(5.5, "feet")
  7048. }
  7049. ]
  7050. ))
  7051. characterMakers.push(() => makeCharacter(
  7052. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7053. {
  7054. back: {
  7055. height: math.unit(6, "feet"),
  7056. weight: math.unit(220, "lbs"),
  7057. name: "Back",
  7058. image: {
  7059. source: "./media/characters/mandake/back.svg"
  7060. }
  7061. }
  7062. },
  7063. [
  7064. {
  7065. name: "Normal",
  7066. height: math.unit(7, "feet"),
  7067. default: true
  7068. },
  7069. {
  7070. name: "Macro",
  7071. height: math.unit(78, "feet")
  7072. },
  7073. {
  7074. name: "Macro+",
  7075. height: math.unit(300, "meters")
  7076. },
  7077. {
  7078. name: "Macro++",
  7079. height: math.unit(2400, "feet")
  7080. },
  7081. {
  7082. name: "Megamacro",
  7083. height: math.unit(5167, "meters")
  7084. },
  7085. {
  7086. name: "Gigamacro",
  7087. height: math.unit(41769, "miles")
  7088. },
  7089. ]
  7090. ))
  7091. characterMakers.push(() => makeCharacter(
  7092. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7093. {
  7094. front: {
  7095. height: math.unit(6, "feet"),
  7096. weight: math.unit(120, "lbs"),
  7097. name: "Front",
  7098. image: {
  7099. source: "./media/characters/yozey/front.svg"
  7100. }
  7101. },
  7102. frontAlt: {
  7103. height: math.unit(6, "feet"),
  7104. weight: math.unit(120, "lbs"),
  7105. name: "Front (Alt)",
  7106. image: {
  7107. source: "./media/characters/yozey/front-alt.svg"
  7108. }
  7109. },
  7110. side: {
  7111. height: math.unit(6, "feet"),
  7112. weight: math.unit(120, "lbs"),
  7113. name: "Side",
  7114. image: {
  7115. source: "./media/characters/yozey/side.svg"
  7116. }
  7117. },
  7118. },
  7119. [
  7120. {
  7121. name: "Micro",
  7122. height: math.unit(3, "inches"),
  7123. default: true
  7124. },
  7125. {
  7126. name: "Normal",
  7127. height: math.unit(6, "feet")
  7128. }
  7129. ]
  7130. ))
  7131. characterMakers.push(() => makeCharacter(
  7132. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7133. {
  7134. front: {
  7135. height: math.unit(6, "feet"),
  7136. weight: math.unit(103, "lbs"),
  7137. name: "Front",
  7138. image: {
  7139. source: "./media/characters/valeska-voss/front.svg"
  7140. }
  7141. }
  7142. },
  7143. [
  7144. {
  7145. name: "Mini-Sized Sub",
  7146. height: math.unit(3.1, "inches")
  7147. },
  7148. {
  7149. name: "Mid-Sized Sub",
  7150. height: math.unit(6.2, "inches")
  7151. },
  7152. {
  7153. name: "Full-Sized Sub",
  7154. height: math.unit(9.3, "inches")
  7155. },
  7156. {
  7157. name: "Normal",
  7158. height: math.unit(5 + 2 / 12, "foot"),
  7159. default: true
  7160. },
  7161. ]
  7162. ))
  7163. characterMakers.push(() => makeCharacter(
  7164. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7165. {
  7166. front: {
  7167. height: math.unit(6, "feet"),
  7168. weight: math.unit(160, "lbs"),
  7169. name: "Front",
  7170. image: {
  7171. source: "./media/characters/gene-zeta/front.svg",
  7172. extra: 3006 / 2826,
  7173. bottom: 182 / 3188
  7174. }
  7175. }
  7176. },
  7177. [
  7178. {
  7179. name: "Micro",
  7180. height: math.unit(6, "inches")
  7181. },
  7182. {
  7183. name: "Normal",
  7184. height: math.unit(5 + 11 / 12, "foot"),
  7185. default: true
  7186. },
  7187. {
  7188. name: "Macro",
  7189. height: math.unit(140, "feet")
  7190. },
  7191. {
  7192. name: "Supercharged",
  7193. height: math.unit(2500, "feet")
  7194. },
  7195. ]
  7196. ))
  7197. characterMakers.push(() => makeCharacter(
  7198. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7199. {
  7200. front: {
  7201. height: math.unit(6, "feet"),
  7202. weight: math.unit(350, "lbs"),
  7203. name: "Front",
  7204. image: {
  7205. source: "./media/characters/razinox/front.svg",
  7206. extra: 1686 / 1548,
  7207. bottom: 28.2 / 1868
  7208. }
  7209. },
  7210. back: {
  7211. height: math.unit(6, "feet"),
  7212. weight: math.unit(350, "lbs"),
  7213. name: "Back",
  7214. image: {
  7215. source: "./media/characters/razinox/back.svg",
  7216. extra: 1660 / 1590,
  7217. bottom: 15 / 1665
  7218. }
  7219. },
  7220. },
  7221. [
  7222. {
  7223. name: "Normal",
  7224. height: math.unit(10 + 8 / 12, "foot")
  7225. },
  7226. {
  7227. name: "Minimacro",
  7228. height: math.unit(15, "foot")
  7229. },
  7230. {
  7231. name: "Macro",
  7232. height: math.unit(60, "foot"),
  7233. default: true
  7234. },
  7235. {
  7236. name: "Megamacro",
  7237. height: math.unit(5, "miles")
  7238. },
  7239. {
  7240. name: "Gigamacro",
  7241. height: math.unit(6000, "miles")
  7242. },
  7243. ]
  7244. ))
  7245. characterMakers.push(() => makeCharacter(
  7246. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7247. {
  7248. front: {
  7249. height: math.unit(6, "feet"),
  7250. weight: math.unit(150, "lbs"),
  7251. name: "Front",
  7252. image: {
  7253. source: "./media/characters/cobalt/front.svg"
  7254. }
  7255. }
  7256. },
  7257. [
  7258. {
  7259. name: "Normal",
  7260. height: math.unit(8 + 1 / 12, "foot")
  7261. },
  7262. {
  7263. name: "Macro",
  7264. height: math.unit(111, "foot"),
  7265. default: true
  7266. },
  7267. {
  7268. name: "Supracosmic",
  7269. height: math.unit(1e42, "feet")
  7270. },
  7271. ]
  7272. ))
  7273. characterMakers.push(() => makeCharacter(
  7274. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7275. {
  7276. front: {
  7277. height: math.unit(6, "feet"),
  7278. weight: math.unit(140, "lbs"),
  7279. name: "Front",
  7280. image: {
  7281. source: "./media/characters/amanda/front.svg"
  7282. }
  7283. }
  7284. },
  7285. [
  7286. {
  7287. name: "Micro",
  7288. height: math.unit(5, "inches"),
  7289. default: true
  7290. },
  7291. ]
  7292. ))
  7293. characterMakers.push(() => makeCharacter(
  7294. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7295. {
  7296. front: {
  7297. height: math.unit(2.75, "meters"),
  7298. weight: math.unit(1200, "lb"),
  7299. name: "Front",
  7300. image: {
  7301. source: "./media/characters/teal/front.svg",
  7302. extra: 2463 / 2320,
  7303. bottom: 166 / 2629
  7304. }
  7305. },
  7306. back: {
  7307. height: math.unit(2.75, "meters"),
  7308. weight: math.unit(1200, "lb"),
  7309. name: "Back",
  7310. image: {
  7311. source: "./media/characters/teal/back.svg",
  7312. extra: 2580 / 2489,
  7313. bottom: 151 / 2731
  7314. }
  7315. },
  7316. sitting: {
  7317. height: math.unit(1.9, "meters"),
  7318. weight: math.unit(1200, "lb"),
  7319. name: "Sitting",
  7320. image: {
  7321. source: "./media/characters/teal/sitting.svg",
  7322. extra: 623 / 590,
  7323. bottom: 121 / 744
  7324. }
  7325. },
  7326. standing: {
  7327. height: math.unit(2.75, "meters"),
  7328. weight: math.unit(1200, "lb"),
  7329. name: "Standing",
  7330. image: {
  7331. source: "./media/characters/teal/standing.svg",
  7332. extra: 923 / 893,
  7333. bottom: 60 / 983
  7334. }
  7335. },
  7336. stretching: {
  7337. height: math.unit(3.65, "meters"),
  7338. weight: math.unit(1200, "lb"),
  7339. name: "Stretching",
  7340. image: {
  7341. source: "./media/characters/teal/stretching.svg",
  7342. extra: 1276 / 1244,
  7343. bottom: 0 / 1276
  7344. }
  7345. },
  7346. legged: {
  7347. height: math.unit(1.3, "meters"),
  7348. weight: math.unit(100, "lb"),
  7349. name: "Legged",
  7350. image: {
  7351. source: "./media/characters/teal/legged.svg",
  7352. extra: 462 / 437,
  7353. bottom: 24 / 486
  7354. }
  7355. },
  7356. naga: {
  7357. height: math.unit(5.4, "meters"),
  7358. weight: math.unit(4000, "lb"),
  7359. name: "Naga",
  7360. image: {
  7361. source: "./media/characters/teal/naga.svg",
  7362. extra: 1902 / 1858,
  7363. bottom: 0 / 1902
  7364. }
  7365. },
  7366. hand: {
  7367. height: math.unit(0.52, "meters"),
  7368. name: "Hand",
  7369. image: {
  7370. source: "./media/characters/teal/hand.svg"
  7371. }
  7372. },
  7373. maw: {
  7374. height: math.unit(0.43, "meters"),
  7375. name: "Maw",
  7376. image: {
  7377. source: "./media/characters/teal/maw.svg"
  7378. }
  7379. },
  7380. slit: {
  7381. height: math.unit(0.25, "meters"),
  7382. name: "Slit",
  7383. image: {
  7384. source: "./media/characters/teal/slit.svg"
  7385. }
  7386. },
  7387. },
  7388. [
  7389. {
  7390. name: "Normal",
  7391. height: math.unit(2.75, "meters"),
  7392. default: true
  7393. },
  7394. {
  7395. name: "Macro",
  7396. height: math.unit(300, "feet")
  7397. },
  7398. {
  7399. name: "Macro+",
  7400. height: math.unit(2000, "feet")
  7401. },
  7402. ]
  7403. ))
  7404. characterMakers.push(() => makeCharacter(
  7405. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7406. {
  7407. frontCat: {
  7408. height: math.unit(6, "feet"),
  7409. weight: math.unit(180, "lbs"),
  7410. name: "Front (Cat)",
  7411. image: {
  7412. source: "./media/characters/ravin-amulet/front-cat.svg"
  7413. }
  7414. },
  7415. frontCatAlt: {
  7416. height: math.unit(6, "feet"),
  7417. weight: math.unit(180, "lbs"),
  7418. name: "Front (Alt, Cat)",
  7419. image: {
  7420. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7421. }
  7422. },
  7423. frontWerewolf: {
  7424. height: math.unit(6 * 1.2, "feet"),
  7425. weight: math.unit(225, "lbs"),
  7426. name: "Front (Werewolf)",
  7427. image: {
  7428. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7429. }
  7430. },
  7431. backWerewolf: {
  7432. height: math.unit(6 * 1.2, "feet"),
  7433. weight: math.unit(225, "lbs"),
  7434. name: "Back (Werewolf)",
  7435. image: {
  7436. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7437. }
  7438. },
  7439. },
  7440. [
  7441. {
  7442. name: "Nano",
  7443. height: math.unit(1, "micrometer")
  7444. },
  7445. {
  7446. name: "Micro",
  7447. height: math.unit(1, "inch")
  7448. },
  7449. {
  7450. name: "Normal",
  7451. height: math.unit(6, "feet"),
  7452. default: true
  7453. },
  7454. {
  7455. name: "Macro",
  7456. height: math.unit(60, "feet")
  7457. }
  7458. ]
  7459. ))
  7460. characterMakers.push(() => makeCharacter(
  7461. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7462. {
  7463. front: {
  7464. height: math.unit(6, "feet"),
  7465. weight: math.unit(165, "lbs"),
  7466. name: "Front",
  7467. image: {
  7468. source: "./media/characters/fluoresce/front.svg"
  7469. }
  7470. }
  7471. },
  7472. [
  7473. {
  7474. name: "Micro",
  7475. height: math.unit(6, "cm")
  7476. },
  7477. {
  7478. name: "Normal",
  7479. height: math.unit(5 + 7 / 12, "feet"),
  7480. default: true
  7481. },
  7482. {
  7483. name: "Macro",
  7484. height: math.unit(56, "feet")
  7485. },
  7486. {
  7487. name: "Megamacro",
  7488. height: math.unit(1.9, "miles")
  7489. },
  7490. ]
  7491. ))
  7492. characterMakers.push(() => makeCharacter(
  7493. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7494. {
  7495. front: {
  7496. height: math.unit(9 + 6 / 12, "feet"),
  7497. weight: math.unit(523, "lbs"),
  7498. name: "Side",
  7499. image: {
  7500. source: "./media/characters/aurora/side.svg"
  7501. }
  7502. }
  7503. },
  7504. [
  7505. {
  7506. name: "Normal",
  7507. height: math.unit(9 + 6 / 12, "feet")
  7508. },
  7509. {
  7510. name: "Macro",
  7511. height: math.unit(96, "feet"),
  7512. default: true
  7513. },
  7514. {
  7515. name: "Macro+",
  7516. height: math.unit(243, "feet")
  7517. },
  7518. ]
  7519. ))
  7520. characterMakers.push(() => makeCharacter(
  7521. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7522. {
  7523. front: {
  7524. height: math.unit(194, "cm"),
  7525. weight: math.unit(90, "kg"),
  7526. name: "Front",
  7527. image: {
  7528. source: "./media/characters/ranek/front.svg"
  7529. }
  7530. },
  7531. side: {
  7532. height: math.unit(194, "cm"),
  7533. weight: math.unit(90, "kg"),
  7534. name: "Side",
  7535. image: {
  7536. source: "./media/characters/ranek/side.svg"
  7537. }
  7538. },
  7539. back: {
  7540. height: math.unit(194, "cm"),
  7541. weight: math.unit(90, "kg"),
  7542. name: "Back",
  7543. image: {
  7544. source: "./media/characters/ranek/back.svg"
  7545. }
  7546. },
  7547. feral: {
  7548. height: math.unit(30, "cm"),
  7549. weight: math.unit(1.6, "lbs"),
  7550. name: "Feral",
  7551. image: {
  7552. source: "./media/characters/ranek/feral.svg"
  7553. }
  7554. },
  7555. },
  7556. [
  7557. {
  7558. name: "Normal",
  7559. height: math.unit(194, "cm"),
  7560. default: true
  7561. },
  7562. {
  7563. name: "Macro",
  7564. height: math.unit(100, "meters")
  7565. },
  7566. ]
  7567. ))
  7568. characterMakers.push(() => makeCharacter(
  7569. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7570. {
  7571. front: {
  7572. height: math.unit(5 + 6 / 12, "feet"),
  7573. weight: math.unit(153, "lbs"),
  7574. name: "Front",
  7575. image: {
  7576. source: "./media/characters/andrew-cooper/front.svg"
  7577. }
  7578. },
  7579. },
  7580. [
  7581. {
  7582. name: "Nano",
  7583. height: math.unit(1, "mm")
  7584. },
  7585. {
  7586. name: "Micro",
  7587. height: math.unit(2, "inches")
  7588. },
  7589. {
  7590. name: "Normal",
  7591. height: math.unit(5 + 6 / 12, "feet"),
  7592. default: true
  7593. }
  7594. ]
  7595. ))
  7596. characterMakers.push(() => makeCharacter(
  7597. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7598. {
  7599. front: {
  7600. height: math.unit(6, "feet"),
  7601. weight: math.unit(180, "lbs"),
  7602. name: "Front",
  7603. image: {
  7604. source: "./media/characters/akane-sato/front.svg",
  7605. extra: 1219 / 1140
  7606. }
  7607. },
  7608. back: {
  7609. height: math.unit(6, "feet"),
  7610. weight: math.unit(180, "lbs"),
  7611. name: "Back",
  7612. image: {
  7613. source: "./media/characters/akane-sato/back.svg",
  7614. extra: 1219 / 1170
  7615. }
  7616. },
  7617. },
  7618. [
  7619. {
  7620. name: "Normal",
  7621. height: math.unit(2.5, "meters")
  7622. },
  7623. {
  7624. name: "Macro",
  7625. height: math.unit(250, "meters"),
  7626. default: true
  7627. },
  7628. {
  7629. name: "Megamacro",
  7630. height: math.unit(25, "km")
  7631. },
  7632. ]
  7633. ))
  7634. characterMakers.push(() => makeCharacter(
  7635. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7636. {
  7637. front: {
  7638. height: math.unit(6, "feet"),
  7639. weight: math.unit(65, "kg"),
  7640. name: "Front",
  7641. image: {
  7642. source: "./media/characters/rook/front.svg",
  7643. extra: 960 / 950
  7644. }
  7645. }
  7646. },
  7647. [
  7648. {
  7649. name: "Normal",
  7650. height: math.unit(8.8, "feet")
  7651. },
  7652. {
  7653. name: "Macro",
  7654. height: math.unit(88, "feet"),
  7655. default: true
  7656. },
  7657. {
  7658. name: "Megamacro",
  7659. height: math.unit(8, "miles")
  7660. },
  7661. ]
  7662. ))
  7663. characterMakers.push(() => makeCharacter(
  7664. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7665. {
  7666. front: {
  7667. height: math.unit(12 + 2 / 12, "feet"),
  7668. weight: math.unit(808, "lbs"),
  7669. name: "Front",
  7670. image: {
  7671. source: "./media/characters/prodigy/front.svg"
  7672. }
  7673. }
  7674. },
  7675. [
  7676. {
  7677. name: "Normal",
  7678. height: math.unit(12 + 2 / 12, "feet"),
  7679. default: true
  7680. },
  7681. {
  7682. name: "Macro",
  7683. height: math.unit(143, "feet")
  7684. },
  7685. {
  7686. name: "Macro+",
  7687. height: math.unit(400, "feet")
  7688. },
  7689. ]
  7690. ))
  7691. characterMakers.push(() => makeCharacter(
  7692. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7693. {
  7694. front: {
  7695. height: math.unit(6, "feet"),
  7696. weight: math.unit(225, "lbs"),
  7697. name: "Front",
  7698. image: {
  7699. source: "./media/characters/daniel/front.svg"
  7700. }
  7701. },
  7702. leaning: {
  7703. height: math.unit(6, "feet"),
  7704. weight: math.unit(225, "lbs"),
  7705. name: "Leaning",
  7706. image: {
  7707. source: "./media/characters/daniel/leaning.svg"
  7708. }
  7709. },
  7710. },
  7711. [
  7712. {
  7713. name: "Macro",
  7714. height: math.unit(1000, "feet"),
  7715. default: true
  7716. },
  7717. ]
  7718. ))
  7719. characterMakers.push(() => makeCharacter(
  7720. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7721. {
  7722. front: {
  7723. height: math.unit(6, "feet"),
  7724. weight: math.unit(88, "lbs"),
  7725. name: "Front",
  7726. image: {
  7727. source: "./media/characters/chiros/front.svg",
  7728. extra: 306 / 226
  7729. }
  7730. },
  7731. side: {
  7732. height: math.unit(6, "feet"),
  7733. weight: math.unit(88, "lbs"),
  7734. name: "Side",
  7735. image: {
  7736. source: "./media/characters/chiros/side.svg",
  7737. extra: 306 / 226
  7738. }
  7739. },
  7740. },
  7741. [
  7742. {
  7743. name: "Normal",
  7744. height: math.unit(6, "cm"),
  7745. default: true
  7746. },
  7747. ]
  7748. ))
  7749. characterMakers.push(() => makeCharacter(
  7750. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7751. {
  7752. front: {
  7753. height: math.unit(6, "feet"),
  7754. weight: math.unit(100, "lbs"),
  7755. name: "Front",
  7756. image: {
  7757. source: "./media/characters/selka/front.svg",
  7758. extra: 947 / 887
  7759. }
  7760. }
  7761. },
  7762. [
  7763. {
  7764. name: "Normal",
  7765. height: math.unit(5, "cm"),
  7766. default: true
  7767. },
  7768. ]
  7769. ))
  7770. characterMakers.push(() => makeCharacter(
  7771. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7772. {
  7773. front: {
  7774. height: math.unit(8 + 3 / 12, "feet"),
  7775. weight: math.unit(424, "lbs"),
  7776. name: "Front",
  7777. image: {
  7778. source: "./media/characters/verin/front.svg",
  7779. extra: 1845 / 1550
  7780. }
  7781. },
  7782. frontArmored: {
  7783. height: math.unit(8 + 3 / 12, "feet"),
  7784. weight: math.unit(424, "lbs"),
  7785. name: "Front (Armored)",
  7786. image: {
  7787. source: "./media/characters/verin/front-armor.svg",
  7788. extra: 1845 / 1550,
  7789. bottom: 0.01
  7790. }
  7791. },
  7792. back: {
  7793. height: math.unit(8 + 3 / 12, "feet"),
  7794. weight: math.unit(424, "lbs"),
  7795. name: "Back",
  7796. image: {
  7797. source: "./media/characters/verin/back.svg",
  7798. bottom: 0.1,
  7799. extra: 1
  7800. }
  7801. },
  7802. foot: {
  7803. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7804. name: "Foot",
  7805. image: {
  7806. source: "./media/characters/verin/foot.svg"
  7807. }
  7808. },
  7809. },
  7810. [
  7811. {
  7812. name: "Normal",
  7813. height: math.unit(8 + 3 / 12, "feet")
  7814. },
  7815. {
  7816. name: "Minimacro",
  7817. height: math.unit(21, "feet"),
  7818. default: true
  7819. },
  7820. {
  7821. name: "Macro",
  7822. height: math.unit(626, "feet")
  7823. },
  7824. ]
  7825. ))
  7826. characterMakers.push(() => makeCharacter(
  7827. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7828. {
  7829. front: {
  7830. height: math.unit(2.718, "meters"),
  7831. weight: math.unit(150, "lbs"),
  7832. name: "Front",
  7833. image: {
  7834. source: "./media/characters/sovrim-terraquian/front.svg"
  7835. }
  7836. },
  7837. back: {
  7838. height: math.unit(2.718, "meters"),
  7839. weight: math.unit(150, "lbs"),
  7840. name: "Back",
  7841. image: {
  7842. source: "./media/characters/sovrim-terraquian/back.svg"
  7843. }
  7844. }
  7845. },
  7846. [
  7847. {
  7848. name: "Micro",
  7849. height: math.unit(2, "inches")
  7850. },
  7851. {
  7852. name: "Small",
  7853. height: math.unit(1, "meter")
  7854. },
  7855. {
  7856. name: "Normal",
  7857. height: math.unit(Math.E, "meters"),
  7858. default: true
  7859. },
  7860. {
  7861. name: "Macro",
  7862. height: math.unit(20, "meters")
  7863. },
  7864. {
  7865. name: "Macro+",
  7866. height: math.unit(400, "meters")
  7867. },
  7868. ]
  7869. ))
  7870. characterMakers.push(() => makeCharacter(
  7871. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7872. {
  7873. front: {
  7874. height: math.unit(7, "feet"),
  7875. weight: math.unit(489, "lbs"),
  7876. name: "Front",
  7877. image: {
  7878. source: "./media/characters/reece-silvermane/front.svg",
  7879. bottom: 0.02,
  7880. extra: 1
  7881. }
  7882. },
  7883. },
  7884. [
  7885. {
  7886. name: "Macro",
  7887. height: math.unit(1.5, "miles"),
  7888. default: true
  7889. },
  7890. ]
  7891. ))
  7892. characterMakers.push(() => makeCharacter(
  7893. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7894. {
  7895. front: {
  7896. height: math.unit(6, "feet"),
  7897. weight: math.unit(78, "kg"),
  7898. name: "Front",
  7899. image: {
  7900. source: "./media/characters/kane/front.svg",
  7901. extra: 978 / 899
  7902. }
  7903. },
  7904. },
  7905. [
  7906. {
  7907. name: "Normal",
  7908. height: math.unit(2.1, "m"),
  7909. },
  7910. {
  7911. name: "Macro",
  7912. height: math.unit(1, "km"),
  7913. default: true
  7914. },
  7915. ]
  7916. ))
  7917. characterMakers.push(() => makeCharacter(
  7918. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7919. {
  7920. front: {
  7921. height: math.unit(6, "feet"),
  7922. weight: math.unit(200, "kg"),
  7923. name: "Front",
  7924. image: {
  7925. source: "./media/characters/tegon/front.svg",
  7926. bottom: 0.01,
  7927. extra: 1
  7928. }
  7929. },
  7930. },
  7931. [
  7932. {
  7933. name: "Micro",
  7934. height: math.unit(1, "inch")
  7935. },
  7936. {
  7937. name: "Normal",
  7938. height: math.unit(6 + 3 / 12, "feet"),
  7939. default: true
  7940. },
  7941. {
  7942. name: "Macro",
  7943. height: math.unit(300, "feet")
  7944. },
  7945. {
  7946. name: "Megamacro",
  7947. height: math.unit(69, "miles")
  7948. },
  7949. ]
  7950. ))
  7951. characterMakers.push(() => makeCharacter(
  7952. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7953. {
  7954. side: {
  7955. height: math.unit(6, "feet"),
  7956. weight: math.unit(2304, "lbs"),
  7957. name: "Side",
  7958. image: {
  7959. source: "./media/characters/arcturax/side.svg",
  7960. extra: 790 / 376,
  7961. bottom: 0.01
  7962. }
  7963. },
  7964. },
  7965. [
  7966. {
  7967. name: "Micro",
  7968. height: math.unit(2, "inch")
  7969. },
  7970. {
  7971. name: "Normal",
  7972. height: math.unit(6, "feet")
  7973. },
  7974. {
  7975. name: "Macro",
  7976. height: math.unit(39, "feet"),
  7977. default: true
  7978. },
  7979. {
  7980. name: "Megamacro",
  7981. height: math.unit(7, "miles")
  7982. },
  7983. ]
  7984. ))
  7985. characterMakers.push(() => makeCharacter(
  7986. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7987. {
  7988. front: {
  7989. height: math.unit(6, "feet"),
  7990. weight: math.unit(50, "lbs"),
  7991. name: "Front",
  7992. image: {
  7993. source: "./media/characters/sentri/front.svg",
  7994. extra: 1750 / 1570,
  7995. bottom: 0.025
  7996. }
  7997. },
  7998. frontAlt: {
  7999. height: math.unit(6, "feet"),
  8000. weight: math.unit(50, "lbs"),
  8001. name: "Front (Alt)",
  8002. image: {
  8003. source: "./media/characters/sentri/front-alt.svg",
  8004. extra: 1750 / 1570,
  8005. bottom: 0.025
  8006. }
  8007. },
  8008. },
  8009. [
  8010. {
  8011. name: "Normal",
  8012. height: math.unit(15, "feet"),
  8013. default: true
  8014. },
  8015. {
  8016. name: "Macro",
  8017. height: math.unit(2500, "feet")
  8018. }
  8019. ]
  8020. ))
  8021. characterMakers.push(() => makeCharacter(
  8022. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8023. {
  8024. front: {
  8025. height: math.unit(5 + 8 / 12, "feet"),
  8026. weight: math.unit(130, "lbs"),
  8027. name: "Front",
  8028. image: {
  8029. source: "./media/characters/corvin/front.svg",
  8030. extra: 1803 / 1629
  8031. }
  8032. },
  8033. frontShirt: {
  8034. height: math.unit(5 + 8 / 12, "feet"),
  8035. weight: math.unit(130, "lbs"),
  8036. name: "Front (Shirt)",
  8037. image: {
  8038. source: "./media/characters/corvin/front-shirt.svg",
  8039. extra: 1803 / 1629
  8040. }
  8041. },
  8042. frontPoncho: {
  8043. height: math.unit(5 + 8 / 12, "feet"),
  8044. weight: math.unit(130, "lbs"),
  8045. name: "Front (Poncho)",
  8046. image: {
  8047. source: "./media/characters/corvin/front-poncho.svg",
  8048. extra: 1803 / 1629
  8049. }
  8050. },
  8051. side: {
  8052. height: math.unit(5 + 8 / 12, "feet"),
  8053. weight: math.unit(130, "lbs"),
  8054. name: "Side",
  8055. image: {
  8056. source: "./media/characters/corvin/side.svg",
  8057. extra: 1012 / 945
  8058. }
  8059. },
  8060. back: {
  8061. height: math.unit(5 + 8 / 12, "feet"),
  8062. weight: math.unit(130, "lbs"),
  8063. name: "Back",
  8064. image: {
  8065. source: "./media/characters/corvin/back.svg",
  8066. extra: 1803 / 1629
  8067. }
  8068. },
  8069. },
  8070. [
  8071. {
  8072. name: "Micro",
  8073. height: math.unit(3, "inches")
  8074. },
  8075. {
  8076. name: "Normal",
  8077. height: math.unit(5 + 8 / 12, "feet")
  8078. },
  8079. {
  8080. name: "Macro",
  8081. height: math.unit(300, "feet"),
  8082. default: true
  8083. },
  8084. {
  8085. name: "Megamacro",
  8086. height: math.unit(500, "miles")
  8087. }
  8088. ]
  8089. ))
  8090. characterMakers.push(() => makeCharacter(
  8091. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8092. {
  8093. front: {
  8094. height: math.unit(6, "feet"),
  8095. weight: math.unit(135, "lbs"),
  8096. name: "Front",
  8097. image: {
  8098. source: "./media/characters/q/front.svg",
  8099. extra: 854 / 752,
  8100. bottom: 0.005
  8101. }
  8102. },
  8103. back: {
  8104. height: math.unit(6, "feet"),
  8105. weight: math.unit(130, "lbs"),
  8106. name: "Back",
  8107. image: {
  8108. source: "./media/characters/q/back.svg",
  8109. extra: 854 / 752
  8110. }
  8111. },
  8112. },
  8113. [
  8114. {
  8115. name: "Macro",
  8116. height: math.unit(90, "feet"),
  8117. default: true
  8118. },
  8119. {
  8120. name: "Extra Macro",
  8121. height: math.unit(300, "feet"),
  8122. },
  8123. {
  8124. name: "BIG WALF",
  8125. height: math.unit(750, "feet"),
  8126. },
  8127. ]
  8128. ))
  8129. characterMakers.push(() => makeCharacter(
  8130. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8131. {
  8132. front: {
  8133. height: math.unit(6, "feet"),
  8134. weight: math.unit(150, "lbs"),
  8135. name: "Front",
  8136. image: {
  8137. source: "./media/characters/carley/front.svg",
  8138. extra: 3927 / 3540,
  8139. bottom: 29.2 / 735
  8140. }
  8141. }
  8142. },
  8143. [
  8144. {
  8145. name: "Normal",
  8146. height: math.unit(6 + 3 / 12, "feet")
  8147. },
  8148. {
  8149. name: "Macro",
  8150. height: math.unit(185, "feet"),
  8151. default: true
  8152. },
  8153. {
  8154. name: "Megamacro",
  8155. height: math.unit(8, "miles"),
  8156. },
  8157. ]
  8158. ))
  8159. characterMakers.push(() => makeCharacter(
  8160. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8161. {
  8162. front: {
  8163. height: math.unit(3, "feet"),
  8164. weight: math.unit(28, "lbs"),
  8165. name: "Front",
  8166. image: {
  8167. source: "./media/characters/citrine/front.svg"
  8168. }
  8169. }
  8170. },
  8171. [
  8172. {
  8173. name: "Normal",
  8174. height: math.unit(3, "feet"),
  8175. default: true
  8176. }
  8177. ]
  8178. ))
  8179. characterMakers.push(() => makeCharacter(
  8180. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8181. {
  8182. front: {
  8183. height: math.unit(14, "feet"),
  8184. weight: math.unit(1450, "kg"),
  8185. capacity: math.unit(15, "people"),
  8186. name: "Front",
  8187. image: {
  8188. source: "./media/characters/aura-starwind/front.svg",
  8189. extra: 1440/1327,
  8190. bottom: 11/1451
  8191. }
  8192. },
  8193. side: {
  8194. height: math.unit(14, "feet"),
  8195. weight: math.unit(1450, "kg"),
  8196. capacity: math.unit(15, "people"),
  8197. name: "Side",
  8198. image: {
  8199. source: "./media/characters/aura-starwind/side.svg",
  8200. extra: 1654 / 1497
  8201. }
  8202. },
  8203. taur: {
  8204. height: math.unit(18, "feet"),
  8205. weight: math.unit(5500, "kg"),
  8206. capacity: math.unit(50, "people"),
  8207. name: "Taur",
  8208. image: {
  8209. source: "./media/characters/aura-starwind/taur.svg",
  8210. extra: 1760 / 1650
  8211. }
  8212. },
  8213. feral: {
  8214. height: math.unit(46, "feet"),
  8215. weight: math.unit(25000, "kg"),
  8216. capacity: math.unit(120, "people"),
  8217. name: "Feral",
  8218. image: {
  8219. source: "./media/characters/aura-starwind/feral.svg"
  8220. }
  8221. },
  8222. },
  8223. [
  8224. {
  8225. name: "Normal",
  8226. height: math.unit(14, "feet"),
  8227. default: true
  8228. },
  8229. {
  8230. name: "Macro",
  8231. height: math.unit(50, "meters")
  8232. },
  8233. {
  8234. name: "Megamacro",
  8235. height: math.unit(5000, "meters")
  8236. },
  8237. {
  8238. name: "Gigamacro",
  8239. height: math.unit(100000, "kilometers")
  8240. },
  8241. ]
  8242. ))
  8243. characterMakers.push(() => makeCharacter(
  8244. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8245. {
  8246. front: {
  8247. height: math.unit(2 + 7 / 12, "feet"),
  8248. weight: math.unit(32, "lbs"),
  8249. name: "Front",
  8250. image: {
  8251. source: "./media/characters/rivet/front.svg",
  8252. extra: 1716 / 1658,
  8253. bottom: 0.03
  8254. }
  8255. },
  8256. foot: {
  8257. height: math.unit(0.551, "feet"),
  8258. name: "Rivet's Foot",
  8259. image: {
  8260. source: "./media/characters/rivet/foot.svg"
  8261. },
  8262. rename: true
  8263. }
  8264. },
  8265. [
  8266. {
  8267. name: "Micro",
  8268. height: math.unit(1.5, "inches"),
  8269. },
  8270. {
  8271. name: "Normal",
  8272. height: math.unit(2 + 7 / 12, "feet"),
  8273. default: true
  8274. },
  8275. {
  8276. name: "Macro",
  8277. height: math.unit(85, "feet")
  8278. },
  8279. {
  8280. name: "Megamacro",
  8281. height: math.unit(2.2, "km")
  8282. }
  8283. ]
  8284. ))
  8285. characterMakers.push(() => makeCharacter(
  8286. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8287. {
  8288. front: {
  8289. height: math.unit(5 + 9 / 12, "feet"),
  8290. weight: math.unit(150, "lbs"),
  8291. name: "Front",
  8292. image: {
  8293. source: "./media/characters/coffee/front.svg",
  8294. extra: 3666 / 3032,
  8295. bottom: 0.04
  8296. }
  8297. },
  8298. foot: {
  8299. height: math.unit(1.29, "feet"),
  8300. name: "Foot",
  8301. image: {
  8302. source: "./media/characters/coffee/foot.svg"
  8303. }
  8304. },
  8305. },
  8306. [
  8307. {
  8308. name: "Micro",
  8309. height: math.unit(2, "inches"),
  8310. },
  8311. {
  8312. name: "Normal",
  8313. height: math.unit(5 + 9 / 12, "feet"),
  8314. default: true
  8315. },
  8316. {
  8317. name: "Macro",
  8318. height: math.unit(800, "feet")
  8319. },
  8320. {
  8321. name: "Megamacro",
  8322. height: math.unit(25, "miles")
  8323. }
  8324. ]
  8325. ))
  8326. characterMakers.push(() => makeCharacter(
  8327. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8328. {
  8329. front: {
  8330. height: math.unit(6, "feet"),
  8331. weight: math.unit(200, "lbs"),
  8332. name: "Front",
  8333. image: {
  8334. source: "./media/characters/chari-gal/front.svg",
  8335. extra: 1568 / 1385,
  8336. bottom: 0.047
  8337. }
  8338. },
  8339. gigantamax: {
  8340. height: math.unit(6 * 16, "feet"),
  8341. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8342. name: "Gigantamax",
  8343. image: {
  8344. source: "./media/characters/chari-gal/gigantamax.svg",
  8345. extra: 1124 / 888,
  8346. bottom: 0.03
  8347. }
  8348. },
  8349. },
  8350. [
  8351. {
  8352. name: "Normal",
  8353. height: math.unit(5 + 7 / 12, "feet")
  8354. },
  8355. {
  8356. name: "Macro",
  8357. height: math.unit(200, "feet"),
  8358. default: true
  8359. }
  8360. ]
  8361. ))
  8362. characterMakers.push(() => makeCharacter(
  8363. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8364. {
  8365. front: {
  8366. height: math.unit(6, "feet"),
  8367. weight: math.unit(150, "lbs"),
  8368. name: "Front",
  8369. image: {
  8370. source: "./media/characters/nova/front.svg",
  8371. extra: 5000 / 4722,
  8372. bottom: 0.02
  8373. }
  8374. }
  8375. },
  8376. [
  8377. {
  8378. name: "Micro-",
  8379. height: math.unit(0.8, "inches")
  8380. },
  8381. {
  8382. name: "Micro",
  8383. height: math.unit(2, "inches"),
  8384. default: true
  8385. },
  8386. ]
  8387. ))
  8388. characterMakers.push(() => makeCharacter(
  8389. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8390. {
  8391. front: {
  8392. height: math.unit(3 + 1 / 12, "feet"),
  8393. weight: math.unit(21.7, "lbs"),
  8394. name: "Front",
  8395. image: {
  8396. source: "./media/characters/argent/front.svg",
  8397. extra: 1471 / 1331,
  8398. bottom: 100.8 / 1575.5
  8399. }
  8400. }
  8401. },
  8402. [
  8403. {
  8404. name: "Micro",
  8405. height: math.unit(2, "inches")
  8406. },
  8407. {
  8408. name: "Normal",
  8409. height: math.unit(3 + 1 / 12, "feet"),
  8410. default: true
  8411. },
  8412. {
  8413. name: "Macro",
  8414. height: math.unit(120, "feet")
  8415. },
  8416. ]
  8417. ))
  8418. characterMakers.push(() => makeCharacter(
  8419. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8420. {
  8421. lamp: {
  8422. height: math.unit(7 * 1559 / 989, "feet"),
  8423. name: "Magic Lamp",
  8424. image: {
  8425. source: "./media/characters/mira-al-cul/lamp.svg",
  8426. extra: 1617 / 1559
  8427. }
  8428. },
  8429. front: {
  8430. height: math.unit(7, "feet"),
  8431. name: "Front",
  8432. image: {
  8433. source: "./media/characters/mira-al-cul/front.svg",
  8434. extra: 1044 / 990
  8435. }
  8436. },
  8437. },
  8438. [
  8439. {
  8440. name: "Heavily Restricted",
  8441. height: math.unit(7 * 1559 / 989, "feet")
  8442. },
  8443. {
  8444. name: "Freshly Freed",
  8445. height: math.unit(50 * 1559 / 989, "feet")
  8446. },
  8447. {
  8448. name: "World Encompassing",
  8449. height: math.unit(10000 * 1559 / 989, "miles")
  8450. },
  8451. {
  8452. name: "Galactic",
  8453. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8454. },
  8455. {
  8456. name: "Palmed Universe",
  8457. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8458. default: true
  8459. },
  8460. {
  8461. name: "Multiversal Matriarch",
  8462. height: math.unit(8.87e10, "yottameters")
  8463. },
  8464. {
  8465. name: "Void Mother",
  8466. height: math.unit(3.14e110, "yottaparsecs")
  8467. },
  8468. {
  8469. name: "Toying with Transcendence",
  8470. height: math.unit(1e307, "meters")
  8471. },
  8472. ]
  8473. ))
  8474. characterMakers.push(() => makeCharacter(
  8475. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8476. {
  8477. front: {
  8478. height: math.unit(17 + 1 / 12, "feet"),
  8479. weight: math.unit(476.2 * 5, "lbs"),
  8480. name: "Front",
  8481. image: {
  8482. source: "./media/characters/kuro-shi-uchū/front.svg",
  8483. extra: 2329 / 1835,
  8484. bottom: 0.02
  8485. }
  8486. },
  8487. },
  8488. [
  8489. {
  8490. name: "Micro",
  8491. height: math.unit(2, "inches")
  8492. },
  8493. {
  8494. name: "Normal",
  8495. height: math.unit(12, "meters")
  8496. },
  8497. {
  8498. name: "Planetary",
  8499. height: math.unit(0.00929, "AU"),
  8500. default: true
  8501. },
  8502. {
  8503. name: "Universal",
  8504. height: math.unit(20, "gigaparsecs")
  8505. },
  8506. ]
  8507. ))
  8508. characterMakers.push(() => makeCharacter(
  8509. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8510. {
  8511. front: {
  8512. height: math.unit(5 + 2 / 12, "feet"),
  8513. weight: math.unit(120, "lbs"),
  8514. name: "Front",
  8515. image: {
  8516. source: "./media/characters/katherine/front.svg",
  8517. extra: 2075 / 1969
  8518. }
  8519. },
  8520. dress: {
  8521. height: math.unit(5 + 2 / 12, "feet"),
  8522. weight: math.unit(120, "lbs"),
  8523. name: "Dress",
  8524. image: {
  8525. source: "./media/characters/katherine/dress.svg",
  8526. extra: 2258 / 2064
  8527. }
  8528. },
  8529. },
  8530. [
  8531. {
  8532. name: "Micro",
  8533. height: math.unit(1, "inches"),
  8534. default: true
  8535. },
  8536. {
  8537. name: "Normal",
  8538. height: math.unit(5 + 2 / 12, "feet")
  8539. },
  8540. {
  8541. name: "Macro",
  8542. height: math.unit(100, "meters")
  8543. },
  8544. {
  8545. name: "Megamacro",
  8546. height: math.unit(80, "miles")
  8547. },
  8548. ]
  8549. ))
  8550. characterMakers.push(() => makeCharacter(
  8551. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8552. {
  8553. front: {
  8554. height: math.unit(7 + 8 / 12, "feet"),
  8555. weight: math.unit(250, "lbs"),
  8556. name: "Front",
  8557. image: {
  8558. source: "./media/characters/yevis/front.svg",
  8559. extra: 1938 / 1755
  8560. }
  8561. }
  8562. },
  8563. [
  8564. {
  8565. name: "Mortal",
  8566. height: math.unit(7 + 8 / 12, "feet")
  8567. },
  8568. {
  8569. name: "Battle",
  8570. height: math.unit(25 + 11 / 12, "feet")
  8571. },
  8572. {
  8573. name: "Wrath",
  8574. height: math.unit(1654 + 11 / 12, "feet")
  8575. },
  8576. {
  8577. name: "Planet Destroyer",
  8578. height: math.unit(12000, "miles")
  8579. },
  8580. {
  8581. name: "Galaxy Conqueror",
  8582. height: math.unit(1.45, "zettameters"),
  8583. default: true
  8584. },
  8585. {
  8586. name: "Universal War",
  8587. height: math.unit(184, "gigaparsecs")
  8588. },
  8589. {
  8590. name: "Eternity War",
  8591. height: math.unit(1.98e55, "yottaparsecs")
  8592. },
  8593. ]
  8594. ))
  8595. characterMakers.push(() => makeCharacter(
  8596. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8597. {
  8598. front: {
  8599. height: math.unit(5 + 8 / 12, "feet"),
  8600. weight: math.unit(63, "kg"),
  8601. name: "Front",
  8602. image: {
  8603. source: "./media/characters/xavier/front.svg",
  8604. extra: 944 / 883
  8605. }
  8606. },
  8607. frontStretch: {
  8608. height: math.unit(5 + 8 / 12, "feet"),
  8609. weight: math.unit(63, "kg"),
  8610. name: "Stretching",
  8611. image: {
  8612. source: "./media/characters/xavier/front-stretch.svg",
  8613. extra: 962 / 820
  8614. }
  8615. },
  8616. },
  8617. [
  8618. {
  8619. name: "Normal",
  8620. height: math.unit(5 + 8 / 12, "feet")
  8621. },
  8622. {
  8623. name: "Macro",
  8624. height: math.unit(100, "meters"),
  8625. default: true
  8626. },
  8627. {
  8628. name: "McLargeHuge",
  8629. height: math.unit(10, "miles")
  8630. },
  8631. ]
  8632. ))
  8633. characterMakers.push(() => makeCharacter(
  8634. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8635. {
  8636. front: {
  8637. height: math.unit(5 + 5 / 12, "feet"),
  8638. weight: math.unit(150, "lb"),
  8639. name: "Front",
  8640. image: {
  8641. source: "./media/characters/joshii/front.svg",
  8642. extra: 765 / 653,
  8643. bottom: 51 / 816
  8644. }
  8645. },
  8646. foot: {
  8647. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8648. name: "Foot",
  8649. image: {
  8650. source: "./media/characters/joshii/foot.svg"
  8651. }
  8652. },
  8653. },
  8654. [
  8655. {
  8656. name: "Micro",
  8657. height: math.unit(2, "inches"),
  8658. default: true
  8659. },
  8660. {
  8661. name: "Normal",
  8662. height: math.unit(5 + 5 / 12, "feet")
  8663. },
  8664. {
  8665. name: "Macro",
  8666. height: math.unit(785, "feet")
  8667. },
  8668. {
  8669. name: "Megamacro",
  8670. height: math.unit(24.5, "miles")
  8671. },
  8672. ]
  8673. ))
  8674. characterMakers.push(() => makeCharacter(
  8675. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8676. {
  8677. front: {
  8678. height: math.unit(6, "feet"),
  8679. weight: math.unit(150, "lb"),
  8680. name: "Front",
  8681. image: {
  8682. source: "./media/characters/goddess-elizabeth/front.svg",
  8683. extra: 1800 / 1525,
  8684. bottom: 0.005
  8685. }
  8686. },
  8687. foot: {
  8688. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8689. name: "Foot",
  8690. image: {
  8691. source: "./media/characters/goddess-elizabeth/foot.svg"
  8692. }
  8693. },
  8694. mouth: {
  8695. height: math.unit(6, "feet"),
  8696. name: "Mouth",
  8697. image: {
  8698. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8699. }
  8700. },
  8701. },
  8702. [
  8703. {
  8704. name: "Micro",
  8705. height: math.unit(12, "feet")
  8706. },
  8707. {
  8708. name: "Normal",
  8709. height: math.unit(80, "miles"),
  8710. default: true
  8711. },
  8712. {
  8713. name: "Macro",
  8714. height: math.unit(15000, "parsecs")
  8715. },
  8716. ]
  8717. ))
  8718. characterMakers.push(() => makeCharacter(
  8719. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8720. {
  8721. front: {
  8722. height: math.unit(5 + 9 / 12, "feet"),
  8723. weight: math.unit(144, "lb"),
  8724. name: "Front",
  8725. image: {
  8726. source: "./media/characters/kara/front.svg"
  8727. }
  8728. },
  8729. feet: {
  8730. height: math.unit(6 / 6.765, "feet"),
  8731. name: "Kara's Feet",
  8732. rename: true,
  8733. image: {
  8734. source: "./media/characters/kara/feet.svg"
  8735. }
  8736. },
  8737. },
  8738. [
  8739. {
  8740. name: "Normal",
  8741. height: math.unit(5 + 9 / 12, "feet")
  8742. },
  8743. {
  8744. name: "Macro",
  8745. height: math.unit(174, "feet"),
  8746. default: true
  8747. },
  8748. ]
  8749. ))
  8750. characterMakers.push(() => makeCharacter(
  8751. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8752. {
  8753. front: {
  8754. height: math.unit(18, "feet"),
  8755. weight: math.unit(4050, "lb"),
  8756. name: "Front",
  8757. image: {
  8758. source: "./media/characters/tyrone/front.svg",
  8759. extra: 2405 / 2270,
  8760. bottom: 182 / 2587
  8761. }
  8762. },
  8763. },
  8764. [
  8765. {
  8766. name: "Normal",
  8767. height: math.unit(18, "feet"),
  8768. default: true
  8769. },
  8770. {
  8771. name: "Macro",
  8772. height: math.unit(300, "feet")
  8773. },
  8774. {
  8775. name: "Megamacro",
  8776. height: math.unit(15, "km")
  8777. },
  8778. {
  8779. name: "Gigamacro",
  8780. height: math.unit(500, "km")
  8781. },
  8782. {
  8783. name: "Teramacro",
  8784. height: math.unit(0.5, "gigameters")
  8785. },
  8786. {
  8787. name: "Omnimacro",
  8788. height: math.unit(1e252, "yottauniverse")
  8789. },
  8790. ]
  8791. ))
  8792. characterMakers.push(() => makeCharacter(
  8793. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8794. {
  8795. front: {
  8796. height: math.unit(7 + 8 / 12, "feet"),
  8797. weight: math.unit(120, "lb"),
  8798. name: "Front",
  8799. image: {
  8800. source: "./media/characters/danny/front.svg",
  8801. extra: 1490 / 1350
  8802. }
  8803. },
  8804. back: {
  8805. height: math.unit(7 + 8 / 12, "feet"),
  8806. weight: math.unit(120, "lb"),
  8807. name: "Back",
  8808. image: {
  8809. source: "./media/characters/danny/back.svg",
  8810. extra: 1490 / 1350
  8811. }
  8812. },
  8813. },
  8814. [
  8815. {
  8816. name: "Normal",
  8817. height: math.unit(7 + 8 / 12, "feet"),
  8818. default: true
  8819. },
  8820. ]
  8821. ))
  8822. characterMakers.push(() => makeCharacter(
  8823. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8824. {
  8825. front: {
  8826. height: math.unit(3.5, "inches"),
  8827. weight: math.unit(19, "grams"),
  8828. name: "Front",
  8829. image: {
  8830. source: "./media/characters/mallow/front.svg",
  8831. extra: 471 / 431
  8832. }
  8833. },
  8834. back: {
  8835. height: math.unit(3.5, "inches"),
  8836. weight: math.unit(19, "grams"),
  8837. name: "Back",
  8838. image: {
  8839. source: "./media/characters/mallow/back.svg",
  8840. extra: 471 / 431
  8841. }
  8842. },
  8843. },
  8844. [
  8845. {
  8846. name: "Normal",
  8847. height: math.unit(3.5, "inches"),
  8848. default: true
  8849. },
  8850. ]
  8851. ))
  8852. characterMakers.push(() => makeCharacter(
  8853. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8854. {
  8855. front: {
  8856. height: math.unit(9, "feet"),
  8857. weight: math.unit(230, "kg"),
  8858. name: "Front",
  8859. image: {
  8860. source: "./media/characters/starry-aqua/front.svg"
  8861. }
  8862. },
  8863. back: {
  8864. height: math.unit(9, "feet"),
  8865. weight: math.unit(230, "kg"),
  8866. name: "Back",
  8867. image: {
  8868. source: "./media/characters/starry-aqua/back.svg"
  8869. }
  8870. },
  8871. hand: {
  8872. height: math.unit(9 * 0.1168, "feet"),
  8873. name: "Hand",
  8874. image: {
  8875. source: "./media/characters/starry-aqua/hand.svg"
  8876. }
  8877. },
  8878. foot: {
  8879. height: math.unit(9 * 0.18, "feet"),
  8880. name: "Foot",
  8881. image: {
  8882. source: "./media/characters/starry-aqua/foot.svg"
  8883. }
  8884. }
  8885. },
  8886. [
  8887. {
  8888. name: "Micro",
  8889. height: math.unit(3, "inches")
  8890. },
  8891. {
  8892. name: "Normal",
  8893. height: math.unit(9, "feet")
  8894. },
  8895. {
  8896. name: "Macro",
  8897. height: math.unit(300, "feet"),
  8898. default: true
  8899. },
  8900. {
  8901. name: "Megamacro",
  8902. height: math.unit(3200, "feet")
  8903. }
  8904. ]
  8905. ))
  8906. characterMakers.push(() => makeCharacter(
  8907. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8908. {
  8909. front: {
  8910. height: math.unit(6, "feet"),
  8911. weight: math.unit(230, "lb"),
  8912. name: "Front",
  8913. image: {
  8914. source: "./media/characters/luka/front.svg",
  8915. extra: 1,
  8916. bottom: 0.025
  8917. }
  8918. },
  8919. },
  8920. [
  8921. {
  8922. name: "Normal",
  8923. height: math.unit(12 + 8 / 12, "feet"),
  8924. default: true
  8925. },
  8926. {
  8927. name: "Minimacro",
  8928. height: math.unit(20, "feet")
  8929. },
  8930. {
  8931. name: "Macro",
  8932. height: math.unit(250, "feet")
  8933. },
  8934. {
  8935. name: "Megamacro",
  8936. height: math.unit(5, "miles")
  8937. },
  8938. {
  8939. name: "Gigamacro",
  8940. height: math.unit(8000, "miles")
  8941. },
  8942. ]
  8943. ))
  8944. characterMakers.push(() => makeCharacter(
  8945. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8946. {
  8947. front: {
  8948. height: math.unit(6, "feet"),
  8949. weight: math.unit(150, "lb"),
  8950. name: "Front",
  8951. image: {
  8952. source: "./media/characters/natalie-nightring/front.svg",
  8953. extra: 1,
  8954. bottom: 0.06
  8955. }
  8956. },
  8957. },
  8958. [
  8959. {
  8960. name: "Uh Oh",
  8961. height: math.unit(0.1, "mm")
  8962. },
  8963. {
  8964. name: "Small",
  8965. height: math.unit(3, "inches")
  8966. },
  8967. {
  8968. name: "Human Scale",
  8969. height: math.unit(6, "feet")
  8970. },
  8971. {
  8972. name: "Librarian",
  8973. height: math.unit(50, "feet"),
  8974. default: true
  8975. },
  8976. {
  8977. name: "Immense",
  8978. height: math.unit(200, "miles")
  8979. },
  8980. ]
  8981. ))
  8982. characterMakers.push(() => makeCharacter(
  8983. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8984. {
  8985. front: {
  8986. height: math.unit(6, "feet"),
  8987. weight: math.unit(180, "lbs"),
  8988. name: "Front",
  8989. image: {
  8990. source: "./media/characters/danni-rosie/front.svg",
  8991. extra: 1260 / 1128,
  8992. bottom: 0.022
  8993. }
  8994. },
  8995. },
  8996. [
  8997. {
  8998. name: "Micro",
  8999. height: math.unit(2, "inches"),
  9000. default: true
  9001. },
  9002. ]
  9003. ))
  9004. characterMakers.push(() => makeCharacter(
  9005. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9006. {
  9007. front: {
  9008. height: math.unit(5 + 9 / 12, "feet"),
  9009. weight: math.unit(220, "lb"),
  9010. name: "Front",
  9011. image: {
  9012. source: "./media/characters/samantha-kruse/front.svg",
  9013. extra: (985 / 935),
  9014. bottom: 0.03
  9015. }
  9016. },
  9017. frontUndressed: {
  9018. height: math.unit(5 + 9 / 12, "feet"),
  9019. weight: math.unit(220, "lb"),
  9020. name: "Front (Undressed)",
  9021. image: {
  9022. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9023. extra: (973 / 923),
  9024. bottom: 0.025
  9025. }
  9026. },
  9027. fat: {
  9028. height: math.unit(5 + 9 / 12, "feet"),
  9029. weight: math.unit(900, "lb"),
  9030. name: "Front (Fat)",
  9031. image: {
  9032. source: "./media/characters/samantha-kruse/fat.svg",
  9033. extra: 2688 / 2561
  9034. }
  9035. },
  9036. },
  9037. [
  9038. {
  9039. name: "Normal",
  9040. height: math.unit(5 + 9 / 12, "feet"),
  9041. default: true
  9042. }
  9043. ]
  9044. ))
  9045. characterMakers.push(() => makeCharacter(
  9046. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9047. {
  9048. back: {
  9049. height: math.unit(5 + 4 / 12, "feet"),
  9050. weight: math.unit(4963, "lb"),
  9051. name: "Back",
  9052. image: {
  9053. source: "./media/characters/amelia-rosie/back.svg",
  9054. extra: 1113 / 963,
  9055. bottom: 0.01
  9056. }
  9057. },
  9058. },
  9059. [
  9060. {
  9061. name: "Level 0",
  9062. height: math.unit(5 + 4 / 12, "feet")
  9063. },
  9064. {
  9065. name: "Level 1",
  9066. height: math.unit(164597, "feet"),
  9067. default: true
  9068. },
  9069. {
  9070. name: "Level 2",
  9071. height: math.unit(956243, "miles")
  9072. },
  9073. {
  9074. name: "Level 3",
  9075. height: math.unit(29421709423, "miles")
  9076. },
  9077. {
  9078. name: "Level 4",
  9079. height: math.unit(154, "lightyears")
  9080. },
  9081. {
  9082. name: "Level 5",
  9083. height: math.unit(4738272, "lightyears")
  9084. },
  9085. {
  9086. name: "Level 6",
  9087. height: math.unit(145787152896, "lightyears")
  9088. },
  9089. ]
  9090. ))
  9091. characterMakers.push(() => makeCharacter(
  9092. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9093. {
  9094. front: {
  9095. height: math.unit(5 + 11 / 12, "feet"),
  9096. weight: math.unit(65, "kg"),
  9097. name: "Front",
  9098. image: {
  9099. source: "./media/characters/rook-kitara/front.svg",
  9100. extra: 1347 / 1274,
  9101. bottom: 0.005
  9102. }
  9103. },
  9104. },
  9105. [
  9106. {
  9107. name: "Totally Unfair",
  9108. height: math.unit(1.8, "mm")
  9109. },
  9110. {
  9111. name: "Lap Rookie",
  9112. height: math.unit(1.4, "feet")
  9113. },
  9114. {
  9115. name: "Normal",
  9116. height: math.unit(5 + 11 / 12, "feet"),
  9117. default: true
  9118. },
  9119. {
  9120. name: "How Did This Happen",
  9121. height: math.unit(80, "miles")
  9122. }
  9123. ]
  9124. ))
  9125. characterMakers.push(() => makeCharacter(
  9126. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9127. {
  9128. front: {
  9129. height: math.unit(7, "feet"),
  9130. weight: math.unit(300, "lb"),
  9131. name: "Front",
  9132. image: {
  9133. source: "./media/characters/pisces/front.svg",
  9134. extra: 2255 / 2115,
  9135. bottom: 0.03
  9136. }
  9137. },
  9138. back: {
  9139. height: math.unit(7, "feet"),
  9140. weight: math.unit(300, "lb"),
  9141. name: "Back",
  9142. image: {
  9143. source: "./media/characters/pisces/back.svg",
  9144. extra: 2146 / 2055,
  9145. bottom: 0.04
  9146. }
  9147. },
  9148. },
  9149. [
  9150. {
  9151. name: "Normal",
  9152. height: math.unit(7, "feet"),
  9153. default: true
  9154. },
  9155. {
  9156. name: "Swimming Pool",
  9157. height: math.unit(12.2, "meters")
  9158. },
  9159. {
  9160. name: "Olympic Swimming Pool",
  9161. height: math.unit(56.3, "meters")
  9162. },
  9163. {
  9164. name: "Lake Superior",
  9165. height: math.unit(93900, "meters")
  9166. },
  9167. {
  9168. name: "Mediterranean Sea",
  9169. height: math.unit(644457, "meters")
  9170. },
  9171. {
  9172. name: "World's Oceans",
  9173. height: math.unit(4567491, "meters")
  9174. },
  9175. ]
  9176. ))
  9177. characterMakers.push(() => makeCharacter(
  9178. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9179. {
  9180. front: {
  9181. height: math.unit(2.3, "meters"),
  9182. weight: math.unit(120, "kg"),
  9183. name: "Front",
  9184. image: {
  9185. source: "./media/characters/zelas/front.svg"
  9186. }
  9187. },
  9188. side: {
  9189. height: math.unit(2.3, "meters"),
  9190. weight: math.unit(120, "kg"),
  9191. name: "Side",
  9192. image: {
  9193. source: "./media/characters/zelas/side.svg"
  9194. }
  9195. },
  9196. back: {
  9197. height: math.unit(2.3, "meters"),
  9198. weight: math.unit(120, "kg"),
  9199. name: "Back",
  9200. image: {
  9201. source: "./media/characters/zelas/back.svg"
  9202. }
  9203. },
  9204. foot: {
  9205. height: math.unit(1.116, "feet"),
  9206. name: "Foot",
  9207. image: {
  9208. source: "./media/characters/zelas/foot.svg"
  9209. }
  9210. },
  9211. },
  9212. [
  9213. {
  9214. name: "Normal",
  9215. height: math.unit(2.3, "meters")
  9216. },
  9217. {
  9218. name: "Macro",
  9219. height: math.unit(30, "meters"),
  9220. default: true
  9221. },
  9222. ]
  9223. ))
  9224. characterMakers.push(() => makeCharacter(
  9225. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9226. {
  9227. front: {
  9228. height: math.unit(1, "inch"),
  9229. weight: math.unit(0.21, "grams"),
  9230. name: "Front",
  9231. image: {
  9232. source: "./media/characters/talbot/front.svg",
  9233. extra: 594 / 544
  9234. }
  9235. },
  9236. },
  9237. [
  9238. {
  9239. name: "Micro",
  9240. height: math.unit(1, "inch"),
  9241. default: true
  9242. },
  9243. ]
  9244. ))
  9245. characterMakers.push(() => makeCharacter(
  9246. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9247. {
  9248. front: {
  9249. height: math.unit(3 + 3 / 12, "feet"),
  9250. weight: math.unit(51.8, "lb"),
  9251. name: "Front",
  9252. image: {
  9253. source: "./media/characters/fliss/front.svg",
  9254. extra: 840 / 640
  9255. }
  9256. },
  9257. },
  9258. [
  9259. {
  9260. name: "Teeny Tiny",
  9261. height: math.unit(1, "mm")
  9262. },
  9263. {
  9264. name: "Small",
  9265. height: math.unit(1, "inch"),
  9266. default: true
  9267. },
  9268. {
  9269. name: "Standard Sylveon",
  9270. height: math.unit(3 + 3 / 12, "feet")
  9271. },
  9272. {
  9273. name: "Large Nuisance",
  9274. height: math.unit(33, "feet")
  9275. },
  9276. {
  9277. name: "City Filler",
  9278. height: math.unit(3000, "feet")
  9279. },
  9280. {
  9281. name: "New Horizon",
  9282. height: math.unit(6000, "miles")
  9283. },
  9284. ]
  9285. ))
  9286. characterMakers.push(() => makeCharacter(
  9287. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9288. {
  9289. front: {
  9290. height: math.unit(5, "cm"),
  9291. weight: math.unit(1.94, "g"),
  9292. name: "Front",
  9293. image: {
  9294. source: "./media/characters/fleta/front.svg",
  9295. extra: 835 / 803
  9296. }
  9297. },
  9298. back: {
  9299. height: math.unit(5, "cm"),
  9300. weight: math.unit(1.94, "g"),
  9301. name: "Back",
  9302. image: {
  9303. source: "./media/characters/fleta/back.svg",
  9304. extra: 835 / 803
  9305. }
  9306. },
  9307. },
  9308. [
  9309. {
  9310. name: "Micro",
  9311. height: math.unit(5, "cm"),
  9312. default: true
  9313. },
  9314. ]
  9315. ))
  9316. characterMakers.push(() => makeCharacter(
  9317. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9318. {
  9319. front: {
  9320. height: math.unit(6, "feet"),
  9321. weight: math.unit(225, "lb"),
  9322. name: "Front",
  9323. image: {
  9324. source: "./media/characters/dominic/front.svg",
  9325. extra: 1770 / 1620,
  9326. bottom: 0.025
  9327. }
  9328. },
  9329. back: {
  9330. height: math.unit(6, "feet"),
  9331. weight: math.unit(225, "lb"),
  9332. name: "Back",
  9333. image: {
  9334. source: "./media/characters/dominic/back.svg",
  9335. extra: 1745 / 1620,
  9336. bottom: 0.065
  9337. }
  9338. },
  9339. },
  9340. [
  9341. {
  9342. name: "Nano",
  9343. height: math.unit(0.1, "mm")
  9344. },
  9345. {
  9346. name: "Micro-",
  9347. height: math.unit(1, "mm")
  9348. },
  9349. {
  9350. name: "Micro",
  9351. height: math.unit(4, "inches")
  9352. },
  9353. {
  9354. name: "Normal",
  9355. height: math.unit(6 + 4 / 12, "feet"),
  9356. default: true
  9357. },
  9358. {
  9359. name: "Macro",
  9360. height: math.unit(115, "feet")
  9361. },
  9362. {
  9363. name: "Macro+",
  9364. height: math.unit(955, "feet")
  9365. },
  9366. {
  9367. name: "Megamacro",
  9368. height: math.unit(8990, "feet")
  9369. },
  9370. {
  9371. name: "Gigmacro",
  9372. height: math.unit(9310, "miles")
  9373. },
  9374. {
  9375. name: "Teramacro",
  9376. height: math.unit(1567005010, "miles")
  9377. },
  9378. {
  9379. name: "Examacro",
  9380. height: math.unit(1425, "parsecs")
  9381. },
  9382. ]
  9383. ))
  9384. characterMakers.push(() => makeCharacter(
  9385. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9386. {
  9387. front: {
  9388. height: math.unit(400, "feet"),
  9389. weight: math.unit(44444444, "lb"),
  9390. name: "Front",
  9391. image: {
  9392. source: "./media/characters/major-colonel/front.svg"
  9393. }
  9394. },
  9395. back: {
  9396. height: math.unit(400, "feet"),
  9397. weight: math.unit(44444444, "lb"),
  9398. name: "Back",
  9399. image: {
  9400. source: "./media/characters/major-colonel/back.svg"
  9401. }
  9402. },
  9403. },
  9404. [
  9405. {
  9406. name: "Macro",
  9407. height: math.unit(400, "feet"),
  9408. default: true
  9409. },
  9410. ]
  9411. ))
  9412. characterMakers.push(() => makeCharacter(
  9413. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9414. {
  9415. catFront: {
  9416. height: math.unit(6, "feet"),
  9417. weight: math.unit(120, "lb"),
  9418. name: "Front (Cat Side)",
  9419. image: {
  9420. source: "./media/characters/axel-lycan/cat-front.svg",
  9421. extra: 430 / 402,
  9422. bottom: 43 / 472.35
  9423. }
  9424. },
  9425. catBack: {
  9426. height: math.unit(6, "feet"),
  9427. weight: math.unit(120, "lb"),
  9428. name: "Back (Cat Side)",
  9429. image: {
  9430. source: "./media/characters/axel-lycan/cat-back.svg",
  9431. extra: 447 / 419,
  9432. bottom: 23.3 / 469
  9433. }
  9434. },
  9435. wolfFront: {
  9436. height: math.unit(6, "feet"),
  9437. weight: math.unit(120, "lb"),
  9438. name: "Front (Wolf Side)",
  9439. image: {
  9440. source: "./media/characters/axel-lycan/wolf-front.svg",
  9441. extra: 485 / 456,
  9442. bottom: 19 / 504
  9443. }
  9444. },
  9445. wolfBack: {
  9446. height: math.unit(6, "feet"),
  9447. weight: math.unit(120, "lb"),
  9448. name: "Back (Wolf Side)",
  9449. image: {
  9450. source: "./media/characters/axel-lycan/wolf-back.svg",
  9451. extra: 475 / 438,
  9452. bottom: 39.2 / 514
  9453. }
  9454. },
  9455. },
  9456. [
  9457. {
  9458. name: "Macro",
  9459. height: math.unit(1, "km"),
  9460. default: true
  9461. },
  9462. ]
  9463. ))
  9464. characterMakers.push(() => makeCharacter(
  9465. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9466. {
  9467. front: {
  9468. height: math.unit(5 + 9 / 12, "feet"),
  9469. weight: math.unit(175, "lb"),
  9470. name: "Front",
  9471. image: {
  9472. source: "./media/characters/vanrel-hyena/front.svg",
  9473. extra: 1086 / 1010,
  9474. bottom: 0.04
  9475. }
  9476. },
  9477. },
  9478. [
  9479. {
  9480. name: "Normal",
  9481. height: math.unit(5 + 9 / 12, "feet"),
  9482. default: true
  9483. },
  9484. ]
  9485. ))
  9486. characterMakers.push(() => makeCharacter(
  9487. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9488. {
  9489. front: {
  9490. height: math.unit(6, "feet"),
  9491. weight: math.unit(103, "lb"),
  9492. name: "Front",
  9493. image: {
  9494. source: "./media/characters/abbott-absol/front.svg",
  9495. extra: 2010 / 1842
  9496. }
  9497. },
  9498. },
  9499. [
  9500. {
  9501. name: "Megamicro",
  9502. height: math.unit(0.1, "mm")
  9503. },
  9504. {
  9505. name: "Micro",
  9506. height: math.unit(1, "inch")
  9507. },
  9508. {
  9509. name: "Normal",
  9510. height: math.unit(6, "feet"),
  9511. default: true
  9512. },
  9513. ]
  9514. ))
  9515. characterMakers.push(() => makeCharacter(
  9516. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9517. {
  9518. front: {
  9519. height: math.unit(6, "feet"),
  9520. weight: math.unit(264, "lb"),
  9521. name: "Front",
  9522. image: {
  9523. source: "./media/characters/hector/front.svg",
  9524. extra: 2280 / 2130,
  9525. bottom: 0.07
  9526. }
  9527. },
  9528. },
  9529. [
  9530. {
  9531. name: "Normal",
  9532. height: math.unit(12.25, "foot"),
  9533. default: true
  9534. },
  9535. {
  9536. name: "Macro",
  9537. height: math.unit(160, "feet")
  9538. },
  9539. ]
  9540. ))
  9541. characterMakers.push(() => makeCharacter(
  9542. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9543. {
  9544. front: {
  9545. height: math.unit(6, "feet"),
  9546. weight: math.unit(150, "lb"),
  9547. name: "Front",
  9548. image: {
  9549. source: "./media/characters/sal/front.svg",
  9550. extra: 1846 / 1699,
  9551. bottom: 0.04
  9552. }
  9553. },
  9554. },
  9555. [
  9556. {
  9557. name: "Megamacro",
  9558. height: math.unit(10, "miles"),
  9559. default: true
  9560. },
  9561. ]
  9562. ))
  9563. characterMakers.push(() => makeCharacter(
  9564. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9565. {
  9566. front: {
  9567. height: math.unit(3, "meters"),
  9568. weight: math.unit(450, "kg"),
  9569. name: "front",
  9570. image: {
  9571. source: "./media/characters/ranger/front.svg",
  9572. extra: 2401 / 2243,
  9573. bottom: 0.05
  9574. }
  9575. },
  9576. },
  9577. [
  9578. {
  9579. name: "Normal",
  9580. height: math.unit(3, "meters"),
  9581. default: true
  9582. },
  9583. ]
  9584. ))
  9585. characterMakers.push(() => makeCharacter(
  9586. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9587. {
  9588. front: {
  9589. height: math.unit(14, "feet"),
  9590. weight: math.unit(800, "kg"),
  9591. name: "Front",
  9592. image: {
  9593. source: "./media/characters/theresa/front.svg",
  9594. extra: 3575 / 3346,
  9595. bottom: 0.03
  9596. }
  9597. },
  9598. },
  9599. [
  9600. {
  9601. name: "Normal",
  9602. height: math.unit(14, "feet"),
  9603. default: true
  9604. },
  9605. ]
  9606. ))
  9607. characterMakers.push(() => makeCharacter(
  9608. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9609. {
  9610. front: {
  9611. height: math.unit(6, "feet"),
  9612. weight: math.unit(3, "kg"),
  9613. name: "Front",
  9614. image: {
  9615. source: "./media/characters/ine/front.svg",
  9616. extra: 678 / 539,
  9617. bottom: 0.023
  9618. }
  9619. },
  9620. },
  9621. [
  9622. {
  9623. name: "Normal",
  9624. height: math.unit(2.265, "feet"),
  9625. default: true
  9626. },
  9627. ]
  9628. ))
  9629. characterMakers.push(() => makeCharacter(
  9630. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9631. {
  9632. front: {
  9633. height: math.unit(5, "feet"),
  9634. weight: math.unit(30, "kg"),
  9635. name: "Front",
  9636. image: {
  9637. source: "./media/characters/vial/front.svg",
  9638. extra: 1365 / 1277,
  9639. bottom: 0.04
  9640. }
  9641. },
  9642. },
  9643. [
  9644. {
  9645. name: "Normal",
  9646. height: math.unit(5, "feet"),
  9647. default: true
  9648. },
  9649. ]
  9650. ))
  9651. characterMakers.push(() => makeCharacter(
  9652. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9653. {
  9654. side: {
  9655. height: math.unit(3.4, "meters"),
  9656. weight: math.unit(1000, "lb"),
  9657. name: "Side",
  9658. image: {
  9659. source: "./media/characters/rovoska/side.svg",
  9660. extra: 4403 / 1515
  9661. }
  9662. },
  9663. },
  9664. [
  9665. {
  9666. name: "Normal",
  9667. height: math.unit(3.4, "meters"),
  9668. default: true
  9669. },
  9670. ]
  9671. ))
  9672. characterMakers.push(() => makeCharacter(
  9673. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9674. {
  9675. front: {
  9676. height: math.unit(8, "feet"),
  9677. weight: math.unit(315, "lb"),
  9678. name: "Front",
  9679. image: {
  9680. source: "./media/characters/gunner-rotthbauer/front.svg"
  9681. }
  9682. },
  9683. back: {
  9684. height: math.unit(8, "feet"),
  9685. weight: math.unit(315, "lb"),
  9686. name: "Back",
  9687. image: {
  9688. source: "./media/characters/gunner-rotthbauer/back.svg"
  9689. }
  9690. },
  9691. },
  9692. [
  9693. {
  9694. name: "Micro",
  9695. height: math.unit(3.5, "inches")
  9696. },
  9697. {
  9698. name: "Normal",
  9699. height: math.unit(8, "feet"),
  9700. default: true
  9701. },
  9702. {
  9703. name: "Macro",
  9704. height: math.unit(250, "feet")
  9705. },
  9706. {
  9707. name: "Megamacro",
  9708. height: math.unit(1, "AU")
  9709. },
  9710. ]
  9711. ))
  9712. characterMakers.push(() => makeCharacter(
  9713. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9714. {
  9715. front: {
  9716. height: math.unit(5 + 5 / 12, "feet"),
  9717. weight: math.unit(140, "lb"),
  9718. name: "Front",
  9719. image: {
  9720. source: "./media/characters/allatia/front.svg",
  9721. extra: 1227 / 1180,
  9722. bottom: 0.027
  9723. }
  9724. },
  9725. },
  9726. [
  9727. {
  9728. name: "Normal",
  9729. height: math.unit(5 + 5 / 12, "feet")
  9730. },
  9731. {
  9732. name: "Macro",
  9733. height: math.unit(250, "feet"),
  9734. default: true
  9735. },
  9736. {
  9737. name: "Megamacro",
  9738. height: math.unit(8, "miles")
  9739. }
  9740. ]
  9741. ))
  9742. characterMakers.push(() => makeCharacter(
  9743. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9744. {
  9745. front: {
  9746. height: math.unit(6, "feet"),
  9747. weight: math.unit(120, "lb"),
  9748. name: "Front",
  9749. image: {
  9750. source: "./media/characters/tene/front.svg",
  9751. extra: 1728 / 1578,
  9752. bottom: 0.022
  9753. }
  9754. },
  9755. stomping: {
  9756. height: math.unit(2.025, "meters"),
  9757. weight: math.unit(120, "lb"),
  9758. name: "Stomping",
  9759. image: {
  9760. source: "./media/characters/tene/stomping.svg",
  9761. extra: 938 / 873,
  9762. bottom: 0.01
  9763. }
  9764. },
  9765. sitting: {
  9766. height: math.unit(1, "meter"),
  9767. weight: math.unit(120, "lb"),
  9768. name: "Sitting",
  9769. image: {
  9770. source: "./media/characters/tene/sitting.svg",
  9771. extra: 437 / 415,
  9772. bottom: 0.1
  9773. }
  9774. },
  9775. feral: {
  9776. height: math.unit(3.9, "feet"),
  9777. weight: math.unit(250, "lb"),
  9778. name: "Feral",
  9779. image: {
  9780. source: "./media/characters/tene/feral.svg",
  9781. extra: 717 / 458,
  9782. bottom: 0.179
  9783. }
  9784. },
  9785. },
  9786. [
  9787. {
  9788. name: "Normal",
  9789. height: math.unit(6, "feet")
  9790. },
  9791. {
  9792. name: "Macro",
  9793. height: math.unit(300, "feet"),
  9794. default: true
  9795. },
  9796. {
  9797. name: "Megamacro",
  9798. height: math.unit(5, "miles")
  9799. },
  9800. ]
  9801. ))
  9802. characterMakers.push(() => makeCharacter(
  9803. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9804. {
  9805. side: {
  9806. height: math.unit(6, "feet"),
  9807. name: "Side",
  9808. image: {
  9809. source: "./media/characters/evander/side.svg",
  9810. extra: 877 / 477
  9811. }
  9812. },
  9813. },
  9814. [
  9815. {
  9816. name: "Normal",
  9817. height: math.unit(0.83, "meters"),
  9818. default: true
  9819. },
  9820. ]
  9821. ))
  9822. characterMakers.push(() => makeCharacter(
  9823. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9824. {
  9825. front: {
  9826. height: math.unit(12, "feet"),
  9827. weight: math.unit(1000, "lb"),
  9828. name: "Front",
  9829. image: {
  9830. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9831. extra: 1762 / 1611
  9832. }
  9833. },
  9834. back: {
  9835. height: math.unit(12, "feet"),
  9836. weight: math.unit(1000, "lb"),
  9837. name: "Back",
  9838. image: {
  9839. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9840. extra: 1762 / 1611
  9841. }
  9842. },
  9843. },
  9844. [
  9845. {
  9846. name: "Normal",
  9847. height: math.unit(12, "feet"),
  9848. default: true
  9849. },
  9850. {
  9851. name: "Kaiju",
  9852. height: math.unit(150, "feet")
  9853. },
  9854. ]
  9855. ))
  9856. characterMakers.push(() => makeCharacter(
  9857. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9858. {
  9859. front: {
  9860. height: math.unit(6, "feet"),
  9861. weight: math.unit(150, "lb"),
  9862. name: "Front",
  9863. image: {
  9864. source: "./media/characters/zero-alurus/front.svg"
  9865. }
  9866. },
  9867. back: {
  9868. height: math.unit(6, "feet"),
  9869. weight: math.unit(150, "lb"),
  9870. name: "Back",
  9871. image: {
  9872. source: "./media/characters/zero-alurus/back.svg"
  9873. }
  9874. },
  9875. },
  9876. [
  9877. {
  9878. name: "Normal",
  9879. height: math.unit(5 + 10 / 12, "feet")
  9880. },
  9881. {
  9882. name: "Macro",
  9883. height: math.unit(60, "feet"),
  9884. default: true
  9885. },
  9886. {
  9887. name: "Macro+",
  9888. height: math.unit(450, "feet")
  9889. },
  9890. ]
  9891. ))
  9892. characterMakers.push(() => makeCharacter(
  9893. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9894. {
  9895. front: {
  9896. height: math.unit(6, "feet"),
  9897. weight: math.unit(200, "lb"),
  9898. name: "Front",
  9899. image: {
  9900. source: "./media/characters/mega-shi/front.svg",
  9901. extra: 1279 / 1250,
  9902. bottom: 0.02
  9903. }
  9904. },
  9905. back: {
  9906. height: math.unit(6, "feet"),
  9907. weight: math.unit(200, "lb"),
  9908. name: "Back",
  9909. image: {
  9910. source: "./media/characters/mega-shi/back.svg",
  9911. extra: 1279 / 1250,
  9912. bottom: 0.02
  9913. }
  9914. },
  9915. },
  9916. [
  9917. {
  9918. name: "Micro",
  9919. height: math.unit(16 + 6 / 12, "feet")
  9920. },
  9921. {
  9922. name: "Third Dimension",
  9923. height: math.unit(40, "meters")
  9924. },
  9925. {
  9926. name: "Normal",
  9927. height: math.unit(660, "feet"),
  9928. default: true
  9929. },
  9930. {
  9931. name: "Megamacro",
  9932. height: math.unit(10, "miles")
  9933. },
  9934. {
  9935. name: "Planetary Launch",
  9936. height: math.unit(500, "miles")
  9937. },
  9938. {
  9939. name: "Interstellar",
  9940. height: math.unit(1e9, "miles")
  9941. },
  9942. {
  9943. name: "Leaving the Universe",
  9944. height: math.unit(1, "gigaparsec")
  9945. },
  9946. {
  9947. name: "Travelling Universes",
  9948. height: math.unit(30e15, "parsecs")
  9949. },
  9950. ]
  9951. ))
  9952. characterMakers.push(() => makeCharacter(
  9953. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9954. {
  9955. front: {
  9956. height: math.unit(6, "feet"),
  9957. weight: math.unit(150, "lb"),
  9958. name: "Front",
  9959. image: {
  9960. source: "./media/characters/odyssey/front.svg",
  9961. extra: 1782 / 1582,
  9962. bottom: 0.01
  9963. }
  9964. },
  9965. side: {
  9966. height: math.unit(5.7, "feet"),
  9967. weight: math.unit(140, "lb"),
  9968. name: "Side",
  9969. image: {
  9970. source: "./media/characters/odyssey/side.svg",
  9971. extra: 6462 / 5700
  9972. }
  9973. },
  9974. },
  9975. [
  9976. {
  9977. name: "Normal",
  9978. height: math.unit(5 + 4 / 12, "feet")
  9979. },
  9980. {
  9981. name: "Macro",
  9982. height: math.unit(1, "km")
  9983. },
  9984. {
  9985. name: "Megamacro",
  9986. height: math.unit(3000, "km")
  9987. },
  9988. {
  9989. name: "Gigamacro",
  9990. height: math.unit(1, "AU"),
  9991. default: true
  9992. },
  9993. {
  9994. name: "Omniversal",
  9995. height: math.unit(100e14, "lightyears")
  9996. },
  9997. ]
  9998. ))
  9999. characterMakers.push(() => makeCharacter(
  10000. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10001. {
  10002. front: {
  10003. height: math.unit(6, "feet"),
  10004. weight: math.unit(300, "lb"),
  10005. name: "Front",
  10006. image: {
  10007. source: "./media/characters/mekuto/front.svg",
  10008. extra: 921 / 832,
  10009. bottom: 0.03
  10010. }
  10011. },
  10012. hand: {
  10013. height: math.unit(6 / 10.24, "feet"),
  10014. name: "Hand",
  10015. image: {
  10016. source: "./media/characters/mekuto/hand.svg"
  10017. }
  10018. },
  10019. foot: {
  10020. height: math.unit(6 / 5.05, "feet"),
  10021. name: "Foot",
  10022. image: {
  10023. source: "./media/characters/mekuto/foot.svg"
  10024. }
  10025. },
  10026. },
  10027. [
  10028. {
  10029. name: "Minimicro",
  10030. height: math.unit(0.2, "inches")
  10031. },
  10032. {
  10033. name: "Micro",
  10034. height: math.unit(1.5, "inches")
  10035. },
  10036. {
  10037. name: "Normal",
  10038. height: math.unit(5 + 11 / 12, "feet"),
  10039. default: true
  10040. },
  10041. {
  10042. name: "Minimacro",
  10043. height: math.unit(17 + 9 / 12, "feet")
  10044. },
  10045. {
  10046. name: "Macro",
  10047. height: math.unit(177.5, "feet")
  10048. },
  10049. {
  10050. name: "Megamacro",
  10051. height: math.unit(152, "miles")
  10052. },
  10053. ]
  10054. ))
  10055. characterMakers.push(() => makeCharacter(
  10056. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10057. {
  10058. front: {
  10059. height: math.unit(6.5, "inches"),
  10060. weight: math.unit(13, "oz"),
  10061. name: "Front",
  10062. image: {
  10063. source: "./media/characters/dafydd-tomos/front.svg",
  10064. extra: 2990 / 2603,
  10065. bottom: 0.03
  10066. }
  10067. },
  10068. },
  10069. [
  10070. {
  10071. name: "Micro",
  10072. height: math.unit(6.5, "inches"),
  10073. default: true
  10074. },
  10075. ]
  10076. ))
  10077. characterMakers.push(() => makeCharacter(
  10078. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10079. {
  10080. front: {
  10081. height: math.unit(6, "feet"),
  10082. weight: math.unit(150, "lb"),
  10083. name: "Front",
  10084. image: {
  10085. source: "./media/characters/splinter/front.svg",
  10086. extra: 2990 / 2882,
  10087. bottom: 0.04
  10088. }
  10089. },
  10090. back: {
  10091. height: math.unit(6, "feet"),
  10092. weight: math.unit(150, "lb"),
  10093. name: "Back",
  10094. image: {
  10095. source: "./media/characters/splinter/back.svg",
  10096. extra: 2990 / 2882,
  10097. bottom: 0.04
  10098. }
  10099. },
  10100. },
  10101. [
  10102. {
  10103. name: "Normal",
  10104. height: math.unit(6, "feet")
  10105. },
  10106. {
  10107. name: "Macro",
  10108. height: math.unit(230, "meters"),
  10109. default: true
  10110. },
  10111. ]
  10112. ))
  10113. characterMakers.push(() => makeCharacter(
  10114. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10115. {
  10116. front: {
  10117. height: math.unit(4 + 10 / 12, "feet"),
  10118. weight: math.unit(480, "lb"),
  10119. name: "Front",
  10120. image: {
  10121. source: "./media/characters/snow-gabumon/front.svg",
  10122. extra: 1140 / 963,
  10123. bottom: 0.058
  10124. }
  10125. },
  10126. back: {
  10127. height: math.unit(4 + 10 / 12, "feet"),
  10128. weight: math.unit(480, "lb"),
  10129. name: "Back",
  10130. image: {
  10131. source: "./media/characters/snow-gabumon/back.svg",
  10132. extra: 1115 / 962,
  10133. bottom: 0.041
  10134. }
  10135. },
  10136. frontUndresed: {
  10137. height: math.unit(4 + 10 / 12, "feet"),
  10138. weight: math.unit(480, "lb"),
  10139. name: "Front (Undressed)",
  10140. image: {
  10141. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10142. extra: 1061 / 960,
  10143. bottom: 0.045
  10144. }
  10145. },
  10146. },
  10147. [
  10148. {
  10149. name: "Micro",
  10150. height: math.unit(1, "inch")
  10151. },
  10152. {
  10153. name: "Normal",
  10154. height: math.unit(4 + 10 / 12, "feet"),
  10155. default: true
  10156. },
  10157. {
  10158. name: "Macro",
  10159. height: math.unit(200, "feet")
  10160. },
  10161. {
  10162. name: "Megamacro",
  10163. height: math.unit(120, "miles")
  10164. },
  10165. {
  10166. name: "Gigamacro",
  10167. height: math.unit(9800, "miles")
  10168. },
  10169. ]
  10170. ))
  10171. characterMakers.push(() => makeCharacter(
  10172. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10173. {
  10174. front: {
  10175. height: math.unit(1.7, "meters"),
  10176. weight: math.unit(140, "lb"),
  10177. name: "Front",
  10178. image: {
  10179. source: "./media/characters/moody/front.svg",
  10180. extra: 3226 / 3007,
  10181. bottom: 0.087
  10182. }
  10183. },
  10184. },
  10185. [
  10186. {
  10187. name: "Micro",
  10188. height: math.unit(1, "mm")
  10189. },
  10190. {
  10191. name: "Normal",
  10192. height: math.unit(1.7, "meters"),
  10193. default: true
  10194. },
  10195. {
  10196. name: "Macro",
  10197. height: math.unit(80, "meters")
  10198. },
  10199. {
  10200. name: "Macro+",
  10201. height: math.unit(500, "meters")
  10202. },
  10203. ]
  10204. ))
  10205. characterMakers.push(() => makeCharacter(
  10206. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10207. {
  10208. front: {
  10209. height: math.unit(6, "feet"),
  10210. weight: math.unit(150, "lb"),
  10211. name: "Front",
  10212. image: {
  10213. source: "./media/characters/zyas/front.svg",
  10214. extra: 1180 / 1120,
  10215. bottom: 0.045
  10216. }
  10217. },
  10218. },
  10219. [
  10220. {
  10221. name: "Normal",
  10222. height: math.unit(10, "feet"),
  10223. default: true
  10224. },
  10225. {
  10226. name: "Macro",
  10227. height: math.unit(500, "feet")
  10228. },
  10229. {
  10230. name: "Megamacro",
  10231. height: math.unit(5, "miles")
  10232. },
  10233. {
  10234. name: "Teramacro",
  10235. height: math.unit(150000, "miles")
  10236. },
  10237. ]
  10238. ))
  10239. characterMakers.push(() => makeCharacter(
  10240. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10241. {
  10242. front: {
  10243. height: math.unit(6, "feet"),
  10244. weight: math.unit(150, "lb"),
  10245. name: "Front",
  10246. image: {
  10247. source: "./media/characters/cuon/front.svg",
  10248. extra: 1390 / 1320,
  10249. bottom: 0.008
  10250. }
  10251. },
  10252. },
  10253. [
  10254. {
  10255. name: "Micro",
  10256. height: math.unit(3, "inches")
  10257. },
  10258. {
  10259. name: "Normal",
  10260. height: math.unit(18 + 9 / 12, "feet"),
  10261. default: true
  10262. },
  10263. {
  10264. name: "Macro",
  10265. height: math.unit(360, "feet")
  10266. },
  10267. {
  10268. name: "Megamacro",
  10269. height: math.unit(360, "miles")
  10270. },
  10271. ]
  10272. ))
  10273. characterMakers.push(() => makeCharacter(
  10274. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10275. {
  10276. front: {
  10277. height: math.unit(2.4, "meters"),
  10278. weight: math.unit(70, "kg"),
  10279. name: "Front",
  10280. image: {
  10281. source: "./media/characters/nyanuxk/front.svg",
  10282. extra: 1172 / 1084,
  10283. bottom: 0.065
  10284. }
  10285. },
  10286. side: {
  10287. height: math.unit(2.4, "meters"),
  10288. weight: math.unit(70, "kg"),
  10289. name: "Side",
  10290. image: {
  10291. source: "./media/characters/nyanuxk/side.svg",
  10292. extra: 1190 / 1132,
  10293. bottom: 0.007
  10294. }
  10295. },
  10296. back: {
  10297. height: math.unit(2.4, "meters"),
  10298. weight: math.unit(70, "kg"),
  10299. name: "Back",
  10300. image: {
  10301. source: "./media/characters/nyanuxk/back.svg",
  10302. extra: 1200 / 1141,
  10303. bottom: 0.015
  10304. }
  10305. },
  10306. foot: {
  10307. height: math.unit(0.52, "meters"),
  10308. name: "Foot",
  10309. image: {
  10310. source: "./media/characters/nyanuxk/foot.svg"
  10311. }
  10312. },
  10313. },
  10314. [
  10315. {
  10316. name: "Micro",
  10317. height: math.unit(2, "cm")
  10318. },
  10319. {
  10320. name: "Normal",
  10321. height: math.unit(2.4, "meters"),
  10322. default: true
  10323. },
  10324. {
  10325. name: "Smaller Macro",
  10326. height: math.unit(120, "meters")
  10327. },
  10328. {
  10329. name: "Bigger Macro",
  10330. height: math.unit(1.2, "km")
  10331. },
  10332. {
  10333. name: "Megamacro",
  10334. height: math.unit(15, "kilometers")
  10335. },
  10336. {
  10337. name: "Gigamacro",
  10338. height: math.unit(2000, "km")
  10339. },
  10340. {
  10341. name: "Teramacro",
  10342. height: math.unit(500000, "km")
  10343. },
  10344. ]
  10345. ))
  10346. characterMakers.push(() => makeCharacter(
  10347. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10348. {
  10349. side: {
  10350. height: math.unit(6, "feet"),
  10351. name: "Side",
  10352. image: {
  10353. source: "./media/characters/ailbhe/side.svg",
  10354. extra: 757 / 464,
  10355. bottom: 0.041
  10356. }
  10357. },
  10358. },
  10359. [
  10360. {
  10361. name: "Normal",
  10362. height: math.unit(1.07, "meters"),
  10363. default: true
  10364. },
  10365. ]
  10366. ))
  10367. characterMakers.push(() => makeCharacter(
  10368. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10369. {
  10370. front: {
  10371. height: math.unit(6, "feet"),
  10372. weight: math.unit(120, "kg"),
  10373. name: "Front",
  10374. image: {
  10375. source: "./media/characters/zevulfius/front.svg",
  10376. extra: 965 / 903
  10377. }
  10378. },
  10379. side: {
  10380. height: math.unit(6, "feet"),
  10381. weight: math.unit(120, "kg"),
  10382. name: "Side",
  10383. image: {
  10384. source: "./media/characters/zevulfius/side.svg",
  10385. extra: 939 / 900
  10386. }
  10387. },
  10388. back: {
  10389. height: math.unit(6, "feet"),
  10390. weight: math.unit(120, "kg"),
  10391. name: "Back",
  10392. image: {
  10393. source: "./media/characters/zevulfius/back.svg",
  10394. extra: 918 / 854,
  10395. bottom: 0.005
  10396. }
  10397. },
  10398. foot: {
  10399. height: math.unit(6 / 3.72, "feet"),
  10400. name: "Foot",
  10401. image: {
  10402. source: "./media/characters/zevulfius/foot.svg"
  10403. }
  10404. },
  10405. },
  10406. [
  10407. {
  10408. name: "Macro",
  10409. height: math.unit(750, "meters")
  10410. },
  10411. {
  10412. name: "Megamacro",
  10413. height: math.unit(20, "km"),
  10414. default: true
  10415. },
  10416. {
  10417. name: "Gigamacro",
  10418. height: math.unit(2000, "km")
  10419. },
  10420. {
  10421. name: "Teramacro",
  10422. height: math.unit(250000, "km")
  10423. },
  10424. ]
  10425. ))
  10426. characterMakers.push(() => makeCharacter(
  10427. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10428. {
  10429. front: {
  10430. height: math.unit(100, "feet"),
  10431. weight: math.unit(350, "kg"),
  10432. name: "Front",
  10433. image: {
  10434. source: "./media/characters/rikes/front.svg",
  10435. extra: 1565 / 1483,
  10436. bottom: 0.017
  10437. }
  10438. },
  10439. },
  10440. [
  10441. {
  10442. name: "Macro",
  10443. height: math.unit(100, "feet"),
  10444. default: true
  10445. },
  10446. ]
  10447. ))
  10448. characterMakers.push(() => makeCharacter(
  10449. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10450. {
  10451. front: {
  10452. height: math.unit(8, "feet"),
  10453. weight: math.unit(356, "lb"),
  10454. name: "Front",
  10455. image: {
  10456. source: "./media/characters/adam-silver-mane/front.svg",
  10457. extra: 1036/937,
  10458. bottom: 63/1099
  10459. }
  10460. },
  10461. side: {
  10462. height: math.unit(8, "feet"),
  10463. weight: math.unit(356, "lb"),
  10464. name: "Side",
  10465. image: {
  10466. source: "./media/characters/adam-silver-mane/side.svg",
  10467. extra: 997/901,
  10468. bottom: 59/1056
  10469. }
  10470. },
  10471. frontNsfw: {
  10472. height: math.unit(8, "feet"),
  10473. weight: math.unit(356, "lb"),
  10474. name: "Front (NSFW)",
  10475. image: {
  10476. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10477. extra: 1036/937,
  10478. bottom: 63/1099
  10479. }
  10480. },
  10481. sideNsfw: {
  10482. height: math.unit(8, "feet"),
  10483. weight: math.unit(356, "lb"),
  10484. name: "Side (NSFW)",
  10485. image: {
  10486. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10487. extra: 997/901,
  10488. bottom: 59/1056
  10489. }
  10490. },
  10491. taur: {
  10492. height: math.unit(16, "feet"),
  10493. weight: math.unit(1500, "kg"),
  10494. name: "Taur",
  10495. image: {
  10496. source: "./media/characters/adam-silver-mane/taur.svg",
  10497. extra: 1713 / 1571,
  10498. bottom: 0.01
  10499. }
  10500. },
  10501. },
  10502. [
  10503. {
  10504. name: "Normal",
  10505. height: math.unit(8, "feet")
  10506. },
  10507. {
  10508. name: "Minimacro",
  10509. height: math.unit(80, "feet")
  10510. },
  10511. {
  10512. name: "MDA",
  10513. height: math.unit(80, "meters")
  10514. },
  10515. {
  10516. name: "Macro",
  10517. height: math.unit(800, "feet"),
  10518. default: true
  10519. },
  10520. {
  10521. name: "Megamacro",
  10522. height: math.unit(8000, "feet")
  10523. },
  10524. {
  10525. name: "Gigamacro",
  10526. height: math.unit(800, "miles")
  10527. },
  10528. {
  10529. name: "Teramacro",
  10530. height: math.unit(80000, "miles")
  10531. },
  10532. {
  10533. name: "Celestial",
  10534. height: math.unit(8e6, "miles")
  10535. },
  10536. {
  10537. name: "Star Dragon",
  10538. height: math.unit(800000, "parsecs")
  10539. },
  10540. {
  10541. name: "Godly",
  10542. height: math.unit(800, "teraparsecs")
  10543. },
  10544. ]
  10545. ))
  10546. characterMakers.push(() => makeCharacter(
  10547. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10548. {
  10549. front: {
  10550. height: math.unit(6, "feet"),
  10551. weight: math.unit(150, "lb"),
  10552. name: "Front",
  10553. image: {
  10554. source: "./media/characters/ky'owin/front.svg",
  10555. extra: 3888 / 3068,
  10556. bottom: 0.015
  10557. }
  10558. },
  10559. },
  10560. [
  10561. {
  10562. name: "Normal",
  10563. height: math.unit(6 + 8 / 12, "feet")
  10564. },
  10565. {
  10566. name: "Large",
  10567. height: math.unit(68, "feet")
  10568. },
  10569. {
  10570. name: "Macro",
  10571. height: math.unit(132, "feet")
  10572. },
  10573. {
  10574. name: "Macro+",
  10575. height: math.unit(340, "feet")
  10576. },
  10577. {
  10578. name: "Macro++",
  10579. height: math.unit(680, "feet"),
  10580. default: true
  10581. },
  10582. {
  10583. name: "Megamacro",
  10584. height: math.unit(1, "mile")
  10585. },
  10586. {
  10587. name: "Megamacro+",
  10588. height: math.unit(10, "miles")
  10589. },
  10590. ]
  10591. ))
  10592. characterMakers.push(() => makeCharacter(
  10593. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10594. {
  10595. front: {
  10596. height: math.unit(4, "feet"),
  10597. weight: math.unit(50, "lb"),
  10598. name: "Front",
  10599. image: {
  10600. source: "./media/characters/mal/front.svg",
  10601. extra: 785 / 724,
  10602. bottom: 0.07
  10603. }
  10604. },
  10605. },
  10606. [
  10607. {
  10608. name: "Micro",
  10609. height: math.unit(4, "inches")
  10610. },
  10611. {
  10612. name: "Normal",
  10613. height: math.unit(4, "feet"),
  10614. default: true
  10615. },
  10616. {
  10617. name: "Macro",
  10618. height: math.unit(200, "feet")
  10619. },
  10620. ]
  10621. ))
  10622. characterMakers.push(() => makeCharacter(
  10623. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10624. {
  10625. front: {
  10626. height: math.unit(6, "feet"),
  10627. weight: math.unit(150, "lb"),
  10628. name: "Front",
  10629. image: {
  10630. source: "./media/characters/jordan-deware/front.svg",
  10631. extra: 1191 / 1012
  10632. }
  10633. },
  10634. },
  10635. [
  10636. {
  10637. name: "Nano",
  10638. height: math.unit(0.01, "mm")
  10639. },
  10640. {
  10641. name: "Minimicro",
  10642. height: math.unit(1, "mm")
  10643. },
  10644. {
  10645. name: "Micro",
  10646. height: math.unit(0.5, "inches")
  10647. },
  10648. {
  10649. name: "Normal",
  10650. height: math.unit(4, "feet"),
  10651. default: true
  10652. },
  10653. {
  10654. name: "Minimacro",
  10655. height: math.unit(40, "meters")
  10656. },
  10657. {
  10658. name: "Small Macro",
  10659. height: math.unit(400, "meters")
  10660. },
  10661. {
  10662. name: "Macro",
  10663. height: math.unit(4, "miles")
  10664. },
  10665. {
  10666. name: "Megamacro",
  10667. height: math.unit(40, "miles")
  10668. },
  10669. {
  10670. name: "Megamacro+",
  10671. height: math.unit(400, "miles")
  10672. },
  10673. {
  10674. name: "Gigamacro",
  10675. height: math.unit(400000, "miles")
  10676. },
  10677. ]
  10678. ))
  10679. characterMakers.push(() => makeCharacter(
  10680. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10681. {
  10682. side: {
  10683. height: math.unit(6, "feet"),
  10684. weight: math.unit(150, "lb"),
  10685. name: "Side",
  10686. image: {
  10687. source: "./media/characters/kimiko/side.svg",
  10688. extra: 600 / 358
  10689. }
  10690. },
  10691. },
  10692. [
  10693. {
  10694. name: "Normal",
  10695. height: math.unit(15, "feet"),
  10696. default: true
  10697. },
  10698. {
  10699. name: "Macro",
  10700. height: math.unit(220, "feet")
  10701. },
  10702. {
  10703. name: "Macro+",
  10704. height: math.unit(1450, "feet")
  10705. },
  10706. {
  10707. name: "Megamacro",
  10708. height: math.unit(11500, "feet")
  10709. },
  10710. {
  10711. name: "Gigamacro",
  10712. height: math.unit(9500, "miles")
  10713. },
  10714. {
  10715. name: "Teramacro",
  10716. height: math.unit(2208005005, "miles")
  10717. },
  10718. {
  10719. name: "Examacro",
  10720. height: math.unit(2750, "parsecs")
  10721. },
  10722. {
  10723. name: "Zettamacro",
  10724. height: math.unit(101500, "parsecs")
  10725. },
  10726. ]
  10727. ))
  10728. characterMakers.push(() => makeCharacter(
  10729. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10730. {
  10731. front: {
  10732. height: math.unit(6, "feet"),
  10733. weight: math.unit(70, "kg"),
  10734. name: "Front",
  10735. image: {
  10736. source: "./media/characters/andrew-sleepy/front.svg"
  10737. }
  10738. },
  10739. side: {
  10740. height: math.unit(6, "feet"),
  10741. weight: math.unit(70, "kg"),
  10742. name: "Side",
  10743. image: {
  10744. source: "./media/characters/andrew-sleepy/side.svg"
  10745. }
  10746. },
  10747. },
  10748. [
  10749. {
  10750. name: "Micro",
  10751. height: math.unit(1, "mm"),
  10752. default: true
  10753. },
  10754. ]
  10755. ))
  10756. characterMakers.push(() => makeCharacter(
  10757. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10758. {
  10759. front: {
  10760. height: math.unit(6, "feet"),
  10761. weight: math.unit(150, "lb"),
  10762. name: "Front",
  10763. image: {
  10764. source: "./media/characters/judio/front.svg",
  10765. extra: 1258 / 1110
  10766. }
  10767. },
  10768. },
  10769. [
  10770. {
  10771. name: "Normal",
  10772. height: math.unit(5 + 6 / 12, "feet")
  10773. },
  10774. {
  10775. name: "Macro",
  10776. height: math.unit(1000, "feet"),
  10777. default: true
  10778. },
  10779. {
  10780. name: "Megamacro",
  10781. height: math.unit(10, "miles")
  10782. },
  10783. ]
  10784. ))
  10785. characterMakers.push(() => makeCharacter(
  10786. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10787. {
  10788. front: {
  10789. height: math.unit(6, "feet"),
  10790. weight: math.unit(68, "kg"),
  10791. name: "Front",
  10792. image: {
  10793. source: "./media/characters/nomaxice/front.svg",
  10794. extra: 1498 / 1073,
  10795. bottom: 0.075
  10796. }
  10797. },
  10798. foot: {
  10799. height: math.unit(1.1, "feet"),
  10800. name: "Foot",
  10801. image: {
  10802. source: "./media/characters/nomaxice/foot.svg"
  10803. }
  10804. },
  10805. },
  10806. [
  10807. {
  10808. name: "Micro",
  10809. height: math.unit(8, "cm")
  10810. },
  10811. {
  10812. name: "Norm",
  10813. height: math.unit(1.82, "m")
  10814. },
  10815. {
  10816. name: "Norm+",
  10817. height: math.unit(8.8, "feet")
  10818. },
  10819. {
  10820. name: "Big",
  10821. height: math.unit(8, "meters"),
  10822. default: true
  10823. },
  10824. {
  10825. name: "Macro",
  10826. height: math.unit(18, "meters")
  10827. },
  10828. {
  10829. name: "Macro+",
  10830. height: math.unit(88, "meters")
  10831. },
  10832. ]
  10833. ))
  10834. characterMakers.push(() => makeCharacter(
  10835. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10836. {
  10837. front: {
  10838. height: math.unit(12, "feet"),
  10839. weight: math.unit(1.5, "tons"),
  10840. name: "Front",
  10841. image: {
  10842. source: "./media/characters/dydros/front.svg",
  10843. extra: 863 / 800,
  10844. bottom: 0.015
  10845. }
  10846. },
  10847. back: {
  10848. height: math.unit(12, "feet"),
  10849. weight: math.unit(1.5, "tons"),
  10850. name: "Back",
  10851. image: {
  10852. source: "./media/characters/dydros/back.svg",
  10853. extra: 900 / 843,
  10854. bottom: 0.005
  10855. }
  10856. },
  10857. },
  10858. [
  10859. {
  10860. name: "Normal",
  10861. height: math.unit(12, "feet"),
  10862. default: true
  10863. },
  10864. ]
  10865. ))
  10866. characterMakers.push(() => makeCharacter(
  10867. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10868. {
  10869. front: {
  10870. height: math.unit(6, "feet"),
  10871. weight: math.unit(100, "kg"),
  10872. name: "Front",
  10873. image: {
  10874. source: "./media/characters/riggi/front.svg",
  10875. extra: 5787 / 5303
  10876. }
  10877. },
  10878. hyper: {
  10879. height: math.unit(6 * 5 / 3, "feet"),
  10880. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10881. name: "Hyper",
  10882. image: {
  10883. source: "./media/characters/riggi/hyper.svg",
  10884. extra: 3595 / 3485
  10885. }
  10886. },
  10887. },
  10888. [
  10889. {
  10890. name: "Small Macro",
  10891. height: math.unit(50, "feet")
  10892. },
  10893. {
  10894. name: "Default",
  10895. height: math.unit(200, "feet"),
  10896. default: true
  10897. },
  10898. {
  10899. name: "Loom",
  10900. height: math.unit(10000, "feet")
  10901. },
  10902. {
  10903. name: "Cruising Altitude",
  10904. height: math.unit(30000, "feet")
  10905. },
  10906. {
  10907. name: "Megamacro",
  10908. height: math.unit(100, "miles")
  10909. },
  10910. {
  10911. name: "Continent Sized",
  10912. height: math.unit(2800, "miles")
  10913. },
  10914. {
  10915. name: "Earth Sized",
  10916. height: math.unit(8000, "miles")
  10917. },
  10918. ]
  10919. ))
  10920. characterMakers.push(() => makeCharacter(
  10921. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10922. {
  10923. front: {
  10924. height: math.unit(6, "feet"),
  10925. weight: math.unit(250, "lb"),
  10926. name: "Front",
  10927. image: {
  10928. source: "./media/characters/alexi/front.svg",
  10929. extra: 3483 / 3291,
  10930. bottom: 0.04
  10931. }
  10932. },
  10933. back: {
  10934. height: math.unit(6, "feet"),
  10935. weight: math.unit(250, "lb"),
  10936. name: "Back",
  10937. image: {
  10938. source: "./media/characters/alexi/back.svg",
  10939. extra: 3533 / 3356,
  10940. bottom: 0.021
  10941. }
  10942. },
  10943. frontTransforming: {
  10944. height: math.unit(8.58, "feet"),
  10945. weight: math.unit(1300, "lb"),
  10946. name: "Transforming",
  10947. image: {
  10948. source: "./media/characters/alexi/front-transforming.svg",
  10949. extra: 437 / 409,
  10950. bottom: 19 / 458.66
  10951. }
  10952. },
  10953. frontTransformed: {
  10954. height: math.unit(12.5, "feet"),
  10955. weight: math.unit(4000, "lb"),
  10956. name: "Transformed",
  10957. image: {
  10958. source: "./media/characters/alexi/front-transformed.svg",
  10959. extra: 639 / 614,
  10960. bottom: 30.55 / 671
  10961. }
  10962. },
  10963. },
  10964. [
  10965. {
  10966. name: "Normal",
  10967. height: math.unit(14, "feet"),
  10968. default: true
  10969. },
  10970. {
  10971. name: "Minimacro",
  10972. height: math.unit(30, "meters")
  10973. },
  10974. {
  10975. name: "Macro",
  10976. height: math.unit(500, "meters")
  10977. },
  10978. {
  10979. name: "Megamacro",
  10980. height: math.unit(9000, "km")
  10981. },
  10982. {
  10983. name: "Teramacro",
  10984. height: math.unit(384000, "km")
  10985. },
  10986. ]
  10987. ))
  10988. characterMakers.push(() => makeCharacter(
  10989. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10990. {
  10991. front: {
  10992. height: math.unit(6, "feet"),
  10993. weight: math.unit(150, "lb"),
  10994. name: "Front",
  10995. image: {
  10996. source: "./media/characters/kayroo/front.svg",
  10997. extra: 1153 / 1038,
  10998. bottom: 0.06
  10999. }
  11000. },
  11001. foot: {
  11002. height: math.unit(6, "feet"),
  11003. weight: math.unit(150, "lb"),
  11004. name: "Foot",
  11005. image: {
  11006. source: "./media/characters/kayroo/foot.svg"
  11007. }
  11008. },
  11009. },
  11010. [
  11011. {
  11012. name: "Normal",
  11013. height: math.unit(8, "feet"),
  11014. default: true
  11015. },
  11016. {
  11017. name: "Minimacro",
  11018. height: math.unit(250, "feet")
  11019. },
  11020. {
  11021. name: "Macro",
  11022. height: math.unit(2800, "feet")
  11023. },
  11024. {
  11025. name: "Megamacro",
  11026. height: math.unit(5200, "feet")
  11027. },
  11028. {
  11029. name: "Gigamacro",
  11030. height: math.unit(27000, "feet")
  11031. },
  11032. {
  11033. name: "Omega",
  11034. height: math.unit(45000, "feet")
  11035. },
  11036. ]
  11037. ))
  11038. characterMakers.push(() => makeCharacter(
  11039. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11040. {
  11041. front: {
  11042. height: math.unit(18, "feet"),
  11043. weight: math.unit(5800, "lb"),
  11044. name: "Front",
  11045. image: {
  11046. source: "./media/characters/rhys/front.svg",
  11047. extra: 3386 / 3090,
  11048. bottom: 0.07
  11049. }
  11050. },
  11051. },
  11052. [
  11053. {
  11054. name: "Normal",
  11055. height: math.unit(18, "feet"),
  11056. default: true
  11057. },
  11058. {
  11059. name: "Working Size",
  11060. height: math.unit(200, "feet")
  11061. },
  11062. {
  11063. name: "Demolition Size",
  11064. height: math.unit(2000, "feet")
  11065. },
  11066. {
  11067. name: "Maximum Licensed Size",
  11068. height: math.unit(5, "miles")
  11069. },
  11070. {
  11071. name: "Maximum Observed Size",
  11072. height: math.unit(10, "yottameters")
  11073. },
  11074. ]
  11075. ))
  11076. characterMakers.push(() => makeCharacter(
  11077. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11078. {
  11079. front: {
  11080. height: math.unit(6, "feet"),
  11081. weight: math.unit(250, "lb"),
  11082. name: "Front",
  11083. image: {
  11084. source: "./media/characters/toto/front.svg",
  11085. extra: 527 / 479,
  11086. bottom: 0.05
  11087. }
  11088. },
  11089. },
  11090. [
  11091. {
  11092. name: "Micro",
  11093. height: math.unit(3, "feet")
  11094. },
  11095. {
  11096. name: "Normal",
  11097. height: math.unit(10, "feet")
  11098. },
  11099. {
  11100. name: "Macro",
  11101. height: math.unit(150, "feet"),
  11102. default: true
  11103. },
  11104. {
  11105. name: "Megamacro",
  11106. height: math.unit(1200, "feet")
  11107. },
  11108. ]
  11109. ))
  11110. characterMakers.push(() => makeCharacter(
  11111. { name: "King", species: ["lion"], tags: ["anthro"] },
  11112. {
  11113. back: {
  11114. height: math.unit(6, "feet"),
  11115. weight: math.unit(150, "lb"),
  11116. name: "Back",
  11117. image: {
  11118. source: "./media/characters/king/back.svg"
  11119. }
  11120. },
  11121. },
  11122. [
  11123. {
  11124. name: "Micro",
  11125. height: math.unit(2, "inches")
  11126. },
  11127. {
  11128. name: "Normal",
  11129. height: math.unit(8, "feet")
  11130. },
  11131. {
  11132. name: "Macro",
  11133. height: math.unit(200, "feet"),
  11134. default: true
  11135. },
  11136. {
  11137. name: "Megamacro",
  11138. height: math.unit(50, "miles")
  11139. },
  11140. ]
  11141. ))
  11142. characterMakers.push(() => makeCharacter(
  11143. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11144. {
  11145. anthro: {
  11146. height: math.unit(6 + 5 / 12, "feet"),
  11147. weight: math.unit(280, "lb"),
  11148. name: "Anthro",
  11149. image: {
  11150. source: "./media/characters/cordite/anthro.svg",
  11151. extra: 1986 / 1905,
  11152. bottom: 0.025
  11153. }
  11154. },
  11155. feral: {
  11156. height: math.unit(2, "feet"),
  11157. weight: math.unit(90, "lb"),
  11158. name: "Feral",
  11159. image: {
  11160. source: "./media/characters/cordite/feral.svg",
  11161. extra: 1260 / 755,
  11162. bottom: 0.05
  11163. }
  11164. },
  11165. },
  11166. [
  11167. {
  11168. name: "Normal",
  11169. height: math.unit(6 + 5 / 12, "feet"),
  11170. default: true
  11171. },
  11172. ]
  11173. ))
  11174. characterMakers.push(() => makeCharacter(
  11175. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11176. {
  11177. front: {
  11178. height: math.unit(6, "feet"),
  11179. weight: math.unit(150, "lb"),
  11180. name: "Front",
  11181. image: {
  11182. source: "./media/characters/pianostrong/front.svg",
  11183. extra: 6577 / 6254,
  11184. bottom: 0.02
  11185. }
  11186. },
  11187. side: {
  11188. height: math.unit(6, "feet"),
  11189. weight: math.unit(150, "lb"),
  11190. name: "Side",
  11191. image: {
  11192. source: "./media/characters/pianostrong/side.svg",
  11193. extra: 6106 / 5730
  11194. }
  11195. },
  11196. back: {
  11197. height: math.unit(6, "feet"),
  11198. weight: math.unit(150, "lb"),
  11199. name: "Back",
  11200. image: {
  11201. source: "./media/characters/pianostrong/back.svg",
  11202. extra: 6085 / 5733,
  11203. bottom: 0.01
  11204. }
  11205. },
  11206. },
  11207. [
  11208. {
  11209. name: "Macro",
  11210. height: math.unit(100, "feet")
  11211. },
  11212. {
  11213. name: "Macro+",
  11214. height: math.unit(300, "feet"),
  11215. default: true
  11216. },
  11217. {
  11218. name: "Macro++",
  11219. height: math.unit(1000, "feet")
  11220. },
  11221. ]
  11222. ))
  11223. characterMakers.push(() => makeCharacter(
  11224. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11225. {
  11226. front: {
  11227. height: math.unit(6, "feet"),
  11228. weight: math.unit(150, "lb"),
  11229. name: "Front",
  11230. image: {
  11231. source: "./media/characters/kona/front.svg",
  11232. extra: 2960 / 2629,
  11233. bottom: 0.005
  11234. }
  11235. },
  11236. },
  11237. [
  11238. {
  11239. name: "Normal",
  11240. height: math.unit(11 + 8 / 12, "feet")
  11241. },
  11242. {
  11243. name: "Macro",
  11244. height: math.unit(850, "feet"),
  11245. default: true
  11246. },
  11247. {
  11248. name: "Macro+",
  11249. height: math.unit(1.5, "km"),
  11250. default: true
  11251. },
  11252. {
  11253. name: "Megamacro",
  11254. height: math.unit(80, "miles")
  11255. },
  11256. {
  11257. name: "Gigamacro",
  11258. height: math.unit(3500, "miles")
  11259. },
  11260. ]
  11261. ))
  11262. characterMakers.push(() => makeCharacter(
  11263. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11264. {
  11265. side: {
  11266. height: math.unit(1.9, "meters"),
  11267. weight: math.unit(326, "kg"),
  11268. name: "Side",
  11269. image: {
  11270. source: "./media/characters/levi/side.svg",
  11271. extra: 1704 / 1334,
  11272. bottom: 0.02
  11273. }
  11274. },
  11275. },
  11276. [
  11277. {
  11278. name: "Normal",
  11279. height: math.unit(1.9, "meters"),
  11280. default: true
  11281. },
  11282. {
  11283. name: "Macro",
  11284. height: math.unit(20, "meters")
  11285. },
  11286. {
  11287. name: "Macro+",
  11288. height: math.unit(200, "meters")
  11289. },
  11290. {
  11291. name: "Megamacro",
  11292. height: math.unit(2, "km")
  11293. },
  11294. {
  11295. name: "Megamacro+",
  11296. height: math.unit(20, "km")
  11297. },
  11298. {
  11299. name: "Gigamacro",
  11300. height: math.unit(2500, "km")
  11301. },
  11302. {
  11303. name: "Gigamacro+",
  11304. height: math.unit(120000, "km")
  11305. },
  11306. {
  11307. name: "Teramacro",
  11308. height: math.unit(7.77e6, "km")
  11309. },
  11310. ]
  11311. ))
  11312. characterMakers.push(() => makeCharacter(
  11313. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11314. {
  11315. front: {
  11316. height: math.unit(6 + 4/12, "feet"),
  11317. weight: math.unit(190, "lb"),
  11318. name: "Front",
  11319. image: {
  11320. source: "./media/characters/bmc/front.svg",
  11321. extra: 1626/1472,
  11322. bottom: 79/1705
  11323. }
  11324. },
  11325. back: {
  11326. height: math.unit(6 + 4/12, "feet"),
  11327. weight: math.unit(190, "lb"),
  11328. name: "Back",
  11329. image: {
  11330. source: "./media/characters/bmc/back.svg",
  11331. extra: 1640/1479,
  11332. bottom: 45/1685
  11333. }
  11334. },
  11335. frontArmor: {
  11336. height: math.unit(6 + 4/12, "feet"),
  11337. weight: math.unit(190, "lb"),
  11338. name: "Front-armor",
  11339. image: {
  11340. source: "./media/characters/bmc/front-armor.svg",
  11341. extra: 1538/1468,
  11342. bottom: 79/1617
  11343. }
  11344. },
  11345. },
  11346. [
  11347. {
  11348. name: "Human-sized",
  11349. height: math.unit(6 + 4 / 12, "feet")
  11350. },
  11351. {
  11352. name: "Interactive Size",
  11353. height: math.unit(25, "feet")
  11354. },
  11355. {
  11356. name: "Small",
  11357. height: math.unit(250, "feet")
  11358. },
  11359. {
  11360. name: "Normal",
  11361. height: math.unit(1250, "feet"),
  11362. default: true
  11363. },
  11364. {
  11365. name: "Good Day",
  11366. height: math.unit(88, "miles")
  11367. },
  11368. {
  11369. name: "Largest Measured Size",
  11370. height: math.unit(105.960, "galaxies")
  11371. },
  11372. ]
  11373. ))
  11374. characterMakers.push(() => makeCharacter(
  11375. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11376. {
  11377. front: {
  11378. height: math.unit(20, "feet"),
  11379. weight: math.unit(2016, "kg"),
  11380. name: "Front",
  11381. image: {
  11382. source: "./media/characters/sven-the-kaiju/front.svg",
  11383. extra: 1277/1250,
  11384. bottom: 35/1312
  11385. }
  11386. },
  11387. mouth: {
  11388. height: math.unit(1.85, "feet"),
  11389. name: "Mouth",
  11390. image: {
  11391. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11392. }
  11393. },
  11394. },
  11395. [
  11396. {
  11397. name: "Fairy",
  11398. height: math.unit(6, "inches")
  11399. },
  11400. {
  11401. name: "Normal",
  11402. height: math.unit(20, "feet"),
  11403. default: true
  11404. },
  11405. {
  11406. name: "Rampage",
  11407. height: math.unit(200, "feet")
  11408. },
  11409. {
  11410. name: "Archfey Forest Guardian",
  11411. height: math.unit(1, "mile")
  11412. },
  11413. ]
  11414. ))
  11415. characterMakers.push(() => makeCharacter(
  11416. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11417. {
  11418. front: {
  11419. height: math.unit(4, "meters"),
  11420. weight: math.unit(2, "tons"),
  11421. name: "Front",
  11422. image: {
  11423. source: "./media/characters/marik/front.svg",
  11424. extra: 1057 / 1003,
  11425. bottom: 0.08
  11426. }
  11427. },
  11428. },
  11429. [
  11430. {
  11431. name: "Normal",
  11432. height: math.unit(4, "meters"),
  11433. default: true
  11434. },
  11435. {
  11436. name: "Macro",
  11437. height: math.unit(20, "meters")
  11438. },
  11439. {
  11440. name: "Megamacro",
  11441. height: math.unit(50, "km")
  11442. },
  11443. {
  11444. name: "Gigamacro",
  11445. height: math.unit(100, "km")
  11446. },
  11447. {
  11448. name: "Alpha Macro",
  11449. height: math.unit(7.88e7, "yottameters")
  11450. },
  11451. ]
  11452. ))
  11453. characterMakers.push(() => makeCharacter(
  11454. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11455. {
  11456. front: {
  11457. height: math.unit(6, "feet"),
  11458. weight: math.unit(110, "lb"),
  11459. name: "Front",
  11460. image: {
  11461. source: "./media/characters/mel/front.svg",
  11462. extra: 736 / 617,
  11463. bottom: 0.017
  11464. }
  11465. },
  11466. },
  11467. [
  11468. {
  11469. name: "Pico",
  11470. height: math.unit(3, "pm")
  11471. },
  11472. {
  11473. name: "Nano",
  11474. height: math.unit(3, "nm")
  11475. },
  11476. {
  11477. name: "Micro",
  11478. height: math.unit(0.3, "mm"),
  11479. default: true
  11480. },
  11481. {
  11482. name: "Micro+",
  11483. height: math.unit(3, "mm")
  11484. },
  11485. {
  11486. name: "Normal",
  11487. height: math.unit(5 + 10.5 / 12, "feet")
  11488. },
  11489. ]
  11490. ))
  11491. characterMakers.push(() => makeCharacter(
  11492. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11493. {
  11494. kaiju: {
  11495. height: math.unit(1.75, "meters"),
  11496. weight: math.unit(55, "kg"),
  11497. name: "Kaiju",
  11498. image: {
  11499. source: "./media/characters/lykonous/kaiju.svg",
  11500. extra: 1055 / 946,
  11501. bottom: 0.135
  11502. }
  11503. },
  11504. },
  11505. [
  11506. {
  11507. name: "Normal",
  11508. height: math.unit(2.5, "meters"),
  11509. default: true
  11510. },
  11511. {
  11512. name: "Kaiju Dragon",
  11513. height: math.unit(60, "meters")
  11514. },
  11515. {
  11516. name: "Mega Kaiju",
  11517. height: math.unit(120, "km")
  11518. },
  11519. {
  11520. name: "Giga Kaiju",
  11521. height: math.unit(200, "megameters")
  11522. },
  11523. {
  11524. name: "Terra Kaiju",
  11525. height: math.unit(400, "gigameters")
  11526. },
  11527. {
  11528. name: "Kaiju Dragon God",
  11529. height: math.unit(13000, "exaparsecs")
  11530. },
  11531. ]
  11532. ))
  11533. characterMakers.push(() => makeCharacter(
  11534. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11535. {
  11536. front: {
  11537. height: math.unit(6, "feet"),
  11538. weight: math.unit(150, "lb"),
  11539. name: "Front",
  11540. image: {
  11541. source: "./media/characters/blü/front.svg",
  11542. extra: 1883 / 1564,
  11543. bottom: 0.031
  11544. }
  11545. },
  11546. },
  11547. [
  11548. {
  11549. name: "Normal",
  11550. height: math.unit(13, "feet"),
  11551. default: true
  11552. },
  11553. {
  11554. name: "Big Boi",
  11555. height: math.unit(150, "meters")
  11556. },
  11557. {
  11558. name: "Mini Stomper",
  11559. height: math.unit(300, "meters")
  11560. },
  11561. {
  11562. name: "Macro",
  11563. height: math.unit(1000, "meters")
  11564. },
  11565. {
  11566. name: "Megamacro",
  11567. height: math.unit(11000, "meters")
  11568. },
  11569. {
  11570. name: "Gigamacro",
  11571. height: math.unit(11000, "km")
  11572. },
  11573. {
  11574. name: "Teramacro",
  11575. height: math.unit(420000, "km")
  11576. },
  11577. {
  11578. name: "Examacro",
  11579. height: math.unit(120, "parsecs")
  11580. },
  11581. {
  11582. name: "God Tho",
  11583. height: math.unit(98000000000, "parsecs")
  11584. },
  11585. ]
  11586. ))
  11587. characterMakers.push(() => makeCharacter(
  11588. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11589. {
  11590. taurFront: {
  11591. height: math.unit(6, "feet"),
  11592. weight: math.unit(200, "lb"),
  11593. name: "Taur (Front)",
  11594. image: {
  11595. source: "./media/characters/scales/taur-front.svg",
  11596. extra: 1,
  11597. bottom: 0.05
  11598. }
  11599. },
  11600. taurBack: {
  11601. height: math.unit(6, "feet"),
  11602. weight: math.unit(200, "lb"),
  11603. name: "Taur (Back)",
  11604. image: {
  11605. source: "./media/characters/scales/taur-back.svg",
  11606. extra: 1,
  11607. bottom: 0.08
  11608. }
  11609. },
  11610. anthro: {
  11611. height: math.unit(6 * 7 / 12, "feet"),
  11612. weight: math.unit(100, "lb"),
  11613. name: "Anthro",
  11614. image: {
  11615. source: "./media/characters/scales/anthro.svg",
  11616. extra: 1,
  11617. bottom: 0.06
  11618. }
  11619. },
  11620. },
  11621. [
  11622. {
  11623. name: "Normal",
  11624. height: math.unit(12, "feet"),
  11625. default: true
  11626. },
  11627. ]
  11628. ))
  11629. characterMakers.push(() => makeCharacter(
  11630. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11631. {
  11632. front: {
  11633. height: math.unit(6, "feet"),
  11634. weight: math.unit(150, "lb"),
  11635. name: "Front",
  11636. image: {
  11637. source: "./media/characters/koragos/front.svg",
  11638. extra: 841 / 794,
  11639. bottom: 0.035
  11640. }
  11641. },
  11642. back: {
  11643. height: math.unit(6, "feet"),
  11644. weight: math.unit(150, "lb"),
  11645. name: "Back",
  11646. image: {
  11647. source: "./media/characters/koragos/back.svg",
  11648. extra: 841 / 810,
  11649. bottom: 0.022
  11650. }
  11651. },
  11652. },
  11653. [
  11654. {
  11655. name: "Normal",
  11656. height: math.unit(6 + 11 / 12, "feet"),
  11657. default: true
  11658. },
  11659. {
  11660. name: "Macro",
  11661. height: math.unit(490, "feet")
  11662. },
  11663. {
  11664. name: "Megamacro",
  11665. height: math.unit(10, "miles")
  11666. },
  11667. {
  11668. name: "Gigamacro",
  11669. height: math.unit(50, "miles")
  11670. },
  11671. ]
  11672. ))
  11673. characterMakers.push(() => makeCharacter(
  11674. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11675. {
  11676. front: {
  11677. height: math.unit(6, "feet"),
  11678. weight: math.unit(250, "lb"),
  11679. name: "Front",
  11680. image: {
  11681. source: "./media/characters/xylrem/front.svg",
  11682. extra: 3323 / 3050,
  11683. bottom: 0.065
  11684. }
  11685. },
  11686. },
  11687. [
  11688. {
  11689. name: "Micro",
  11690. height: math.unit(4, "feet")
  11691. },
  11692. {
  11693. name: "Normal",
  11694. height: math.unit(16, "feet"),
  11695. default: true
  11696. },
  11697. {
  11698. name: "Macro",
  11699. height: math.unit(2720, "feet")
  11700. },
  11701. {
  11702. name: "Megamacro",
  11703. height: math.unit(25000, "miles")
  11704. },
  11705. ]
  11706. ))
  11707. characterMakers.push(() => makeCharacter(
  11708. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11709. {
  11710. front: {
  11711. height: math.unit(8, "feet"),
  11712. weight: math.unit(250, "kg"),
  11713. name: "Front",
  11714. image: {
  11715. source: "./media/characters/ikideru/front.svg",
  11716. extra: 930 / 870,
  11717. bottom: 0.087
  11718. }
  11719. },
  11720. back: {
  11721. height: math.unit(8, "feet"),
  11722. weight: math.unit(250, "kg"),
  11723. name: "Back",
  11724. image: {
  11725. source: "./media/characters/ikideru/back.svg",
  11726. extra: 919 / 852,
  11727. bottom: 0.055
  11728. }
  11729. },
  11730. },
  11731. [
  11732. {
  11733. name: "Rare",
  11734. height: math.unit(8, "feet"),
  11735. default: true
  11736. },
  11737. {
  11738. name: "Playful Loom",
  11739. height: math.unit(80, "feet")
  11740. },
  11741. {
  11742. name: "City Leaner",
  11743. height: math.unit(230, "feet")
  11744. },
  11745. {
  11746. name: "Megamacro",
  11747. height: math.unit(2500, "feet")
  11748. },
  11749. {
  11750. name: "Gigamacro",
  11751. height: math.unit(26400, "feet")
  11752. },
  11753. {
  11754. name: "Tectonic Shifter",
  11755. height: math.unit(1.7, "megameters")
  11756. },
  11757. {
  11758. name: "Planet Carer",
  11759. height: math.unit(21, "megameters")
  11760. },
  11761. {
  11762. name: "God",
  11763. height: math.unit(11157.22, "parsecs")
  11764. },
  11765. ]
  11766. ))
  11767. characterMakers.push(() => makeCharacter(
  11768. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11769. {
  11770. front: {
  11771. height: math.unit(6, "feet"),
  11772. weight: math.unit(120, "lb"),
  11773. name: "Front",
  11774. image: {
  11775. source: "./media/characters/neo/front.svg"
  11776. }
  11777. },
  11778. },
  11779. [
  11780. {
  11781. name: "Micro",
  11782. height: math.unit(2, "inches"),
  11783. default: true
  11784. },
  11785. {
  11786. name: "Human Size",
  11787. height: math.unit(5 + 8 / 12, "feet")
  11788. },
  11789. ]
  11790. ))
  11791. characterMakers.push(() => makeCharacter(
  11792. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11793. {
  11794. front: {
  11795. height: math.unit(13 + 10 / 12, "feet"),
  11796. weight: math.unit(5320, "lb"),
  11797. name: "Front",
  11798. image: {
  11799. source: "./media/characters/chauncey-chantz/front.svg",
  11800. extra: 1587 / 1435,
  11801. bottom: 0.02
  11802. }
  11803. },
  11804. },
  11805. [
  11806. {
  11807. name: "Normal",
  11808. height: math.unit(13 + 10 / 12, "feet"),
  11809. default: true
  11810. },
  11811. {
  11812. name: "Macro",
  11813. height: math.unit(45, "feet")
  11814. },
  11815. {
  11816. name: "Megamacro",
  11817. height: math.unit(250, "miles")
  11818. },
  11819. {
  11820. name: "Planetary",
  11821. height: math.unit(10000, "miles")
  11822. },
  11823. {
  11824. name: "Galactic",
  11825. height: math.unit(40000, "parsecs")
  11826. },
  11827. {
  11828. name: "Universal",
  11829. height: math.unit(1, "yottameter")
  11830. },
  11831. ]
  11832. ))
  11833. characterMakers.push(() => makeCharacter(
  11834. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11835. {
  11836. front: {
  11837. height: math.unit(6, "feet"),
  11838. weight: math.unit(150, "lb"),
  11839. name: "Front",
  11840. image: {
  11841. source: "./media/characters/epifox/front.svg",
  11842. extra: 1,
  11843. bottom: 0.075
  11844. }
  11845. },
  11846. },
  11847. [
  11848. {
  11849. name: "Micro",
  11850. height: math.unit(6, "inches")
  11851. },
  11852. {
  11853. name: "Normal",
  11854. height: math.unit(12, "feet"),
  11855. default: true
  11856. },
  11857. {
  11858. name: "Macro",
  11859. height: math.unit(3810, "feet")
  11860. },
  11861. {
  11862. name: "Megamacro",
  11863. height: math.unit(500, "miles")
  11864. },
  11865. ]
  11866. ))
  11867. characterMakers.push(() => makeCharacter(
  11868. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11869. {
  11870. front: {
  11871. height: math.unit(1.8796, "m"),
  11872. weight: math.unit(230, "lb"),
  11873. name: "Front",
  11874. image: {
  11875. source: "./media/characters/colin-t/front.svg",
  11876. extra: 1272 / 1193,
  11877. bottom: 0.07
  11878. }
  11879. },
  11880. },
  11881. [
  11882. {
  11883. name: "Micro",
  11884. height: math.unit(0.571, "meters")
  11885. },
  11886. {
  11887. name: "Normal",
  11888. height: math.unit(1.8796, "meters"),
  11889. default: true
  11890. },
  11891. {
  11892. name: "Tall",
  11893. height: math.unit(4, "meters")
  11894. },
  11895. {
  11896. name: "Macro",
  11897. height: math.unit(67.241, "meters")
  11898. },
  11899. {
  11900. name: "Megamacro",
  11901. height: math.unit(371.856, "meters")
  11902. },
  11903. {
  11904. name: "Planetary",
  11905. height: math.unit(12631.5689, "km")
  11906. },
  11907. ]
  11908. ))
  11909. characterMakers.push(() => makeCharacter(
  11910. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11911. {
  11912. front: {
  11913. height: math.unit(1.85, "meters"),
  11914. weight: math.unit(80, "kg"),
  11915. name: "Front",
  11916. image: {
  11917. source: "./media/characters/matvei/front.svg",
  11918. extra: 614 / 594,
  11919. bottom: 0.01
  11920. }
  11921. },
  11922. },
  11923. [
  11924. {
  11925. name: "Normal",
  11926. height: math.unit(1.85, "meters"),
  11927. default: true
  11928. },
  11929. ]
  11930. ))
  11931. characterMakers.push(() => makeCharacter(
  11932. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11933. {
  11934. front: {
  11935. height: math.unit(5 + 9 / 12, "feet"),
  11936. weight: math.unit(70, "lb"),
  11937. name: "Front",
  11938. image: {
  11939. source: "./media/characters/quincy/front.svg",
  11940. extra: 3041 / 2751
  11941. }
  11942. },
  11943. back: {
  11944. height: math.unit(5 + 9 / 12, "feet"),
  11945. weight: math.unit(70, "lb"),
  11946. name: "Back",
  11947. image: {
  11948. source: "./media/characters/quincy/back.svg",
  11949. extra: 3041 / 2751
  11950. }
  11951. },
  11952. flying: {
  11953. height: math.unit(5 + 4 / 12, "feet"),
  11954. weight: math.unit(70, "lb"),
  11955. name: "Flying",
  11956. image: {
  11957. source: "./media/characters/quincy/flying.svg",
  11958. extra: 1044 / 930
  11959. }
  11960. },
  11961. },
  11962. [
  11963. {
  11964. name: "Micro",
  11965. height: math.unit(3, "cm")
  11966. },
  11967. {
  11968. name: "Normal",
  11969. height: math.unit(5 + 9 / 12, "feet")
  11970. },
  11971. {
  11972. name: "Macro",
  11973. height: math.unit(200, "meters"),
  11974. default: true
  11975. },
  11976. {
  11977. name: "Megamacro",
  11978. height: math.unit(1000, "meters")
  11979. },
  11980. ]
  11981. ))
  11982. characterMakers.push(() => makeCharacter(
  11983. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11984. {
  11985. front: {
  11986. height: math.unit(3 + 11/12, "feet"),
  11987. weight: math.unit(50, "lb"),
  11988. name: "Front",
  11989. image: {
  11990. source: "./media/characters/vanrel/front.svg",
  11991. extra: 1104/949,
  11992. bottom: 52/1156
  11993. }
  11994. },
  11995. back: {
  11996. height: math.unit(3 + 11/12, "feet"),
  11997. weight: math.unit(50, "lb"),
  11998. name: "Back",
  11999. image: {
  12000. source: "./media/characters/vanrel/back.svg",
  12001. extra: 1119/976,
  12002. bottom: 37/1156
  12003. }
  12004. },
  12005. tome: {
  12006. height: math.unit(1.35, "feet"),
  12007. weight: math.unit(10, "lb"),
  12008. name: "Vanrel's Tome",
  12009. rename: true,
  12010. image: {
  12011. source: "./media/characters/vanrel/tome.svg"
  12012. }
  12013. },
  12014. beans: {
  12015. height: math.unit(0.89, "feet"),
  12016. name: "Beans",
  12017. image: {
  12018. source: "./media/characters/vanrel/beans.svg"
  12019. }
  12020. },
  12021. },
  12022. [
  12023. {
  12024. name: "Normal",
  12025. height: math.unit(3 + 11/12, "feet"),
  12026. default: true
  12027. },
  12028. ]
  12029. ))
  12030. characterMakers.push(() => makeCharacter(
  12031. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12032. {
  12033. front: {
  12034. height: math.unit(7 + 5 / 12, "feet"),
  12035. name: "Front",
  12036. image: {
  12037. source: "./media/characters/kuiper-vanrel/front.svg",
  12038. extra: 1219/1169,
  12039. bottom: 69/1288
  12040. }
  12041. },
  12042. back: {
  12043. height: math.unit(7 + 5 / 12, "feet"),
  12044. name: "Back",
  12045. image: {
  12046. source: "./media/characters/kuiper-vanrel/back.svg",
  12047. extra: 1236/1193,
  12048. bottom: 27/1263
  12049. }
  12050. },
  12051. foot: {
  12052. height: math.unit(0.55, "meters"),
  12053. name: "Foot",
  12054. image: {
  12055. source: "./media/characters/kuiper-vanrel/foot.svg",
  12056. }
  12057. },
  12058. battle: {
  12059. height: math.unit(6.824, "feet"),
  12060. name: "Battle",
  12061. image: {
  12062. source: "./media/characters/kuiper-vanrel/battle.svg",
  12063. extra: 1466 / 1327,
  12064. bottom: 29 / 1492.5
  12065. }
  12066. },
  12067. meerkui: {
  12068. height: math.unit(18, "inches"),
  12069. name: "Meerkui",
  12070. image: {
  12071. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12072. extra: 1354/1289,
  12073. bottom: 69/1423
  12074. }
  12075. },
  12076. },
  12077. [
  12078. {
  12079. name: "Normal",
  12080. height: math.unit(7 + 5 / 12, "feet"),
  12081. default: true
  12082. },
  12083. ]
  12084. ))
  12085. characterMakers.push(() => makeCharacter(
  12086. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12087. {
  12088. front: {
  12089. height: math.unit(8 + 5 / 12, "feet"),
  12090. name: "Front",
  12091. image: {
  12092. source: "./media/characters/keset-vanrel/front.svg",
  12093. extra: 1231/1148,
  12094. bottom: 82/1313
  12095. }
  12096. },
  12097. back: {
  12098. height: math.unit(8 + 5 / 12, "feet"),
  12099. name: "Back",
  12100. image: {
  12101. source: "./media/characters/keset-vanrel/back.svg",
  12102. extra: 1240/1174,
  12103. bottom: 33/1273
  12104. }
  12105. },
  12106. hand: {
  12107. height: math.unit(0.6, "meters"),
  12108. name: "Hand",
  12109. image: {
  12110. source: "./media/characters/keset-vanrel/hand.svg"
  12111. }
  12112. },
  12113. foot: {
  12114. height: math.unit(0.94978, "meters"),
  12115. name: "Foot",
  12116. image: {
  12117. source: "./media/characters/keset-vanrel/foot.svg"
  12118. }
  12119. },
  12120. battle: {
  12121. height: math.unit(7.408, "feet"),
  12122. name: "Battle",
  12123. image: {
  12124. source: "./media/characters/keset-vanrel/battle.svg",
  12125. extra: 1890 / 1386,
  12126. bottom: 73.28 / 1970
  12127. }
  12128. },
  12129. },
  12130. [
  12131. {
  12132. name: "Normal",
  12133. height: math.unit(8 + 5 / 12, "feet"),
  12134. default: true
  12135. },
  12136. ]
  12137. ))
  12138. characterMakers.push(() => makeCharacter(
  12139. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12140. {
  12141. front: {
  12142. height: math.unit(6, "feet"),
  12143. weight: math.unit(150, "lb"),
  12144. name: "Front",
  12145. image: {
  12146. source: "./media/characters/neos/front.svg",
  12147. extra: 1696 / 992,
  12148. bottom: 0.14
  12149. }
  12150. },
  12151. },
  12152. [
  12153. {
  12154. name: "Normal",
  12155. height: math.unit(54, "cm"),
  12156. default: true
  12157. },
  12158. {
  12159. name: "Macro",
  12160. height: math.unit(100, "m")
  12161. },
  12162. {
  12163. name: "Megamacro",
  12164. height: math.unit(10, "km")
  12165. },
  12166. {
  12167. name: "Megamacro+",
  12168. height: math.unit(100, "km")
  12169. },
  12170. {
  12171. name: "Gigamacro",
  12172. height: math.unit(100, "Mm")
  12173. },
  12174. {
  12175. name: "Teramacro",
  12176. height: math.unit(100, "Gm")
  12177. },
  12178. {
  12179. name: "Examacro",
  12180. height: math.unit(100, "Em")
  12181. },
  12182. {
  12183. name: "Godly",
  12184. height: math.unit(10000, "Ym")
  12185. },
  12186. {
  12187. name: "Beyond Godly",
  12188. height: math.unit(25, "multiverses")
  12189. },
  12190. ]
  12191. ))
  12192. characterMakers.push(() => makeCharacter(
  12193. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12194. {
  12195. feminine: {
  12196. height: math.unit(5, "feet"),
  12197. weight: math.unit(100, "lb"),
  12198. name: "Feminine",
  12199. image: {
  12200. source: "./media/characters/sammy-mouse/feminine.svg",
  12201. extra: 2526 / 2425,
  12202. bottom: 0.123
  12203. }
  12204. },
  12205. masculine: {
  12206. height: math.unit(5, "feet"),
  12207. weight: math.unit(100, "lb"),
  12208. name: "Masculine",
  12209. image: {
  12210. source: "./media/characters/sammy-mouse/masculine.svg",
  12211. extra: 2526 / 2425,
  12212. bottom: 0.123
  12213. }
  12214. },
  12215. },
  12216. [
  12217. {
  12218. name: "Micro",
  12219. height: math.unit(5, "inches")
  12220. },
  12221. {
  12222. name: "Normal",
  12223. height: math.unit(5, "feet"),
  12224. default: true
  12225. },
  12226. {
  12227. name: "Macro",
  12228. height: math.unit(60, "feet")
  12229. },
  12230. ]
  12231. ))
  12232. characterMakers.push(() => makeCharacter(
  12233. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12234. {
  12235. front: {
  12236. height: math.unit(4, "feet"),
  12237. weight: math.unit(50, "lb"),
  12238. name: "Front",
  12239. image: {
  12240. source: "./media/characters/kole/front.svg",
  12241. extra: 1423 / 1303,
  12242. bottom: 0.025
  12243. }
  12244. },
  12245. back: {
  12246. height: math.unit(4, "feet"),
  12247. weight: math.unit(50, "lb"),
  12248. name: "Back",
  12249. image: {
  12250. source: "./media/characters/kole/back.svg",
  12251. extra: 1426 / 1280,
  12252. bottom: 0.02
  12253. }
  12254. },
  12255. },
  12256. [
  12257. {
  12258. name: "Normal",
  12259. height: math.unit(4, "feet"),
  12260. default: true
  12261. },
  12262. ]
  12263. ))
  12264. characterMakers.push(() => makeCharacter(
  12265. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12266. {
  12267. front: {
  12268. height: math.unit(2.5, "feet"),
  12269. weight: math.unit(32, "lb"),
  12270. name: "Front",
  12271. image: {
  12272. source: "./media/characters/rufran/front.svg",
  12273. extra: 1313/885,
  12274. bottom: 94/1407
  12275. }
  12276. },
  12277. side: {
  12278. height: math.unit(2.5, "feet"),
  12279. weight: math.unit(32, "lb"),
  12280. name: "Side",
  12281. image: {
  12282. source: "./media/characters/rufran/side.svg",
  12283. extra: 1109/852,
  12284. bottom: 118/1227
  12285. }
  12286. },
  12287. back: {
  12288. height: math.unit(2.5, "feet"),
  12289. weight: math.unit(32, "lb"),
  12290. name: "Back",
  12291. image: {
  12292. source: "./media/characters/rufran/back.svg",
  12293. extra: 1280/878,
  12294. bottom: 131/1411
  12295. }
  12296. },
  12297. mouth: {
  12298. height: math.unit(1.13, "feet"),
  12299. name: "Mouth",
  12300. image: {
  12301. source: "./media/characters/rufran/mouth.svg"
  12302. }
  12303. },
  12304. foot: {
  12305. height: math.unit(1.33, "feet"),
  12306. name: "Foot",
  12307. image: {
  12308. source: "./media/characters/rufran/foot.svg"
  12309. }
  12310. },
  12311. koboldFront: {
  12312. height: math.unit(2 + 6 / 12, "feet"),
  12313. weight: math.unit(20, "lb"),
  12314. name: "Front (Kobold)",
  12315. image: {
  12316. source: "./media/characters/rufran/kobold-front.svg",
  12317. extra: 2041 / 1839,
  12318. bottom: 0.055
  12319. }
  12320. },
  12321. koboldBack: {
  12322. height: math.unit(2 + 6 / 12, "feet"),
  12323. weight: math.unit(20, "lb"),
  12324. name: "Back (Kobold)",
  12325. image: {
  12326. source: "./media/characters/rufran/kobold-back.svg",
  12327. extra: 2054 / 1839,
  12328. bottom: 0.01
  12329. }
  12330. },
  12331. koboldHand: {
  12332. height: math.unit(0.2166, "meters"),
  12333. name: "Hand (Kobold)",
  12334. image: {
  12335. source: "./media/characters/rufran/kobold-hand.svg"
  12336. }
  12337. },
  12338. koboldFoot: {
  12339. height: math.unit(0.185, "meters"),
  12340. name: "Foot (Kobold)",
  12341. image: {
  12342. source: "./media/characters/rufran/kobold-foot.svg"
  12343. }
  12344. },
  12345. },
  12346. [
  12347. {
  12348. name: "Micro",
  12349. height: math.unit(1, "inch")
  12350. },
  12351. {
  12352. name: "Normal",
  12353. height: math.unit(2 + 6 / 12, "feet"),
  12354. default: true
  12355. },
  12356. {
  12357. name: "Big",
  12358. height: math.unit(60, "feet")
  12359. },
  12360. {
  12361. name: "Macro",
  12362. height: math.unit(325, "feet")
  12363. },
  12364. ]
  12365. ))
  12366. characterMakers.push(() => makeCharacter(
  12367. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12368. {
  12369. front: {
  12370. height: math.unit(0.3, "meters"),
  12371. weight: math.unit(3.5, "kg"),
  12372. name: "Front",
  12373. image: {
  12374. source: "./media/characters/chip/front.svg",
  12375. extra: 748 / 674
  12376. }
  12377. },
  12378. },
  12379. [
  12380. {
  12381. name: "Micro",
  12382. height: math.unit(1, "inch"),
  12383. default: true
  12384. },
  12385. ]
  12386. ))
  12387. characterMakers.push(() => makeCharacter(
  12388. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12389. {
  12390. side: {
  12391. height: math.unit(2.3, "meters"),
  12392. weight: math.unit(3500, "lb"),
  12393. name: "Side",
  12394. image: {
  12395. source: "./media/characters/torvid/side.svg",
  12396. extra: 1972 / 722,
  12397. bottom: 0.035
  12398. }
  12399. },
  12400. },
  12401. [
  12402. {
  12403. name: "Normal",
  12404. height: math.unit(2.3, "meters"),
  12405. default: true
  12406. },
  12407. ]
  12408. ))
  12409. characterMakers.push(() => makeCharacter(
  12410. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12411. {
  12412. front: {
  12413. height: math.unit(2, "meters"),
  12414. weight: math.unit(150.5, "kg"),
  12415. name: "Front",
  12416. image: {
  12417. source: "./media/characters/susan/front.svg",
  12418. extra: 693 / 635,
  12419. bottom: 0.05
  12420. }
  12421. },
  12422. },
  12423. [
  12424. {
  12425. name: "Megamacro",
  12426. height: math.unit(505, "miles"),
  12427. default: true
  12428. },
  12429. ]
  12430. ))
  12431. characterMakers.push(() => makeCharacter(
  12432. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12433. {
  12434. front: {
  12435. height: math.unit(6, "feet"),
  12436. weight: math.unit(150, "lb"),
  12437. name: "Front",
  12438. image: {
  12439. source: "./media/characters/raindrops/front.svg",
  12440. extra: 2655 / 2461,
  12441. bottom: 49 / 2705
  12442. }
  12443. },
  12444. back: {
  12445. height: math.unit(6, "feet"),
  12446. weight: math.unit(150, "lb"),
  12447. name: "Back",
  12448. image: {
  12449. source: "./media/characters/raindrops/back.svg",
  12450. extra: 2574 / 2400,
  12451. bottom: 65 / 2634
  12452. }
  12453. },
  12454. },
  12455. [
  12456. {
  12457. name: "Micro",
  12458. height: math.unit(6, "inches")
  12459. },
  12460. {
  12461. name: "Normal",
  12462. height: math.unit(6 + 2 / 12, "feet")
  12463. },
  12464. {
  12465. name: "Macro",
  12466. height: math.unit(131, "feet"),
  12467. default: true
  12468. },
  12469. {
  12470. name: "Megamacro",
  12471. height: math.unit(15, "miles")
  12472. },
  12473. {
  12474. name: "Gigamacro",
  12475. height: math.unit(4000, "miles")
  12476. },
  12477. {
  12478. name: "Teramacro",
  12479. height: math.unit(315000, "miles")
  12480. },
  12481. ]
  12482. ))
  12483. characterMakers.push(() => makeCharacter(
  12484. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12485. {
  12486. front: {
  12487. height: math.unit(2.794, "meters"),
  12488. weight: math.unit(325, "kg"),
  12489. name: "Front",
  12490. image: {
  12491. source: "./media/characters/tezwa/front.svg",
  12492. extra: 2083 / 1906,
  12493. bottom: 0.031
  12494. }
  12495. },
  12496. foot: {
  12497. height: math.unit(0.687, "meters"),
  12498. name: "Foot",
  12499. image: {
  12500. source: "./media/characters/tezwa/foot.svg"
  12501. }
  12502. },
  12503. },
  12504. [
  12505. {
  12506. name: "Normal",
  12507. height: math.unit(9 + 2 / 12, "feet"),
  12508. default: true
  12509. },
  12510. ]
  12511. ))
  12512. characterMakers.push(() => makeCharacter(
  12513. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12514. {
  12515. front: {
  12516. height: math.unit(58, "feet"),
  12517. weight: math.unit(89000, "lb"),
  12518. name: "Front",
  12519. image: {
  12520. source: "./media/characters/typhus/front.svg",
  12521. extra: 816 / 800,
  12522. bottom: 0.065
  12523. }
  12524. },
  12525. },
  12526. [
  12527. {
  12528. name: "Macro",
  12529. height: math.unit(58, "feet"),
  12530. default: true
  12531. },
  12532. ]
  12533. ))
  12534. characterMakers.push(() => makeCharacter(
  12535. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12536. {
  12537. front: {
  12538. height: math.unit(12, "feet"),
  12539. weight: math.unit(6, "tonnes"),
  12540. name: "Front",
  12541. image: {
  12542. source: "./media/characters/lyra-von-wulf/front.svg",
  12543. extra: 1,
  12544. bottom: 0.10
  12545. }
  12546. },
  12547. frontMecha: {
  12548. height: math.unit(12, "feet"),
  12549. weight: math.unit(12, "tonnes"),
  12550. name: "Front (Mecha)",
  12551. image: {
  12552. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12553. extra: 1,
  12554. bottom: 0.042
  12555. }
  12556. },
  12557. maw: {
  12558. height: math.unit(2.2, "feet"),
  12559. name: "Maw",
  12560. image: {
  12561. source: "./media/characters/lyra-von-wulf/maw.svg"
  12562. }
  12563. },
  12564. },
  12565. [
  12566. {
  12567. name: "Normal",
  12568. height: math.unit(12, "feet"),
  12569. default: true
  12570. },
  12571. {
  12572. name: "Classic",
  12573. height: math.unit(50, "feet")
  12574. },
  12575. {
  12576. name: "Macro",
  12577. height: math.unit(500, "feet")
  12578. },
  12579. {
  12580. name: "Megamacro",
  12581. height: math.unit(1, "mile")
  12582. },
  12583. {
  12584. name: "Gigamacro",
  12585. height: math.unit(400, "miles")
  12586. },
  12587. {
  12588. name: "Teramacro",
  12589. height: math.unit(22000, "miles")
  12590. },
  12591. {
  12592. name: "Solarmacro",
  12593. height: math.unit(8600000, "miles")
  12594. },
  12595. {
  12596. name: "Galactic",
  12597. height: math.unit(1057000, "lightyears")
  12598. },
  12599. ]
  12600. ))
  12601. characterMakers.push(() => makeCharacter(
  12602. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12603. {
  12604. front: {
  12605. height: math.unit(6 + 10 / 12, "feet"),
  12606. weight: math.unit(150, "lb"),
  12607. name: "Front",
  12608. image: {
  12609. source: "./media/characters/dixon/front.svg",
  12610. extra: 3361 / 3209,
  12611. bottom: 0.01
  12612. }
  12613. },
  12614. },
  12615. [
  12616. {
  12617. name: "Normal",
  12618. height: math.unit(6 + 10 / 12, "feet"),
  12619. default: true
  12620. },
  12621. {
  12622. name: "Big",
  12623. height: math.unit(12, "meters")
  12624. },
  12625. {
  12626. name: "Macro",
  12627. height: math.unit(500, "meters")
  12628. },
  12629. {
  12630. name: "Megamacro",
  12631. height: math.unit(2, "km")
  12632. },
  12633. ]
  12634. ))
  12635. characterMakers.push(() => makeCharacter(
  12636. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12637. {
  12638. front: {
  12639. height: math.unit(185, "cm"),
  12640. weight: math.unit(68, "kg"),
  12641. name: "Front",
  12642. image: {
  12643. source: "./media/characters/kauko/front.svg",
  12644. extra: 1455 / 1421,
  12645. bottom: 0.03
  12646. }
  12647. },
  12648. back: {
  12649. height: math.unit(185, "cm"),
  12650. weight: math.unit(68, "kg"),
  12651. name: "Back",
  12652. image: {
  12653. source: "./media/characters/kauko/back.svg",
  12654. extra: 1455 / 1421,
  12655. bottom: 0.004
  12656. }
  12657. },
  12658. },
  12659. [
  12660. {
  12661. name: "Normal",
  12662. height: math.unit(185, "cm"),
  12663. default: true
  12664. },
  12665. ]
  12666. ))
  12667. characterMakers.push(() => makeCharacter(
  12668. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12669. {
  12670. front: {
  12671. height: math.unit(6, "feet"),
  12672. weight: math.unit(150, "kg"),
  12673. name: "Front",
  12674. image: {
  12675. source: "./media/characters/varg/front.svg",
  12676. extra: 1108 / 1018,
  12677. bottom: 0.0375
  12678. }
  12679. },
  12680. },
  12681. [
  12682. {
  12683. name: "Normal",
  12684. height: math.unit(5, "meters")
  12685. },
  12686. {
  12687. name: "Macro",
  12688. height: math.unit(200, "meters")
  12689. },
  12690. {
  12691. name: "Megamacro",
  12692. height: math.unit(20, "kilometers")
  12693. },
  12694. {
  12695. name: "True Size",
  12696. height: math.unit(211, "km"),
  12697. default: true
  12698. },
  12699. {
  12700. name: "Gigamacro",
  12701. height: math.unit(1000, "km")
  12702. },
  12703. {
  12704. name: "Gigamacro+",
  12705. height: math.unit(8000, "km")
  12706. },
  12707. {
  12708. name: "Teramacro",
  12709. height: math.unit(1000000, "km")
  12710. },
  12711. ]
  12712. ))
  12713. characterMakers.push(() => makeCharacter(
  12714. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12715. {
  12716. front: {
  12717. height: math.unit(7 + 7 / 12, "feet"),
  12718. weight: math.unit(267, "lb"),
  12719. name: "Front",
  12720. image: {
  12721. source: "./media/characters/dayza/front.svg",
  12722. extra: 1262 / 1200,
  12723. bottom: 0.035
  12724. }
  12725. },
  12726. side: {
  12727. height: math.unit(7 + 7 / 12, "feet"),
  12728. weight: math.unit(267, "lb"),
  12729. name: "Side",
  12730. image: {
  12731. source: "./media/characters/dayza/side.svg",
  12732. extra: 1295 / 1245,
  12733. bottom: 0.05
  12734. }
  12735. },
  12736. back: {
  12737. height: math.unit(7 + 7 / 12, "feet"),
  12738. weight: math.unit(267, "lb"),
  12739. name: "Back",
  12740. image: {
  12741. source: "./media/characters/dayza/back.svg",
  12742. extra: 1241 / 1170
  12743. }
  12744. },
  12745. },
  12746. [
  12747. {
  12748. name: "Normal",
  12749. height: math.unit(7 + 7 / 12, "feet"),
  12750. default: true
  12751. },
  12752. {
  12753. name: "Macro",
  12754. height: math.unit(155, "feet")
  12755. },
  12756. ]
  12757. ))
  12758. characterMakers.push(() => makeCharacter(
  12759. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12760. {
  12761. front: {
  12762. height: math.unit(6 + 5 / 12, "feet"),
  12763. weight: math.unit(160, "lb"),
  12764. name: "Front",
  12765. image: {
  12766. source: "./media/characters/xanthos/front.svg",
  12767. extra: 1,
  12768. bottom: 0.04
  12769. }
  12770. },
  12771. back: {
  12772. height: math.unit(6 + 5 / 12, "feet"),
  12773. weight: math.unit(160, "lb"),
  12774. name: "Back",
  12775. image: {
  12776. source: "./media/characters/xanthos/back.svg",
  12777. extra: 1,
  12778. bottom: 0.03
  12779. }
  12780. },
  12781. hand: {
  12782. height: math.unit(0.928, "feet"),
  12783. name: "Hand",
  12784. image: {
  12785. source: "./media/characters/xanthos/hand.svg"
  12786. }
  12787. },
  12788. foot: {
  12789. height: math.unit(1.286, "feet"),
  12790. name: "Foot",
  12791. image: {
  12792. source: "./media/characters/xanthos/foot.svg"
  12793. }
  12794. },
  12795. },
  12796. [
  12797. {
  12798. name: "Normal",
  12799. height: math.unit(6 + 5 / 12, "feet"),
  12800. default: true
  12801. },
  12802. {
  12803. name: "Normal+",
  12804. height: math.unit(6, "meters")
  12805. },
  12806. {
  12807. name: "Macro",
  12808. height: math.unit(40, "feet")
  12809. },
  12810. {
  12811. name: "Macro+",
  12812. height: math.unit(200, "meters")
  12813. },
  12814. {
  12815. name: "Megamacro",
  12816. height: math.unit(20, "km")
  12817. },
  12818. {
  12819. name: "Megamacro+",
  12820. height: math.unit(100, "km")
  12821. },
  12822. {
  12823. name: "Gigamacro",
  12824. height: math.unit(200, "megameters")
  12825. },
  12826. {
  12827. name: "Gigamacro+",
  12828. height: math.unit(1.5, "gigameters")
  12829. },
  12830. ]
  12831. ))
  12832. characterMakers.push(() => makeCharacter(
  12833. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12834. {
  12835. front: {
  12836. height: math.unit(6 + 3 / 12, "feet"),
  12837. weight: math.unit(215, "lb"),
  12838. name: "Front",
  12839. image: {
  12840. source: "./media/characters/grynn/front.svg",
  12841. extra: 4627 / 4209,
  12842. bottom: 0.047
  12843. }
  12844. },
  12845. },
  12846. [
  12847. {
  12848. name: "Micro",
  12849. height: math.unit(6, "inches")
  12850. },
  12851. {
  12852. name: "Normal",
  12853. height: math.unit(6 + 3 / 12, "feet"),
  12854. default: true
  12855. },
  12856. {
  12857. name: "Big",
  12858. height: math.unit(104, "feet")
  12859. },
  12860. {
  12861. name: "Macro",
  12862. height: math.unit(944, "feet")
  12863. },
  12864. {
  12865. name: "Macro+",
  12866. height: math.unit(9480, "feet")
  12867. },
  12868. {
  12869. name: "Megamacro",
  12870. height: math.unit(78752, "feet")
  12871. },
  12872. {
  12873. name: "Megamacro+",
  12874. height: math.unit(630128, "feet")
  12875. },
  12876. {
  12877. name: "Megamacro++",
  12878. height: math.unit(3150695, "feet")
  12879. },
  12880. ]
  12881. ))
  12882. characterMakers.push(() => makeCharacter(
  12883. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12884. {
  12885. front: {
  12886. height: math.unit(7 + 5 / 12, "feet"),
  12887. weight: math.unit(450, "lb"),
  12888. name: "Front",
  12889. image: {
  12890. source: "./media/characters/mocha-aura/front.svg",
  12891. extra: 1907 / 1817,
  12892. bottom: 0.04
  12893. }
  12894. },
  12895. back: {
  12896. height: math.unit(7 + 5 / 12, "feet"),
  12897. weight: math.unit(450, "lb"),
  12898. name: "Back",
  12899. image: {
  12900. source: "./media/characters/mocha-aura/back.svg",
  12901. extra: 1900 / 1825,
  12902. bottom: 0.045
  12903. }
  12904. },
  12905. },
  12906. [
  12907. {
  12908. name: "Nano",
  12909. height: math.unit(1, "nm")
  12910. },
  12911. {
  12912. name: "Megamicro",
  12913. height: math.unit(1, "mm")
  12914. },
  12915. {
  12916. name: "Micro",
  12917. height: math.unit(3, "inches")
  12918. },
  12919. {
  12920. name: "Normal",
  12921. height: math.unit(7 + 5 / 12, "feet"),
  12922. default: true
  12923. },
  12924. {
  12925. name: "Macro",
  12926. height: math.unit(30, "feet")
  12927. },
  12928. {
  12929. name: "Megamacro",
  12930. height: math.unit(3500, "feet")
  12931. },
  12932. {
  12933. name: "Teramacro",
  12934. height: math.unit(500000, "miles")
  12935. },
  12936. {
  12937. name: "Petamacro",
  12938. height: math.unit(50000000000000000, "parsecs")
  12939. },
  12940. ]
  12941. ))
  12942. characterMakers.push(() => makeCharacter(
  12943. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12944. {
  12945. front: {
  12946. height: math.unit(6, "feet"),
  12947. weight: math.unit(150, "lb"),
  12948. name: "Front",
  12949. image: {
  12950. source: "./media/characters/ilisha-devya/front.svg",
  12951. extra: 1,
  12952. bottom: 0.175
  12953. }
  12954. },
  12955. back: {
  12956. height: math.unit(6, "feet"),
  12957. weight: math.unit(150, "lb"),
  12958. name: "Back",
  12959. image: {
  12960. source: "./media/characters/ilisha-devya/back.svg",
  12961. extra: 1,
  12962. bottom: 0.015
  12963. }
  12964. },
  12965. },
  12966. [
  12967. {
  12968. name: "Macro",
  12969. height: math.unit(500, "feet"),
  12970. default: true
  12971. },
  12972. {
  12973. name: "Megamacro",
  12974. height: math.unit(10, "miles")
  12975. },
  12976. {
  12977. name: "Gigamacro",
  12978. height: math.unit(100000, "miles")
  12979. },
  12980. {
  12981. name: "Examacro",
  12982. height: math.unit(1e9, "lightyears")
  12983. },
  12984. {
  12985. name: "Omniversal",
  12986. height: math.unit(1e33, "lightyears")
  12987. },
  12988. {
  12989. name: "Beyond Infinite",
  12990. height: math.unit(1e100, "lightyears")
  12991. },
  12992. ]
  12993. ))
  12994. characterMakers.push(() => makeCharacter(
  12995. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12996. {
  12997. Side: {
  12998. height: math.unit(6, "feet"),
  12999. weight: math.unit(150, "lb"),
  13000. name: "Side",
  13001. image: {
  13002. source: "./media/characters/mira/side.svg",
  13003. extra: 900 / 799,
  13004. bottom: 0.02
  13005. }
  13006. },
  13007. },
  13008. [
  13009. {
  13010. name: "Human Size",
  13011. height: math.unit(6, "feet")
  13012. },
  13013. {
  13014. name: "Macro",
  13015. height: math.unit(100, "feet"),
  13016. default: true
  13017. },
  13018. {
  13019. name: "Megamacro",
  13020. height: math.unit(10, "miles")
  13021. },
  13022. {
  13023. name: "Gigamacro",
  13024. height: math.unit(25000, "miles")
  13025. },
  13026. {
  13027. name: "Teramacro",
  13028. height: math.unit(300, "AU")
  13029. },
  13030. {
  13031. name: "Full Size",
  13032. height: math.unit(4.5e10, "lightyears")
  13033. },
  13034. ]
  13035. ))
  13036. characterMakers.push(() => makeCharacter(
  13037. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13038. {
  13039. front: {
  13040. height: math.unit(6, "feet"),
  13041. weight: math.unit(150, "lb"),
  13042. name: "Front",
  13043. image: {
  13044. source: "./media/characters/holly/front.svg",
  13045. extra: 639 / 606
  13046. }
  13047. },
  13048. back: {
  13049. height: math.unit(6, "feet"),
  13050. weight: math.unit(150, "lb"),
  13051. name: "Back",
  13052. image: {
  13053. source: "./media/characters/holly/back.svg",
  13054. extra: 623 / 598
  13055. }
  13056. },
  13057. frontWorking: {
  13058. height: math.unit(6, "feet"),
  13059. weight: math.unit(150, "lb"),
  13060. name: "Front (Working)",
  13061. image: {
  13062. source: "./media/characters/holly/front-working.svg",
  13063. extra: 607 / 577,
  13064. bottom: 0.048
  13065. }
  13066. },
  13067. },
  13068. [
  13069. {
  13070. name: "Normal",
  13071. height: math.unit(12 + 3 / 12, "feet"),
  13072. default: true
  13073. },
  13074. ]
  13075. ))
  13076. characterMakers.push(() => makeCharacter(
  13077. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13078. {
  13079. front: {
  13080. height: math.unit(6, "feet"),
  13081. weight: math.unit(150, "lb"),
  13082. name: "Front",
  13083. image: {
  13084. source: "./media/characters/porter/front.svg",
  13085. extra: 1,
  13086. bottom: 0.01
  13087. }
  13088. },
  13089. frontRobes: {
  13090. height: math.unit(6, "feet"),
  13091. weight: math.unit(150, "lb"),
  13092. name: "Front (Robes)",
  13093. image: {
  13094. source: "./media/characters/porter/front-robes.svg",
  13095. extra: 1.01,
  13096. bottom: 0.01
  13097. }
  13098. },
  13099. },
  13100. [
  13101. {
  13102. name: "Normal",
  13103. height: math.unit(11 + 9 / 12, "feet"),
  13104. default: true
  13105. },
  13106. ]
  13107. ))
  13108. characterMakers.push(() => makeCharacter(
  13109. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13110. {
  13111. legendary: {
  13112. height: math.unit(6, "feet"),
  13113. weight: math.unit(150, "lb"),
  13114. name: "Legendary",
  13115. image: {
  13116. source: "./media/characters/lucy/legendary.svg",
  13117. extra: 1355 / 1100,
  13118. bottom: 0.045
  13119. }
  13120. },
  13121. },
  13122. [
  13123. {
  13124. name: "Legendary",
  13125. height: math.unit(86882 * 2, "miles"),
  13126. default: true
  13127. },
  13128. ]
  13129. ))
  13130. characterMakers.push(() => makeCharacter(
  13131. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13132. {
  13133. front: {
  13134. height: math.unit(6, "feet"),
  13135. weight: math.unit(150, "lb"),
  13136. name: "Front",
  13137. image: {
  13138. source: "./media/characters/drusilla/front.svg",
  13139. extra: 678 / 635,
  13140. bottom: 0.03
  13141. }
  13142. },
  13143. back: {
  13144. height: math.unit(6, "feet"),
  13145. weight: math.unit(150, "lb"),
  13146. name: "Back",
  13147. image: {
  13148. source: "./media/characters/drusilla/back.svg",
  13149. extra: 678 / 635,
  13150. bottom: 0.005
  13151. }
  13152. },
  13153. },
  13154. [
  13155. {
  13156. name: "Macro",
  13157. height: math.unit(100, "feet")
  13158. },
  13159. {
  13160. name: "Canon Height",
  13161. height: math.unit(2000, "feet"),
  13162. default: true
  13163. },
  13164. ]
  13165. ))
  13166. characterMakers.push(() => makeCharacter(
  13167. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13168. {
  13169. front: {
  13170. height: math.unit(6, "feet"),
  13171. weight: math.unit(180, "lb"),
  13172. name: "Front",
  13173. image: {
  13174. source: "./media/characters/renard-thatch/front.svg",
  13175. extra: 2411 / 2275,
  13176. bottom: 0.01
  13177. }
  13178. },
  13179. frontPosing: {
  13180. height: math.unit(6, "feet"),
  13181. weight: math.unit(180, "lb"),
  13182. name: "Front (Posing)",
  13183. image: {
  13184. source: "./media/characters/renard-thatch/front-posing.svg",
  13185. extra: 2381 / 2261,
  13186. bottom: 0.01
  13187. }
  13188. },
  13189. back: {
  13190. height: math.unit(6, "feet"),
  13191. weight: math.unit(180, "lb"),
  13192. name: "Back",
  13193. image: {
  13194. source: "./media/characters/renard-thatch/back.svg",
  13195. extra: 2428 / 2288
  13196. }
  13197. },
  13198. },
  13199. [
  13200. {
  13201. name: "Micro",
  13202. height: math.unit(3, "inches")
  13203. },
  13204. {
  13205. name: "Default",
  13206. height: math.unit(6, "feet"),
  13207. default: true
  13208. },
  13209. {
  13210. name: "Macro",
  13211. height: math.unit(75, "feet")
  13212. },
  13213. ]
  13214. ))
  13215. characterMakers.push(() => makeCharacter(
  13216. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13217. {
  13218. front: {
  13219. height: math.unit(1450, "feet"),
  13220. weight: math.unit(1.21e6, "tons"),
  13221. name: "Front",
  13222. image: {
  13223. source: "./media/characters/sekvra/front.svg",
  13224. extra: 1,
  13225. bottom: 0.03
  13226. }
  13227. },
  13228. frontClothed: {
  13229. height: math.unit(1450, "feet"),
  13230. weight: math.unit(1.21e6, "tons"),
  13231. name: "Front (Clothed)",
  13232. image: {
  13233. source: "./media/characters/sekvra/front-clothed.svg",
  13234. extra: 1,
  13235. bottom: 0.03
  13236. }
  13237. },
  13238. side: {
  13239. height: math.unit(1450, "feet"),
  13240. weight: math.unit(1.21e6, "tons"),
  13241. name: "Side",
  13242. image: {
  13243. source: "./media/characters/sekvra/side.svg",
  13244. extra: 1,
  13245. bottom: 0.025
  13246. }
  13247. },
  13248. back: {
  13249. height: math.unit(1450, "feet"),
  13250. weight: math.unit(1.21e6, "tons"),
  13251. name: "Back",
  13252. image: {
  13253. source: "./media/characters/sekvra/back.svg",
  13254. extra: 1,
  13255. bottom: 0.005
  13256. }
  13257. },
  13258. },
  13259. [
  13260. {
  13261. name: "Macro",
  13262. height: math.unit(1450, "feet"),
  13263. default: true
  13264. },
  13265. {
  13266. name: "Megamacro",
  13267. height: math.unit(15000, "feet")
  13268. },
  13269. ]
  13270. ))
  13271. characterMakers.push(() => makeCharacter(
  13272. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13273. {
  13274. front: {
  13275. height: math.unit(6, "feet"),
  13276. weight: math.unit(150, "lb"),
  13277. name: "Front",
  13278. image: {
  13279. source: "./media/characters/carmine/front.svg",
  13280. extra: 1,
  13281. bottom: 0.035
  13282. }
  13283. },
  13284. frontArmor: {
  13285. height: math.unit(6, "feet"),
  13286. weight: math.unit(150, "lb"),
  13287. name: "Front (Armor)",
  13288. image: {
  13289. source: "./media/characters/carmine/front-armor.svg",
  13290. extra: 1,
  13291. bottom: 0.035
  13292. }
  13293. },
  13294. },
  13295. [
  13296. {
  13297. name: "Large",
  13298. height: math.unit(1, "mile")
  13299. },
  13300. {
  13301. name: "Huge",
  13302. height: math.unit(40, "miles"),
  13303. default: true
  13304. },
  13305. {
  13306. name: "Colossal",
  13307. height: math.unit(2500, "miles")
  13308. },
  13309. ]
  13310. ))
  13311. characterMakers.push(() => makeCharacter(
  13312. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13313. {
  13314. front: {
  13315. height: math.unit(6, "feet"),
  13316. weight: math.unit(150, "lb"),
  13317. name: "Front",
  13318. image: {
  13319. source: "./media/characters/elyssia/front.svg",
  13320. extra: 2201 / 2035,
  13321. bottom: 0.05
  13322. }
  13323. },
  13324. frontClothed: {
  13325. height: math.unit(6, "feet"),
  13326. weight: math.unit(150, "lb"),
  13327. name: "Front (Clothed)",
  13328. image: {
  13329. source: "./media/characters/elyssia/front-clothed.svg",
  13330. extra: 2201 / 2035,
  13331. bottom: 0.05
  13332. }
  13333. },
  13334. back: {
  13335. height: math.unit(6, "feet"),
  13336. weight: math.unit(150, "lb"),
  13337. name: "Back",
  13338. image: {
  13339. source: "./media/characters/elyssia/back.svg",
  13340. extra: 2201 / 2035,
  13341. bottom: 0.013
  13342. }
  13343. },
  13344. },
  13345. [
  13346. {
  13347. name: "Smaller",
  13348. height: math.unit(150, "feet")
  13349. },
  13350. {
  13351. name: "Standard",
  13352. height: math.unit(1400, "feet"),
  13353. default: true
  13354. },
  13355. {
  13356. name: "Distracted",
  13357. height: math.unit(15000, "feet")
  13358. },
  13359. ]
  13360. ))
  13361. characterMakers.push(() => makeCharacter(
  13362. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13363. {
  13364. front: {
  13365. height: math.unit(7 + 4 / 12, "feet"),
  13366. weight: math.unit(500, "lb"),
  13367. name: "Front",
  13368. image: {
  13369. source: "./media/characters/geno-maxwell/front.svg",
  13370. extra: 2207 / 2040,
  13371. bottom: 0.015
  13372. }
  13373. },
  13374. },
  13375. [
  13376. {
  13377. name: "Micro",
  13378. height: math.unit(3, "inches")
  13379. },
  13380. {
  13381. name: "Normal",
  13382. height: math.unit(7 + 4 / 12, "feet"),
  13383. default: true
  13384. },
  13385. {
  13386. name: "Macro",
  13387. height: math.unit(220, "feet")
  13388. },
  13389. {
  13390. name: "Megamacro",
  13391. height: math.unit(11, "miles")
  13392. },
  13393. ]
  13394. ))
  13395. characterMakers.push(() => makeCharacter(
  13396. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13397. {
  13398. front: {
  13399. height: math.unit(7 + 4 / 12, "feet"),
  13400. weight: math.unit(500, "lb"),
  13401. name: "Front",
  13402. image: {
  13403. source: "./media/characters/regena-maxwell/front.svg",
  13404. extra: 3115 / 2770,
  13405. bottom: 0.02
  13406. }
  13407. },
  13408. },
  13409. [
  13410. {
  13411. name: "Normal",
  13412. height: math.unit(7 + 4 / 12, "feet"),
  13413. default: true
  13414. },
  13415. {
  13416. name: "Macro",
  13417. height: math.unit(220, "feet")
  13418. },
  13419. {
  13420. name: "Megamacro",
  13421. height: math.unit(11, "miles")
  13422. },
  13423. ]
  13424. ))
  13425. characterMakers.push(() => makeCharacter(
  13426. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13427. {
  13428. front: {
  13429. height: math.unit(6, "feet"),
  13430. weight: math.unit(150, "lb"),
  13431. name: "Front",
  13432. image: {
  13433. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13434. extra: 860 / 690,
  13435. bottom: 0.03
  13436. }
  13437. },
  13438. },
  13439. [
  13440. {
  13441. name: "Normal",
  13442. height: math.unit(1.7, "meters"),
  13443. default: true
  13444. },
  13445. ]
  13446. ))
  13447. characterMakers.push(() => makeCharacter(
  13448. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13449. {
  13450. front: {
  13451. height: math.unit(6, "feet"),
  13452. weight: math.unit(150, "lb"),
  13453. name: "Front",
  13454. image: {
  13455. source: "./media/characters/quilly/front.svg",
  13456. extra: 890 / 776
  13457. }
  13458. },
  13459. },
  13460. [
  13461. {
  13462. name: "Gigamacro",
  13463. height: math.unit(404090, "miles"),
  13464. default: true
  13465. },
  13466. ]
  13467. ))
  13468. characterMakers.push(() => makeCharacter(
  13469. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13470. {
  13471. front: {
  13472. height: math.unit(7 + 8 / 12, "feet"),
  13473. weight: math.unit(350, "lb"),
  13474. name: "Front",
  13475. image: {
  13476. source: "./media/characters/tempest/front.svg",
  13477. extra: 1175 / 1086,
  13478. bottom: 0.02
  13479. }
  13480. },
  13481. },
  13482. [
  13483. {
  13484. name: "Normal",
  13485. height: math.unit(7 + 8 / 12, "feet"),
  13486. default: true
  13487. },
  13488. ]
  13489. ))
  13490. characterMakers.push(() => makeCharacter(
  13491. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13492. {
  13493. side: {
  13494. height: math.unit(4 + 5 / 12, "feet"),
  13495. weight: math.unit(80, "lb"),
  13496. name: "Side",
  13497. image: {
  13498. source: "./media/characters/rodger/side.svg",
  13499. extra: 1235 / 1118
  13500. }
  13501. },
  13502. },
  13503. [
  13504. {
  13505. name: "Micro",
  13506. height: math.unit(1, "inch")
  13507. },
  13508. {
  13509. name: "Normal",
  13510. height: math.unit(4 + 5 / 12, "feet"),
  13511. default: true
  13512. },
  13513. {
  13514. name: "Macro",
  13515. height: math.unit(120, "feet")
  13516. },
  13517. ]
  13518. ))
  13519. characterMakers.push(() => makeCharacter(
  13520. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13521. {
  13522. front: {
  13523. height: math.unit(6, "feet"),
  13524. weight: math.unit(150, "lb"),
  13525. name: "Front",
  13526. image: {
  13527. source: "./media/characters/danyel/front.svg",
  13528. extra: 1185 / 1123,
  13529. bottom: 0.05
  13530. }
  13531. },
  13532. },
  13533. [
  13534. {
  13535. name: "Shrunken",
  13536. height: math.unit(0.5, "mm")
  13537. },
  13538. {
  13539. name: "Micro",
  13540. height: math.unit(1, "mm"),
  13541. default: true
  13542. },
  13543. {
  13544. name: "Upsized",
  13545. height: math.unit(5 + 5 / 12, "feet")
  13546. },
  13547. ]
  13548. ))
  13549. characterMakers.push(() => makeCharacter(
  13550. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13551. {
  13552. front: {
  13553. height: math.unit(5 + 6 / 12, "feet"),
  13554. weight: math.unit(200, "lb"),
  13555. name: "Front",
  13556. image: {
  13557. source: "./media/characters/vivian-bijoux/front.svg",
  13558. extra: 1,
  13559. bottom: 0.072
  13560. }
  13561. },
  13562. },
  13563. [
  13564. {
  13565. name: "Normal",
  13566. height: math.unit(5 + 6 / 12, "feet"),
  13567. default: true
  13568. },
  13569. {
  13570. name: "Bad Dream",
  13571. height: math.unit(500, "feet")
  13572. },
  13573. {
  13574. name: "Nightmare",
  13575. height: math.unit(500, "miles")
  13576. },
  13577. ]
  13578. ))
  13579. characterMakers.push(() => makeCharacter(
  13580. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13581. {
  13582. front: {
  13583. height: math.unit(6 + 1 / 12, "feet"),
  13584. weight: math.unit(260, "lb"),
  13585. name: "Front",
  13586. image: {
  13587. source: "./media/characters/zeta/front.svg",
  13588. extra: 1968 / 1889,
  13589. bottom: 0.06
  13590. }
  13591. },
  13592. back: {
  13593. height: math.unit(6 + 1 / 12, "feet"),
  13594. weight: math.unit(260, "lb"),
  13595. name: "Back",
  13596. image: {
  13597. source: "./media/characters/zeta/back.svg",
  13598. extra: 1944 / 1858,
  13599. bottom: 0.03
  13600. }
  13601. },
  13602. hand: {
  13603. height: math.unit(1.112, "feet"),
  13604. name: "Hand",
  13605. image: {
  13606. source: "./media/characters/zeta/hand.svg"
  13607. }
  13608. },
  13609. foot: {
  13610. height: math.unit(1.48, "feet"),
  13611. name: "Foot",
  13612. image: {
  13613. source: "./media/characters/zeta/foot.svg"
  13614. }
  13615. },
  13616. },
  13617. [
  13618. {
  13619. name: "Micro",
  13620. height: math.unit(6, "inches")
  13621. },
  13622. {
  13623. name: "Normal",
  13624. height: math.unit(6 + 1 / 12, "feet"),
  13625. default: true
  13626. },
  13627. {
  13628. name: "Macro",
  13629. height: math.unit(20, "feet")
  13630. },
  13631. ]
  13632. ))
  13633. characterMakers.push(() => makeCharacter(
  13634. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13635. {
  13636. front: {
  13637. height: math.unit(6, "feet"),
  13638. weight: math.unit(150, "lb"),
  13639. name: "Front",
  13640. image: {
  13641. source: "./media/characters/jamie-larsen/front.svg",
  13642. extra: 962 / 933,
  13643. bottom: 0.02
  13644. }
  13645. },
  13646. back: {
  13647. height: math.unit(6, "feet"),
  13648. weight: math.unit(150, "lb"),
  13649. name: "Back",
  13650. image: {
  13651. source: "./media/characters/jamie-larsen/back.svg",
  13652. extra: 997 / 946
  13653. }
  13654. },
  13655. },
  13656. [
  13657. {
  13658. name: "Macro",
  13659. height: math.unit(28 + 7 / 12, "feet"),
  13660. default: true
  13661. },
  13662. {
  13663. name: "Macro+",
  13664. height: math.unit(180, "feet")
  13665. },
  13666. {
  13667. name: "Megamacro",
  13668. height: math.unit(10, "miles")
  13669. },
  13670. {
  13671. name: "Gigamacro",
  13672. height: math.unit(200000, "miles")
  13673. },
  13674. ]
  13675. ))
  13676. characterMakers.push(() => makeCharacter(
  13677. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13678. {
  13679. front: {
  13680. height: math.unit(6, "feet"),
  13681. weight: math.unit(120, "lb"),
  13682. name: "Front",
  13683. image: {
  13684. source: "./media/characters/vance/front.svg",
  13685. extra: 1980 / 1890,
  13686. bottom: 0.09
  13687. }
  13688. },
  13689. back: {
  13690. height: math.unit(6, "feet"),
  13691. weight: math.unit(120, "lb"),
  13692. name: "Back",
  13693. image: {
  13694. source: "./media/characters/vance/back.svg",
  13695. extra: 2081 / 1994,
  13696. bottom: 0.014
  13697. }
  13698. },
  13699. hand: {
  13700. height: math.unit(0.88, "feet"),
  13701. name: "Hand",
  13702. image: {
  13703. source: "./media/characters/vance/hand.svg"
  13704. }
  13705. },
  13706. foot: {
  13707. height: math.unit(0.64, "feet"),
  13708. name: "Foot",
  13709. image: {
  13710. source: "./media/characters/vance/foot.svg"
  13711. }
  13712. },
  13713. },
  13714. [
  13715. {
  13716. name: "Small",
  13717. height: math.unit(90, "feet"),
  13718. default: true
  13719. },
  13720. {
  13721. name: "Macro",
  13722. height: math.unit(100, "meters")
  13723. },
  13724. {
  13725. name: "Megamacro",
  13726. height: math.unit(15, "miles")
  13727. },
  13728. ]
  13729. ))
  13730. characterMakers.push(() => makeCharacter(
  13731. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13732. {
  13733. front: {
  13734. height: math.unit(6, "feet"),
  13735. weight: math.unit(180, "lb"),
  13736. name: "Front",
  13737. image: {
  13738. source: "./media/characters/xochitl/front.svg",
  13739. extra: 2297 / 2261,
  13740. bottom: 0.065
  13741. }
  13742. },
  13743. back: {
  13744. height: math.unit(6, "feet"),
  13745. weight: math.unit(180, "lb"),
  13746. name: "Back",
  13747. image: {
  13748. source: "./media/characters/xochitl/back.svg",
  13749. extra: 2386 / 2354,
  13750. bottom: 0.01
  13751. }
  13752. },
  13753. foot: {
  13754. height: math.unit(6 / 5 * 1.15, "feet"),
  13755. weight: math.unit(150, "lb"),
  13756. name: "Foot",
  13757. image: {
  13758. source: "./media/characters/xochitl/foot.svg"
  13759. }
  13760. },
  13761. },
  13762. [
  13763. {
  13764. name: "Macro",
  13765. height: math.unit(80, "feet")
  13766. },
  13767. {
  13768. name: "Macro+",
  13769. height: math.unit(400, "feet"),
  13770. default: true
  13771. },
  13772. {
  13773. name: "Gigamacro",
  13774. height: math.unit(80000, "miles")
  13775. },
  13776. {
  13777. name: "Gigamacro+",
  13778. height: math.unit(400000, "miles")
  13779. },
  13780. {
  13781. name: "Teramacro",
  13782. height: math.unit(300, "AU")
  13783. },
  13784. ]
  13785. ))
  13786. characterMakers.push(() => makeCharacter(
  13787. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13788. {
  13789. front: {
  13790. height: math.unit(6, "feet"),
  13791. weight: math.unit(150, "lb"),
  13792. name: "Front",
  13793. image: {
  13794. source: "./media/characters/vincent/front.svg",
  13795. extra: 1130 / 1080,
  13796. bottom: 0.055
  13797. }
  13798. },
  13799. beak: {
  13800. height: math.unit(6 * 0.1, "feet"),
  13801. name: "Beak",
  13802. image: {
  13803. source: "./media/characters/vincent/beak.svg"
  13804. }
  13805. },
  13806. hand: {
  13807. height: math.unit(6 * 0.85, "feet"),
  13808. weight: math.unit(150, "lb"),
  13809. name: "Hand",
  13810. image: {
  13811. source: "./media/characters/vincent/hand.svg"
  13812. }
  13813. },
  13814. foot: {
  13815. height: math.unit(6 * 0.19, "feet"),
  13816. weight: math.unit(150, "lb"),
  13817. name: "Foot",
  13818. image: {
  13819. source: "./media/characters/vincent/foot.svg"
  13820. }
  13821. },
  13822. },
  13823. [
  13824. {
  13825. name: "Base",
  13826. height: math.unit(6 + 5 / 12, "feet"),
  13827. default: true
  13828. },
  13829. {
  13830. name: "Macro",
  13831. height: math.unit(300, "feet")
  13832. },
  13833. {
  13834. name: "Megamacro",
  13835. height: math.unit(2, "miles")
  13836. },
  13837. {
  13838. name: "Gigamacro",
  13839. height: math.unit(1000, "miles")
  13840. },
  13841. ]
  13842. ))
  13843. characterMakers.push(() => makeCharacter(
  13844. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13845. {
  13846. front: {
  13847. height: math.unit(2, "meters"),
  13848. weight: math.unit(500, "kg"),
  13849. name: "Front",
  13850. image: {
  13851. source: "./media/characters/coatl/front.svg",
  13852. extra: 3948 / 3500,
  13853. bottom: 0.082
  13854. }
  13855. },
  13856. },
  13857. [
  13858. {
  13859. name: "Normal",
  13860. height: math.unit(4, "meters")
  13861. },
  13862. {
  13863. name: "Macro",
  13864. height: math.unit(100, "meters"),
  13865. default: true
  13866. },
  13867. {
  13868. name: "Macro+",
  13869. height: math.unit(300, "meters")
  13870. },
  13871. {
  13872. name: "Megamacro",
  13873. height: math.unit(3, "gigameters")
  13874. },
  13875. {
  13876. name: "Megamacro+",
  13877. height: math.unit(300, "terameters")
  13878. },
  13879. {
  13880. name: "Megamacro++",
  13881. height: math.unit(3, "lightyears")
  13882. },
  13883. ]
  13884. ))
  13885. characterMakers.push(() => makeCharacter(
  13886. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13887. {
  13888. front: {
  13889. height: math.unit(6, "feet"),
  13890. weight: math.unit(50, "kg"),
  13891. name: "front",
  13892. image: {
  13893. source: "./media/characters/shiroryu/front.svg",
  13894. extra: 1990 / 1935
  13895. }
  13896. },
  13897. },
  13898. [
  13899. {
  13900. name: "Mortal Mingling",
  13901. height: math.unit(3, "meters")
  13902. },
  13903. {
  13904. name: "Kaiju-ish",
  13905. height: math.unit(250, "meters")
  13906. },
  13907. {
  13908. name: "Somewhat Godly",
  13909. height: math.unit(400, "km"),
  13910. default: true
  13911. },
  13912. {
  13913. name: "Planetary",
  13914. height: math.unit(300, "megameters")
  13915. },
  13916. {
  13917. name: "Galaxy-dwarfing",
  13918. height: math.unit(450, "kiloparsecs")
  13919. },
  13920. {
  13921. name: "Universe Eater",
  13922. height: math.unit(150, "gigaparsecs")
  13923. },
  13924. {
  13925. name: "Almost Immeasurable",
  13926. height: math.unit(1.3e266, "yottaparsecs")
  13927. },
  13928. ]
  13929. ))
  13930. characterMakers.push(() => makeCharacter(
  13931. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13932. {
  13933. front: {
  13934. height: math.unit(6, "feet"),
  13935. weight: math.unit(150, "lb"),
  13936. name: "Front",
  13937. image: {
  13938. source: "./media/characters/umeko/front.svg",
  13939. extra: 1,
  13940. bottom: 0.019
  13941. }
  13942. },
  13943. frontArmored: {
  13944. height: math.unit(6, "feet"),
  13945. weight: math.unit(150, "lb"),
  13946. name: "Front (Armored)",
  13947. image: {
  13948. source: "./media/characters/umeko/front-armored.svg",
  13949. extra: 1,
  13950. bottom: 0.021
  13951. }
  13952. },
  13953. },
  13954. [
  13955. {
  13956. name: "Macro",
  13957. height: math.unit(220, "feet"),
  13958. default: true
  13959. },
  13960. {
  13961. name: "Guardian Dragon",
  13962. height: math.unit(50, "miles")
  13963. },
  13964. {
  13965. name: "Cosmic",
  13966. height: math.unit(800000, "miles")
  13967. },
  13968. ]
  13969. ))
  13970. characterMakers.push(() => makeCharacter(
  13971. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13972. {
  13973. front: {
  13974. height: math.unit(6, "feet"),
  13975. weight: math.unit(150, "lb"),
  13976. name: "Front",
  13977. image: {
  13978. source: "./media/characters/cassidy/front.svg",
  13979. extra: 1,
  13980. bottom: 0.043
  13981. }
  13982. },
  13983. },
  13984. [
  13985. {
  13986. name: "Canon Height",
  13987. height: math.unit(120, "feet"),
  13988. default: true
  13989. },
  13990. {
  13991. name: "Macro+",
  13992. height: math.unit(400, "feet")
  13993. },
  13994. {
  13995. name: "Macro++",
  13996. height: math.unit(4000, "feet")
  13997. },
  13998. {
  13999. name: "Megamacro",
  14000. height: math.unit(3, "miles")
  14001. },
  14002. ]
  14003. ))
  14004. characterMakers.push(() => makeCharacter(
  14005. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14006. {
  14007. front: {
  14008. height: math.unit(6, "feet"),
  14009. weight: math.unit(150, "lb"),
  14010. name: "Front",
  14011. image: {
  14012. source: "./media/characters/isaac/front.svg",
  14013. extra: 896 / 815,
  14014. bottom: 0.11
  14015. }
  14016. },
  14017. },
  14018. [
  14019. {
  14020. name: "Human Size",
  14021. height: math.unit(8, "feet"),
  14022. default: true
  14023. },
  14024. {
  14025. name: "Macro",
  14026. height: math.unit(400, "feet")
  14027. },
  14028. {
  14029. name: "Megamacro",
  14030. height: math.unit(50, "miles")
  14031. },
  14032. {
  14033. name: "Canon Height",
  14034. height: math.unit(200, "AU")
  14035. },
  14036. ]
  14037. ))
  14038. characterMakers.push(() => makeCharacter(
  14039. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14040. {
  14041. front: {
  14042. height: math.unit(6, "feet"),
  14043. weight: math.unit(72, "kg"),
  14044. name: "Front",
  14045. image: {
  14046. source: "./media/characters/sleekit/front.svg",
  14047. extra: 4693 / 4487,
  14048. bottom: 0.012
  14049. }
  14050. },
  14051. },
  14052. [
  14053. {
  14054. name: "Minimum Height",
  14055. height: math.unit(10, "meters")
  14056. },
  14057. {
  14058. name: "Smaller",
  14059. height: math.unit(25, "meters")
  14060. },
  14061. {
  14062. name: "Larger",
  14063. height: math.unit(38, "meters"),
  14064. default: true
  14065. },
  14066. {
  14067. name: "Maximum height",
  14068. height: math.unit(100, "meters")
  14069. },
  14070. ]
  14071. ))
  14072. characterMakers.push(() => makeCharacter(
  14073. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14074. {
  14075. front: {
  14076. height: math.unit(6, "feet"),
  14077. weight: math.unit(150, "lb"),
  14078. name: "Front",
  14079. image: {
  14080. source: "./media/characters/nillia/front.svg",
  14081. extra: 2195 / 2037,
  14082. bottom: 0.005
  14083. }
  14084. },
  14085. back: {
  14086. height: math.unit(6, "feet"),
  14087. weight: math.unit(150, "lb"),
  14088. name: "Back",
  14089. image: {
  14090. source: "./media/characters/nillia/back.svg",
  14091. extra: 2195 / 2037,
  14092. bottom: 0.005
  14093. }
  14094. },
  14095. },
  14096. [
  14097. {
  14098. name: "Canon Height",
  14099. height: math.unit(489, "feet"),
  14100. default: true
  14101. }
  14102. ]
  14103. ))
  14104. characterMakers.push(() => makeCharacter(
  14105. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14106. {
  14107. front: {
  14108. height: math.unit(6, "feet"),
  14109. weight: math.unit(150, "lb"),
  14110. name: "Front",
  14111. image: {
  14112. source: "./media/characters/mesmyriza/front.svg",
  14113. extra: 2067 / 1784,
  14114. bottom: 0.035
  14115. }
  14116. },
  14117. foot: {
  14118. height: math.unit(6 / (250 / 35), "feet"),
  14119. name: "Foot",
  14120. image: {
  14121. source: "./media/characters/mesmyriza/foot.svg"
  14122. }
  14123. },
  14124. },
  14125. [
  14126. {
  14127. name: "Macro",
  14128. height: math.unit(457, "meters"),
  14129. default: true
  14130. },
  14131. {
  14132. name: "Megamacro",
  14133. height: math.unit(8, "megameters")
  14134. },
  14135. ]
  14136. ))
  14137. characterMakers.push(() => makeCharacter(
  14138. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14139. {
  14140. front: {
  14141. height: math.unit(6, "feet"),
  14142. weight: math.unit(250, "lb"),
  14143. name: "Front",
  14144. image: {
  14145. source: "./media/characters/saudade/front.svg",
  14146. extra: 1172 / 1139,
  14147. bottom: 0.035
  14148. }
  14149. },
  14150. },
  14151. [
  14152. {
  14153. name: "Micro",
  14154. height: math.unit(3, "inches")
  14155. },
  14156. {
  14157. name: "Normal",
  14158. height: math.unit(6, "feet"),
  14159. default: true
  14160. },
  14161. {
  14162. name: "Macro",
  14163. height: math.unit(50, "feet")
  14164. },
  14165. {
  14166. name: "Megamacro",
  14167. height: math.unit(2800, "feet")
  14168. },
  14169. ]
  14170. ))
  14171. characterMakers.push(() => makeCharacter(
  14172. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14173. {
  14174. front: {
  14175. height: math.unit(5 + 4 / 12, "feet"),
  14176. weight: math.unit(100, "lb"),
  14177. name: "Front",
  14178. image: {
  14179. source: "./media/characters/keireer/front.svg",
  14180. extra: 716 / 666,
  14181. bottom: 0.05
  14182. }
  14183. },
  14184. },
  14185. [
  14186. {
  14187. name: "Normal",
  14188. height: math.unit(5 + 4 / 12, "feet"),
  14189. default: true
  14190. },
  14191. ]
  14192. ))
  14193. characterMakers.push(() => makeCharacter(
  14194. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14195. {
  14196. front: {
  14197. height: math.unit(6, "feet"),
  14198. weight: math.unit(90, "kg"),
  14199. name: "Front",
  14200. image: {
  14201. source: "./media/characters/mirja/front.svg",
  14202. extra: 1789 / 1683,
  14203. bottom: 0.05
  14204. }
  14205. },
  14206. frontDressed: {
  14207. height: math.unit(6, "feet"),
  14208. weight: math.unit(90, "lb"),
  14209. name: "Front (Dressed)",
  14210. image: {
  14211. source: "./media/characters/mirja/front-dressed.svg",
  14212. extra: 1789 / 1683,
  14213. bottom: 0.05
  14214. }
  14215. },
  14216. back: {
  14217. height: math.unit(6, "feet"),
  14218. weight: math.unit(90, "lb"),
  14219. name: "Back",
  14220. image: {
  14221. source: "./media/characters/mirja/back.svg",
  14222. extra: 953 / 917,
  14223. bottom: 0.017
  14224. }
  14225. },
  14226. },
  14227. [
  14228. {
  14229. name: "\"Incognito\"",
  14230. height: math.unit(3, "meters")
  14231. },
  14232. {
  14233. name: "Strolling Size",
  14234. height: math.unit(15, "km")
  14235. },
  14236. {
  14237. name: "Larger Strolling Size",
  14238. height: math.unit(400, "km")
  14239. },
  14240. {
  14241. name: "Preferred Size",
  14242. height: math.unit(5000, "km")
  14243. },
  14244. {
  14245. name: "True Size",
  14246. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14247. default: true
  14248. },
  14249. ]
  14250. ))
  14251. characterMakers.push(() => makeCharacter(
  14252. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14253. {
  14254. front: {
  14255. height: math.unit(15, "feet"),
  14256. weight: math.unit(880, "kg"),
  14257. name: "Front",
  14258. image: {
  14259. source: "./media/characters/nightraver/front.svg",
  14260. extra: 2444 / 2160,
  14261. bottom: 0.027
  14262. }
  14263. },
  14264. back: {
  14265. height: math.unit(15, "feet"),
  14266. weight: math.unit(880, "kg"),
  14267. name: "Back",
  14268. image: {
  14269. source: "./media/characters/nightraver/back.svg",
  14270. extra: 2309 / 2180,
  14271. bottom: 0.005
  14272. }
  14273. },
  14274. sole: {
  14275. height: math.unit(2.878, "feet"),
  14276. name: "Sole",
  14277. image: {
  14278. source: "./media/characters/nightraver/sole.svg"
  14279. }
  14280. },
  14281. foot: {
  14282. height: math.unit(2.285, "feet"),
  14283. name: "Foot",
  14284. image: {
  14285. source: "./media/characters/nightraver/foot.svg"
  14286. }
  14287. },
  14288. maw: {
  14289. height: math.unit(2.67, "feet"),
  14290. name: "Maw",
  14291. image: {
  14292. source: "./media/characters/nightraver/maw.svg"
  14293. }
  14294. },
  14295. },
  14296. [
  14297. {
  14298. name: "Micro",
  14299. height: math.unit(1, "cm")
  14300. },
  14301. {
  14302. name: "Normal",
  14303. height: math.unit(15, "feet"),
  14304. default: true
  14305. },
  14306. {
  14307. name: "Macro",
  14308. height: math.unit(300, "feet")
  14309. },
  14310. {
  14311. name: "Megamacro",
  14312. height: math.unit(300, "miles")
  14313. },
  14314. {
  14315. name: "Gigamacro",
  14316. height: math.unit(10000, "miles")
  14317. },
  14318. ]
  14319. ))
  14320. characterMakers.push(() => makeCharacter(
  14321. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14322. {
  14323. side: {
  14324. height: math.unit(2, "inches"),
  14325. weight: math.unit(5, "grams"),
  14326. name: "Side",
  14327. image: {
  14328. source: "./media/characters/arc/side.svg"
  14329. }
  14330. },
  14331. },
  14332. [
  14333. {
  14334. name: "Micro",
  14335. height: math.unit(2, "inches"),
  14336. default: true
  14337. },
  14338. ]
  14339. ))
  14340. characterMakers.push(() => makeCharacter(
  14341. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14342. {
  14343. front: {
  14344. height: math.unit(1.1938, "meters"),
  14345. weight: math.unit(54, "kg"),
  14346. name: "Front",
  14347. image: {
  14348. source: "./media/characters/nebula-shahar/front.svg",
  14349. extra: 1642 / 1436,
  14350. bottom: 0.06
  14351. }
  14352. },
  14353. },
  14354. [
  14355. {
  14356. name: "Megamicro",
  14357. height: math.unit(0.3, "mm")
  14358. },
  14359. {
  14360. name: "Micro",
  14361. height: math.unit(3, "cm")
  14362. },
  14363. {
  14364. name: "Normal",
  14365. height: math.unit(138, "cm"),
  14366. default: true
  14367. },
  14368. {
  14369. name: "Macro",
  14370. height: math.unit(30, "m")
  14371. },
  14372. ]
  14373. ))
  14374. characterMakers.push(() => makeCharacter(
  14375. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14376. {
  14377. front: {
  14378. height: math.unit(5.24, "feet"),
  14379. weight: math.unit(150, "lb"),
  14380. name: "Front",
  14381. image: {
  14382. source: "./media/characters/shayla/front.svg",
  14383. extra: 1512 / 1414,
  14384. bottom: 0.01
  14385. }
  14386. },
  14387. back: {
  14388. height: math.unit(5.24, "feet"),
  14389. weight: math.unit(150, "lb"),
  14390. name: "Back",
  14391. image: {
  14392. source: "./media/characters/shayla/back.svg",
  14393. extra: 1512 / 1414
  14394. }
  14395. },
  14396. hand: {
  14397. height: math.unit(0.7781496062992126, "feet"),
  14398. name: "Hand",
  14399. image: {
  14400. source: "./media/characters/shayla/hand.svg"
  14401. }
  14402. },
  14403. foot: {
  14404. height: math.unit(1.4206036745406823, "feet"),
  14405. name: "Foot",
  14406. image: {
  14407. source: "./media/characters/shayla/foot.svg"
  14408. }
  14409. },
  14410. },
  14411. [
  14412. {
  14413. name: "Micro",
  14414. height: math.unit(0.32, "feet")
  14415. },
  14416. {
  14417. name: "Normal",
  14418. height: math.unit(5.24, "feet"),
  14419. default: true
  14420. },
  14421. {
  14422. name: "Macro",
  14423. height: math.unit(492.12, "feet")
  14424. },
  14425. {
  14426. name: "Megamacro",
  14427. height: math.unit(186.41, "miles")
  14428. },
  14429. ]
  14430. ))
  14431. characterMakers.push(() => makeCharacter(
  14432. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14433. {
  14434. front: {
  14435. height: math.unit(2.2, "m"),
  14436. weight: math.unit(120, "kg"),
  14437. name: "Front",
  14438. image: {
  14439. source: "./media/characters/pia-jr/front.svg",
  14440. extra: 1000 / 970,
  14441. bottom: 0.035
  14442. }
  14443. },
  14444. hand: {
  14445. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14446. name: "Hand",
  14447. image: {
  14448. source: "./media/characters/pia-jr/hand.svg"
  14449. }
  14450. },
  14451. paw: {
  14452. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14453. name: "Paw",
  14454. image: {
  14455. source: "./media/characters/pia-jr/paw.svg"
  14456. }
  14457. },
  14458. },
  14459. [
  14460. {
  14461. name: "Micro",
  14462. height: math.unit(1.2, "cm")
  14463. },
  14464. {
  14465. name: "Normal",
  14466. height: math.unit(2.2, "m"),
  14467. default: true
  14468. },
  14469. {
  14470. name: "Macro",
  14471. height: math.unit(180, "m")
  14472. },
  14473. {
  14474. name: "Megamacro",
  14475. height: math.unit(420, "km")
  14476. },
  14477. ]
  14478. ))
  14479. characterMakers.push(() => makeCharacter(
  14480. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14481. {
  14482. front: {
  14483. height: math.unit(2, "m"),
  14484. weight: math.unit(115, "kg"),
  14485. name: "Front",
  14486. image: {
  14487. source: "./media/characters/pia-sr/front.svg",
  14488. extra: 760 / 730,
  14489. bottom: 0.015
  14490. }
  14491. },
  14492. back: {
  14493. height: math.unit(2, "m"),
  14494. weight: math.unit(115, "kg"),
  14495. name: "Back",
  14496. image: {
  14497. source: "./media/characters/pia-sr/back.svg",
  14498. extra: 760 / 730,
  14499. bottom: 0.01
  14500. }
  14501. },
  14502. hand: {
  14503. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14504. name: "Hand",
  14505. image: {
  14506. source: "./media/characters/pia-sr/hand.svg"
  14507. }
  14508. },
  14509. foot: {
  14510. height: math.unit(1.83, "feet"),
  14511. name: "Foot",
  14512. image: {
  14513. source: "./media/characters/pia-sr/foot.svg"
  14514. }
  14515. },
  14516. },
  14517. [
  14518. {
  14519. name: "Micro",
  14520. height: math.unit(88, "mm")
  14521. },
  14522. {
  14523. name: "Normal",
  14524. height: math.unit(2, "m"),
  14525. default: true
  14526. },
  14527. {
  14528. name: "Macro",
  14529. height: math.unit(200, "m")
  14530. },
  14531. {
  14532. name: "Megamacro",
  14533. height: math.unit(420, "km")
  14534. },
  14535. ]
  14536. ))
  14537. characterMakers.push(() => makeCharacter(
  14538. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14539. {
  14540. front: {
  14541. height: math.unit(8 + 2 / 12, "feet"),
  14542. weight: math.unit(300, "lb"),
  14543. name: "Front",
  14544. image: {
  14545. source: "./media/characters/kibibyte/front.svg",
  14546. extra: 2221 / 2098,
  14547. bottom: 0.04
  14548. }
  14549. },
  14550. },
  14551. [
  14552. {
  14553. name: "Normal",
  14554. height: math.unit(8 + 2 / 12, "feet"),
  14555. default: true
  14556. },
  14557. {
  14558. name: "Socialable Macro",
  14559. height: math.unit(50, "feet")
  14560. },
  14561. {
  14562. name: "Macro",
  14563. height: math.unit(300, "feet")
  14564. },
  14565. {
  14566. name: "Megamacro",
  14567. height: math.unit(500, "miles")
  14568. },
  14569. ]
  14570. ))
  14571. characterMakers.push(() => makeCharacter(
  14572. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14573. {
  14574. front: {
  14575. height: math.unit(6, "feet"),
  14576. weight: math.unit(150, "lb"),
  14577. name: "Front",
  14578. image: {
  14579. source: "./media/characters/felix/front.svg",
  14580. extra: 762 / 722,
  14581. bottom: 0.02
  14582. }
  14583. },
  14584. frontClothed: {
  14585. height: math.unit(6, "feet"),
  14586. weight: math.unit(150, "lb"),
  14587. name: "Front (Clothed)",
  14588. image: {
  14589. source: "./media/characters/felix/front-clothed.svg",
  14590. extra: 762 / 722,
  14591. bottom: 0.02
  14592. }
  14593. },
  14594. },
  14595. [
  14596. {
  14597. name: "Normal",
  14598. height: math.unit(6 + 8 / 12, "feet"),
  14599. default: true
  14600. },
  14601. {
  14602. name: "Macro",
  14603. height: math.unit(2600, "feet")
  14604. },
  14605. {
  14606. name: "Megamacro",
  14607. height: math.unit(450, "miles")
  14608. },
  14609. ]
  14610. ))
  14611. characterMakers.push(() => makeCharacter(
  14612. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14613. {
  14614. front: {
  14615. height: math.unit(6 + 1 / 12, "feet"),
  14616. weight: math.unit(250, "lb"),
  14617. name: "Front",
  14618. image: {
  14619. source: "./media/characters/tobo/front.svg",
  14620. extra: 608 / 586,
  14621. bottom: 0.023
  14622. }
  14623. },
  14624. back: {
  14625. height: math.unit(6 + 1 / 12, "feet"),
  14626. weight: math.unit(250, "lb"),
  14627. name: "Back",
  14628. image: {
  14629. source: "./media/characters/tobo/back.svg",
  14630. extra: 608 / 586
  14631. }
  14632. },
  14633. },
  14634. [
  14635. {
  14636. name: "Nano",
  14637. height: math.unit(2, "nm")
  14638. },
  14639. {
  14640. name: "Megamicro",
  14641. height: math.unit(0.1, "mm")
  14642. },
  14643. {
  14644. name: "Micro",
  14645. height: math.unit(1, "inch"),
  14646. default: true
  14647. },
  14648. {
  14649. name: "Human-sized",
  14650. height: math.unit(6 + 1 / 12, "feet")
  14651. },
  14652. {
  14653. name: "Macro",
  14654. height: math.unit(250, "feet")
  14655. },
  14656. {
  14657. name: "Megamacro",
  14658. height: math.unit(75, "miles")
  14659. },
  14660. {
  14661. name: "Texas-sized",
  14662. height: math.unit(750, "miles")
  14663. },
  14664. {
  14665. name: "Teramacro",
  14666. height: math.unit(50000, "miles")
  14667. },
  14668. ]
  14669. ))
  14670. characterMakers.push(() => makeCharacter(
  14671. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14672. {
  14673. front: {
  14674. height: math.unit(6, "feet"),
  14675. weight: math.unit(269, "lb"),
  14676. name: "Front",
  14677. image: {
  14678. source: "./media/characters/danny-kapowsky/front.svg",
  14679. extra: 766 / 736,
  14680. bottom: 0.044
  14681. }
  14682. },
  14683. back: {
  14684. height: math.unit(6, "feet"),
  14685. weight: math.unit(269, "lb"),
  14686. name: "Back",
  14687. image: {
  14688. source: "./media/characters/danny-kapowsky/back.svg",
  14689. extra: 797 / 760,
  14690. bottom: 0.025
  14691. }
  14692. },
  14693. },
  14694. [
  14695. {
  14696. name: "Macro",
  14697. height: math.unit(150, "feet"),
  14698. default: true
  14699. },
  14700. {
  14701. name: "Macro+",
  14702. height: math.unit(200, "feet")
  14703. },
  14704. {
  14705. name: "Macro++",
  14706. height: math.unit(300, "feet")
  14707. },
  14708. {
  14709. name: "Macro+++",
  14710. height: math.unit(400, "feet")
  14711. },
  14712. ]
  14713. ))
  14714. characterMakers.push(() => makeCharacter(
  14715. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14716. {
  14717. side: {
  14718. height: math.unit(6, "feet"),
  14719. weight: math.unit(170, "lb"),
  14720. name: "Side",
  14721. image: {
  14722. source: "./media/characters/finn/side.svg",
  14723. extra: 1953 / 1807,
  14724. bottom: 0.057
  14725. }
  14726. },
  14727. },
  14728. [
  14729. {
  14730. name: "Megamacro",
  14731. height: math.unit(14445, "feet"),
  14732. default: true
  14733. },
  14734. ]
  14735. ))
  14736. characterMakers.push(() => makeCharacter(
  14737. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14738. {
  14739. front: {
  14740. height: math.unit(5 + 6 / 12, "feet"),
  14741. weight: math.unit(125, "lb"),
  14742. name: "Front",
  14743. image: {
  14744. source: "./media/characters/roy/front.svg",
  14745. extra: 1,
  14746. bottom: 0.11
  14747. }
  14748. },
  14749. },
  14750. [
  14751. {
  14752. name: "Micro",
  14753. height: math.unit(3, "inches"),
  14754. default: true
  14755. },
  14756. {
  14757. name: "Normal",
  14758. height: math.unit(5 + 6 / 12, "feet")
  14759. },
  14760. {
  14761. name: "Lesser Macro",
  14762. height: math.unit(60, "feet")
  14763. },
  14764. {
  14765. name: "Greater Macro",
  14766. height: math.unit(120, "feet")
  14767. },
  14768. ]
  14769. ))
  14770. characterMakers.push(() => makeCharacter(
  14771. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14772. {
  14773. front: {
  14774. height: math.unit(6, "feet"),
  14775. weight: math.unit(100, "lb"),
  14776. name: "Front",
  14777. image: {
  14778. source: "./media/characters/aevsivs/front.svg",
  14779. extra: 1,
  14780. bottom: 0.03
  14781. }
  14782. },
  14783. back: {
  14784. height: math.unit(6, "feet"),
  14785. weight: math.unit(100, "lb"),
  14786. name: "Back",
  14787. image: {
  14788. source: "./media/characters/aevsivs/back.svg"
  14789. }
  14790. },
  14791. },
  14792. [
  14793. {
  14794. name: "Micro",
  14795. height: math.unit(2, "inches"),
  14796. default: true
  14797. },
  14798. {
  14799. name: "Normal",
  14800. height: math.unit(5, "feet")
  14801. },
  14802. ]
  14803. ))
  14804. characterMakers.push(() => makeCharacter(
  14805. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14806. {
  14807. front: {
  14808. height: math.unit(5 + 7 / 12, "feet"),
  14809. weight: math.unit(159, "lb"),
  14810. name: "Front",
  14811. image: {
  14812. source: "./media/characters/hildegard/front.svg",
  14813. extra: 289 / 269,
  14814. bottom: 7.63 / 297.8
  14815. }
  14816. },
  14817. back: {
  14818. height: math.unit(5 + 7 / 12, "feet"),
  14819. weight: math.unit(159, "lb"),
  14820. name: "Back",
  14821. image: {
  14822. source: "./media/characters/hildegard/back.svg",
  14823. extra: 280 / 260,
  14824. bottom: 2.3 / 282
  14825. }
  14826. },
  14827. },
  14828. [
  14829. {
  14830. name: "Normal",
  14831. height: math.unit(5 + 7 / 12, "feet"),
  14832. default: true
  14833. },
  14834. ]
  14835. ))
  14836. characterMakers.push(() => makeCharacter(
  14837. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14838. {
  14839. bernard: {
  14840. height: math.unit(2 + 7 / 12, "feet"),
  14841. weight: math.unit(66, "lb"),
  14842. name: "Bernard",
  14843. rename: true,
  14844. image: {
  14845. source: "./media/characters/bernard-wilder/bernard.svg",
  14846. extra: 192 / 128,
  14847. bottom: 0.05
  14848. }
  14849. },
  14850. wilder: {
  14851. height: math.unit(5 + 8 / 12, "feet"),
  14852. weight: math.unit(143, "lb"),
  14853. name: "Wilder",
  14854. rename: true,
  14855. image: {
  14856. source: "./media/characters/bernard-wilder/wilder.svg",
  14857. extra: 361 / 312,
  14858. bottom: 0.02
  14859. }
  14860. },
  14861. },
  14862. [
  14863. {
  14864. name: "Normal",
  14865. height: math.unit(2 + 7 / 12, "feet"),
  14866. default: true
  14867. },
  14868. ]
  14869. ))
  14870. characterMakers.push(() => makeCharacter(
  14871. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14872. {
  14873. anthro: {
  14874. height: math.unit(6 + 1 / 12, "feet"),
  14875. weight: math.unit(155, "lb"),
  14876. name: "Anthro",
  14877. image: {
  14878. source: "./media/characters/hearth/anthro.svg",
  14879. extra: 260 / 250,
  14880. bottom: 0.02
  14881. }
  14882. },
  14883. feral: {
  14884. height: math.unit(3.78, "feet"),
  14885. weight: math.unit(35, "kg"),
  14886. name: "Feral",
  14887. image: {
  14888. source: "./media/characters/hearth/feral.svg",
  14889. extra: 153 / 135,
  14890. bottom: 0.03
  14891. }
  14892. },
  14893. },
  14894. [
  14895. {
  14896. name: "Normal",
  14897. height: math.unit(6 + 1 / 12, "feet"),
  14898. default: true
  14899. },
  14900. ]
  14901. ))
  14902. characterMakers.push(() => makeCharacter(
  14903. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14904. {
  14905. front: {
  14906. height: math.unit(6, "feet"),
  14907. weight: math.unit(182, "lb"),
  14908. name: "Front",
  14909. image: {
  14910. source: "./media/characters/ingrid/front.svg",
  14911. extra: 294 / 268,
  14912. bottom: 0.027
  14913. }
  14914. },
  14915. },
  14916. [
  14917. {
  14918. name: "Normal",
  14919. height: math.unit(6, "feet"),
  14920. default: true
  14921. },
  14922. ]
  14923. ))
  14924. characterMakers.push(() => makeCharacter(
  14925. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14926. {
  14927. eevee: {
  14928. height: math.unit(2 + 10 / 12, "feet"),
  14929. weight: math.unit(86, "lb"),
  14930. name: "Malgam",
  14931. image: {
  14932. source: "./media/characters/malgam/eevee.svg",
  14933. extra: 218 / 180,
  14934. bottom: 0.2
  14935. }
  14936. },
  14937. sylveon: {
  14938. height: math.unit(4, "feet"),
  14939. weight: math.unit(101, "lb"),
  14940. name: "Future Malgam",
  14941. rename: true,
  14942. image: {
  14943. source: "./media/characters/malgam/sylveon.svg",
  14944. extra: 371 / 325,
  14945. bottom: 0.015
  14946. }
  14947. },
  14948. gigantamax: {
  14949. height: math.unit(50, "feet"),
  14950. name: "Gigantamax Malgam",
  14951. rename: true,
  14952. image: {
  14953. source: "./media/characters/malgam/gigantamax.svg"
  14954. }
  14955. },
  14956. },
  14957. [
  14958. {
  14959. name: "Normal",
  14960. height: math.unit(2 + 10 / 12, "feet"),
  14961. default: true
  14962. },
  14963. ]
  14964. ))
  14965. characterMakers.push(() => makeCharacter(
  14966. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14967. {
  14968. front: {
  14969. height: math.unit(5 + 11 / 12, "feet"),
  14970. weight: math.unit(188, "lb"),
  14971. name: "Front",
  14972. image: {
  14973. source: "./media/characters/fleur/front.svg",
  14974. extra: 309 / 283,
  14975. bottom: 0.007
  14976. }
  14977. },
  14978. },
  14979. [
  14980. {
  14981. name: "Normal",
  14982. height: math.unit(5 + 11 / 12, "feet"),
  14983. default: true
  14984. },
  14985. ]
  14986. ))
  14987. characterMakers.push(() => makeCharacter(
  14988. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14989. {
  14990. front: {
  14991. height: math.unit(5 + 4 / 12, "feet"),
  14992. weight: math.unit(122, "lb"),
  14993. name: "Front",
  14994. image: {
  14995. source: "./media/characters/jude/front.svg",
  14996. extra: 288 / 273,
  14997. bottom: 0.03
  14998. }
  14999. },
  15000. },
  15001. [
  15002. {
  15003. name: "Normal",
  15004. height: math.unit(5 + 4 / 12, "feet"),
  15005. default: true
  15006. },
  15007. ]
  15008. ))
  15009. characterMakers.push(() => makeCharacter(
  15010. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15011. {
  15012. front: {
  15013. height: math.unit(5 + 11 / 12, "feet"),
  15014. weight: math.unit(190, "lb"),
  15015. name: "Front",
  15016. image: {
  15017. source: "./media/characters/seara/front.svg",
  15018. extra: 1,
  15019. bottom: 0.05
  15020. }
  15021. },
  15022. },
  15023. [
  15024. {
  15025. name: "Normal",
  15026. height: math.unit(5 + 11 / 12, "feet"),
  15027. default: true
  15028. },
  15029. ]
  15030. ))
  15031. characterMakers.push(() => makeCharacter(
  15032. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15033. {
  15034. front: {
  15035. height: math.unit(16 + 5 / 12, "feet"),
  15036. weight: math.unit(524, "lb"),
  15037. name: "Front",
  15038. image: {
  15039. source: "./media/characters/caspian/front.svg",
  15040. extra: 1,
  15041. bottom: 0.04
  15042. }
  15043. },
  15044. },
  15045. [
  15046. {
  15047. name: "Normal",
  15048. height: math.unit(16 + 5 / 12, "feet"),
  15049. default: true
  15050. },
  15051. ]
  15052. ))
  15053. characterMakers.push(() => makeCharacter(
  15054. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15055. {
  15056. front: {
  15057. height: math.unit(5 + 7 / 12, "feet"),
  15058. weight: math.unit(170, "lb"),
  15059. name: "Front",
  15060. image: {
  15061. source: "./media/characters/mika/front.svg",
  15062. extra: 1,
  15063. bottom: 0.016
  15064. }
  15065. },
  15066. },
  15067. [
  15068. {
  15069. name: "Normal",
  15070. height: math.unit(5 + 7 / 12, "feet"),
  15071. default: true
  15072. },
  15073. ]
  15074. ))
  15075. characterMakers.push(() => makeCharacter(
  15076. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15077. {
  15078. front: {
  15079. height: math.unit(6 + 2 / 12, "feet"),
  15080. weight: math.unit(268, "lb"),
  15081. name: "Front",
  15082. image: {
  15083. source: "./media/characters/sol/front.svg",
  15084. extra: 247 / 231,
  15085. bottom: 0.05
  15086. }
  15087. },
  15088. },
  15089. [
  15090. {
  15091. name: "Normal",
  15092. height: math.unit(6 + 2 / 12, "feet"),
  15093. default: true
  15094. },
  15095. ]
  15096. ))
  15097. characterMakers.push(() => makeCharacter(
  15098. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15099. {
  15100. buizel: {
  15101. height: math.unit(2 + 5 / 12, "feet"),
  15102. weight: math.unit(87, "lb"),
  15103. name: "Buizel",
  15104. image: {
  15105. source: "./media/characters/umiko/buizel.svg",
  15106. extra: 172 / 157,
  15107. bottom: 0.01
  15108. }
  15109. },
  15110. floatzel: {
  15111. height: math.unit(5 + 9 / 12, "feet"),
  15112. weight: math.unit(250, "lb"),
  15113. name: "Floatzel",
  15114. image: {
  15115. source: "./media/characters/umiko/floatzel.svg",
  15116. extra: 262 / 248
  15117. }
  15118. },
  15119. },
  15120. [
  15121. {
  15122. name: "Normal",
  15123. height: math.unit(2 + 5 / 12, "feet"),
  15124. default: true
  15125. },
  15126. ]
  15127. ))
  15128. characterMakers.push(() => makeCharacter(
  15129. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15130. {
  15131. front: {
  15132. height: math.unit(6 + 2 / 12, "feet"),
  15133. weight: math.unit(146, "lb"),
  15134. name: "Front",
  15135. image: {
  15136. source: "./media/characters/iliac/front.svg",
  15137. extra: 389 / 365,
  15138. bottom: 0.035
  15139. }
  15140. },
  15141. },
  15142. [
  15143. {
  15144. name: "Normal",
  15145. height: math.unit(6 + 2 / 12, "feet"),
  15146. default: true
  15147. },
  15148. ]
  15149. ))
  15150. characterMakers.push(() => makeCharacter(
  15151. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15152. {
  15153. front: {
  15154. height: math.unit(6, "feet"),
  15155. weight: math.unit(170, "lb"),
  15156. name: "Front",
  15157. image: {
  15158. source: "./media/characters/topaz/front.svg",
  15159. extra: 317 / 303,
  15160. bottom: 0.055
  15161. }
  15162. },
  15163. },
  15164. [
  15165. {
  15166. name: "Normal",
  15167. height: math.unit(6, "feet"),
  15168. default: true
  15169. },
  15170. ]
  15171. ))
  15172. characterMakers.push(() => makeCharacter(
  15173. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15174. {
  15175. front: {
  15176. height: math.unit(5 + 11 / 12, "feet"),
  15177. weight: math.unit(144, "lb"),
  15178. name: "Front",
  15179. image: {
  15180. source: "./media/characters/gabriel/front.svg",
  15181. extra: 285 / 262,
  15182. bottom: 0.004
  15183. }
  15184. },
  15185. },
  15186. [
  15187. {
  15188. name: "Normal",
  15189. height: math.unit(5 + 11 / 12, "feet"),
  15190. default: true
  15191. },
  15192. ]
  15193. ))
  15194. characterMakers.push(() => makeCharacter(
  15195. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15196. {
  15197. side: {
  15198. height: math.unit(6 + 5 / 12, "feet"),
  15199. weight: math.unit(300, "lb"),
  15200. name: "Side",
  15201. image: {
  15202. source: "./media/characters/tempest-suicune/side.svg",
  15203. extra: 195 / 154,
  15204. bottom: 0.04
  15205. }
  15206. },
  15207. },
  15208. [
  15209. {
  15210. name: "Normal",
  15211. height: math.unit(6 + 5 / 12, "feet"),
  15212. default: true
  15213. },
  15214. ]
  15215. ))
  15216. characterMakers.push(() => makeCharacter(
  15217. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15218. {
  15219. front: {
  15220. height: math.unit(7 + 2 / 12, "feet"),
  15221. weight: math.unit(322, "lb"),
  15222. name: "Front",
  15223. image: {
  15224. source: "./media/characters/vulcan/front.svg",
  15225. extra: 154 / 147,
  15226. bottom: 0.04
  15227. }
  15228. },
  15229. },
  15230. [
  15231. {
  15232. name: "Normal",
  15233. height: math.unit(7 + 2 / 12, "feet"),
  15234. default: true
  15235. },
  15236. ]
  15237. ))
  15238. characterMakers.push(() => makeCharacter(
  15239. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15240. {
  15241. front: {
  15242. height: math.unit(5 + 10 / 12, "feet"),
  15243. weight: math.unit(264, "lb"),
  15244. name: "Front",
  15245. image: {
  15246. source: "./media/characters/gault/front.svg",
  15247. extra: 161 / 140,
  15248. bottom: 0.028
  15249. }
  15250. },
  15251. },
  15252. [
  15253. {
  15254. name: "Normal",
  15255. height: math.unit(5 + 10 / 12, "feet"),
  15256. default: true
  15257. },
  15258. ]
  15259. ))
  15260. characterMakers.push(() => makeCharacter(
  15261. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15262. {
  15263. front: {
  15264. height: math.unit(6, "feet"),
  15265. weight: math.unit(150, "lb"),
  15266. name: "Front",
  15267. image: {
  15268. source: "./media/characters/shard/front.svg",
  15269. extra: 273 / 238,
  15270. bottom: 0.02
  15271. }
  15272. },
  15273. },
  15274. [
  15275. {
  15276. name: "Normal",
  15277. height: math.unit(3 + 6 / 12, "feet"),
  15278. default: true
  15279. },
  15280. ]
  15281. ))
  15282. characterMakers.push(() => makeCharacter(
  15283. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15284. {
  15285. front: {
  15286. height: math.unit(5 + 11 / 12, "feet"),
  15287. weight: math.unit(146, "lb"),
  15288. name: "Front",
  15289. image: {
  15290. source: "./media/characters/ashe/front.svg",
  15291. extra: 400 / 373,
  15292. bottom: 0.01
  15293. }
  15294. },
  15295. },
  15296. [
  15297. {
  15298. name: "Normal",
  15299. height: math.unit(5 + 11 / 12, "feet"),
  15300. default: true
  15301. },
  15302. ]
  15303. ))
  15304. characterMakers.push(() => makeCharacter(
  15305. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15306. {
  15307. front: {
  15308. height: math.unit(5 + 5 / 12, "feet"),
  15309. weight: math.unit(135, "lb"),
  15310. name: "Front",
  15311. image: {
  15312. source: "./media/characters/beatrix/front.svg",
  15313. extra: 392 / 379,
  15314. bottom: 0.01
  15315. }
  15316. },
  15317. },
  15318. [
  15319. {
  15320. name: "Normal",
  15321. height: math.unit(6, "feet"),
  15322. default: true
  15323. },
  15324. ]
  15325. ))
  15326. characterMakers.push(() => makeCharacter(
  15327. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15328. {
  15329. front: {
  15330. height: math.unit(6, "feet"),
  15331. weight: math.unit(150, "lb"),
  15332. name: "Front",
  15333. image: {
  15334. source: "./media/characters/ignatius/front.svg",
  15335. extra: 245 / 222,
  15336. bottom: 0.01
  15337. }
  15338. },
  15339. },
  15340. [
  15341. {
  15342. name: "Normal",
  15343. height: math.unit(5 + 5 / 12, "feet"),
  15344. default: true
  15345. },
  15346. ]
  15347. ))
  15348. characterMakers.push(() => makeCharacter(
  15349. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15350. {
  15351. front: {
  15352. height: math.unit(6 + 2 / 12, "feet"),
  15353. weight: math.unit(138, "lb"),
  15354. name: "Front",
  15355. image: {
  15356. source: "./media/characters/mei-li/front.svg",
  15357. extra: 237 / 229,
  15358. bottom: 0.03
  15359. }
  15360. },
  15361. },
  15362. [
  15363. {
  15364. name: "Normal",
  15365. height: math.unit(6 + 2 / 12, "feet"),
  15366. default: true
  15367. },
  15368. ]
  15369. ))
  15370. characterMakers.push(() => makeCharacter(
  15371. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15372. {
  15373. front: {
  15374. height: math.unit(2 + 4 / 12, "feet"),
  15375. weight: math.unit(62, "lb"),
  15376. name: "Front",
  15377. image: {
  15378. source: "./media/characters/puru/front.svg",
  15379. extra: 206 / 149,
  15380. bottom: 0.06
  15381. }
  15382. },
  15383. },
  15384. [
  15385. {
  15386. name: "Normal",
  15387. height: math.unit(2 + 4 / 12, "feet"),
  15388. default: true
  15389. },
  15390. ]
  15391. ))
  15392. characterMakers.push(() => makeCharacter(
  15393. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15394. {
  15395. anthro: {
  15396. height: math.unit(5 + 8/12, "feet"),
  15397. weight: math.unit(200, "lb"),
  15398. energyNeed: math.unit(2000, "kcal"),
  15399. name: "Anthro",
  15400. image: {
  15401. source: "./media/characters/kee/anthro.svg",
  15402. extra: 3251/3184,
  15403. bottom: 250/3501
  15404. }
  15405. },
  15406. taur: {
  15407. height: math.unit(11, "feet"),
  15408. weight: math.unit(500, "lb"),
  15409. energyNeed: math.unit(5000, "kcal"),
  15410. name: "Taur",
  15411. image: {
  15412. source: "./media/characters/kee/taur.svg",
  15413. extra: 1362/1320,
  15414. bottom: 83/1445
  15415. }
  15416. },
  15417. },
  15418. [
  15419. {
  15420. name: "Normal",
  15421. height: math.unit(5 + 8/12, "feet"),
  15422. default: true
  15423. },
  15424. {
  15425. name: "Macro",
  15426. height: math.unit(35, "feet")
  15427. },
  15428. ]
  15429. ))
  15430. characterMakers.push(() => makeCharacter(
  15431. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15432. {
  15433. anthro: {
  15434. height: math.unit(7, "feet"),
  15435. weight: math.unit(190, "lb"),
  15436. name: "Anthro",
  15437. image: {
  15438. source: "./media/characters/cobalt-dracha/anthro.svg",
  15439. extra: 231 / 225,
  15440. bottom: 0.04
  15441. }
  15442. },
  15443. feral: {
  15444. height: math.unit(9 + 7 / 12, "feet"),
  15445. weight: math.unit(294, "lb"),
  15446. name: "Feral",
  15447. image: {
  15448. source: "./media/characters/cobalt-dracha/feral.svg",
  15449. extra: 692 / 633,
  15450. bottom: 0.05
  15451. }
  15452. },
  15453. },
  15454. [
  15455. {
  15456. name: "Normal",
  15457. height: math.unit(7, "feet"),
  15458. default: true
  15459. },
  15460. ]
  15461. ))
  15462. characterMakers.push(() => makeCharacter(
  15463. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15464. {
  15465. fallen: {
  15466. height: math.unit(11 + 8 / 12, "feet"),
  15467. weight: math.unit(485, "lb"),
  15468. name: "Java (Fallen)",
  15469. rename: true,
  15470. image: {
  15471. source: "./media/characters/java/fallen.svg",
  15472. extra: 226 / 208,
  15473. bottom: 0.005
  15474. }
  15475. },
  15476. godkin: {
  15477. height: math.unit(10 + 6 / 12, "feet"),
  15478. weight: math.unit(328, "lb"),
  15479. name: "Java (Godkin)",
  15480. rename: true,
  15481. image: {
  15482. source: "./media/characters/java/godkin.svg",
  15483. extra: 270 / 262,
  15484. bottom: 0.02
  15485. }
  15486. },
  15487. },
  15488. [
  15489. {
  15490. name: "Normal",
  15491. height: math.unit(11 + 8 / 12, "feet"),
  15492. default: true
  15493. },
  15494. ]
  15495. ))
  15496. characterMakers.push(() => makeCharacter(
  15497. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15498. {
  15499. front: {
  15500. height: math.unit(7 + 8 / 12, "feet"),
  15501. weight: math.unit(320, "lb"),
  15502. name: "Front",
  15503. image: {
  15504. source: "./media/characters/skoll/front.svg",
  15505. extra: 232 / 220,
  15506. bottom: 0.02
  15507. }
  15508. },
  15509. },
  15510. [
  15511. {
  15512. name: "Normal",
  15513. height: math.unit(7 + 8 / 12, "feet"),
  15514. default: true
  15515. },
  15516. ]
  15517. ))
  15518. characterMakers.push(() => makeCharacter(
  15519. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15520. {
  15521. front: {
  15522. height: math.unit(5 + 9 / 12, "feet"),
  15523. weight: math.unit(170, "lb"),
  15524. name: "Front",
  15525. image: {
  15526. source: "./media/characters/purna/front.svg",
  15527. extra: 239 / 229,
  15528. bottom: 0.01
  15529. }
  15530. },
  15531. },
  15532. [
  15533. {
  15534. name: "Normal",
  15535. height: math.unit(5 + 9 / 12, "feet"),
  15536. default: true
  15537. },
  15538. ]
  15539. ))
  15540. characterMakers.push(() => makeCharacter(
  15541. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15542. {
  15543. front: {
  15544. height: math.unit(5 + 9 / 12, "feet"),
  15545. weight: math.unit(142, "lb"),
  15546. name: "Front",
  15547. image: {
  15548. source: "./media/characters/kuva/front.svg",
  15549. extra: 281 / 271,
  15550. bottom: 0.006
  15551. }
  15552. },
  15553. },
  15554. [
  15555. {
  15556. name: "Normal",
  15557. height: math.unit(5 + 9 / 12, "feet"),
  15558. default: true
  15559. },
  15560. ]
  15561. ))
  15562. characterMakers.push(() => makeCharacter(
  15563. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15564. {
  15565. anthro: {
  15566. height: math.unit(9 + 2 / 12, "feet"),
  15567. weight: math.unit(270, "lb"),
  15568. name: "Anthro",
  15569. image: {
  15570. source: "./media/characters/embra/anthro.svg",
  15571. extra: 200 / 187,
  15572. bottom: 0.02
  15573. }
  15574. },
  15575. feral: {
  15576. height: math.unit(18 + 8 / 12, "feet"),
  15577. weight: math.unit(576, "lb"),
  15578. name: "Feral",
  15579. image: {
  15580. source: "./media/characters/embra/feral.svg",
  15581. extra: 152 / 137,
  15582. bottom: 0.037
  15583. }
  15584. },
  15585. },
  15586. [
  15587. {
  15588. name: "Normal",
  15589. height: math.unit(9 + 2 / 12, "feet"),
  15590. default: true
  15591. },
  15592. ]
  15593. ))
  15594. characterMakers.push(() => makeCharacter(
  15595. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15596. {
  15597. anthro: {
  15598. height: math.unit(10 + 9 / 12, "feet"),
  15599. weight: math.unit(224, "lb"),
  15600. name: "Anthro",
  15601. image: {
  15602. source: "./media/characters/grottos/anthro.svg",
  15603. extra: 350 / 332,
  15604. bottom: 0.045
  15605. }
  15606. },
  15607. feral: {
  15608. height: math.unit(20 + 7 / 12, "feet"),
  15609. weight: math.unit(629, "lb"),
  15610. name: "Feral",
  15611. image: {
  15612. source: "./media/characters/grottos/feral.svg",
  15613. extra: 207 / 190,
  15614. bottom: 0.05
  15615. }
  15616. },
  15617. },
  15618. [
  15619. {
  15620. name: "Normal",
  15621. height: math.unit(10 + 9 / 12, "feet"),
  15622. default: true
  15623. },
  15624. ]
  15625. ))
  15626. characterMakers.push(() => makeCharacter(
  15627. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15628. {
  15629. anthro: {
  15630. height: math.unit(9 + 6 / 12, "feet"),
  15631. weight: math.unit(298, "lb"),
  15632. name: "Anthro",
  15633. image: {
  15634. source: "./media/characters/frifna/anthro.svg",
  15635. extra: 282 / 269,
  15636. bottom: 0.015
  15637. }
  15638. },
  15639. feral: {
  15640. height: math.unit(16 + 2 / 12, "feet"),
  15641. weight: math.unit(624, "lb"),
  15642. name: "Feral",
  15643. image: {
  15644. source: "./media/characters/frifna/feral.svg"
  15645. }
  15646. },
  15647. },
  15648. [
  15649. {
  15650. name: "Normal",
  15651. height: math.unit(9 + 6 / 12, "feet"),
  15652. default: true
  15653. },
  15654. ]
  15655. ))
  15656. characterMakers.push(() => makeCharacter(
  15657. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15658. {
  15659. front: {
  15660. height: math.unit(6 + 2 / 12, "feet"),
  15661. weight: math.unit(168, "lb"),
  15662. name: "Front",
  15663. image: {
  15664. source: "./media/characters/elise/front.svg",
  15665. extra: 276 / 271
  15666. }
  15667. },
  15668. },
  15669. [
  15670. {
  15671. name: "Normal",
  15672. height: math.unit(6 + 2 / 12, "feet"),
  15673. default: true
  15674. },
  15675. ]
  15676. ))
  15677. characterMakers.push(() => makeCharacter(
  15678. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15679. {
  15680. front: {
  15681. height: math.unit(5 + 10 / 12, "feet"),
  15682. weight: math.unit(210, "lb"),
  15683. name: "Front",
  15684. image: {
  15685. source: "./media/characters/glade/front.svg",
  15686. extra: 258 / 247,
  15687. bottom: 0.008
  15688. }
  15689. },
  15690. },
  15691. [
  15692. {
  15693. name: "Normal",
  15694. height: math.unit(5 + 10 / 12, "feet"),
  15695. default: true
  15696. },
  15697. ]
  15698. ))
  15699. characterMakers.push(() => makeCharacter(
  15700. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15701. {
  15702. front: {
  15703. height: math.unit(5 + 10 / 12, "feet"),
  15704. weight: math.unit(129, "lb"),
  15705. name: "Front",
  15706. image: {
  15707. source: "./media/characters/rina/front.svg",
  15708. extra: 266 / 255,
  15709. bottom: 0.005
  15710. }
  15711. },
  15712. },
  15713. [
  15714. {
  15715. name: "Normal",
  15716. height: math.unit(5 + 10 / 12, "feet"),
  15717. default: true
  15718. },
  15719. ]
  15720. ))
  15721. characterMakers.push(() => makeCharacter(
  15722. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15723. {
  15724. front: {
  15725. height: math.unit(6 + 1 / 12, "feet"),
  15726. weight: math.unit(192, "lb"),
  15727. name: "Front",
  15728. image: {
  15729. source: "./media/characters/veronica/front.svg",
  15730. extra: 319 / 309,
  15731. bottom: 0.005
  15732. }
  15733. },
  15734. },
  15735. [
  15736. {
  15737. name: "Normal",
  15738. height: math.unit(6 + 1 / 12, "feet"),
  15739. default: true
  15740. },
  15741. ]
  15742. ))
  15743. characterMakers.push(() => makeCharacter(
  15744. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15745. {
  15746. front: {
  15747. height: math.unit(9 + 3 / 12, "feet"),
  15748. weight: math.unit(1100, "lb"),
  15749. name: "Front",
  15750. image: {
  15751. source: "./media/characters/braxton/front.svg",
  15752. extra: 1057 / 984,
  15753. bottom: 0.05
  15754. }
  15755. },
  15756. },
  15757. [
  15758. {
  15759. name: "Normal",
  15760. height: math.unit(9 + 3 / 12, "feet")
  15761. },
  15762. {
  15763. name: "Giant",
  15764. height: math.unit(300, "feet"),
  15765. default: true
  15766. },
  15767. {
  15768. name: "Macro",
  15769. height: math.unit(700, "feet")
  15770. },
  15771. {
  15772. name: "Megamacro",
  15773. height: math.unit(6000, "feet")
  15774. },
  15775. ]
  15776. ))
  15777. characterMakers.push(() => makeCharacter(
  15778. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15779. {
  15780. front: {
  15781. height: math.unit(6 + 7 / 12, "feet"),
  15782. weight: math.unit(150, "lb"),
  15783. name: "Front",
  15784. image: {
  15785. source: "./media/characters/blue-feyonics/front.svg",
  15786. extra: 1403 / 1306,
  15787. bottom: 0.047
  15788. }
  15789. },
  15790. },
  15791. [
  15792. {
  15793. name: "Normal",
  15794. height: math.unit(6 + 7 / 12, "feet"),
  15795. default: true
  15796. },
  15797. ]
  15798. ))
  15799. characterMakers.push(() => makeCharacter(
  15800. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15801. {
  15802. front: {
  15803. height: math.unit(1.8, "meters"),
  15804. weight: math.unit(60, "kg"),
  15805. name: "Front",
  15806. image: {
  15807. source: "./media/characters/maxwell/front.svg",
  15808. extra: 2060 / 1873
  15809. }
  15810. },
  15811. },
  15812. [
  15813. {
  15814. name: "Micro",
  15815. height: math.unit(1, "mm")
  15816. },
  15817. {
  15818. name: "Normal",
  15819. height: math.unit(1.8, "meter"),
  15820. default: true
  15821. },
  15822. {
  15823. name: "Macro",
  15824. height: math.unit(30, "meters")
  15825. },
  15826. {
  15827. name: "Megamacro",
  15828. height: math.unit(10, "km")
  15829. },
  15830. ]
  15831. ))
  15832. characterMakers.push(() => makeCharacter(
  15833. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15834. {
  15835. front: {
  15836. height: math.unit(6, "feet"),
  15837. weight: math.unit(150, "lb"),
  15838. name: "Front",
  15839. image: {
  15840. source: "./media/characters/jack/front.svg",
  15841. extra: 1754 / 1640,
  15842. bottom: 0.01
  15843. }
  15844. },
  15845. },
  15846. [
  15847. {
  15848. name: "Normal",
  15849. height: math.unit(80000, "feet"),
  15850. default: true
  15851. },
  15852. {
  15853. name: "Max size",
  15854. height: math.unit(10, "lightyears")
  15855. },
  15856. ]
  15857. ))
  15858. characterMakers.push(() => makeCharacter(
  15859. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15860. {
  15861. urban: {
  15862. height: math.unit(5, "feet"),
  15863. weight: math.unit(240, "lb"),
  15864. name: "Urban",
  15865. image: {
  15866. source: "./media/characters/cafat/urban.svg",
  15867. extra: 1223/1126,
  15868. bottom: 205/1428
  15869. }
  15870. },
  15871. summer: {
  15872. height: math.unit(5, "feet"),
  15873. weight: math.unit(240, "lb"),
  15874. name: "Summer",
  15875. image: {
  15876. source: "./media/characters/cafat/summer.svg",
  15877. extra: 1223/1126,
  15878. bottom: 205/1428
  15879. }
  15880. },
  15881. winter: {
  15882. height: math.unit(5, "feet"),
  15883. weight: math.unit(240, "lb"),
  15884. name: "Winter",
  15885. image: {
  15886. source: "./media/characters/cafat/winter.svg",
  15887. extra: 1223/1126,
  15888. bottom: 205/1428
  15889. }
  15890. },
  15891. lingerie: {
  15892. height: math.unit(5, "feet"),
  15893. weight: math.unit(240, "lb"),
  15894. name: "Lingerie",
  15895. image: {
  15896. source: "./media/characters/cafat/lingerie.svg",
  15897. extra: 1223/1126,
  15898. bottom: 205/1428
  15899. }
  15900. },
  15901. upright: {
  15902. height: math.unit(6.3, "feet"),
  15903. weight: math.unit(240, "lb"),
  15904. name: "Upright",
  15905. image: {
  15906. source: "./media/characters/cafat/upright.svg",
  15907. bottom: 0.01
  15908. }
  15909. },
  15910. uprightFull: {
  15911. height: math.unit(6.3, "feet"),
  15912. weight: math.unit(240, "lb"),
  15913. name: "Upright (Full)",
  15914. image: {
  15915. source: "./media/characters/cafat/upright-full.svg",
  15916. bottom: 0.01
  15917. }
  15918. },
  15919. },
  15920. [
  15921. {
  15922. name: "Small",
  15923. height: math.unit(5, "feet"),
  15924. default: true
  15925. },
  15926. {
  15927. name: "Large",
  15928. height: math.unit(13, "feet")
  15929. },
  15930. ]
  15931. ))
  15932. characterMakers.push(() => makeCharacter(
  15933. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15934. {
  15935. front: {
  15936. height: math.unit(6, "feet"),
  15937. weight: math.unit(150, "lb"),
  15938. name: "Front",
  15939. image: {
  15940. source: "./media/characters/verin-raharra/front.svg",
  15941. extra: 5019 / 4835,
  15942. bottom: 0.023
  15943. }
  15944. },
  15945. },
  15946. [
  15947. {
  15948. name: "Normal",
  15949. height: math.unit(7 + 5 / 12, "feet"),
  15950. default: true
  15951. },
  15952. {
  15953. name: "Upsized",
  15954. height: math.unit(20, "feet")
  15955. },
  15956. ]
  15957. ))
  15958. characterMakers.push(() => makeCharacter(
  15959. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15960. {
  15961. front: {
  15962. height: math.unit(7, "feet"),
  15963. weight: math.unit(230, "lb"),
  15964. name: "Front",
  15965. image: {
  15966. source: "./media/characters/nakata/front.svg",
  15967. extra: 1.005,
  15968. bottom: 0.01
  15969. }
  15970. },
  15971. },
  15972. [
  15973. {
  15974. name: "Normal",
  15975. height: math.unit(7, "feet"),
  15976. default: true
  15977. },
  15978. {
  15979. name: "Big",
  15980. height: math.unit(14, "feet")
  15981. },
  15982. {
  15983. name: "Macro",
  15984. height: math.unit(400, "feet")
  15985. },
  15986. ]
  15987. ))
  15988. characterMakers.push(() => makeCharacter(
  15989. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15990. {
  15991. front: {
  15992. height: math.unit(4.91, "feet"),
  15993. weight: math.unit(100, "lb"),
  15994. name: "Front",
  15995. image: {
  15996. source: "./media/characters/lily/front.svg",
  15997. extra: 1585 / 1415,
  15998. bottom: 0.02
  15999. }
  16000. },
  16001. },
  16002. [
  16003. {
  16004. name: "Normal",
  16005. height: math.unit(4.91, "feet"),
  16006. default: true
  16007. },
  16008. ]
  16009. ))
  16010. characterMakers.push(() => makeCharacter(
  16011. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16012. {
  16013. laying: {
  16014. height: math.unit(4 + 4 / 12, "feet"),
  16015. weight: math.unit(600, "lb"),
  16016. name: "Laying",
  16017. image: {
  16018. source: "./media/characters/sheila/laying.svg",
  16019. extra: 1333 / 1265,
  16020. bottom: 0.16
  16021. }
  16022. },
  16023. },
  16024. [
  16025. {
  16026. name: "Normal",
  16027. height: math.unit(4 + 4 / 12, "feet"),
  16028. default: true
  16029. },
  16030. ]
  16031. ))
  16032. characterMakers.push(() => makeCharacter(
  16033. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16034. {
  16035. front: {
  16036. height: math.unit(6, "feet"),
  16037. weight: math.unit(190, "lb"),
  16038. name: "Front",
  16039. image: {
  16040. source: "./media/characters/sax/front.svg",
  16041. extra: 1187 / 973,
  16042. bottom: 0.042
  16043. }
  16044. },
  16045. },
  16046. [
  16047. {
  16048. name: "Micro",
  16049. height: math.unit(4, "inches"),
  16050. default: true
  16051. },
  16052. ]
  16053. ))
  16054. characterMakers.push(() => makeCharacter(
  16055. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16056. {
  16057. front: {
  16058. height: math.unit(6, "feet"),
  16059. weight: math.unit(150, "lb"),
  16060. name: "Front",
  16061. image: {
  16062. source: "./media/characters/pandora/front.svg",
  16063. extra: 2720 / 2556,
  16064. bottom: 0.015
  16065. }
  16066. },
  16067. back: {
  16068. height: math.unit(6, "feet"),
  16069. weight: math.unit(150, "lb"),
  16070. name: "Back",
  16071. image: {
  16072. source: "./media/characters/pandora/back.svg",
  16073. extra: 2720 / 2556,
  16074. bottom: 0.01
  16075. }
  16076. },
  16077. beans: {
  16078. height: math.unit(6 / 8, "feet"),
  16079. name: "Beans",
  16080. image: {
  16081. source: "./media/characters/pandora/beans.svg"
  16082. }
  16083. },
  16084. collar: {
  16085. height: math.unit(0.31, "feet"),
  16086. name: "Collar",
  16087. image: {
  16088. source: "./media/characters/pandora/collar.svg"
  16089. }
  16090. },
  16091. skirt: {
  16092. height: math.unit(6, "feet"),
  16093. weight: math.unit(150, "lb"),
  16094. name: "Skirt",
  16095. image: {
  16096. source: "./media/characters/pandora/skirt.svg",
  16097. extra: 1622 / 1525,
  16098. bottom: 0.015
  16099. }
  16100. },
  16101. hoodie: {
  16102. height: math.unit(6, "feet"),
  16103. weight: math.unit(150, "lb"),
  16104. name: "Hoodie",
  16105. image: {
  16106. source: "./media/characters/pandora/hoodie.svg",
  16107. extra: 1622 / 1525,
  16108. bottom: 0.015
  16109. }
  16110. },
  16111. casual: {
  16112. height: math.unit(6, "feet"),
  16113. weight: math.unit(150, "lb"),
  16114. name: "Casual",
  16115. image: {
  16116. source: "./media/characters/pandora/casual.svg",
  16117. extra: 1622 / 1525,
  16118. bottom: 0.015
  16119. }
  16120. },
  16121. },
  16122. [
  16123. {
  16124. name: "Normal",
  16125. height: math.unit(6, "feet")
  16126. },
  16127. {
  16128. name: "Big Steppy",
  16129. height: math.unit(1, "km"),
  16130. default: true
  16131. },
  16132. {
  16133. name: "Galactic Steppy",
  16134. height: math.unit(2, "gigameters")
  16135. },
  16136. ]
  16137. ))
  16138. characterMakers.push(() => makeCharacter(
  16139. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16140. {
  16141. side: {
  16142. height: math.unit(10, "feet"),
  16143. weight: math.unit(800, "kg"),
  16144. name: "Side",
  16145. image: {
  16146. source: "./media/characters/venio-darcony/side.svg",
  16147. extra: 1373 / 1003,
  16148. bottom: 0.037
  16149. }
  16150. },
  16151. front: {
  16152. height: math.unit(19, "feet"),
  16153. weight: math.unit(800, "kg"),
  16154. name: "Front",
  16155. image: {
  16156. source: "./media/characters/venio-darcony/front.svg"
  16157. }
  16158. },
  16159. back: {
  16160. height: math.unit(19, "feet"),
  16161. weight: math.unit(800, "kg"),
  16162. name: "Back",
  16163. image: {
  16164. source: "./media/characters/venio-darcony/back.svg"
  16165. }
  16166. },
  16167. sideNsfw: {
  16168. height: math.unit(10, "feet"),
  16169. weight: math.unit(800, "kg"),
  16170. name: "Side (NSFW)",
  16171. image: {
  16172. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16173. extra: 1373 / 1003,
  16174. bottom: 0.037
  16175. }
  16176. },
  16177. frontNsfw: {
  16178. height: math.unit(19, "feet"),
  16179. weight: math.unit(800, "kg"),
  16180. name: "Front (NSFW)",
  16181. image: {
  16182. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16183. }
  16184. },
  16185. backNsfw: {
  16186. height: math.unit(19, "feet"),
  16187. weight: math.unit(800, "kg"),
  16188. name: "Back (NSFW)",
  16189. image: {
  16190. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16191. }
  16192. },
  16193. sideArmored: {
  16194. height: math.unit(10, "feet"),
  16195. weight: math.unit(800, "kg"),
  16196. name: "Side (Armored)",
  16197. image: {
  16198. source: "./media/characters/venio-darcony/side-armored.svg",
  16199. extra: 1373 / 1003,
  16200. bottom: 0.037
  16201. }
  16202. },
  16203. frontArmored: {
  16204. height: math.unit(19, "feet"),
  16205. weight: math.unit(900, "kg"),
  16206. name: "Front (Armored)",
  16207. image: {
  16208. source: "./media/characters/venio-darcony/front-armored.svg"
  16209. }
  16210. },
  16211. backArmored: {
  16212. height: math.unit(19, "feet"),
  16213. weight: math.unit(900, "kg"),
  16214. name: "Back (Armored)",
  16215. image: {
  16216. source: "./media/characters/venio-darcony/back-armored.svg"
  16217. }
  16218. },
  16219. sword: {
  16220. height: math.unit(10, "feet"),
  16221. weight: math.unit(50, "lb"),
  16222. name: "Sword",
  16223. image: {
  16224. source: "./media/characters/venio-darcony/sword.svg"
  16225. }
  16226. },
  16227. },
  16228. [
  16229. {
  16230. name: "Normal",
  16231. height: math.unit(10, "feet")
  16232. },
  16233. {
  16234. name: "Macro",
  16235. height: math.unit(130, "feet"),
  16236. default: true
  16237. },
  16238. {
  16239. name: "Macro+",
  16240. height: math.unit(240, "feet")
  16241. },
  16242. ]
  16243. ))
  16244. characterMakers.push(() => makeCharacter(
  16245. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16246. {
  16247. front: {
  16248. height: math.unit(6, "feet"),
  16249. weight: math.unit(150, "lb"),
  16250. name: "Front",
  16251. image: {
  16252. source: "./media/characters/veski/front.svg",
  16253. extra: 1299 / 1225,
  16254. bottom: 0.04
  16255. }
  16256. },
  16257. back: {
  16258. height: math.unit(6, "feet"),
  16259. weight: math.unit(150, "lb"),
  16260. name: "Back",
  16261. image: {
  16262. source: "./media/characters/veski/back.svg",
  16263. extra: 1299 / 1225,
  16264. bottom: 0.008
  16265. }
  16266. },
  16267. maw: {
  16268. height: math.unit(1.5 * 1.21, "feet"),
  16269. name: "Maw",
  16270. image: {
  16271. source: "./media/characters/veski/maw.svg"
  16272. }
  16273. },
  16274. },
  16275. [
  16276. {
  16277. name: "Macro",
  16278. height: math.unit(2, "km"),
  16279. default: true
  16280. },
  16281. ]
  16282. ))
  16283. characterMakers.push(() => makeCharacter(
  16284. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16285. {
  16286. front: {
  16287. height: math.unit(5 + 7 / 12, "feet"),
  16288. name: "Front",
  16289. image: {
  16290. source: "./media/characters/isabelle/front.svg",
  16291. extra: 2130 / 1976,
  16292. bottom: 0.05
  16293. }
  16294. },
  16295. },
  16296. [
  16297. {
  16298. name: "Supermicro",
  16299. height: math.unit(10, "micrometers")
  16300. },
  16301. {
  16302. name: "Micro",
  16303. height: math.unit(1, "inch")
  16304. },
  16305. {
  16306. name: "Tiny",
  16307. height: math.unit(5, "inches")
  16308. },
  16309. {
  16310. name: "Standard",
  16311. height: math.unit(5 + 7 / 12, "inches")
  16312. },
  16313. {
  16314. name: "Macro",
  16315. height: math.unit(80, "meters"),
  16316. default: true
  16317. },
  16318. {
  16319. name: "Megamacro",
  16320. height: math.unit(250, "meters")
  16321. },
  16322. {
  16323. name: "Gigamacro",
  16324. height: math.unit(5, "km")
  16325. },
  16326. {
  16327. name: "Cosmic",
  16328. height: math.unit(2.5e6, "miles")
  16329. },
  16330. ]
  16331. ))
  16332. characterMakers.push(() => makeCharacter(
  16333. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16334. {
  16335. front: {
  16336. height: math.unit(6, "feet"),
  16337. weight: math.unit(150, "lb"),
  16338. name: "Front",
  16339. image: {
  16340. source: "./media/characters/hanzo/front.svg",
  16341. extra: 374 / 344,
  16342. bottom: 0.02
  16343. }
  16344. },
  16345. },
  16346. [
  16347. {
  16348. name: "Normal",
  16349. height: math.unit(8, "feet"),
  16350. default: true
  16351. },
  16352. ]
  16353. ))
  16354. characterMakers.push(() => makeCharacter(
  16355. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16356. {
  16357. front: {
  16358. height: math.unit(7, "feet"),
  16359. weight: math.unit(130, "lb"),
  16360. name: "Front",
  16361. image: {
  16362. source: "./media/characters/anna/front.svg",
  16363. extra: 169 / 145,
  16364. bottom: 0.06
  16365. }
  16366. },
  16367. full: {
  16368. height: math.unit(4.96, "feet"),
  16369. weight: math.unit(220, "lb"),
  16370. name: "Full",
  16371. image: {
  16372. source: "./media/characters/anna/full.svg",
  16373. extra: 138 / 114,
  16374. bottom: 0.15
  16375. }
  16376. },
  16377. tongue: {
  16378. height: math.unit(2.53, "feet"),
  16379. name: "Tongue",
  16380. image: {
  16381. source: "./media/characters/anna/tongue.svg"
  16382. }
  16383. },
  16384. },
  16385. [
  16386. {
  16387. name: "Normal",
  16388. height: math.unit(7, "feet"),
  16389. default: true
  16390. },
  16391. ]
  16392. ))
  16393. characterMakers.push(() => makeCharacter(
  16394. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16395. {
  16396. front: {
  16397. height: math.unit(7, "feet"),
  16398. weight: math.unit(150, "lb"),
  16399. name: "Front",
  16400. image: {
  16401. source: "./media/characters/ian-corvid/front.svg",
  16402. extra: 150 / 142,
  16403. bottom: 0.02
  16404. }
  16405. },
  16406. back: {
  16407. height: math.unit(7, "feet"),
  16408. weight: math.unit(150, "lb"),
  16409. name: "Back",
  16410. image: {
  16411. source: "./media/characters/ian-corvid/back.svg",
  16412. extra: 150 / 143,
  16413. bottom: 0.01
  16414. }
  16415. },
  16416. stomping: {
  16417. height: math.unit(7, "feet"),
  16418. weight: math.unit(150, "lb"),
  16419. name: "Stomping",
  16420. image: {
  16421. source: "./media/characters/ian-corvid/stomping.svg",
  16422. extra: 76 / 72
  16423. }
  16424. },
  16425. sitting: {
  16426. height: math.unit(7 / 1.8, "feet"),
  16427. weight: math.unit(150, "lb"),
  16428. name: "Sitting",
  16429. image: {
  16430. source: "./media/characters/ian-corvid/sitting.svg",
  16431. extra: 1400 / 1269,
  16432. bottom: 0.15
  16433. }
  16434. },
  16435. },
  16436. [
  16437. {
  16438. name: "Tiny Microw",
  16439. height: math.unit(1, "inch")
  16440. },
  16441. {
  16442. name: "Microw",
  16443. height: math.unit(6, "inches")
  16444. },
  16445. {
  16446. name: "Crow",
  16447. height: math.unit(7 + 1 / 12, "feet"),
  16448. default: true
  16449. },
  16450. {
  16451. name: "Macrow",
  16452. height: math.unit(176, "feet")
  16453. },
  16454. ]
  16455. ))
  16456. characterMakers.push(() => makeCharacter(
  16457. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16458. {
  16459. front: {
  16460. height: math.unit(5 + 7 / 12, "feet"),
  16461. weight: math.unit(147, "lb"),
  16462. name: "Front",
  16463. image: {
  16464. source: "./media/characters/natalie-kellon/front.svg",
  16465. extra: 1214 / 1141,
  16466. bottom: 0.02
  16467. }
  16468. },
  16469. },
  16470. [
  16471. {
  16472. name: "Micro",
  16473. height: math.unit(1 / 16, "inch")
  16474. },
  16475. {
  16476. name: "Tiny",
  16477. height: math.unit(4, "inches")
  16478. },
  16479. {
  16480. name: "Normal",
  16481. height: math.unit(5 + 7 / 12, "feet"),
  16482. default: true
  16483. },
  16484. {
  16485. name: "Amazon",
  16486. height: math.unit(12, "feet")
  16487. },
  16488. {
  16489. name: "Giantess",
  16490. height: math.unit(160, "meters")
  16491. },
  16492. {
  16493. name: "Titaness",
  16494. height: math.unit(800, "meters")
  16495. },
  16496. ]
  16497. ))
  16498. characterMakers.push(() => makeCharacter(
  16499. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16500. {
  16501. front: {
  16502. height: math.unit(6, "feet"),
  16503. weight: math.unit(150, "lb"),
  16504. name: "Front",
  16505. image: {
  16506. source: "./media/characters/alluria/front.svg",
  16507. extra: 806 / 738,
  16508. bottom: 0.01
  16509. }
  16510. },
  16511. side: {
  16512. height: math.unit(6, "feet"),
  16513. weight: math.unit(150, "lb"),
  16514. name: "Side",
  16515. image: {
  16516. source: "./media/characters/alluria/side.svg",
  16517. extra: 800 / 750,
  16518. }
  16519. },
  16520. back: {
  16521. height: math.unit(6, "feet"),
  16522. weight: math.unit(150, "lb"),
  16523. name: "Back",
  16524. image: {
  16525. source: "./media/characters/alluria/back.svg",
  16526. extra: 806 / 738,
  16527. }
  16528. },
  16529. frontMaid: {
  16530. height: math.unit(6, "feet"),
  16531. weight: math.unit(150, "lb"),
  16532. name: "Front (Maid)",
  16533. image: {
  16534. source: "./media/characters/alluria/front-maid.svg",
  16535. extra: 806 / 738,
  16536. bottom: 0.01
  16537. }
  16538. },
  16539. sideMaid: {
  16540. height: math.unit(6, "feet"),
  16541. weight: math.unit(150, "lb"),
  16542. name: "Side (Maid)",
  16543. image: {
  16544. source: "./media/characters/alluria/side-maid.svg",
  16545. extra: 800 / 750,
  16546. bottom: 0.005
  16547. }
  16548. },
  16549. backMaid: {
  16550. height: math.unit(6, "feet"),
  16551. weight: math.unit(150, "lb"),
  16552. name: "Back (Maid)",
  16553. image: {
  16554. source: "./media/characters/alluria/back-maid.svg",
  16555. extra: 806 / 738,
  16556. }
  16557. },
  16558. },
  16559. [
  16560. {
  16561. name: "Micro",
  16562. height: math.unit(6, "inches"),
  16563. default: true
  16564. },
  16565. ]
  16566. ))
  16567. characterMakers.push(() => makeCharacter(
  16568. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16569. {
  16570. front: {
  16571. height: math.unit(6, "feet"),
  16572. weight: math.unit(150, "lb"),
  16573. name: "Front",
  16574. image: {
  16575. source: "./media/characters/kyle/front.svg",
  16576. extra: 1069 / 962,
  16577. bottom: 77.228 / 1727.45
  16578. }
  16579. },
  16580. },
  16581. [
  16582. {
  16583. name: "Macro",
  16584. height: math.unit(150, "feet"),
  16585. default: true
  16586. },
  16587. ]
  16588. ))
  16589. characterMakers.push(() => makeCharacter(
  16590. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16591. {
  16592. front: {
  16593. height: math.unit(6, "feet"),
  16594. weight: math.unit(300, "lb"),
  16595. name: "Front",
  16596. image: {
  16597. source: "./media/characters/duncan/front.svg",
  16598. extra: 1650 / 1482,
  16599. bottom: 0.05
  16600. }
  16601. },
  16602. },
  16603. [
  16604. {
  16605. name: "Macro",
  16606. height: math.unit(100, "feet"),
  16607. default: true
  16608. },
  16609. ]
  16610. ))
  16611. characterMakers.push(() => makeCharacter(
  16612. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16613. {
  16614. front: {
  16615. height: math.unit(5 + 4 / 12, "feet"),
  16616. weight: math.unit(220, "lb"),
  16617. name: "Front",
  16618. image: {
  16619. source: "./media/characters/memory/front.svg",
  16620. extra: 3641 / 3545,
  16621. bottom: 0.03
  16622. }
  16623. },
  16624. back: {
  16625. height: math.unit(5 + 4 / 12, "feet"),
  16626. weight: math.unit(220, "lb"),
  16627. name: "Back",
  16628. image: {
  16629. source: "./media/characters/memory/back.svg",
  16630. extra: 3641 / 3545,
  16631. bottom: 0.025
  16632. }
  16633. },
  16634. frontSkirt: {
  16635. height: math.unit(5 + 4 / 12, "feet"),
  16636. weight: math.unit(220, "lb"),
  16637. name: "Front (Skirt)",
  16638. image: {
  16639. source: "./media/characters/memory/front-skirt.svg",
  16640. extra: 3641 / 3545,
  16641. bottom: 0.03
  16642. }
  16643. },
  16644. frontDress: {
  16645. height: math.unit(5 + 4 / 12, "feet"),
  16646. weight: math.unit(220, "lb"),
  16647. name: "Front (Dress)",
  16648. image: {
  16649. source: "./media/characters/memory/front-dress.svg",
  16650. extra: 3641 / 3545,
  16651. bottom: 0.03
  16652. }
  16653. },
  16654. },
  16655. [
  16656. {
  16657. name: "Micro",
  16658. height: math.unit(6, "inches"),
  16659. default: true
  16660. },
  16661. {
  16662. name: "Normal",
  16663. height: math.unit(5 + 4 / 12, "feet")
  16664. },
  16665. ]
  16666. ))
  16667. characterMakers.push(() => makeCharacter(
  16668. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16669. {
  16670. front: {
  16671. height: math.unit(4 + 11 / 12, "feet"),
  16672. weight: math.unit(100, "lb"),
  16673. name: "Front",
  16674. image: {
  16675. source: "./media/characters/luno/front.svg",
  16676. extra: 1535 / 1487,
  16677. bottom: 0.03
  16678. }
  16679. },
  16680. },
  16681. [
  16682. {
  16683. name: "Micro",
  16684. height: math.unit(3, "inches")
  16685. },
  16686. {
  16687. name: "Normal",
  16688. height: math.unit(4 + 11 / 12, "feet"),
  16689. default: true
  16690. },
  16691. {
  16692. name: "Macro",
  16693. height: math.unit(300, "feet")
  16694. },
  16695. {
  16696. name: "Megamacro",
  16697. height: math.unit(700, "miles")
  16698. },
  16699. ]
  16700. ))
  16701. characterMakers.push(() => makeCharacter(
  16702. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16703. {
  16704. front: {
  16705. height: math.unit(6 + 2 / 12, "feet"),
  16706. weight: math.unit(170, "lb"),
  16707. name: "Front",
  16708. image: {
  16709. source: "./media/characters/jamesy/front.svg",
  16710. extra: 440 / 382,
  16711. bottom: 0.005
  16712. }
  16713. },
  16714. },
  16715. [
  16716. {
  16717. name: "Micro",
  16718. height: math.unit(3, "inches")
  16719. },
  16720. {
  16721. name: "Normal",
  16722. height: math.unit(6 + 2 / 12, "feet"),
  16723. default: true
  16724. },
  16725. {
  16726. name: "Macro",
  16727. height: math.unit(300, "feet")
  16728. },
  16729. {
  16730. name: "Megamacro",
  16731. height: math.unit(700, "miles")
  16732. },
  16733. ]
  16734. ))
  16735. characterMakers.push(() => makeCharacter(
  16736. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16737. {
  16738. front: {
  16739. height: math.unit(6, "feet"),
  16740. weight: math.unit(160, "lb"),
  16741. name: "Front",
  16742. image: {
  16743. source: "./media/characters/mark/front.svg",
  16744. extra: 3300 / 3100,
  16745. bottom: 136.42 / 3440.47
  16746. }
  16747. },
  16748. },
  16749. [
  16750. {
  16751. name: "Macro",
  16752. height: math.unit(120, "meters")
  16753. },
  16754. {
  16755. name: "Bigger Macro",
  16756. height: math.unit(350, "meters")
  16757. },
  16758. {
  16759. name: "Megamacro",
  16760. height: math.unit(8, "km"),
  16761. default: true
  16762. },
  16763. {
  16764. name: "Continental",
  16765. height: math.unit(4550, "km")
  16766. },
  16767. {
  16768. name: "Planetary",
  16769. height: math.unit(65000, "km")
  16770. },
  16771. ]
  16772. ))
  16773. characterMakers.push(() => makeCharacter(
  16774. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16775. {
  16776. front: {
  16777. height: math.unit(6, "feet"),
  16778. weight: math.unit(400, "lb"),
  16779. name: "Front",
  16780. image: {
  16781. source: "./media/characters/mac/front.svg",
  16782. extra: 1048 / 987.7,
  16783. bottom: 60 / 1107.6,
  16784. }
  16785. },
  16786. },
  16787. [
  16788. {
  16789. name: "Macro",
  16790. height: math.unit(500, "feet"),
  16791. default: true
  16792. },
  16793. ]
  16794. ))
  16795. characterMakers.push(() => makeCharacter(
  16796. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16797. {
  16798. front: {
  16799. height: math.unit(5 + 2 / 12, "feet"),
  16800. weight: math.unit(190, "lb"),
  16801. name: "Front",
  16802. image: {
  16803. source: "./media/characters/bari/front.svg",
  16804. extra: 3156 / 2880,
  16805. bottom: 0.03
  16806. }
  16807. },
  16808. back: {
  16809. height: math.unit(5 + 2 / 12, "feet"),
  16810. weight: math.unit(190, "lb"),
  16811. name: "Back",
  16812. image: {
  16813. source: "./media/characters/bari/back.svg",
  16814. extra: 3260 / 2834,
  16815. bottom: 0.025
  16816. }
  16817. },
  16818. frontPlush: {
  16819. height: math.unit(5 + 2 / 12, "feet"),
  16820. weight: math.unit(190, "lb"),
  16821. name: "Front (Plush)",
  16822. image: {
  16823. source: "./media/characters/bari/front-plush.svg",
  16824. extra: 1112 / 1061,
  16825. bottom: 0.002
  16826. }
  16827. },
  16828. },
  16829. [
  16830. {
  16831. name: "Micro",
  16832. height: math.unit(3, "inches")
  16833. },
  16834. {
  16835. name: "Normal",
  16836. height: math.unit(5 + 2 / 12, "feet"),
  16837. default: true
  16838. },
  16839. {
  16840. name: "Macro",
  16841. height: math.unit(20, "feet")
  16842. },
  16843. ]
  16844. ))
  16845. characterMakers.push(() => makeCharacter(
  16846. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16847. {
  16848. front: {
  16849. height: math.unit(6 + 1 / 12, "feet"),
  16850. weight: math.unit(275, "lb"),
  16851. name: "Front",
  16852. image: {
  16853. source: "./media/characters/hunter-misha-raven/front.svg"
  16854. }
  16855. },
  16856. },
  16857. [
  16858. {
  16859. name: "Mortal",
  16860. height: math.unit(6 + 1 / 12, "feet")
  16861. },
  16862. {
  16863. name: "Divine",
  16864. height: math.unit(1.12134e34, "parsecs"),
  16865. default: true
  16866. },
  16867. ]
  16868. ))
  16869. characterMakers.push(() => makeCharacter(
  16870. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16871. {
  16872. front: {
  16873. height: math.unit(6 + 3 / 12, "feet"),
  16874. weight: math.unit(220, "lb"),
  16875. name: "Front",
  16876. image: {
  16877. source: "./media/characters/max-calore/front.svg",
  16878. extra: 1700 / 1648,
  16879. bottom: 0.01
  16880. }
  16881. },
  16882. back: {
  16883. height: math.unit(6 + 3 / 12, "feet"),
  16884. weight: math.unit(220, "lb"),
  16885. name: "Back",
  16886. image: {
  16887. source: "./media/characters/max-calore/back.svg",
  16888. extra: 1700 / 1648,
  16889. bottom: 0.01
  16890. }
  16891. },
  16892. },
  16893. [
  16894. {
  16895. name: "Normal",
  16896. height: math.unit(6 + 3 / 12, "feet"),
  16897. default: true
  16898. },
  16899. ]
  16900. ))
  16901. characterMakers.push(() => makeCharacter(
  16902. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16903. {
  16904. side: {
  16905. height: math.unit(2 + 8 / 12, "feet"),
  16906. weight: math.unit(99, "lb"),
  16907. name: "Side",
  16908. image: {
  16909. source: "./media/characters/aspen/side.svg",
  16910. extra: 152 / 138,
  16911. bottom: 0.032
  16912. }
  16913. },
  16914. },
  16915. [
  16916. {
  16917. name: "Normal",
  16918. height: math.unit(2 + 8 / 12, "feet"),
  16919. default: true
  16920. },
  16921. ]
  16922. ))
  16923. characterMakers.push(() => makeCharacter(
  16924. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16925. {
  16926. side: {
  16927. height: math.unit(3 + 2 / 12, "feet"),
  16928. weight: math.unit(224, "lb"),
  16929. name: "Side",
  16930. image: {
  16931. source: "./media/characters/sheila-feral-wolf/side.svg",
  16932. extra: 179 / 166,
  16933. bottom: 0.03
  16934. }
  16935. },
  16936. },
  16937. [
  16938. {
  16939. name: "Normal",
  16940. height: math.unit(3 + 2 / 12, "feet"),
  16941. default: true
  16942. },
  16943. ]
  16944. ))
  16945. characterMakers.push(() => makeCharacter(
  16946. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16947. {
  16948. side: {
  16949. height: math.unit(1 + 9 / 12, "feet"),
  16950. weight: math.unit(38, "lb"),
  16951. name: "Side",
  16952. image: {
  16953. source: "./media/characters/michelle/side.svg",
  16954. extra: 147 / 136.7,
  16955. bottom: 0.03
  16956. }
  16957. },
  16958. },
  16959. [
  16960. {
  16961. name: "Normal",
  16962. height: math.unit(1 + 9 / 12, "feet"),
  16963. default: true
  16964. },
  16965. ]
  16966. ))
  16967. characterMakers.push(() => makeCharacter(
  16968. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16969. {
  16970. front: {
  16971. height: math.unit(1 + 1 / 12, "feet"),
  16972. weight: math.unit(18, "lb"),
  16973. name: "Front",
  16974. image: {
  16975. source: "./media/characters/nino/front.svg"
  16976. }
  16977. },
  16978. },
  16979. [
  16980. {
  16981. name: "Normal",
  16982. height: math.unit(1 + 1 / 12, "feet"),
  16983. default: true
  16984. },
  16985. ]
  16986. ))
  16987. characterMakers.push(() => makeCharacter(
  16988. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16989. {
  16990. front: {
  16991. height: math.unit(1, "feet"),
  16992. weight: math.unit(16, "lb"),
  16993. name: "Front",
  16994. image: {
  16995. source: "./media/characters/viola/front.svg"
  16996. }
  16997. },
  16998. },
  16999. [
  17000. {
  17001. name: "Normal",
  17002. height: math.unit(1, "feet"),
  17003. default: true
  17004. },
  17005. ]
  17006. ))
  17007. characterMakers.push(() => makeCharacter(
  17008. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17009. {
  17010. front: {
  17011. height: math.unit(6 + 5 / 12, "feet"),
  17012. weight: math.unit(580, "lb"),
  17013. name: "Front",
  17014. image: {
  17015. source: "./media/characters/atlas/front.svg",
  17016. extra: 298.5 / 290,
  17017. bottom: 0.015
  17018. }
  17019. },
  17020. },
  17021. [
  17022. {
  17023. name: "Normal",
  17024. height: math.unit(6 + 5 / 12, "feet"),
  17025. default: true
  17026. },
  17027. ]
  17028. ))
  17029. characterMakers.push(() => makeCharacter(
  17030. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17031. {
  17032. side: {
  17033. height: math.unit(1 + 10 / 12, "feet"),
  17034. weight: math.unit(25, "lb"),
  17035. name: "Side",
  17036. image: {
  17037. source: "./media/characters/davy/side.svg",
  17038. extra: 200 / 170,
  17039. bottom: 0.01
  17040. }
  17041. },
  17042. },
  17043. [
  17044. {
  17045. name: "Normal",
  17046. height: math.unit(1 + 10 / 12, "feet"),
  17047. default: true
  17048. },
  17049. ]
  17050. ))
  17051. characterMakers.push(() => makeCharacter(
  17052. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17053. {
  17054. side: {
  17055. height: math.unit(4 + 8 / 12, "feet"),
  17056. weight: math.unit(166, "lb"),
  17057. name: "Side",
  17058. image: {
  17059. source: "./media/characters/fiona/side.svg",
  17060. extra: 232 / 220,
  17061. bottom: 0.03
  17062. }
  17063. },
  17064. },
  17065. [
  17066. {
  17067. name: "Normal",
  17068. height: math.unit(4 + 8 / 12, "feet"),
  17069. default: true
  17070. },
  17071. ]
  17072. ))
  17073. characterMakers.push(() => makeCharacter(
  17074. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17075. {
  17076. front: {
  17077. height: math.unit(2, "feet"),
  17078. weight: math.unit(62, "lb"),
  17079. name: "Front",
  17080. image: {
  17081. source: "./media/characters/lyla/front.svg",
  17082. bottom: 0.1
  17083. }
  17084. },
  17085. },
  17086. [
  17087. {
  17088. name: "Normal",
  17089. height: math.unit(2, "feet"),
  17090. default: true
  17091. },
  17092. ]
  17093. ))
  17094. characterMakers.push(() => makeCharacter(
  17095. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17096. {
  17097. side: {
  17098. height: math.unit(1.8, "feet"),
  17099. weight: math.unit(44, "lb"),
  17100. name: "Side",
  17101. image: {
  17102. source: "./media/characters/perseus/side.svg",
  17103. bottom: 0.21
  17104. }
  17105. },
  17106. },
  17107. [
  17108. {
  17109. name: "Normal",
  17110. height: math.unit(1.8, "feet"),
  17111. default: true
  17112. },
  17113. ]
  17114. ))
  17115. characterMakers.push(() => makeCharacter(
  17116. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17117. {
  17118. side: {
  17119. height: math.unit(4 + 2 / 12, "feet"),
  17120. weight: math.unit(20, "lb"),
  17121. name: "Side",
  17122. image: {
  17123. source: "./media/characters/remus/side.svg"
  17124. }
  17125. },
  17126. },
  17127. [
  17128. {
  17129. name: "Normal",
  17130. height: math.unit(4 + 2 / 12, "feet"),
  17131. default: true
  17132. },
  17133. ]
  17134. ))
  17135. characterMakers.push(() => makeCharacter(
  17136. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17137. {
  17138. front: {
  17139. height: math.unit(4 + 11 / 12, "feet"),
  17140. weight: math.unit(114, "lb"),
  17141. name: "Front",
  17142. image: {
  17143. source: "./media/characters/raf/front.svg",
  17144. bottom: 20.5 / 1863
  17145. }
  17146. },
  17147. side: {
  17148. height: math.unit(4 + 11 / 12, "feet"),
  17149. weight: math.unit(114, "lb"),
  17150. name: "Side",
  17151. image: {
  17152. source: "./media/characters/raf/side.svg",
  17153. bottom: 22 / 1822
  17154. }
  17155. },
  17156. },
  17157. [
  17158. {
  17159. name: "Micro",
  17160. height: math.unit(2, "inches")
  17161. },
  17162. {
  17163. name: "Normal",
  17164. height: math.unit(4 + 11 / 12, "feet"),
  17165. default: true
  17166. },
  17167. {
  17168. name: "Macro",
  17169. height: math.unit(70, "feet")
  17170. },
  17171. ]
  17172. ))
  17173. characterMakers.push(() => makeCharacter(
  17174. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17175. {
  17176. front: {
  17177. height: math.unit(1.5, "meters"),
  17178. weight: math.unit(68, "kg"),
  17179. name: "Front",
  17180. image: {
  17181. source: "./media/characters/liam-einarr/front.svg",
  17182. extra: 2822 / 2666
  17183. }
  17184. },
  17185. back: {
  17186. height: math.unit(1.5, "meters"),
  17187. weight: math.unit(68, "kg"),
  17188. name: "Back",
  17189. image: {
  17190. source: "./media/characters/liam-einarr/back.svg",
  17191. extra: 2822 / 2666,
  17192. bottom: 0.015
  17193. }
  17194. },
  17195. },
  17196. [
  17197. {
  17198. name: "Normal",
  17199. height: math.unit(1.5, "meters"),
  17200. default: true
  17201. },
  17202. {
  17203. name: "Macro",
  17204. height: math.unit(150, "meters")
  17205. },
  17206. {
  17207. name: "Megamacro",
  17208. height: math.unit(35, "km")
  17209. },
  17210. ]
  17211. ))
  17212. characterMakers.push(() => makeCharacter(
  17213. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17214. {
  17215. front: {
  17216. height: math.unit(6, "feet"),
  17217. weight: math.unit(75, "kg"),
  17218. name: "Front",
  17219. image: {
  17220. source: "./media/characters/linda/front.svg",
  17221. extra: 930 / 874,
  17222. bottom: 0.004
  17223. }
  17224. },
  17225. },
  17226. [
  17227. {
  17228. name: "Normal",
  17229. height: math.unit(6, "feet"),
  17230. default: true
  17231. },
  17232. ]
  17233. ))
  17234. characterMakers.push(() => makeCharacter(
  17235. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17236. {
  17237. front: {
  17238. height: math.unit(6 + 8 / 12, "feet"),
  17239. weight: math.unit(220, "lb"),
  17240. name: "Front",
  17241. image: {
  17242. source: "./media/characters/caylex/front.svg",
  17243. extra: 821 / 772,
  17244. bottom: 0.07
  17245. }
  17246. },
  17247. back: {
  17248. height: math.unit(6 + 8 / 12, "feet"),
  17249. weight: math.unit(220, "lb"),
  17250. name: "Back",
  17251. image: {
  17252. source: "./media/characters/caylex/back.svg",
  17253. extra: 821 / 772,
  17254. bottom: 0.022
  17255. }
  17256. },
  17257. hand: {
  17258. height: math.unit(1.25, "feet"),
  17259. name: "Hand",
  17260. image: {
  17261. source: "./media/characters/caylex/hand.svg"
  17262. }
  17263. },
  17264. foot: {
  17265. height: math.unit(1.6, "feet"),
  17266. name: "Foot",
  17267. image: {
  17268. source: "./media/characters/caylex/foot.svg"
  17269. }
  17270. },
  17271. armored: {
  17272. height: math.unit(6 + 8 / 12, "feet"),
  17273. weight: math.unit(250, "lb"),
  17274. name: "Armored",
  17275. image: {
  17276. source: "./media/characters/caylex/armored.svg",
  17277. extra: 1420 / 1310,
  17278. bottom: 0.045
  17279. }
  17280. },
  17281. },
  17282. [
  17283. {
  17284. name: "Normal",
  17285. height: math.unit(6 + 8 / 12, "feet"),
  17286. default: true
  17287. },
  17288. {
  17289. name: "Normal+",
  17290. height: math.unit(12, "feet")
  17291. },
  17292. ]
  17293. ))
  17294. characterMakers.push(() => makeCharacter(
  17295. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17296. {
  17297. front: {
  17298. height: math.unit(7 + 6 / 12, "feet"),
  17299. weight: math.unit(288, "lb"),
  17300. name: "Front",
  17301. image: {
  17302. source: "./media/characters/alana/front.svg",
  17303. extra: 679 / 653,
  17304. bottom: 22.5 / 701
  17305. }
  17306. },
  17307. },
  17308. [
  17309. {
  17310. name: "Normal",
  17311. height: math.unit(7 + 6 / 12, "feet")
  17312. },
  17313. {
  17314. name: "Large",
  17315. height: math.unit(50, "feet")
  17316. },
  17317. {
  17318. name: "Macro",
  17319. height: math.unit(100, "feet"),
  17320. default: true
  17321. },
  17322. {
  17323. name: "Macro+",
  17324. height: math.unit(200, "feet")
  17325. },
  17326. ]
  17327. ))
  17328. characterMakers.push(() => makeCharacter(
  17329. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17330. {
  17331. front: {
  17332. height: math.unit(6 + 1 / 12, "feet"),
  17333. weight: math.unit(210, "lb"),
  17334. name: "Front",
  17335. image: {
  17336. source: "./media/characters/hasani/front.svg",
  17337. extra: 244 / 232,
  17338. bottom: 0.01
  17339. }
  17340. },
  17341. back: {
  17342. height: math.unit(6 + 1 / 12, "feet"),
  17343. weight: math.unit(210, "lb"),
  17344. name: "Back",
  17345. image: {
  17346. source: "./media/characters/hasani/back.svg",
  17347. extra: 244 / 232,
  17348. bottom: 0.01
  17349. }
  17350. },
  17351. },
  17352. [
  17353. {
  17354. name: "Normal",
  17355. height: math.unit(6 + 1 / 12, "feet")
  17356. },
  17357. {
  17358. name: "Macro",
  17359. height: math.unit(175, "feet"),
  17360. default: true
  17361. },
  17362. ]
  17363. ))
  17364. characterMakers.push(() => makeCharacter(
  17365. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17366. {
  17367. front: {
  17368. height: math.unit(1.82, "meters"),
  17369. weight: math.unit(140, "lb"),
  17370. name: "Front",
  17371. image: {
  17372. source: "./media/characters/nita/front.svg",
  17373. extra: 2473 / 2363,
  17374. bottom: 0.01
  17375. }
  17376. },
  17377. },
  17378. [
  17379. {
  17380. name: "Normal",
  17381. height: math.unit(1.82, "m")
  17382. },
  17383. {
  17384. name: "Macro",
  17385. height: math.unit(300, "m")
  17386. },
  17387. {
  17388. name: "Mistake Canon",
  17389. height: math.unit(0.5, "miles"),
  17390. default: true
  17391. },
  17392. {
  17393. name: "Big Mistake",
  17394. height: math.unit(13, "miles")
  17395. },
  17396. {
  17397. name: "Playing God",
  17398. height: math.unit(2450, "miles")
  17399. },
  17400. ]
  17401. ))
  17402. characterMakers.push(() => makeCharacter(
  17403. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17404. {
  17405. front: {
  17406. height: math.unit(4, "feet"),
  17407. weight: math.unit(120, "lb"),
  17408. name: "Front",
  17409. image: {
  17410. source: "./media/characters/shiriko/front.svg",
  17411. extra: 970/934,
  17412. bottom: 5/975
  17413. }
  17414. },
  17415. },
  17416. [
  17417. {
  17418. name: "Normal",
  17419. height: math.unit(4, "feet"),
  17420. default: true
  17421. },
  17422. ]
  17423. ))
  17424. characterMakers.push(() => makeCharacter(
  17425. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17426. {
  17427. front: {
  17428. height: math.unit(6, "feet"),
  17429. name: "front",
  17430. image: {
  17431. source: "./media/characters/deja/front.svg",
  17432. extra: 926 / 840,
  17433. bottom: 0.07
  17434. }
  17435. },
  17436. },
  17437. [
  17438. {
  17439. name: "Planck Length",
  17440. height: math.unit(1.6e-35, "meters")
  17441. },
  17442. {
  17443. name: "Normal",
  17444. height: math.unit(30.48, "meters"),
  17445. default: true
  17446. },
  17447. {
  17448. name: "Universal",
  17449. height: math.unit(8.8e26, "meters")
  17450. },
  17451. ]
  17452. ))
  17453. characterMakers.push(() => makeCharacter(
  17454. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17455. {
  17456. side: {
  17457. height: math.unit(8, "feet"),
  17458. weight: math.unit(6300, "lb"),
  17459. name: "Side",
  17460. image: {
  17461. source: "./media/characters/anima/side.svg",
  17462. bottom: 0.035
  17463. }
  17464. },
  17465. },
  17466. [
  17467. {
  17468. name: "Normal",
  17469. height: math.unit(8, "feet"),
  17470. default: true
  17471. },
  17472. ]
  17473. ))
  17474. characterMakers.push(() => makeCharacter(
  17475. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17476. {
  17477. front: {
  17478. height: math.unit(8, "feet"),
  17479. weight: math.unit(350, "lb"),
  17480. name: "Front",
  17481. image: {
  17482. source: "./media/characters/bianca/front.svg",
  17483. extra: 234 / 225,
  17484. bottom: 0.03
  17485. }
  17486. },
  17487. },
  17488. [
  17489. {
  17490. name: "Normal",
  17491. height: math.unit(8, "feet"),
  17492. default: true
  17493. },
  17494. ]
  17495. ))
  17496. characterMakers.push(() => makeCharacter(
  17497. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17498. {
  17499. front: {
  17500. height: math.unit(6, "feet"),
  17501. weight: math.unit(150, "lb"),
  17502. name: "Front",
  17503. image: {
  17504. source: "./media/characters/adinia/front.svg",
  17505. extra: 1845 / 1672,
  17506. bottom: 0.02
  17507. }
  17508. },
  17509. back: {
  17510. height: math.unit(6, "feet"),
  17511. weight: math.unit(150, "lb"),
  17512. name: "Back",
  17513. image: {
  17514. source: "./media/characters/adinia/back.svg",
  17515. extra: 1845 / 1672,
  17516. bottom: 0.002
  17517. }
  17518. },
  17519. },
  17520. [
  17521. {
  17522. name: "Normal",
  17523. height: math.unit(11 + 5 / 12, "feet"),
  17524. default: true
  17525. },
  17526. ]
  17527. ))
  17528. characterMakers.push(() => makeCharacter(
  17529. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17530. {
  17531. front: {
  17532. height: math.unit(3, "meters"),
  17533. weight: math.unit(200, "kg"),
  17534. name: "Front",
  17535. image: {
  17536. source: "./media/characters/lykasa/front.svg",
  17537. extra: 1076 / 976,
  17538. bottom: 0.06
  17539. }
  17540. },
  17541. },
  17542. [
  17543. {
  17544. name: "Normal",
  17545. height: math.unit(3, "meters")
  17546. },
  17547. {
  17548. name: "Kaiju",
  17549. height: math.unit(120, "meters"),
  17550. default: true
  17551. },
  17552. {
  17553. name: "Mega Kaiju",
  17554. height: math.unit(240, "km")
  17555. },
  17556. {
  17557. name: "Giga Kaiju",
  17558. height: math.unit(400, "megameters")
  17559. },
  17560. {
  17561. name: "Tera Kaiju",
  17562. height: math.unit(800, "gigameters")
  17563. },
  17564. {
  17565. name: "Kaiju Dragon Goddess",
  17566. height: math.unit(26, "zettaparsecs")
  17567. },
  17568. ]
  17569. ))
  17570. characterMakers.push(() => makeCharacter(
  17571. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17572. {
  17573. side: {
  17574. height: math.unit(283 / 124 * 6, "feet"),
  17575. weight: math.unit(35000, "lb"),
  17576. name: "Side",
  17577. image: {
  17578. source: "./media/characters/malfaren/side.svg",
  17579. extra: 2500 / 1010,
  17580. bottom: 0.01
  17581. }
  17582. },
  17583. front: {
  17584. height: math.unit(22.36, "feet"),
  17585. weight: math.unit(35000, "lb"),
  17586. name: "Front",
  17587. image: {
  17588. source: "./media/characters/malfaren/front.svg",
  17589. extra: 1631 / 1476,
  17590. bottom: 0.01
  17591. }
  17592. },
  17593. maw: {
  17594. height: math.unit(6.9, "feet"),
  17595. name: "Maw",
  17596. image: {
  17597. source: "./media/characters/malfaren/maw.svg"
  17598. }
  17599. },
  17600. },
  17601. [
  17602. {
  17603. name: "Big",
  17604. height: math.unit(283 / 162 * 6, "feet"),
  17605. },
  17606. {
  17607. name: "Bigger",
  17608. height: math.unit(283 / 124 * 6, "feet")
  17609. },
  17610. {
  17611. name: "Massive",
  17612. height: math.unit(283 / 92 * 6, "feet"),
  17613. default: true
  17614. },
  17615. {
  17616. name: "👀💦",
  17617. height: math.unit(283 / 73 * 6, "feet"),
  17618. },
  17619. ]
  17620. ))
  17621. characterMakers.push(() => makeCharacter(
  17622. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17623. {
  17624. front: {
  17625. height: math.unit(1.7, "m"),
  17626. weight: math.unit(70, "kg"),
  17627. name: "Front",
  17628. image: {
  17629. source: "./media/characters/kernel/front.svg",
  17630. extra: 222 / 210,
  17631. bottom: 0.007
  17632. }
  17633. },
  17634. },
  17635. [
  17636. {
  17637. name: "Nano",
  17638. height: math.unit(17, "micrometers")
  17639. },
  17640. {
  17641. name: "Micro",
  17642. height: math.unit(1.7, "mm")
  17643. },
  17644. {
  17645. name: "Small",
  17646. height: math.unit(1.7, "cm")
  17647. },
  17648. {
  17649. name: "Normal",
  17650. height: math.unit(1.7, "m"),
  17651. default: true
  17652. },
  17653. ]
  17654. ))
  17655. characterMakers.push(() => makeCharacter(
  17656. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17657. {
  17658. front: {
  17659. height: math.unit(1.75, "meters"),
  17660. weight: math.unit(65, "kg"),
  17661. name: "Front",
  17662. image: {
  17663. source: "./media/characters/jayne-folest/front.svg",
  17664. extra: 2115 / 2007,
  17665. bottom: 0.02
  17666. }
  17667. },
  17668. back: {
  17669. height: math.unit(1.75, "meters"),
  17670. weight: math.unit(65, "kg"),
  17671. name: "Back",
  17672. image: {
  17673. source: "./media/characters/jayne-folest/back.svg",
  17674. extra: 2115 / 2007,
  17675. bottom: 0.005
  17676. }
  17677. },
  17678. frontClothed: {
  17679. height: math.unit(1.75, "meters"),
  17680. weight: math.unit(65, "kg"),
  17681. name: "Front (Clothed)",
  17682. image: {
  17683. source: "./media/characters/jayne-folest/front-clothed.svg",
  17684. extra: 2115 / 2007,
  17685. bottom: 0.035
  17686. }
  17687. },
  17688. hand: {
  17689. height: math.unit(1 / 1.260, "feet"),
  17690. name: "Hand",
  17691. image: {
  17692. source: "./media/characters/jayne-folest/hand.svg"
  17693. }
  17694. },
  17695. foot: {
  17696. height: math.unit(1 / 0.918, "feet"),
  17697. name: "Foot",
  17698. image: {
  17699. source: "./media/characters/jayne-folest/foot.svg"
  17700. }
  17701. },
  17702. },
  17703. [
  17704. {
  17705. name: "Micro",
  17706. height: math.unit(4, "cm")
  17707. },
  17708. {
  17709. name: "Normal",
  17710. height: math.unit(1.75, "meters")
  17711. },
  17712. {
  17713. name: "Macro",
  17714. height: math.unit(47.5, "meters"),
  17715. default: true
  17716. },
  17717. ]
  17718. ))
  17719. characterMakers.push(() => makeCharacter(
  17720. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17721. {
  17722. front: {
  17723. height: math.unit(180, "cm"),
  17724. weight: math.unit(70, "kg"),
  17725. name: "Front",
  17726. image: {
  17727. source: "./media/characters/algier/front.svg",
  17728. extra: 596 / 572,
  17729. bottom: 0.04
  17730. }
  17731. },
  17732. back: {
  17733. height: math.unit(180, "cm"),
  17734. weight: math.unit(70, "kg"),
  17735. name: "Back",
  17736. image: {
  17737. source: "./media/characters/algier/back.svg",
  17738. extra: 596 / 572,
  17739. bottom: 0.025
  17740. }
  17741. },
  17742. frontdressed: {
  17743. height: math.unit(180, "cm"),
  17744. weight: math.unit(150, "kg"),
  17745. name: "Front-dressed",
  17746. image: {
  17747. source: "./media/characters/algier/front-dressed.svg",
  17748. extra: 596 / 572,
  17749. bottom: 0.038
  17750. }
  17751. },
  17752. },
  17753. [
  17754. {
  17755. name: "Micro",
  17756. height: math.unit(5, "cm")
  17757. },
  17758. {
  17759. name: "Normal",
  17760. height: math.unit(180, "cm"),
  17761. default: true
  17762. },
  17763. {
  17764. name: "Macro",
  17765. height: math.unit(64, "m")
  17766. },
  17767. ]
  17768. ))
  17769. characterMakers.push(() => makeCharacter(
  17770. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17771. {
  17772. upright: {
  17773. height: math.unit(7, "feet"),
  17774. weight: math.unit(300, "lb"),
  17775. name: "Upright",
  17776. image: {
  17777. source: "./media/characters/pretzel/upright.svg",
  17778. extra: 534 / 522,
  17779. bottom: 0.065
  17780. }
  17781. },
  17782. sprawling: {
  17783. height: math.unit(3.75, "feet"),
  17784. weight: math.unit(300, "lb"),
  17785. name: "Sprawling",
  17786. image: {
  17787. source: "./media/characters/pretzel/sprawling.svg",
  17788. extra: 314 / 281,
  17789. bottom: 0.1
  17790. }
  17791. },
  17792. tongue: {
  17793. height: math.unit(2, "feet"),
  17794. name: "Tongue",
  17795. image: {
  17796. source: "./media/characters/pretzel/tongue.svg"
  17797. }
  17798. },
  17799. },
  17800. [
  17801. {
  17802. name: "Normal",
  17803. height: math.unit(7, "feet"),
  17804. default: true
  17805. },
  17806. {
  17807. name: "Oversized",
  17808. height: math.unit(15, "feet")
  17809. },
  17810. {
  17811. name: "Huge",
  17812. height: math.unit(30, "feet")
  17813. },
  17814. {
  17815. name: "Macro",
  17816. height: math.unit(250, "feet")
  17817. },
  17818. ]
  17819. ))
  17820. characterMakers.push(() => makeCharacter(
  17821. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17822. {
  17823. sideFront: {
  17824. height: math.unit(5 + 2 / 12, "feet"),
  17825. weight: math.unit(120, "lb"),
  17826. name: "Front Side",
  17827. image: {
  17828. source: "./media/characters/roxi/side-front.svg",
  17829. extra: 2924 / 2717,
  17830. bottom: 0.08
  17831. }
  17832. },
  17833. sideBack: {
  17834. height: math.unit(5 + 2 / 12, "feet"),
  17835. weight: math.unit(120, "lb"),
  17836. name: "Back Side",
  17837. image: {
  17838. source: "./media/characters/roxi/side-back.svg",
  17839. extra: 2904 / 2693,
  17840. bottom: 0.06
  17841. }
  17842. },
  17843. front: {
  17844. height: math.unit(5 + 2 / 12, "feet"),
  17845. weight: math.unit(120, "lb"),
  17846. name: "Front",
  17847. image: {
  17848. source: "./media/characters/roxi/front.svg",
  17849. extra: 2028 / 1907,
  17850. bottom: 0.01
  17851. }
  17852. },
  17853. frontAlt: {
  17854. height: math.unit(5 + 2 / 12, "feet"),
  17855. weight: math.unit(120, "lb"),
  17856. name: "Front (Alt)",
  17857. image: {
  17858. source: "./media/characters/roxi/front-alt.svg",
  17859. extra: 1828 / 1798,
  17860. bottom: 0.01
  17861. }
  17862. },
  17863. sitting: {
  17864. height: math.unit(2.8, "feet"),
  17865. weight: math.unit(120, "lb"),
  17866. name: "Sitting",
  17867. image: {
  17868. source: "./media/characters/roxi/sitting.svg",
  17869. extra: 2660 / 2462,
  17870. bottom: 0.1
  17871. }
  17872. },
  17873. },
  17874. [
  17875. {
  17876. name: "Normal",
  17877. height: math.unit(5 + 2 / 12, "feet"),
  17878. default: true
  17879. },
  17880. ]
  17881. ))
  17882. characterMakers.push(() => makeCharacter(
  17883. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17884. {
  17885. side: {
  17886. height: math.unit(55, "feet"),
  17887. weight: math.unit(153, "tons"),
  17888. name: "Side",
  17889. image: {
  17890. source: "./media/characters/shadow/side.svg",
  17891. extra: 701 / 628,
  17892. bottom: 0.02
  17893. }
  17894. },
  17895. flying: {
  17896. height: math.unit(145, "feet"),
  17897. weight: math.unit(153, "tons"),
  17898. name: "Flying",
  17899. image: {
  17900. source: "./media/characters/shadow/flying.svg"
  17901. }
  17902. },
  17903. },
  17904. [
  17905. {
  17906. name: "Normal",
  17907. height: math.unit(55, "feet"),
  17908. default: true
  17909. },
  17910. ]
  17911. ))
  17912. characterMakers.push(() => makeCharacter(
  17913. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17914. {
  17915. front: {
  17916. height: math.unit(6, "feet"),
  17917. weight: math.unit(200, "lb"),
  17918. name: "Front",
  17919. image: {
  17920. source: "./media/characters/marcie/front.svg",
  17921. extra: 960 / 876,
  17922. bottom: 58 / 1017.87
  17923. }
  17924. },
  17925. },
  17926. [
  17927. {
  17928. name: "Macro",
  17929. height: math.unit(1, "mile"),
  17930. default: true
  17931. },
  17932. ]
  17933. ))
  17934. characterMakers.push(() => makeCharacter(
  17935. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17936. {
  17937. front: {
  17938. height: math.unit(7, "feet"),
  17939. weight: math.unit(200, "lb"),
  17940. name: "Front",
  17941. image: {
  17942. source: "./media/characters/kachina/front.svg",
  17943. extra: 1290.68 / 1119,
  17944. bottom: 36.5 / 1327.18
  17945. }
  17946. },
  17947. },
  17948. [
  17949. {
  17950. name: "Normal",
  17951. height: math.unit(7, "feet"),
  17952. default: true
  17953. },
  17954. ]
  17955. ))
  17956. characterMakers.push(() => makeCharacter(
  17957. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17958. {
  17959. looking: {
  17960. height: math.unit(2, "meters"),
  17961. weight: math.unit(300, "kg"),
  17962. name: "Looking",
  17963. image: {
  17964. source: "./media/characters/kash/looking.svg",
  17965. extra: 474 / 344,
  17966. bottom: 0.03
  17967. }
  17968. },
  17969. side: {
  17970. height: math.unit(2, "meters"),
  17971. weight: math.unit(300, "kg"),
  17972. name: "Side",
  17973. image: {
  17974. source: "./media/characters/kash/side.svg",
  17975. extra: 302 / 251,
  17976. bottom: 0.03
  17977. }
  17978. },
  17979. front: {
  17980. height: math.unit(2, "meters"),
  17981. weight: math.unit(300, "kg"),
  17982. name: "Front",
  17983. image: {
  17984. source: "./media/characters/kash/front.svg",
  17985. extra: 495 / 360,
  17986. bottom: 0.015
  17987. }
  17988. },
  17989. },
  17990. [
  17991. {
  17992. name: "Normal",
  17993. height: math.unit(2, "meters"),
  17994. default: true
  17995. },
  17996. {
  17997. name: "Big",
  17998. height: math.unit(3, "meters")
  17999. },
  18000. {
  18001. name: "Large",
  18002. height: math.unit(5, "meters")
  18003. },
  18004. ]
  18005. ))
  18006. characterMakers.push(() => makeCharacter(
  18007. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18008. {
  18009. feeding: {
  18010. height: math.unit(6.7, "feet"),
  18011. weight: math.unit(350, "lb"),
  18012. name: "Feeding",
  18013. image: {
  18014. source: "./media/characters/lalim/feeding.svg",
  18015. }
  18016. },
  18017. },
  18018. [
  18019. {
  18020. name: "Normal",
  18021. height: math.unit(6.7, "feet"),
  18022. default: true
  18023. },
  18024. ]
  18025. ))
  18026. characterMakers.push(() => makeCharacter(
  18027. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18028. {
  18029. front: {
  18030. height: math.unit(9.5, "feet"),
  18031. weight: math.unit(600, "lb"),
  18032. name: "Front",
  18033. image: {
  18034. source: "./media/characters/de'vout/front.svg",
  18035. extra: 1443 / 1328,
  18036. bottom: 0.025
  18037. }
  18038. },
  18039. back: {
  18040. height: math.unit(9.5, "feet"),
  18041. weight: math.unit(600, "lb"),
  18042. name: "Back",
  18043. image: {
  18044. source: "./media/characters/de'vout/back.svg",
  18045. extra: 1443 / 1328
  18046. }
  18047. },
  18048. frontDressed: {
  18049. height: math.unit(9.5, "feet"),
  18050. weight: math.unit(600, "lb"),
  18051. name: "Front (Dressed",
  18052. image: {
  18053. source: "./media/characters/de'vout/front-dressed.svg",
  18054. extra: 1443 / 1328,
  18055. bottom: 0.025
  18056. }
  18057. },
  18058. backDressed: {
  18059. height: math.unit(9.5, "feet"),
  18060. weight: math.unit(600, "lb"),
  18061. name: "Back (Dressed",
  18062. image: {
  18063. source: "./media/characters/de'vout/back-dressed.svg",
  18064. extra: 1443 / 1328
  18065. }
  18066. },
  18067. },
  18068. [
  18069. {
  18070. name: "Normal",
  18071. height: math.unit(9.5, "feet"),
  18072. default: true
  18073. },
  18074. ]
  18075. ))
  18076. characterMakers.push(() => makeCharacter(
  18077. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18078. {
  18079. front: {
  18080. height: math.unit(8, "feet"),
  18081. weight: math.unit(225, "lb"),
  18082. name: "Front",
  18083. image: {
  18084. source: "./media/characters/talana/front.svg",
  18085. extra: 1410 / 1300,
  18086. bottom: 0.015
  18087. }
  18088. },
  18089. frontDressed: {
  18090. height: math.unit(8, "feet"),
  18091. weight: math.unit(225, "lb"),
  18092. name: "Front (Dressed",
  18093. image: {
  18094. source: "./media/characters/talana/front-dressed.svg",
  18095. extra: 1410 / 1300,
  18096. bottom: 0.015
  18097. }
  18098. },
  18099. },
  18100. [
  18101. {
  18102. name: "Normal",
  18103. height: math.unit(8, "feet"),
  18104. default: true
  18105. },
  18106. ]
  18107. ))
  18108. characterMakers.push(() => makeCharacter(
  18109. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18110. {
  18111. side: {
  18112. height: math.unit(7.2, "feet"),
  18113. weight: math.unit(150, "lb"),
  18114. name: "Side",
  18115. image: {
  18116. source: "./media/characters/xeauvok/side.svg",
  18117. extra: 1975 / 1523,
  18118. bottom: 0.07
  18119. }
  18120. },
  18121. },
  18122. [
  18123. {
  18124. name: "Normal",
  18125. height: math.unit(7.2, "feet"),
  18126. default: true
  18127. },
  18128. ]
  18129. ))
  18130. characterMakers.push(() => makeCharacter(
  18131. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18132. {
  18133. side: {
  18134. height: math.unit(10, "feet"),
  18135. weight: math.unit(900, "kg"),
  18136. name: "Side",
  18137. image: {
  18138. source: "./media/characters/zara/side.svg",
  18139. extra: 504 / 498
  18140. }
  18141. },
  18142. },
  18143. [
  18144. {
  18145. name: "Normal",
  18146. height: math.unit(10, "feet"),
  18147. default: true
  18148. },
  18149. ]
  18150. ))
  18151. characterMakers.push(() => makeCharacter(
  18152. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18153. {
  18154. side: {
  18155. height: math.unit(6, "feet"),
  18156. weight: math.unit(150, "lb"),
  18157. name: "Side",
  18158. image: {
  18159. source: "./media/characters/richard-dragon/side.svg",
  18160. extra: 845 / 340,
  18161. bottom: 0.017
  18162. }
  18163. },
  18164. maw: {
  18165. height: math.unit(2.97, "feet"),
  18166. name: "Maw",
  18167. image: {
  18168. source: "./media/characters/richard-dragon/maw.svg"
  18169. }
  18170. },
  18171. },
  18172. [
  18173. ]
  18174. ))
  18175. characterMakers.push(() => makeCharacter(
  18176. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18177. {
  18178. front: {
  18179. height: math.unit(4, "feet"),
  18180. weight: math.unit(100, "lb"),
  18181. name: "Front",
  18182. image: {
  18183. source: "./media/characters/richard-smeargle/front.svg",
  18184. extra: 2952 / 2820,
  18185. bottom: 0.028
  18186. }
  18187. },
  18188. },
  18189. [
  18190. {
  18191. name: "Normal",
  18192. height: math.unit(4, "feet"),
  18193. default: true
  18194. },
  18195. {
  18196. name: "Dynamax",
  18197. height: math.unit(20, "meters")
  18198. },
  18199. ]
  18200. ))
  18201. characterMakers.push(() => makeCharacter(
  18202. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18203. {
  18204. front: {
  18205. height: math.unit(6, "feet"),
  18206. weight: math.unit(110, "lb"),
  18207. name: "Front",
  18208. image: {
  18209. source: "./media/characters/klay/front.svg",
  18210. extra: 962 / 883,
  18211. bottom: 0.04
  18212. }
  18213. },
  18214. back: {
  18215. height: math.unit(6, "feet"),
  18216. weight: math.unit(110, "lb"),
  18217. name: "Back",
  18218. image: {
  18219. source: "./media/characters/klay/back.svg",
  18220. extra: 962 / 883
  18221. }
  18222. },
  18223. beans: {
  18224. height: math.unit(1.15, "feet"),
  18225. name: "Beans",
  18226. image: {
  18227. source: "./media/characters/klay/beans.svg"
  18228. }
  18229. },
  18230. },
  18231. [
  18232. {
  18233. name: "Micro",
  18234. height: math.unit(6, "inches")
  18235. },
  18236. {
  18237. name: "Mini",
  18238. height: math.unit(3, "feet")
  18239. },
  18240. {
  18241. name: "Normal",
  18242. height: math.unit(6, "feet"),
  18243. default: true
  18244. },
  18245. {
  18246. name: "Big",
  18247. height: math.unit(25, "feet")
  18248. },
  18249. {
  18250. name: "Macro",
  18251. height: math.unit(100, "feet")
  18252. },
  18253. {
  18254. name: "Megamacro",
  18255. height: math.unit(400, "feet")
  18256. },
  18257. ]
  18258. ))
  18259. characterMakers.push(() => makeCharacter(
  18260. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18261. {
  18262. front: {
  18263. height: math.unit(6, "feet"),
  18264. weight: math.unit(160, "lb"),
  18265. name: "Front",
  18266. image: {
  18267. source: "./media/characters/marcus/front.svg",
  18268. extra: 734 / 676,
  18269. bottom: 0.03
  18270. }
  18271. },
  18272. },
  18273. [
  18274. {
  18275. name: "Little",
  18276. height: math.unit(6, "feet")
  18277. },
  18278. {
  18279. name: "Normal",
  18280. height: math.unit(110, "feet"),
  18281. default: true
  18282. },
  18283. {
  18284. name: "Macro",
  18285. height: math.unit(250, "feet")
  18286. },
  18287. {
  18288. name: "Megamacro",
  18289. height: math.unit(1000, "feet")
  18290. },
  18291. ]
  18292. ))
  18293. characterMakers.push(() => makeCharacter(
  18294. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18295. {
  18296. front: {
  18297. height: math.unit(7, "feet"),
  18298. weight: math.unit(275, "lb"),
  18299. name: "Front",
  18300. image: {
  18301. source: "./media/characters/claude-delroute/front.svg",
  18302. extra: 230 / 214,
  18303. bottom: 0.007
  18304. }
  18305. },
  18306. side: {
  18307. height: math.unit(7, "feet"),
  18308. weight: math.unit(275, "lb"),
  18309. name: "Side",
  18310. image: {
  18311. source: "./media/characters/claude-delroute/side.svg",
  18312. extra: 222 / 214,
  18313. bottom: 0.01
  18314. }
  18315. },
  18316. back: {
  18317. height: math.unit(7, "feet"),
  18318. weight: math.unit(275, "lb"),
  18319. name: "Back",
  18320. image: {
  18321. source: "./media/characters/claude-delroute/back.svg",
  18322. extra: 230 / 214,
  18323. bottom: 0.015
  18324. }
  18325. },
  18326. maw: {
  18327. height: math.unit(0.6407, "meters"),
  18328. name: "Maw",
  18329. image: {
  18330. source: "./media/characters/claude-delroute/maw.svg"
  18331. }
  18332. },
  18333. },
  18334. [
  18335. {
  18336. name: "Normal",
  18337. height: math.unit(7, "feet"),
  18338. default: true
  18339. },
  18340. {
  18341. name: "Lorge",
  18342. height: math.unit(20, "feet")
  18343. },
  18344. ]
  18345. ))
  18346. characterMakers.push(() => makeCharacter(
  18347. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18348. {
  18349. front: {
  18350. height: math.unit(8 + 4 / 12, "feet"),
  18351. weight: math.unit(600, "lb"),
  18352. name: "Front",
  18353. image: {
  18354. source: "./media/characters/dragonien/front.svg",
  18355. extra: 100 / 94,
  18356. bottom: 3.3 / 103.3445
  18357. }
  18358. },
  18359. back: {
  18360. height: math.unit(8 + 4 / 12, "feet"),
  18361. weight: math.unit(600, "lb"),
  18362. name: "Back",
  18363. image: {
  18364. source: "./media/characters/dragonien/back.svg",
  18365. extra: 776 / 746,
  18366. bottom: 6.4 / 782.0616
  18367. }
  18368. },
  18369. foot: {
  18370. height: math.unit(1.54, "feet"),
  18371. name: "Foot",
  18372. image: {
  18373. source: "./media/characters/dragonien/foot.svg",
  18374. }
  18375. },
  18376. },
  18377. [
  18378. {
  18379. name: "Normal",
  18380. height: math.unit(8 + 4 / 12, "feet"),
  18381. default: true
  18382. },
  18383. {
  18384. name: "Macro",
  18385. height: math.unit(200, "feet")
  18386. },
  18387. {
  18388. name: "Megamacro",
  18389. height: math.unit(1, "mile")
  18390. },
  18391. {
  18392. name: "Gigamacro",
  18393. height: math.unit(1000, "miles")
  18394. },
  18395. ]
  18396. ))
  18397. characterMakers.push(() => makeCharacter(
  18398. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18399. {
  18400. front: {
  18401. height: math.unit(5 + 2 / 12, "feet"),
  18402. weight: math.unit(110, "lb"),
  18403. name: "Front",
  18404. image: {
  18405. source: "./media/characters/desta/front.svg",
  18406. extra: 767 / 726,
  18407. bottom: 11.7 / 779
  18408. }
  18409. },
  18410. back: {
  18411. height: math.unit(5 + 2 / 12, "feet"),
  18412. weight: math.unit(110, "lb"),
  18413. name: "Back",
  18414. image: {
  18415. source: "./media/characters/desta/back.svg",
  18416. extra: 777 / 728,
  18417. bottom: 6 / 784
  18418. }
  18419. },
  18420. frontAlt: {
  18421. height: math.unit(5 + 2 / 12, "feet"),
  18422. weight: math.unit(110, "lb"),
  18423. name: "Front",
  18424. image: {
  18425. source: "./media/characters/desta/front-alt.svg",
  18426. extra: 1482 / 1417
  18427. }
  18428. },
  18429. side: {
  18430. height: math.unit(5 + 2 / 12, "feet"),
  18431. weight: math.unit(110, "lb"),
  18432. name: "Side",
  18433. image: {
  18434. source: "./media/characters/desta/side.svg",
  18435. extra: 2579 / 2491,
  18436. bottom: 0.053
  18437. }
  18438. },
  18439. },
  18440. [
  18441. {
  18442. name: "Micro",
  18443. height: math.unit(6, "inches")
  18444. },
  18445. {
  18446. name: "Normal",
  18447. height: math.unit(5 + 2 / 12, "feet"),
  18448. default: true
  18449. },
  18450. {
  18451. name: "Macro",
  18452. height: math.unit(62, "feet")
  18453. },
  18454. {
  18455. name: "Megamacro",
  18456. height: math.unit(1800, "feet")
  18457. },
  18458. ]
  18459. ))
  18460. characterMakers.push(() => makeCharacter(
  18461. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18462. {
  18463. front: {
  18464. height: math.unit(10, "feet"),
  18465. weight: math.unit(700, "lb"),
  18466. name: "Front",
  18467. image: {
  18468. source: "./media/characters/storm-alystar/front.svg",
  18469. extra: 2112 / 1898,
  18470. bottom: 0.034
  18471. }
  18472. },
  18473. },
  18474. [
  18475. {
  18476. name: "Micro",
  18477. height: math.unit(3.5, "inches")
  18478. },
  18479. {
  18480. name: "Normal",
  18481. height: math.unit(10, "feet"),
  18482. default: true
  18483. },
  18484. {
  18485. name: "Macro",
  18486. height: math.unit(400, "feet")
  18487. },
  18488. {
  18489. name: "Deific",
  18490. height: math.unit(60, "miles")
  18491. },
  18492. ]
  18493. ))
  18494. characterMakers.push(() => makeCharacter(
  18495. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18496. {
  18497. front: {
  18498. height: math.unit(2.35, "meters"),
  18499. weight: math.unit(119, "kg"),
  18500. name: "Front",
  18501. image: {
  18502. source: "./media/characters/ilia/front.svg",
  18503. extra: 1285 / 1255,
  18504. bottom: 0.06
  18505. }
  18506. },
  18507. },
  18508. [
  18509. {
  18510. name: "Normal",
  18511. height: math.unit(2.35, "meters")
  18512. },
  18513. {
  18514. name: "Macro",
  18515. height: math.unit(140, "meters"),
  18516. default: true
  18517. },
  18518. {
  18519. name: "Megamacro",
  18520. height: math.unit(100, "miles")
  18521. },
  18522. ]
  18523. ))
  18524. characterMakers.push(() => makeCharacter(
  18525. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18526. {
  18527. front: {
  18528. height: math.unit(6 + 5 / 12, "feet"),
  18529. weight: math.unit(190, "lb"),
  18530. name: "Front",
  18531. image: {
  18532. source: "./media/characters/kingdead/front.svg",
  18533. extra: 1228 / 1177
  18534. }
  18535. },
  18536. },
  18537. [
  18538. {
  18539. name: "Micro",
  18540. height: math.unit(7, "inches")
  18541. },
  18542. {
  18543. name: "Normal",
  18544. height: math.unit(6 + 5 / 12, "feet")
  18545. },
  18546. {
  18547. name: "Macro",
  18548. height: math.unit(150, "feet"),
  18549. default: true
  18550. },
  18551. {
  18552. name: "Megamacro",
  18553. height: math.unit(200, "miles")
  18554. },
  18555. ]
  18556. ))
  18557. characterMakers.push(() => makeCharacter(
  18558. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18559. {
  18560. front: {
  18561. height: math.unit(8, "feet"),
  18562. weight: math.unit(600, "lb"),
  18563. name: "Front",
  18564. image: {
  18565. source: "./media/characters/kyrehx/front.svg",
  18566. extra: 1195 / 1095,
  18567. bottom: 0.034
  18568. }
  18569. },
  18570. },
  18571. [
  18572. {
  18573. name: "Micro",
  18574. height: math.unit(2, "inches")
  18575. },
  18576. {
  18577. name: "Normal",
  18578. height: math.unit(8, "feet"),
  18579. default: true
  18580. },
  18581. {
  18582. name: "Macro",
  18583. height: math.unit(255, "feet")
  18584. },
  18585. ]
  18586. ))
  18587. characterMakers.push(() => makeCharacter(
  18588. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18589. {
  18590. front: {
  18591. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18592. weight: math.unit(184, "lb"),
  18593. name: "Front",
  18594. image: {
  18595. source: "./media/characters/xang/front.svg",
  18596. extra: 845 / 755
  18597. }
  18598. },
  18599. },
  18600. [
  18601. {
  18602. name: "Normal",
  18603. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18604. default: true
  18605. },
  18606. {
  18607. name: "Macro",
  18608. height: math.unit(0.935 * 146, "feet")
  18609. },
  18610. {
  18611. name: "Megamacro",
  18612. height: math.unit(0.935 * 3, "miles")
  18613. },
  18614. ]
  18615. ))
  18616. characterMakers.push(() => makeCharacter(
  18617. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18618. {
  18619. frontDressed: {
  18620. height: math.unit(5 + 7 / 12, "feet"),
  18621. weight: math.unit(140, "lb"),
  18622. name: "Front (Dressed)",
  18623. image: {
  18624. source: "./media/characters/doc-weardno/front-dressed.svg",
  18625. extra: 263 / 234
  18626. }
  18627. },
  18628. backDressed: {
  18629. height: math.unit(5 + 7 / 12, "feet"),
  18630. weight: math.unit(140, "lb"),
  18631. name: "Back (Dressed)",
  18632. image: {
  18633. source: "./media/characters/doc-weardno/back-dressed.svg",
  18634. extra: 266 / 238
  18635. }
  18636. },
  18637. front: {
  18638. height: math.unit(5 + 7 / 12, "feet"),
  18639. weight: math.unit(140, "lb"),
  18640. name: "Front",
  18641. image: {
  18642. source: "./media/characters/doc-weardno/front.svg",
  18643. extra: 254 / 233
  18644. }
  18645. },
  18646. },
  18647. [
  18648. {
  18649. name: "Micro",
  18650. height: math.unit(3, "inches")
  18651. },
  18652. {
  18653. name: "Normal",
  18654. height: math.unit(5 + 7 / 12, "feet"),
  18655. default: true
  18656. },
  18657. {
  18658. name: "Macro",
  18659. height: math.unit(25, "feet")
  18660. },
  18661. {
  18662. name: "Megamacro",
  18663. height: math.unit(2, "miles")
  18664. },
  18665. ]
  18666. ))
  18667. characterMakers.push(() => makeCharacter(
  18668. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18669. {
  18670. front: {
  18671. height: math.unit(6 + 2 / 12, "feet"),
  18672. weight: math.unit(153, "lb"),
  18673. name: "Front",
  18674. image: {
  18675. source: "./media/characters/seth-whilst/front.svg",
  18676. bottom: 0.07
  18677. }
  18678. },
  18679. },
  18680. [
  18681. {
  18682. name: "Micro",
  18683. height: math.unit(5, "inches")
  18684. },
  18685. {
  18686. name: "Normal",
  18687. height: math.unit(6 + 2 / 12, "feet"),
  18688. default: true
  18689. },
  18690. ]
  18691. ))
  18692. characterMakers.push(() => makeCharacter(
  18693. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18694. {
  18695. front: {
  18696. height: math.unit(3, "inches"),
  18697. weight: math.unit(8, "grams"),
  18698. name: "Front",
  18699. image: {
  18700. source: "./media/characters/pocket-jabari/front.svg",
  18701. extra: 1024 / 974,
  18702. bottom: 0.039
  18703. }
  18704. },
  18705. },
  18706. [
  18707. {
  18708. name: "Minimicro",
  18709. height: math.unit(8, "mm")
  18710. },
  18711. {
  18712. name: "Micro",
  18713. height: math.unit(3, "inches"),
  18714. default: true
  18715. },
  18716. {
  18717. name: "Normal",
  18718. height: math.unit(3, "feet")
  18719. },
  18720. ]
  18721. ))
  18722. characterMakers.push(() => makeCharacter(
  18723. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18724. {
  18725. front: {
  18726. height: math.unit(15, "feet"),
  18727. weight: math.unit(3280, "lb"),
  18728. name: "Front",
  18729. image: {
  18730. source: "./media/characters/sapphy/front.svg",
  18731. extra: 671 / 577,
  18732. bottom: 0.085
  18733. }
  18734. },
  18735. back: {
  18736. height: math.unit(15, "feet"),
  18737. weight: math.unit(3280, "lb"),
  18738. name: "Back",
  18739. image: {
  18740. source: "./media/characters/sapphy/back.svg",
  18741. extra: 631 / 607,
  18742. bottom: 0.045
  18743. }
  18744. },
  18745. },
  18746. [
  18747. {
  18748. name: "Normal",
  18749. height: math.unit(15, "feet")
  18750. },
  18751. {
  18752. name: "Casual Macro",
  18753. height: math.unit(120, "feet")
  18754. },
  18755. {
  18756. name: "Macro",
  18757. height: math.unit(2150, "feet"),
  18758. default: true
  18759. },
  18760. {
  18761. name: "Megamacro",
  18762. height: math.unit(8, "miles")
  18763. },
  18764. {
  18765. name: "Galaxy Mom",
  18766. height: math.unit(6, "megalightyears")
  18767. },
  18768. ]
  18769. ))
  18770. characterMakers.push(() => makeCharacter(
  18771. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18772. {
  18773. front: {
  18774. height: math.unit(6, "feet"),
  18775. weight: math.unit(170, "lb"),
  18776. name: "Front",
  18777. image: {
  18778. source: "./media/characters/kiro/front.svg",
  18779. extra: 1064 / 1012,
  18780. bottom: 0.052
  18781. }
  18782. },
  18783. },
  18784. [
  18785. {
  18786. name: "Micro",
  18787. height: math.unit(6, "inches")
  18788. },
  18789. {
  18790. name: "Normal",
  18791. height: math.unit(6, "feet"),
  18792. default: true
  18793. },
  18794. {
  18795. name: "Macro",
  18796. height: math.unit(72, "feet")
  18797. },
  18798. ]
  18799. ))
  18800. characterMakers.push(() => makeCharacter(
  18801. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18802. {
  18803. front: {
  18804. height: math.unit(5 + 9 / 12, "feet"),
  18805. weight: math.unit(175, "lb"),
  18806. name: "Front",
  18807. image: {
  18808. source: "./media/characters/irishfox/front.svg",
  18809. extra: 1912 / 1680,
  18810. bottom: 0.02
  18811. }
  18812. },
  18813. },
  18814. [
  18815. {
  18816. name: "Nano",
  18817. height: math.unit(1, "mm")
  18818. },
  18819. {
  18820. name: "Micro",
  18821. height: math.unit(2, "inches")
  18822. },
  18823. {
  18824. name: "Normal",
  18825. height: math.unit(5 + 9 / 12, "feet"),
  18826. default: true
  18827. },
  18828. {
  18829. name: "Macro",
  18830. height: math.unit(45, "feet")
  18831. },
  18832. ]
  18833. ))
  18834. characterMakers.push(() => makeCharacter(
  18835. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18836. {
  18837. front: {
  18838. height: math.unit(6 + 1 / 12, "feet"),
  18839. weight: math.unit(75, "lb"),
  18840. name: "Front",
  18841. image: {
  18842. source: "./media/characters/aronai-sieyes/front.svg",
  18843. extra: 1556 / 1480,
  18844. bottom: 0.015
  18845. }
  18846. },
  18847. side: {
  18848. height: math.unit(6 + 1 / 12, "feet"),
  18849. weight: math.unit(75, "lb"),
  18850. name: "Side",
  18851. image: {
  18852. source: "./media/characters/aronai-sieyes/side.svg",
  18853. extra: 1433 / 1390,
  18854. bottom: 0.0393
  18855. }
  18856. },
  18857. back: {
  18858. height: math.unit(6 + 1 / 12, "feet"),
  18859. weight: math.unit(75, "lb"),
  18860. name: "Back",
  18861. image: {
  18862. source: "./media/characters/aronai-sieyes/back.svg",
  18863. extra: 1544 / 1494,
  18864. bottom: 0.02
  18865. }
  18866. },
  18867. frontClothed: {
  18868. height: math.unit(6 + 1 / 12, "feet"),
  18869. weight: math.unit(75, "lb"),
  18870. name: "Front (Clothed)",
  18871. image: {
  18872. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18873. extra: 1582 / 1527
  18874. }
  18875. },
  18876. feral: {
  18877. height: math.unit(18, "feet"),
  18878. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18879. name: "Feral",
  18880. image: {
  18881. source: "./media/characters/aronai-sieyes/feral.svg",
  18882. extra: 1530 / 1240,
  18883. bottom: 0.035
  18884. }
  18885. },
  18886. },
  18887. [
  18888. {
  18889. name: "Micro",
  18890. height: math.unit(2, "inches")
  18891. },
  18892. {
  18893. name: "Normal",
  18894. height: math.unit(6 + 1 / 12, "feet"),
  18895. default: true
  18896. }
  18897. ]
  18898. ))
  18899. characterMakers.push(() => makeCharacter(
  18900. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18901. {
  18902. front: {
  18903. height: math.unit(12, "feet"),
  18904. weight: math.unit(410, "kg"),
  18905. name: "Front",
  18906. image: {
  18907. source: "./media/characters/xuna/front.svg",
  18908. extra: 2184 / 1980
  18909. }
  18910. },
  18911. side: {
  18912. height: math.unit(12, "feet"),
  18913. weight: math.unit(410, "kg"),
  18914. name: "Side",
  18915. image: {
  18916. source: "./media/characters/xuna/side.svg",
  18917. extra: 2184 / 1980
  18918. }
  18919. },
  18920. back: {
  18921. height: math.unit(12, "feet"),
  18922. weight: math.unit(410, "kg"),
  18923. name: "Back",
  18924. image: {
  18925. source: "./media/characters/xuna/back.svg",
  18926. extra: 2184 / 1980
  18927. }
  18928. },
  18929. },
  18930. [
  18931. {
  18932. name: "Nano glow",
  18933. height: math.unit(10, "nm")
  18934. },
  18935. {
  18936. name: "Micro floof",
  18937. height: math.unit(0.3, "m")
  18938. },
  18939. {
  18940. name: "Huggable softy boi",
  18941. height: math.unit(3.6576, "m"),
  18942. default: true
  18943. },
  18944. {
  18945. name: "Admirable floof",
  18946. height: math.unit(80, "meters")
  18947. },
  18948. {
  18949. name: "Gentle macro",
  18950. height: math.unit(300, "meters")
  18951. },
  18952. {
  18953. name: "Very careful floof",
  18954. height: math.unit(3200, "meters")
  18955. },
  18956. {
  18957. name: "The mega floof",
  18958. height: math.unit(36000, "meters")
  18959. },
  18960. {
  18961. name: "Giga-fur-Wicker",
  18962. height: math.unit(4800000, "meters")
  18963. },
  18964. {
  18965. name: "Licky world",
  18966. height: math.unit(20000000, "meters")
  18967. },
  18968. {
  18969. name: "Floofy cyan sun",
  18970. height: math.unit(1500000000, "meters")
  18971. },
  18972. {
  18973. name: "Milky Wicker",
  18974. height: math.unit(1000000000000000000000, "meters")
  18975. },
  18976. {
  18977. name: "The observing Wicker",
  18978. height: math.unit(999999999999999999999999999, "meters")
  18979. },
  18980. ]
  18981. ))
  18982. characterMakers.push(() => makeCharacter(
  18983. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18984. {
  18985. front: {
  18986. height: math.unit(5 + 9 / 12, "feet"),
  18987. weight: math.unit(150, "lb"),
  18988. name: "Front",
  18989. image: {
  18990. source: "./media/characters/arokha-sieyes/front.svg",
  18991. extra: 1425 / 1284,
  18992. bottom: 0.05
  18993. }
  18994. },
  18995. },
  18996. [
  18997. {
  18998. name: "Normal",
  18999. height: math.unit(5 + 9 / 12, "feet")
  19000. },
  19001. {
  19002. name: "Macro",
  19003. height: math.unit(30, "meters"),
  19004. default: true
  19005. },
  19006. ]
  19007. ))
  19008. characterMakers.push(() => makeCharacter(
  19009. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19010. {
  19011. front: {
  19012. height: math.unit(6, "feet"),
  19013. weight: math.unit(180, "lb"),
  19014. name: "Front",
  19015. image: {
  19016. source: "./media/characters/arokh-sieyes/front.svg",
  19017. extra: 1830 / 1769,
  19018. bottom: 0.01
  19019. }
  19020. },
  19021. },
  19022. [
  19023. {
  19024. name: "Normal",
  19025. height: math.unit(6, "feet")
  19026. },
  19027. {
  19028. name: "Macro",
  19029. height: math.unit(30, "meters"),
  19030. default: true
  19031. },
  19032. ]
  19033. ))
  19034. characterMakers.push(() => makeCharacter(
  19035. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19036. {
  19037. side: {
  19038. height: math.unit(13 + 1 / 12, "feet"),
  19039. weight: math.unit(8.5, "tonnes"),
  19040. name: "Side",
  19041. image: {
  19042. source: "./media/characters/goldeneye/side.svg",
  19043. extra: 1182 / 778,
  19044. bottom: 0.067
  19045. }
  19046. },
  19047. paw: {
  19048. height: math.unit(3.4, "feet"),
  19049. name: "Paw",
  19050. image: {
  19051. source: "./media/characters/goldeneye/paw.svg"
  19052. }
  19053. },
  19054. },
  19055. [
  19056. {
  19057. name: "Normal",
  19058. height: math.unit(13 + 1 / 12, "feet"),
  19059. default: true
  19060. },
  19061. ]
  19062. ))
  19063. characterMakers.push(() => makeCharacter(
  19064. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19065. {
  19066. front: {
  19067. height: math.unit(6 + 1 / 12, "feet"),
  19068. weight: math.unit(210, "lb"),
  19069. name: "Front",
  19070. image: {
  19071. source: "./media/characters/leonardo-lycheborne/front.svg",
  19072. extra: 390 / 365,
  19073. bottom: 0.032
  19074. }
  19075. },
  19076. side: {
  19077. height: math.unit(6 + 1 / 12, "feet"),
  19078. weight: math.unit(210, "lb"),
  19079. name: "Side",
  19080. image: {
  19081. source: "./media/characters/leonardo-lycheborne/side.svg",
  19082. extra: 390 / 365,
  19083. bottom: 0.005
  19084. }
  19085. },
  19086. back: {
  19087. height: math.unit(6 + 1 / 12, "feet"),
  19088. weight: math.unit(210, "lb"),
  19089. name: "Back",
  19090. image: {
  19091. source: "./media/characters/leonardo-lycheborne/back.svg",
  19092. extra: 392 / 366,
  19093. bottom: 0.01
  19094. }
  19095. },
  19096. hand: {
  19097. height: math.unit(1.08, "feet"),
  19098. name: "Hand",
  19099. image: {
  19100. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19101. }
  19102. },
  19103. foot: {
  19104. height: math.unit(1.32, "feet"),
  19105. name: "Foot",
  19106. image: {
  19107. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19108. }
  19109. },
  19110. were: {
  19111. height: math.unit(20, "feet"),
  19112. weight: math.unit(7800, "lb"),
  19113. name: "Were",
  19114. image: {
  19115. source: "./media/characters/leonardo-lycheborne/were.svg",
  19116. extra: 308 / 294,
  19117. bottom: 0.048
  19118. }
  19119. },
  19120. feral: {
  19121. height: math.unit(7.5, "feet"),
  19122. weight: math.unit(600, "lb"),
  19123. name: "Feral",
  19124. image: {
  19125. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19126. extra: 210 / 186,
  19127. bottom: 0.108
  19128. }
  19129. },
  19130. taur: {
  19131. height: math.unit(11, "feet"),
  19132. weight: math.unit(3300, "lb"),
  19133. name: "Taur",
  19134. image: {
  19135. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19136. extra: 320 / 303,
  19137. bottom: 0.025
  19138. }
  19139. },
  19140. barghest: {
  19141. height: math.unit(11, "feet"),
  19142. weight: math.unit(1300, "lb"),
  19143. name: "Barghest",
  19144. image: {
  19145. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19146. extra: 323 / 302,
  19147. bottom: 0.027
  19148. }
  19149. },
  19150. dick: {
  19151. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19152. name: "Dick",
  19153. image: {
  19154. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19155. }
  19156. },
  19157. dickWere: {
  19158. height: math.unit((20) / 3.8, "feet"),
  19159. name: "Dick (Were)",
  19160. image: {
  19161. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19162. }
  19163. },
  19164. },
  19165. [
  19166. {
  19167. name: "Normal",
  19168. height: math.unit(6 + 1 / 12, "feet"),
  19169. default: true
  19170. },
  19171. ]
  19172. ))
  19173. characterMakers.push(() => makeCharacter(
  19174. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19175. {
  19176. front: {
  19177. height: math.unit(10, "feet"),
  19178. weight: math.unit(350, "lb"),
  19179. name: "Front",
  19180. image: {
  19181. source: "./media/characters/jet/front.svg",
  19182. extra: 2050 / 1980,
  19183. bottom: 0.013
  19184. }
  19185. },
  19186. back: {
  19187. height: math.unit(10, "feet"),
  19188. weight: math.unit(350, "lb"),
  19189. name: "Back",
  19190. image: {
  19191. source: "./media/characters/jet/back.svg",
  19192. extra: 2050 / 1980,
  19193. bottom: 0.013
  19194. }
  19195. },
  19196. },
  19197. [
  19198. {
  19199. name: "Micro",
  19200. height: math.unit(6, "inches")
  19201. },
  19202. {
  19203. name: "Normal",
  19204. height: math.unit(10, "feet"),
  19205. default: true
  19206. },
  19207. {
  19208. name: "Macro",
  19209. height: math.unit(100, "feet")
  19210. },
  19211. ]
  19212. ))
  19213. characterMakers.push(() => makeCharacter(
  19214. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19215. {
  19216. front: {
  19217. height: math.unit(15, "feet"),
  19218. weight: math.unit(2800, "lb"),
  19219. name: "Front",
  19220. image: {
  19221. source: "./media/characters/tanarath/front.svg",
  19222. extra: 2392 / 2220,
  19223. bottom: 0.03
  19224. }
  19225. },
  19226. back: {
  19227. height: math.unit(15, "feet"),
  19228. weight: math.unit(2800, "lb"),
  19229. name: "Back",
  19230. image: {
  19231. source: "./media/characters/tanarath/back.svg",
  19232. extra: 2392 / 2220,
  19233. bottom: 0.03
  19234. }
  19235. },
  19236. },
  19237. [
  19238. {
  19239. name: "Normal",
  19240. height: math.unit(15, "feet"),
  19241. default: true
  19242. },
  19243. ]
  19244. ))
  19245. characterMakers.push(() => makeCharacter(
  19246. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19247. {
  19248. front: {
  19249. height: math.unit(7 + 1 / 12, "feet"),
  19250. weight: math.unit(175, "lb"),
  19251. name: "Front",
  19252. image: {
  19253. source: "./media/characters/patty-cattybatty/front.svg",
  19254. extra: 908 / 874,
  19255. bottom: 0.025
  19256. }
  19257. },
  19258. },
  19259. [
  19260. {
  19261. name: "Micro",
  19262. height: math.unit(1, "inch")
  19263. },
  19264. {
  19265. name: "Normal",
  19266. height: math.unit(7 + 1 / 12, "feet")
  19267. },
  19268. {
  19269. name: "Mini Macro",
  19270. height: math.unit(155, "feet")
  19271. },
  19272. {
  19273. name: "Macro",
  19274. height: math.unit(1077, "feet")
  19275. },
  19276. {
  19277. name: "Mega Macro",
  19278. height: math.unit(47650, "feet"),
  19279. default: true
  19280. },
  19281. {
  19282. name: "Giga Macro",
  19283. height: math.unit(440, "miles")
  19284. },
  19285. {
  19286. name: "Tera Macro",
  19287. height: math.unit(8700, "miles")
  19288. },
  19289. {
  19290. name: "Planetary Macro",
  19291. height: math.unit(32700, "miles")
  19292. },
  19293. {
  19294. name: "Solar Macro",
  19295. height: math.unit(550000, "miles")
  19296. },
  19297. {
  19298. name: "Celestial Macro",
  19299. height: math.unit(2.5, "AU")
  19300. },
  19301. ]
  19302. ))
  19303. characterMakers.push(() => makeCharacter(
  19304. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19305. {
  19306. front: {
  19307. height: math.unit(4 + 5 / 12, "feet"),
  19308. weight: math.unit(90, "lb"),
  19309. name: "Front",
  19310. image: {
  19311. source: "./media/characters/cappu/front.svg",
  19312. extra: 1247 / 1152,
  19313. bottom: 0.012
  19314. }
  19315. },
  19316. },
  19317. [
  19318. {
  19319. name: "Normal",
  19320. height: math.unit(4 + 5 / 12, "feet"),
  19321. default: true
  19322. },
  19323. ]
  19324. ))
  19325. characterMakers.push(() => makeCharacter(
  19326. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19327. {
  19328. frontDressed: {
  19329. height: math.unit(70, "cm"),
  19330. weight: math.unit(6, "kg"),
  19331. name: "Front (Dressed)",
  19332. image: {
  19333. source: "./media/characters/sebi/front-dressed.svg",
  19334. extra: 713.5 / 686.5,
  19335. bottom: 0.003
  19336. }
  19337. },
  19338. front: {
  19339. height: math.unit(70, "cm"),
  19340. weight: math.unit(5, "kg"),
  19341. name: "Front",
  19342. image: {
  19343. source: "./media/characters/sebi/front.svg",
  19344. extra: 713.5 / 686.5,
  19345. bottom: 0.003
  19346. }
  19347. }
  19348. },
  19349. [
  19350. {
  19351. name: "Normal",
  19352. height: math.unit(70, "cm"),
  19353. default: true
  19354. },
  19355. {
  19356. name: "Macro",
  19357. height: math.unit(8, "meters")
  19358. },
  19359. ]
  19360. ))
  19361. characterMakers.push(() => makeCharacter(
  19362. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19363. {
  19364. front: {
  19365. height: math.unit(6, "feet"),
  19366. weight: math.unit(150, "lb"),
  19367. name: "Front",
  19368. image: {
  19369. source: "./media/characters/typhek/front.svg",
  19370. extra: 1948 / 1929,
  19371. bottom: 0.025
  19372. }
  19373. },
  19374. side: {
  19375. height: math.unit(6, "feet"),
  19376. weight: math.unit(150, "lb"),
  19377. name: "Side",
  19378. image: {
  19379. source: "./media/characters/typhek/side.svg",
  19380. extra: 2034 / 2010,
  19381. bottom: 0.003
  19382. }
  19383. },
  19384. back: {
  19385. height: math.unit(6, "feet"),
  19386. weight: math.unit(150, "lb"),
  19387. name: "Back",
  19388. image: {
  19389. source: "./media/characters/typhek/back.svg",
  19390. extra: 2005 / 1978,
  19391. bottom: 0.004
  19392. }
  19393. },
  19394. palm: {
  19395. height: math.unit(1.2, "feet"),
  19396. name: "Palm",
  19397. image: {
  19398. source: "./media/characters/typhek/palm.svg"
  19399. }
  19400. },
  19401. fist: {
  19402. height: math.unit(1.1, "feet"),
  19403. name: "Fist",
  19404. image: {
  19405. source: "./media/characters/typhek/fist.svg"
  19406. }
  19407. },
  19408. foot: {
  19409. height: math.unit(1.57, "feet"),
  19410. name: "Foot",
  19411. image: {
  19412. source: "./media/characters/typhek/foot.svg"
  19413. }
  19414. },
  19415. sole: {
  19416. height: math.unit(2.05, "feet"),
  19417. name: "Sole",
  19418. image: {
  19419. source: "./media/characters/typhek/sole.svg"
  19420. }
  19421. },
  19422. },
  19423. [
  19424. {
  19425. name: "Macro",
  19426. height: math.unit(40, "stories"),
  19427. default: true
  19428. },
  19429. {
  19430. name: "Megamacro",
  19431. height: math.unit(1, "mile")
  19432. },
  19433. {
  19434. name: "Gigamacro",
  19435. height: math.unit(4000, "solarradii")
  19436. },
  19437. {
  19438. name: "Universal",
  19439. height: math.unit(1.1, "universes")
  19440. }
  19441. ]
  19442. ))
  19443. characterMakers.push(() => makeCharacter(
  19444. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19445. {
  19446. side: {
  19447. height: math.unit(5 + 7 / 12, "feet"),
  19448. weight: math.unit(150, "lb"),
  19449. name: "Side",
  19450. image: {
  19451. source: "./media/characters/kassy/side.svg",
  19452. extra: 1280 / 1225,
  19453. bottom: 0.002
  19454. }
  19455. },
  19456. front: {
  19457. height: math.unit(5 + 7 / 12, "feet"),
  19458. weight: math.unit(150, "lb"),
  19459. name: "Front",
  19460. image: {
  19461. source: "./media/characters/kassy/front.svg",
  19462. extra: 1280 / 1225,
  19463. bottom: 0.025
  19464. }
  19465. },
  19466. back: {
  19467. height: math.unit(5 + 7 / 12, "feet"),
  19468. weight: math.unit(150, "lb"),
  19469. name: "Back",
  19470. image: {
  19471. source: "./media/characters/kassy/back.svg",
  19472. extra: 1280 / 1225,
  19473. bottom: 0.002
  19474. }
  19475. },
  19476. foot: {
  19477. height: math.unit(1.266, "feet"),
  19478. name: "Foot",
  19479. image: {
  19480. source: "./media/characters/kassy/foot.svg"
  19481. }
  19482. },
  19483. },
  19484. [
  19485. {
  19486. name: "Normal",
  19487. height: math.unit(5 + 7 / 12, "feet")
  19488. },
  19489. {
  19490. name: "Macro",
  19491. height: math.unit(137, "feet"),
  19492. default: true
  19493. },
  19494. {
  19495. name: "Megamacro",
  19496. height: math.unit(1, "mile")
  19497. },
  19498. ]
  19499. ))
  19500. characterMakers.push(() => makeCharacter(
  19501. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19502. {
  19503. front: {
  19504. height: math.unit(6 + 1 / 12, "feet"),
  19505. weight: math.unit(200, "lb"),
  19506. name: "Front",
  19507. image: {
  19508. source: "./media/characters/neil/front.svg",
  19509. extra: 1326 / 1250,
  19510. bottom: 0.023
  19511. }
  19512. },
  19513. },
  19514. [
  19515. {
  19516. name: "Normal",
  19517. height: math.unit(6 + 1 / 12, "feet"),
  19518. default: true
  19519. },
  19520. {
  19521. name: "Macro",
  19522. height: math.unit(200, "feet")
  19523. },
  19524. ]
  19525. ))
  19526. characterMakers.push(() => makeCharacter(
  19527. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19528. {
  19529. front: {
  19530. height: math.unit(5 + 9 / 12, "feet"),
  19531. weight: math.unit(190, "lb"),
  19532. name: "Front",
  19533. image: {
  19534. source: "./media/characters/atticus/front.svg",
  19535. extra: 2934 / 2785,
  19536. bottom: 0.025
  19537. }
  19538. },
  19539. },
  19540. [
  19541. {
  19542. name: "Normal",
  19543. height: math.unit(5 + 9 / 12, "feet"),
  19544. default: true
  19545. },
  19546. {
  19547. name: "Macro",
  19548. height: math.unit(180, "feet")
  19549. },
  19550. ]
  19551. ))
  19552. characterMakers.push(() => makeCharacter(
  19553. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19554. {
  19555. side: {
  19556. height: math.unit(9, "feet"),
  19557. weight: math.unit(650, "lb"),
  19558. name: "Side",
  19559. image: {
  19560. source: "./media/characters/milo/side.svg",
  19561. extra: 2644 / 2310,
  19562. bottom: 0.032
  19563. }
  19564. },
  19565. },
  19566. [
  19567. {
  19568. name: "Normal",
  19569. height: math.unit(9, "feet"),
  19570. default: true
  19571. },
  19572. {
  19573. name: "Macro",
  19574. height: math.unit(300, "feet")
  19575. },
  19576. ]
  19577. ))
  19578. characterMakers.push(() => makeCharacter(
  19579. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19580. {
  19581. side: {
  19582. height: math.unit(8, "meters"),
  19583. weight: math.unit(90000, "kg"),
  19584. name: "Side",
  19585. image: {
  19586. source: "./media/characters/ijzer/side.svg",
  19587. extra: 2756 / 1600,
  19588. bottom: 0.01
  19589. }
  19590. },
  19591. },
  19592. [
  19593. {
  19594. name: "Small",
  19595. height: math.unit(3, "meters")
  19596. },
  19597. {
  19598. name: "Normal",
  19599. height: math.unit(8, "meters"),
  19600. default: true
  19601. },
  19602. {
  19603. name: "Normal+",
  19604. height: math.unit(10, "meters")
  19605. },
  19606. {
  19607. name: "Bigger",
  19608. height: math.unit(24, "meters")
  19609. },
  19610. {
  19611. name: "Huge",
  19612. height: math.unit(80, "meters")
  19613. },
  19614. ]
  19615. ))
  19616. characterMakers.push(() => makeCharacter(
  19617. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19618. {
  19619. front: {
  19620. height: math.unit(6 + 2 / 12, "feet"),
  19621. weight: math.unit(153, "lb"),
  19622. name: "Front",
  19623. image: {
  19624. source: "./media/characters/luca-cervicum/front.svg",
  19625. extra: 370 / 327,
  19626. bottom: 0.015
  19627. }
  19628. },
  19629. back: {
  19630. height: math.unit(6 + 2 / 12, "feet"),
  19631. weight: math.unit(153, "lb"),
  19632. name: "Back",
  19633. image: {
  19634. source: "./media/characters/luca-cervicum/back.svg",
  19635. extra: 367 / 333,
  19636. bottom: 0.005
  19637. }
  19638. },
  19639. frontGear: {
  19640. height: math.unit(6 + 2 / 12, "feet"),
  19641. weight: math.unit(173, "lb"),
  19642. name: "Front (Gear)",
  19643. image: {
  19644. source: "./media/characters/luca-cervicum/front-gear.svg",
  19645. extra: 377 / 333,
  19646. bottom: 0.006
  19647. }
  19648. },
  19649. },
  19650. [
  19651. {
  19652. name: "Normal",
  19653. height: math.unit(6 + 2 / 12, "feet"),
  19654. default: true
  19655. },
  19656. ]
  19657. ))
  19658. characterMakers.push(() => makeCharacter(
  19659. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19660. {
  19661. front: {
  19662. height: math.unit(6 + 1 / 12, "feet"),
  19663. weight: math.unit(304, "lb"),
  19664. name: "Front",
  19665. image: {
  19666. source: "./media/characters/oliver/front.svg",
  19667. extra: 157 / 143,
  19668. bottom: 0.08
  19669. }
  19670. },
  19671. },
  19672. [
  19673. {
  19674. name: "Normal",
  19675. height: math.unit(6 + 1 / 12, "feet"),
  19676. default: true
  19677. },
  19678. ]
  19679. ))
  19680. characterMakers.push(() => makeCharacter(
  19681. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19682. {
  19683. front: {
  19684. height: math.unit(5 + 7 / 12, "feet"),
  19685. weight: math.unit(140, "lb"),
  19686. name: "Front",
  19687. image: {
  19688. source: "./media/characters/shane/front.svg",
  19689. extra: 304 / 289,
  19690. bottom: 0.005
  19691. }
  19692. },
  19693. },
  19694. [
  19695. {
  19696. name: "Normal",
  19697. height: math.unit(5 + 7 / 12, "feet"),
  19698. default: true
  19699. },
  19700. ]
  19701. ))
  19702. characterMakers.push(() => makeCharacter(
  19703. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19704. {
  19705. front: {
  19706. height: math.unit(5 + 9 / 12, "feet"),
  19707. weight: math.unit(178, "lb"),
  19708. name: "Front",
  19709. image: {
  19710. source: "./media/characters/shin/front.svg",
  19711. extra: 159 / 151,
  19712. bottom: 0.015
  19713. }
  19714. },
  19715. },
  19716. [
  19717. {
  19718. name: "Normal",
  19719. height: math.unit(5 + 9 / 12, "feet"),
  19720. default: true
  19721. },
  19722. ]
  19723. ))
  19724. characterMakers.push(() => makeCharacter(
  19725. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19726. {
  19727. front: {
  19728. height: math.unit(5 + 10 / 12, "feet"),
  19729. weight: math.unit(168, "lb"),
  19730. name: "Front",
  19731. image: {
  19732. source: "./media/characters/xerxes/front.svg",
  19733. extra: 282 / 260,
  19734. bottom: 0.045
  19735. }
  19736. },
  19737. },
  19738. [
  19739. {
  19740. name: "Normal",
  19741. height: math.unit(5 + 10 / 12, "feet"),
  19742. default: true
  19743. },
  19744. ]
  19745. ))
  19746. characterMakers.push(() => makeCharacter(
  19747. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19748. {
  19749. front: {
  19750. height: math.unit(6 + 7 / 12, "feet"),
  19751. weight: math.unit(208, "lb"),
  19752. name: "Front",
  19753. image: {
  19754. source: "./media/characters/chaska/front.svg",
  19755. extra: 332 / 319,
  19756. bottom: 0.015
  19757. }
  19758. },
  19759. },
  19760. [
  19761. {
  19762. name: "Normal",
  19763. height: math.unit(6 + 7 / 12, "feet"),
  19764. default: true
  19765. },
  19766. ]
  19767. ))
  19768. characterMakers.push(() => makeCharacter(
  19769. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19770. {
  19771. front: {
  19772. height: math.unit(5 + 8 / 12, "feet"),
  19773. weight: math.unit(208, "lb"),
  19774. name: "Front",
  19775. image: {
  19776. source: "./media/characters/enuk/front.svg",
  19777. extra: 437 / 406,
  19778. bottom: 0.02
  19779. }
  19780. },
  19781. },
  19782. [
  19783. {
  19784. name: "Normal",
  19785. height: math.unit(5 + 8 / 12, "feet"),
  19786. default: true
  19787. },
  19788. ]
  19789. ))
  19790. characterMakers.push(() => makeCharacter(
  19791. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19792. {
  19793. front: {
  19794. height: math.unit(5 + 10 / 12, "feet"),
  19795. weight: math.unit(252, "lb"),
  19796. name: "Front",
  19797. image: {
  19798. source: "./media/characters/bruun/front.svg",
  19799. extra: 197 / 187,
  19800. bottom: 0.012
  19801. }
  19802. },
  19803. },
  19804. [
  19805. {
  19806. name: "Normal",
  19807. height: math.unit(5 + 10 / 12, "feet"),
  19808. default: true
  19809. },
  19810. ]
  19811. ))
  19812. characterMakers.push(() => makeCharacter(
  19813. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19814. {
  19815. front: {
  19816. height: math.unit(6 + 10 / 12, "feet"),
  19817. weight: math.unit(255, "lb"),
  19818. name: "Front",
  19819. image: {
  19820. source: "./media/characters/alexeev/front.svg",
  19821. extra: 213 / 200,
  19822. bottom: 0.05
  19823. }
  19824. },
  19825. },
  19826. [
  19827. {
  19828. name: "Normal",
  19829. height: math.unit(6 + 10 / 12, "feet"),
  19830. default: true
  19831. },
  19832. ]
  19833. ))
  19834. characterMakers.push(() => makeCharacter(
  19835. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19836. {
  19837. front: {
  19838. height: math.unit(2 + 8 / 12, "feet"),
  19839. weight: math.unit(22, "lb"),
  19840. name: "Front",
  19841. image: {
  19842. source: "./media/characters/evelyn/front.svg",
  19843. extra: 208 / 180
  19844. }
  19845. },
  19846. },
  19847. [
  19848. {
  19849. name: "Normal",
  19850. height: math.unit(2 + 8 / 12, "feet"),
  19851. default: true
  19852. },
  19853. ]
  19854. ))
  19855. characterMakers.push(() => makeCharacter(
  19856. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19857. {
  19858. front: {
  19859. height: math.unit(5 + 9 / 12, "feet"),
  19860. weight: math.unit(139, "lb"),
  19861. name: "Front",
  19862. image: {
  19863. source: "./media/characters/inca/front.svg",
  19864. extra: 294 / 291,
  19865. bottom: 0.03
  19866. }
  19867. },
  19868. },
  19869. [
  19870. {
  19871. name: "Normal",
  19872. height: math.unit(5 + 9 / 12, "feet"),
  19873. default: true
  19874. },
  19875. ]
  19876. ))
  19877. characterMakers.push(() => makeCharacter(
  19878. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19879. {
  19880. front: {
  19881. height: math.unit(5 + 1 / 12, "feet"),
  19882. weight: math.unit(84, "lb"),
  19883. name: "Front",
  19884. image: {
  19885. source: "./media/characters/magdalene/front.svg",
  19886. extra: 293 / 273
  19887. }
  19888. },
  19889. },
  19890. [
  19891. {
  19892. name: "Normal",
  19893. height: math.unit(5 + 1 / 12, "feet"),
  19894. default: true
  19895. },
  19896. ]
  19897. ))
  19898. characterMakers.push(() => makeCharacter(
  19899. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19900. {
  19901. front: {
  19902. height: math.unit(6 + 3 / 12, "feet"),
  19903. weight: math.unit(185, "lb"),
  19904. name: "Front",
  19905. image: {
  19906. source: "./media/characters/mera/front.svg",
  19907. extra: 291 / 277,
  19908. bottom: 0.03
  19909. }
  19910. },
  19911. },
  19912. [
  19913. {
  19914. name: "Normal",
  19915. height: math.unit(6 + 3 / 12, "feet"),
  19916. default: true
  19917. },
  19918. ]
  19919. ))
  19920. characterMakers.push(() => makeCharacter(
  19921. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19922. {
  19923. front: {
  19924. height: math.unit(6 + 7 / 12, "feet"),
  19925. weight: math.unit(160, "lb"),
  19926. name: "Front",
  19927. image: {
  19928. source: "./media/characters/ceres/front.svg",
  19929. extra: 1023 / 950,
  19930. bottom: 0.027
  19931. }
  19932. },
  19933. back: {
  19934. height: math.unit(6 + 7 / 12, "feet"),
  19935. weight: math.unit(160, "lb"),
  19936. name: "Back",
  19937. image: {
  19938. source: "./media/characters/ceres/back.svg",
  19939. extra: 1023 / 950
  19940. }
  19941. },
  19942. },
  19943. [
  19944. {
  19945. name: "Normal",
  19946. height: math.unit(6 + 7 / 12, "feet"),
  19947. default: true
  19948. },
  19949. ]
  19950. ))
  19951. characterMakers.push(() => makeCharacter(
  19952. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19953. {
  19954. front: {
  19955. height: math.unit(5 + 10 / 12, "feet"),
  19956. weight: math.unit(150, "lb"),
  19957. name: "Front",
  19958. image: {
  19959. source: "./media/characters/kris/front.svg",
  19960. extra: 885 / 803,
  19961. bottom: 0.03
  19962. }
  19963. },
  19964. },
  19965. [
  19966. {
  19967. name: "Normal",
  19968. height: math.unit(5 + 10 / 12, "feet"),
  19969. default: true
  19970. },
  19971. ]
  19972. ))
  19973. characterMakers.push(() => makeCharacter(
  19974. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19975. {
  19976. front: {
  19977. height: math.unit(7, "feet"),
  19978. weight: math.unit(120, "kg"),
  19979. name: "Front",
  19980. image: {
  19981. source: "./media/characters/taluthus/front.svg",
  19982. extra: 903 / 833,
  19983. bottom: 0.015
  19984. }
  19985. },
  19986. },
  19987. [
  19988. {
  19989. name: "Normal",
  19990. height: math.unit(7, "feet"),
  19991. default: true
  19992. },
  19993. {
  19994. name: "Macro",
  19995. height: math.unit(300, "feet")
  19996. },
  19997. ]
  19998. ))
  19999. characterMakers.push(() => makeCharacter(
  20000. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20001. {
  20002. front: {
  20003. height: math.unit(5 + 9 / 12, "feet"),
  20004. weight: math.unit(145, "lb"),
  20005. name: "Front",
  20006. image: {
  20007. source: "./media/characters/dawn/front.svg",
  20008. extra: 2094 / 2016,
  20009. bottom: 0.025
  20010. }
  20011. },
  20012. back: {
  20013. height: math.unit(5 + 9 / 12, "feet"),
  20014. weight: math.unit(160, "lb"),
  20015. name: "Back",
  20016. image: {
  20017. source: "./media/characters/dawn/back.svg",
  20018. extra: 2112 / 2080,
  20019. bottom: 0.005
  20020. }
  20021. },
  20022. },
  20023. [
  20024. {
  20025. name: "Normal",
  20026. height: math.unit(6 + 7 / 12, "feet"),
  20027. default: true
  20028. },
  20029. ]
  20030. ))
  20031. characterMakers.push(() => makeCharacter(
  20032. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20033. {
  20034. anthro: {
  20035. height: math.unit(8 + 3 / 12, "feet"),
  20036. weight: math.unit(450, "lb"),
  20037. name: "Anthro",
  20038. image: {
  20039. source: "./media/characters/arador/anthro.svg",
  20040. extra: 1835 / 1718,
  20041. bottom: 0.025
  20042. }
  20043. },
  20044. feral: {
  20045. height: math.unit(4, "feet"),
  20046. weight: math.unit(200, "lb"),
  20047. name: "Feral",
  20048. image: {
  20049. source: "./media/characters/arador/feral.svg",
  20050. extra: 1683 / 1514,
  20051. bottom: 0.07
  20052. }
  20053. },
  20054. },
  20055. [
  20056. {
  20057. name: "Normal",
  20058. height: math.unit(8 + 3 / 12, "feet")
  20059. },
  20060. {
  20061. name: "Macro",
  20062. height: math.unit(82.5, "feet"),
  20063. default: true
  20064. },
  20065. ]
  20066. ))
  20067. characterMakers.push(() => makeCharacter(
  20068. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20069. {
  20070. front: {
  20071. height: math.unit(5 + 10 / 12, "feet"),
  20072. weight: math.unit(125, "lb"),
  20073. name: "Front",
  20074. image: {
  20075. source: "./media/characters/dharsi/front.svg",
  20076. extra: 716 / 630,
  20077. bottom: 0.035
  20078. }
  20079. },
  20080. },
  20081. [
  20082. {
  20083. name: "Nano",
  20084. height: math.unit(100, "nm")
  20085. },
  20086. {
  20087. name: "Micro",
  20088. height: math.unit(2, "inches")
  20089. },
  20090. {
  20091. name: "Normal",
  20092. height: math.unit(5 + 10 / 12, "feet"),
  20093. default: true
  20094. },
  20095. {
  20096. name: "Macro",
  20097. height: math.unit(1000, "feet")
  20098. },
  20099. {
  20100. name: "Megamacro",
  20101. height: math.unit(10, "miles")
  20102. },
  20103. {
  20104. name: "Gigamacro",
  20105. height: math.unit(3000, "miles")
  20106. },
  20107. {
  20108. name: "Teramacro",
  20109. height: math.unit(500000, "miles")
  20110. },
  20111. {
  20112. name: "Teramacro+",
  20113. height: math.unit(30, "galaxies")
  20114. },
  20115. ]
  20116. ))
  20117. characterMakers.push(() => makeCharacter(
  20118. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20119. {
  20120. front: {
  20121. height: math.unit(6, "feet"),
  20122. weight: math.unit(150, "lb"),
  20123. name: "Front",
  20124. image: {
  20125. source: "./media/characters/deathy/front.svg",
  20126. extra: 1552 / 1463,
  20127. bottom: 0.025
  20128. }
  20129. },
  20130. side: {
  20131. height: math.unit(6, "feet"),
  20132. weight: math.unit(150, "lb"),
  20133. name: "Side",
  20134. image: {
  20135. source: "./media/characters/deathy/side.svg",
  20136. extra: 1604 / 1455,
  20137. bottom: 0.025
  20138. }
  20139. },
  20140. back: {
  20141. height: math.unit(6, "feet"),
  20142. weight: math.unit(150, "lb"),
  20143. name: "Back",
  20144. image: {
  20145. source: "./media/characters/deathy/back.svg",
  20146. extra: 1580 / 1463,
  20147. bottom: 0.005
  20148. }
  20149. },
  20150. },
  20151. [
  20152. {
  20153. name: "Micro",
  20154. height: math.unit(5, "millimeters")
  20155. },
  20156. {
  20157. name: "Normal",
  20158. height: math.unit(6 + 5 / 12, "feet"),
  20159. default: true
  20160. },
  20161. ]
  20162. ))
  20163. characterMakers.push(() => makeCharacter(
  20164. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20165. {
  20166. front: {
  20167. height: math.unit(16, "feet"),
  20168. weight: math.unit(4000, "lb"),
  20169. name: "Front",
  20170. image: {
  20171. source: "./media/characters/juniper/front.svg",
  20172. bottom: 0.04
  20173. }
  20174. },
  20175. },
  20176. [
  20177. {
  20178. name: "Normal",
  20179. height: math.unit(16, "feet"),
  20180. default: true
  20181. },
  20182. ]
  20183. ))
  20184. characterMakers.push(() => makeCharacter(
  20185. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20186. {
  20187. front: {
  20188. height: math.unit(6, "feet"),
  20189. weight: math.unit(150, "lb"),
  20190. name: "Front",
  20191. image: {
  20192. source: "./media/characters/hipster/front.svg",
  20193. extra: 1312 / 1209,
  20194. bottom: 0.025
  20195. }
  20196. },
  20197. back: {
  20198. height: math.unit(6, "feet"),
  20199. weight: math.unit(150, "lb"),
  20200. name: "Back",
  20201. image: {
  20202. source: "./media/characters/hipster/back.svg",
  20203. extra: 1281 / 1196,
  20204. bottom: 0.01
  20205. }
  20206. },
  20207. },
  20208. [
  20209. {
  20210. name: "Micro",
  20211. height: math.unit(1, "mm")
  20212. },
  20213. {
  20214. name: "Normal",
  20215. height: math.unit(4, "inches"),
  20216. default: true
  20217. },
  20218. {
  20219. name: "Macro",
  20220. height: math.unit(500, "feet")
  20221. },
  20222. {
  20223. name: "Megamacro",
  20224. height: math.unit(1000, "miles")
  20225. },
  20226. ]
  20227. ))
  20228. characterMakers.push(() => makeCharacter(
  20229. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20230. {
  20231. front: {
  20232. height: math.unit(6, "feet"),
  20233. weight: math.unit(150, "lb"),
  20234. name: "Front",
  20235. image: {
  20236. source: "./media/characters/tendirmuldr/front.svg",
  20237. extra: 1878 / 1772,
  20238. bottom: 0.015
  20239. }
  20240. },
  20241. },
  20242. [
  20243. {
  20244. name: "Megamacro",
  20245. height: math.unit(1500, "miles"),
  20246. default: true
  20247. },
  20248. ]
  20249. ))
  20250. characterMakers.push(() => makeCharacter(
  20251. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20252. {
  20253. front: {
  20254. height: math.unit(14, "feet"),
  20255. weight: math.unit(12000, "lb"),
  20256. name: "Front",
  20257. image: {
  20258. source: "./media/characters/mort/front.svg",
  20259. extra: 365 / 318,
  20260. bottom: 0.01
  20261. }
  20262. },
  20263. side: {
  20264. height: math.unit(14, "feet"),
  20265. weight: math.unit(12000, "lb"),
  20266. name: "Side",
  20267. image: {
  20268. source: "./media/characters/mort/side.svg",
  20269. extra: 365 / 318,
  20270. bottom: 0.052
  20271. },
  20272. default: true
  20273. },
  20274. back: {
  20275. height: math.unit(14, "feet"),
  20276. weight: math.unit(12000, "lb"),
  20277. name: "Back",
  20278. image: {
  20279. source: "./media/characters/mort/back.svg",
  20280. extra: 371 / 332,
  20281. bottom: 0.18
  20282. }
  20283. },
  20284. },
  20285. [
  20286. {
  20287. name: "Normal",
  20288. height: math.unit(14, "feet"),
  20289. default: true
  20290. },
  20291. ]
  20292. ))
  20293. characterMakers.push(() => makeCharacter(
  20294. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20295. {
  20296. front: {
  20297. height: math.unit(8, "feet"),
  20298. weight: math.unit(1, "ton"),
  20299. name: "Front",
  20300. image: {
  20301. source: "./media/characters/lycoa/front.svg",
  20302. extra: 1875 / 1789,
  20303. bottom: 0.022
  20304. }
  20305. },
  20306. back: {
  20307. height: math.unit(8, "feet"),
  20308. weight: math.unit(1, "ton"),
  20309. name: "Back",
  20310. image: {
  20311. source: "./media/characters/lycoa/back.svg",
  20312. extra: 1835 / 1781,
  20313. bottom: 0.03
  20314. }
  20315. },
  20316. head: {
  20317. height: math.unit(2.1, "feet"),
  20318. name: "Head",
  20319. image: {
  20320. source: "./media/characters/lycoa/head.svg"
  20321. }
  20322. },
  20323. tailmaw: {
  20324. height: math.unit(1.9, "feet"),
  20325. name: "Tailmaw",
  20326. image: {
  20327. source: "./media/characters/lycoa/tailmaw.svg"
  20328. }
  20329. },
  20330. tentacles: {
  20331. height: math.unit(2.1, "feet"),
  20332. name: "Tentacles",
  20333. image: {
  20334. source: "./media/characters/lycoa/tentacles.svg"
  20335. }
  20336. },
  20337. dick: {
  20338. height: math.unit(1.73, "feet"),
  20339. name: "Dick",
  20340. image: {
  20341. source: "./media/characters/lycoa/dick.svg"
  20342. }
  20343. },
  20344. },
  20345. [
  20346. {
  20347. name: "Normal",
  20348. height: math.unit(8, "feet"),
  20349. default: true
  20350. },
  20351. {
  20352. name: "Macro",
  20353. height: math.unit(30, "feet")
  20354. },
  20355. ]
  20356. ))
  20357. characterMakers.push(() => makeCharacter(
  20358. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20359. {
  20360. front: {
  20361. height: math.unit(4 + 2 / 12, "feet"),
  20362. weight: math.unit(70, "lb"),
  20363. name: "Front",
  20364. image: {
  20365. source: "./media/characters/naldara/front.svg",
  20366. extra: 841 / 720,
  20367. bottom: 0.04
  20368. }
  20369. },
  20370. naga: {
  20371. height: math.unit(23, "feet"),
  20372. weight: math.unit(15000, "kg"),
  20373. name: "Naga",
  20374. image: {
  20375. source: "./media/characters/naldara/naga.svg",
  20376. extra: 3290 / 2959,
  20377. bottom: 124 / 3432
  20378. }
  20379. },
  20380. },
  20381. [
  20382. {
  20383. name: "Normal",
  20384. height: math.unit(4 + 2 / 12, "feet"),
  20385. default: true
  20386. },
  20387. ]
  20388. ))
  20389. characterMakers.push(() => makeCharacter(
  20390. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20391. {
  20392. front: {
  20393. height: math.unit(13 + 7 / 12, "feet"),
  20394. weight: math.unit(1500, "lb"),
  20395. name: "Front",
  20396. image: {
  20397. source: "./media/characters/briar/front.svg",
  20398. extra: 626 / 596,
  20399. bottom: 0.08
  20400. }
  20401. },
  20402. },
  20403. [
  20404. {
  20405. name: "Normal",
  20406. height: math.unit(13 + 7 / 12, "feet"),
  20407. default: true
  20408. },
  20409. ]
  20410. ))
  20411. characterMakers.push(() => makeCharacter(
  20412. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20413. {
  20414. side: {
  20415. height: math.unit(10, "feet"),
  20416. weight: math.unit(500, "lb"),
  20417. name: "Side",
  20418. image: {
  20419. source: "./media/characters/vanguard/side.svg",
  20420. extra: 502 / 425,
  20421. bottom: 0.087
  20422. }
  20423. },
  20424. },
  20425. [
  20426. {
  20427. name: "Normal",
  20428. height: math.unit(10, "feet"),
  20429. default: true
  20430. },
  20431. ]
  20432. ))
  20433. characterMakers.push(() => makeCharacter(
  20434. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20435. {
  20436. front: {
  20437. height: math.unit(7.5, "feet"),
  20438. weight: math.unit(2, "lb"),
  20439. name: "Front",
  20440. image: {
  20441. source: "./media/characters/artemis/front.svg",
  20442. extra: 1192 / 1075,
  20443. bottom: 0.07
  20444. }
  20445. },
  20446. frontNsfw: {
  20447. height: math.unit(7.5, "feet"),
  20448. weight: math.unit(2, "lb"),
  20449. name: "Front (NSFW)",
  20450. image: {
  20451. source: "./media/characters/artemis/front-nsfw.svg",
  20452. extra: 1192 / 1075,
  20453. bottom: 0.07
  20454. }
  20455. },
  20456. frontNsfwer: {
  20457. height: math.unit(7.5, "feet"),
  20458. weight: math.unit(2, "lb"),
  20459. name: "Front (NSFW-er)",
  20460. image: {
  20461. source: "./media/characters/artemis/front-nsfwer.svg",
  20462. extra: 1192 / 1075,
  20463. bottom: 0.07
  20464. }
  20465. },
  20466. side: {
  20467. height: math.unit(7.5, "feet"),
  20468. weight: math.unit(2, "lb"),
  20469. name: "Side",
  20470. image: {
  20471. source: "./media/characters/artemis/side.svg",
  20472. extra: 1192 / 1075,
  20473. bottom: 0.07
  20474. }
  20475. },
  20476. sideNsfw: {
  20477. height: math.unit(7.5, "feet"),
  20478. weight: math.unit(2, "lb"),
  20479. name: "Side (NSFW)",
  20480. image: {
  20481. source: "./media/characters/artemis/side-nsfw.svg",
  20482. extra: 1192 / 1075,
  20483. bottom: 0.07
  20484. }
  20485. },
  20486. sideNsfwer: {
  20487. height: math.unit(7.5, "feet"),
  20488. weight: math.unit(2, "lb"),
  20489. name: "Side (NSFW-er)",
  20490. image: {
  20491. source: "./media/characters/artemis/side-nsfwer.svg",
  20492. extra: 1192 / 1075,
  20493. bottom: 0.07
  20494. }
  20495. },
  20496. maw: {
  20497. height: math.unit(1.1, "feet"),
  20498. name: "Maw",
  20499. image: {
  20500. source: "./media/characters/artemis/maw.svg"
  20501. }
  20502. },
  20503. stomach: {
  20504. height: math.unit(0.95, "feet"),
  20505. name: "Stomach",
  20506. image: {
  20507. source: "./media/characters/artemis/stomach.svg"
  20508. }
  20509. },
  20510. dickCanine: {
  20511. height: math.unit(1, "feet"),
  20512. name: "Dick (Canine)",
  20513. image: {
  20514. source: "./media/characters/artemis/dick-canine.svg"
  20515. }
  20516. },
  20517. dickEquine: {
  20518. height: math.unit(0.85, "feet"),
  20519. name: "Dick (Equine)",
  20520. image: {
  20521. source: "./media/characters/artemis/dick-equine.svg"
  20522. }
  20523. },
  20524. dickExotic: {
  20525. height: math.unit(0.85, "feet"),
  20526. name: "Dick (Exotic)",
  20527. image: {
  20528. source: "./media/characters/artemis/dick-exotic.svg"
  20529. }
  20530. },
  20531. },
  20532. [
  20533. {
  20534. name: "Normal",
  20535. height: math.unit(7.5, "feet"),
  20536. default: true
  20537. },
  20538. {
  20539. name: "Enlarged",
  20540. height: math.unit(12, "feet")
  20541. },
  20542. ]
  20543. ))
  20544. characterMakers.push(() => makeCharacter(
  20545. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20546. {
  20547. front: {
  20548. height: math.unit(5 + 3 / 12, "feet"),
  20549. weight: math.unit(160, "lb"),
  20550. name: "Front",
  20551. image: {
  20552. source: "./media/characters/kira/front.svg",
  20553. extra: 906 / 786,
  20554. bottom: 0.01
  20555. }
  20556. },
  20557. back: {
  20558. height: math.unit(5 + 3 / 12, "feet"),
  20559. weight: math.unit(160, "lb"),
  20560. name: "Back",
  20561. image: {
  20562. source: "./media/characters/kira/back.svg",
  20563. extra: 882 / 757,
  20564. bottom: 0.005
  20565. }
  20566. },
  20567. frontDressed: {
  20568. height: math.unit(5 + 3 / 12, "feet"),
  20569. weight: math.unit(160, "lb"),
  20570. name: "Front (Dressed)",
  20571. image: {
  20572. source: "./media/characters/kira/front-dressed.svg",
  20573. extra: 906 / 786,
  20574. bottom: 0.01
  20575. }
  20576. },
  20577. beans: {
  20578. height: math.unit(0.92, "feet"),
  20579. name: "Beans",
  20580. image: {
  20581. source: "./media/characters/kira/beans.svg"
  20582. }
  20583. },
  20584. },
  20585. [
  20586. {
  20587. name: "Normal",
  20588. height: math.unit(5 + 3 / 12, "feet"),
  20589. default: true
  20590. },
  20591. ]
  20592. ))
  20593. characterMakers.push(() => makeCharacter(
  20594. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20595. {
  20596. front: {
  20597. height: math.unit(5 + 4 / 12, "feet"),
  20598. weight: math.unit(145, "lb"),
  20599. name: "Front",
  20600. image: {
  20601. source: "./media/characters/scramble/front.svg",
  20602. extra: 763 / 727,
  20603. bottom: 0.05
  20604. }
  20605. },
  20606. back: {
  20607. height: math.unit(5 + 4 / 12, "feet"),
  20608. weight: math.unit(145, "lb"),
  20609. name: "Back",
  20610. image: {
  20611. source: "./media/characters/scramble/back.svg",
  20612. extra: 826 / 737,
  20613. bottom: 0.002
  20614. }
  20615. },
  20616. },
  20617. [
  20618. {
  20619. name: "Normal",
  20620. height: math.unit(5 + 4 / 12, "feet"),
  20621. default: true
  20622. },
  20623. ]
  20624. ))
  20625. characterMakers.push(() => makeCharacter(
  20626. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20627. {
  20628. side: {
  20629. height: math.unit(6 + 2 / 12, "feet"),
  20630. weight: math.unit(190, "lb"),
  20631. name: "Side",
  20632. image: {
  20633. source: "./media/characters/biscuit/side.svg",
  20634. extra: 858 / 791,
  20635. bottom: 0.044
  20636. }
  20637. },
  20638. },
  20639. [
  20640. {
  20641. name: "Normal",
  20642. height: math.unit(6 + 2 / 12, "feet"),
  20643. default: true
  20644. },
  20645. ]
  20646. ))
  20647. characterMakers.push(() => makeCharacter(
  20648. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20649. {
  20650. front: {
  20651. height: math.unit(5 + 2 / 12, "feet"),
  20652. weight: math.unit(120, "lb"),
  20653. name: "Front",
  20654. image: {
  20655. source: "./media/characters/poffin/front.svg",
  20656. extra: 786 / 680,
  20657. bottom: 0.005
  20658. }
  20659. },
  20660. },
  20661. [
  20662. {
  20663. name: "Normal",
  20664. height: math.unit(5 + 2 / 12, "feet"),
  20665. default: true
  20666. },
  20667. ]
  20668. ))
  20669. characterMakers.push(() => makeCharacter(
  20670. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20671. {
  20672. front: {
  20673. height: math.unit(6 + 3 / 12, "feet"),
  20674. weight: math.unit(519, "lb"),
  20675. name: "Front",
  20676. image: {
  20677. source: "./media/characters/dhari/front.svg",
  20678. extra: 1048 / 946,
  20679. bottom: 0.015
  20680. }
  20681. },
  20682. back: {
  20683. height: math.unit(6 + 3 / 12, "feet"),
  20684. weight: math.unit(519, "lb"),
  20685. name: "Back",
  20686. image: {
  20687. source: "./media/characters/dhari/back.svg",
  20688. extra: 1048 / 931,
  20689. bottom: 0.005
  20690. }
  20691. },
  20692. frontDressed: {
  20693. height: math.unit(6 + 3 / 12, "feet"),
  20694. weight: math.unit(519, "lb"),
  20695. name: "Front (Dressed)",
  20696. image: {
  20697. source: "./media/characters/dhari/front-dressed.svg",
  20698. extra: 1713 / 1546,
  20699. bottom: 0.02
  20700. }
  20701. },
  20702. backDressed: {
  20703. height: math.unit(6 + 3 / 12, "feet"),
  20704. weight: math.unit(519, "lb"),
  20705. name: "Back (Dressed)",
  20706. image: {
  20707. source: "./media/characters/dhari/back-dressed.svg",
  20708. extra: 1699 / 1537,
  20709. bottom: 0.01
  20710. }
  20711. },
  20712. maw: {
  20713. height: math.unit(0.95, "feet"),
  20714. name: "Maw",
  20715. image: {
  20716. source: "./media/characters/dhari/maw.svg"
  20717. }
  20718. },
  20719. wereFront: {
  20720. height: math.unit(12 + 8 / 12, "feet"),
  20721. weight: math.unit(4000, "lb"),
  20722. name: "Front (Were)",
  20723. image: {
  20724. source: "./media/characters/dhari/were-front.svg",
  20725. extra: 1065 / 969,
  20726. bottom: 0.015
  20727. }
  20728. },
  20729. wereBack: {
  20730. height: math.unit(12 + 8 / 12, "feet"),
  20731. weight: math.unit(4000, "lb"),
  20732. name: "Back (Were)",
  20733. image: {
  20734. source: "./media/characters/dhari/were-back.svg",
  20735. extra: 1065 / 969,
  20736. bottom: 0.012
  20737. }
  20738. },
  20739. wereMaw: {
  20740. height: math.unit(0.625, "meters"),
  20741. name: "Maw (Were)",
  20742. image: {
  20743. source: "./media/characters/dhari/were-maw.svg"
  20744. }
  20745. },
  20746. },
  20747. [
  20748. {
  20749. name: "Normal",
  20750. height: math.unit(6 + 3 / 12, "feet"),
  20751. default: true
  20752. },
  20753. ]
  20754. ))
  20755. characterMakers.push(() => makeCharacter(
  20756. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20757. {
  20758. anthro: {
  20759. height: math.unit(5 + 7 / 12, "feet"),
  20760. weight: math.unit(175, "lb"),
  20761. name: "Anthro",
  20762. image: {
  20763. source: "./media/characters/rena-dyne/anthro.svg",
  20764. extra: 1849 / 1785,
  20765. bottom: 0.005
  20766. }
  20767. },
  20768. taur: {
  20769. height: math.unit(15 + 6 / 12, "feet"),
  20770. weight: math.unit(8000, "lb"),
  20771. name: "Taur",
  20772. image: {
  20773. source: "./media/characters/rena-dyne/taur.svg",
  20774. extra: 2315 / 2234,
  20775. bottom: 0.033
  20776. }
  20777. },
  20778. },
  20779. [
  20780. {
  20781. name: "Normal",
  20782. height: math.unit(5 + 7 / 12, "feet"),
  20783. default: true
  20784. },
  20785. ]
  20786. ))
  20787. characterMakers.push(() => makeCharacter(
  20788. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20789. {
  20790. front: {
  20791. height: math.unit(8, "feet"),
  20792. weight: math.unit(600, "lb"),
  20793. name: "Front",
  20794. image: {
  20795. source: "./media/characters/weremeep/front.svg",
  20796. extra: 967 / 862,
  20797. bottom: 0.01
  20798. }
  20799. },
  20800. },
  20801. [
  20802. {
  20803. name: "Normal",
  20804. height: math.unit(8, "feet"),
  20805. default: true
  20806. },
  20807. {
  20808. name: "Lorg",
  20809. height: math.unit(12, "feet")
  20810. },
  20811. {
  20812. name: "Oh Lawd She Comin'",
  20813. height: math.unit(20, "feet")
  20814. },
  20815. ]
  20816. ))
  20817. characterMakers.push(() => makeCharacter(
  20818. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20819. {
  20820. front: {
  20821. height: math.unit(4, "feet"),
  20822. weight: math.unit(90, "lb"),
  20823. name: "Front",
  20824. image: {
  20825. source: "./media/characters/reza/front.svg",
  20826. extra: 1183 / 1111,
  20827. bottom: 0.017
  20828. }
  20829. },
  20830. back: {
  20831. height: math.unit(4, "feet"),
  20832. weight: math.unit(90, "lb"),
  20833. name: "Back",
  20834. image: {
  20835. source: "./media/characters/reza/back.svg",
  20836. extra: 1183 / 1111,
  20837. bottom: 0.01
  20838. }
  20839. },
  20840. drake: {
  20841. height: math.unit(30, "feet"),
  20842. weight: math.unit(246960, "lb"),
  20843. name: "Drake",
  20844. image: {
  20845. source: "./media/characters/reza/drake.svg",
  20846. extra: 2350 / 2024,
  20847. bottom: 60.7 / 2403
  20848. }
  20849. },
  20850. },
  20851. [
  20852. {
  20853. name: "Normal",
  20854. height: math.unit(4, "feet"),
  20855. default: true
  20856. },
  20857. ]
  20858. ))
  20859. characterMakers.push(() => makeCharacter(
  20860. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20861. {
  20862. side: {
  20863. height: math.unit(15, "feet"),
  20864. weight: math.unit(14, "tons"),
  20865. name: "Side",
  20866. image: {
  20867. source: "./media/characters/athea/side.svg",
  20868. extra: 960 / 540,
  20869. bottom: 0.003
  20870. }
  20871. },
  20872. sitting: {
  20873. height: math.unit(6 * 2.85, "feet"),
  20874. weight: math.unit(14, "tons"),
  20875. name: "Sitting",
  20876. image: {
  20877. source: "./media/characters/athea/sitting.svg",
  20878. extra: 621 / 581,
  20879. bottom: 0.075
  20880. }
  20881. },
  20882. maw: {
  20883. height: math.unit(7.59498031496063, "feet"),
  20884. name: "Maw",
  20885. image: {
  20886. source: "./media/characters/athea/maw.svg"
  20887. }
  20888. },
  20889. },
  20890. [
  20891. {
  20892. name: "Lap Cat",
  20893. height: math.unit(2.5, "feet")
  20894. },
  20895. {
  20896. name: "Minimacro",
  20897. height: math.unit(15, "feet"),
  20898. default: true
  20899. },
  20900. {
  20901. name: "Macro",
  20902. height: math.unit(120, "feet")
  20903. },
  20904. {
  20905. name: "Macro+",
  20906. height: math.unit(640, "feet")
  20907. },
  20908. {
  20909. name: "Colossus",
  20910. height: math.unit(2.2, "miles")
  20911. },
  20912. ]
  20913. ))
  20914. characterMakers.push(() => makeCharacter(
  20915. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20916. {
  20917. front: {
  20918. height: math.unit(8 + 8 / 12, "feet"),
  20919. weight: math.unit(130, "kg"),
  20920. name: "Front",
  20921. image: {
  20922. source: "./media/characters/seroko/front.svg",
  20923. extra: 1385 / 1280,
  20924. bottom: 0.025
  20925. }
  20926. },
  20927. back: {
  20928. height: math.unit(8 + 8 / 12, "feet"),
  20929. weight: math.unit(130, "kg"),
  20930. name: "Back",
  20931. image: {
  20932. source: "./media/characters/seroko/back.svg",
  20933. extra: 1369 / 1238,
  20934. bottom: 0.018
  20935. }
  20936. },
  20937. frontDressed: {
  20938. height: math.unit(8 + 8 / 12, "feet"),
  20939. weight: math.unit(130, "kg"),
  20940. name: "Front (Dressed)",
  20941. image: {
  20942. source: "./media/characters/seroko/front-dressed.svg",
  20943. extra: 1366 / 1275,
  20944. bottom: 0.03
  20945. }
  20946. },
  20947. },
  20948. [
  20949. {
  20950. name: "Normal",
  20951. height: math.unit(8 + 8 / 12, "feet"),
  20952. default: true
  20953. },
  20954. ]
  20955. ))
  20956. characterMakers.push(() => makeCharacter(
  20957. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20958. {
  20959. front: {
  20960. height: math.unit(5.5, "feet"),
  20961. weight: math.unit(160, "lb"),
  20962. name: "Front",
  20963. image: {
  20964. source: "./media/characters/quatzi/front.svg",
  20965. extra: 2346 / 2242,
  20966. bottom: 0.015
  20967. }
  20968. },
  20969. },
  20970. [
  20971. {
  20972. name: "Normal",
  20973. height: math.unit(5.5, "feet"),
  20974. default: true
  20975. },
  20976. {
  20977. name: "Big",
  20978. height: math.unit(7.7, "feet")
  20979. },
  20980. ]
  20981. ))
  20982. characterMakers.push(() => makeCharacter(
  20983. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20984. {
  20985. front: {
  20986. height: math.unit(5 + 11 / 12, "feet"),
  20987. weight: math.unit(180, "lb"),
  20988. name: "Front",
  20989. image: {
  20990. source: "./media/characters/sen/front.svg",
  20991. extra: 1321 / 1254,
  20992. bottom: 0.015
  20993. }
  20994. },
  20995. side: {
  20996. height: math.unit(5 + 11 / 12, "feet"),
  20997. weight: math.unit(180, "lb"),
  20998. name: "Side",
  20999. image: {
  21000. source: "./media/characters/sen/side.svg",
  21001. extra: 1321 / 1254,
  21002. bottom: 0.007
  21003. }
  21004. },
  21005. back: {
  21006. height: math.unit(5 + 11 / 12, "feet"),
  21007. weight: math.unit(180, "lb"),
  21008. name: "Back",
  21009. image: {
  21010. source: "./media/characters/sen/back.svg",
  21011. extra: 1321 / 1254
  21012. }
  21013. },
  21014. },
  21015. [
  21016. {
  21017. name: "Normal",
  21018. height: math.unit(5 + 11 / 12, "feet"),
  21019. default: true
  21020. },
  21021. ]
  21022. ))
  21023. characterMakers.push(() => makeCharacter(
  21024. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21025. {
  21026. front: {
  21027. height: math.unit(166.6, "cm"),
  21028. weight: math.unit(66.6, "kg"),
  21029. name: "Front",
  21030. image: {
  21031. source: "./media/characters/fruity/front.svg",
  21032. extra: 1510 / 1386,
  21033. bottom: 0.04
  21034. }
  21035. },
  21036. back: {
  21037. height: math.unit(166.6, "cm"),
  21038. weight: math.unit(66.6, "lb"),
  21039. name: "Back",
  21040. image: {
  21041. source: "./media/characters/fruity/back.svg",
  21042. extra: 1563 / 1435,
  21043. bottom: 0.005
  21044. }
  21045. },
  21046. },
  21047. [
  21048. {
  21049. name: "Normal",
  21050. height: math.unit(166.6, "cm"),
  21051. default: true
  21052. },
  21053. {
  21054. name: "Demonic",
  21055. height: math.unit(166.6, "feet")
  21056. },
  21057. ]
  21058. ))
  21059. characterMakers.push(() => makeCharacter(
  21060. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21061. {
  21062. side: {
  21063. height: math.unit(10, "feet"),
  21064. weight: math.unit(500, "lb"),
  21065. name: "Side",
  21066. image: {
  21067. source: "./media/characters/zost/side.svg",
  21068. extra: 966 / 880,
  21069. bottom: 0.075
  21070. }
  21071. },
  21072. mawFront: {
  21073. height: math.unit(1.08, "meters"),
  21074. name: "Maw (Front)",
  21075. image: {
  21076. source: "./media/characters/zost/maw-front.svg"
  21077. }
  21078. },
  21079. mawSide: {
  21080. height: math.unit(2.66, "feet"),
  21081. name: "Maw (Side)",
  21082. image: {
  21083. source: "./media/characters/zost/maw-side.svg"
  21084. }
  21085. },
  21086. },
  21087. [
  21088. {
  21089. name: "Normal",
  21090. height: math.unit(10, "feet"),
  21091. default: true
  21092. },
  21093. ]
  21094. ))
  21095. characterMakers.push(() => makeCharacter(
  21096. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21097. {
  21098. front: {
  21099. height: math.unit(5 + 4 / 12, "feet"),
  21100. weight: math.unit(120, "lb"),
  21101. name: "Front",
  21102. image: {
  21103. source: "./media/characters/luci/front.svg",
  21104. extra: 1985 / 1884,
  21105. bottom: 0.04
  21106. }
  21107. },
  21108. back: {
  21109. height: math.unit(5 + 4 / 12, "feet"),
  21110. weight: math.unit(120, "lb"),
  21111. name: "Back",
  21112. image: {
  21113. source: "./media/characters/luci/back.svg",
  21114. extra: 1892 / 1791,
  21115. bottom: 0.002
  21116. }
  21117. },
  21118. },
  21119. [
  21120. {
  21121. name: "Normal",
  21122. height: math.unit(5 + 4 / 12, "feet"),
  21123. default: true
  21124. },
  21125. ]
  21126. ))
  21127. characterMakers.push(() => makeCharacter(
  21128. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21129. {
  21130. front: {
  21131. height: math.unit(1500, "feet"),
  21132. weight: math.unit(3.8e6, "tons"),
  21133. name: "Front",
  21134. image: {
  21135. source: "./media/characters/2th/front.svg",
  21136. extra: 3489 / 3350,
  21137. bottom: 0.1
  21138. }
  21139. },
  21140. foot: {
  21141. height: math.unit(461, "feet"),
  21142. name: "Foot",
  21143. image: {
  21144. source: "./media/characters/2th/foot.svg"
  21145. }
  21146. },
  21147. },
  21148. [
  21149. {
  21150. name: "\"Micro\"",
  21151. height: math.unit(15 + 7 / 12, "feet")
  21152. },
  21153. {
  21154. name: "Normal",
  21155. height: math.unit(1500, "feet"),
  21156. default: true
  21157. },
  21158. {
  21159. name: "Macro",
  21160. height: math.unit(5000, "feet")
  21161. },
  21162. {
  21163. name: "Megamacro",
  21164. height: math.unit(15, "miles")
  21165. },
  21166. {
  21167. name: "Gigamacro",
  21168. height: math.unit(4000, "miles")
  21169. },
  21170. {
  21171. name: "Galactic",
  21172. height: math.unit(50, "AU")
  21173. },
  21174. ]
  21175. ))
  21176. characterMakers.push(() => makeCharacter(
  21177. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21178. {
  21179. front: {
  21180. height: math.unit(5 + 6 / 12, "feet"),
  21181. weight: math.unit(220, "lb"),
  21182. name: "Front",
  21183. image: {
  21184. source: "./media/characters/amethyst/front.svg",
  21185. extra: 2078 / 2040,
  21186. bottom: 0.045
  21187. }
  21188. },
  21189. back: {
  21190. height: math.unit(5 + 6 / 12, "feet"),
  21191. weight: math.unit(220, "lb"),
  21192. name: "Back",
  21193. image: {
  21194. source: "./media/characters/amethyst/back.svg",
  21195. extra: 2021 / 1989,
  21196. bottom: 0.02
  21197. }
  21198. },
  21199. },
  21200. [
  21201. {
  21202. name: "Normal",
  21203. height: math.unit(5 + 6 / 12, "feet"),
  21204. default: true
  21205. },
  21206. ]
  21207. ))
  21208. characterMakers.push(() => makeCharacter(
  21209. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21210. {
  21211. front: {
  21212. height: math.unit(4 + 11 / 12, "feet"),
  21213. weight: math.unit(120, "lb"),
  21214. name: "Front",
  21215. image: {
  21216. source: "./media/characters/yumi-akiyama/front.svg",
  21217. extra: 1327 / 1235,
  21218. bottom: 0.02
  21219. }
  21220. },
  21221. back: {
  21222. height: math.unit(4 + 11 / 12, "feet"),
  21223. weight: math.unit(120, "lb"),
  21224. name: "Back",
  21225. image: {
  21226. source: "./media/characters/yumi-akiyama/back.svg",
  21227. extra: 1287 / 1245,
  21228. bottom: 0.002
  21229. }
  21230. },
  21231. },
  21232. [
  21233. {
  21234. name: "Galactic",
  21235. height: math.unit(50, "galaxies"),
  21236. default: true
  21237. },
  21238. {
  21239. name: "Universal",
  21240. height: math.unit(100, "universes")
  21241. },
  21242. ]
  21243. ))
  21244. characterMakers.push(() => makeCharacter(
  21245. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21246. {
  21247. front: {
  21248. height: math.unit(8, "feet"),
  21249. weight: math.unit(500, "lb"),
  21250. name: "Front",
  21251. image: {
  21252. source: "./media/characters/rifter-yrmori/front.svg",
  21253. extra: 1180 / 1125,
  21254. bottom: 0.02
  21255. }
  21256. },
  21257. back: {
  21258. height: math.unit(8, "feet"),
  21259. weight: math.unit(500, "lb"),
  21260. name: "Back",
  21261. image: {
  21262. source: "./media/characters/rifter-yrmori/back.svg",
  21263. extra: 1190 / 1145,
  21264. bottom: 0.001
  21265. }
  21266. },
  21267. wings: {
  21268. height: math.unit(7.75, "feet"),
  21269. weight: math.unit(500, "lb"),
  21270. name: "Wings",
  21271. image: {
  21272. source: "./media/characters/rifter-yrmori/wings.svg",
  21273. extra: 1357 / 1285
  21274. }
  21275. },
  21276. maw: {
  21277. height: math.unit(0.8, "feet"),
  21278. name: "Maw",
  21279. image: {
  21280. source: "./media/characters/rifter-yrmori/maw.svg"
  21281. }
  21282. },
  21283. mawfront: {
  21284. height: math.unit(1.45, "feet"),
  21285. name: "Maw (Front)",
  21286. image: {
  21287. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21288. }
  21289. },
  21290. },
  21291. [
  21292. {
  21293. name: "Normal",
  21294. height: math.unit(8, "feet"),
  21295. default: true
  21296. },
  21297. {
  21298. name: "Macro",
  21299. height: math.unit(42, "meters")
  21300. },
  21301. ]
  21302. ))
  21303. characterMakers.push(() => makeCharacter(
  21304. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21305. {
  21306. were: {
  21307. height: math.unit(25 + 6 / 12, "feet"),
  21308. weight: math.unit(10000, "lb"),
  21309. name: "Were",
  21310. image: {
  21311. source: "./media/characters/tahajin/were.svg",
  21312. extra: 801 / 770,
  21313. bottom: 0.042
  21314. }
  21315. },
  21316. aquatic: {
  21317. height: math.unit(6 + 4 / 12, "feet"),
  21318. weight: math.unit(160, "lb"),
  21319. name: "Aquatic",
  21320. image: {
  21321. source: "./media/characters/tahajin/aquatic.svg",
  21322. extra: 572 / 542,
  21323. bottom: 0.04
  21324. }
  21325. },
  21326. chow: {
  21327. height: math.unit(8 + 11 / 12, "feet"),
  21328. weight: math.unit(450, "lb"),
  21329. name: "Chow",
  21330. image: {
  21331. source: "./media/characters/tahajin/chow.svg",
  21332. extra: 660 / 640,
  21333. bottom: 0.015
  21334. }
  21335. },
  21336. demiNaga: {
  21337. height: math.unit(6 + 8 / 12, "feet"),
  21338. weight: math.unit(300, "lb"),
  21339. name: "Demi Naga",
  21340. image: {
  21341. source: "./media/characters/tahajin/demi-naga.svg",
  21342. extra: 643 / 615,
  21343. bottom: 0.1
  21344. }
  21345. },
  21346. data: {
  21347. height: math.unit(5, "inches"),
  21348. weight: math.unit(0.1, "lb"),
  21349. name: "Data",
  21350. image: {
  21351. source: "./media/characters/tahajin/data.svg"
  21352. }
  21353. },
  21354. fluu: {
  21355. height: math.unit(5 + 7 / 12, "feet"),
  21356. weight: math.unit(140, "lb"),
  21357. name: "Fluu",
  21358. image: {
  21359. source: "./media/characters/tahajin/fluu.svg",
  21360. extra: 628 / 592,
  21361. bottom: 0.02
  21362. }
  21363. },
  21364. starWarrior: {
  21365. height: math.unit(4 + 5 / 12, "feet"),
  21366. weight: math.unit(50, "lb"),
  21367. name: "Star Warrior",
  21368. image: {
  21369. source: "./media/characters/tahajin/star-warrior.svg"
  21370. }
  21371. },
  21372. },
  21373. [
  21374. {
  21375. name: "Normal",
  21376. height: math.unit(25 + 6 / 12, "feet"),
  21377. default: true
  21378. },
  21379. ]
  21380. ))
  21381. characterMakers.push(() => makeCharacter(
  21382. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21383. {
  21384. front: {
  21385. height: math.unit(8, "feet"),
  21386. weight: math.unit(350, "lb"),
  21387. name: "Front",
  21388. image: {
  21389. source: "./media/characters/gabira/front.svg",
  21390. extra: 608 / 580,
  21391. bottom: 0.03
  21392. }
  21393. },
  21394. back: {
  21395. height: math.unit(8, "feet"),
  21396. weight: math.unit(350, "lb"),
  21397. name: "Back",
  21398. image: {
  21399. source: "./media/characters/gabira/back.svg",
  21400. extra: 608 / 580,
  21401. bottom: 0.03
  21402. }
  21403. },
  21404. },
  21405. [
  21406. {
  21407. name: "Normal",
  21408. height: math.unit(8, "feet"),
  21409. default: true
  21410. },
  21411. ]
  21412. ))
  21413. characterMakers.push(() => makeCharacter(
  21414. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21415. {
  21416. front: {
  21417. height: math.unit(5 + 3 / 12, "feet"),
  21418. weight: math.unit(137, "lb"),
  21419. name: "Front",
  21420. image: {
  21421. source: "./media/characters/sasha-katraine/front.svg",
  21422. bottom: 0.045
  21423. }
  21424. },
  21425. },
  21426. [
  21427. {
  21428. name: "Micro",
  21429. height: math.unit(5, "inches")
  21430. },
  21431. {
  21432. name: "Normal",
  21433. height: math.unit(5 + 3 / 12, "feet"),
  21434. default: true
  21435. },
  21436. ]
  21437. ))
  21438. characterMakers.push(() => makeCharacter(
  21439. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21440. {
  21441. side: {
  21442. height: math.unit(4, "inches"),
  21443. weight: math.unit(200, "grams"),
  21444. name: "Side",
  21445. image: {
  21446. source: "./media/characters/der/side.svg",
  21447. extra: 719 / 400,
  21448. bottom: 30.6 / 749.9187
  21449. }
  21450. },
  21451. },
  21452. [
  21453. {
  21454. name: "Micro",
  21455. height: math.unit(4, "inches"),
  21456. default: true
  21457. },
  21458. ]
  21459. ))
  21460. characterMakers.push(() => makeCharacter(
  21461. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21462. {
  21463. side: {
  21464. height: math.unit(30, "meters"),
  21465. weight: math.unit(700, "tonnes"),
  21466. name: "Side",
  21467. image: {
  21468. source: "./media/characters/fixerdragon/side.svg",
  21469. extra: (1293.0514 - 116.03) / 1106.86,
  21470. bottom: 116.03 / 1293.0514
  21471. }
  21472. },
  21473. },
  21474. [
  21475. {
  21476. name: "Planck",
  21477. height: math.unit(1.6e-35, "meters")
  21478. },
  21479. {
  21480. name: "Micro",
  21481. height: math.unit(0.4, "meters")
  21482. },
  21483. {
  21484. name: "Normal",
  21485. height: math.unit(30, "meters"),
  21486. default: true
  21487. },
  21488. {
  21489. name: "Megamacro",
  21490. height: math.unit(1.2, "megameters")
  21491. },
  21492. {
  21493. name: "Teramacro",
  21494. height: math.unit(130, "terameters")
  21495. },
  21496. {
  21497. name: "Yottamacro",
  21498. height: math.unit(6200, "yottameters")
  21499. },
  21500. ]
  21501. ));
  21502. characterMakers.push(() => makeCharacter(
  21503. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21504. {
  21505. front: {
  21506. height: math.unit(8, "feet"),
  21507. weight: math.unit(250, "lb"),
  21508. name: "Front",
  21509. image: {
  21510. source: "./media/characters/kite/front.svg",
  21511. extra: 2796 / 2659,
  21512. bottom: 0.002
  21513. }
  21514. },
  21515. },
  21516. [
  21517. {
  21518. name: "Normal",
  21519. height: math.unit(8, "feet"),
  21520. default: true
  21521. },
  21522. {
  21523. name: "Macro",
  21524. height: math.unit(360, "feet")
  21525. },
  21526. {
  21527. name: "Megamacro",
  21528. height: math.unit(1500, "feet")
  21529. },
  21530. ]
  21531. ))
  21532. characterMakers.push(() => makeCharacter(
  21533. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21534. {
  21535. front: {
  21536. height: math.unit(5 + 10 / 12, "feet"),
  21537. weight: math.unit(150, "lb"),
  21538. name: "Front",
  21539. image: {
  21540. source: "./media/characters/poojawa-vynar/front.svg",
  21541. extra: (1506.1547 - 55) / 1356.6,
  21542. bottom: 55 / 1506.1547
  21543. }
  21544. },
  21545. frontTailless: {
  21546. height: math.unit(5 + 10 / 12, "feet"),
  21547. weight: math.unit(150, "lb"),
  21548. name: "Front (Tailless)",
  21549. image: {
  21550. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21551. extra: (1506.1547 - 55) / 1356.6,
  21552. bottom: 55 / 1506.1547
  21553. }
  21554. },
  21555. },
  21556. [
  21557. {
  21558. name: "Normal",
  21559. height: math.unit(5 + 10 / 12, "feet"),
  21560. default: true
  21561. },
  21562. ]
  21563. ))
  21564. characterMakers.push(() => makeCharacter(
  21565. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21566. {
  21567. front: {
  21568. height: math.unit(293, "meters"),
  21569. weight: math.unit(70400, "tons"),
  21570. name: "Front",
  21571. image: {
  21572. source: "./media/characters/violette/front.svg",
  21573. extra: 1227 / 1180,
  21574. bottom: 0.005
  21575. }
  21576. },
  21577. back: {
  21578. height: math.unit(293, "meters"),
  21579. weight: math.unit(70400, "tons"),
  21580. name: "Back",
  21581. image: {
  21582. source: "./media/characters/violette/back.svg",
  21583. extra: 1227 / 1180,
  21584. bottom: 0.005
  21585. }
  21586. },
  21587. },
  21588. [
  21589. {
  21590. name: "Macro",
  21591. height: math.unit(293, "meters"),
  21592. default: true
  21593. },
  21594. ]
  21595. ))
  21596. characterMakers.push(() => makeCharacter(
  21597. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21598. {
  21599. front: {
  21600. height: math.unit(1050, "feet"),
  21601. weight: math.unit(200000, "tons"),
  21602. name: "Front",
  21603. image: {
  21604. source: "./media/characters/alessandra/front.svg",
  21605. extra: 960 / 912,
  21606. bottom: 0.06
  21607. }
  21608. },
  21609. },
  21610. [
  21611. {
  21612. name: "Macro",
  21613. height: math.unit(1050, "feet")
  21614. },
  21615. {
  21616. name: "Macro+",
  21617. height: math.unit(900, "meters"),
  21618. default: true
  21619. },
  21620. ]
  21621. ))
  21622. characterMakers.push(() => makeCharacter(
  21623. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21624. {
  21625. front: {
  21626. height: math.unit(5, "feet"),
  21627. weight: math.unit(187, "lb"),
  21628. name: "Front",
  21629. image: {
  21630. source: "./media/characters/person/front.svg",
  21631. extra: 3087 / 2945,
  21632. bottom: 91 / 3181
  21633. }
  21634. },
  21635. },
  21636. [
  21637. {
  21638. name: "Micro",
  21639. height: math.unit(3, "inches")
  21640. },
  21641. {
  21642. name: "Normal",
  21643. height: math.unit(5, "feet"),
  21644. default: true
  21645. },
  21646. {
  21647. name: "Macro",
  21648. height: math.unit(90, "feet")
  21649. },
  21650. {
  21651. name: "Max Size",
  21652. height: math.unit(280, "feet")
  21653. },
  21654. ]
  21655. ))
  21656. characterMakers.push(() => makeCharacter(
  21657. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21658. {
  21659. front: {
  21660. height: math.unit(4.5, "meters"),
  21661. weight: math.unit(3200, "lb"),
  21662. name: "Front",
  21663. image: {
  21664. source: "./media/characters/ty/front.svg",
  21665. extra: 1038 / 960,
  21666. bottom: 31.156 / 1068
  21667. }
  21668. },
  21669. back: {
  21670. height: math.unit(4.5, "meters"),
  21671. weight: math.unit(3200, "lb"),
  21672. name: "Back",
  21673. image: {
  21674. source: "./media/characters/ty/back.svg",
  21675. extra: 1044 / 966,
  21676. bottom: 7.48 / 1049
  21677. }
  21678. },
  21679. },
  21680. [
  21681. {
  21682. name: "Normal",
  21683. height: math.unit(4.5, "meters"),
  21684. default: true
  21685. },
  21686. ]
  21687. ))
  21688. characterMakers.push(() => makeCharacter(
  21689. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21690. {
  21691. front: {
  21692. height: math.unit(5 + 4 / 12, "feet"),
  21693. weight: math.unit(115, "lb"),
  21694. name: "Front",
  21695. image: {
  21696. source: "./media/characters/rocky/front.svg",
  21697. extra: 1012 / 975,
  21698. bottom: 54 / 1066
  21699. }
  21700. },
  21701. },
  21702. [
  21703. {
  21704. name: "Normal",
  21705. height: math.unit(5 + 4 / 12, "feet"),
  21706. default: true
  21707. },
  21708. ]
  21709. ))
  21710. characterMakers.push(() => makeCharacter(
  21711. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21712. {
  21713. upright: {
  21714. height: math.unit(6, "meters"),
  21715. weight: math.unit(4000, "kg"),
  21716. name: "Upright",
  21717. image: {
  21718. source: "./media/characters/ruin/upright.svg",
  21719. extra: 668 / 661,
  21720. bottom: 42 / 799.8396
  21721. }
  21722. },
  21723. },
  21724. [
  21725. {
  21726. name: "Normal",
  21727. height: math.unit(6, "meters"),
  21728. default: true
  21729. },
  21730. ]
  21731. ))
  21732. characterMakers.push(() => makeCharacter(
  21733. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21734. {
  21735. front: {
  21736. height: math.unit(5, "feet"),
  21737. weight: math.unit(106, "lb"),
  21738. name: "Front",
  21739. image: {
  21740. source: "./media/characters/robin/front.svg",
  21741. extra: 862 / 799,
  21742. bottom: 42.4 / 914.8856
  21743. }
  21744. },
  21745. },
  21746. [
  21747. {
  21748. name: "Normal",
  21749. height: math.unit(5, "feet"),
  21750. default: true
  21751. },
  21752. ]
  21753. ))
  21754. characterMakers.push(() => makeCharacter(
  21755. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21756. {
  21757. side: {
  21758. height: math.unit(3, "feet"),
  21759. weight: math.unit(225, "lb"),
  21760. name: "Side",
  21761. image: {
  21762. source: "./media/characters/saian/side.svg",
  21763. extra: 566 / 356,
  21764. bottom: 79.7 / 643
  21765. }
  21766. },
  21767. maw: {
  21768. height: math.unit(2.85, "feet"),
  21769. name: "Maw",
  21770. image: {
  21771. source: "./media/characters/saian/maw.svg"
  21772. }
  21773. },
  21774. },
  21775. [
  21776. {
  21777. name: "Normal",
  21778. height: math.unit(3, "feet"),
  21779. default: true
  21780. },
  21781. ]
  21782. ))
  21783. characterMakers.push(() => makeCharacter(
  21784. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21785. {
  21786. side: {
  21787. height: math.unit(8, "feet"),
  21788. weight: math.unit(300, "lb"),
  21789. name: "Side",
  21790. image: {
  21791. source: "./media/characters/equus-silvermane/side.svg",
  21792. extra: 2176 / 2050,
  21793. bottom: 65.7 / 2245
  21794. }
  21795. },
  21796. front: {
  21797. height: math.unit(8, "feet"),
  21798. weight: math.unit(300, "lb"),
  21799. name: "Front",
  21800. image: {
  21801. source: "./media/characters/equus-silvermane/front.svg",
  21802. extra: 4633 / 4400,
  21803. bottom: 71.3 / 4706.915
  21804. }
  21805. },
  21806. sideStepping: {
  21807. height: math.unit(8, "feet"),
  21808. weight: math.unit(300, "lb"),
  21809. name: "Side (Stepping)",
  21810. image: {
  21811. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21812. extra: 1968 / 1860,
  21813. bottom: 16.4 / 1989
  21814. }
  21815. },
  21816. },
  21817. [
  21818. {
  21819. name: "Normal",
  21820. height: math.unit(8, "feet")
  21821. },
  21822. {
  21823. name: "Minimacro",
  21824. height: math.unit(75, "feet"),
  21825. default: true
  21826. },
  21827. {
  21828. name: "Macro",
  21829. height: math.unit(150, "feet")
  21830. },
  21831. {
  21832. name: "Macro+",
  21833. height: math.unit(1000, "feet")
  21834. },
  21835. {
  21836. name: "Megamacro",
  21837. height: math.unit(1, "mile")
  21838. },
  21839. ]
  21840. ))
  21841. characterMakers.push(() => makeCharacter(
  21842. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21843. {
  21844. side: {
  21845. height: math.unit(20, "feet"),
  21846. weight: math.unit(30000, "kg"),
  21847. name: "Side",
  21848. image: {
  21849. source: "./media/characters/windar/side.svg",
  21850. extra: 1491 / 1248,
  21851. bottom: 82.56 / 1568
  21852. }
  21853. },
  21854. },
  21855. [
  21856. {
  21857. name: "Normal",
  21858. height: math.unit(20, "feet"),
  21859. default: true
  21860. },
  21861. ]
  21862. ))
  21863. characterMakers.push(() => makeCharacter(
  21864. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21865. {
  21866. side: {
  21867. height: math.unit(15.66, "feet"),
  21868. weight: math.unit(150, "lb"),
  21869. name: "Side",
  21870. image: {
  21871. source: "./media/characters/melody/side.svg",
  21872. extra: 1097 / 944,
  21873. bottom: 11.8 / 1109
  21874. }
  21875. },
  21876. sideOutfit: {
  21877. height: math.unit(15.66, "feet"),
  21878. weight: math.unit(150, "lb"),
  21879. name: "Side (Outfit)",
  21880. image: {
  21881. source: "./media/characters/melody/side-outfit.svg",
  21882. extra: 1097 / 944,
  21883. bottom: 11.8 / 1109
  21884. }
  21885. },
  21886. },
  21887. [
  21888. {
  21889. name: "Normal",
  21890. height: math.unit(15.66, "feet"),
  21891. default: true
  21892. },
  21893. ]
  21894. ))
  21895. characterMakers.push(() => makeCharacter(
  21896. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21897. {
  21898. front: {
  21899. height: math.unit(8, "feet"),
  21900. weight: math.unit(325, "lb"),
  21901. name: "Front",
  21902. image: {
  21903. source: "./media/characters/windera/front.svg",
  21904. extra: 3180 / 2845,
  21905. bottom: 178 / 3365
  21906. }
  21907. },
  21908. },
  21909. [
  21910. {
  21911. name: "Normal",
  21912. height: math.unit(8, "feet"),
  21913. default: true
  21914. },
  21915. ]
  21916. ))
  21917. characterMakers.push(() => makeCharacter(
  21918. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21919. {
  21920. front: {
  21921. height: math.unit(28.75, "feet"),
  21922. weight: math.unit(2000, "kg"),
  21923. name: "Front",
  21924. image: {
  21925. source: "./media/characters/sonear/front.svg",
  21926. extra: 1041.1 / 964.9,
  21927. bottom: 53.7 / 1096.6
  21928. }
  21929. },
  21930. },
  21931. [
  21932. {
  21933. name: "Normal",
  21934. height: math.unit(28.75, "feet"),
  21935. default: true
  21936. },
  21937. ]
  21938. ))
  21939. characterMakers.push(() => makeCharacter(
  21940. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21941. {
  21942. side: {
  21943. height: math.unit(25.5, "feet"),
  21944. weight: math.unit(23000, "kg"),
  21945. name: "Side",
  21946. image: {
  21947. source: "./media/characters/kanara/side.svg"
  21948. }
  21949. },
  21950. },
  21951. [
  21952. {
  21953. name: "Normal",
  21954. height: math.unit(25.5, "feet"),
  21955. default: true
  21956. },
  21957. ]
  21958. ))
  21959. characterMakers.push(() => makeCharacter(
  21960. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21961. {
  21962. side: {
  21963. height: math.unit(10, "feet"),
  21964. weight: math.unit(1000, "kg"),
  21965. name: "Side",
  21966. image: {
  21967. source: "./media/characters/ereus/side.svg",
  21968. extra: 1157 / 959,
  21969. bottom: 153 / 1312.5
  21970. }
  21971. },
  21972. },
  21973. [
  21974. {
  21975. name: "Normal",
  21976. height: math.unit(10, "feet"),
  21977. default: true
  21978. },
  21979. ]
  21980. ))
  21981. characterMakers.push(() => makeCharacter(
  21982. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21983. {
  21984. side: {
  21985. height: math.unit(4.5, "feet"),
  21986. weight: math.unit(500, "lb"),
  21987. name: "Side",
  21988. image: {
  21989. source: "./media/characters/e-ter/side.svg",
  21990. extra: 1550 / 1248,
  21991. bottom: 146 / 1694
  21992. }
  21993. },
  21994. },
  21995. [
  21996. {
  21997. name: "Normal",
  21998. height: math.unit(4.5, "feet"),
  21999. default: true
  22000. },
  22001. ]
  22002. ))
  22003. characterMakers.push(() => makeCharacter(
  22004. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22005. {
  22006. side: {
  22007. height: math.unit(9.7, "feet"),
  22008. weight: math.unit(4000, "kg"),
  22009. name: "Side",
  22010. image: {
  22011. source: "./media/characters/yamie/side.svg"
  22012. }
  22013. },
  22014. },
  22015. [
  22016. {
  22017. name: "Normal",
  22018. height: math.unit(9.7, "feet"),
  22019. default: true
  22020. },
  22021. ]
  22022. ))
  22023. characterMakers.push(() => makeCharacter(
  22024. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22025. {
  22026. front: {
  22027. height: math.unit(50, "feet"),
  22028. weight: math.unit(50000, "kg"),
  22029. name: "Front",
  22030. image: {
  22031. source: "./media/characters/anders/front.svg",
  22032. extra: 570 / 539,
  22033. bottom: 14.7 / 586.7
  22034. }
  22035. },
  22036. },
  22037. [
  22038. {
  22039. name: "Large",
  22040. height: math.unit(50, "feet")
  22041. },
  22042. {
  22043. name: "Macro",
  22044. height: math.unit(2000, "feet"),
  22045. default: true
  22046. },
  22047. {
  22048. name: "Megamacro",
  22049. height: math.unit(12, "miles")
  22050. },
  22051. ]
  22052. ))
  22053. characterMakers.push(() => makeCharacter(
  22054. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22055. {
  22056. front: {
  22057. height: math.unit(7 + 2 / 12, "feet"),
  22058. weight: math.unit(300, "lb"),
  22059. name: "Front",
  22060. image: {
  22061. source: "./media/characters/reban/front.svg",
  22062. extra: 516 / 487,
  22063. bottom: 42.82 / 558.356
  22064. }
  22065. },
  22066. dick: {
  22067. height: math.unit(7 / 5, "feet"),
  22068. name: "Dick",
  22069. image: {
  22070. source: "./media/characters/reban/dick.svg"
  22071. }
  22072. },
  22073. },
  22074. [
  22075. {
  22076. name: "Natural Height",
  22077. height: math.unit(7 + 2 / 12, "feet")
  22078. },
  22079. {
  22080. name: "Macro",
  22081. height: math.unit(500, "feet"),
  22082. default: true
  22083. },
  22084. {
  22085. name: "Canon Height",
  22086. height: math.unit(50, "AU")
  22087. },
  22088. ]
  22089. ))
  22090. characterMakers.push(() => makeCharacter(
  22091. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22092. {
  22093. front: {
  22094. height: math.unit(6, "feet"),
  22095. weight: math.unit(150, "lb"),
  22096. name: "Front",
  22097. image: {
  22098. source: "./media/characters/terrance-keayes/front.svg",
  22099. extra: 1.005,
  22100. bottom: 151 / 1615
  22101. }
  22102. },
  22103. side: {
  22104. height: math.unit(6, "feet"),
  22105. weight: math.unit(150, "lb"),
  22106. name: "Side",
  22107. image: {
  22108. source: "./media/characters/terrance-keayes/side.svg",
  22109. extra: 1.005,
  22110. bottom: 129.4 / 1544
  22111. }
  22112. },
  22113. back: {
  22114. height: math.unit(6, "feet"),
  22115. weight: math.unit(150, "lb"),
  22116. name: "Back",
  22117. image: {
  22118. source: "./media/characters/terrance-keayes/back.svg",
  22119. extra: 1.005,
  22120. bottom: 58.4 / 1557.3
  22121. }
  22122. },
  22123. dick: {
  22124. height: math.unit(6 * 0.208, "feet"),
  22125. name: "Dick",
  22126. image: {
  22127. source: "./media/characters/terrance-keayes/dick.svg"
  22128. }
  22129. },
  22130. },
  22131. [
  22132. {
  22133. name: "Canon Height",
  22134. height: math.unit(35, "miles"),
  22135. default: true
  22136. },
  22137. ]
  22138. ))
  22139. characterMakers.push(() => makeCharacter(
  22140. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22141. {
  22142. front: {
  22143. height: math.unit(6, "feet"),
  22144. weight: math.unit(150, "lb"),
  22145. name: "Front",
  22146. image: {
  22147. source: "./media/characters/ofelia/front.svg",
  22148. extra: 546 / 541,
  22149. bottom: 39 / 583
  22150. }
  22151. },
  22152. back: {
  22153. height: math.unit(6, "feet"),
  22154. weight: math.unit(150, "lb"),
  22155. name: "Back",
  22156. image: {
  22157. source: "./media/characters/ofelia/back.svg",
  22158. extra: 564 / 559.5,
  22159. bottom: 8.69 / 573.02
  22160. }
  22161. },
  22162. maw: {
  22163. height: math.unit(1, "feet"),
  22164. name: "Maw",
  22165. image: {
  22166. source: "./media/characters/ofelia/maw.svg"
  22167. }
  22168. },
  22169. foot: {
  22170. height: math.unit(1.949, "feet"),
  22171. name: "Foot",
  22172. image: {
  22173. source: "./media/characters/ofelia/foot.svg"
  22174. }
  22175. },
  22176. },
  22177. [
  22178. {
  22179. name: "Canon Height",
  22180. height: math.unit(2000, "miles"),
  22181. default: true
  22182. },
  22183. ]
  22184. ))
  22185. characterMakers.push(() => makeCharacter(
  22186. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22187. {
  22188. front: {
  22189. height: math.unit(6, "feet"),
  22190. weight: math.unit(150, "lb"),
  22191. name: "Front",
  22192. image: {
  22193. source: "./media/characters/samuel/front.svg",
  22194. extra: 265 / 258,
  22195. bottom: 2 / 266.1566
  22196. }
  22197. },
  22198. },
  22199. [
  22200. {
  22201. name: "Macro",
  22202. height: math.unit(100, "feet"),
  22203. default: true
  22204. },
  22205. {
  22206. name: "Full Size",
  22207. height: math.unit(1000, "miles")
  22208. },
  22209. ]
  22210. ))
  22211. characterMakers.push(() => makeCharacter(
  22212. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22213. {
  22214. front: {
  22215. height: math.unit(6, "feet"),
  22216. weight: math.unit(300, "lb"),
  22217. name: "Front",
  22218. image: {
  22219. source: "./media/characters/beishir-kiel/front.svg",
  22220. extra: 569 / 547,
  22221. bottom: 41.9 / 609
  22222. }
  22223. },
  22224. maw: {
  22225. height: math.unit(6 * 0.202, "feet"),
  22226. name: "Maw",
  22227. image: {
  22228. source: "./media/characters/beishir-kiel/maw.svg"
  22229. }
  22230. },
  22231. },
  22232. [
  22233. {
  22234. name: "Macro",
  22235. height: math.unit(300, "feet"),
  22236. default: true
  22237. },
  22238. ]
  22239. ))
  22240. characterMakers.push(() => makeCharacter(
  22241. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22242. {
  22243. front: {
  22244. height: math.unit(5 + 7/12, "feet"),
  22245. weight: math.unit(120, "lb"),
  22246. name: "Front",
  22247. image: {
  22248. source: "./media/characters/logan-grey/front.svg",
  22249. extra: 1836/1738,
  22250. bottom: 108/1944
  22251. }
  22252. },
  22253. back: {
  22254. height: math.unit(5 + 7/12, "feet"),
  22255. weight: math.unit(120, "lb"),
  22256. name: "Back",
  22257. image: {
  22258. source: "./media/characters/logan-grey/back.svg",
  22259. extra: 1880/1794,
  22260. bottom: 24/1904
  22261. }
  22262. },
  22263. frontSfw: {
  22264. height: math.unit(5 + 7/12, "feet"),
  22265. weight: math.unit(120, "lb"),
  22266. name: "Front (SFW)",
  22267. image: {
  22268. source: "./media/characters/logan-grey/front-sfw.svg",
  22269. extra: 1836/1738,
  22270. bottom: 108/1944
  22271. }
  22272. },
  22273. backSfw: {
  22274. height: math.unit(5 + 7/12, "feet"),
  22275. weight: math.unit(120, "lb"),
  22276. name: "Back (SFW)",
  22277. image: {
  22278. source: "./media/characters/logan-grey/back-sfw.svg",
  22279. extra: 1880/1794,
  22280. bottom: 24/1904
  22281. }
  22282. },
  22283. hands: {
  22284. height: math.unit(0.84, "feet"),
  22285. name: "Hands",
  22286. image: {
  22287. source: "./media/characters/logan-grey/hands.svg"
  22288. }
  22289. },
  22290. paws: {
  22291. height: math.unit(0.72, "feet"),
  22292. name: "Paws",
  22293. image: {
  22294. source: "./media/characters/logan-grey/paws.svg"
  22295. }
  22296. },
  22297. cock: {
  22298. height: math.unit(1.45, "feet"),
  22299. name: "Cock",
  22300. image: {
  22301. source: "./media/characters/logan-grey/cock.svg"
  22302. }
  22303. },
  22304. cockAlt: {
  22305. height: math.unit(1.437, "feet"),
  22306. name: "Cock (alt)",
  22307. image: {
  22308. source: "./media/characters/logan-grey/cock-alt.svg"
  22309. }
  22310. },
  22311. },
  22312. [
  22313. {
  22314. name: "Normal",
  22315. height: math.unit(5 + 8 / 12, "feet")
  22316. },
  22317. {
  22318. name: "The 500 Foot Femboy",
  22319. height: math.unit(500, "feet"),
  22320. default: true
  22321. },
  22322. {
  22323. name: "Megmacro",
  22324. height: math.unit(20, "miles")
  22325. },
  22326. ]
  22327. ))
  22328. characterMakers.push(() => makeCharacter(
  22329. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22330. {
  22331. front: {
  22332. height: math.unit(8 + 2 / 12, "feet"),
  22333. weight: math.unit(275, "lb"),
  22334. name: "Front",
  22335. image: {
  22336. source: "./media/characters/draganta/front.svg",
  22337. extra: 1177 / 1135,
  22338. bottom: 33.46 / 1212.1
  22339. }
  22340. },
  22341. },
  22342. [
  22343. {
  22344. name: "Normal",
  22345. height: math.unit(8 + 6 / 12, "feet"),
  22346. default: true
  22347. },
  22348. {
  22349. name: "Macro",
  22350. height: math.unit(150, "feet")
  22351. },
  22352. {
  22353. name: "Megamacro",
  22354. height: math.unit(1000, "miles")
  22355. },
  22356. ]
  22357. ))
  22358. characterMakers.push(() => makeCharacter(
  22359. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22360. {
  22361. front: {
  22362. height: math.unit(1.72, "m"),
  22363. weight: math.unit(80, "lb"),
  22364. name: "Front",
  22365. image: {
  22366. source: "./media/characters/voski/front.svg",
  22367. extra: 2076.22 / 2022.4,
  22368. bottom: 102.7 / 2177.3866
  22369. }
  22370. },
  22371. frontNsfw: {
  22372. height: math.unit(1.72, "m"),
  22373. weight: math.unit(80, "lb"),
  22374. name: "Front (NSFW)",
  22375. image: {
  22376. source: "./media/characters/voski/front-nsfw.svg",
  22377. extra: 2076.22 / 2022.4,
  22378. bottom: 102.7 / 2177.3866
  22379. }
  22380. },
  22381. back: {
  22382. height: math.unit(1.72, "m"),
  22383. weight: math.unit(80, "lb"),
  22384. name: "Back",
  22385. image: {
  22386. source: "./media/characters/voski/back.svg",
  22387. extra: 2104 / 2051,
  22388. bottom: 10.45 / 2113.63
  22389. }
  22390. },
  22391. },
  22392. [
  22393. {
  22394. name: "Normal",
  22395. height: math.unit(1.72, "m")
  22396. },
  22397. {
  22398. name: "Macro",
  22399. height: math.unit(55, "m"),
  22400. default: true
  22401. },
  22402. {
  22403. name: "Macro+",
  22404. height: math.unit(300, "m")
  22405. },
  22406. {
  22407. name: "Macro++",
  22408. height: math.unit(700, "m")
  22409. },
  22410. {
  22411. name: "Macro+++",
  22412. height: math.unit(4500, "m")
  22413. },
  22414. {
  22415. name: "Macro++++",
  22416. height: math.unit(45, "km")
  22417. },
  22418. {
  22419. name: "Macro+++++",
  22420. height: math.unit(1220, "km")
  22421. },
  22422. ]
  22423. ))
  22424. characterMakers.push(() => makeCharacter(
  22425. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22426. {
  22427. front: {
  22428. height: math.unit(2.3, "m"),
  22429. weight: math.unit(304, "kg"),
  22430. name: "Front",
  22431. image: {
  22432. source: "./media/characters/icowom-lee/front.svg",
  22433. extra: 985 / 955,
  22434. bottom: 25.4 / 1012
  22435. }
  22436. },
  22437. fronttentacles: {
  22438. height: math.unit(2.3, "m"),
  22439. weight: math.unit(304, "kg"),
  22440. name: "Front-tentacles",
  22441. image: {
  22442. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22443. extra: 985 / 955,
  22444. bottom: 25.4 / 1012
  22445. }
  22446. },
  22447. back: {
  22448. height: math.unit(2.3, "m"),
  22449. weight: math.unit(304, "kg"),
  22450. name: "Back",
  22451. image: {
  22452. source: "./media/characters/icowom-lee/back.svg",
  22453. extra: 975 / 954,
  22454. bottom: 9.5 / 985
  22455. }
  22456. },
  22457. backtentacles: {
  22458. height: math.unit(2.3, "m"),
  22459. weight: math.unit(304, "kg"),
  22460. name: "Back-tentacles",
  22461. image: {
  22462. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22463. extra: 975 / 954,
  22464. bottom: 9.5 / 985
  22465. }
  22466. },
  22467. frontDressed: {
  22468. height: math.unit(2.3, "m"),
  22469. weight: math.unit(304, "kg"),
  22470. name: "Front (Dressed)",
  22471. image: {
  22472. source: "./media/characters/icowom-lee/front-dressed.svg",
  22473. extra: 3076 / 2933,
  22474. bottom: 51.4 / 3125.1889
  22475. }
  22476. },
  22477. rump: {
  22478. height: math.unit(0.776, "meters"),
  22479. name: "Rump",
  22480. image: {
  22481. source: "./media/characters/icowom-lee/rump.svg"
  22482. }
  22483. },
  22484. genitals: {
  22485. height: math.unit(0.78, "meters"),
  22486. name: "Genitals",
  22487. image: {
  22488. source: "./media/characters/icowom-lee/genitals.svg"
  22489. }
  22490. },
  22491. },
  22492. [
  22493. {
  22494. name: "Normal",
  22495. height: math.unit(2.3, "meters"),
  22496. default: true
  22497. },
  22498. {
  22499. name: "Macro",
  22500. height: math.unit(94, "meters"),
  22501. default: true
  22502. },
  22503. ]
  22504. ))
  22505. characterMakers.push(() => makeCharacter(
  22506. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22507. {
  22508. front: {
  22509. height: math.unit(22, "meters"),
  22510. weight: math.unit(21000, "kg"),
  22511. name: "Front",
  22512. image: {
  22513. source: "./media/characters/shock-diamond/front.svg",
  22514. extra: 2204 / 2053,
  22515. bottom: 65 / 2239.47
  22516. }
  22517. },
  22518. frontNude: {
  22519. height: math.unit(22, "meters"),
  22520. weight: math.unit(21000, "kg"),
  22521. name: "Front (Nude)",
  22522. image: {
  22523. source: "./media/characters/shock-diamond/front-nude.svg",
  22524. extra: 2514 / 2285,
  22525. bottom: 13 / 2527.56
  22526. }
  22527. },
  22528. },
  22529. [
  22530. {
  22531. name: "Normal",
  22532. height: math.unit(3, "meters")
  22533. },
  22534. {
  22535. name: "Macro",
  22536. height: math.unit(22, "meters"),
  22537. default: true
  22538. },
  22539. ]
  22540. ))
  22541. characterMakers.push(() => makeCharacter(
  22542. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22543. {
  22544. front: {
  22545. height: math.unit(5 + 4 / 12, "feet"),
  22546. weight: math.unit(120, "lb"),
  22547. name: "Front",
  22548. image: {
  22549. source: "./media/characters/rory/front.svg",
  22550. extra: 1318/1241,
  22551. bottom: 42/1360
  22552. }
  22553. },
  22554. back: {
  22555. height: math.unit(5 + 4 / 12, "feet"),
  22556. weight: math.unit(120, "lb"),
  22557. name: "Back",
  22558. image: {
  22559. source: "./media/characters/rory/back.svg",
  22560. extra: 1318/1241,
  22561. bottom: 42/1360
  22562. }
  22563. },
  22564. butt: {
  22565. height: math.unit(1.74, "feet"),
  22566. name: "Butt",
  22567. image: {
  22568. source: "./media/characters/rory/butt.svg"
  22569. }
  22570. },
  22571. dick: {
  22572. height: math.unit(1.02, "feet"),
  22573. name: "Dick",
  22574. image: {
  22575. source: "./media/characters/rory/dick.svg"
  22576. }
  22577. },
  22578. paws: {
  22579. height: math.unit(1, "feet"),
  22580. name: "Paws",
  22581. image: {
  22582. source: "./media/characters/rory/paws.svg"
  22583. }
  22584. },
  22585. frontAlt: {
  22586. height: math.unit(5 + 4 / 12, "feet"),
  22587. weight: math.unit(120, "lb"),
  22588. name: "Front (Alt)",
  22589. image: {
  22590. source: "./media/characters/rory/front-alt.svg",
  22591. extra: 589 / 556,
  22592. bottom: 45.7 / 635.76
  22593. }
  22594. },
  22595. frontAltNude: {
  22596. height: math.unit(5 + 4 / 12, "feet"),
  22597. weight: math.unit(120, "lb"),
  22598. name: "Front (Alt, Nude)",
  22599. image: {
  22600. source: "./media/characters/rory/front-alt-nude.svg",
  22601. extra: 589 / 556,
  22602. bottom: 45.7 / 635.76
  22603. }
  22604. },
  22605. side: {
  22606. height: math.unit(5 + 4 / 12, "feet"),
  22607. weight: math.unit(120, "lb"),
  22608. name: "Side",
  22609. image: {
  22610. source: "./media/characters/rory/side.svg",
  22611. extra: 597 / 564,
  22612. bottom: 55 / 653
  22613. }
  22614. },
  22615. backAlt: {
  22616. height: math.unit(5 + 4 / 12, "feet"),
  22617. weight: math.unit(120, "lb"),
  22618. name: "Back (Alt)",
  22619. image: {
  22620. source: "./media/characters/rory/back-alt.svg",
  22621. extra: 620 / 585,
  22622. bottom: 8.86 / 630.43
  22623. }
  22624. },
  22625. dickAlt: {
  22626. height: math.unit(0.86, "feet"),
  22627. name: "Dick (Alt)",
  22628. image: {
  22629. source: "./media/characters/rory/dick-alt.svg"
  22630. }
  22631. },
  22632. },
  22633. [
  22634. {
  22635. name: "Normal",
  22636. height: math.unit(5 + 4 / 12, "feet"),
  22637. default: true
  22638. },
  22639. {
  22640. name: "Macro",
  22641. height: math.unit(100, "feet")
  22642. },
  22643. {
  22644. name: "Macro+",
  22645. height: math.unit(140, "feet")
  22646. },
  22647. {
  22648. name: "Macro++",
  22649. height: math.unit(300, "feet")
  22650. },
  22651. ]
  22652. ))
  22653. characterMakers.push(() => makeCharacter(
  22654. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22655. {
  22656. front: {
  22657. height: math.unit(5 + 9 / 12, "feet"),
  22658. weight: math.unit(190, "lb"),
  22659. name: "Front",
  22660. image: {
  22661. source: "./media/characters/sprisk/front.svg",
  22662. extra: 1225 / 1180,
  22663. bottom: 42.7 / 1266.4
  22664. }
  22665. },
  22666. frontNsfw: {
  22667. height: math.unit(5 + 9 / 12, "feet"),
  22668. weight: math.unit(190, "lb"),
  22669. name: "Front (NSFW)",
  22670. image: {
  22671. source: "./media/characters/sprisk/front-nsfw.svg",
  22672. extra: 1225 / 1180,
  22673. bottom: 42.7 / 1266.4
  22674. }
  22675. },
  22676. back: {
  22677. height: math.unit(5 + 9 / 12, "feet"),
  22678. weight: math.unit(190, "lb"),
  22679. name: "Back",
  22680. image: {
  22681. source: "./media/characters/sprisk/back.svg",
  22682. extra: 1247 / 1200,
  22683. bottom: 5.6 / 1253.04
  22684. }
  22685. },
  22686. },
  22687. [
  22688. {
  22689. name: "Tiny",
  22690. height: math.unit(2, "inches")
  22691. },
  22692. {
  22693. name: "Normal",
  22694. height: math.unit(5 + 9 / 12, "feet"),
  22695. default: true
  22696. },
  22697. {
  22698. name: "Mini Macro",
  22699. height: math.unit(18, "feet")
  22700. },
  22701. {
  22702. name: "Macro",
  22703. height: math.unit(100, "feet")
  22704. },
  22705. {
  22706. name: "MACRO",
  22707. height: math.unit(50, "miles")
  22708. },
  22709. {
  22710. name: "M A C R O",
  22711. height: math.unit(300, "miles")
  22712. },
  22713. ]
  22714. ))
  22715. characterMakers.push(() => makeCharacter(
  22716. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22717. {
  22718. side: {
  22719. height: math.unit(15.6, "meters"),
  22720. weight: math.unit(700000, "kg"),
  22721. name: "Side",
  22722. image: {
  22723. source: "./media/characters/bunsen/side.svg",
  22724. extra: 1644 / 358
  22725. }
  22726. },
  22727. foot: {
  22728. height: math.unit(1.611 * 1644 / 358, "meter"),
  22729. name: "Foot",
  22730. image: {
  22731. source: "./media/characters/bunsen/foot.svg"
  22732. }
  22733. },
  22734. },
  22735. [
  22736. {
  22737. name: "Small",
  22738. height: math.unit(10, "feet")
  22739. },
  22740. {
  22741. name: "Normal",
  22742. height: math.unit(15.6, "meters"),
  22743. default: true
  22744. },
  22745. ]
  22746. ))
  22747. characterMakers.push(() => makeCharacter(
  22748. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22749. {
  22750. front: {
  22751. height: math.unit(4 + 11 / 12, "feet"),
  22752. weight: math.unit(140, "lb"),
  22753. name: "Front",
  22754. image: {
  22755. source: "./media/characters/sesh/front.svg",
  22756. extra: 3420 / 3231,
  22757. bottom: 72 / 3949.5
  22758. }
  22759. },
  22760. },
  22761. [
  22762. {
  22763. name: "Normal",
  22764. height: math.unit(4 + 11 / 12, "feet")
  22765. },
  22766. {
  22767. name: "Grown",
  22768. height: math.unit(15, "feet"),
  22769. default: true
  22770. },
  22771. {
  22772. name: "Macro",
  22773. height: math.unit(1500, "feet")
  22774. },
  22775. {
  22776. name: "Megamacro",
  22777. height: math.unit(30, "miles")
  22778. },
  22779. {
  22780. name: "Continental",
  22781. height: math.unit(3000, "miles")
  22782. },
  22783. {
  22784. name: "Gravity Mass",
  22785. height: math.unit(300000, "miles")
  22786. },
  22787. {
  22788. name: "Planet Buster",
  22789. height: math.unit(30000000, "miles")
  22790. },
  22791. {
  22792. name: "Big",
  22793. height: math.unit(3000000000, "miles")
  22794. },
  22795. ]
  22796. ))
  22797. characterMakers.push(() => makeCharacter(
  22798. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22799. {
  22800. front: {
  22801. height: math.unit(9, "feet"),
  22802. weight: math.unit(350, "lb"),
  22803. name: "Front",
  22804. image: {
  22805. source: "./media/characters/pepper/front.svg",
  22806. extra: 1448 / 1312,
  22807. bottom: 9.4 / 1457.88
  22808. }
  22809. },
  22810. back: {
  22811. height: math.unit(9, "feet"),
  22812. weight: math.unit(350, "lb"),
  22813. name: "Back",
  22814. image: {
  22815. source: "./media/characters/pepper/back.svg",
  22816. extra: 1423 / 1300,
  22817. bottom: 4.6 / 1429
  22818. }
  22819. },
  22820. maw: {
  22821. height: math.unit(0.932, "feet"),
  22822. name: "Maw",
  22823. image: {
  22824. source: "./media/characters/pepper/maw.svg"
  22825. }
  22826. },
  22827. },
  22828. [
  22829. {
  22830. name: "Normal",
  22831. height: math.unit(9, "feet"),
  22832. default: true
  22833. },
  22834. ]
  22835. ))
  22836. characterMakers.push(() => makeCharacter(
  22837. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22838. {
  22839. front: {
  22840. height: math.unit(6, "feet"),
  22841. weight: math.unit(150, "lb"),
  22842. name: "Front",
  22843. image: {
  22844. source: "./media/characters/maelstrom/front.svg",
  22845. extra: 2100 / 1883,
  22846. bottom: 94 / 2196.7
  22847. }
  22848. },
  22849. },
  22850. [
  22851. {
  22852. name: "Less Kaiju",
  22853. height: math.unit(200, "feet")
  22854. },
  22855. {
  22856. name: "Kaiju",
  22857. height: math.unit(400, "feet"),
  22858. default: true
  22859. },
  22860. {
  22861. name: "Kaiju-er",
  22862. height: math.unit(600, "feet")
  22863. },
  22864. ]
  22865. ))
  22866. characterMakers.push(() => makeCharacter(
  22867. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22868. {
  22869. front: {
  22870. height: math.unit(6 + 5 / 12, "feet"),
  22871. weight: math.unit(180, "lb"),
  22872. name: "Front",
  22873. image: {
  22874. source: "./media/characters/lexir/front.svg",
  22875. extra: 180 / 172,
  22876. bottom: 12 / 192
  22877. }
  22878. },
  22879. back: {
  22880. height: math.unit(6 + 5 / 12, "feet"),
  22881. weight: math.unit(180, "lb"),
  22882. name: "Back",
  22883. image: {
  22884. source: "./media/characters/lexir/back.svg",
  22885. extra: 183.84 / 175.5,
  22886. bottom: 3.1 / 187
  22887. }
  22888. },
  22889. },
  22890. [
  22891. {
  22892. name: "Very Smal",
  22893. height: math.unit(1, "nm")
  22894. },
  22895. {
  22896. name: "Normal",
  22897. height: math.unit(6 + 5 / 12, "feet"),
  22898. default: true
  22899. },
  22900. {
  22901. name: "Macro",
  22902. height: math.unit(1, "mile")
  22903. },
  22904. {
  22905. name: "Megamacro",
  22906. height: math.unit(50, "miles")
  22907. },
  22908. ]
  22909. ))
  22910. characterMakers.push(() => makeCharacter(
  22911. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22912. {
  22913. front: {
  22914. height: math.unit(1.5, "meters"),
  22915. weight: math.unit(100, "lb"),
  22916. name: "Front",
  22917. image: {
  22918. source: "./media/characters/maksio/front.svg",
  22919. extra: 1549 / 1531,
  22920. bottom: 123.7 / 1674.5429
  22921. }
  22922. },
  22923. back: {
  22924. height: math.unit(1.5, "meters"),
  22925. weight: math.unit(100, "lb"),
  22926. name: "Back",
  22927. image: {
  22928. source: "./media/characters/maksio/back.svg",
  22929. extra: 1541 / 1509,
  22930. bottom: 97 / 1639
  22931. }
  22932. },
  22933. hand: {
  22934. height: math.unit(0.621, "feet"),
  22935. name: "Hand",
  22936. image: {
  22937. source: "./media/characters/maksio/hand.svg"
  22938. }
  22939. },
  22940. foot: {
  22941. height: math.unit(1.611, "feet"),
  22942. name: "Foot",
  22943. image: {
  22944. source: "./media/characters/maksio/foot.svg"
  22945. }
  22946. },
  22947. },
  22948. [
  22949. {
  22950. name: "Shrunken",
  22951. height: math.unit(10, "cm")
  22952. },
  22953. {
  22954. name: "Normal",
  22955. height: math.unit(150, "cm"),
  22956. default: true
  22957. },
  22958. ]
  22959. ))
  22960. characterMakers.push(() => makeCharacter(
  22961. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22962. {
  22963. front: {
  22964. height: math.unit(100, "feet"),
  22965. name: "Front",
  22966. image: {
  22967. source: "./media/characters/erza-bear/front.svg",
  22968. extra: 2449 / 2390,
  22969. bottom: 46 / 2494
  22970. }
  22971. },
  22972. back: {
  22973. height: math.unit(100, "feet"),
  22974. name: "Back",
  22975. image: {
  22976. source: "./media/characters/erza-bear/back.svg",
  22977. extra: 2489 / 2430,
  22978. bottom: 85.4 / 2480
  22979. }
  22980. },
  22981. tail: {
  22982. height: math.unit(42, "feet"),
  22983. name: "Tail",
  22984. image: {
  22985. source: "./media/characters/erza-bear/tail.svg"
  22986. }
  22987. },
  22988. tongue: {
  22989. height: math.unit(8, "feet"),
  22990. name: "Tongue",
  22991. image: {
  22992. source: "./media/characters/erza-bear/tongue.svg"
  22993. }
  22994. },
  22995. dick: {
  22996. height: math.unit(10.5, "feet"),
  22997. name: "Dick",
  22998. image: {
  22999. source: "./media/characters/erza-bear/dick.svg"
  23000. }
  23001. },
  23002. dickVertical: {
  23003. height: math.unit(16.9, "feet"),
  23004. name: "Dick (Vertical)",
  23005. image: {
  23006. source: "./media/characters/erza-bear/dick-vertical.svg"
  23007. }
  23008. },
  23009. },
  23010. [
  23011. {
  23012. name: "Macro",
  23013. height: math.unit(100, "feet"),
  23014. default: true
  23015. },
  23016. ]
  23017. ))
  23018. characterMakers.push(() => makeCharacter(
  23019. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23020. {
  23021. front: {
  23022. height: math.unit(172, "cm"),
  23023. weight: math.unit(73, "kg"),
  23024. name: "Front",
  23025. image: {
  23026. source: "./media/characters/violet-flor/front.svg",
  23027. extra: 1530 / 1442,
  23028. bottom: 61.9 / 1588.8
  23029. }
  23030. },
  23031. back: {
  23032. height: math.unit(180, "cm"),
  23033. weight: math.unit(73, "kg"),
  23034. name: "Back",
  23035. image: {
  23036. source: "./media/characters/violet-flor/back.svg",
  23037. extra: 1692 / 1630,
  23038. bottom: 20 / 1712
  23039. }
  23040. },
  23041. },
  23042. [
  23043. {
  23044. name: "Normal",
  23045. height: math.unit(172, "cm"),
  23046. default: true
  23047. },
  23048. ]
  23049. ))
  23050. characterMakers.push(() => makeCharacter(
  23051. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23052. {
  23053. front: {
  23054. height: math.unit(6, "feet"),
  23055. weight: math.unit(220, "lb"),
  23056. name: "Front",
  23057. image: {
  23058. source: "./media/characters/lynn-rhea/front.svg",
  23059. extra: 310 / 273
  23060. }
  23061. },
  23062. back: {
  23063. height: math.unit(6, "feet"),
  23064. weight: math.unit(220, "lb"),
  23065. name: "Back",
  23066. image: {
  23067. source: "./media/characters/lynn-rhea/back.svg",
  23068. extra: 310 / 273
  23069. }
  23070. },
  23071. dicks: {
  23072. height: math.unit(0.9, "feet"),
  23073. name: "Dicks",
  23074. image: {
  23075. source: "./media/characters/lynn-rhea/dicks.svg"
  23076. }
  23077. },
  23078. slit: {
  23079. height: math.unit(0.4, "feet"),
  23080. name: "Slit",
  23081. image: {
  23082. source: "./media/characters/lynn-rhea/slit.svg"
  23083. }
  23084. },
  23085. },
  23086. [
  23087. {
  23088. name: "Micro",
  23089. height: math.unit(1, "inch")
  23090. },
  23091. {
  23092. name: "Macro",
  23093. height: math.unit(60, "feet"),
  23094. default: true
  23095. },
  23096. {
  23097. name: "Megamacro",
  23098. height: math.unit(2, "miles")
  23099. },
  23100. {
  23101. name: "Gigamacro",
  23102. height: math.unit(3, "earths")
  23103. },
  23104. {
  23105. name: "Galactic",
  23106. height: math.unit(0.8, "galaxies")
  23107. },
  23108. ]
  23109. ))
  23110. characterMakers.push(() => makeCharacter(
  23111. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23112. {
  23113. front: {
  23114. height: math.unit(1600, "feet"),
  23115. weight: math.unit(85758785169, "kg"),
  23116. name: "Front",
  23117. image: {
  23118. source: "./media/characters/valathos/front.svg",
  23119. extra: 1451 / 1339
  23120. }
  23121. },
  23122. },
  23123. [
  23124. {
  23125. name: "Macro",
  23126. height: math.unit(1600, "feet"),
  23127. default: true
  23128. },
  23129. ]
  23130. ))
  23131. characterMakers.push(() => makeCharacter(
  23132. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23133. {
  23134. front: {
  23135. height: math.unit(7 + 5 / 12, "feet"),
  23136. weight: math.unit(300, "lb"),
  23137. name: "Front",
  23138. image: {
  23139. source: "./media/characters/azula/front.svg",
  23140. extra: 3208 / 2880,
  23141. bottom: 80.2 / 3277
  23142. }
  23143. },
  23144. back: {
  23145. height: math.unit(7 + 5 / 12, "feet"),
  23146. weight: math.unit(300, "lb"),
  23147. name: "Back",
  23148. image: {
  23149. source: "./media/characters/azula/back.svg",
  23150. extra: 3169 / 2822,
  23151. bottom: 150.6 / 3321
  23152. }
  23153. },
  23154. },
  23155. [
  23156. {
  23157. name: "Normal",
  23158. height: math.unit(7 + 5 / 12, "feet"),
  23159. default: true
  23160. },
  23161. {
  23162. name: "Big",
  23163. height: math.unit(20, "feet")
  23164. },
  23165. ]
  23166. ))
  23167. characterMakers.push(() => makeCharacter(
  23168. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23169. {
  23170. front: {
  23171. height: math.unit(5 + 1 / 12, "feet"),
  23172. weight: math.unit(110, "lb"),
  23173. name: "Front",
  23174. image: {
  23175. source: "./media/characters/rupert/front.svg",
  23176. extra: 1549 / 1495,
  23177. bottom: 54.2 / 1604.4
  23178. }
  23179. },
  23180. },
  23181. [
  23182. {
  23183. name: "Normal",
  23184. height: math.unit(5 + 1 / 12, "feet"),
  23185. default: true
  23186. },
  23187. ]
  23188. ))
  23189. characterMakers.push(() => makeCharacter(
  23190. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23191. {
  23192. front: {
  23193. height: math.unit(8 + 4 / 12, "feet"),
  23194. weight: math.unit(350, "lb"),
  23195. name: "Front",
  23196. image: {
  23197. source: "./media/characters/sheera-castellar/front.svg",
  23198. extra: 1957 / 1894,
  23199. bottom: 26.97 / 1975.017
  23200. }
  23201. },
  23202. side: {
  23203. height: math.unit(8 + 4 / 12, "feet"),
  23204. weight: math.unit(350, "lb"),
  23205. name: "Side",
  23206. image: {
  23207. source: "./media/characters/sheera-castellar/side.svg",
  23208. extra: 1957 / 1894
  23209. }
  23210. },
  23211. back: {
  23212. height: math.unit(8 + 4 / 12, "feet"),
  23213. weight: math.unit(350, "lb"),
  23214. name: "Back",
  23215. image: {
  23216. source: "./media/characters/sheera-castellar/back.svg",
  23217. extra: 1957 / 1894
  23218. }
  23219. },
  23220. angled: {
  23221. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23222. weight: math.unit(350, "lb"),
  23223. name: "Angled",
  23224. image: {
  23225. source: "./media/characters/sheera-castellar/angled.svg",
  23226. extra: 1807 / 1707,
  23227. bottom: 68 / 1875
  23228. }
  23229. },
  23230. genitals: {
  23231. height: math.unit(2.2, "feet"),
  23232. name: "Genitals",
  23233. image: {
  23234. source: "./media/characters/sheera-castellar/genitals.svg"
  23235. }
  23236. },
  23237. taur: {
  23238. height: math.unit(10 + 6/12, "feet"),
  23239. name: "Taur",
  23240. image: {
  23241. source: "./media/characters/sheera-castellar/taur.svg",
  23242. extra: 2017/1909,
  23243. bottom: 185/2202
  23244. }
  23245. },
  23246. },
  23247. [
  23248. {
  23249. name: "Normal",
  23250. height: math.unit(8 + 4 / 12, "feet")
  23251. },
  23252. {
  23253. name: "Macro",
  23254. height: math.unit(150, "feet"),
  23255. default: true
  23256. },
  23257. {
  23258. name: "Macro+",
  23259. height: math.unit(800, "feet")
  23260. },
  23261. ]
  23262. ))
  23263. characterMakers.push(() => makeCharacter(
  23264. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23265. {
  23266. front: {
  23267. height: math.unit(6, "feet"),
  23268. weight: math.unit(150, "lb"),
  23269. name: "Front",
  23270. image: {
  23271. source: "./media/characters/jaipur/front.svg",
  23272. extra: 3860 / 3731,
  23273. bottom: 287 / 4140
  23274. }
  23275. },
  23276. back: {
  23277. height: math.unit(6, "feet"),
  23278. weight: math.unit(150, "lb"),
  23279. name: "Back",
  23280. image: {
  23281. source: "./media/characters/jaipur/back.svg",
  23282. extra: 4060 / 3930,
  23283. bottom: 151 / 4200
  23284. }
  23285. },
  23286. },
  23287. [
  23288. {
  23289. name: "Normal",
  23290. height: math.unit(1.85, "meters"),
  23291. default: true
  23292. },
  23293. {
  23294. name: "Macro",
  23295. height: math.unit(150, "meters")
  23296. },
  23297. {
  23298. name: "Macro+",
  23299. height: math.unit(0.5, "miles")
  23300. },
  23301. {
  23302. name: "Macro++",
  23303. height: math.unit(2.5, "miles")
  23304. },
  23305. {
  23306. name: "Macro+++",
  23307. height: math.unit(12, "miles")
  23308. },
  23309. {
  23310. name: "Macro++++",
  23311. height: math.unit(120, "miles")
  23312. },
  23313. {
  23314. name: "Macro+++++",
  23315. height: math.unit(1200, "miles")
  23316. },
  23317. ]
  23318. ))
  23319. characterMakers.push(() => makeCharacter(
  23320. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23321. {
  23322. front: {
  23323. height: math.unit(6, "feet"),
  23324. weight: math.unit(150, "lb"),
  23325. name: "Front",
  23326. image: {
  23327. source: "./media/characters/sheila-wolf/front.svg",
  23328. extra: 1931 / 1808,
  23329. bottom: 29.5 / 1960
  23330. }
  23331. },
  23332. dick: {
  23333. height: math.unit(1.464, "feet"),
  23334. name: "Dick",
  23335. image: {
  23336. source: "./media/characters/sheila-wolf/dick.svg"
  23337. }
  23338. },
  23339. muzzle: {
  23340. height: math.unit(0.513, "feet"),
  23341. name: "Muzzle",
  23342. image: {
  23343. source: "./media/characters/sheila-wolf/muzzle.svg"
  23344. }
  23345. },
  23346. },
  23347. [
  23348. {
  23349. name: "Macro",
  23350. height: math.unit(70, "feet"),
  23351. default: true
  23352. },
  23353. ]
  23354. ))
  23355. characterMakers.push(() => makeCharacter(
  23356. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23357. {
  23358. front: {
  23359. height: math.unit(32, "meters"),
  23360. weight: math.unit(300000, "kg"),
  23361. name: "Front",
  23362. image: {
  23363. source: "./media/characters/almor/front.svg",
  23364. extra: 1408 / 1322,
  23365. bottom: 94.6 / 1506.5
  23366. }
  23367. },
  23368. },
  23369. [
  23370. {
  23371. name: "Macro",
  23372. height: math.unit(32, "meters"),
  23373. default: true
  23374. },
  23375. ]
  23376. ))
  23377. characterMakers.push(() => makeCharacter(
  23378. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23379. {
  23380. front: {
  23381. height: math.unit(7, "feet"),
  23382. weight: math.unit(200, "lb"),
  23383. name: "Front",
  23384. image: {
  23385. source: "./media/characters/silver/front.svg",
  23386. extra: 472.1 / 450.5,
  23387. bottom: 26.5 / 499.424
  23388. }
  23389. },
  23390. },
  23391. [
  23392. {
  23393. name: "Normal",
  23394. height: math.unit(7, "feet"),
  23395. default: true
  23396. },
  23397. {
  23398. name: "Macro",
  23399. height: math.unit(800, "feet")
  23400. },
  23401. {
  23402. name: "Megamacro",
  23403. height: math.unit(250, "miles")
  23404. },
  23405. ]
  23406. ))
  23407. characterMakers.push(() => makeCharacter(
  23408. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23409. {
  23410. front: {
  23411. height: math.unit(6, "feet"),
  23412. weight: math.unit(150, "lb"),
  23413. name: "Front",
  23414. image: {
  23415. source: "./media/characters/pliskin/front.svg",
  23416. extra: 1469 / 1359,
  23417. bottom: 70 / 1540
  23418. }
  23419. },
  23420. },
  23421. [
  23422. {
  23423. name: "Micro",
  23424. height: math.unit(3, "inches")
  23425. },
  23426. {
  23427. name: "Normal",
  23428. height: math.unit(5 + 11 / 12, "feet"),
  23429. default: true
  23430. },
  23431. {
  23432. name: "Macro",
  23433. height: math.unit(120, "feet")
  23434. },
  23435. ]
  23436. ))
  23437. characterMakers.push(() => makeCharacter(
  23438. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23439. {
  23440. front: {
  23441. height: math.unit(6, "feet"),
  23442. weight: math.unit(150, "lb"),
  23443. name: "Front",
  23444. image: {
  23445. source: "./media/characters/sammy/front.svg",
  23446. extra: 1193 / 1089,
  23447. bottom: 30.5 / 1226
  23448. }
  23449. },
  23450. },
  23451. [
  23452. {
  23453. name: "Macro",
  23454. height: math.unit(1700, "feet"),
  23455. default: true
  23456. },
  23457. {
  23458. name: "Examacro",
  23459. height: math.unit(2.5e9, "lightyears")
  23460. },
  23461. ]
  23462. ))
  23463. characterMakers.push(() => makeCharacter(
  23464. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23465. {
  23466. front: {
  23467. height: math.unit(21, "meters"),
  23468. weight: math.unit(12, "tonnes"),
  23469. name: "Front",
  23470. image: {
  23471. source: "./media/characters/kuru/front.svg",
  23472. extra: 4301 / 3785,
  23473. bottom: 371.3 / 4691
  23474. }
  23475. },
  23476. },
  23477. [
  23478. {
  23479. name: "Macro",
  23480. height: math.unit(21, "meters"),
  23481. default: true
  23482. },
  23483. ]
  23484. ))
  23485. characterMakers.push(() => makeCharacter(
  23486. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23487. {
  23488. front: {
  23489. height: math.unit(23, "meters"),
  23490. weight: math.unit(12.2, "tonnes"),
  23491. name: "Front",
  23492. image: {
  23493. source: "./media/characters/rakka/front.svg",
  23494. extra: 4670 / 4169,
  23495. bottom: 301 / 4968.7
  23496. }
  23497. },
  23498. },
  23499. [
  23500. {
  23501. name: "Macro",
  23502. height: math.unit(23, "meters"),
  23503. default: true
  23504. },
  23505. ]
  23506. ))
  23507. characterMakers.push(() => makeCharacter(
  23508. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23509. {
  23510. front: {
  23511. height: math.unit(6, "feet"),
  23512. weight: math.unit(150, "lb"),
  23513. name: "Front",
  23514. image: {
  23515. source: "./media/characters/rhys-feline/front.svg",
  23516. extra: 2488 / 2308,
  23517. bottom: 35.67 / 2519.19
  23518. }
  23519. },
  23520. },
  23521. [
  23522. {
  23523. name: "Really Small",
  23524. height: math.unit(1, "nm")
  23525. },
  23526. {
  23527. name: "Micro",
  23528. height: math.unit(4, "inches")
  23529. },
  23530. {
  23531. name: "Normal",
  23532. height: math.unit(4 + 10 / 12, "feet"),
  23533. default: true
  23534. },
  23535. {
  23536. name: "Macro",
  23537. height: math.unit(100, "feet")
  23538. },
  23539. {
  23540. name: "Megamacto",
  23541. height: math.unit(50, "miles")
  23542. },
  23543. ]
  23544. ))
  23545. characterMakers.push(() => makeCharacter(
  23546. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23547. {
  23548. side: {
  23549. height: math.unit(30, "feet"),
  23550. weight: math.unit(35000, "kg"),
  23551. name: "Side",
  23552. image: {
  23553. source: "./media/characters/alydar/side.svg",
  23554. extra: 234 / 222,
  23555. bottom: 6.5 / 241
  23556. }
  23557. },
  23558. front: {
  23559. height: math.unit(30, "feet"),
  23560. weight: math.unit(35000, "kg"),
  23561. name: "Front",
  23562. image: {
  23563. source: "./media/characters/alydar/front.svg",
  23564. extra: 223.37 / 210.2,
  23565. bottom: 22.3 / 246.76
  23566. }
  23567. },
  23568. top: {
  23569. height: math.unit(64.54, "feet"),
  23570. weight: math.unit(35000, "kg"),
  23571. name: "Top",
  23572. image: {
  23573. source: "./media/characters/alydar/top.svg"
  23574. }
  23575. },
  23576. anthro: {
  23577. height: math.unit(30, "feet"),
  23578. weight: math.unit(9000, "kg"),
  23579. name: "Anthro",
  23580. image: {
  23581. source: "./media/characters/alydar/anthro.svg",
  23582. extra: 432 / 421,
  23583. bottom: 7.18 / 440
  23584. }
  23585. },
  23586. maw: {
  23587. height: math.unit(11.693, "feet"),
  23588. name: "Maw",
  23589. image: {
  23590. source: "./media/characters/alydar/maw.svg"
  23591. }
  23592. },
  23593. head: {
  23594. height: math.unit(11.693, "feet"),
  23595. name: "Head",
  23596. image: {
  23597. source: "./media/characters/alydar/head.svg"
  23598. }
  23599. },
  23600. headAlt: {
  23601. height: math.unit(12.861, "feet"),
  23602. name: "Head (Alt)",
  23603. image: {
  23604. source: "./media/characters/alydar/head-alt.svg"
  23605. }
  23606. },
  23607. wing: {
  23608. height: math.unit(20.712, "feet"),
  23609. name: "Wing",
  23610. image: {
  23611. source: "./media/characters/alydar/wing.svg"
  23612. }
  23613. },
  23614. wingFeather: {
  23615. height: math.unit(9.662, "feet"),
  23616. name: "Wing Feather",
  23617. image: {
  23618. source: "./media/characters/alydar/wing-feather.svg"
  23619. }
  23620. },
  23621. countourFeather: {
  23622. height: math.unit(4.154, "feet"),
  23623. name: "Contour Feather",
  23624. image: {
  23625. source: "./media/characters/alydar/contour-feather.svg"
  23626. }
  23627. },
  23628. },
  23629. [
  23630. {
  23631. name: "Diplomatic",
  23632. height: math.unit(13, "feet"),
  23633. default: true
  23634. },
  23635. {
  23636. name: "Small",
  23637. height: math.unit(30, "feet")
  23638. },
  23639. {
  23640. name: "Normal",
  23641. height: math.unit(95, "feet"),
  23642. default: true
  23643. },
  23644. {
  23645. name: "Large",
  23646. height: math.unit(285, "feet")
  23647. },
  23648. {
  23649. name: "Incomprehensible",
  23650. height: math.unit(450, "megameters")
  23651. },
  23652. ]
  23653. ))
  23654. characterMakers.push(() => makeCharacter(
  23655. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23656. {
  23657. side: {
  23658. height: math.unit(11, "feet"),
  23659. weight: math.unit(1750, "kg"),
  23660. name: "Side",
  23661. image: {
  23662. source: "./media/characters/selicia/side.svg",
  23663. extra: 440 / 396,
  23664. bottom: 24.8 / 465.979
  23665. }
  23666. },
  23667. maw: {
  23668. height: math.unit(4.665, "feet"),
  23669. name: "Maw",
  23670. image: {
  23671. source: "./media/characters/selicia/maw.svg"
  23672. }
  23673. },
  23674. },
  23675. [
  23676. {
  23677. name: "Normal",
  23678. height: math.unit(11, "feet"),
  23679. default: true
  23680. },
  23681. ]
  23682. ))
  23683. characterMakers.push(() => makeCharacter(
  23684. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23685. {
  23686. side: {
  23687. height: math.unit(2 + 6 / 12, "feet"),
  23688. weight: math.unit(30, "lb"),
  23689. name: "Side",
  23690. image: {
  23691. source: "./media/characters/layla/side.svg",
  23692. extra: 244 / 188,
  23693. bottom: 18.2 / 262.1
  23694. }
  23695. },
  23696. back: {
  23697. height: math.unit(2 + 6 / 12, "feet"),
  23698. weight: math.unit(30, "lb"),
  23699. name: "Back",
  23700. image: {
  23701. source: "./media/characters/layla/back.svg",
  23702. extra: 308 / 241.5,
  23703. bottom: 8.9 / 316.8
  23704. }
  23705. },
  23706. cumming: {
  23707. height: math.unit(2 + 6 / 12, "feet"),
  23708. weight: math.unit(30, "lb"),
  23709. name: "Cumming",
  23710. image: {
  23711. source: "./media/characters/layla/cumming.svg",
  23712. extra: 342 / 279,
  23713. bottom: 595 / 938
  23714. }
  23715. },
  23716. dickFlaccid: {
  23717. height: math.unit(2.595, "feet"),
  23718. name: "Flaccid Genitals",
  23719. image: {
  23720. source: "./media/characters/layla/dick-flaccid.svg"
  23721. }
  23722. },
  23723. dickErect: {
  23724. height: math.unit(2.359, "feet"),
  23725. name: "Erect Genitals",
  23726. image: {
  23727. source: "./media/characters/layla/dick-erect.svg"
  23728. }
  23729. },
  23730. dragon: {
  23731. height: math.unit(40, "feet"),
  23732. name: "Dragon",
  23733. image: {
  23734. source: "./media/characters/layla/dragon.svg",
  23735. extra: 610/535,
  23736. bottom: 367/977
  23737. }
  23738. },
  23739. taur: {
  23740. height: math.unit(30, "feet"),
  23741. name: "Taur",
  23742. image: {
  23743. source: "./media/characters/layla/taur.svg",
  23744. extra: 1268/1199,
  23745. bottom: 112/1380
  23746. }
  23747. },
  23748. },
  23749. [
  23750. {
  23751. name: "Micro",
  23752. height: math.unit(1, "inch")
  23753. },
  23754. {
  23755. name: "Small",
  23756. height: math.unit(1, "foot")
  23757. },
  23758. {
  23759. name: "Normal",
  23760. height: math.unit(2 + 6 / 12, "feet"),
  23761. default: true
  23762. },
  23763. {
  23764. name: "Macro",
  23765. height: math.unit(200, "feet")
  23766. },
  23767. {
  23768. name: "Megamacro",
  23769. height: math.unit(1000, "miles")
  23770. },
  23771. {
  23772. name: "Planetary",
  23773. height: math.unit(8000, "miles")
  23774. },
  23775. {
  23776. name: "True Layla",
  23777. height: math.unit(200000 * 7, "multiverses")
  23778. },
  23779. ]
  23780. ))
  23781. characterMakers.push(() => makeCharacter(
  23782. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23783. {
  23784. back: {
  23785. height: math.unit(10.5, "feet"),
  23786. weight: math.unit(800, "lb"),
  23787. name: "Back",
  23788. image: {
  23789. source: "./media/characters/knox/back.svg",
  23790. extra: 1486 / 1089,
  23791. bottom: 107 / 1601.4
  23792. }
  23793. },
  23794. side: {
  23795. height: math.unit(10.5, "feet"),
  23796. weight: math.unit(800, "lb"),
  23797. name: "Side",
  23798. image: {
  23799. source: "./media/characters/knox/side.svg",
  23800. extra: 244 / 218,
  23801. bottom: 14 / 260
  23802. }
  23803. },
  23804. },
  23805. [
  23806. {
  23807. name: "Compact",
  23808. height: math.unit(10.5, "feet"),
  23809. default: true
  23810. },
  23811. {
  23812. name: "Dynamax",
  23813. height: math.unit(210, "feet")
  23814. },
  23815. {
  23816. name: "Full Macro",
  23817. height: math.unit(850, "feet")
  23818. },
  23819. ]
  23820. ))
  23821. characterMakers.push(() => makeCharacter(
  23822. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23823. {
  23824. front: {
  23825. height: math.unit(28, "feet"),
  23826. weight: math.unit(10500, "lb"),
  23827. name: "Front",
  23828. image: {
  23829. source: "./media/characters/kayda/front.svg",
  23830. extra: 1536 / 1428,
  23831. bottom: 68.7 / 1603
  23832. }
  23833. },
  23834. back: {
  23835. height: math.unit(28, "feet"),
  23836. weight: math.unit(10500, "lb"),
  23837. name: "Back",
  23838. image: {
  23839. source: "./media/characters/kayda/back.svg",
  23840. extra: 1557 / 1464,
  23841. bottom: 39.5 / 1597.49
  23842. }
  23843. },
  23844. dick: {
  23845. height: math.unit(3.858, "feet"),
  23846. name: "Dick",
  23847. image: {
  23848. source: "./media/characters/kayda/dick.svg"
  23849. }
  23850. },
  23851. },
  23852. [
  23853. {
  23854. name: "Macro",
  23855. height: math.unit(28, "feet"),
  23856. default: true
  23857. },
  23858. ]
  23859. ))
  23860. characterMakers.push(() => makeCharacter(
  23861. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23862. {
  23863. front: {
  23864. height: math.unit(10 + 11 / 12, "feet"),
  23865. weight: math.unit(1400, "lb"),
  23866. name: "Front",
  23867. image: {
  23868. source: "./media/characters/brian/front.svg",
  23869. extra: 737 / 692,
  23870. bottom: 55.4 / 785
  23871. }
  23872. },
  23873. },
  23874. [
  23875. {
  23876. name: "Normal",
  23877. height: math.unit(10 + 11 / 12, "feet"),
  23878. default: true
  23879. },
  23880. ]
  23881. ))
  23882. characterMakers.push(() => makeCharacter(
  23883. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23884. {
  23885. front: {
  23886. height: math.unit(5 + 8 / 12, "feet"),
  23887. weight: math.unit(140, "lb"),
  23888. name: "Front",
  23889. image: {
  23890. source: "./media/characters/khemri/front.svg",
  23891. extra: 4780 / 4059,
  23892. bottom: 80.1 / 4859.25
  23893. }
  23894. },
  23895. },
  23896. [
  23897. {
  23898. name: "Micro",
  23899. height: math.unit(6, "inches")
  23900. },
  23901. {
  23902. name: "Normal",
  23903. height: math.unit(5 + 8 / 12, "feet"),
  23904. default: true
  23905. },
  23906. ]
  23907. ))
  23908. characterMakers.push(() => makeCharacter(
  23909. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23910. {
  23911. front: {
  23912. height: math.unit(13, "feet"),
  23913. weight: math.unit(1700, "lb"),
  23914. name: "Front",
  23915. image: {
  23916. source: "./media/characters/felix-braveheart/front.svg",
  23917. extra: 1222 / 1157,
  23918. bottom: 53.2 / 1280
  23919. }
  23920. },
  23921. back: {
  23922. height: math.unit(13, "feet"),
  23923. weight: math.unit(1700, "lb"),
  23924. name: "Back",
  23925. image: {
  23926. source: "./media/characters/felix-braveheart/back.svg",
  23927. extra: 1277 / 1203,
  23928. bottom: 50.2 / 1327
  23929. }
  23930. },
  23931. feral: {
  23932. height: math.unit(6, "feet"),
  23933. weight: math.unit(400, "lb"),
  23934. name: "Feral",
  23935. image: {
  23936. source: "./media/characters/felix-braveheart/feral.svg",
  23937. extra: 682 / 625,
  23938. bottom: 6.9 / 688
  23939. }
  23940. },
  23941. },
  23942. [
  23943. {
  23944. name: "Normal",
  23945. height: math.unit(13, "feet"),
  23946. default: true
  23947. },
  23948. ]
  23949. ))
  23950. characterMakers.push(() => makeCharacter(
  23951. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23952. {
  23953. side: {
  23954. height: math.unit(5 + 11 / 12, "feet"),
  23955. weight: math.unit(1400, "lb"),
  23956. name: "Side",
  23957. image: {
  23958. source: "./media/characters/shadow-blade/side.svg",
  23959. extra: 1726 / 1267,
  23960. bottom: 58.4 / 1785
  23961. }
  23962. },
  23963. },
  23964. [
  23965. {
  23966. name: "Normal",
  23967. height: math.unit(5 + 11 / 12, "feet"),
  23968. default: true
  23969. },
  23970. ]
  23971. ))
  23972. characterMakers.push(() => makeCharacter(
  23973. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23974. {
  23975. front: {
  23976. height: math.unit(1 + 6 / 12, "feet"),
  23977. weight: math.unit(25, "lb"),
  23978. name: "Front",
  23979. image: {
  23980. source: "./media/characters/karla-halldor/front.svg",
  23981. extra: 1459 / 1383,
  23982. bottom: 12 / 1472
  23983. }
  23984. },
  23985. },
  23986. [
  23987. {
  23988. name: "Normal",
  23989. height: math.unit(1 + 6 / 12, "feet"),
  23990. default: true
  23991. },
  23992. ]
  23993. ))
  23994. characterMakers.push(() => makeCharacter(
  23995. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23996. {
  23997. front: {
  23998. height: math.unit(6 + 2 / 12, "feet"),
  23999. weight: math.unit(160, "lb"),
  24000. name: "Front",
  24001. image: {
  24002. source: "./media/characters/ariam/front.svg",
  24003. extra: 714 / 617,
  24004. bottom: 23.4 / 737,
  24005. }
  24006. },
  24007. squatting: {
  24008. height: math.unit(4.1, "feet"),
  24009. weight: math.unit(160, "lb"),
  24010. name: "Squatting",
  24011. image: {
  24012. source: "./media/characters/ariam/squatting.svg",
  24013. extra: 2617 / 2112,
  24014. bottom: 61.2 / 2681,
  24015. }
  24016. },
  24017. },
  24018. [
  24019. {
  24020. name: "Normal",
  24021. height: math.unit(6 + 2 / 12, "feet"),
  24022. default: true
  24023. },
  24024. {
  24025. name: "Normal+",
  24026. height: math.unit(4, "meters")
  24027. },
  24028. {
  24029. name: "Macro",
  24030. height: math.unit(50, "meters")
  24031. },
  24032. {
  24033. name: "Macro+",
  24034. height: math.unit(100, "meters")
  24035. },
  24036. {
  24037. name: "Megamacro",
  24038. height: math.unit(20, "km")
  24039. },
  24040. ]
  24041. ))
  24042. characterMakers.push(() => makeCharacter(
  24043. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24044. {
  24045. front: {
  24046. height: math.unit(1.67, "meters"),
  24047. weight: math.unit(140, "lb"),
  24048. name: "Front",
  24049. image: {
  24050. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24051. extra: 438 / 410,
  24052. bottom: 0.75 / 439
  24053. }
  24054. },
  24055. },
  24056. [
  24057. {
  24058. name: "Shrunken",
  24059. height: math.unit(7.6, "cm")
  24060. },
  24061. {
  24062. name: "Human Scale",
  24063. height: math.unit(1.67, "meters")
  24064. },
  24065. {
  24066. name: "Wolxi Scale",
  24067. height: math.unit(36.7, "meters"),
  24068. default: true
  24069. },
  24070. ]
  24071. ))
  24072. characterMakers.push(() => makeCharacter(
  24073. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24074. {
  24075. front: {
  24076. height: math.unit(1.73, "meters"),
  24077. weight: math.unit(240, "lb"),
  24078. name: "Front",
  24079. image: {
  24080. source: "./media/characters/izue-two-mothers/front.svg",
  24081. extra: 469 / 437,
  24082. bottom: 1.24 / 470.6
  24083. }
  24084. },
  24085. },
  24086. [
  24087. {
  24088. name: "Shrunken",
  24089. height: math.unit(7.86, "cm")
  24090. },
  24091. {
  24092. name: "Human Scale",
  24093. height: math.unit(1.73, "meters")
  24094. },
  24095. {
  24096. name: "Wolxi Scale",
  24097. height: math.unit(38, "meters"),
  24098. default: true
  24099. },
  24100. ]
  24101. ))
  24102. characterMakers.push(() => makeCharacter(
  24103. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24104. {
  24105. front: {
  24106. height: math.unit(1.55, "meters"),
  24107. weight: math.unit(120, "lb"),
  24108. name: "Front",
  24109. image: {
  24110. source: "./media/characters/teeku-love-shack/front.svg",
  24111. extra: 387 / 362,
  24112. bottom: 1.51 / 388
  24113. }
  24114. },
  24115. },
  24116. [
  24117. {
  24118. name: "Shrunken",
  24119. height: math.unit(7, "cm")
  24120. },
  24121. {
  24122. name: "Human Scale",
  24123. height: math.unit(1.55, "meters")
  24124. },
  24125. {
  24126. name: "Wolxi Scale",
  24127. height: math.unit(34.1, "meters"),
  24128. default: true
  24129. },
  24130. ]
  24131. ))
  24132. characterMakers.push(() => makeCharacter(
  24133. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24134. {
  24135. front: {
  24136. height: math.unit(1.83, "meters"),
  24137. weight: math.unit(135, "lb"),
  24138. name: "Front",
  24139. image: {
  24140. source: "./media/characters/dejma-the-red/front.svg",
  24141. extra: 480 / 458,
  24142. bottom: 1.8 / 482
  24143. }
  24144. },
  24145. },
  24146. [
  24147. {
  24148. name: "Shrunken",
  24149. height: math.unit(8.3, "cm")
  24150. },
  24151. {
  24152. name: "Human Scale",
  24153. height: math.unit(1.83, "meters")
  24154. },
  24155. {
  24156. name: "Wolxi Scale",
  24157. height: math.unit(40, "meters"),
  24158. default: true
  24159. },
  24160. ]
  24161. ))
  24162. characterMakers.push(() => makeCharacter(
  24163. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24164. {
  24165. front: {
  24166. height: math.unit(1.78, "meters"),
  24167. weight: math.unit(65, "kg"),
  24168. name: "Front",
  24169. image: {
  24170. source: "./media/characters/aki/front.svg",
  24171. extra: 452 / 415
  24172. }
  24173. },
  24174. frontNsfw: {
  24175. height: math.unit(1.78, "meters"),
  24176. weight: math.unit(65, "kg"),
  24177. name: "Front (NSFW)",
  24178. image: {
  24179. source: "./media/characters/aki/front-nsfw.svg",
  24180. extra: 452 / 415
  24181. }
  24182. },
  24183. back: {
  24184. height: math.unit(1.78, "meters"),
  24185. weight: math.unit(65, "kg"),
  24186. name: "Back",
  24187. image: {
  24188. source: "./media/characters/aki/back.svg",
  24189. extra: 452 / 415
  24190. }
  24191. },
  24192. rump: {
  24193. height: math.unit(2.05, "feet"),
  24194. name: "Rump",
  24195. image: {
  24196. source: "./media/characters/aki/rump.svg"
  24197. }
  24198. },
  24199. dick: {
  24200. height: math.unit(0.95, "feet"),
  24201. name: "Dick",
  24202. image: {
  24203. source: "./media/characters/aki/dick.svg"
  24204. }
  24205. },
  24206. },
  24207. [
  24208. {
  24209. name: "Micro",
  24210. height: math.unit(15, "cm")
  24211. },
  24212. {
  24213. name: "Normal",
  24214. height: math.unit(178, "cm"),
  24215. default: true
  24216. },
  24217. {
  24218. name: "Macro",
  24219. height: math.unit(214, "m")
  24220. },
  24221. {
  24222. name: "Macro+",
  24223. height: math.unit(534, "m")
  24224. },
  24225. ]
  24226. ))
  24227. characterMakers.push(() => makeCharacter(
  24228. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24229. {
  24230. front: {
  24231. height: math.unit(5 + 5 / 12, "feet"),
  24232. weight: math.unit(120, "lb"),
  24233. name: "Front",
  24234. image: {
  24235. source: "./media/characters/ari/front.svg",
  24236. extra: 714.5 / 682,
  24237. bottom: 8 / 722.5
  24238. }
  24239. },
  24240. },
  24241. [
  24242. {
  24243. name: "Normal",
  24244. height: math.unit(5 + 5 / 12, "feet")
  24245. },
  24246. {
  24247. name: "Macro",
  24248. height: math.unit(100, "feet"),
  24249. default: true
  24250. },
  24251. {
  24252. name: "Megamacro",
  24253. height: math.unit(100, "miles")
  24254. },
  24255. {
  24256. name: "Gigamacro",
  24257. height: math.unit(80000, "miles")
  24258. },
  24259. ]
  24260. ))
  24261. characterMakers.push(() => makeCharacter(
  24262. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24263. {
  24264. side: {
  24265. height: math.unit(9, "feet"),
  24266. weight: math.unit(400, "kg"),
  24267. name: "Side",
  24268. image: {
  24269. source: "./media/characters/bolt/side.svg",
  24270. extra: 1126 / 896,
  24271. bottom: 60 / 1187.3,
  24272. }
  24273. },
  24274. },
  24275. [
  24276. {
  24277. name: "Micro",
  24278. height: math.unit(5, "inches")
  24279. },
  24280. {
  24281. name: "Normal",
  24282. height: math.unit(9, "feet"),
  24283. default: true
  24284. },
  24285. {
  24286. name: "Macro",
  24287. height: math.unit(700, "feet")
  24288. },
  24289. {
  24290. name: "Max Size",
  24291. height: math.unit(1.52e22, "yottameters")
  24292. },
  24293. ]
  24294. ))
  24295. characterMakers.push(() => makeCharacter(
  24296. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24297. {
  24298. front: {
  24299. height: math.unit(4.53, "meters"),
  24300. weight: math.unit(3, "tons"),
  24301. name: "Front",
  24302. image: {
  24303. source: "./media/characters/draekon-sylviar/front.svg",
  24304. extra: 1228 / 1068,
  24305. bottom: 41 / 1270
  24306. }
  24307. },
  24308. tail: {
  24309. height: math.unit(1.772, "meter"),
  24310. name: "Tail",
  24311. image: {
  24312. source: "./media/characters/draekon-sylviar/tail.svg"
  24313. }
  24314. },
  24315. head: {
  24316. height: math.unit(1.331, "meter"),
  24317. name: "Head",
  24318. image: {
  24319. source: "./media/characters/draekon-sylviar/head.svg"
  24320. }
  24321. },
  24322. hand: {
  24323. height: math.unit(0.564, "meter"),
  24324. name: "Hand",
  24325. image: {
  24326. source: "./media/characters/draekon-sylviar/hand.svg"
  24327. }
  24328. },
  24329. foot: {
  24330. height: math.unit(0.621, "meter"),
  24331. name: "Foot",
  24332. image: {
  24333. source: "./media/characters/draekon-sylviar/foot.svg",
  24334. bottom: 32 / 324
  24335. }
  24336. },
  24337. dick: {
  24338. height: math.unit(61, "cm"),
  24339. name: "Dick",
  24340. image: {
  24341. source: "./media/characters/draekon-sylviar/dick.svg"
  24342. }
  24343. },
  24344. dickseparated: {
  24345. height: math.unit(61, "cm"),
  24346. name: "Dick-separated",
  24347. image: {
  24348. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24349. }
  24350. },
  24351. },
  24352. [
  24353. {
  24354. name: "Small",
  24355. height: math.unit(4.53 / 2, "meters"),
  24356. default: true
  24357. },
  24358. {
  24359. name: "Normal",
  24360. height: math.unit(4.53, "meters"),
  24361. default: true
  24362. },
  24363. {
  24364. name: "Large",
  24365. height: math.unit(4.53 * 2, "meters"),
  24366. },
  24367. ]
  24368. ))
  24369. characterMakers.push(() => makeCharacter(
  24370. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24371. {
  24372. front: {
  24373. height: math.unit(6 + 2 / 12, "feet"),
  24374. weight: math.unit(180, "lb"),
  24375. name: "Front",
  24376. image: {
  24377. source: "./media/characters/brawler/front.svg",
  24378. extra: 3301 / 3027,
  24379. bottom: 138 / 3439
  24380. }
  24381. },
  24382. },
  24383. [
  24384. {
  24385. name: "Normal",
  24386. height: math.unit(6 + 2 / 12, "feet"),
  24387. default: true
  24388. },
  24389. ]
  24390. ))
  24391. characterMakers.push(() => makeCharacter(
  24392. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24393. {
  24394. front: {
  24395. height: math.unit(11, "feet"),
  24396. weight: math.unit(1000, "lb"),
  24397. name: "Front",
  24398. image: {
  24399. source: "./media/characters/alex/front.svg",
  24400. bottom: 44.5 / 620
  24401. }
  24402. },
  24403. },
  24404. [
  24405. {
  24406. name: "Micro",
  24407. height: math.unit(5, "inches")
  24408. },
  24409. {
  24410. name: "Normal",
  24411. height: math.unit(11, "feet"),
  24412. default: true
  24413. },
  24414. {
  24415. name: "Macro",
  24416. height: math.unit(9.5e9, "feet")
  24417. },
  24418. {
  24419. name: "Max Size",
  24420. height: math.unit(1.4e283, "yottameters")
  24421. },
  24422. ]
  24423. ))
  24424. characterMakers.push(() => makeCharacter(
  24425. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24426. {
  24427. female: {
  24428. height: math.unit(29.9, "m"),
  24429. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24430. name: "Female",
  24431. image: {
  24432. source: "./media/characters/zenari/female.svg",
  24433. extra: 3281.6 / 3217,
  24434. bottom: 72.2 / 3353
  24435. }
  24436. },
  24437. male: {
  24438. height: math.unit(27.7, "m"),
  24439. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24440. name: "Male",
  24441. image: {
  24442. source: "./media/characters/zenari/male.svg",
  24443. extra: 3008 / 2991,
  24444. bottom: 54.6 / 3069
  24445. }
  24446. },
  24447. },
  24448. [
  24449. {
  24450. name: "Macro",
  24451. height: math.unit(29.7, "meters"),
  24452. default: true
  24453. },
  24454. ]
  24455. ))
  24456. characterMakers.push(() => makeCharacter(
  24457. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24458. {
  24459. female: {
  24460. height: math.unit(23.8, "m"),
  24461. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24462. name: "Female",
  24463. image: {
  24464. source: "./media/characters/mactarian/female.svg",
  24465. extra: 2662 / 2569,
  24466. bottom: 73 / 2736
  24467. }
  24468. },
  24469. male: {
  24470. height: math.unit(23.8, "m"),
  24471. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24472. name: "Male",
  24473. image: {
  24474. source: "./media/characters/mactarian/male.svg",
  24475. extra: 2673 / 2600,
  24476. bottom: 76 / 2750
  24477. }
  24478. },
  24479. },
  24480. [
  24481. {
  24482. name: "Macro",
  24483. height: math.unit(23.8, "meters"),
  24484. default: true
  24485. },
  24486. ]
  24487. ))
  24488. characterMakers.push(() => makeCharacter(
  24489. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24490. {
  24491. female: {
  24492. height: math.unit(19.3, "m"),
  24493. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24494. name: "Female",
  24495. image: {
  24496. source: "./media/characters/umok/female.svg",
  24497. extra: 2186 / 2078,
  24498. bottom: 87 / 2277
  24499. }
  24500. },
  24501. male: {
  24502. height: math.unit(19.5, "m"),
  24503. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24504. name: "Male",
  24505. image: {
  24506. source: "./media/characters/umok/male.svg",
  24507. extra: 2233 / 2140,
  24508. bottom: 24.4 / 2258
  24509. }
  24510. },
  24511. },
  24512. [
  24513. {
  24514. name: "Macro",
  24515. height: math.unit(19.3, "meters"),
  24516. default: true
  24517. },
  24518. ]
  24519. ))
  24520. characterMakers.push(() => makeCharacter(
  24521. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24522. {
  24523. female: {
  24524. height: math.unit(26.15, "m"),
  24525. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24526. name: "Female",
  24527. image: {
  24528. source: "./media/characters/joraxian/female.svg",
  24529. extra: 2912 / 2824,
  24530. bottom: 36 / 2956
  24531. }
  24532. },
  24533. male: {
  24534. height: math.unit(25.4, "m"),
  24535. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24536. name: "Male",
  24537. image: {
  24538. source: "./media/characters/joraxian/male.svg",
  24539. extra: 2877 / 2721,
  24540. bottom: 82 / 2967
  24541. }
  24542. },
  24543. },
  24544. [
  24545. {
  24546. name: "Macro",
  24547. height: math.unit(26.15, "meters"),
  24548. default: true
  24549. },
  24550. ]
  24551. ))
  24552. characterMakers.push(() => makeCharacter(
  24553. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24554. {
  24555. female: {
  24556. height: math.unit(21.6, "m"),
  24557. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24558. name: "Female",
  24559. image: {
  24560. source: "./media/characters/sthara/female.svg",
  24561. extra: 2516 / 2347,
  24562. bottom: 21.5 / 2537
  24563. }
  24564. },
  24565. male: {
  24566. height: math.unit(24, "m"),
  24567. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24568. name: "Male",
  24569. image: {
  24570. source: "./media/characters/sthara/male.svg",
  24571. extra: 2732 / 2607,
  24572. bottom: 23 / 2732
  24573. }
  24574. },
  24575. },
  24576. [
  24577. {
  24578. name: "Macro",
  24579. height: math.unit(21.6, "meters"),
  24580. default: true
  24581. },
  24582. ]
  24583. ))
  24584. characterMakers.push(() => makeCharacter(
  24585. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24586. {
  24587. front: {
  24588. height: math.unit(6 + 4 / 12, "feet"),
  24589. weight: math.unit(175, "lb"),
  24590. name: "Front",
  24591. image: {
  24592. source: "./media/characters/luka-bryzant/front.svg",
  24593. extra: 311 / 289,
  24594. bottom: 4 / 315
  24595. }
  24596. },
  24597. back: {
  24598. height: math.unit(6 + 4 / 12, "feet"),
  24599. weight: math.unit(175, "lb"),
  24600. name: "Back",
  24601. image: {
  24602. source: "./media/characters/luka-bryzant/back.svg",
  24603. extra: 311 / 289,
  24604. bottom: 3.8 / 313.7
  24605. }
  24606. },
  24607. },
  24608. [
  24609. {
  24610. name: "Micro",
  24611. height: math.unit(10, "inches")
  24612. },
  24613. {
  24614. name: "Normal",
  24615. height: math.unit(6 + 4 / 12, "feet"),
  24616. default: true
  24617. },
  24618. {
  24619. name: "Large",
  24620. height: math.unit(12, "feet")
  24621. },
  24622. ]
  24623. ))
  24624. characterMakers.push(() => makeCharacter(
  24625. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24626. {
  24627. front: {
  24628. height: math.unit(5 + 7 / 12, "feet"),
  24629. weight: math.unit(185, "lb"),
  24630. name: "Front",
  24631. image: {
  24632. source: "./media/characters/aman-aquila/front.svg",
  24633. extra: 1013 / 976,
  24634. bottom: 45.6 / 1057
  24635. }
  24636. },
  24637. side: {
  24638. height: math.unit(5 + 7 / 12, "feet"),
  24639. weight: math.unit(185, "lb"),
  24640. name: "Side",
  24641. image: {
  24642. source: "./media/characters/aman-aquila/side.svg",
  24643. extra: 1054 / 1011,
  24644. bottom: 15 / 1070
  24645. }
  24646. },
  24647. back: {
  24648. height: math.unit(5 + 7 / 12, "feet"),
  24649. weight: math.unit(185, "lb"),
  24650. name: "Back",
  24651. image: {
  24652. source: "./media/characters/aman-aquila/back.svg",
  24653. extra: 1026 / 970,
  24654. bottom: 12 / 1039
  24655. }
  24656. },
  24657. head: {
  24658. height: math.unit(1.211, "feet"),
  24659. name: "Head",
  24660. image: {
  24661. source: "./media/characters/aman-aquila/head.svg",
  24662. }
  24663. },
  24664. },
  24665. [
  24666. {
  24667. name: "Minimicro",
  24668. height: math.unit(0.057, "inches")
  24669. },
  24670. {
  24671. name: "Micro",
  24672. height: math.unit(7, "inches")
  24673. },
  24674. {
  24675. name: "Mini",
  24676. height: math.unit(3 + 7 / 12, "feet")
  24677. },
  24678. {
  24679. name: "Normal",
  24680. height: math.unit(5 + 7 / 12, "feet"),
  24681. default: true
  24682. },
  24683. {
  24684. name: "Macro",
  24685. height: math.unit(157 + 7 / 12, "feet")
  24686. },
  24687. {
  24688. name: "Megamacro",
  24689. height: math.unit(1557 + 7 / 12, "feet")
  24690. },
  24691. {
  24692. name: "Gigamacro",
  24693. height: math.unit(15557 + 7 / 12, "feet")
  24694. },
  24695. ]
  24696. ))
  24697. characterMakers.push(() => makeCharacter(
  24698. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24699. {
  24700. front: {
  24701. height: math.unit(3 + 2 / 12, "inches"),
  24702. weight: math.unit(0.3, "ounces"),
  24703. name: "Front",
  24704. image: {
  24705. source: "./media/characters/hiphae/front.svg",
  24706. extra: 1931 / 1683,
  24707. bottom: 24 / 1955
  24708. }
  24709. },
  24710. },
  24711. [
  24712. {
  24713. name: "Normal",
  24714. height: math.unit(3 + 1 / 2, "inches"),
  24715. default: true
  24716. },
  24717. ]
  24718. ))
  24719. characterMakers.push(() => makeCharacter(
  24720. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24721. {
  24722. front: {
  24723. height: math.unit(5 + 10 / 12, "feet"),
  24724. weight: math.unit(165, "lb"),
  24725. name: "Front",
  24726. image: {
  24727. source: "./media/characters/nicky/front.svg",
  24728. extra: 3144 / 2886,
  24729. bottom: 45.6 / 3192
  24730. }
  24731. },
  24732. back: {
  24733. height: math.unit(5 + 10 / 12, "feet"),
  24734. weight: math.unit(165, "lb"),
  24735. name: "Back",
  24736. image: {
  24737. source: "./media/characters/nicky/back.svg",
  24738. extra: 3055 / 2804,
  24739. bottom: 28.4 / 3087
  24740. }
  24741. },
  24742. frontclothed: {
  24743. height: math.unit(5 + 10 / 12, "feet"),
  24744. weight: math.unit(165, "lb"),
  24745. name: "Front-clothed",
  24746. image: {
  24747. source: "./media/characters/nicky/front-clothed.svg",
  24748. extra: 3184.9 / 2926.9,
  24749. bottom: 86.5 / 3239.9
  24750. }
  24751. },
  24752. foot: {
  24753. height: math.unit(1.16, "feet"),
  24754. name: "Foot",
  24755. image: {
  24756. source: "./media/characters/nicky/foot.svg"
  24757. }
  24758. },
  24759. feet: {
  24760. height: math.unit(1.34, "feet"),
  24761. name: "Feet",
  24762. image: {
  24763. source: "./media/characters/nicky/feet.svg"
  24764. }
  24765. },
  24766. maw: {
  24767. height: math.unit(0.9, "feet"),
  24768. name: "Maw",
  24769. image: {
  24770. source: "./media/characters/nicky/maw.svg"
  24771. }
  24772. },
  24773. },
  24774. [
  24775. {
  24776. name: "Normal",
  24777. height: math.unit(5 + 10 / 12, "feet"),
  24778. default: true
  24779. },
  24780. {
  24781. name: "Macro",
  24782. height: math.unit(60, "feet")
  24783. },
  24784. {
  24785. name: "Megamacro",
  24786. height: math.unit(1, "mile")
  24787. },
  24788. ]
  24789. ))
  24790. characterMakers.push(() => makeCharacter(
  24791. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24792. {
  24793. side: {
  24794. height: math.unit(10, "feet"),
  24795. weight: math.unit(600, "lb"),
  24796. name: "Side",
  24797. image: {
  24798. source: "./media/characters/blair/side.svg",
  24799. bottom: 16.6 / 475,
  24800. extra: 458 / 431
  24801. }
  24802. },
  24803. },
  24804. [
  24805. {
  24806. name: "Micro",
  24807. height: math.unit(8, "inches")
  24808. },
  24809. {
  24810. name: "Normal",
  24811. height: math.unit(10, "feet"),
  24812. default: true
  24813. },
  24814. {
  24815. name: "Macro",
  24816. height: math.unit(180, "feet")
  24817. },
  24818. ]
  24819. ))
  24820. characterMakers.push(() => makeCharacter(
  24821. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24822. {
  24823. front: {
  24824. height: math.unit(5 + 4 / 12, "feet"),
  24825. weight: math.unit(125, "lb"),
  24826. name: "Front",
  24827. image: {
  24828. source: "./media/characters/fisher/front.svg",
  24829. extra: 444 / 390,
  24830. bottom: 2 / 444.8
  24831. }
  24832. },
  24833. },
  24834. [
  24835. {
  24836. name: "Micro",
  24837. height: math.unit(4, "inches")
  24838. },
  24839. {
  24840. name: "Normal",
  24841. height: math.unit(5 + 4 / 12, "feet"),
  24842. default: true
  24843. },
  24844. {
  24845. name: "Macro",
  24846. height: math.unit(100, "feet")
  24847. },
  24848. ]
  24849. ))
  24850. characterMakers.push(() => makeCharacter(
  24851. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24852. {
  24853. front: {
  24854. height: math.unit(6.71, "feet"),
  24855. weight: math.unit(200, "lb"),
  24856. capacity: math.unit(1000000, "people"),
  24857. name: "Front",
  24858. image: {
  24859. source: "./media/characters/gliss/front.svg",
  24860. extra: 2347 / 2231,
  24861. bottom: 113 / 2462
  24862. }
  24863. },
  24864. hammerspaceSize: {
  24865. height: math.unit(6.71 * 717, "feet"),
  24866. weight: math.unit(200, "lb"),
  24867. capacity: math.unit(1000000, "people"),
  24868. name: "Hammerspace Size",
  24869. image: {
  24870. source: "./media/characters/gliss/front.svg",
  24871. extra: 2347 / 2231,
  24872. bottom: 113 / 2462
  24873. }
  24874. },
  24875. },
  24876. [
  24877. {
  24878. name: "Normal",
  24879. height: math.unit(6.71, "feet"),
  24880. default: true
  24881. },
  24882. ]
  24883. ))
  24884. characterMakers.push(() => makeCharacter(
  24885. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24886. {
  24887. side: {
  24888. height: math.unit(1.44, "m"),
  24889. weight: math.unit(80, "kg"),
  24890. name: "Side",
  24891. image: {
  24892. source: "./media/characters/dune-anderson/side.svg",
  24893. bottom: 49 / 1426
  24894. }
  24895. },
  24896. },
  24897. [
  24898. {
  24899. name: "Wolf-sized",
  24900. height: math.unit(1.44, "meters")
  24901. },
  24902. {
  24903. name: "Normal",
  24904. height: math.unit(5.05, "meters"),
  24905. default: true
  24906. },
  24907. {
  24908. name: "Big",
  24909. height: math.unit(14.4, "meters")
  24910. },
  24911. {
  24912. name: "Huge",
  24913. height: math.unit(144, "meters")
  24914. },
  24915. ]
  24916. ))
  24917. characterMakers.push(() => makeCharacter(
  24918. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24919. {
  24920. front: {
  24921. height: math.unit(7, "feet"),
  24922. weight: math.unit(425, "lb"),
  24923. name: "Front",
  24924. image: {
  24925. source: "./media/characters/hind/front.svg",
  24926. extra: 2091 / 1860,
  24927. bottom: 129 / 2220
  24928. }
  24929. },
  24930. back: {
  24931. height: math.unit(7, "feet"),
  24932. weight: math.unit(425, "lb"),
  24933. name: "Back",
  24934. image: {
  24935. source: "./media/characters/hind/back.svg",
  24936. extra: 2091 / 1860,
  24937. bottom: 24.6 / 2309
  24938. }
  24939. },
  24940. tail: {
  24941. height: math.unit(2.8, "feet"),
  24942. name: "Tail",
  24943. image: {
  24944. source: "./media/characters/hind/tail.svg"
  24945. }
  24946. },
  24947. head: {
  24948. height: math.unit(2.55, "feet"),
  24949. name: "Head",
  24950. image: {
  24951. source: "./media/characters/hind/head.svg"
  24952. }
  24953. },
  24954. },
  24955. [
  24956. {
  24957. name: "XS",
  24958. height: math.unit(0.7, "feet")
  24959. },
  24960. {
  24961. name: "Normal",
  24962. height: math.unit(7, "feet"),
  24963. default: true
  24964. },
  24965. {
  24966. name: "XL",
  24967. height: math.unit(70, "feet")
  24968. },
  24969. ]
  24970. ))
  24971. characterMakers.push(() => makeCharacter(
  24972. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  24973. {
  24974. front: {
  24975. height: math.unit(2.1, "meters"),
  24976. weight: math.unit(150, "lb"),
  24977. name: "Front",
  24978. image: {
  24979. source: "./media/characters/tharquench-sizestealer/front.svg",
  24980. extra: 1605/1470,
  24981. bottom: 36/1641
  24982. }
  24983. },
  24984. frontAlt: {
  24985. height: math.unit(2.1, "meters"),
  24986. weight: math.unit(150, "lb"),
  24987. name: "Front (Alt)",
  24988. image: {
  24989. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  24990. extra: 2318 / 2063,
  24991. bottom: 93.4 / 2410
  24992. }
  24993. },
  24994. },
  24995. [
  24996. {
  24997. name: "Nano",
  24998. height: math.unit(1, "mm")
  24999. },
  25000. {
  25001. name: "Micro",
  25002. height: math.unit(1, "cm")
  25003. },
  25004. {
  25005. name: "Normal",
  25006. height: math.unit(2.1, "meters"),
  25007. default: true
  25008. },
  25009. ]
  25010. ))
  25011. characterMakers.push(() => makeCharacter(
  25012. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25013. {
  25014. front: {
  25015. height: math.unit(7 + 5 / 12, "feet"),
  25016. weight: math.unit(357, "lb"),
  25017. name: "Front",
  25018. image: {
  25019. source: "./media/characters/solex-draconov/front.svg",
  25020. extra: 1993 / 1865,
  25021. bottom: 117 / 2111
  25022. }
  25023. },
  25024. },
  25025. [
  25026. {
  25027. name: "Natural Height",
  25028. height: math.unit(7 + 5 / 12, "feet"),
  25029. default: true
  25030. },
  25031. {
  25032. name: "Macro",
  25033. height: math.unit(350, "feet")
  25034. },
  25035. {
  25036. name: "Macro+",
  25037. height: math.unit(1000, "feet")
  25038. },
  25039. {
  25040. name: "Megamacro",
  25041. height: math.unit(20, "km")
  25042. },
  25043. {
  25044. name: "Megamacro+",
  25045. height: math.unit(1000, "km")
  25046. },
  25047. {
  25048. name: "Gigamacro",
  25049. height: math.unit(2.5, "Gm")
  25050. },
  25051. {
  25052. name: "Teramacro",
  25053. height: math.unit(15, "Tm")
  25054. },
  25055. {
  25056. name: "Galactic",
  25057. height: math.unit(30, "Zm")
  25058. },
  25059. {
  25060. name: "Universal",
  25061. height: math.unit(21000, "Ym")
  25062. },
  25063. {
  25064. name: "Omniversal",
  25065. height: math.unit(9.861e50, "Ym")
  25066. },
  25067. {
  25068. name: "Existential",
  25069. height: math.unit(1e300, "meters")
  25070. },
  25071. ]
  25072. ))
  25073. characterMakers.push(() => makeCharacter(
  25074. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25075. {
  25076. side: {
  25077. height: math.unit(25, "feet"),
  25078. weight: math.unit(90000, "lb"),
  25079. name: "Side",
  25080. image: {
  25081. source: "./media/characters/mandarax/side.svg",
  25082. extra: 614 / 332,
  25083. bottom: 55 / 630
  25084. }
  25085. },
  25086. head: {
  25087. height: math.unit(11.4, "feet"),
  25088. name: "Head",
  25089. image: {
  25090. source: "./media/characters/mandarax/head.svg"
  25091. }
  25092. },
  25093. belly: {
  25094. height: math.unit(33, "feet"),
  25095. name: "Belly",
  25096. capacity: math.unit(500, "people"),
  25097. image: {
  25098. source: "./media/characters/mandarax/belly.svg"
  25099. }
  25100. },
  25101. dick: {
  25102. height: math.unit(8.46, "feet"),
  25103. name: "Dick",
  25104. image: {
  25105. source: "./media/characters/mandarax/dick.svg"
  25106. }
  25107. },
  25108. top: {
  25109. height: math.unit(28, "meters"),
  25110. name: "Top",
  25111. image: {
  25112. source: "./media/characters/mandarax/top.svg"
  25113. }
  25114. },
  25115. },
  25116. [
  25117. {
  25118. name: "Normal",
  25119. height: math.unit(25, "feet"),
  25120. default: true
  25121. },
  25122. ]
  25123. ))
  25124. characterMakers.push(() => makeCharacter(
  25125. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25126. {
  25127. front: {
  25128. height: math.unit(5, "feet"),
  25129. weight: math.unit(90, "lb"),
  25130. name: "Front",
  25131. image: {
  25132. source: "./media/characters/pixil/front.svg",
  25133. extra: 2000 / 1618,
  25134. bottom: 12.3 / 2011
  25135. }
  25136. },
  25137. },
  25138. [
  25139. {
  25140. name: "Normal",
  25141. height: math.unit(5, "feet"),
  25142. default: true
  25143. },
  25144. {
  25145. name: "Megamacro",
  25146. height: math.unit(10, "miles"),
  25147. },
  25148. ]
  25149. ))
  25150. characterMakers.push(() => makeCharacter(
  25151. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25152. {
  25153. front: {
  25154. height: math.unit(7 + 2 / 12, "feet"),
  25155. weight: math.unit(200, "lb"),
  25156. name: "Front",
  25157. image: {
  25158. source: "./media/characters/angel/front.svg",
  25159. extra: 1830 / 1737,
  25160. bottom: 22.6 / 1854,
  25161. }
  25162. },
  25163. },
  25164. [
  25165. {
  25166. name: "Normal",
  25167. height: math.unit(7 + 2 / 12, "feet"),
  25168. default: true
  25169. },
  25170. {
  25171. name: "Macro",
  25172. height: math.unit(1000, "feet")
  25173. },
  25174. {
  25175. name: "Megamacro",
  25176. height: math.unit(2, "miles")
  25177. },
  25178. {
  25179. name: "Gigamacro",
  25180. height: math.unit(20, "earths")
  25181. },
  25182. ]
  25183. ))
  25184. characterMakers.push(() => makeCharacter(
  25185. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25186. {
  25187. front: {
  25188. height: math.unit(5, "feet"),
  25189. weight: math.unit(180, "lb"),
  25190. name: "Front",
  25191. image: {
  25192. source: "./media/characters/mekana/front.svg",
  25193. extra: 1671 / 1605,
  25194. bottom: 3.5 / 1691
  25195. }
  25196. },
  25197. side: {
  25198. height: math.unit(5, "feet"),
  25199. weight: math.unit(180, "lb"),
  25200. name: "Side",
  25201. image: {
  25202. source: "./media/characters/mekana/side.svg",
  25203. extra: 1671 / 1605,
  25204. bottom: 3.5 / 1691
  25205. }
  25206. },
  25207. back: {
  25208. height: math.unit(5, "feet"),
  25209. weight: math.unit(180, "lb"),
  25210. name: "Back",
  25211. image: {
  25212. source: "./media/characters/mekana/back.svg",
  25213. extra: 1671 / 1605,
  25214. bottom: 3.5 / 1691
  25215. }
  25216. },
  25217. },
  25218. [
  25219. {
  25220. name: "Normal",
  25221. height: math.unit(5, "feet"),
  25222. default: true
  25223. },
  25224. ]
  25225. ))
  25226. characterMakers.push(() => makeCharacter(
  25227. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25228. {
  25229. front: {
  25230. height: math.unit(4 + 6 / 12, "feet"),
  25231. weight: math.unit(80, "lb"),
  25232. name: "Front",
  25233. image: {
  25234. source: "./media/characters/pixie/front.svg",
  25235. extra: 1924 / 1825,
  25236. bottom: 22.4 / 1946
  25237. }
  25238. },
  25239. },
  25240. [
  25241. {
  25242. name: "Normal",
  25243. height: math.unit(4 + 6 / 12, "feet"),
  25244. default: true
  25245. },
  25246. {
  25247. name: "Macro",
  25248. height: math.unit(40, "feet")
  25249. },
  25250. ]
  25251. ))
  25252. characterMakers.push(() => makeCharacter(
  25253. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25254. {
  25255. front: {
  25256. height: math.unit(2.1, "meters"),
  25257. weight: math.unit(200, "lb"),
  25258. name: "Front",
  25259. image: {
  25260. source: "./media/characters/the-lascivious/front.svg",
  25261. extra: 1 / 0.893,
  25262. bottom: 3.5 / 573.7
  25263. }
  25264. },
  25265. },
  25266. [
  25267. {
  25268. name: "Human Scale",
  25269. height: math.unit(2.1, "meters")
  25270. },
  25271. {
  25272. name: "Wolxi Scale",
  25273. height: math.unit(46.2, "m"),
  25274. default: true
  25275. },
  25276. {
  25277. name: "Boinker of Buildings",
  25278. height: math.unit(10, "km")
  25279. },
  25280. {
  25281. name: "Shagger of Skyscrapers",
  25282. height: math.unit(40, "km")
  25283. },
  25284. {
  25285. name: "Banger of Boroughs",
  25286. height: math.unit(4000, "km")
  25287. },
  25288. {
  25289. name: "Screwer of States",
  25290. height: math.unit(100000, "km")
  25291. },
  25292. {
  25293. name: "Pounder of Planets",
  25294. height: math.unit(2000000, "km")
  25295. },
  25296. ]
  25297. ))
  25298. characterMakers.push(() => makeCharacter(
  25299. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25300. {
  25301. front: {
  25302. height: math.unit(6, "feet"),
  25303. weight: math.unit(150, "lb"),
  25304. name: "Front",
  25305. image: {
  25306. source: "./media/characters/aj/front.svg",
  25307. extra: 2039 / 1562,
  25308. bottom: 40 / 2079
  25309. }
  25310. },
  25311. },
  25312. [
  25313. {
  25314. name: "Normal",
  25315. height: math.unit(11 + 6 / 12, "feet"),
  25316. default: true
  25317. },
  25318. {
  25319. name: "Megamacro",
  25320. height: math.unit(60, "megameters")
  25321. },
  25322. ]
  25323. ))
  25324. characterMakers.push(() => makeCharacter(
  25325. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25326. {
  25327. side: {
  25328. height: math.unit(31 + 8 / 12, "feet"),
  25329. weight: math.unit(75000, "kg"),
  25330. name: "Side",
  25331. image: {
  25332. source: "./media/characters/koros/side.svg",
  25333. extra: 1442 / 1297,
  25334. bottom: 122.7 / 1562
  25335. }
  25336. },
  25337. dicksKingsCrown: {
  25338. height: math.unit(6, "feet"),
  25339. name: "Dicks (King's Crown)",
  25340. image: {
  25341. source: "./media/characters/koros/dicks-kings-crown.svg"
  25342. }
  25343. },
  25344. dicksTailSet: {
  25345. height: math.unit(3, "feet"),
  25346. name: "Dicks (Tail Set)",
  25347. image: {
  25348. source: "./media/characters/koros/dicks-tail-set.svg"
  25349. }
  25350. },
  25351. dickCumming: {
  25352. height: math.unit(7.98, "feet"),
  25353. name: "Dick (Cumming)",
  25354. image: {
  25355. source: "./media/characters/koros/dick-cumming.svg"
  25356. }
  25357. },
  25358. dicksBack: {
  25359. height: math.unit(5.9, "feet"),
  25360. name: "Dicks (Back)",
  25361. image: {
  25362. source: "./media/characters/koros/dicks-back.svg"
  25363. }
  25364. },
  25365. dicksFront: {
  25366. height: math.unit(3.72, "feet"),
  25367. name: "Dicks (Front)",
  25368. image: {
  25369. source: "./media/characters/koros/dicks-front.svg"
  25370. }
  25371. },
  25372. dicksPeeking: {
  25373. height: math.unit(3.0, "feet"),
  25374. name: "Dicks (Peeking)",
  25375. image: {
  25376. source: "./media/characters/koros/dicks-peeking.svg"
  25377. }
  25378. },
  25379. eye: {
  25380. height: math.unit(1.7, "feet"),
  25381. name: "Eye",
  25382. image: {
  25383. source: "./media/characters/koros/eye.svg"
  25384. }
  25385. },
  25386. headFront: {
  25387. height: math.unit(11.69, "feet"),
  25388. name: "Head (Front)",
  25389. image: {
  25390. source: "./media/characters/koros/head-front.svg"
  25391. }
  25392. },
  25393. headSide: {
  25394. height: math.unit(14, "feet"),
  25395. name: "Head (Side)",
  25396. image: {
  25397. source: "./media/characters/koros/head-side.svg"
  25398. }
  25399. },
  25400. leg: {
  25401. height: math.unit(17, "feet"),
  25402. name: "Leg",
  25403. image: {
  25404. source: "./media/characters/koros/leg.svg"
  25405. }
  25406. },
  25407. mawSide: {
  25408. height: math.unit(12.8, "feet"),
  25409. name: "Maw (Side)",
  25410. image: {
  25411. source: "./media/characters/koros/maw-side.svg"
  25412. }
  25413. },
  25414. mawSpitting: {
  25415. height: math.unit(17, "feet"),
  25416. name: "Maw (Spitting)",
  25417. image: {
  25418. source: "./media/characters/koros/maw-spitting.svg"
  25419. }
  25420. },
  25421. slit: {
  25422. height: math.unit(2.8, "feet"),
  25423. name: "Slit",
  25424. image: {
  25425. source: "./media/characters/koros/slit.svg"
  25426. }
  25427. },
  25428. stomach: {
  25429. height: math.unit(6.8, "feet"),
  25430. capacity: math.unit(20, "people"),
  25431. name: "Stomach",
  25432. image: {
  25433. source: "./media/characters/koros/stomach.svg"
  25434. }
  25435. },
  25436. wingspanBottom: {
  25437. height: math.unit(114, "feet"),
  25438. name: "Wingspan (Bottom)",
  25439. image: {
  25440. source: "./media/characters/koros/wingspan-bottom.svg"
  25441. }
  25442. },
  25443. wingspanTop: {
  25444. height: math.unit(104, "feet"),
  25445. name: "Wingspan (Top)",
  25446. image: {
  25447. source: "./media/characters/koros/wingspan-top.svg"
  25448. }
  25449. },
  25450. },
  25451. [
  25452. {
  25453. name: "Normal",
  25454. height: math.unit(31 + 8 / 12, "feet"),
  25455. default: true
  25456. },
  25457. ]
  25458. ))
  25459. characterMakers.push(() => makeCharacter(
  25460. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25461. {
  25462. front: {
  25463. height: math.unit(18 + 5 / 12, "feet"),
  25464. weight: math.unit(3750, "kg"),
  25465. name: "Front",
  25466. image: {
  25467. source: "./media/characters/vexx/front.svg",
  25468. extra: 426 / 396,
  25469. bottom: 31.5 / 458
  25470. }
  25471. },
  25472. maw: {
  25473. height: math.unit(6, "feet"),
  25474. name: "Maw",
  25475. image: {
  25476. source: "./media/characters/vexx/maw.svg"
  25477. }
  25478. },
  25479. },
  25480. [
  25481. {
  25482. name: "Normal",
  25483. height: math.unit(18 + 5 / 12, "feet"),
  25484. default: true
  25485. },
  25486. ]
  25487. ))
  25488. characterMakers.push(() => makeCharacter(
  25489. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25490. {
  25491. front: {
  25492. height: math.unit(17 + 6 / 12, "feet"),
  25493. weight: math.unit(150, "lb"),
  25494. name: "Front",
  25495. image: {
  25496. source: "./media/characters/baadra/front.svg",
  25497. extra: 3137 / 2890,
  25498. bottom: 168.4 / 3305
  25499. }
  25500. },
  25501. back: {
  25502. height: math.unit(17 + 6 / 12, "feet"),
  25503. weight: math.unit(150, "lb"),
  25504. name: "Back",
  25505. image: {
  25506. source: "./media/characters/baadra/back.svg",
  25507. extra: 3142 / 2890,
  25508. bottom: 220 / 3371
  25509. }
  25510. },
  25511. head: {
  25512. height: math.unit(5.45, "feet"),
  25513. name: "Head",
  25514. image: {
  25515. source: "./media/characters/baadra/head.svg"
  25516. }
  25517. },
  25518. headAngry: {
  25519. height: math.unit(4.95, "feet"),
  25520. name: "Head (Angry)",
  25521. image: {
  25522. source: "./media/characters/baadra/head-angry.svg"
  25523. }
  25524. },
  25525. headOpen: {
  25526. height: math.unit(6, "feet"),
  25527. name: "Head (Open)",
  25528. image: {
  25529. source: "./media/characters/baadra/head-open.svg"
  25530. }
  25531. },
  25532. },
  25533. [
  25534. {
  25535. name: "Normal",
  25536. height: math.unit(17 + 6 / 12, "feet"),
  25537. default: true
  25538. },
  25539. ]
  25540. ))
  25541. characterMakers.push(() => makeCharacter(
  25542. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25543. {
  25544. front: {
  25545. height: math.unit(7 + 3 / 12, "feet"),
  25546. weight: math.unit(180, "lb"),
  25547. name: "Front",
  25548. image: {
  25549. source: "./media/characters/juri/front.svg",
  25550. extra: 1401 / 1237,
  25551. bottom: 18.5 / 1418
  25552. }
  25553. },
  25554. side: {
  25555. height: math.unit(7 + 3 / 12, "feet"),
  25556. weight: math.unit(180, "lb"),
  25557. name: "Side",
  25558. image: {
  25559. source: "./media/characters/juri/side.svg",
  25560. extra: 1424 / 1242,
  25561. bottom: 18.5 / 1447
  25562. }
  25563. },
  25564. sitting: {
  25565. height: math.unit(6, "feet"),
  25566. weight: math.unit(180, "lb"),
  25567. name: "Sitting",
  25568. image: {
  25569. source: "./media/characters/juri/sitting.svg",
  25570. extra: 1270 / 1143,
  25571. bottom: 100 / 1343
  25572. }
  25573. },
  25574. back: {
  25575. height: math.unit(7 + 3 / 12, "feet"),
  25576. weight: math.unit(180, "lb"),
  25577. name: "Back",
  25578. image: {
  25579. source: "./media/characters/juri/back.svg",
  25580. extra: 1377 / 1240,
  25581. bottom: 23.7 / 1405
  25582. }
  25583. },
  25584. maw: {
  25585. height: math.unit(2.8, "feet"),
  25586. name: "Maw",
  25587. image: {
  25588. source: "./media/characters/juri/maw.svg"
  25589. }
  25590. },
  25591. stomach: {
  25592. height: math.unit(0.89, "feet"),
  25593. capacity: math.unit(4, "liters"),
  25594. name: "Stomach",
  25595. image: {
  25596. source: "./media/characters/juri/stomach.svg"
  25597. }
  25598. },
  25599. },
  25600. [
  25601. {
  25602. name: "Normal",
  25603. height: math.unit(7 + 3 / 12, "feet"),
  25604. default: true
  25605. },
  25606. ]
  25607. ))
  25608. characterMakers.push(() => makeCharacter(
  25609. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25610. {
  25611. fox: {
  25612. height: math.unit(5 + 6 / 12, "feet"),
  25613. weight: math.unit(140, "lb"),
  25614. name: "Fox",
  25615. image: {
  25616. source: "./media/characters/maxene-sita/fox.svg",
  25617. extra: 146 / 138,
  25618. bottom: 2.1 / 148.19
  25619. }
  25620. },
  25621. foxLaying: {
  25622. height: math.unit(1.70, "feet"),
  25623. weight: math.unit(140, "lb"),
  25624. name: "Fox (Laying)",
  25625. image: {
  25626. source: "./media/characters/maxene-sita/fox-laying.svg",
  25627. extra: 910 / 572,
  25628. bottom: 71 / 981
  25629. }
  25630. },
  25631. kitsune: {
  25632. height: math.unit(10, "feet"),
  25633. weight: math.unit(800, "lb"),
  25634. name: "Kitsune",
  25635. image: {
  25636. source: "./media/characters/maxene-sita/kitsune.svg",
  25637. extra: 185 / 176,
  25638. bottom: 4.7 / 189.9
  25639. }
  25640. },
  25641. hellhound: {
  25642. height: math.unit(10, "feet"),
  25643. weight: math.unit(700, "lb"),
  25644. name: "Hellhound",
  25645. image: {
  25646. source: "./media/characters/maxene-sita/hellhound.svg",
  25647. extra: 1600 / 1545,
  25648. bottom: 81 / 1681
  25649. }
  25650. },
  25651. },
  25652. [
  25653. {
  25654. name: "Normal",
  25655. height: math.unit(5 + 6 / 12, "feet"),
  25656. default: true
  25657. },
  25658. ]
  25659. ))
  25660. characterMakers.push(() => makeCharacter(
  25661. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25662. {
  25663. front: {
  25664. height: math.unit(3 + 4 / 12, "feet"),
  25665. weight: math.unit(70, "lb"),
  25666. name: "Front",
  25667. image: {
  25668. source: "./media/characters/maia/front.svg",
  25669. extra: 227 / 219.5,
  25670. bottom: 40 / 267
  25671. }
  25672. },
  25673. back: {
  25674. height: math.unit(3 + 4 / 12, "feet"),
  25675. weight: math.unit(70, "lb"),
  25676. name: "Back",
  25677. image: {
  25678. source: "./media/characters/maia/back.svg",
  25679. extra: 237 / 225
  25680. }
  25681. },
  25682. },
  25683. [
  25684. {
  25685. name: "Normal",
  25686. height: math.unit(3 + 4 / 12, "feet"),
  25687. default: true
  25688. },
  25689. ]
  25690. ))
  25691. characterMakers.push(() => makeCharacter(
  25692. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25693. {
  25694. front: {
  25695. height: math.unit(5 + 10 / 12, "feet"),
  25696. weight: math.unit(197, "lb"),
  25697. name: "Front",
  25698. image: {
  25699. source: "./media/characters/jabaro/front.svg",
  25700. extra: 225 / 216,
  25701. bottom: 5.06 / 230
  25702. }
  25703. },
  25704. back: {
  25705. height: math.unit(5 + 10 / 12, "feet"),
  25706. weight: math.unit(197, "lb"),
  25707. name: "Back",
  25708. image: {
  25709. source: "./media/characters/jabaro/back.svg",
  25710. extra: 225 / 219,
  25711. bottom: 1.9 / 227
  25712. }
  25713. },
  25714. },
  25715. [
  25716. {
  25717. name: "Normal",
  25718. height: math.unit(5 + 10 / 12, "feet"),
  25719. default: true
  25720. },
  25721. ]
  25722. ))
  25723. characterMakers.push(() => makeCharacter(
  25724. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25725. {
  25726. front: {
  25727. height: math.unit(5 + 8 / 12, "feet"),
  25728. weight: math.unit(139, "lb"),
  25729. name: "Front",
  25730. image: {
  25731. source: "./media/characters/risa/front.svg",
  25732. extra: 270 / 260,
  25733. bottom: 11.2 / 282
  25734. }
  25735. },
  25736. back: {
  25737. height: math.unit(5 + 8 / 12, "feet"),
  25738. weight: math.unit(139, "lb"),
  25739. name: "Back",
  25740. image: {
  25741. source: "./media/characters/risa/back.svg",
  25742. extra: 264 / 255,
  25743. bottom: 4 / 268
  25744. }
  25745. },
  25746. },
  25747. [
  25748. {
  25749. name: "Normal",
  25750. height: math.unit(5 + 8 / 12, "feet"),
  25751. default: true
  25752. },
  25753. ]
  25754. ))
  25755. characterMakers.push(() => makeCharacter(
  25756. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25757. {
  25758. front: {
  25759. height: math.unit(2 + 11 / 12, "feet"),
  25760. weight: math.unit(30, "lb"),
  25761. name: "Front",
  25762. image: {
  25763. source: "./media/characters/weatley/front.svg",
  25764. bottom: 10.7 / 414,
  25765. extra: 403.5 / 362
  25766. }
  25767. },
  25768. back: {
  25769. height: math.unit(2 + 11 / 12, "feet"),
  25770. weight: math.unit(30, "lb"),
  25771. name: "Back",
  25772. image: {
  25773. source: "./media/characters/weatley/back.svg",
  25774. bottom: 10.7 / 414,
  25775. extra: 403.5 / 362
  25776. }
  25777. },
  25778. },
  25779. [
  25780. {
  25781. name: "Normal",
  25782. height: math.unit(2 + 11 / 12, "feet"),
  25783. default: true
  25784. },
  25785. ]
  25786. ))
  25787. characterMakers.push(() => makeCharacter(
  25788. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25789. {
  25790. front: {
  25791. height: math.unit(5 + 2 / 12, "feet"),
  25792. weight: math.unit(50, "kg"),
  25793. name: "Front",
  25794. image: {
  25795. source: "./media/characters/mercury-crescent/front.svg",
  25796. extra: 1088 / 1033,
  25797. bottom: 18.9 / 1109
  25798. }
  25799. },
  25800. },
  25801. [
  25802. {
  25803. name: "Normal",
  25804. height: math.unit(5 + 2 / 12, "feet"),
  25805. default: true
  25806. },
  25807. ]
  25808. ))
  25809. characterMakers.push(() => makeCharacter(
  25810. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25811. {
  25812. front: {
  25813. height: math.unit(2, "feet"),
  25814. weight: math.unit(15, "kg"),
  25815. name: "Front",
  25816. image: {
  25817. source: "./media/characters/diamond-jones/front.svg",
  25818. extra: 727/723,
  25819. bottom: 46/773
  25820. }
  25821. },
  25822. },
  25823. [
  25824. {
  25825. name: "Normal",
  25826. height: math.unit(2, "feet"),
  25827. default: true
  25828. },
  25829. ]
  25830. ))
  25831. characterMakers.push(() => makeCharacter(
  25832. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25833. {
  25834. front: {
  25835. height: math.unit(3, "feet"),
  25836. weight: math.unit(30, "kg"),
  25837. name: "Front",
  25838. image: {
  25839. source: "./media/characters/sweet-bit/front.svg",
  25840. extra: 675 / 567,
  25841. bottom: 27.7 / 703
  25842. }
  25843. },
  25844. },
  25845. [
  25846. {
  25847. name: "Normal",
  25848. height: math.unit(3, "feet"),
  25849. default: true
  25850. },
  25851. ]
  25852. ))
  25853. characterMakers.push(() => makeCharacter(
  25854. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25855. {
  25856. side: {
  25857. height: math.unit(9.178, "feet"),
  25858. weight: math.unit(500, "lb"),
  25859. name: "Side",
  25860. image: {
  25861. source: "./media/characters/umbrazen/side.svg",
  25862. extra: 1730 / 1473,
  25863. bottom: 34.6 / 1765
  25864. }
  25865. },
  25866. },
  25867. [
  25868. {
  25869. name: "Normal",
  25870. height: math.unit(9.178, "feet"),
  25871. default: true
  25872. },
  25873. ]
  25874. ))
  25875. characterMakers.push(() => makeCharacter(
  25876. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25877. {
  25878. front: {
  25879. height: math.unit(10, "feet"),
  25880. weight: math.unit(750, "lb"),
  25881. name: "Front",
  25882. image: {
  25883. source: "./media/characters/arlist/front.svg",
  25884. extra: 961 / 778,
  25885. bottom: 6.2 / 986
  25886. }
  25887. },
  25888. },
  25889. [
  25890. {
  25891. name: "Normal",
  25892. height: math.unit(10, "feet"),
  25893. default: true
  25894. },
  25895. ]
  25896. ))
  25897. characterMakers.push(() => makeCharacter(
  25898. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25899. {
  25900. front: {
  25901. height: math.unit(5 + 1 / 12, "feet"),
  25902. weight: math.unit(110, "lb"),
  25903. name: "Front",
  25904. image: {
  25905. source: "./media/characters/aradel/front.svg",
  25906. extra: 324 / 303,
  25907. bottom: 3.6 / 329.4
  25908. }
  25909. },
  25910. },
  25911. [
  25912. {
  25913. name: "Normal",
  25914. height: math.unit(5 + 1 / 12, "feet"),
  25915. default: true
  25916. },
  25917. ]
  25918. ))
  25919. characterMakers.push(() => makeCharacter(
  25920. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25921. {
  25922. front: {
  25923. height: math.unit(3 + 8 / 12, "feet"),
  25924. weight: math.unit(50, "lb"),
  25925. name: "Front",
  25926. image: {
  25927. source: "./media/characters/serryn/front.svg",
  25928. extra: 1792 / 1656,
  25929. bottom: 43.5 / 1840
  25930. }
  25931. },
  25932. },
  25933. [
  25934. {
  25935. name: "Normal",
  25936. height: math.unit(3 + 8 / 12, "feet"),
  25937. default: true
  25938. },
  25939. ]
  25940. ))
  25941. characterMakers.push(() => makeCharacter(
  25942. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  25943. {
  25944. front: {
  25945. height: math.unit(7 + 10 / 12, "feet"),
  25946. weight: math.unit(255, "lb"),
  25947. name: "Front",
  25948. image: {
  25949. source: "./media/characters/xavier-thyme/front.svg",
  25950. extra: 3733 / 3642,
  25951. bottom: 131 / 3869
  25952. }
  25953. },
  25954. frontRaven: {
  25955. height: math.unit(7 + 10 / 12, "feet"),
  25956. weight: math.unit(255, "lb"),
  25957. name: "Front (Raven)",
  25958. image: {
  25959. source: "./media/characters/xavier-thyme/front-raven.svg",
  25960. extra: 4385 / 3642,
  25961. bottom: 131 / 4517
  25962. }
  25963. },
  25964. },
  25965. [
  25966. {
  25967. name: "Normal",
  25968. height: math.unit(7 + 10 / 12, "feet"),
  25969. default: true
  25970. },
  25971. ]
  25972. ))
  25973. characterMakers.push(() => makeCharacter(
  25974. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25975. {
  25976. front: {
  25977. height: math.unit(1.6, "m"),
  25978. weight: math.unit(50, "kg"),
  25979. name: "Front",
  25980. image: {
  25981. source: "./media/characters/kiki/front.svg",
  25982. extra: 4682 / 3610,
  25983. bottom: 115 / 4777
  25984. }
  25985. },
  25986. },
  25987. [
  25988. {
  25989. name: "Normal",
  25990. height: math.unit(1.6, "meters"),
  25991. default: true
  25992. },
  25993. ]
  25994. ))
  25995. characterMakers.push(() => makeCharacter(
  25996. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25997. {
  25998. front: {
  25999. height: math.unit(50, "m"),
  26000. weight: math.unit(500, "tonnes"),
  26001. name: "Front",
  26002. image: {
  26003. source: "./media/characters/ryoko/front.svg",
  26004. extra: 4632 / 3926,
  26005. bottom: 193 / 4823
  26006. }
  26007. },
  26008. },
  26009. [
  26010. {
  26011. name: "Normal",
  26012. height: math.unit(50, "meters"),
  26013. default: true
  26014. },
  26015. ]
  26016. ))
  26017. characterMakers.push(() => makeCharacter(
  26018. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26019. {
  26020. front: {
  26021. height: math.unit(30, "m"),
  26022. weight: math.unit(22, "tonnes"),
  26023. name: "Front",
  26024. image: {
  26025. source: "./media/characters/elio/front.svg",
  26026. extra: 4582 / 3720,
  26027. bottom: 236 / 4828
  26028. }
  26029. },
  26030. },
  26031. [
  26032. {
  26033. name: "Normal",
  26034. height: math.unit(30, "meters"),
  26035. default: true
  26036. },
  26037. ]
  26038. ))
  26039. characterMakers.push(() => makeCharacter(
  26040. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26041. {
  26042. front: {
  26043. height: math.unit(6 + 3 / 12, "feet"),
  26044. weight: math.unit(120, "lb"),
  26045. name: "Front",
  26046. image: {
  26047. source: "./media/characters/azura/front.svg",
  26048. extra: 1149 / 1135,
  26049. bottom: 45 / 1194
  26050. }
  26051. },
  26052. frontClothed: {
  26053. height: math.unit(6 + 3 / 12, "feet"),
  26054. weight: math.unit(120, "lb"),
  26055. name: "Front (Clothed)",
  26056. image: {
  26057. source: "./media/characters/azura/front-clothed.svg",
  26058. extra: 1149 / 1135,
  26059. bottom: 45 / 1194
  26060. }
  26061. },
  26062. },
  26063. [
  26064. {
  26065. name: "Normal",
  26066. height: math.unit(6 + 3 / 12, "feet"),
  26067. default: true
  26068. },
  26069. {
  26070. name: "Macro",
  26071. height: math.unit(20 + 6 / 12, "feet")
  26072. },
  26073. {
  26074. name: "Megamacro",
  26075. height: math.unit(12, "miles")
  26076. },
  26077. {
  26078. name: "Gigamacro",
  26079. height: math.unit(10000, "miles")
  26080. },
  26081. {
  26082. name: "Teramacro",
  26083. height: math.unit(900000, "miles")
  26084. },
  26085. ]
  26086. ))
  26087. characterMakers.push(() => makeCharacter(
  26088. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26089. {
  26090. front: {
  26091. height: math.unit(12, "feet"),
  26092. weight: math.unit(1, "ton"),
  26093. capacity: math.unit(660000, "gallons"),
  26094. name: "Front",
  26095. image: {
  26096. source: "./media/characters/zeus/front.svg",
  26097. extra: 5005 / 4717,
  26098. bottom: 363 / 5388
  26099. }
  26100. },
  26101. },
  26102. [
  26103. {
  26104. name: "Normal",
  26105. height: math.unit(12, "feet")
  26106. },
  26107. {
  26108. name: "Preferred Size",
  26109. height: math.unit(0.5, "miles"),
  26110. default: true
  26111. },
  26112. {
  26113. name: "Giga Horse",
  26114. height: math.unit(300, "miles")
  26115. },
  26116. {
  26117. name: "Riding Planets",
  26118. height: math.unit(30, "megameters")
  26119. },
  26120. {
  26121. name: "Cosmic Giant",
  26122. height: math.unit(3, "zettameters")
  26123. },
  26124. {
  26125. name: "Breeding God",
  26126. height: math.unit(9.92e22, "yottameters")
  26127. },
  26128. ]
  26129. ))
  26130. characterMakers.push(() => makeCharacter(
  26131. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26132. {
  26133. side: {
  26134. height: math.unit(9, "feet"),
  26135. weight: math.unit(1500, "kg"),
  26136. name: "Side",
  26137. image: {
  26138. source: "./media/characters/fang/side.svg",
  26139. extra: 924 / 866,
  26140. bottom: 47.5 / 972.3
  26141. }
  26142. },
  26143. },
  26144. [
  26145. {
  26146. name: "Normal",
  26147. height: math.unit(9, "feet"),
  26148. default: true
  26149. },
  26150. {
  26151. name: "Macro",
  26152. height: math.unit(75 + 6 / 12, "feet")
  26153. },
  26154. {
  26155. name: "Teramacro",
  26156. height: math.unit(50000, "miles")
  26157. },
  26158. ]
  26159. ))
  26160. characterMakers.push(() => makeCharacter(
  26161. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26162. {
  26163. front: {
  26164. height: math.unit(10, "feet"),
  26165. weight: math.unit(2, "tons"),
  26166. name: "Front",
  26167. image: {
  26168. source: "./media/characters/rekhit/front.svg",
  26169. extra: 2796 / 2590,
  26170. bottom: 225 / 3022
  26171. }
  26172. },
  26173. },
  26174. [
  26175. {
  26176. name: "Normal",
  26177. height: math.unit(10, "feet"),
  26178. default: true
  26179. },
  26180. {
  26181. name: "Macro",
  26182. height: math.unit(500, "feet")
  26183. },
  26184. ]
  26185. ))
  26186. characterMakers.push(() => makeCharacter(
  26187. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26188. {
  26189. front: {
  26190. height: math.unit(7 + 6.451 / 12, "feet"),
  26191. weight: math.unit(310, "lb"),
  26192. name: "Front",
  26193. image: {
  26194. source: "./media/characters/dahlia-verrick/front.svg",
  26195. extra: 1488 / 1365,
  26196. bottom: 6.2 / 1495
  26197. }
  26198. },
  26199. back: {
  26200. height: math.unit(7 + 6.451 / 12, "feet"),
  26201. weight: math.unit(310, "lb"),
  26202. name: "Back",
  26203. image: {
  26204. source: "./media/characters/dahlia-verrick/back.svg",
  26205. extra: 1472 / 1351,
  26206. bottom: 5.28 / 1477
  26207. }
  26208. },
  26209. frontBusiness: {
  26210. height: math.unit(7 + 6.451 / 12, "feet"),
  26211. weight: math.unit(200, "lb"),
  26212. name: "Front (Business)",
  26213. image: {
  26214. source: "./media/characters/dahlia-verrick/front-business.svg",
  26215. extra: 1478 / 1381,
  26216. bottom: 5.5 / 1484
  26217. }
  26218. },
  26219. frontCasual: {
  26220. height: math.unit(7 + 6.451 / 12, "feet"),
  26221. weight: math.unit(200, "lb"),
  26222. name: "Front (Casual)",
  26223. image: {
  26224. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26225. extra: 1478 / 1381,
  26226. bottom: 5.5 / 1484
  26227. }
  26228. },
  26229. },
  26230. [
  26231. {
  26232. name: "Travel-Sized",
  26233. height: math.unit(7.45, "inches")
  26234. },
  26235. {
  26236. name: "Normal",
  26237. height: math.unit(7 + 6.451 / 12, "feet"),
  26238. default: true
  26239. },
  26240. {
  26241. name: "Hitting the Town",
  26242. height: math.unit(37 + 8 / 12, "feet")
  26243. },
  26244. {
  26245. name: "Stomp in the Suburbs",
  26246. height: math.unit(964 + 9.728 / 12, "feet")
  26247. },
  26248. {
  26249. name: "Sit on the City",
  26250. height: math.unit(61747 + 10.592 / 12, "feet")
  26251. },
  26252. {
  26253. name: "Glomp the Globe",
  26254. height: math.unit(252919327 + 4.832 / 12, "feet")
  26255. },
  26256. ]
  26257. ))
  26258. characterMakers.push(() => makeCharacter(
  26259. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26260. {
  26261. front: {
  26262. height: math.unit(6 + 4 / 12, "feet"),
  26263. weight: math.unit(320, "lb"),
  26264. name: "Front",
  26265. image: {
  26266. source: "./media/characters/balina-mahigan/front.svg",
  26267. extra: 447 / 428,
  26268. bottom: 18 / 466
  26269. }
  26270. },
  26271. back: {
  26272. height: math.unit(6 + 4 / 12, "feet"),
  26273. weight: math.unit(320, "lb"),
  26274. name: "Back",
  26275. image: {
  26276. source: "./media/characters/balina-mahigan/back.svg",
  26277. extra: 445 / 428,
  26278. bottom: 4.07 / 448
  26279. }
  26280. },
  26281. arm: {
  26282. height: math.unit(1.88, "feet"),
  26283. name: "Arm",
  26284. image: {
  26285. source: "./media/characters/balina-mahigan/arm.svg"
  26286. }
  26287. },
  26288. backPort: {
  26289. height: math.unit(0.685, "feet"),
  26290. name: "Back Port",
  26291. image: {
  26292. source: "./media/characters/balina-mahigan/back-port.svg"
  26293. }
  26294. },
  26295. hoofpaw: {
  26296. height: math.unit(1.41, "feet"),
  26297. name: "Hoofpaw",
  26298. image: {
  26299. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26300. }
  26301. },
  26302. leftHandBack: {
  26303. height: math.unit(0.938, "feet"),
  26304. name: "Left Hand (Back)",
  26305. image: {
  26306. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26307. }
  26308. },
  26309. leftHandFront: {
  26310. height: math.unit(0.938, "feet"),
  26311. name: "Left Hand (Front)",
  26312. image: {
  26313. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26314. }
  26315. },
  26316. rightHandBack: {
  26317. height: math.unit(0.95, "feet"),
  26318. name: "Right Hand (Back)",
  26319. image: {
  26320. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26321. }
  26322. },
  26323. rightHandFront: {
  26324. height: math.unit(0.95, "feet"),
  26325. name: "Right Hand (Front)",
  26326. image: {
  26327. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26328. }
  26329. },
  26330. },
  26331. [
  26332. {
  26333. name: "Normal",
  26334. height: math.unit(6 + 4 / 12, "feet"),
  26335. default: true
  26336. },
  26337. ]
  26338. ))
  26339. characterMakers.push(() => makeCharacter(
  26340. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26341. {
  26342. front: {
  26343. height: math.unit(6, "feet"),
  26344. weight: math.unit(320, "lb"),
  26345. name: "Front",
  26346. image: {
  26347. source: "./media/characters/balina-mejeri/front.svg",
  26348. extra: 517 / 488,
  26349. bottom: 44.2 / 561
  26350. }
  26351. },
  26352. },
  26353. [
  26354. {
  26355. name: "Normal",
  26356. height: math.unit(6 + 4 / 12, "feet")
  26357. },
  26358. {
  26359. name: "Business",
  26360. height: math.unit(155, "feet"),
  26361. default: true
  26362. },
  26363. ]
  26364. ))
  26365. characterMakers.push(() => makeCharacter(
  26366. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26367. {
  26368. kneeling: {
  26369. height: math.unit(6 + 4 / 12, "feet"),
  26370. weight: math.unit(300 * 20, "lb"),
  26371. name: "Kneeling",
  26372. image: {
  26373. source: "./media/characters/balbarian/kneeling.svg",
  26374. extra: 922 / 862,
  26375. bottom: 42.4 / 965
  26376. }
  26377. },
  26378. },
  26379. [
  26380. {
  26381. name: "Normal",
  26382. height: math.unit(6 + 4 / 12, "feet")
  26383. },
  26384. {
  26385. name: "Treasured",
  26386. height: math.unit(18 + 9 / 12, "feet"),
  26387. default: true
  26388. },
  26389. {
  26390. name: "Macro",
  26391. height: math.unit(900, "feet")
  26392. },
  26393. ]
  26394. ))
  26395. characterMakers.push(() => makeCharacter(
  26396. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26397. {
  26398. front: {
  26399. height: math.unit(6 + 4 / 12, "feet"),
  26400. weight: math.unit(325, "lb"),
  26401. name: "Front",
  26402. image: {
  26403. source: "./media/characters/balina-amarini/front.svg",
  26404. extra: 415 / 403,
  26405. bottom: 19 / 433.4
  26406. }
  26407. },
  26408. back: {
  26409. height: math.unit(6 + 4 / 12, "feet"),
  26410. weight: math.unit(325, "lb"),
  26411. name: "Back",
  26412. image: {
  26413. source: "./media/characters/balina-amarini/back.svg",
  26414. extra: 415 / 403,
  26415. bottom: 13.5 / 432
  26416. }
  26417. },
  26418. overdrive: {
  26419. height: math.unit(6 + 4 / 12, "feet"),
  26420. weight: math.unit(400, "lb"),
  26421. name: "Overdrive",
  26422. image: {
  26423. source: "./media/characters/balina-amarini/overdrive.svg",
  26424. extra: 269 / 259,
  26425. bottom: 12 / 282
  26426. }
  26427. },
  26428. },
  26429. [
  26430. {
  26431. name: "Boom",
  26432. height: math.unit(9 + 10 / 12, "feet"),
  26433. default: true
  26434. },
  26435. {
  26436. name: "Macro",
  26437. height: math.unit(280, "feet")
  26438. },
  26439. ]
  26440. ))
  26441. characterMakers.push(() => makeCharacter(
  26442. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26443. {
  26444. goddess: {
  26445. height: math.unit(600, "feet"),
  26446. weight: math.unit(2000000, "tons"),
  26447. name: "Goddess",
  26448. image: {
  26449. source: "./media/characters/lady-kubwa/goddess.svg",
  26450. extra: 1240.5 / 1223,
  26451. bottom: 22 / 1263
  26452. }
  26453. },
  26454. goddesser: {
  26455. height: math.unit(900, "feet"),
  26456. weight: math.unit(20000000, "lb"),
  26457. name: "Goddess-er",
  26458. image: {
  26459. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26460. extra: 899 / 888,
  26461. bottom: 12.6 / 912
  26462. }
  26463. },
  26464. },
  26465. [
  26466. {
  26467. name: "Macro",
  26468. height: math.unit(600, "feet"),
  26469. default: true
  26470. },
  26471. {
  26472. name: "Megamacro",
  26473. height: math.unit(250, "miles")
  26474. },
  26475. ]
  26476. ))
  26477. characterMakers.push(() => makeCharacter(
  26478. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26479. {
  26480. front: {
  26481. height: math.unit(7 + 7 / 12, "feet"),
  26482. weight: math.unit(250, "lb"),
  26483. name: "Front",
  26484. image: {
  26485. source: "./media/characters/tala-grovehorn/front.svg",
  26486. extra: 2636 / 2525,
  26487. bottom: 147 / 2781
  26488. }
  26489. },
  26490. back: {
  26491. height: math.unit(7 + 7 / 12, "feet"),
  26492. weight: math.unit(250, "lb"),
  26493. name: "Back",
  26494. image: {
  26495. source: "./media/characters/tala-grovehorn/back.svg",
  26496. extra: 2635 / 2539,
  26497. bottom: 100 / 2732.8
  26498. }
  26499. },
  26500. mouth: {
  26501. height: math.unit(1.15, "feet"),
  26502. name: "Mouth",
  26503. image: {
  26504. source: "./media/characters/tala-grovehorn/mouth.svg"
  26505. }
  26506. },
  26507. dick: {
  26508. height: math.unit(2.36, "feet"),
  26509. name: "Dick",
  26510. image: {
  26511. source: "./media/characters/tala-grovehorn/dick.svg"
  26512. }
  26513. },
  26514. slit: {
  26515. height: math.unit(0.61, "feet"),
  26516. name: "Slit",
  26517. image: {
  26518. source: "./media/characters/tala-grovehorn/slit.svg"
  26519. }
  26520. },
  26521. },
  26522. [
  26523. ]
  26524. ))
  26525. characterMakers.push(() => makeCharacter(
  26526. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26527. {
  26528. front: {
  26529. height: math.unit(7 + 7 / 12, "feet"),
  26530. weight: math.unit(225, "lb"),
  26531. name: "Front",
  26532. image: {
  26533. source: "./media/characters/epona/front.svg",
  26534. extra: 2445 / 2290,
  26535. bottom: 251 / 2696
  26536. }
  26537. },
  26538. back: {
  26539. height: math.unit(7 + 7 / 12, "feet"),
  26540. weight: math.unit(225, "lb"),
  26541. name: "Back",
  26542. image: {
  26543. source: "./media/characters/epona/back.svg",
  26544. extra: 2546 / 2408,
  26545. bottom: 44 / 2589
  26546. }
  26547. },
  26548. genitals: {
  26549. height: math.unit(1.5, "feet"),
  26550. name: "Genitals",
  26551. image: {
  26552. source: "./media/characters/epona/genitals.svg"
  26553. }
  26554. },
  26555. },
  26556. [
  26557. {
  26558. name: "Normal",
  26559. height: math.unit(7 + 7 / 12, "feet"),
  26560. default: true
  26561. },
  26562. ]
  26563. ))
  26564. characterMakers.push(() => makeCharacter(
  26565. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26566. {
  26567. front: {
  26568. height: math.unit(7, "feet"),
  26569. weight: math.unit(518, "lb"),
  26570. name: "Front",
  26571. image: {
  26572. source: "./media/characters/avia-bloodbourn/front.svg",
  26573. extra: 1466 / 1350,
  26574. bottom: 65 / 1527
  26575. }
  26576. },
  26577. },
  26578. [
  26579. ]
  26580. ))
  26581. characterMakers.push(() => makeCharacter(
  26582. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26583. {
  26584. front: {
  26585. height: math.unit(9.35, "feet"),
  26586. weight: math.unit(600, "lb"),
  26587. name: "Front",
  26588. image: {
  26589. source: "./media/characters/amera/front.svg",
  26590. extra: 891 / 818,
  26591. bottom: 30 / 922.7
  26592. }
  26593. },
  26594. back: {
  26595. height: math.unit(9.35, "feet"),
  26596. weight: math.unit(600, "lb"),
  26597. name: "Back",
  26598. image: {
  26599. source: "./media/characters/amera/back.svg",
  26600. extra: 876 / 824,
  26601. bottom: 6.8 / 884
  26602. }
  26603. },
  26604. dick: {
  26605. height: math.unit(2.14, "feet"),
  26606. name: "Dick",
  26607. image: {
  26608. source: "./media/characters/amera/dick.svg"
  26609. }
  26610. },
  26611. },
  26612. [
  26613. {
  26614. name: "Normal",
  26615. height: math.unit(9.35, "feet"),
  26616. default: true
  26617. },
  26618. ]
  26619. ))
  26620. characterMakers.push(() => makeCharacter(
  26621. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26622. {
  26623. kneeling: {
  26624. height: math.unit(3 + 4 / 12, "feet"),
  26625. weight: math.unit(90, "lb"),
  26626. name: "Kneeling",
  26627. image: {
  26628. source: "./media/characters/rosewen/kneeling.svg",
  26629. extra: 1835 / 1571,
  26630. bottom: 27.7 / 1862
  26631. }
  26632. },
  26633. },
  26634. [
  26635. {
  26636. name: "Normal",
  26637. height: math.unit(3 + 4 / 12, "feet"),
  26638. default: true
  26639. },
  26640. ]
  26641. ))
  26642. characterMakers.push(() => makeCharacter(
  26643. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26644. {
  26645. front: {
  26646. height: math.unit(5 + 10 / 12, "feet"),
  26647. weight: math.unit(200, "lb"),
  26648. name: "Front",
  26649. image: {
  26650. source: "./media/characters/sabah/front.svg",
  26651. extra: 849 / 763,
  26652. bottom: 33.9 / 881
  26653. }
  26654. },
  26655. },
  26656. [
  26657. {
  26658. name: "Normal",
  26659. height: math.unit(5 + 10 / 12, "feet"),
  26660. default: true
  26661. },
  26662. ]
  26663. ))
  26664. characterMakers.push(() => makeCharacter(
  26665. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26666. {
  26667. front: {
  26668. height: math.unit(3 + 5 / 12, "feet"),
  26669. weight: math.unit(40, "kg"),
  26670. name: "Front",
  26671. image: {
  26672. source: "./media/characters/purple-flame/front.svg",
  26673. extra: 1577 / 1412,
  26674. bottom: 97 / 1694
  26675. }
  26676. },
  26677. frontDressed: {
  26678. height: math.unit(3 + 5 / 12, "feet"),
  26679. weight: math.unit(40, "kg"),
  26680. name: "Front (Dressed)",
  26681. image: {
  26682. source: "./media/characters/purple-flame/front-dressed.svg",
  26683. extra: 1577 / 1412,
  26684. bottom: 97 / 1694
  26685. }
  26686. },
  26687. headphones: {
  26688. height: math.unit(0.85, "feet"),
  26689. name: "Headphones",
  26690. image: {
  26691. source: "./media/characters/purple-flame/headphones.svg"
  26692. }
  26693. },
  26694. },
  26695. [
  26696. {
  26697. name: "Really Small",
  26698. height: math.unit(5, "cm")
  26699. },
  26700. {
  26701. name: "Micro",
  26702. height: math.unit(1 + 5 / 12, "feet")
  26703. },
  26704. {
  26705. name: "Normal",
  26706. height: math.unit(3 + 5 / 12, "feet"),
  26707. default: true
  26708. },
  26709. {
  26710. name: "Minimacro",
  26711. height: math.unit(125, "feet")
  26712. },
  26713. {
  26714. name: "Macro",
  26715. height: math.unit(0.5, "miles")
  26716. },
  26717. {
  26718. name: "Megamacro",
  26719. height: math.unit(50, "miles")
  26720. },
  26721. {
  26722. name: "Gigantic",
  26723. height: math.unit(750, "miles")
  26724. },
  26725. {
  26726. name: "Planetary",
  26727. height: math.unit(15000, "miles")
  26728. },
  26729. ]
  26730. ))
  26731. characterMakers.push(() => makeCharacter(
  26732. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26733. {
  26734. front: {
  26735. height: math.unit(14, "feet"),
  26736. weight: math.unit(959, "lb"),
  26737. name: "Front",
  26738. image: {
  26739. source: "./media/characters/arsenal/front.svg",
  26740. extra: 2357 / 2157,
  26741. bottom: 93 / 2458
  26742. }
  26743. },
  26744. },
  26745. [
  26746. {
  26747. name: "Normal",
  26748. height: math.unit(14, "feet"),
  26749. default: true
  26750. },
  26751. ]
  26752. ))
  26753. characterMakers.push(() => makeCharacter(
  26754. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26755. {
  26756. front: {
  26757. height: math.unit(6, "feet"),
  26758. weight: math.unit(150, "lb"),
  26759. name: "Front",
  26760. image: {
  26761. source: "./media/characters/adira/front.svg",
  26762. extra: 1078 / 1029,
  26763. bottom: 87 / 1166
  26764. }
  26765. },
  26766. },
  26767. [
  26768. {
  26769. name: "Micro",
  26770. height: math.unit(4, "inches"),
  26771. default: true
  26772. },
  26773. {
  26774. name: "Macro",
  26775. height: math.unit(50, "feet")
  26776. },
  26777. ]
  26778. ))
  26779. characterMakers.push(() => makeCharacter(
  26780. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26781. {
  26782. front: {
  26783. height: math.unit(16, "feet"),
  26784. weight: math.unit(1000, "lb"),
  26785. name: "Front",
  26786. image: {
  26787. source: "./media/characters/grim/front.svg",
  26788. extra: 622 / 614,
  26789. bottom: 18.1 / 642
  26790. }
  26791. },
  26792. back: {
  26793. height: math.unit(16, "feet"),
  26794. weight: math.unit(1000, "lb"),
  26795. name: "Back",
  26796. image: {
  26797. source: "./media/characters/grim/back.svg",
  26798. extra: 610.6 / 602,
  26799. bottom: 40.8 / 652
  26800. }
  26801. },
  26802. hunched: {
  26803. height: math.unit(9.75, "feet"),
  26804. weight: math.unit(1000, "lb"),
  26805. name: "Hunched",
  26806. image: {
  26807. source: "./media/characters/grim/hunched.svg",
  26808. extra: 304 / 297,
  26809. bottom: 35.4 / 394
  26810. }
  26811. },
  26812. },
  26813. [
  26814. {
  26815. name: "Normal",
  26816. height: math.unit(16, "feet"),
  26817. default: true
  26818. },
  26819. ]
  26820. ))
  26821. characterMakers.push(() => makeCharacter(
  26822. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26823. {
  26824. front: {
  26825. height: math.unit(2.3, "meters"),
  26826. weight: math.unit(300, "lb"),
  26827. name: "Front",
  26828. image: {
  26829. source: "./media/characters/sinja/front-sfw.svg",
  26830. extra: 1393 / 1294,
  26831. bottom: 70 / 1463
  26832. }
  26833. },
  26834. frontNsfw: {
  26835. height: math.unit(2.3, "meters"),
  26836. weight: math.unit(300, "lb"),
  26837. name: "Front (NSFW)",
  26838. image: {
  26839. source: "./media/characters/sinja/front-nsfw.svg",
  26840. extra: 1393 / 1294,
  26841. bottom: 70 / 1463
  26842. }
  26843. },
  26844. back: {
  26845. height: math.unit(2.3, "meters"),
  26846. weight: math.unit(300, "lb"),
  26847. name: "Back",
  26848. image: {
  26849. source: "./media/characters/sinja/back.svg",
  26850. extra: 1393 / 1294,
  26851. bottom: 70 / 1463
  26852. }
  26853. },
  26854. head: {
  26855. height: math.unit(1.771, "feet"),
  26856. name: "Head",
  26857. image: {
  26858. source: "./media/characters/sinja/head.svg"
  26859. }
  26860. },
  26861. slit: {
  26862. height: math.unit(0.8, "feet"),
  26863. name: "Slit",
  26864. image: {
  26865. source: "./media/characters/sinja/slit.svg"
  26866. }
  26867. },
  26868. },
  26869. [
  26870. {
  26871. name: "Normal",
  26872. height: math.unit(2.3, "meters")
  26873. },
  26874. {
  26875. name: "Macro",
  26876. height: math.unit(91, "meters"),
  26877. default: true
  26878. },
  26879. {
  26880. name: "Megamacro",
  26881. height: math.unit(91440, "meters")
  26882. },
  26883. {
  26884. name: "Gigamacro",
  26885. height: math.unit(60960000, "meters")
  26886. },
  26887. {
  26888. name: "Teramacro",
  26889. height: math.unit(9144000000, "meters")
  26890. },
  26891. ]
  26892. ))
  26893. characterMakers.push(() => makeCharacter(
  26894. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26895. {
  26896. front: {
  26897. height: math.unit(1.7, "meters"),
  26898. weight: math.unit(130, "lb"),
  26899. name: "Front",
  26900. image: {
  26901. source: "./media/characters/kyu/front.svg",
  26902. extra: 415 / 395,
  26903. bottom: 5 / 420
  26904. }
  26905. },
  26906. head: {
  26907. height: math.unit(1.75, "feet"),
  26908. name: "Head",
  26909. image: {
  26910. source: "./media/characters/kyu/head.svg"
  26911. }
  26912. },
  26913. foot: {
  26914. height: math.unit(0.81, "feet"),
  26915. name: "Foot",
  26916. image: {
  26917. source: "./media/characters/kyu/foot.svg"
  26918. }
  26919. },
  26920. },
  26921. [
  26922. {
  26923. name: "Normal",
  26924. height: math.unit(1.7, "meters")
  26925. },
  26926. {
  26927. name: "Macro",
  26928. height: math.unit(131, "feet"),
  26929. default: true
  26930. },
  26931. {
  26932. name: "Megamacro",
  26933. height: math.unit(91440, "meters")
  26934. },
  26935. {
  26936. name: "Gigamacro",
  26937. height: math.unit(60960000, "meters")
  26938. },
  26939. {
  26940. name: "Teramacro",
  26941. height: math.unit(9144000000, "meters")
  26942. },
  26943. ]
  26944. ))
  26945. characterMakers.push(() => makeCharacter(
  26946. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26947. {
  26948. front: {
  26949. height: math.unit(7 + 1 / 12, "feet"),
  26950. weight: math.unit(250, "lb"),
  26951. name: "Front",
  26952. image: {
  26953. source: "./media/characters/joey/front.svg",
  26954. extra: 1791 / 1537,
  26955. bottom: 28 / 1816
  26956. }
  26957. },
  26958. },
  26959. [
  26960. {
  26961. name: "Micro",
  26962. height: math.unit(3, "inches")
  26963. },
  26964. {
  26965. name: "Normal",
  26966. height: math.unit(7 + 1 / 12, "feet"),
  26967. default: true
  26968. },
  26969. ]
  26970. ))
  26971. characterMakers.push(() => makeCharacter(
  26972. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26973. {
  26974. front: {
  26975. height: math.unit(165, "cm"),
  26976. weight: math.unit(140, "lb"),
  26977. name: "Front",
  26978. image: {
  26979. source: "./media/characters/sam-evans/front.svg",
  26980. extra: 3417 / 3230,
  26981. bottom: 41.3 / 3417
  26982. }
  26983. },
  26984. frontSixTails: {
  26985. height: math.unit(165, "cm"),
  26986. weight: math.unit(140, "lb"),
  26987. name: "Front-six-tails",
  26988. image: {
  26989. source: "./media/characters/sam-evans/front-six-tails.svg",
  26990. extra: 3417 / 3230,
  26991. bottom: 41.3 / 3417
  26992. }
  26993. },
  26994. back: {
  26995. height: math.unit(165, "cm"),
  26996. weight: math.unit(140, "lb"),
  26997. name: "Back",
  26998. image: {
  26999. source: "./media/characters/sam-evans/back.svg",
  27000. extra: 3227 / 3032,
  27001. bottom: 6.8 / 3234
  27002. }
  27003. },
  27004. face: {
  27005. height: math.unit(0.68, "feet"),
  27006. name: "Face",
  27007. image: {
  27008. source: "./media/characters/sam-evans/face.svg"
  27009. }
  27010. },
  27011. },
  27012. [
  27013. {
  27014. name: "Normal",
  27015. height: math.unit(165, "cm"),
  27016. default: true
  27017. },
  27018. {
  27019. name: "Macro",
  27020. height: math.unit(100, "meters")
  27021. },
  27022. {
  27023. name: "Macro+",
  27024. height: math.unit(800, "meters")
  27025. },
  27026. {
  27027. name: "Macro++",
  27028. height: math.unit(3, "km")
  27029. },
  27030. {
  27031. name: "Macro+++",
  27032. height: math.unit(30, "km")
  27033. },
  27034. ]
  27035. ))
  27036. characterMakers.push(() => makeCharacter(
  27037. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27038. {
  27039. front: {
  27040. height: math.unit(10, "feet"),
  27041. weight: math.unit(750, "lb"),
  27042. name: "Front",
  27043. image: {
  27044. source: "./media/characters/juliet-a/front.svg",
  27045. extra: 1766 / 1720,
  27046. bottom: 43 / 1809
  27047. }
  27048. },
  27049. back: {
  27050. height: math.unit(10, "feet"),
  27051. weight: math.unit(750, "lb"),
  27052. name: "Back",
  27053. image: {
  27054. source: "./media/characters/juliet-a/back.svg",
  27055. extra: 1781 / 1734,
  27056. bottom: 35 / 1810,
  27057. }
  27058. },
  27059. },
  27060. [
  27061. {
  27062. name: "Normal",
  27063. height: math.unit(10, "feet"),
  27064. default: true
  27065. },
  27066. {
  27067. name: "Dragon Form",
  27068. height: math.unit(250, "feet")
  27069. },
  27070. {
  27071. name: "Macro",
  27072. height: math.unit(1000, "feet")
  27073. },
  27074. {
  27075. name: "Megamacro",
  27076. height: math.unit(10000, "feet")
  27077. }
  27078. ]
  27079. ))
  27080. characterMakers.push(() => makeCharacter(
  27081. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27082. {
  27083. regular: {
  27084. height: math.unit(7 + 3 / 12, "feet"),
  27085. weight: math.unit(260, "lb"),
  27086. name: "Regular",
  27087. image: {
  27088. source: "./media/characters/wild/regular.svg",
  27089. extra: 97.45 / 92,
  27090. bottom: 6.8 / 104.3
  27091. }
  27092. },
  27093. biggums: {
  27094. height: math.unit(8 + 6 / 12, "feet"),
  27095. weight: math.unit(425, "lb"),
  27096. name: "Biggums",
  27097. image: {
  27098. source: "./media/characters/wild/biggums.svg",
  27099. extra: 97.45 / 92,
  27100. bottom: 7.5 / 132.34
  27101. }
  27102. },
  27103. mawRegular: {
  27104. height: math.unit(1.24, "feet"),
  27105. name: "Maw (Regular)",
  27106. image: {
  27107. source: "./media/characters/wild/maw.svg"
  27108. }
  27109. },
  27110. mawBiggums: {
  27111. height: math.unit(1.47, "feet"),
  27112. name: "Maw (Biggums)",
  27113. image: {
  27114. source: "./media/characters/wild/maw.svg"
  27115. }
  27116. },
  27117. },
  27118. [
  27119. {
  27120. name: "Normal",
  27121. height: math.unit(7 + 3 / 12, "feet"),
  27122. default: true
  27123. },
  27124. ]
  27125. ))
  27126. characterMakers.push(() => makeCharacter(
  27127. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27128. {
  27129. front: {
  27130. height: math.unit(2.5, "meters"),
  27131. weight: math.unit(200, "kg"),
  27132. name: "Front",
  27133. image: {
  27134. source: "./media/characters/vidar/front.svg",
  27135. extra: 2994 / 2795,
  27136. bottom: 56 / 3061
  27137. }
  27138. },
  27139. back: {
  27140. height: math.unit(2.5, "meters"),
  27141. weight: math.unit(200, "kg"),
  27142. name: "Back",
  27143. image: {
  27144. source: "./media/characters/vidar/back.svg",
  27145. extra: 3131 / 2928,
  27146. bottom: 13.5 / 3141.5
  27147. }
  27148. },
  27149. feral: {
  27150. height: math.unit(2.5, "meters"),
  27151. weight: math.unit(2000, "kg"),
  27152. name: "Feral",
  27153. image: {
  27154. source: "./media/characters/vidar/feral.svg",
  27155. extra: 2790 / 1765,
  27156. bottom: 6 / 2796
  27157. }
  27158. },
  27159. },
  27160. [
  27161. {
  27162. name: "Normal",
  27163. height: math.unit(2.5, "meters"),
  27164. default: true
  27165. },
  27166. {
  27167. name: "Macro",
  27168. height: math.unit(100, "meters")
  27169. },
  27170. ]
  27171. ))
  27172. characterMakers.push(() => makeCharacter(
  27173. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27174. {
  27175. front: {
  27176. height: math.unit(5 + 9 / 12, "feet"),
  27177. weight: math.unit(120, "lb"),
  27178. name: "Front",
  27179. image: {
  27180. source: "./media/characters/ash/front.svg",
  27181. extra: 2189 / 1961,
  27182. bottom: 5.2 / 2194
  27183. }
  27184. },
  27185. },
  27186. [
  27187. {
  27188. name: "Normal",
  27189. height: math.unit(5 + 9 / 12, "feet"),
  27190. default: true
  27191. },
  27192. ]
  27193. ))
  27194. characterMakers.push(() => makeCharacter(
  27195. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27196. {
  27197. front: {
  27198. height: math.unit(9, "feet"),
  27199. weight: math.unit(10000, "lb"),
  27200. name: "Front",
  27201. image: {
  27202. source: "./media/characters/gygabite/front.svg",
  27203. bottom: 31.7 / 537.8,
  27204. extra: 505 / 370
  27205. }
  27206. },
  27207. },
  27208. [
  27209. {
  27210. name: "Normal",
  27211. height: math.unit(9, "feet"),
  27212. default: true
  27213. },
  27214. ]
  27215. ))
  27216. characterMakers.push(() => makeCharacter(
  27217. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27218. {
  27219. front: {
  27220. height: math.unit(12, "feet"),
  27221. weight: math.unit(35000, "lb"),
  27222. name: "Front",
  27223. image: {
  27224. source: "./media/characters/p0tat0/front.svg",
  27225. extra: 1065 / 921,
  27226. bottom: 55.7 / 1121.25
  27227. }
  27228. },
  27229. },
  27230. [
  27231. {
  27232. name: "Normal",
  27233. height: math.unit(12, "feet"),
  27234. default: true
  27235. },
  27236. ]
  27237. ))
  27238. characterMakers.push(() => makeCharacter(
  27239. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27240. {
  27241. side: {
  27242. height: math.unit(6.5, "feet"),
  27243. weight: math.unit(800, "lb"),
  27244. name: "Side",
  27245. image: {
  27246. source: "./media/characters/dusk/side.svg",
  27247. extra: 615 / 373,
  27248. bottom: 53 / 664
  27249. }
  27250. },
  27251. sitting: {
  27252. height: math.unit(7, "feet"),
  27253. weight: math.unit(800, "lb"),
  27254. name: "Sitting",
  27255. image: {
  27256. source: "./media/characters/dusk/sitting.svg",
  27257. extra: 753 / 425,
  27258. bottom: 33 / 774
  27259. }
  27260. },
  27261. head: {
  27262. height: math.unit(6.1, "feet"),
  27263. name: "Head",
  27264. image: {
  27265. source: "./media/characters/dusk/head.svg"
  27266. }
  27267. },
  27268. },
  27269. [
  27270. {
  27271. name: "Normal",
  27272. height: math.unit(7, "feet"),
  27273. default: true
  27274. },
  27275. ]
  27276. ))
  27277. characterMakers.push(() => makeCharacter(
  27278. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27279. {
  27280. front: {
  27281. height: math.unit(15, "feet"),
  27282. weight: math.unit(7000, "lb"),
  27283. name: "Front",
  27284. image: {
  27285. source: "./media/characters/jay-direwolf/front.svg",
  27286. extra: 1810 / 1732,
  27287. bottom: 66 / 1892
  27288. }
  27289. },
  27290. },
  27291. [
  27292. {
  27293. name: "Normal",
  27294. height: math.unit(15, "feet"),
  27295. default: true
  27296. },
  27297. ]
  27298. ))
  27299. characterMakers.push(() => makeCharacter(
  27300. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27301. {
  27302. front: {
  27303. height: math.unit(4 + 9 / 12, "feet"),
  27304. weight: math.unit(130, "lb"),
  27305. name: "Front",
  27306. image: {
  27307. source: "./media/characters/anchovie/front.svg",
  27308. extra: 382 / 350,
  27309. bottom: 25 / 409
  27310. }
  27311. },
  27312. back: {
  27313. height: math.unit(4 + 9 / 12, "feet"),
  27314. weight: math.unit(130, "lb"),
  27315. name: "Back",
  27316. image: {
  27317. source: "./media/characters/anchovie/back.svg",
  27318. extra: 385 / 352,
  27319. bottom: 16.6 / 402
  27320. }
  27321. },
  27322. frontDressed: {
  27323. height: math.unit(4 + 9 / 12, "feet"),
  27324. weight: math.unit(130, "lb"),
  27325. name: "Front (Dressed)",
  27326. image: {
  27327. source: "./media/characters/anchovie/front-dressed.svg",
  27328. extra: 382 / 350,
  27329. bottom: 25 / 409
  27330. }
  27331. },
  27332. backDressed: {
  27333. height: math.unit(4 + 9 / 12, "feet"),
  27334. weight: math.unit(130, "lb"),
  27335. name: "Back (Dressed)",
  27336. image: {
  27337. source: "./media/characters/anchovie/back-dressed.svg",
  27338. extra: 385 / 352,
  27339. bottom: 16.6 / 402
  27340. }
  27341. },
  27342. },
  27343. [
  27344. {
  27345. name: "Micro",
  27346. height: math.unit(6.4, "inches")
  27347. },
  27348. {
  27349. name: "Normal",
  27350. height: math.unit(4 + 9 / 12, "feet"),
  27351. default: true
  27352. },
  27353. ]
  27354. ))
  27355. characterMakers.push(() => makeCharacter(
  27356. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27357. {
  27358. front: {
  27359. height: math.unit(2, "meters"),
  27360. weight: math.unit(180, "lb"),
  27361. name: "Front",
  27362. image: {
  27363. source: "./media/characters/acidrenamon/front.svg",
  27364. extra: 987 / 890,
  27365. bottom: 22.8 / 1009
  27366. }
  27367. },
  27368. back: {
  27369. height: math.unit(2, "meters"),
  27370. weight: math.unit(180, "lb"),
  27371. name: "Back",
  27372. image: {
  27373. source: "./media/characters/acidrenamon/back.svg",
  27374. extra: 983 / 891,
  27375. bottom: 8.4 / 992
  27376. }
  27377. },
  27378. head: {
  27379. height: math.unit(1.92, "feet"),
  27380. name: "Head",
  27381. image: {
  27382. source: "./media/characters/acidrenamon/head.svg"
  27383. }
  27384. },
  27385. rump: {
  27386. height: math.unit(1.72, "feet"),
  27387. name: "Rump",
  27388. image: {
  27389. source: "./media/characters/acidrenamon/rump.svg"
  27390. }
  27391. },
  27392. tail: {
  27393. height: math.unit(4.2, "feet"),
  27394. name: "Tail",
  27395. image: {
  27396. source: "./media/characters/acidrenamon/tail.svg"
  27397. }
  27398. },
  27399. },
  27400. [
  27401. {
  27402. name: "Normal",
  27403. height: math.unit(2, "meters"),
  27404. default: true
  27405. },
  27406. {
  27407. name: "Minimacro",
  27408. height: math.unit(7, "meters")
  27409. },
  27410. {
  27411. name: "Macro",
  27412. height: math.unit(200, "meters")
  27413. },
  27414. {
  27415. name: "Gigamacro",
  27416. height: math.unit(0.2, "earths")
  27417. },
  27418. ]
  27419. ))
  27420. characterMakers.push(() => makeCharacter(
  27421. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27422. {
  27423. front: {
  27424. height: math.unit(6, "feet"),
  27425. weight: math.unit(150, "lb"),
  27426. name: "Front",
  27427. image: {
  27428. source: "./media/characters/kenzie-lee/front.svg",
  27429. extra: 1525 / 1465,
  27430. bottom: 45 / 1570
  27431. }
  27432. },
  27433. side: {
  27434. height: math.unit(6, "feet"),
  27435. weight: math.unit(150, "lb"),
  27436. name: "Side",
  27437. image: {
  27438. source: "./media/characters/kenzie-lee/side.svg",
  27439. extra: 5505 / 5383,
  27440. bottom: 60 / 5573
  27441. }
  27442. },
  27443. paw: {
  27444. height: math.unit(0.57, "feet"),
  27445. name: "Paw",
  27446. image: {
  27447. source: "./media/characters/kenzie-lee/paw.svg"
  27448. }
  27449. },
  27450. },
  27451. [
  27452. {
  27453. name: "Normal",
  27454. height: math.unit(152, "feet"),
  27455. default: true
  27456. },
  27457. {
  27458. name: "Megamacro",
  27459. height: math.unit(7, "miles")
  27460. },
  27461. {
  27462. name: "Gigamacro",
  27463. height: math.unit(8000, "miles")
  27464. },
  27465. ]
  27466. ))
  27467. characterMakers.push(() => makeCharacter(
  27468. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27469. {
  27470. side: {
  27471. height: math.unit(6, "feet"),
  27472. weight: math.unit(150, "lb"),
  27473. name: "Side",
  27474. image: {
  27475. source: "./media/characters/withers/side.svg",
  27476. extra: 1830 / 1728,
  27477. bottom: 96 / 1927
  27478. }
  27479. },
  27480. front: {
  27481. height: math.unit(6, "feet"),
  27482. weight: math.unit(150, "lb"),
  27483. name: "Front",
  27484. image: {
  27485. source: "./media/characters/withers/front.svg",
  27486. extra: 1514 / 1438,
  27487. bottom: 118 / 1632
  27488. }
  27489. },
  27490. },
  27491. [
  27492. {
  27493. name: "Macro",
  27494. height: math.unit(168, "feet"),
  27495. default: true
  27496. },
  27497. {
  27498. name: "Megamacro",
  27499. height: math.unit(15, "miles")
  27500. }
  27501. ]
  27502. ))
  27503. characterMakers.push(() => makeCharacter(
  27504. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27505. {
  27506. front: {
  27507. height: math.unit(6 + 7 / 12, "feet"),
  27508. weight: math.unit(250, "lb"),
  27509. name: "Front",
  27510. image: {
  27511. source: "./media/characters/nemoskii/front.svg",
  27512. extra: 2270 / 1734,
  27513. bottom: 86 / 2354
  27514. }
  27515. },
  27516. back: {
  27517. height: math.unit(6 + 7 / 12, "feet"),
  27518. weight: math.unit(250, "lb"),
  27519. name: "Back",
  27520. image: {
  27521. source: "./media/characters/nemoskii/back.svg",
  27522. extra: 1845 / 1788,
  27523. bottom: 10.5 / 1852
  27524. }
  27525. },
  27526. head: {
  27527. height: math.unit(1.31, "feet"),
  27528. name: "Head",
  27529. image: {
  27530. source: "./media/characters/nemoskii/head.svg"
  27531. }
  27532. },
  27533. },
  27534. [
  27535. {
  27536. name: "Micro",
  27537. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27538. },
  27539. {
  27540. name: "Normal",
  27541. height: math.unit(6 + 7 / 12, "feet"),
  27542. default: true
  27543. },
  27544. {
  27545. name: "Macro",
  27546. height: math.unit((6 + 7 / 12) * 150, "feet")
  27547. },
  27548. {
  27549. name: "Macro+",
  27550. height: math.unit((6 + 7 / 12) * 500, "feet")
  27551. },
  27552. {
  27553. name: "Megamacro",
  27554. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27555. },
  27556. ]
  27557. ))
  27558. characterMakers.push(() => makeCharacter(
  27559. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27560. {
  27561. front: {
  27562. height: math.unit(1, "mile"),
  27563. weight: math.unit(265261.9, "lb"),
  27564. name: "Front",
  27565. image: {
  27566. source: "./media/characters/shui/front.svg",
  27567. extra: 1633 / 1564,
  27568. bottom: 91.5 / 1726
  27569. }
  27570. },
  27571. },
  27572. [
  27573. {
  27574. name: "Macro",
  27575. height: math.unit(1, "mile"),
  27576. default: true
  27577. },
  27578. ]
  27579. ))
  27580. characterMakers.push(() => makeCharacter(
  27581. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27582. {
  27583. front: {
  27584. height: math.unit(12 + 6 / 12, "feet"),
  27585. weight: math.unit(1342, "lb"),
  27586. name: "Front",
  27587. image: {
  27588. source: "./media/characters/arokh-takakura/front.svg",
  27589. extra: 1089 / 1043,
  27590. bottom: 77.4 / 1176.7
  27591. }
  27592. },
  27593. back: {
  27594. height: math.unit(12 + 6 / 12, "feet"),
  27595. weight: math.unit(1342, "lb"),
  27596. name: "Back",
  27597. image: {
  27598. source: "./media/characters/arokh-takakura/back.svg",
  27599. extra: 1046 / 1019,
  27600. bottom: 102 / 1150
  27601. }
  27602. },
  27603. },
  27604. [
  27605. {
  27606. name: "Big",
  27607. height: math.unit(12 + 6 / 12, "feet"),
  27608. default: true
  27609. },
  27610. ]
  27611. ))
  27612. characterMakers.push(() => makeCharacter(
  27613. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27614. {
  27615. front: {
  27616. height: math.unit(5 + 6 / 12, "feet"),
  27617. weight: math.unit(150, "lb"),
  27618. name: "Front",
  27619. image: {
  27620. source: "./media/characters/theo/front.svg",
  27621. extra: 1184 / 1131,
  27622. bottom: 7.4 / 1191
  27623. }
  27624. },
  27625. },
  27626. [
  27627. {
  27628. name: "Micro",
  27629. height: math.unit(5, "inches")
  27630. },
  27631. {
  27632. name: "Normal",
  27633. height: math.unit(5 + 6 / 12, "feet"),
  27634. default: true
  27635. },
  27636. ]
  27637. ))
  27638. characterMakers.push(() => makeCharacter(
  27639. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27640. {
  27641. front: {
  27642. height: math.unit(5 + 9 / 12, "feet"),
  27643. weight: math.unit(130, "lb"),
  27644. name: "Front",
  27645. image: {
  27646. source: "./media/characters/cecelia-swift/front.svg",
  27647. extra: 502 / 484,
  27648. bottom: 23 / 523
  27649. }
  27650. },
  27651. back: {
  27652. height: math.unit(5 + 9 / 12, "feet"),
  27653. weight: math.unit(130, "lb"),
  27654. name: "Back",
  27655. image: {
  27656. source: "./media/characters/cecelia-swift/back.svg",
  27657. extra: 499 / 485,
  27658. bottom: 12 / 511
  27659. }
  27660. },
  27661. head: {
  27662. height: math.unit(0.90, "feet"),
  27663. name: "Head",
  27664. image: {
  27665. source: "./media/characters/cecelia-swift/head.svg"
  27666. }
  27667. },
  27668. rump: {
  27669. height: math.unit(1.75, "feet"),
  27670. name: "Rump",
  27671. image: {
  27672. source: "./media/characters/cecelia-swift/rump.svg"
  27673. }
  27674. },
  27675. },
  27676. [
  27677. {
  27678. name: "Normal",
  27679. height: math.unit(5 + 9 / 12, "feet"),
  27680. default: true
  27681. },
  27682. {
  27683. name: "Big",
  27684. height: math.unit(50, "feet")
  27685. },
  27686. {
  27687. name: "Macro",
  27688. height: math.unit(100, "feet")
  27689. },
  27690. {
  27691. name: "Macro+",
  27692. height: math.unit(500, "feet")
  27693. },
  27694. {
  27695. name: "Macro++",
  27696. height: math.unit(1000, "feet")
  27697. },
  27698. ]
  27699. ))
  27700. characterMakers.push(() => makeCharacter(
  27701. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27702. {
  27703. front: {
  27704. height: math.unit(6, "feet"),
  27705. weight: math.unit(150, "lb"),
  27706. name: "Front",
  27707. image: {
  27708. source: "./media/characters/kaunan/front.svg",
  27709. extra: 2890 / 2523,
  27710. bottom: 49 / 2939
  27711. }
  27712. },
  27713. },
  27714. [
  27715. {
  27716. name: "Macro",
  27717. height: math.unit(150, "feet"),
  27718. default: true
  27719. },
  27720. ]
  27721. ))
  27722. characterMakers.push(() => makeCharacter(
  27723. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27724. {
  27725. front: {
  27726. height: math.unit(175, "cm"),
  27727. weight: math.unit(60, "kg"),
  27728. name: "Front",
  27729. image: {
  27730. source: "./media/characters/fei/front.svg",
  27731. extra: 1873/1723,
  27732. bottom: 53/1926
  27733. }
  27734. },
  27735. },
  27736. [
  27737. {
  27738. name: "Mortal",
  27739. height: math.unit(175, "cm")
  27740. },
  27741. {
  27742. name: "Normal",
  27743. height: math.unit(3500, "m"),
  27744. default: true
  27745. },
  27746. {
  27747. name: "Stroll",
  27748. height: math.unit(17.5, "km")
  27749. },
  27750. {
  27751. name: "Showoff",
  27752. height: math.unit(175, "km")
  27753. },
  27754. ]
  27755. ))
  27756. characterMakers.push(() => makeCharacter(
  27757. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27758. {
  27759. front: {
  27760. height: math.unit(7, "feet"),
  27761. weight: math.unit(1000, "kg"),
  27762. name: "Front",
  27763. image: {
  27764. source: "./media/characters/edrax/front.svg",
  27765. extra: 2838 / 2550,
  27766. bottom: 130 / 2968
  27767. }
  27768. },
  27769. },
  27770. [
  27771. {
  27772. name: "Small",
  27773. height: math.unit(7, "feet")
  27774. },
  27775. {
  27776. name: "Normal",
  27777. height: math.unit(1500, "meters")
  27778. },
  27779. {
  27780. name: "Mega",
  27781. height: math.unit(12000000, "km"),
  27782. default: true
  27783. },
  27784. {
  27785. name: "Megamacro",
  27786. height: math.unit(10600000, "lightyears")
  27787. },
  27788. {
  27789. name: "Hypermacro",
  27790. height: math.unit(256, "yottameters")
  27791. },
  27792. ]
  27793. ))
  27794. characterMakers.push(() => makeCharacter(
  27795. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27796. {
  27797. front: {
  27798. height: math.unit(10, "feet"),
  27799. weight: math.unit(750, "lb"),
  27800. name: "Front",
  27801. image: {
  27802. source: "./media/characters/clove/front.svg",
  27803. extra: 2031 / 1860,
  27804. bottom: 47.8 / 2080
  27805. }
  27806. },
  27807. back: {
  27808. height: math.unit(10, "feet"),
  27809. weight: math.unit(750, "lb"),
  27810. name: "Back",
  27811. image: {
  27812. source: "./media/characters/clove/back.svg",
  27813. extra: 2025 / 1859,
  27814. bottom: 46 / 2071
  27815. }
  27816. },
  27817. },
  27818. [
  27819. {
  27820. name: "Normal",
  27821. height: math.unit(10, "feet"),
  27822. default: true
  27823. },
  27824. ]
  27825. ))
  27826. characterMakers.push(() => makeCharacter(
  27827. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27828. {
  27829. front: {
  27830. height: math.unit(4, "feet"),
  27831. weight: math.unit(50, "lb"),
  27832. name: "Front",
  27833. image: {
  27834. source: "./media/characters/alex-rabbit/front.svg",
  27835. extra: 507 / 458,
  27836. bottom: 18.5 / 527
  27837. }
  27838. },
  27839. back: {
  27840. height: math.unit(4, "feet"),
  27841. weight: math.unit(50, "lb"),
  27842. name: "Back",
  27843. image: {
  27844. source: "./media/characters/alex-rabbit/back.svg",
  27845. extra: 502 / 460,
  27846. bottom: 18.9 / 521
  27847. }
  27848. },
  27849. },
  27850. [
  27851. {
  27852. name: "Normal",
  27853. height: math.unit(4, "feet"),
  27854. default: true
  27855. },
  27856. ]
  27857. ))
  27858. characterMakers.push(() => makeCharacter(
  27859. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27860. {
  27861. front: {
  27862. height: math.unit(1 + 3 / 12, "feet"),
  27863. weight: math.unit(80, "lb"),
  27864. name: "Front",
  27865. image: {
  27866. source: "./media/characters/zander-rose/front.svg",
  27867. extra: 916 / 797,
  27868. bottom: 17 / 933
  27869. }
  27870. },
  27871. back: {
  27872. height: math.unit(1 + 3 / 12, "feet"),
  27873. weight: math.unit(80, "lb"),
  27874. name: "Back",
  27875. image: {
  27876. source: "./media/characters/zander-rose/back.svg",
  27877. extra: 903 / 779,
  27878. bottom: 31 / 934
  27879. }
  27880. },
  27881. },
  27882. [
  27883. {
  27884. name: "Normal",
  27885. height: math.unit(1 + 3 / 12, "feet"),
  27886. default: true
  27887. },
  27888. ]
  27889. ))
  27890. characterMakers.push(() => makeCharacter(
  27891. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27892. {
  27893. anthro: {
  27894. height: math.unit(6, "feet"),
  27895. weight: math.unit(150, "lb"),
  27896. name: "Anthro",
  27897. image: {
  27898. source: "./media/characters/razz/anthro.svg",
  27899. extra: 1437 / 1343,
  27900. bottom: 48 / 1485
  27901. }
  27902. },
  27903. feral: {
  27904. height: math.unit(6, "feet"),
  27905. weight: math.unit(150, "lb"),
  27906. name: "Feral",
  27907. image: {
  27908. source: "./media/characters/razz/feral.svg",
  27909. extra: 2569 / 1385,
  27910. bottom: 95 / 2664
  27911. }
  27912. },
  27913. },
  27914. [
  27915. {
  27916. name: "Normal",
  27917. height: math.unit(6, "feet"),
  27918. default: true
  27919. },
  27920. ]
  27921. ))
  27922. characterMakers.push(() => makeCharacter(
  27923. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27924. {
  27925. front: {
  27926. height: math.unit(9 + 4 / 12, "feet"),
  27927. weight: math.unit(500, "lb"),
  27928. name: "Front",
  27929. image: {
  27930. source: "./media/characters/morrigan/front.svg",
  27931. extra: 2707 / 2579,
  27932. bottom: 156 / 2863
  27933. }
  27934. },
  27935. },
  27936. [
  27937. {
  27938. name: "Normal",
  27939. height: math.unit(9 + 4 / 12, "feet"),
  27940. default: true
  27941. },
  27942. ]
  27943. ))
  27944. characterMakers.push(() => makeCharacter(
  27945. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27946. {
  27947. front: {
  27948. height: math.unit(5, "stories"),
  27949. weight: math.unit(4000, "lb"),
  27950. name: "Front",
  27951. image: {
  27952. source: "./media/characters/jenene/front.svg",
  27953. extra: 1780 / 1710,
  27954. bottom: 57 / 1837
  27955. }
  27956. },
  27957. },
  27958. [
  27959. {
  27960. name: "Normal",
  27961. height: math.unit(5, "stories"),
  27962. default: true
  27963. },
  27964. ]
  27965. ))
  27966. characterMakers.push(() => makeCharacter(
  27967. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27968. {
  27969. taurSfw: {
  27970. height: math.unit(10, "meters"),
  27971. weight: math.unit(17500, "kg"),
  27972. name: "Taur",
  27973. image: {
  27974. source: "./media/characters/faey/taur-sfw.svg",
  27975. extra: 1200 / 968,
  27976. bottom: 41 / 1241
  27977. }
  27978. },
  27979. chestmaw: {
  27980. height: math.unit(2.01, "meters"),
  27981. name: "Chestmaw",
  27982. image: {
  27983. source: "./media/characters/faey/chestmaw.svg"
  27984. }
  27985. },
  27986. foot: {
  27987. height: math.unit(2.43, "meters"),
  27988. name: "Foot",
  27989. image: {
  27990. source: "./media/characters/faey/foot.svg"
  27991. }
  27992. },
  27993. jaws: {
  27994. height: math.unit(1.66, "meters"),
  27995. name: "Jaws",
  27996. image: {
  27997. source: "./media/characters/faey/jaws.svg"
  27998. }
  27999. },
  28000. tongues: {
  28001. height: math.unit(2.01, "meters"),
  28002. name: "Tongues",
  28003. image: {
  28004. source: "./media/characters/faey/tongues.svg"
  28005. }
  28006. },
  28007. },
  28008. [
  28009. {
  28010. name: "Small",
  28011. height: math.unit(10, "meters"),
  28012. default: true
  28013. },
  28014. {
  28015. name: "Big",
  28016. height: math.unit(500000, "km")
  28017. },
  28018. ]
  28019. ))
  28020. characterMakers.push(() => makeCharacter(
  28021. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28022. {
  28023. front: {
  28024. height: math.unit(7, "feet"),
  28025. weight: math.unit(275, "lb"),
  28026. name: "Front",
  28027. image: {
  28028. source: "./media/characters/roku/front.svg",
  28029. extra: 903 / 878,
  28030. bottom: 37 / 940
  28031. }
  28032. },
  28033. },
  28034. [
  28035. {
  28036. name: "Normal",
  28037. height: math.unit(7, "feet"),
  28038. default: true
  28039. },
  28040. {
  28041. name: "Macro",
  28042. height: math.unit(500, "feet")
  28043. },
  28044. {
  28045. name: "Megamacro",
  28046. height: math.unit(200, "miles")
  28047. },
  28048. ]
  28049. ))
  28050. characterMakers.push(() => makeCharacter(
  28051. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28052. {
  28053. front: {
  28054. height: math.unit(6 + 2 / 12, "feet"),
  28055. weight: math.unit(150, "lb"),
  28056. name: "Front",
  28057. image: {
  28058. source: "./media/characters/lira/front.svg",
  28059. extra: 1727 / 1605,
  28060. bottom: 26 / 1753
  28061. }
  28062. },
  28063. back: {
  28064. height: math.unit(6 + 2 / 12, "feet"),
  28065. weight: math.unit(150, "lb"),
  28066. name: "Back",
  28067. image: {
  28068. source: "./media/characters/lira/back.svg",
  28069. extra: 1713/1621,
  28070. bottom: 20/1733
  28071. }
  28072. },
  28073. hand: {
  28074. height: math.unit(0.75, "feet"),
  28075. name: "Hand",
  28076. image: {
  28077. source: "./media/characters/lira/hand.svg"
  28078. }
  28079. },
  28080. maw: {
  28081. height: math.unit(0.65, "feet"),
  28082. name: "Maw",
  28083. image: {
  28084. source: "./media/characters/lira/maw.svg"
  28085. }
  28086. },
  28087. pawDigi: {
  28088. height: math.unit(1.6, "feet"),
  28089. name: "Paw Digi",
  28090. image: {
  28091. source: "./media/characters/lira/paw-digi.svg"
  28092. }
  28093. },
  28094. pawPlanti: {
  28095. height: math.unit(1.4, "feet"),
  28096. name: "Paw Planti",
  28097. image: {
  28098. source: "./media/characters/lira/paw-planti.svg"
  28099. }
  28100. },
  28101. },
  28102. [
  28103. {
  28104. name: "Normal",
  28105. height: math.unit(6 + 2 / 12, "feet"),
  28106. default: true
  28107. },
  28108. {
  28109. name: "Macro",
  28110. height: math.unit(100, "feet")
  28111. },
  28112. {
  28113. name: "Macro²",
  28114. height: math.unit(1600, "feet")
  28115. },
  28116. {
  28117. name: "Planetary",
  28118. height: math.unit(20, "earths")
  28119. },
  28120. ]
  28121. ))
  28122. characterMakers.push(() => makeCharacter(
  28123. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28124. {
  28125. front: {
  28126. height: math.unit(6, "feet"),
  28127. weight: math.unit(150, "lb"),
  28128. name: "Front",
  28129. image: {
  28130. source: "./media/characters/hadjet/front.svg",
  28131. extra: 1480 / 1346,
  28132. bottom: 26 / 1506
  28133. }
  28134. },
  28135. frontNsfw: {
  28136. height: math.unit(6, "feet"),
  28137. weight: math.unit(150, "lb"),
  28138. name: "Front (NSFW)",
  28139. image: {
  28140. source: "./media/characters/hadjet/front-nsfw.svg",
  28141. extra: 1440 / 1358,
  28142. bottom: 52 / 1492
  28143. }
  28144. },
  28145. },
  28146. [
  28147. {
  28148. name: "Macro",
  28149. height: math.unit(10, "stories"),
  28150. default: true
  28151. },
  28152. {
  28153. name: "Megamacro",
  28154. height: math.unit(1.5, "miles")
  28155. },
  28156. {
  28157. name: "Megamacro+",
  28158. height: math.unit(5, "miles")
  28159. },
  28160. ]
  28161. ))
  28162. characterMakers.push(() => makeCharacter(
  28163. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28164. {
  28165. side: {
  28166. height: math.unit(106, "feet"),
  28167. weight: math.unit(500, "tonnes"),
  28168. name: "Side",
  28169. image: {
  28170. source: "./media/characters/kodran/side.svg",
  28171. extra: 553 / 480,
  28172. bottom: 33 / 586
  28173. }
  28174. },
  28175. front: {
  28176. height: math.unit(132, "feet"),
  28177. weight: math.unit(500, "tonnes"),
  28178. name: "Front",
  28179. image: {
  28180. source: "./media/characters/kodran/front.svg",
  28181. extra: 667 / 643,
  28182. bottom: 42 / 709
  28183. }
  28184. },
  28185. flying: {
  28186. height: math.unit(350, "feet"),
  28187. weight: math.unit(500, "tonnes"),
  28188. name: "Flying",
  28189. image: {
  28190. source: "./media/characters/kodran/flying.svg"
  28191. }
  28192. },
  28193. foot: {
  28194. height: math.unit(33, "feet"),
  28195. name: "Foot",
  28196. image: {
  28197. source: "./media/characters/kodran/foot.svg"
  28198. }
  28199. },
  28200. footFront: {
  28201. height: math.unit(19, "feet"),
  28202. name: "Foot (Front)",
  28203. image: {
  28204. source: "./media/characters/kodran/foot-front.svg",
  28205. extra: 261 / 261,
  28206. bottom: 91 / 352
  28207. }
  28208. },
  28209. headFront: {
  28210. height: math.unit(53, "feet"),
  28211. name: "Head (Front)",
  28212. image: {
  28213. source: "./media/characters/kodran/head-front.svg"
  28214. }
  28215. },
  28216. headSide: {
  28217. height: math.unit(65, "feet"),
  28218. name: "Head (Side)",
  28219. image: {
  28220. source: "./media/characters/kodran/head-side.svg"
  28221. }
  28222. },
  28223. throat: {
  28224. height: math.unit(79, "feet"),
  28225. name: "Throat",
  28226. image: {
  28227. source: "./media/characters/kodran/throat.svg"
  28228. }
  28229. },
  28230. },
  28231. [
  28232. {
  28233. name: "Large",
  28234. height: math.unit(106, "feet"),
  28235. default: true
  28236. },
  28237. ]
  28238. ))
  28239. characterMakers.push(() => makeCharacter(
  28240. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28241. {
  28242. side: {
  28243. height: math.unit(11, "feet"),
  28244. weight: math.unit(150, "lb"),
  28245. name: "Side",
  28246. image: {
  28247. source: "./media/characters/pyxaron/side.svg",
  28248. extra: 305 / 195,
  28249. bottom: 17 / 322
  28250. }
  28251. },
  28252. },
  28253. [
  28254. {
  28255. name: "Normal",
  28256. height: math.unit(11, "feet"),
  28257. default: true
  28258. },
  28259. ]
  28260. ))
  28261. characterMakers.push(() => makeCharacter(
  28262. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28263. {
  28264. front: {
  28265. height: math.unit(6, "feet"),
  28266. weight: math.unit(150, "lb"),
  28267. name: "Front",
  28268. image: {
  28269. source: "./media/characters/meep/front.svg",
  28270. extra: 88 / 80,
  28271. bottom: 6 / 94
  28272. }
  28273. },
  28274. },
  28275. [
  28276. {
  28277. name: "Fun Sized",
  28278. height: math.unit(2, "inches"),
  28279. default: true
  28280. },
  28281. {
  28282. name: "Friend Sized",
  28283. height: math.unit(8, "inches")
  28284. },
  28285. ]
  28286. ))
  28287. characterMakers.push(() => makeCharacter(
  28288. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28289. {
  28290. front: {
  28291. height: math.unit(15, "feet"),
  28292. weight: math.unit(2500, "lb"),
  28293. name: "Front",
  28294. image: {
  28295. source: "./media/characters/holly-rabbit/front.svg",
  28296. extra: 1433 / 1233,
  28297. bottom: 125 / 1558
  28298. }
  28299. },
  28300. dick: {
  28301. height: math.unit(4.6, "feet"),
  28302. name: "Dick",
  28303. image: {
  28304. source: "./media/characters/holly-rabbit/dick.svg"
  28305. }
  28306. },
  28307. },
  28308. [
  28309. {
  28310. name: "Normal",
  28311. height: math.unit(15, "feet"),
  28312. default: true
  28313. },
  28314. {
  28315. name: "Macro",
  28316. height: math.unit(250, "feet")
  28317. },
  28318. {
  28319. name: "Macro+",
  28320. height: math.unit(2500, "feet")
  28321. },
  28322. ]
  28323. ))
  28324. characterMakers.push(() => makeCharacter(
  28325. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28326. {
  28327. front: {
  28328. height: math.unit(3.02, "meters"),
  28329. weight: math.unit(500, "kg"),
  28330. name: "Front",
  28331. image: {
  28332. source: "./media/characters/drena/front.svg",
  28333. extra: 282 / 243,
  28334. bottom: 8 / 290
  28335. }
  28336. },
  28337. side: {
  28338. height: math.unit(3.02, "meters"),
  28339. weight: math.unit(500, "kg"),
  28340. name: "Side",
  28341. image: {
  28342. source: "./media/characters/drena/side.svg",
  28343. extra: 280 / 245,
  28344. bottom: 10 / 290
  28345. }
  28346. },
  28347. back: {
  28348. height: math.unit(3.02, "meters"),
  28349. weight: math.unit(500, "kg"),
  28350. name: "Back",
  28351. image: {
  28352. source: "./media/characters/drena/back.svg",
  28353. extra: 278 / 243,
  28354. bottom: 2 / 280
  28355. }
  28356. },
  28357. foot: {
  28358. height: math.unit(0.75, "meters"),
  28359. name: "Foot",
  28360. image: {
  28361. source: "./media/characters/drena/foot.svg"
  28362. }
  28363. },
  28364. maw: {
  28365. height: math.unit(0.82, "meters"),
  28366. name: "Maw",
  28367. image: {
  28368. source: "./media/characters/drena/maw.svg"
  28369. }
  28370. },
  28371. rump: {
  28372. height: math.unit(0.93, "meters"),
  28373. name: "Rump",
  28374. image: {
  28375. source: "./media/characters/drena/rump.svg"
  28376. }
  28377. },
  28378. },
  28379. [
  28380. {
  28381. name: "Normal",
  28382. height: math.unit(3.02, "meters"),
  28383. default: true
  28384. },
  28385. ]
  28386. ))
  28387. characterMakers.push(() => makeCharacter(
  28388. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28389. {
  28390. front: {
  28391. height: math.unit(6 + 4 / 12, "feet"),
  28392. weight: math.unit(250, "lb"),
  28393. name: "Front",
  28394. image: {
  28395. source: "./media/characters/remmyzilla/front.svg",
  28396. extra: 4033 / 3588,
  28397. bottom: 123 / 4156
  28398. }
  28399. },
  28400. back: {
  28401. height: math.unit(6 + 4 / 12, "feet"),
  28402. weight: math.unit(250, "lb"),
  28403. name: "Back",
  28404. image: {
  28405. source: "./media/characters/remmyzilla/back.svg",
  28406. extra: 2687 / 2555,
  28407. bottom: 48 / 2735
  28408. }
  28409. },
  28410. paw: {
  28411. height: math.unit(1.73, "feet"),
  28412. name: "Paw",
  28413. image: {
  28414. source: "./media/characters/remmyzilla/paw.svg"
  28415. }
  28416. },
  28417. maw: {
  28418. height: math.unit(1.73, "feet"),
  28419. name: "Maw",
  28420. image: {
  28421. source: "./media/characters/remmyzilla/maw.svg"
  28422. }
  28423. },
  28424. },
  28425. [
  28426. {
  28427. name: "Normal",
  28428. height: math.unit(6 + 4 / 12, "feet")
  28429. },
  28430. {
  28431. name: "Minimacro",
  28432. height: math.unit(12 + 8 / 12, "feet")
  28433. },
  28434. {
  28435. name: "Normal",
  28436. height: math.unit(640, "feet"),
  28437. default: true
  28438. },
  28439. {
  28440. name: "Megamacro",
  28441. height: math.unit(6400, "feet")
  28442. },
  28443. {
  28444. name: "Gigamacro",
  28445. height: math.unit(64000, "miles")
  28446. },
  28447. ]
  28448. ))
  28449. characterMakers.push(() => makeCharacter(
  28450. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28451. {
  28452. front: {
  28453. height: math.unit(2.5, "meters"),
  28454. weight: math.unit(300, "lb"),
  28455. name: "Front",
  28456. image: {
  28457. source: "./media/characters/lawrence/front.svg",
  28458. extra: 357 / 335,
  28459. bottom: 30 / 387
  28460. }
  28461. },
  28462. back: {
  28463. height: math.unit(2.5, "meters"),
  28464. weight: math.unit(300, "lb"),
  28465. name: "Back",
  28466. image: {
  28467. source: "./media/characters/lawrence/back.svg",
  28468. extra: 357 / 338,
  28469. bottom: 16 / 373
  28470. }
  28471. },
  28472. head: {
  28473. height: math.unit(0.9, "meter"),
  28474. name: "Head",
  28475. image: {
  28476. source: "./media/characters/lawrence/head.svg"
  28477. }
  28478. },
  28479. maw: {
  28480. height: math.unit(0.7, "meter"),
  28481. name: "Maw",
  28482. image: {
  28483. source: "./media/characters/lawrence/maw.svg"
  28484. }
  28485. },
  28486. footBottom: {
  28487. height: math.unit(0.5, "meter"),
  28488. name: "Foot (Bottom)",
  28489. image: {
  28490. source: "./media/characters/lawrence/foot-bottom.svg"
  28491. }
  28492. },
  28493. footTop: {
  28494. height: math.unit(0.5, "meter"),
  28495. name: "Foot (Top)",
  28496. image: {
  28497. source: "./media/characters/lawrence/foot-top.svg"
  28498. }
  28499. },
  28500. },
  28501. [
  28502. {
  28503. name: "Normal",
  28504. height: math.unit(2.5, "meters"),
  28505. default: true
  28506. },
  28507. {
  28508. name: "Macro",
  28509. height: math.unit(95, "meters")
  28510. },
  28511. {
  28512. name: "Megamacro",
  28513. height: math.unit(150, "km")
  28514. },
  28515. ]
  28516. ))
  28517. characterMakers.push(() => makeCharacter(
  28518. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28519. {
  28520. front: {
  28521. height: math.unit(4.2, "meters"),
  28522. name: "Front",
  28523. image: {
  28524. source: "./media/characters/sydney/front.svg",
  28525. extra: 1323 / 1277,
  28526. bottom: 111 / 1434
  28527. }
  28528. },
  28529. },
  28530. [
  28531. {
  28532. name: "Normal",
  28533. height: math.unit(4.2, "meters"),
  28534. default: true
  28535. },
  28536. ]
  28537. ))
  28538. characterMakers.push(() => makeCharacter(
  28539. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28540. {
  28541. back: {
  28542. height: math.unit(201, "feet"),
  28543. name: "Back",
  28544. image: {
  28545. source: "./media/characters/jessica/back.svg",
  28546. extra: 273 / 259,
  28547. bottom: 7 / 280
  28548. }
  28549. },
  28550. },
  28551. [
  28552. {
  28553. name: "Normal",
  28554. height: math.unit(201, "feet"),
  28555. default: true
  28556. },
  28557. {
  28558. name: "Megamacro",
  28559. height: math.unit(8, "miles")
  28560. },
  28561. ]
  28562. ))
  28563. characterMakers.push(() => makeCharacter(
  28564. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28565. {
  28566. side: {
  28567. height: math.unit(320, "cm"),
  28568. name: "Side",
  28569. image: {
  28570. source: "./media/characters/victoria/side.svg",
  28571. extra: 778 / 346,
  28572. bottom: 56 / 834
  28573. }
  28574. },
  28575. maw: {
  28576. height: math.unit(5.9, "feet"),
  28577. name: "Maw",
  28578. image: {
  28579. source: "./media/characters/victoria/maw.svg"
  28580. }
  28581. },
  28582. },
  28583. [
  28584. {
  28585. name: "Normal",
  28586. height: math.unit(320, "cm"),
  28587. default: true
  28588. },
  28589. ]
  28590. ))
  28591. characterMakers.push(() => makeCharacter(
  28592. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28593. {
  28594. front: {
  28595. height: math.unit(5 + 6 / 12, "feet"),
  28596. name: "Front",
  28597. image: {
  28598. source: "./media/characters/cat/front.svg",
  28599. extra: 1449/1295,
  28600. bottom: 34/1483
  28601. }
  28602. },
  28603. back: {
  28604. height: math.unit(5 + 6 / 12, "feet"),
  28605. name: "Back",
  28606. image: {
  28607. source: "./media/characters/cat/back.svg",
  28608. extra: 1466/1301,
  28609. bottom: 19/1485
  28610. }
  28611. },
  28612. taur: {
  28613. height: math.unit(7, "feet"),
  28614. name: "Taur",
  28615. image: {
  28616. source: "./media/characters/cat/taur.svg",
  28617. extra: 1389/1233,
  28618. bottom: 83/1472
  28619. }
  28620. },
  28621. lucarioFront: {
  28622. height: math.unit(4, "feet"),
  28623. name: "Lucario (Front)",
  28624. image: {
  28625. source: "./media/characters/cat/lucario-front.svg",
  28626. extra: 1149/1019,
  28627. bottom: 84/1233
  28628. }
  28629. },
  28630. lucarioBack: {
  28631. height: math.unit(4, "feet"),
  28632. name: "Lucario (Back)",
  28633. image: {
  28634. source: "./media/characters/cat/lucario-back.svg",
  28635. extra: 1190/1059,
  28636. bottom: 33/1223
  28637. }
  28638. },
  28639. megaLucario: {
  28640. height: math.unit(4, "feet"),
  28641. name: "Mega Lucario",
  28642. image: {
  28643. source: "./media/characters/cat/mega-lucario.svg",
  28644. extra: 1515 / 1319,
  28645. bottom: 63 / 1578
  28646. }
  28647. },
  28648. nickit: {
  28649. height: math.unit(2, "feet"),
  28650. name: "Nickit",
  28651. image: {
  28652. source: "./media/characters/cat/nickit.svg",
  28653. extra: 1980 / 1585,
  28654. bottom: 102 / 2082
  28655. }
  28656. },
  28657. lopunnyFront: {
  28658. height: math.unit(5, "feet"),
  28659. name: "Lopunny (Front)",
  28660. image: {
  28661. source: "./media/characters/cat/lopunny-front.svg",
  28662. extra: 1782 / 1469,
  28663. bottom: 38 / 1820
  28664. }
  28665. },
  28666. lopunnyBack: {
  28667. height: math.unit(5, "feet"),
  28668. name: "Lopunny (Back)",
  28669. image: {
  28670. source: "./media/characters/cat/lopunny-back.svg",
  28671. extra: 1660 / 1490,
  28672. bottom: 25 / 1685
  28673. }
  28674. },
  28675. },
  28676. [
  28677. {
  28678. name: "Really small",
  28679. height: math.unit(1, "nm")
  28680. },
  28681. {
  28682. name: "Micro",
  28683. height: math.unit(5, "inches")
  28684. },
  28685. {
  28686. name: "Normal",
  28687. height: math.unit(5 + 6 / 12, "feet"),
  28688. default: true
  28689. },
  28690. {
  28691. name: "Macro",
  28692. height: math.unit(50, "feet")
  28693. },
  28694. {
  28695. name: "Macro+",
  28696. height: math.unit(150, "feet")
  28697. },
  28698. {
  28699. name: "Megamacro",
  28700. height: math.unit(100, "miles")
  28701. },
  28702. ]
  28703. ))
  28704. characterMakers.push(() => makeCharacter(
  28705. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28706. {
  28707. front: {
  28708. height: math.unit(63.4, "meters"),
  28709. weight: math.unit(3.28349e+6, "kilograms"),
  28710. name: "Front",
  28711. image: {
  28712. source: "./media/characters/kirina-violet/front.svg",
  28713. extra: 2812 / 2725,
  28714. bottom: 0 / 2812
  28715. }
  28716. },
  28717. back: {
  28718. height: math.unit(63.4, "meters"),
  28719. weight: math.unit(3.28349e+6, "kilograms"),
  28720. name: "Back",
  28721. image: {
  28722. source: "./media/characters/kirina-violet/back.svg",
  28723. extra: 2812 / 2725,
  28724. bottom: 0 / 2812
  28725. }
  28726. },
  28727. mouth: {
  28728. height: math.unit(4.35, "meters"),
  28729. name: "Mouth",
  28730. image: {
  28731. source: "./media/characters/kirina-violet/mouth.svg"
  28732. }
  28733. },
  28734. paw: {
  28735. height: math.unit(5.6, "meters"),
  28736. name: "Paw",
  28737. image: {
  28738. source: "./media/characters/kirina-violet/paw.svg"
  28739. }
  28740. },
  28741. tail: {
  28742. height: math.unit(18, "meters"),
  28743. name: "Tail",
  28744. image: {
  28745. source: "./media/characters/kirina-violet/tail.svg"
  28746. }
  28747. },
  28748. },
  28749. [
  28750. {
  28751. name: "Macro",
  28752. height: math.unit(63.4, "meters"),
  28753. default: true
  28754. },
  28755. ]
  28756. ))
  28757. characterMakers.push(() => makeCharacter(
  28758. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28759. {
  28760. front: {
  28761. height: math.unit(75, "feet"),
  28762. name: "Front",
  28763. image: {
  28764. source: "./media/characters/cat-gigachu/front.svg",
  28765. extra: 1239/1027,
  28766. bottom: 32/1271
  28767. }
  28768. },
  28769. back: {
  28770. height: math.unit(75, "feet"),
  28771. name: "Back",
  28772. image: {
  28773. source: "./media/characters/cat-gigachu/back.svg",
  28774. extra: 1229/1030,
  28775. bottom: 9/1238
  28776. }
  28777. },
  28778. },
  28779. [
  28780. {
  28781. name: "Dynamax",
  28782. height: math.unit(75, "feet"),
  28783. default: true
  28784. },
  28785. ]
  28786. ))
  28787. characterMakers.push(() => makeCharacter(
  28788. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28789. {
  28790. front: {
  28791. height: math.unit(6, "feet"),
  28792. weight: math.unit(150, "lb"),
  28793. name: "Front",
  28794. image: {
  28795. source: "./media/characters/sfaiyan/front.svg",
  28796. extra: 999 / 978,
  28797. bottom: 5 / 1004
  28798. }
  28799. },
  28800. },
  28801. [
  28802. {
  28803. name: "Normal",
  28804. height: math.unit(1.82, "meters")
  28805. },
  28806. {
  28807. name: "Giant",
  28808. height: math.unit(2.27, "km"),
  28809. default: true
  28810. },
  28811. ]
  28812. ))
  28813. characterMakers.push(() => makeCharacter(
  28814. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28815. {
  28816. front: {
  28817. height: math.unit(179, "cm"),
  28818. weight: math.unit(100, "kg"),
  28819. name: "Front",
  28820. image: {
  28821. source: "./media/characters/raunehkeli/front.svg",
  28822. extra: 1934 / 1926,
  28823. bottom: 0 / 1934
  28824. }
  28825. },
  28826. },
  28827. [
  28828. {
  28829. name: "Normal",
  28830. height: math.unit(179, "cm")
  28831. },
  28832. {
  28833. name: "Maximum",
  28834. height: math.unit(575, "meters"),
  28835. default: true
  28836. },
  28837. ]
  28838. ))
  28839. characterMakers.push(() => makeCharacter(
  28840. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28841. {
  28842. front: {
  28843. height: math.unit(6, "feet"),
  28844. weight: math.unit(150, "lb"),
  28845. name: "Front",
  28846. image: {
  28847. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28848. extra: 2625 / 2518,
  28849. bottom: 60 / 2685
  28850. }
  28851. },
  28852. },
  28853. [
  28854. {
  28855. name: "Normal",
  28856. height: math.unit(6 + 2 / 12, "feet")
  28857. },
  28858. {
  28859. name: "Macro",
  28860. height: math.unit(1180, "feet"),
  28861. default: true
  28862. },
  28863. ]
  28864. ))
  28865. characterMakers.push(() => makeCharacter(
  28866. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28867. {
  28868. front: {
  28869. height: math.unit(5 + 6 / 12, "feet"),
  28870. weight: math.unit(108, "lb"),
  28871. name: "Front",
  28872. image: {
  28873. source: "./media/characters/lilith-zott/front.svg",
  28874. extra: 2510 / 2238,
  28875. bottom: 100 / 2610
  28876. }
  28877. },
  28878. frontDressed: {
  28879. height: math.unit(5 + 6 / 12, "feet"),
  28880. weight: math.unit(108, "lb"),
  28881. name: "Front (Dressed)",
  28882. image: {
  28883. source: "./media/characters/lilith-zott/front-dressed.svg",
  28884. extra: 2510 / 2238,
  28885. bottom: 100 / 2610
  28886. }
  28887. },
  28888. },
  28889. [
  28890. {
  28891. name: "Normal",
  28892. height: math.unit(5 + 6 / 12, "feet")
  28893. },
  28894. {
  28895. name: "Macro",
  28896. height: math.unit(1030, "feet"),
  28897. default: true
  28898. },
  28899. ]
  28900. ))
  28901. characterMakers.push(() => makeCharacter(
  28902. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28903. {
  28904. front: {
  28905. height: math.unit(6, "feet"),
  28906. weight: math.unit(150, "lb"),
  28907. name: "Front",
  28908. image: {
  28909. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28910. extra: 2567 / 2435,
  28911. bottom: 39 / 2606
  28912. }
  28913. },
  28914. frontSuper: {
  28915. height: math.unit(6, "feet"),
  28916. name: "Front (Super)",
  28917. image: {
  28918. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28919. extra: 2567 / 2435,
  28920. bottom: 39 / 2606
  28921. }
  28922. },
  28923. },
  28924. [
  28925. {
  28926. name: "Normal",
  28927. height: math.unit(5 + 10 / 12, "feet")
  28928. },
  28929. {
  28930. name: "Macro",
  28931. height: math.unit(1100, "feet"),
  28932. default: true
  28933. },
  28934. ]
  28935. ))
  28936. characterMakers.push(() => makeCharacter(
  28937. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28938. {
  28939. front: {
  28940. height: math.unit(100, "miles"),
  28941. name: "Front",
  28942. image: {
  28943. source: "./media/characters/sona/front.svg",
  28944. extra: 2433 / 2201,
  28945. bottom: 53 / 2486
  28946. }
  28947. },
  28948. foot: {
  28949. height: math.unit(16.1, "miles"),
  28950. name: "Foot",
  28951. image: {
  28952. source: "./media/characters/sona/foot.svg"
  28953. }
  28954. },
  28955. },
  28956. [
  28957. {
  28958. name: "Macro",
  28959. height: math.unit(100, "miles"),
  28960. default: true
  28961. },
  28962. ]
  28963. ))
  28964. characterMakers.push(() => makeCharacter(
  28965. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28966. {
  28967. front: {
  28968. height: math.unit(6, "feet"),
  28969. weight: math.unit(150, "lb"),
  28970. name: "Front",
  28971. image: {
  28972. source: "./media/characters/bailey/front.svg",
  28973. extra: 1778 / 1724,
  28974. bottom: 30 / 1808
  28975. }
  28976. },
  28977. },
  28978. [
  28979. {
  28980. name: "Micro",
  28981. height: math.unit(4, "inches")
  28982. },
  28983. {
  28984. name: "Normal",
  28985. height: math.unit(5 + 5 / 12, "feet"),
  28986. default: true
  28987. },
  28988. {
  28989. name: "Macro",
  28990. height: math.unit(250, "feet")
  28991. },
  28992. {
  28993. name: "Megamacro",
  28994. height: math.unit(100, "miles")
  28995. },
  28996. ]
  28997. ))
  28998. characterMakers.push(() => makeCharacter(
  28999. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29000. {
  29001. front: {
  29002. height: math.unit(5 + 2 / 12, "feet"),
  29003. weight: math.unit(120, "lb"),
  29004. name: "Front",
  29005. image: {
  29006. source: "./media/characters/snaps/front.svg",
  29007. extra: 2370 / 2177,
  29008. bottom: 48 / 2418
  29009. }
  29010. },
  29011. back: {
  29012. height: math.unit(5 + 2 / 12, "feet"),
  29013. weight: math.unit(120, "lb"),
  29014. name: "Back",
  29015. image: {
  29016. source: "./media/characters/snaps/back.svg",
  29017. extra: 2408 / 2258,
  29018. bottom: 15 / 2423
  29019. }
  29020. },
  29021. },
  29022. [
  29023. {
  29024. name: "Micro",
  29025. height: math.unit(9, "inches")
  29026. },
  29027. {
  29028. name: "Normal",
  29029. height: math.unit(5 + 2 / 12, "feet"),
  29030. default: true
  29031. },
  29032. {
  29033. name: "Mini Macro",
  29034. height: math.unit(10, "feet")
  29035. },
  29036. ]
  29037. ))
  29038. characterMakers.push(() => makeCharacter(
  29039. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29040. {
  29041. front: {
  29042. height: math.unit(1.8, "meters"),
  29043. weight: math.unit(85, "kg"),
  29044. name: "Front",
  29045. image: {
  29046. source: "./media/characters/azteck/front.svg",
  29047. extra: 2815 / 2625,
  29048. bottom: 89 / 2904
  29049. }
  29050. },
  29051. back: {
  29052. height: math.unit(1.8, "meters"),
  29053. weight: math.unit(85, "kg"),
  29054. name: "Back",
  29055. image: {
  29056. source: "./media/characters/azteck/back.svg",
  29057. extra: 2856 / 2648,
  29058. bottom: 85 / 2941
  29059. }
  29060. },
  29061. frontDressed: {
  29062. height: math.unit(1.8, "meters"),
  29063. weight: math.unit(85, "kg"),
  29064. name: "Front (Dressed)",
  29065. image: {
  29066. source: "./media/characters/azteck/front-dressed.svg",
  29067. extra: 2147 / 2003,
  29068. bottom: 68 / 2215
  29069. }
  29070. },
  29071. head: {
  29072. height: math.unit(0.47, "meters"),
  29073. weight: math.unit(85, "kg"),
  29074. name: "Head",
  29075. image: {
  29076. source: "./media/characters/azteck/head.svg"
  29077. }
  29078. },
  29079. },
  29080. [
  29081. {
  29082. name: "Bite sized",
  29083. height: math.unit(16, "cm")
  29084. },
  29085. {
  29086. name: "Normal",
  29087. height: math.unit(1.8, "meters"),
  29088. default: true
  29089. },
  29090. ]
  29091. ))
  29092. characterMakers.push(() => makeCharacter(
  29093. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29094. {
  29095. front: {
  29096. height: math.unit(6, "feet"),
  29097. weight: math.unit(150, "lb"),
  29098. name: "Front",
  29099. image: {
  29100. source: "./media/characters/pidge/front.svg",
  29101. extra: 620 / 588,
  29102. bottom: 9 / 629
  29103. }
  29104. },
  29105. back: {
  29106. height: math.unit(6, "feet"),
  29107. weight: math.unit(150, "lb"),
  29108. name: "Back",
  29109. image: {
  29110. source: "./media/characters/pidge/back.svg",
  29111. extra: 620 / 588,
  29112. bottom: 9 / 629
  29113. }
  29114. },
  29115. },
  29116. [
  29117. {
  29118. name: "Macro",
  29119. height: math.unit(1, "mile"),
  29120. default: true
  29121. },
  29122. ]
  29123. ))
  29124. characterMakers.push(() => makeCharacter(
  29125. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29126. {
  29127. front: {
  29128. height: math.unit(6, "feet"),
  29129. weight: math.unit(150, "lb"),
  29130. name: "Front",
  29131. image: {
  29132. source: "./media/characters/en/front.svg",
  29133. extra: 1697 / 1563,
  29134. bottom: 103 / 1800
  29135. }
  29136. },
  29137. back: {
  29138. height: math.unit(6, "feet"),
  29139. weight: math.unit(150, "lb"),
  29140. name: "Back",
  29141. image: {
  29142. source: "./media/characters/en/back.svg",
  29143. extra: 1700 / 1570,
  29144. bottom: 51 / 1751
  29145. }
  29146. },
  29147. frontDressed: {
  29148. height: math.unit(6, "feet"),
  29149. weight: math.unit(150, "lb"),
  29150. name: "Front (Dressed)",
  29151. image: {
  29152. source: "./media/characters/en/front-dressed.svg",
  29153. extra: 1697 / 1563,
  29154. bottom: 103 / 1800
  29155. }
  29156. },
  29157. backDressed: {
  29158. height: math.unit(6, "feet"),
  29159. weight: math.unit(150, "lb"),
  29160. name: "Back (Dressed)",
  29161. image: {
  29162. source: "./media/characters/en/back-dressed.svg",
  29163. extra: 1700 / 1570,
  29164. bottom: 51 / 1751
  29165. }
  29166. },
  29167. },
  29168. [
  29169. {
  29170. name: "Macro",
  29171. height: math.unit(210, "feet"),
  29172. default: true
  29173. },
  29174. ]
  29175. ))
  29176. characterMakers.push(() => makeCharacter(
  29177. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29178. {
  29179. front: {
  29180. height: math.unit(6, "feet"),
  29181. weight: math.unit(150, "lb"),
  29182. name: "Front",
  29183. image: {
  29184. source: "./media/characters/haze-orris/front.svg",
  29185. extra: 3975 / 3525,
  29186. bottom: 137 / 4112
  29187. }
  29188. },
  29189. },
  29190. [
  29191. {
  29192. name: "Micro",
  29193. height: math.unit(150, "mm"),
  29194. default: true
  29195. },
  29196. ]
  29197. ))
  29198. characterMakers.push(() => makeCharacter(
  29199. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29200. {
  29201. front: {
  29202. height: math.unit(6, "feet"),
  29203. weight: math.unit(150, "lb"),
  29204. name: "Front",
  29205. image: {
  29206. source: "./media/characters/casselene-yaro/front.svg",
  29207. extra: 4721 / 4541,
  29208. bottom: 82 / 4803
  29209. }
  29210. },
  29211. back: {
  29212. height: math.unit(6, "feet"),
  29213. weight: math.unit(150, "lb"),
  29214. name: "Back",
  29215. image: {
  29216. source: "./media/characters/casselene-yaro/back.svg",
  29217. extra: 4569 / 4377,
  29218. bottom: 69 / 4638
  29219. }
  29220. },
  29221. frontDressed: {
  29222. height: math.unit(6, "feet"),
  29223. weight: math.unit(150, "lb"),
  29224. name: "Front-dressed",
  29225. image: {
  29226. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29227. extra: 4721 / 4541,
  29228. bottom: 82 / 4803
  29229. }
  29230. },
  29231. },
  29232. [
  29233. {
  29234. name: "Macro",
  29235. height: math.unit(190, "feet"),
  29236. default: true
  29237. },
  29238. ]
  29239. ))
  29240. characterMakers.push(() => makeCharacter(
  29241. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29242. {
  29243. front: {
  29244. height: math.unit(6, "feet"),
  29245. weight: math.unit(150, "lb"),
  29246. name: "Front",
  29247. image: {
  29248. source: "./media/characters/myra-rue-delore/front.svg",
  29249. extra: 1340 / 1308,
  29250. bottom: 67 / 1407
  29251. }
  29252. },
  29253. back: {
  29254. height: math.unit(6, "feet"),
  29255. weight: math.unit(150, "lb"),
  29256. name: "Back",
  29257. image: {
  29258. source: "./media/characters/myra-rue-delore/back.svg",
  29259. extra: 1341 / 1310,
  29260. bottom: 40 / 1381
  29261. }
  29262. },
  29263. frontDressed: {
  29264. height: math.unit(6, "feet"),
  29265. weight: math.unit(150, "lb"),
  29266. name: "Front (Dressed)",
  29267. image: {
  29268. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29269. extra: 1340 / 1308,
  29270. bottom: 67 / 1407
  29271. }
  29272. },
  29273. },
  29274. [
  29275. {
  29276. name: "Macro",
  29277. height: math.unit(150, "feet"),
  29278. default: true
  29279. },
  29280. ]
  29281. ))
  29282. characterMakers.push(() => makeCharacter(
  29283. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29284. {
  29285. front: {
  29286. height: math.unit(10, "feet"),
  29287. weight: math.unit(15015, "lb"),
  29288. name: "Front",
  29289. image: {
  29290. source: "./media/characters/fem!plat/front.svg",
  29291. extra: 2799 / 2604,
  29292. bottom: 149 / 2948
  29293. }
  29294. },
  29295. },
  29296. [
  29297. {
  29298. name: "Normal",
  29299. height: math.unit(10, "feet"),
  29300. default: true
  29301. },
  29302. {
  29303. name: "Macro",
  29304. height: math.unit(100, "feet")
  29305. },
  29306. {
  29307. name: "Megamacro",
  29308. height: math.unit(1000, "feet")
  29309. },
  29310. ]
  29311. ))
  29312. characterMakers.push(() => makeCharacter(
  29313. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29314. {
  29315. front: {
  29316. height: math.unit(15 + 5 / 12, "feet"),
  29317. weight: math.unit(4600, "lb"),
  29318. name: "Front",
  29319. image: {
  29320. source: "./media/characters/neapolitan-ananassa/front.svg",
  29321. extra: 2903 / 2736,
  29322. bottom: 0 / 2903
  29323. }
  29324. },
  29325. side: {
  29326. height: math.unit(15 + 5 / 12, "feet"),
  29327. weight: math.unit(4600, "lb"),
  29328. name: "Side",
  29329. image: {
  29330. source: "./media/characters/neapolitan-ananassa/side.svg",
  29331. extra: 2925 / 2719,
  29332. bottom: 0 / 2925
  29333. }
  29334. },
  29335. back: {
  29336. height: math.unit(15 + 5 / 12, "feet"),
  29337. weight: math.unit(4600, "lb"),
  29338. name: "Back",
  29339. image: {
  29340. source: "./media/characters/neapolitan-ananassa/back.svg",
  29341. extra: 2903 / 2736,
  29342. bottom: 0 / 2903
  29343. }
  29344. },
  29345. },
  29346. [
  29347. {
  29348. name: "Normal",
  29349. height: math.unit(15 + 5 / 12, "feet"),
  29350. default: true
  29351. },
  29352. {
  29353. name: "Post-Millenium",
  29354. height: math.unit(35 + 5 / 12, "feet")
  29355. },
  29356. {
  29357. name: "Post-Era",
  29358. height: math.unit(450 + 5 / 12, "feet")
  29359. },
  29360. ]
  29361. ))
  29362. characterMakers.push(() => makeCharacter(
  29363. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29364. {
  29365. front: {
  29366. height: math.unit(300, "meters"),
  29367. weight: math.unit(125000, "tonnes"),
  29368. name: "Front",
  29369. image: {
  29370. source: "./media/characters/pazuzu/front.svg",
  29371. extra: 877 / 794,
  29372. bottom: 47 / 924
  29373. }
  29374. },
  29375. },
  29376. [
  29377. {
  29378. name: "Macro",
  29379. height: math.unit(300, "meters"),
  29380. default: true
  29381. },
  29382. ]
  29383. ))
  29384. characterMakers.push(() => makeCharacter(
  29385. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29386. {
  29387. side: {
  29388. height: math.unit(10 + 7 / 12, "feet"),
  29389. weight: math.unit(2.5, "tons"),
  29390. name: "Side",
  29391. image: {
  29392. source: "./media/characters/aasha/side.svg",
  29393. extra: 1345 / 1245,
  29394. bottom: 111 / 1456
  29395. }
  29396. },
  29397. back: {
  29398. height: math.unit(10 + 7 / 12, "feet"),
  29399. weight: math.unit(2.5, "tons"),
  29400. name: "Back",
  29401. image: {
  29402. source: "./media/characters/aasha/back.svg",
  29403. extra: 1133 / 1057,
  29404. bottom: 257 / 1390
  29405. }
  29406. },
  29407. },
  29408. [
  29409. {
  29410. name: "Normal",
  29411. height: math.unit(10 + 7 / 12, "feet"),
  29412. default: true
  29413. },
  29414. ]
  29415. ))
  29416. characterMakers.push(() => makeCharacter(
  29417. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29418. {
  29419. front: {
  29420. height: math.unit(6 + 3 / 12, "feet"),
  29421. name: "Front",
  29422. image: {
  29423. source: "./media/characters/nevan/front.svg",
  29424. extra: 704 / 704,
  29425. bottom: 28 / 732
  29426. }
  29427. },
  29428. back: {
  29429. height: math.unit(6 + 3 / 12, "feet"),
  29430. name: "Back",
  29431. image: {
  29432. source: "./media/characters/nevan/back.svg",
  29433. extra: 714 / 714,
  29434. bottom: 21 / 735
  29435. }
  29436. },
  29437. frontFlaccid: {
  29438. height: math.unit(6 + 3 / 12, "feet"),
  29439. name: "Front (Flaccid)",
  29440. image: {
  29441. source: "./media/characters/nevan/front-flaccid.svg",
  29442. extra: 704 / 704,
  29443. bottom: 28 / 732
  29444. }
  29445. },
  29446. frontErect: {
  29447. height: math.unit(6 + 3 / 12, "feet"),
  29448. name: "Front (Erect)",
  29449. image: {
  29450. source: "./media/characters/nevan/front-erect.svg",
  29451. extra: 704 / 704,
  29452. bottom: 28 / 732
  29453. }
  29454. },
  29455. backFlaccid: {
  29456. height: math.unit(6 + 3 / 12, "feet"),
  29457. name: "Back (Flaccid)",
  29458. image: {
  29459. source: "./media/characters/nevan/back-flaccid.svg",
  29460. extra: 714 / 714,
  29461. bottom: 21 / 735
  29462. }
  29463. },
  29464. },
  29465. [
  29466. {
  29467. name: "Normal",
  29468. height: math.unit(6 + 3 / 12, "feet"),
  29469. default: true
  29470. },
  29471. ]
  29472. ))
  29473. characterMakers.push(() => makeCharacter(
  29474. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29475. {
  29476. front: {
  29477. height: math.unit(4, "feet"),
  29478. name: "Front",
  29479. image: {
  29480. source: "./media/characters/arhan/front.svg",
  29481. extra: 3368 / 3133,
  29482. bottom: 0 / 3368
  29483. }
  29484. },
  29485. side: {
  29486. height: math.unit(4, "feet"),
  29487. name: "Side",
  29488. image: {
  29489. source: "./media/characters/arhan/side.svg",
  29490. extra: 3347 / 3105,
  29491. bottom: 0 / 3347
  29492. }
  29493. },
  29494. tongue: {
  29495. height: math.unit(1.42, "feet"),
  29496. name: "Tongue",
  29497. image: {
  29498. source: "./media/characters/arhan/tongue.svg"
  29499. }
  29500. },
  29501. head: {
  29502. height: math.unit(0.85, "feet"),
  29503. name: "Head",
  29504. image: {
  29505. source: "./media/characters/arhan/head.svg"
  29506. }
  29507. },
  29508. },
  29509. [
  29510. {
  29511. name: "Normal",
  29512. height: math.unit(4, "feet"),
  29513. default: true
  29514. },
  29515. ]
  29516. ))
  29517. characterMakers.push(() => makeCharacter(
  29518. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29519. {
  29520. front: {
  29521. height: math.unit(5 + 7.5 / 12, "feet"),
  29522. weight: math.unit(120, "lb"),
  29523. name: "Front",
  29524. image: {
  29525. source: "./media/characters/digi-duncan/front.svg",
  29526. extra: 330 / 326,
  29527. bottom: 16 / 346
  29528. }
  29529. },
  29530. side: {
  29531. height: math.unit(5 + 7.5 / 12, "feet"),
  29532. weight: math.unit(120, "lb"),
  29533. name: "Side",
  29534. image: {
  29535. source: "./media/characters/digi-duncan/side.svg",
  29536. extra: 341 / 337,
  29537. bottom: 1 / 342
  29538. }
  29539. },
  29540. back: {
  29541. height: math.unit(5 + 7.5 / 12, "feet"),
  29542. weight: math.unit(120, "lb"),
  29543. name: "Back",
  29544. image: {
  29545. source: "./media/characters/digi-duncan/back.svg",
  29546. extra: 330 / 326,
  29547. bottom: 12 / 342
  29548. }
  29549. },
  29550. },
  29551. [
  29552. {
  29553. name: "Speck",
  29554. height: math.unit(0.25, "mm")
  29555. },
  29556. {
  29557. name: "Micro",
  29558. height: math.unit(5, "mm")
  29559. },
  29560. {
  29561. name: "Tiny",
  29562. height: math.unit(0.5, "inches"),
  29563. default: true
  29564. },
  29565. {
  29566. name: "Human",
  29567. height: math.unit(5 + 7.5 / 12, "feet")
  29568. },
  29569. {
  29570. name: "Minigiant",
  29571. height: math.unit(8 + 5.25, "feet")
  29572. },
  29573. {
  29574. name: "Giant",
  29575. height: math.unit(2000, "feet")
  29576. },
  29577. {
  29578. name: "Mega",
  29579. height: math.unit(371.1, "miles")
  29580. },
  29581. ]
  29582. ))
  29583. characterMakers.push(() => makeCharacter(
  29584. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29585. {
  29586. front: {
  29587. height: math.unit(2, "meters"),
  29588. weight: math.unit(350, "kg"),
  29589. name: "Front",
  29590. image: {
  29591. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29592. extra: 898 / 838,
  29593. bottom: 9 / 907
  29594. }
  29595. },
  29596. },
  29597. [
  29598. {
  29599. name: "Micro",
  29600. height: math.unit(8, "meters")
  29601. },
  29602. {
  29603. name: "Normal",
  29604. height: math.unit(50, "meters"),
  29605. default: true
  29606. },
  29607. {
  29608. name: "Macro",
  29609. height: math.unit(500, "meters")
  29610. },
  29611. ]
  29612. ))
  29613. characterMakers.push(() => makeCharacter(
  29614. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29615. {
  29616. front: {
  29617. height: math.unit(6 + 6 / 12, "feet"),
  29618. name: "Front",
  29619. image: {
  29620. source: "./media/characters/khardesh/front.svg",
  29621. extra: 888 / 797,
  29622. bottom: 25 / 913
  29623. }
  29624. },
  29625. },
  29626. [
  29627. {
  29628. name: "Normal",
  29629. height: math.unit(6 + 6 / 12, "feet"),
  29630. default: true
  29631. },
  29632. {
  29633. name: "Normal+",
  29634. height: math.unit(4, "meters")
  29635. },
  29636. {
  29637. name: "Macro",
  29638. height: math.unit(50, "meters")
  29639. },
  29640. {
  29641. name: "Macro+",
  29642. height: math.unit(100, "meters")
  29643. },
  29644. {
  29645. name: "Megamacro",
  29646. height: math.unit(20, "km")
  29647. },
  29648. ]
  29649. ))
  29650. characterMakers.push(() => makeCharacter(
  29651. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29652. {
  29653. front: {
  29654. height: math.unit(6, "feet"),
  29655. weight: math.unit(150, "lb"),
  29656. name: "Front",
  29657. image: {
  29658. source: "./media/characters/kosho/front.svg",
  29659. extra: 1847 / 1847,
  29660. bottom: 86 / 1933
  29661. }
  29662. },
  29663. },
  29664. [
  29665. {
  29666. name: "Second-stage micro",
  29667. height: math.unit(0.5, "inches")
  29668. },
  29669. {
  29670. name: "First-stage micro",
  29671. height: math.unit(6, "inches")
  29672. },
  29673. {
  29674. name: "Normal",
  29675. height: math.unit(6, "feet"),
  29676. default: true
  29677. },
  29678. {
  29679. name: "First-stage macro",
  29680. height: math.unit(72, "feet")
  29681. },
  29682. {
  29683. name: "Second-stage macro",
  29684. height: math.unit(864, "feet")
  29685. },
  29686. ]
  29687. ))
  29688. characterMakers.push(() => makeCharacter(
  29689. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29690. {
  29691. normal: {
  29692. height: math.unit(4 + 6 / 12, "feet"),
  29693. name: "Normal",
  29694. image: {
  29695. source: "./media/characters/hydra/normal.svg",
  29696. extra: 2833 / 2634,
  29697. bottom: 68 / 2901
  29698. }
  29699. },
  29700. smol: {
  29701. height: math.unit(0.705, "inches"),
  29702. name: "Smol",
  29703. image: {
  29704. source: "./media/characters/hydra/smol.svg",
  29705. extra: 2715 / 2540,
  29706. bottom: 0 / 2715
  29707. }
  29708. },
  29709. },
  29710. [
  29711. {
  29712. name: "Normal",
  29713. height: math.unit(4 + 6 / 12, "feet"),
  29714. default: true
  29715. }
  29716. ]
  29717. ))
  29718. characterMakers.push(() => makeCharacter(
  29719. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29720. {
  29721. front: {
  29722. height: math.unit(0.6, "cm"),
  29723. name: "Front",
  29724. image: {
  29725. source: "./media/characters/daz/front.svg",
  29726. extra: 1682 / 1164,
  29727. bottom: 42 / 1724
  29728. }
  29729. },
  29730. },
  29731. [
  29732. {
  29733. name: "Normal",
  29734. height: math.unit(0.6, "cm"),
  29735. default: true
  29736. },
  29737. ]
  29738. ))
  29739. characterMakers.push(() => makeCharacter(
  29740. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29741. {
  29742. front: {
  29743. height: math.unit(6, "feet"),
  29744. weight: math.unit(235, "lb"),
  29745. name: "Front",
  29746. image: {
  29747. source: "./media/characters/theo-pangolin/front.svg",
  29748. extra: 1996 / 1969,
  29749. bottom: 115 / 2111
  29750. }
  29751. },
  29752. back: {
  29753. height: math.unit(6, "feet"),
  29754. weight: math.unit(235, "lb"),
  29755. name: "Back",
  29756. image: {
  29757. source: "./media/characters/theo-pangolin/back.svg",
  29758. extra: 1979 / 1979,
  29759. bottom: 40 / 2019
  29760. }
  29761. },
  29762. feral: {
  29763. height: math.unit(2, "feet"),
  29764. weight: math.unit(30, "lb"),
  29765. name: "Feral",
  29766. image: {
  29767. source: "./media/characters/theo-pangolin/feral.svg",
  29768. extra: 803 / 791,
  29769. bottom: 181 / 984
  29770. }
  29771. },
  29772. footFive: {
  29773. height: math.unit(1.43, "feet"),
  29774. name: "Foot (Five Toes)",
  29775. image: {
  29776. source: "./media/characters/theo-pangolin/foot-five.svg"
  29777. }
  29778. },
  29779. footFour: {
  29780. height: math.unit(1.43, "feet"),
  29781. name: "Foot (Four Toes)",
  29782. image: {
  29783. source: "./media/characters/theo-pangolin/foot-four.svg"
  29784. }
  29785. },
  29786. handFour: {
  29787. height: math.unit(0.81, "feet"),
  29788. name: "Hand (Four Fingers)",
  29789. image: {
  29790. source: "./media/characters/theo-pangolin/hand-four.svg"
  29791. }
  29792. },
  29793. handThree: {
  29794. height: math.unit(0.81, "feet"),
  29795. name: "Hand (Three Fingers)",
  29796. image: {
  29797. source: "./media/characters/theo-pangolin/hand-three.svg"
  29798. }
  29799. },
  29800. headFront: {
  29801. height: math.unit(1.37, "feet"),
  29802. name: "Head (Front)",
  29803. image: {
  29804. source: "./media/characters/theo-pangolin/head-front.svg"
  29805. }
  29806. },
  29807. headSide: {
  29808. height: math.unit(1.43, "feet"),
  29809. name: "Head (Side)",
  29810. image: {
  29811. source: "./media/characters/theo-pangolin/head-side.svg"
  29812. }
  29813. },
  29814. tongue: {
  29815. height: math.unit(2.29, "feet"),
  29816. name: "Tongue",
  29817. image: {
  29818. source: "./media/characters/theo-pangolin/tongue.svg"
  29819. }
  29820. },
  29821. },
  29822. [
  29823. {
  29824. name: "Normal",
  29825. height: math.unit(6, "feet")
  29826. },
  29827. {
  29828. name: "Macro",
  29829. height: math.unit(400, "feet"),
  29830. default: true
  29831. },
  29832. ]
  29833. ))
  29834. characterMakers.push(() => makeCharacter(
  29835. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29836. {
  29837. front: {
  29838. height: math.unit(6, "inches"),
  29839. weight: math.unit(0.036, "kg"),
  29840. name: "Front",
  29841. image: {
  29842. source: "./media/characters/renée/front.svg",
  29843. extra: 900 / 886,
  29844. bottom: 8 / 908
  29845. }
  29846. },
  29847. },
  29848. [
  29849. {
  29850. name: "Nano",
  29851. height: math.unit(1, "nm")
  29852. },
  29853. {
  29854. name: "Micro",
  29855. height: math.unit(1, "mm")
  29856. },
  29857. {
  29858. name: "Normal",
  29859. height: math.unit(6, "inches")
  29860. },
  29861. {
  29862. name: "Macro",
  29863. height: math.unit(2000, "feet"),
  29864. default: true
  29865. },
  29866. {
  29867. name: "Megamacro",
  29868. height: math.unit(2, "km")
  29869. },
  29870. {
  29871. name: "Gigamacro",
  29872. height: math.unit(2000, "km")
  29873. },
  29874. {
  29875. name: "Teramacro",
  29876. height: math.unit(250000, "km")
  29877. },
  29878. ]
  29879. ))
  29880. characterMakers.push(() => makeCharacter(
  29881. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29882. {
  29883. front: {
  29884. height: math.unit(4, "meters"),
  29885. weight: math.unit(150, "kg"),
  29886. name: "Front",
  29887. image: {
  29888. source: "./media/characters/caledvwlch/front.svg",
  29889. extra: 1760 / 1551,
  29890. bottom: 28 / 1788
  29891. }
  29892. },
  29893. side: {
  29894. height: math.unit(4, "meters"),
  29895. weight: math.unit(150, "kg"),
  29896. name: "Side",
  29897. image: {
  29898. source: "./media/characters/caledvwlch/side.svg",
  29899. extra: 1605 / 1536,
  29900. bottom: 31 / 1636
  29901. }
  29902. },
  29903. back: {
  29904. height: math.unit(4, "meters"),
  29905. weight: math.unit(150, "kg"),
  29906. name: "Back",
  29907. image: {
  29908. source: "./media/characters/caledvwlch/back.svg",
  29909. extra: 1635 / 1565,
  29910. bottom: 27 / 1662
  29911. }
  29912. },
  29913. },
  29914. [
  29915. {
  29916. name: "\"Incognito\"",
  29917. height: math.unit(4, "meters")
  29918. },
  29919. {
  29920. name: "Small rampage",
  29921. height: math.unit(600, "meters")
  29922. },
  29923. {
  29924. name: "Mega",
  29925. height: math.unit(30, "km")
  29926. },
  29927. {
  29928. name: "Home-size",
  29929. height: math.unit(50, "km"),
  29930. default: true
  29931. },
  29932. {
  29933. name: "Giga",
  29934. height: math.unit(300, "km")
  29935. },
  29936. {
  29937. name: "Lounging",
  29938. height: math.unit(11000, "km")
  29939. },
  29940. {
  29941. name: "Planet snacking",
  29942. height: math.unit(2000000, "km")
  29943. },
  29944. ]
  29945. ))
  29946. characterMakers.push(() => makeCharacter(
  29947. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29948. {
  29949. front: {
  29950. height: math.unit(6, "feet"),
  29951. weight: math.unit(215, "lb"),
  29952. name: "Front",
  29953. image: {
  29954. source: "./media/characters/sapphire-svell/front.svg",
  29955. extra: 495 / 455,
  29956. bottom: 20 / 515
  29957. }
  29958. },
  29959. back: {
  29960. height: math.unit(6, "feet"),
  29961. weight: math.unit(216, "lb"),
  29962. name: "Back",
  29963. image: {
  29964. source: "./media/characters/sapphire-svell/back.svg",
  29965. extra: 497 / 477,
  29966. bottom: 7 / 504
  29967. }
  29968. },
  29969. maw: {
  29970. height: math.unit(1.57, "feet"),
  29971. name: "Maw",
  29972. image: {
  29973. source: "./media/characters/sapphire-svell/maw.svg"
  29974. }
  29975. },
  29976. foot: {
  29977. height: math.unit(1.07, "feet"),
  29978. name: "Foot",
  29979. image: {
  29980. source: "./media/characters/sapphire-svell/foot.svg"
  29981. }
  29982. },
  29983. toering: {
  29984. height: math.unit(1.7, "inch"),
  29985. name: "Toering",
  29986. image: {
  29987. source: "./media/characters/sapphire-svell/toering.svg"
  29988. }
  29989. },
  29990. },
  29991. [
  29992. {
  29993. name: "Normal",
  29994. height: math.unit(300, "feet"),
  29995. default: true
  29996. },
  29997. {
  29998. name: "Augmented",
  29999. height: math.unit(1250, "feet")
  30000. },
  30001. {
  30002. name: "Unleashed",
  30003. height: math.unit(3000, "feet")
  30004. },
  30005. ]
  30006. ))
  30007. characterMakers.push(() => makeCharacter(
  30008. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30009. {
  30010. side: {
  30011. height: math.unit(2 + 3 / 12, "feet"),
  30012. weight: math.unit(110, "lb"),
  30013. name: "Side",
  30014. image: {
  30015. source: "./media/characters/glitch-flux/side.svg",
  30016. extra: 997 / 805,
  30017. bottom: 20 / 1017
  30018. }
  30019. },
  30020. },
  30021. [
  30022. {
  30023. name: "Normal",
  30024. height: math.unit(2 + 3 / 12, "feet"),
  30025. default: true
  30026. },
  30027. ]
  30028. ))
  30029. characterMakers.push(() => makeCharacter(
  30030. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30031. {
  30032. front: {
  30033. height: math.unit(4, "meters"),
  30034. name: "Front",
  30035. image: {
  30036. source: "./media/characters/mid/front.svg",
  30037. extra: 507 / 476,
  30038. bottom: 17 / 524
  30039. }
  30040. },
  30041. back: {
  30042. height: math.unit(4, "meters"),
  30043. name: "Back",
  30044. image: {
  30045. source: "./media/characters/mid/back.svg",
  30046. extra: 519 / 487,
  30047. bottom: 7 / 526
  30048. }
  30049. },
  30050. stuck: {
  30051. height: math.unit(2.2, "meters"),
  30052. name: "Stuck",
  30053. image: {
  30054. source: "./media/characters/mid/stuck.svg",
  30055. extra: 1951 / 1869,
  30056. bottom: 88 / 2039
  30057. }
  30058. }
  30059. },
  30060. [
  30061. {
  30062. name: "Normal",
  30063. height: math.unit(4, "meters"),
  30064. default: true
  30065. },
  30066. {
  30067. name: "Big",
  30068. height: math.unit(10, "meters")
  30069. },
  30070. {
  30071. name: "Macro",
  30072. height: math.unit(800, "meters")
  30073. },
  30074. {
  30075. name: "Megamacro",
  30076. height: math.unit(100, "km")
  30077. },
  30078. {
  30079. name: "Overgrown",
  30080. height: math.unit(1, "parsec")
  30081. },
  30082. ]
  30083. ))
  30084. characterMakers.push(() => makeCharacter(
  30085. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30086. {
  30087. front: {
  30088. height: math.unit(2.5, "meters"),
  30089. weight: math.unit(225, "kg"),
  30090. name: "Front",
  30091. image: {
  30092. source: "./media/characters/iris/front.svg",
  30093. extra: 3348 / 3251,
  30094. bottom: 205 / 3553
  30095. }
  30096. },
  30097. maw: {
  30098. height: math.unit(0.56, "meter"),
  30099. name: "Maw",
  30100. image: {
  30101. source: "./media/characters/iris/maw.svg"
  30102. }
  30103. },
  30104. },
  30105. [
  30106. {
  30107. name: "Mewter cat",
  30108. height: math.unit(1.2, "meters")
  30109. },
  30110. {
  30111. name: "Minimacro",
  30112. height: math.unit(2.5, "meters"),
  30113. default: true
  30114. },
  30115. {
  30116. name: "Macro",
  30117. height: math.unit(180, "meters")
  30118. },
  30119. {
  30120. name: "Megamacro",
  30121. height: math.unit(2746, "meters")
  30122. },
  30123. ]
  30124. ))
  30125. characterMakers.push(() => makeCharacter(
  30126. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30127. {
  30128. front: {
  30129. height: math.unit(6, "feet"),
  30130. weight: math.unit(135, "lb"),
  30131. name: "Front",
  30132. image: {
  30133. source: "./media/characters/axel/front.svg",
  30134. extra: 908 / 908,
  30135. bottom: 58 / 966
  30136. }
  30137. },
  30138. side: {
  30139. height: math.unit(6, "feet"),
  30140. weight: math.unit(135, "lb"),
  30141. name: "Side",
  30142. image: {
  30143. source: "./media/characters/axel/side.svg",
  30144. extra: 958 / 958,
  30145. bottom: 11 / 969
  30146. }
  30147. },
  30148. back: {
  30149. height: math.unit(6, "feet"),
  30150. weight: math.unit(135, "lb"),
  30151. name: "Back",
  30152. image: {
  30153. source: "./media/characters/axel/back.svg",
  30154. extra: 887 / 887,
  30155. bottom: 34 / 921
  30156. }
  30157. },
  30158. head: {
  30159. height: math.unit(1.07, "feet"),
  30160. name: "Head",
  30161. image: {
  30162. source: "./media/characters/axel/head.svg"
  30163. }
  30164. },
  30165. beak: {
  30166. height: math.unit(1.4, "feet"),
  30167. name: "Beak",
  30168. image: {
  30169. source: "./media/characters/axel/beak.svg"
  30170. }
  30171. },
  30172. beakSide: {
  30173. height: math.unit(1.4, "feet"),
  30174. name: "Beak Side",
  30175. image: {
  30176. source: "./media/characters/axel/beak-side.svg"
  30177. }
  30178. },
  30179. sheath: {
  30180. height: math.unit(0.5, "feet"),
  30181. name: "Sheath",
  30182. image: {
  30183. source: "./media/characters/axel/sheath.svg"
  30184. }
  30185. },
  30186. dick: {
  30187. height: math.unit(0.98, "feet"),
  30188. name: "Dick",
  30189. image: {
  30190. source: "./media/characters/axel/dick.svg"
  30191. }
  30192. },
  30193. },
  30194. [
  30195. {
  30196. name: "Macro",
  30197. height: math.unit(68, "meters"),
  30198. default: true
  30199. },
  30200. ]
  30201. ))
  30202. characterMakers.push(() => makeCharacter(
  30203. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30204. {
  30205. front: {
  30206. height: math.unit(3.5, "meters"),
  30207. weight: math.unit(1200, "kg"),
  30208. name: "Front",
  30209. image: {
  30210. source: "./media/characters/joanna/front.svg",
  30211. extra: 1596 / 1488,
  30212. bottom: 29 / 1625
  30213. }
  30214. },
  30215. back: {
  30216. height: math.unit(3.5, "meters"),
  30217. weight: math.unit(1200, "kg"),
  30218. name: "Back",
  30219. image: {
  30220. source: "./media/characters/joanna/back.svg",
  30221. extra: 1594 / 1495,
  30222. bottom: 26 / 1620
  30223. }
  30224. },
  30225. frontShorts: {
  30226. height: math.unit(3.5, "meters"),
  30227. weight: math.unit(1200, "kg"),
  30228. name: "Front (Shorts)",
  30229. image: {
  30230. source: "./media/characters/joanna/front-shorts.svg",
  30231. extra: 1596 / 1488,
  30232. bottom: 29 / 1625
  30233. }
  30234. },
  30235. frontBiker: {
  30236. height: math.unit(3.5, "meters"),
  30237. weight: math.unit(1200, "kg"),
  30238. name: "Front (Biker)",
  30239. image: {
  30240. source: "./media/characters/joanna/front-biker.svg",
  30241. extra: 1596 / 1488,
  30242. bottom: 29 / 1625
  30243. }
  30244. },
  30245. backBiker: {
  30246. height: math.unit(3.5, "meters"),
  30247. weight: math.unit(1200, "kg"),
  30248. name: "Back (Biker)",
  30249. image: {
  30250. source: "./media/characters/joanna/back-biker.svg",
  30251. extra: 1594 / 1495,
  30252. bottom: 88 / 1682
  30253. }
  30254. },
  30255. bikeLeft: {
  30256. height: math.unit(2.4, "meters"),
  30257. weight: math.unit(1600, "kg"),
  30258. name: "Bike (Left)",
  30259. image: {
  30260. source: "./media/characters/joanna/bike-left.svg",
  30261. extra: 720 / 720,
  30262. bottom: 8 / 728
  30263. }
  30264. },
  30265. bikeRight: {
  30266. height: math.unit(2.4, "meters"),
  30267. weight: math.unit(1600, "kg"),
  30268. name: "Bike (Right)",
  30269. image: {
  30270. source: "./media/characters/joanna/bike-right.svg",
  30271. extra: 720 / 720,
  30272. bottom: 8 / 728
  30273. }
  30274. },
  30275. },
  30276. [
  30277. {
  30278. name: "Incognito",
  30279. height: math.unit(3.5, "meters")
  30280. },
  30281. {
  30282. name: "Casual Big",
  30283. height: math.unit(200, "meters")
  30284. },
  30285. {
  30286. name: "Macro",
  30287. height: math.unit(600, "meters")
  30288. },
  30289. {
  30290. name: "Original",
  30291. height: math.unit(20, "km"),
  30292. default: true
  30293. },
  30294. {
  30295. name: "Giga",
  30296. height: math.unit(400, "km")
  30297. },
  30298. {
  30299. name: "Lounging",
  30300. height: math.unit(1500, "km")
  30301. },
  30302. {
  30303. name: "Planetary",
  30304. height: math.unit(200000, "km")
  30305. },
  30306. ]
  30307. ))
  30308. characterMakers.push(() => makeCharacter(
  30309. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30310. {
  30311. front: {
  30312. height: math.unit(6, "feet"),
  30313. weight: math.unit(150, "lb"),
  30314. name: "Front",
  30315. image: {
  30316. source: "./media/characters/hugo-sigil/front.svg",
  30317. extra: 522 / 500,
  30318. bottom: 2 / 524
  30319. }
  30320. },
  30321. back: {
  30322. height: math.unit(6, "feet"),
  30323. weight: math.unit(150, "lb"),
  30324. name: "Back",
  30325. image: {
  30326. source: "./media/characters/hugo-sigil/back.svg",
  30327. extra: 519 / 495,
  30328. bottom: 5 / 524
  30329. }
  30330. },
  30331. maw: {
  30332. height: math.unit(1.4, "feet"),
  30333. weight: math.unit(150, "lb"),
  30334. name: "Maw",
  30335. image: {
  30336. source: "./media/characters/hugo-sigil/maw.svg"
  30337. }
  30338. },
  30339. feet: {
  30340. height: math.unit(1.56, "feet"),
  30341. weight: math.unit(150, "lb"),
  30342. name: "Feet",
  30343. image: {
  30344. source: "./media/characters/hugo-sigil/feet.svg",
  30345. extra: 177 / 177,
  30346. bottom: 12 / 189
  30347. }
  30348. },
  30349. },
  30350. [
  30351. {
  30352. name: "Normal",
  30353. height: math.unit(6, "feet")
  30354. },
  30355. {
  30356. name: "Macro",
  30357. height: math.unit(200, "feet"),
  30358. default: true
  30359. },
  30360. ]
  30361. ))
  30362. characterMakers.push(() => makeCharacter(
  30363. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30364. {
  30365. front: {
  30366. height: math.unit(6, "feet"),
  30367. weight: math.unit(150, "lb"),
  30368. name: "Front",
  30369. image: {
  30370. source: "./media/characters/peri/front.svg",
  30371. extra: 2354 / 2233,
  30372. bottom: 49 / 2403
  30373. }
  30374. },
  30375. },
  30376. [
  30377. {
  30378. name: "Really Small",
  30379. height: math.unit(1, "nm")
  30380. },
  30381. {
  30382. name: "Micro",
  30383. height: math.unit(4, "inches")
  30384. },
  30385. {
  30386. name: "Normal",
  30387. height: math.unit(7, "inches"),
  30388. default: true
  30389. },
  30390. {
  30391. name: "Macro",
  30392. height: math.unit(400, "feet")
  30393. },
  30394. {
  30395. name: "Megamacro",
  30396. height: math.unit(100, "miles")
  30397. },
  30398. ]
  30399. ))
  30400. characterMakers.push(() => makeCharacter(
  30401. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30402. {
  30403. frontSlim: {
  30404. height: math.unit(7, "feet"),
  30405. name: "Front (Slim)",
  30406. image: {
  30407. source: "./media/characters/issilora/front-slim.svg",
  30408. extra: 529 / 449,
  30409. bottom: 53 / 582
  30410. }
  30411. },
  30412. sideSlim: {
  30413. height: math.unit(7, "feet"),
  30414. name: "Side (Slim)",
  30415. image: {
  30416. source: "./media/characters/issilora/side-slim.svg",
  30417. extra: 570 / 480,
  30418. bottom: 30 / 600
  30419. }
  30420. },
  30421. backSlim: {
  30422. height: math.unit(7, "feet"),
  30423. name: "Back (Slim)",
  30424. image: {
  30425. source: "./media/characters/issilora/back-slim.svg",
  30426. extra: 537 / 455,
  30427. bottom: 46 / 583
  30428. }
  30429. },
  30430. frontBuff: {
  30431. height: math.unit(7, "feet"),
  30432. name: "Front (Buff)",
  30433. image: {
  30434. source: "./media/characters/issilora/front-buff.svg",
  30435. extra: 2310 / 2035,
  30436. bottom: 335 / 2645
  30437. }
  30438. },
  30439. head: {
  30440. height: math.unit(1.94, "feet"),
  30441. name: "Head",
  30442. image: {
  30443. source: "./media/characters/issilora/head.svg"
  30444. }
  30445. },
  30446. },
  30447. [
  30448. {
  30449. name: "Minimum",
  30450. height: math.unit(7, "feet")
  30451. },
  30452. {
  30453. name: "Comfortable",
  30454. height: math.unit(17, "feet")
  30455. },
  30456. {
  30457. name: "Fun Size",
  30458. height: math.unit(47, "feet")
  30459. },
  30460. {
  30461. name: "Natural Macro",
  30462. height: math.unit(137, "feet"),
  30463. default: true
  30464. },
  30465. {
  30466. name: "Maximum Kaiju",
  30467. height: math.unit(397, "feet")
  30468. },
  30469. ]
  30470. ))
  30471. characterMakers.push(() => makeCharacter(
  30472. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30473. {
  30474. front: {
  30475. height: math.unit(50 + 9/12, "feet"),
  30476. weight: math.unit(32.8, "tons"),
  30477. name: "Front",
  30478. image: {
  30479. source: "./media/characters/irb'iiritaahn/front.svg",
  30480. extra: 1878/1826,
  30481. bottom: 326/2204
  30482. }
  30483. },
  30484. back: {
  30485. height: math.unit(50 + 9/12, "feet"),
  30486. weight: math.unit(32.8, "tons"),
  30487. name: "Back",
  30488. image: {
  30489. source: "./media/characters/irb'iiritaahn/back.svg",
  30490. extra: 2052/2018,
  30491. bottom: 152/2204
  30492. }
  30493. },
  30494. head: {
  30495. height: math.unit(12.86, "feet"),
  30496. name: "Head",
  30497. image: {
  30498. source: "./media/characters/irb'iiritaahn/head.svg"
  30499. }
  30500. },
  30501. maw: {
  30502. height: math.unit(9.66, "feet"),
  30503. name: "Maw",
  30504. image: {
  30505. source: "./media/characters/irb'iiritaahn/maw.svg"
  30506. }
  30507. },
  30508. frontDick: {
  30509. height: math.unit(8.78461, "feet"),
  30510. name: "Front Dick",
  30511. image: {
  30512. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30513. }
  30514. },
  30515. rearDick: {
  30516. height: math.unit(8.78461, "feet"),
  30517. name: "Rear Dick",
  30518. image: {
  30519. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30520. }
  30521. },
  30522. rearDickUnfolded: {
  30523. height: math.unit(8.78, "feet"),
  30524. name: "Rear Dick (Unfolded)",
  30525. image: {
  30526. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30527. }
  30528. },
  30529. wings: {
  30530. height: math.unit(43, "feet"),
  30531. name: "Wings",
  30532. image: {
  30533. source: "./media/characters/irb'iiritaahn/wings.svg"
  30534. }
  30535. },
  30536. },
  30537. [
  30538. {
  30539. name: "Macro",
  30540. height: math.unit(50 + 9/12, "feet"),
  30541. default: true
  30542. },
  30543. ]
  30544. ))
  30545. characterMakers.push(() => makeCharacter(
  30546. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30547. {
  30548. front: {
  30549. height: math.unit(205, "cm"),
  30550. weight: math.unit(102, "kg"),
  30551. name: "Front",
  30552. image: {
  30553. source: "./media/characters/irbisgreif/front.svg",
  30554. extra: 785/706,
  30555. bottom: 13/798
  30556. }
  30557. },
  30558. back: {
  30559. height: math.unit(205, "cm"),
  30560. weight: math.unit(102, "kg"),
  30561. name: "Back",
  30562. image: {
  30563. source: "./media/characters/irbisgreif/back.svg",
  30564. extra: 713/701,
  30565. bottom: 26/739
  30566. }
  30567. },
  30568. frontDressed: {
  30569. height: math.unit(216, "cm"),
  30570. weight: math.unit(102, "kg"),
  30571. name: "Front-dressed",
  30572. image: {
  30573. source: "./media/characters/irbisgreif/front-dressed.svg",
  30574. extra: 902/776,
  30575. bottom: 14/916
  30576. }
  30577. },
  30578. sideDressed: {
  30579. height: math.unit(195, "cm"),
  30580. weight: math.unit(102, "kg"),
  30581. name: "Side-dressed",
  30582. image: {
  30583. source: "./media/characters/irbisgreif/side-dressed.svg",
  30584. extra: 788/688,
  30585. bottom: 21/809
  30586. }
  30587. },
  30588. backDressed: {
  30589. height: math.unit(216, "cm"),
  30590. weight: math.unit(102, "kg"),
  30591. name: "Back-dressed",
  30592. image: {
  30593. source: "./media/characters/irbisgreif/back-dressed.svg",
  30594. extra: 901/783,
  30595. bottom: 10/911
  30596. }
  30597. },
  30598. dick: {
  30599. height: math.unit(0.49, "feet"),
  30600. name: "Dick",
  30601. image: {
  30602. source: "./media/characters/irbisgreif/dick.svg"
  30603. }
  30604. },
  30605. wingTop: {
  30606. height: math.unit(1.93 , "feet"),
  30607. name: "Wing-top",
  30608. image: {
  30609. source: "./media/characters/irbisgreif/wing-top.svg"
  30610. }
  30611. },
  30612. wingBottom: {
  30613. height: math.unit(1.93 , "feet"),
  30614. name: "Wing-bottom",
  30615. image: {
  30616. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30617. }
  30618. },
  30619. },
  30620. [
  30621. {
  30622. name: "Normal",
  30623. height: math.unit(216, "cm"),
  30624. default: true
  30625. },
  30626. ]
  30627. ))
  30628. characterMakers.push(() => makeCharacter(
  30629. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30630. {
  30631. front: {
  30632. height: math.unit(6, "feet"),
  30633. weight: math.unit(150, "lb"),
  30634. name: "Front",
  30635. image: {
  30636. source: "./media/characters/pride/front.svg",
  30637. extra: 1299/1230,
  30638. bottom: 18/1317
  30639. }
  30640. },
  30641. },
  30642. [
  30643. {
  30644. name: "Normal",
  30645. height: math.unit(7, "feet")
  30646. },
  30647. {
  30648. name: "Mini-macro",
  30649. height: math.unit(11, "feet")
  30650. },
  30651. {
  30652. name: "Macro",
  30653. height: math.unit(15, "meters"),
  30654. default: true
  30655. },
  30656. {
  30657. name: "Macro+",
  30658. height: math.unit(40, "meters")
  30659. },
  30660. ]
  30661. ))
  30662. characterMakers.push(() => makeCharacter(
  30663. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30664. {
  30665. front: {
  30666. height: math.unit(4 + 2 / 12, "feet"),
  30667. weight: math.unit(95, "lb"),
  30668. name: "Front",
  30669. image: {
  30670. source: "./media/characters/vaelophis-nyx/front.svg",
  30671. extra: 2532/2330,
  30672. bottom: 0/2532
  30673. }
  30674. },
  30675. back: {
  30676. height: math.unit(4 + 2 / 12, "feet"),
  30677. weight: math.unit(95, "lb"),
  30678. name: "Back",
  30679. image: {
  30680. source: "./media/characters/vaelophis-nyx/back.svg",
  30681. extra: 2484/2361,
  30682. bottom: 0/2484
  30683. }
  30684. },
  30685. feralSide: {
  30686. height: math.unit(2 + 1/12, "feet"),
  30687. weight: math.unit(20, "lb"),
  30688. name: "Feral (Side)",
  30689. image: {
  30690. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30691. extra: 1721/1581,
  30692. bottom: 70/1791
  30693. }
  30694. },
  30695. feralLazing: {
  30696. height: math.unit(1.08, "feet"),
  30697. weight: math.unit(20, "lb"),
  30698. name: "Feral (Lazing)",
  30699. image: {
  30700. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30701. extra: 822/822,
  30702. bottom: 248/1070
  30703. }
  30704. },
  30705. ear: {
  30706. height: math.unit(0.416, "feet"),
  30707. name: "Ear",
  30708. image: {
  30709. source: "./media/characters/vaelophis-nyx/ear.svg"
  30710. }
  30711. },
  30712. eye: {
  30713. height: math.unit(0.0748, "feet"),
  30714. name: "Eye",
  30715. image: {
  30716. source: "./media/characters/vaelophis-nyx/eye.svg"
  30717. }
  30718. },
  30719. mouth: {
  30720. height: math.unit(0.378, "feet"),
  30721. name: "Mouth",
  30722. image: {
  30723. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30724. }
  30725. },
  30726. spade: {
  30727. height: math.unit(0.55, "feet"),
  30728. name: "Spade",
  30729. image: {
  30730. source: "./media/characters/vaelophis-nyx/spade.svg"
  30731. }
  30732. },
  30733. },
  30734. [
  30735. {
  30736. name: "Normal",
  30737. height: math.unit(4 + 2/12, "feet"),
  30738. default: true
  30739. },
  30740. ]
  30741. ))
  30742. characterMakers.push(() => makeCharacter(
  30743. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30744. {
  30745. front: {
  30746. height: math.unit(7, "feet"),
  30747. weight: math.unit(231, "lb"),
  30748. name: "Front",
  30749. image: {
  30750. source: "./media/characters/flux/front.svg",
  30751. extra: 919/871,
  30752. bottom: 0/919
  30753. }
  30754. },
  30755. back: {
  30756. height: math.unit(7, "feet"),
  30757. weight: math.unit(231, "lb"),
  30758. name: "Back",
  30759. image: {
  30760. source: "./media/characters/flux/back.svg",
  30761. extra: 1040/992,
  30762. bottom: 0/1040
  30763. }
  30764. },
  30765. frontDressed: {
  30766. height: math.unit(7, "feet"),
  30767. weight: math.unit(231, "lb"),
  30768. name: "Front (Dressed)",
  30769. image: {
  30770. source: "./media/characters/flux/front-dressed.svg",
  30771. extra: 919/871,
  30772. bottom: 0/919
  30773. }
  30774. },
  30775. feralSide: {
  30776. height: math.unit(5, "feet"),
  30777. weight: math.unit(150, "lb"),
  30778. name: "Feral (Side)",
  30779. image: {
  30780. source: "./media/characters/flux/feral-side.svg",
  30781. extra: 598/528,
  30782. bottom: 28/626
  30783. }
  30784. },
  30785. head: {
  30786. height: math.unit(1.585, "feet"),
  30787. name: "Head",
  30788. image: {
  30789. source: "./media/characters/flux/head.svg"
  30790. }
  30791. },
  30792. headSide: {
  30793. height: math.unit(1.74, "feet"),
  30794. name: "Head (Side)",
  30795. image: {
  30796. source: "./media/characters/flux/head-side.svg"
  30797. }
  30798. },
  30799. headSideFire: {
  30800. height: math.unit(1.76, "feet"),
  30801. name: "Head (Side, Fire)",
  30802. image: {
  30803. source: "./media/characters/flux/head-side-fire.svg"
  30804. }
  30805. },
  30806. },
  30807. [
  30808. {
  30809. name: "Normal",
  30810. height: math.unit(7, "feet"),
  30811. default: true
  30812. },
  30813. ]
  30814. ))
  30815. characterMakers.push(() => makeCharacter(
  30816. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30817. {
  30818. front: {
  30819. height: math.unit(9, "feet"),
  30820. weight: math.unit(1012, "lb"),
  30821. name: "Front",
  30822. image: {
  30823. source: "./media/characters/ulfra-lupae/front.svg",
  30824. extra: 1083/1011,
  30825. bottom: 67/1150
  30826. }
  30827. },
  30828. },
  30829. [
  30830. {
  30831. name: "Micro",
  30832. height: math.unit(6, "inches")
  30833. },
  30834. {
  30835. name: "Socializing",
  30836. height: math.unit(6 + 5/12, "feet")
  30837. },
  30838. {
  30839. name: "Normal",
  30840. height: math.unit(9, "feet"),
  30841. default: true
  30842. },
  30843. {
  30844. name: "Macro",
  30845. height: math.unit(150, "feet")
  30846. },
  30847. ]
  30848. ))
  30849. characterMakers.push(() => makeCharacter(
  30850. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30851. {
  30852. front: {
  30853. height: math.unit(5 + 2/12, "feet"),
  30854. weight: math.unit(120, "lb"),
  30855. name: "Front",
  30856. image: {
  30857. source: "./media/characters/timber/front.svg",
  30858. extra: 2814/2705,
  30859. bottom: 181/2995
  30860. }
  30861. },
  30862. },
  30863. [
  30864. {
  30865. name: "Normal",
  30866. height: math.unit(5 + 2/12, "feet"),
  30867. default: true
  30868. },
  30869. ]
  30870. ))
  30871. characterMakers.push(() => makeCharacter(
  30872. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30873. {
  30874. front: {
  30875. height: math.unit(5 + 7/12, "feet"),
  30876. weight: math.unit(220, "lb"),
  30877. name: "Front",
  30878. image: {
  30879. source: "./media/characters/nicki/front.svg",
  30880. extra: 453/419,
  30881. bottom: 7/460
  30882. }
  30883. },
  30884. frontAlt: {
  30885. height: math.unit(5 + 7/12, "feet"),
  30886. weight: math.unit(220, "lb"),
  30887. name: "Front-alt",
  30888. image: {
  30889. source: "./media/characters/nicki/front-alt.svg",
  30890. extra: 435/411,
  30891. bottom: 12/447
  30892. }
  30893. },
  30894. back: {
  30895. height: math.unit(5 + 7/12, "feet"),
  30896. weight: math.unit(220, "lb"),
  30897. name: "Back",
  30898. image: {
  30899. source: "./media/characters/nicki/back.svg",
  30900. extra: 440/413,
  30901. bottom: 19/459
  30902. }
  30903. },
  30904. taur: {
  30905. height: math.unit(7 + 6/12, "feet"),
  30906. weight: math.unit(700, "lb"),
  30907. name: "Taur",
  30908. image: {
  30909. source: "./media/characters/nicki/taur.svg",
  30910. extra: 975/773,
  30911. bottom: 0/975
  30912. }
  30913. },
  30914. frontNsfw: {
  30915. height: math.unit(5 + 7/12, "feet"),
  30916. weight: math.unit(220, "lb"),
  30917. name: "Front (NSFW)",
  30918. image: {
  30919. source: "./media/characters/nicki/front-nsfw.svg",
  30920. extra: 453/419,
  30921. bottom: 7/460
  30922. }
  30923. },
  30924. frontNsfwAlt: {
  30925. height: math.unit(5 + 7/12, "feet"),
  30926. weight: math.unit(220, "lb"),
  30927. name: "Front (Alt, NSFW)",
  30928. image: {
  30929. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30930. extra: 435/411,
  30931. bottom: 12/447
  30932. }
  30933. },
  30934. backNsfw: {
  30935. height: math.unit(5 + 7/12, "feet"),
  30936. weight: math.unit(220, "lb"),
  30937. name: "Back (NSFW)",
  30938. image: {
  30939. source: "./media/characters/nicki/back-nsfw.svg",
  30940. extra: 440/413,
  30941. bottom: 19/459
  30942. }
  30943. },
  30944. head: {
  30945. height: math.unit(2.1, "feet"),
  30946. name: "Head",
  30947. image: {
  30948. source: "./media/characters/nicki/head.svg"
  30949. }
  30950. },
  30951. paw: {
  30952. height: math.unit(1.88, "feet"),
  30953. name: "Paw",
  30954. image: {
  30955. source: "./media/characters/nicki/paw.svg"
  30956. }
  30957. },
  30958. },
  30959. [
  30960. {
  30961. name: "Normal",
  30962. height: math.unit(5 + 7/12, "feet"),
  30963. default: true
  30964. },
  30965. ]
  30966. ))
  30967. characterMakers.push(() => makeCharacter(
  30968. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30969. {
  30970. front: {
  30971. height: math.unit(7 + 10/12, "feet"),
  30972. weight: math.unit(3.5, "tons"),
  30973. name: "Front",
  30974. image: {
  30975. source: "./media/characters/lee/front.svg",
  30976. extra: 1773/1615,
  30977. bottom: 86/1859
  30978. }
  30979. },
  30980. hand: {
  30981. height: math.unit(1.78, "feet"),
  30982. name: "Hand",
  30983. image: {
  30984. source: "./media/characters/lee/hand.svg"
  30985. }
  30986. },
  30987. maw: {
  30988. height: math.unit(1.18, "feet"),
  30989. name: "Maw",
  30990. image: {
  30991. source: "./media/characters/lee/maw.svg"
  30992. }
  30993. },
  30994. },
  30995. [
  30996. {
  30997. name: "Normal",
  30998. height: math.unit(7 + 10/12, "feet"),
  30999. default: true
  31000. },
  31001. ]
  31002. ))
  31003. characterMakers.push(() => makeCharacter(
  31004. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31005. {
  31006. front: {
  31007. height: math.unit(9, "feet"),
  31008. name: "Front",
  31009. image: {
  31010. source: "./media/characters/guti/front.svg",
  31011. extra: 4551/4355,
  31012. bottom: 123/4674
  31013. }
  31014. },
  31015. tongue: {
  31016. height: math.unit(1, "feet"),
  31017. name: "Tongue",
  31018. image: {
  31019. source: "./media/characters/guti/tongue.svg"
  31020. }
  31021. },
  31022. paw: {
  31023. height: math.unit(1.18, "feet"),
  31024. name: "Paw",
  31025. image: {
  31026. source: "./media/characters/guti/paw.svg"
  31027. }
  31028. },
  31029. },
  31030. [
  31031. {
  31032. name: "Normal",
  31033. height: math.unit(9, "feet"),
  31034. default: true
  31035. },
  31036. ]
  31037. ))
  31038. characterMakers.push(() => makeCharacter(
  31039. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31040. {
  31041. side: {
  31042. height: math.unit(5, "meters"),
  31043. name: "Side",
  31044. image: {
  31045. source: "./media/characters/vesper/side.svg",
  31046. extra: 1605/1518,
  31047. bottom: 0/1605
  31048. }
  31049. },
  31050. },
  31051. [
  31052. {
  31053. name: "Small",
  31054. height: math.unit(5, "meters")
  31055. },
  31056. {
  31057. name: "Sage",
  31058. height: math.unit(100, "meters"),
  31059. default: true
  31060. },
  31061. {
  31062. name: "Fun Size",
  31063. height: math.unit(600, "meters")
  31064. },
  31065. {
  31066. name: "Goddess",
  31067. height: math.unit(20000, "km")
  31068. },
  31069. {
  31070. name: "Maximum",
  31071. height: math.unit(5, "galaxies")
  31072. },
  31073. ]
  31074. ))
  31075. characterMakers.push(() => makeCharacter(
  31076. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31077. {
  31078. front: {
  31079. height: math.unit(6 + 3/12, "feet"),
  31080. weight: math.unit(190, "lb"),
  31081. name: "Front",
  31082. image: {
  31083. source: "./media/characters/gawain/front.svg",
  31084. extra: 2222/2139,
  31085. bottom: 90/2312
  31086. }
  31087. },
  31088. back: {
  31089. height: math.unit(6 + 3/12, "feet"),
  31090. weight: math.unit(190, "lb"),
  31091. name: "Back",
  31092. image: {
  31093. source: "./media/characters/gawain/back.svg",
  31094. extra: 2199/2111,
  31095. bottom: 73/2272
  31096. }
  31097. },
  31098. },
  31099. [
  31100. {
  31101. name: "Normal",
  31102. height: math.unit(6 + 3/12, "feet"),
  31103. default: true
  31104. },
  31105. ]
  31106. ))
  31107. characterMakers.push(() => makeCharacter(
  31108. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31109. {
  31110. side: {
  31111. height: math.unit(3.5, "meters"),
  31112. weight: math.unit(16000, "lb"),
  31113. name: "Side",
  31114. image: {
  31115. source: "./media/characters/dascalti/side.svg",
  31116. extra: 392/273,
  31117. bottom: 47/439
  31118. }
  31119. },
  31120. breath: {
  31121. height: math.unit(7.4, "feet"),
  31122. name: "Breath",
  31123. image: {
  31124. source: "./media/characters/dascalti/breath.svg"
  31125. }
  31126. },
  31127. fed: {
  31128. height: math.unit(3.6, "meters"),
  31129. weight: math.unit(16000, "lb"),
  31130. name: "Fed",
  31131. image: {
  31132. source: "./media/characters/dascalti/fed.svg",
  31133. extra: 1419/820,
  31134. bottom: 95/1514
  31135. }
  31136. },
  31137. },
  31138. [
  31139. {
  31140. name: "Normal",
  31141. height: math.unit(3.5, "meters"),
  31142. default: true
  31143. },
  31144. ]
  31145. ))
  31146. characterMakers.push(() => makeCharacter(
  31147. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31148. {
  31149. front: {
  31150. height: math.unit(3 + 5/12, "feet"),
  31151. name: "Front",
  31152. image: {
  31153. source: "./media/characters/mauve/front.svg",
  31154. extra: 1126/1033,
  31155. bottom: 65/1191
  31156. }
  31157. },
  31158. side: {
  31159. height: math.unit(3 + 5/12, "feet"),
  31160. name: "Side",
  31161. image: {
  31162. source: "./media/characters/mauve/side.svg",
  31163. extra: 1089/1001,
  31164. bottom: 29/1118
  31165. }
  31166. },
  31167. back: {
  31168. height: math.unit(3 + 5/12, "feet"),
  31169. name: "Back",
  31170. image: {
  31171. source: "./media/characters/mauve/back.svg",
  31172. extra: 1173/1053,
  31173. bottom: 109/1282
  31174. }
  31175. },
  31176. },
  31177. [
  31178. {
  31179. name: "Normal",
  31180. height: math.unit(3 + 5/12, "feet"),
  31181. default: true
  31182. },
  31183. ]
  31184. ))
  31185. characterMakers.push(() => makeCharacter(
  31186. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31187. {
  31188. front: {
  31189. height: math.unit(6 + 3/12, "feet"),
  31190. weight: math.unit(430, "lb"),
  31191. name: "Front",
  31192. image: {
  31193. source: "./media/characters/carlos/front.svg",
  31194. extra: 1964/1913,
  31195. bottom: 70/2034
  31196. }
  31197. },
  31198. },
  31199. [
  31200. {
  31201. name: "Normal",
  31202. height: math.unit(6 + 3/12, "feet"),
  31203. default: true
  31204. },
  31205. ]
  31206. ))
  31207. characterMakers.push(() => makeCharacter(
  31208. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31209. {
  31210. back: {
  31211. height: math.unit(5 + 10/12, "feet"),
  31212. weight: math.unit(200, "lb"),
  31213. name: "Back",
  31214. image: {
  31215. source: "./media/characters/jax/back.svg",
  31216. extra: 764/739,
  31217. bottom: 25/789
  31218. }
  31219. },
  31220. },
  31221. [
  31222. {
  31223. name: "Normal",
  31224. height: math.unit(5 + 10/12, "feet"),
  31225. default: true
  31226. },
  31227. ]
  31228. ))
  31229. characterMakers.push(() => makeCharacter(
  31230. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31231. {
  31232. front: {
  31233. height: math.unit(8, "feet"),
  31234. weight: math.unit(250, "lb"),
  31235. name: "Front",
  31236. image: {
  31237. source: "./media/characters/eikthynir/front.svg",
  31238. extra: 1332/1166,
  31239. bottom: 82/1414
  31240. }
  31241. },
  31242. back: {
  31243. height: math.unit(8, "feet"),
  31244. weight: math.unit(250, "lb"),
  31245. name: "Back",
  31246. image: {
  31247. source: "./media/characters/eikthynir/back.svg",
  31248. extra: 1342/1190,
  31249. bottom: 19/1361
  31250. }
  31251. },
  31252. dick: {
  31253. height: math.unit(2.35, "feet"),
  31254. name: "Dick",
  31255. image: {
  31256. source: "./media/characters/eikthynir/dick.svg"
  31257. }
  31258. },
  31259. },
  31260. [
  31261. {
  31262. name: "Normal",
  31263. height: math.unit(8, "feet"),
  31264. default: true
  31265. },
  31266. ]
  31267. ))
  31268. characterMakers.push(() => makeCharacter(
  31269. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31270. {
  31271. front: {
  31272. height: math.unit(99, "meters"),
  31273. weight: math.unit(13000, "tons"),
  31274. name: "Front",
  31275. image: {
  31276. source: "./media/characters/zlmos/front.svg",
  31277. extra: 2202/1992,
  31278. bottom: 315/2517
  31279. }
  31280. },
  31281. },
  31282. [
  31283. {
  31284. name: "Macro",
  31285. height: math.unit(99, "meters"),
  31286. default: true
  31287. },
  31288. ]
  31289. ))
  31290. characterMakers.push(() => makeCharacter(
  31291. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31292. {
  31293. front: {
  31294. height: math.unit(6 + 5/12, "feet"),
  31295. name: "Front",
  31296. image: {
  31297. source: "./media/characters/purri/front.svg",
  31298. extra: 1698/1610,
  31299. bottom: 32/1730
  31300. }
  31301. },
  31302. frontAlt: {
  31303. height: math.unit(6 + 5/12, "feet"),
  31304. name: "Front (Alt)",
  31305. image: {
  31306. source: "./media/characters/purri/front-alt.svg",
  31307. extra: 450/420,
  31308. bottom: 26/476
  31309. }
  31310. },
  31311. boots: {
  31312. height: math.unit(5.5, "feet"),
  31313. name: "Boots",
  31314. image: {
  31315. source: "./media/characters/purri/boots.svg",
  31316. extra: 905/853,
  31317. bottom: 18/923
  31318. }
  31319. },
  31320. lying: {
  31321. height: math.unit(2, "feet"),
  31322. name: "Lying",
  31323. image: {
  31324. source: "./media/characters/purri/lying.svg",
  31325. extra: 940/843,
  31326. bottom: 146/1086
  31327. }
  31328. },
  31329. devious: {
  31330. height: math.unit(1.77, "feet"),
  31331. name: "Devious",
  31332. image: {
  31333. source: "./media/characters/purri/devious.svg",
  31334. extra: 1440/1155,
  31335. bottom: 147/1587
  31336. }
  31337. },
  31338. bean: {
  31339. height: math.unit(1.94, "feet"),
  31340. name: "Bean",
  31341. image: {
  31342. source: "./media/characters/purri/bean.svg"
  31343. }
  31344. },
  31345. },
  31346. [
  31347. {
  31348. name: "Micro",
  31349. height: math.unit(1, "mm")
  31350. },
  31351. {
  31352. name: "Normal",
  31353. height: math.unit(6 + 5/12, "feet"),
  31354. default: true
  31355. },
  31356. {
  31357. name: "Macro :3c",
  31358. height: math.unit(2, "miles")
  31359. },
  31360. ]
  31361. ))
  31362. characterMakers.push(() => makeCharacter(
  31363. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31364. {
  31365. front: {
  31366. height: math.unit(6 + 2/12, "feet"),
  31367. weight: math.unit(250, "lb"),
  31368. name: "Front",
  31369. image: {
  31370. source: "./media/characters/moonlight/front.svg",
  31371. extra: 1044/908,
  31372. bottom: 56/1100
  31373. }
  31374. },
  31375. feral: {
  31376. height: math.unit(3 + 1/12, "feet"),
  31377. weight: math.unit(50, "kg"),
  31378. name: "Feral",
  31379. image: {
  31380. source: "./media/characters/moonlight/feral.svg",
  31381. extra: 3705/2791,
  31382. bottom: 145/3850
  31383. }
  31384. },
  31385. paw: {
  31386. height: math.unit(1, "feet"),
  31387. name: "Paw",
  31388. image: {
  31389. source: "./media/characters/moonlight/paw.svg"
  31390. }
  31391. },
  31392. paws: {
  31393. height: math.unit(0.98, "feet"),
  31394. name: "Paws",
  31395. image: {
  31396. source: "./media/characters/moonlight/paws.svg",
  31397. extra: 939/939,
  31398. bottom: 50/989
  31399. }
  31400. },
  31401. mouth: {
  31402. height: math.unit(0.48, "feet"),
  31403. name: "Mouth",
  31404. image: {
  31405. source: "./media/characters/moonlight/mouth.svg"
  31406. }
  31407. },
  31408. dick: {
  31409. height: math.unit(1.46, "feet"),
  31410. name: "Dick",
  31411. image: {
  31412. source: "./media/characters/moonlight/dick.svg"
  31413. }
  31414. },
  31415. },
  31416. [
  31417. {
  31418. name: "Normal",
  31419. height: math.unit(6 + 2/12, "feet"),
  31420. default: true
  31421. },
  31422. {
  31423. name: "Macro",
  31424. height: math.unit(300, "feet")
  31425. },
  31426. {
  31427. name: "Macro+",
  31428. height: math.unit(1, "mile")
  31429. },
  31430. {
  31431. name: "Mt. Moon",
  31432. height: math.unit(5, "miles")
  31433. },
  31434. {
  31435. name: "Megamacro",
  31436. height: math.unit(15, "miles")
  31437. },
  31438. ]
  31439. ))
  31440. characterMakers.push(() => makeCharacter(
  31441. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31442. {
  31443. back: {
  31444. height: math.unit(6, "feet"),
  31445. weight: math.unit(150, "lb"),
  31446. name: "Back",
  31447. image: {
  31448. source: "./media/characters/sylen/back.svg",
  31449. extra: 1335/1273,
  31450. bottom: 107/1442
  31451. }
  31452. },
  31453. },
  31454. [
  31455. {
  31456. name: "Normal",
  31457. height: math.unit(5 + 5/12, "feet")
  31458. },
  31459. {
  31460. name: "Megamacro",
  31461. height: math.unit(3, "miles"),
  31462. default: true
  31463. },
  31464. ]
  31465. ))
  31466. characterMakers.push(() => makeCharacter(
  31467. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31468. {
  31469. front: {
  31470. height: math.unit(6, "feet"),
  31471. weight: math.unit(190, "lb"),
  31472. name: "Front",
  31473. image: {
  31474. source: "./media/characters/huttser/front.svg",
  31475. extra: 1152/1058,
  31476. bottom: 23/1175
  31477. }
  31478. },
  31479. side: {
  31480. height: math.unit(6, "feet"),
  31481. weight: math.unit(190, "lb"),
  31482. name: "Side",
  31483. image: {
  31484. source: "./media/characters/huttser/side.svg",
  31485. extra: 1174/1065,
  31486. bottom: 18/1192
  31487. }
  31488. },
  31489. back: {
  31490. height: math.unit(6, "feet"),
  31491. weight: math.unit(190, "lb"),
  31492. name: "Back",
  31493. image: {
  31494. source: "./media/characters/huttser/back.svg",
  31495. extra: 1158/1056,
  31496. bottom: 12/1170
  31497. }
  31498. },
  31499. },
  31500. [
  31501. ]
  31502. ))
  31503. characterMakers.push(() => makeCharacter(
  31504. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31505. {
  31506. side: {
  31507. height: math.unit(12 + 9/12, "feet"),
  31508. weight: math.unit(15000, "lb"),
  31509. name: "Side",
  31510. image: {
  31511. source: "./media/characters/faan/side.svg",
  31512. extra: 2747/2697,
  31513. bottom: 0/2747
  31514. }
  31515. },
  31516. front: {
  31517. height: math.unit(12 + 9/12, "feet"),
  31518. weight: math.unit(15000, "lb"),
  31519. name: "Front",
  31520. image: {
  31521. source: "./media/characters/faan/front.svg",
  31522. extra: 607/571,
  31523. bottom: 24/631
  31524. }
  31525. },
  31526. head: {
  31527. height: math.unit(2.85, "feet"),
  31528. name: "Head",
  31529. image: {
  31530. source: "./media/characters/faan/head.svg"
  31531. }
  31532. },
  31533. headAlt: {
  31534. height: math.unit(3.13, "feet"),
  31535. name: "Head-alt",
  31536. image: {
  31537. source: "./media/characters/faan/head-alt.svg"
  31538. }
  31539. },
  31540. },
  31541. [
  31542. {
  31543. name: "Normal",
  31544. height: math.unit(12 + 9/12, "feet"),
  31545. default: true
  31546. },
  31547. ]
  31548. ))
  31549. characterMakers.push(() => makeCharacter(
  31550. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31551. {
  31552. front: {
  31553. height: math.unit(6, "feet"),
  31554. weight: math.unit(300, "lb"),
  31555. name: "Front",
  31556. image: {
  31557. source: "./media/characters/tanio/front.svg",
  31558. extra: 711/673,
  31559. bottom: 25/736
  31560. }
  31561. },
  31562. },
  31563. [
  31564. {
  31565. name: "Normal",
  31566. height: math.unit(6, "feet"),
  31567. default: true
  31568. },
  31569. ]
  31570. ))
  31571. characterMakers.push(() => makeCharacter(
  31572. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31573. {
  31574. front: {
  31575. height: math.unit(3, "inches"),
  31576. name: "Front",
  31577. image: {
  31578. source: "./media/characters/noboru/front.svg",
  31579. extra: 1039/932,
  31580. bottom: 18/1057
  31581. }
  31582. },
  31583. },
  31584. [
  31585. {
  31586. name: "Micro",
  31587. height: math.unit(3, "inches"),
  31588. default: true
  31589. },
  31590. ]
  31591. ))
  31592. characterMakers.push(() => makeCharacter(
  31593. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31594. {
  31595. front: {
  31596. height: math.unit(1.85, "meters"),
  31597. weight: math.unit(80, "kg"),
  31598. name: "Front",
  31599. image: {
  31600. source: "./media/characters/daniel-barrett/front.svg",
  31601. extra: 355/337,
  31602. bottom: 9/364
  31603. }
  31604. },
  31605. },
  31606. [
  31607. {
  31608. name: "Pico",
  31609. height: math.unit(0.0433, "mm")
  31610. },
  31611. {
  31612. name: "Nano",
  31613. height: math.unit(1.5, "mm")
  31614. },
  31615. {
  31616. name: "Micro",
  31617. height: math.unit(5.3, "cm"),
  31618. default: true
  31619. },
  31620. {
  31621. name: "Normal",
  31622. height: math.unit(1.85, "meters")
  31623. },
  31624. {
  31625. name: "Macro",
  31626. height: math.unit(64.7, "meters")
  31627. },
  31628. {
  31629. name: "Megamacro",
  31630. height: math.unit(2.26, "km")
  31631. },
  31632. {
  31633. name: "Gigamacro",
  31634. height: math.unit(79, "km")
  31635. },
  31636. {
  31637. name: "Teramacro",
  31638. height: math.unit(2765, "km")
  31639. },
  31640. {
  31641. name: "Petamacro",
  31642. height: math.unit(96678, "km")
  31643. },
  31644. ]
  31645. ))
  31646. characterMakers.push(() => makeCharacter(
  31647. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31648. {
  31649. front: {
  31650. height: math.unit(30, "meters"),
  31651. weight: math.unit(400, "tons"),
  31652. name: "Front",
  31653. image: {
  31654. source: "./media/characters/zeel/front.svg",
  31655. extra: 2599/2599,
  31656. bottom: 226/2825
  31657. }
  31658. },
  31659. },
  31660. [
  31661. {
  31662. name: "Macro",
  31663. height: math.unit(30, "meters"),
  31664. default: true
  31665. },
  31666. ]
  31667. ))
  31668. characterMakers.push(() => makeCharacter(
  31669. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31670. {
  31671. front: {
  31672. height: math.unit(6 + 7/12, "feet"),
  31673. weight: math.unit(210, "lb"),
  31674. name: "Front",
  31675. image: {
  31676. source: "./media/characters/tarn/front.svg",
  31677. extra: 3517/3220,
  31678. bottom: 91/3608
  31679. }
  31680. },
  31681. back: {
  31682. height: math.unit(6 + 7/12, "feet"),
  31683. weight: math.unit(210, "lb"),
  31684. name: "Back",
  31685. image: {
  31686. source: "./media/characters/tarn/back.svg",
  31687. extra: 3566/3241,
  31688. bottom: 34/3600
  31689. }
  31690. },
  31691. dick: {
  31692. height: math.unit(1.65, "feet"),
  31693. name: "Dick",
  31694. image: {
  31695. source: "./media/characters/tarn/dick.svg"
  31696. }
  31697. },
  31698. paw: {
  31699. height: math.unit(1.80, "feet"),
  31700. name: "Paw",
  31701. image: {
  31702. source: "./media/characters/tarn/paw.svg"
  31703. }
  31704. },
  31705. tongue: {
  31706. height: math.unit(0.97, "feet"),
  31707. name: "Tongue",
  31708. image: {
  31709. source: "./media/characters/tarn/tongue.svg"
  31710. }
  31711. },
  31712. },
  31713. [
  31714. {
  31715. name: "Micro",
  31716. height: math.unit(4, "inches")
  31717. },
  31718. {
  31719. name: "Normal",
  31720. height: math.unit(6 + 7/12, "feet"),
  31721. default: true
  31722. },
  31723. {
  31724. name: "Macro",
  31725. height: math.unit(300, "feet")
  31726. },
  31727. ]
  31728. ))
  31729. characterMakers.push(() => makeCharacter(
  31730. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31731. {
  31732. front: {
  31733. height: math.unit(5 + 7/12, "feet"),
  31734. weight: math.unit(80, "kg"),
  31735. name: "Front",
  31736. image: {
  31737. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31738. extra: 3023/2865,
  31739. bottom: 33/3056
  31740. }
  31741. },
  31742. back: {
  31743. height: math.unit(5 + 7/12, "feet"),
  31744. weight: math.unit(80, "kg"),
  31745. name: "Back",
  31746. image: {
  31747. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31748. extra: 3020/2886,
  31749. bottom: 30/3050
  31750. }
  31751. },
  31752. dick: {
  31753. height: math.unit(0.98, "feet"),
  31754. name: "Dick",
  31755. image: {
  31756. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31757. }
  31758. },
  31759. anatomy: {
  31760. height: math.unit(2.86, "feet"),
  31761. name: "Anatomy",
  31762. image: {
  31763. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31764. }
  31765. },
  31766. },
  31767. [
  31768. {
  31769. name: "Really Small",
  31770. height: math.unit(2, "inches")
  31771. },
  31772. {
  31773. name: "Micro",
  31774. height: math.unit(5.583, "inches")
  31775. },
  31776. {
  31777. name: "Normal",
  31778. height: math.unit(5 + 7/12, "feet"),
  31779. default: true
  31780. },
  31781. {
  31782. name: "Macro",
  31783. height: math.unit(67, "feet")
  31784. },
  31785. {
  31786. name: "Megamacro",
  31787. height: math.unit(134, "feet")
  31788. },
  31789. ]
  31790. ))
  31791. characterMakers.push(() => makeCharacter(
  31792. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31793. {
  31794. front: {
  31795. height: math.unit(9, "feet"),
  31796. weight: math.unit(120, "lb"),
  31797. name: "Front",
  31798. image: {
  31799. source: "./media/characters/sally/front.svg",
  31800. extra: 1506/1349,
  31801. bottom: 66/1572
  31802. }
  31803. },
  31804. },
  31805. [
  31806. {
  31807. name: "Normal",
  31808. height: math.unit(9, "feet"),
  31809. default: true
  31810. },
  31811. ]
  31812. ))
  31813. characterMakers.push(() => makeCharacter(
  31814. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31815. {
  31816. front: {
  31817. height: math.unit(8, "feet"),
  31818. weight: math.unit(900, "lb"),
  31819. name: "Front",
  31820. image: {
  31821. source: "./media/characters/owen/front.svg",
  31822. extra: 1761/1657,
  31823. bottom: 74/1835
  31824. }
  31825. },
  31826. side: {
  31827. height: math.unit(8, "feet"),
  31828. weight: math.unit(900, "lb"),
  31829. name: "Side",
  31830. image: {
  31831. source: "./media/characters/owen/side.svg",
  31832. extra: 1797/1734,
  31833. bottom: 30/1827
  31834. }
  31835. },
  31836. back: {
  31837. height: math.unit(8, "feet"),
  31838. weight: math.unit(900, "lb"),
  31839. name: "Back",
  31840. image: {
  31841. source: "./media/characters/owen/back.svg",
  31842. extra: 1796/1706,
  31843. bottom: 59/1855
  31844. }
  31845. },
  31846. maw: {
  31847. height: math.unit(1.76, "feet"),
  31848. name: "Maw",
  31849. image: {
  31850. source: "./media/characters/owen/maw.svg"
  31851. }
  31852. },
  31853. },
  31854. [
  31855. {
  31856. name: "Normal",
  31857. height: math.unit(8, "feet"),
  31858. default: true
  31859. },
  31860. ]
  31861. ))
  31862. characterMakers.push(() => makeCharacter(
  31863. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31864. {
  31865. front: {
  31866. height: math.unit(4, "feet"),
  31867. weight: math.unit(400, "lb"),
  31868. name: "Front",
  31869. image: {
  31870. source: "./media/characters/ryth/front.svg",
  31871. extra: 1920/1748,
  31872. bottom: 42/1962
  31873. }
  31874. },
  31875. back: {
  31876. height: math.unit(4, "feet"),
  31877. weight: math.unit(400, "lb"),
  31878. name: "Back",
  31879. image: {
  31880. source: "./media/characters/ryth/back.svg",
  31881. extra: 1897/1690,
  31882. bottom: 89/1986
  31883. }
  31884. },
  31885. mouth: {
  31886. height: math.unit(1.39, "feet"),
  31887. name: "Mouth",
  31888. image: {
  31889. source: "./media/characters/ryth/mouth.svg"
  31890. }
  31891. },
  31892. tailmaw: {
  31893. height: math.unit(1.23, "feet"),
  31894. name: "Tailmaw",
  31895. image: {
  31896. source: "./media/characters/ryth/tailmaw.svg"
  31897. }
  31898. },
  31899. goia: {
  31900. height: math.unit(12, "feet"),
  31901. weight: math.unit(10800, "lb"),
  31902. name: "Goia",
  31903. image: {
  31904. source: "./media/characters/ryth/goia.svg",
  31905. extra: 3450/3198,
  31906. bottom: 61/3511
  31907. }
  31908. },
  31909. },
  31910. [
  31911. {
  31912. name: "Normal",
  31913. height: math.unit(4, "feet"),
  31914. default: true
  31915. },
  31916. ]
  31917. ))
  31918. characterMakers.push(() => makeCharacter(
  31919. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31920. {
  31921. front: {
  31922. height: math.unit(7, "feet"),
  31923. weight: math.unit(180, "lb"),
  31924. name: "Front",
  31925. image: {
  31926. source: "./media/characters/necrolance/front.svg",
  31927. extra: 1062/947,
  31928. bottom: 41/1103
  31929. }
  31930. },
  31931. back: {
  31932. height: math.unit(7, "feet"),
  31933. weight: math.unit(180, "lb"),
  31934. name: "Back",
  31935. image: {
  31936. source: "./media/characters/necrolance/back.svg",
  31937. extra: 1045/984,
  31938. bottom: 14/1059
  31939. }
  31940. },
  31941. wing: {
  31942. height: math.unit(2.67, "feet"),
  31943. name: "Wing",
  31944. image: {
  31945. source: "./media/characters/necrolance/wing.svg"
  31946. }
  31947. },
  31948. },
  31949. [
  31950. {
  31951. name: "Normal",
  31952. height: math.unit(7, "feet"),
  31953. default: true
  31954. },
  31955. ]
  31956. ))
  31957. characterMakers.push(() => makeCharacter(
  31958. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31959. {
  31960. front: {
  31961. height: math.unit(76, "meters"),
  31962. weight: math.unit(30000, "tons"),
  31963. name: "Front",
  31964. image: {
  31965. source: "./media/characters/tyler/front.svg",
  31966. extra: 1640/1640,
  31967. bottom: 114/1754
  31968. }
  31969. },
  31970. },
  31971. [
  31972. {
  31973. name: "Macro",
  31974. height: math.unit(76, "meters"),
  31975. default: true
  31976. },
  31977. ]
  31978. ))
  31979. characterMakers.push(() => makeCharacter(
  31980. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31981. {
  31982. front: {
  31983. height: math.unit(4 + 11/12, "feet"),
  31984. weight: math.unit(132, "lb"),
  31985. name: "Front",
  31986. image: {
  31987. source: "./media/characters/icey/front.svg",
  31988. extra: 2750/2550,
  31989. bottom: 33/2783
  31990. }
  31991. },
  31992. back: {
  31993. height: math.unit(4 + 11/12, "feet"),
  31994. weight: math.unit(132, "lb"),
  31995. name: "Back",
  31996. image: {
  31997. source: "./media/characters/icey/back.svg",
  31998. extra: 2624/2481,
  31999. bottom: 35/2659
  32000. }
  32001. },
  32002. },
  32003. [
  32004. {
  32005. name: "Normal",
  32006. height: math.unit(4 + 11/12, "feet"),
  32007. default: true
  32008. },
  32009. ]
  32010. ))
  32011. characterMakers.push(() => makeCharacter(
  32012. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32013. {
  32014. front: {
  32015. height: math.unit(100, "feet"),
  32016. weight: math.unit(0, "lb"),
  32017. name: "Front",
  32018. image: {
  32019. source: "./media/characters/smile/front.svg",
  32020. extra: 2983/2912,
  32021. bottom: 162/3145
  32022. }
  32023. },
  32024. back: {
  32025. height: math.unit(100, "feet"),
  32026. weight: math.unit(0, "lb"),
  32027. name: "Back",
  32028. image: {
  32029. source: "./media/characters/smile/back.svg",
  32030. extra: 3143/3031,
  32031. bottom: 91/3234
  32032. }
  32033. },
  32034. head: {
  32035. height: math.unit(26.3, "feet"),
  32036. weight: math.unit(0, "lb"),
  32037. name: "Head",
  32038. image: {
  32039. source: "./media/characters/smile/head.svg"
  32040. }
  32041. },
  32042. collar: {
  32043. height: math.unit(5.3, "feet"),
  32044. weight: math.unit(0, "lb"),
  32045. name: "Collar",
  32046. image: {
  32047. source: "./media/characters/smile/collar.svg"
  32048. }
  32049. },
  32050. },
  32051. [
  32052. {
  32053. name: "Macro",
  32054. height: math.unit(100, "feet"),
  32055. default: true
  32056. },
  32057. ]
  32058. ))
  32059. characterMakers.push(() => makeCharacter(
  32060. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32061. {
  32062. dragon: {
  32063. height: math.unit(26, "feet"),
  32064. weight: math.unit(36, "tons"),
  32065. name: "Dragon",
  32066. image: {
  32067. source: "./media/characters/arimphae/dragon.svg",
  32068. extra: 1574/983,
  32069. bottom: 357/1931
  32070. }
  32071. },
  32072. drake: {
  32073. height: math.unit(9, "feet"),
  32074. weight: math.unit(1.5, "tons"),
  32075. name: "Drake",
  32076. image: {
  32077. source: "./media/characters/arimphae/drake.svg",
  32078. extra: 1120/925,
  32079. bottom: 435/1555
  32080. }
  32081. },
  32082. },
  32083. [
  32084. {
  32085. name: "Small",
  32086. height: math.unit(26*5/9, "feet")
  32087. },
  32088. {
  32089. name: "Normal",
  32090. height: math.unit(26, "feet"),
  32091. default: true
  32092. },
  32093. ]
  32094. ))
  32095. characterMakers.push(() => makeCharacter(
  32096. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32097. {
  32098. front: {
  32099. height: math.unit(8 + 9/12, "feet"),
  32100. name: "Front",
  32101. image: {
  32102. source: "./media/characters/xander/front.svg",
  32103. extra: 848/673,
  32104. bottom: 62/910
  32105. }
  32106. },
  32107. },
  32108. [
  32109. {
  32110. name: "Normal",
  32111. height: math.unit(8 + 9/12, "feet"),
  32112. default: true
  32113. },
  32114. {
  32115. name: "Gaze Grabber",
  32116. height: math.unit(13 + 8/12, "feet")
  32117. },
  32118. {
  32119. name: "Jaw Dropper",
  32120. height: math.unit(27, "feet")
  32121. },
  32122. {
  32123. name: "Show Stopper",
  32124. height: math.unit(136, "feet")
  32125. },
  32126. {
  32127. name: "Superstar",
  32128. height: math.unit(1.9e6, "miles")
  32129. },
  32130. ]
  32131. ))
  32132. characterMakers.push(() => makeCharacter(
  32133. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32134. {
  32135. side: {
  32136. height: math.unit(2100, "feet"),
  32137. name: "Side",
  32138. image: {
  32139. source: "./media/characters/osiris/side.svg",
  32140. extra: 1105/939,
  32141. bottom: 167/1272
  32142. }
  32143. },
  32144. },
  32145. [
  32146. {
  32147. name: "Macro",
  32148. height: math.unit(2100, "feet"),
  32149. default: true
  32150. },
  32151. ]
  32152. ))
  32153. characterMakers.push(() => makeCharacter(
  32154. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32155. {
  32156. front: {
  32157. height: math.unit(6 + 8/12, "feet"),
  32158. weight: math.unit(225, "lb"),
  32159. name: "Front",
  32160. image: {
  32161. source: "./media/characters/rhys-londe/front.svg",
  32162. extra: 2258/2141,
  32163. bottom: 188/2446
  32164. }
  32165. },
  32166. back: {
  32167. height: math.unit(6 + 8/12, "feet"),
  32168. weight: math.unit(225, "lb"),
  32169. name: "Back",
  32170. image: {
  32171. source: "./media/characters/rhys-londe/back.svg",
  32172. extra: 2237/2137,
  32173. bottom: 63/2300
  32174. }
  32175. },
  32176. frontNsfw: {
  32177. height: math.unit(6 + 8/12, "feet"),
  32178. weight: math.unit(225, "lb"),
  32179. name: "Front (NSFW)",
  32180. image: {
  32181. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32182. extra: 2258/2141,
  32183. bottom: 188/2446
  32184. }
  32185. },
  32186. backNsfw: {
  32187. height: math.unit(6 + 8/12, "feet"),
  32188. weight: math.unit(225, "lb"),
  32189. name: "Back (NSFW)",
  32190. image: {
  32191. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32192. extra: 2237/2137,
  32193. bottom: 63/2300
  32194. }
  32195. },
  32196. dick: {
  32197. height: math.unit(30, "inches"),
  32198. name: "Dick",
  32199. image: {
  32200. source: "./media/characters/rhys-londe/dick.svg"
  32201. }
  32202. },
  32203. maw: {
  32204. height: math.unit(1.6, "feet"),
  32205. name: "Maw",
  32206. image: {
  32207. source: "./media/characters/rhys-londe/maw.svg"
  32208. }
  32209. },
  32210. },
  32211. [
  32212. {
  32213. name: "Normal",
  32214. height: math.unit(6 + 8/12, "feet"),
  32215. default: true
  32216. },
  32217. ]
  32218. ))
  32219. characterMakers.push(() => makeCharacter(
  32220. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32221. {
  32222. front: {
  32223. height: math.unit(3 + 10/12, "feet"),
  32224. weight: math.unit(90, "lb"),
  32225. name: "Front",
  32226. image: {
  32227. source: "./media/characters/taivas-ensim/front.svg",
  32228. extra: 1327/1216,
  32229. bottom: 96/1423
  32230. }
  32231. },
  32232. back: {
  32233. height: math.unit(3 + 10/12, "feet"),
  32234. weight: math.unit(90, "lb"),
  32235. name: "Back",
  32236. image: {
  32237. source: "./media/characters/taivas-ensim/back.svg",
  32238. extra: 1355/1247,
  32239. bottom: 11/1366
  32240. }
  32241. },
  32242. frontNsfw: {
  32243. height: math.unit(3 + 10/12, "feet"),
  32244. weight: math.unit(90, "lb"),
  32245. name: "Front (NSFW)",
  32246. image: {
  32247. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32248. extra: 1327/1216,
  32249. bottom: 96/1423
  32250. }
  32251. },
  32252. backNsfw: {
  32253. height: math.unit(3 + 10/12, "feet"),
  32254. weight: math.unit(90, "lb"),
  32255. name: "Back (NSFW)",
  32256. image: {
  32257. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32258. extra: 1355/1247,
  32259. bottom: 11/1366
  32260. }
  32261. },
  32262. },
  32263. [
  32264. {
  32265. name: "Normal",
  32266. height: math.unit(3 + 10/12, "feet"),
  32267. default: true
  32268. },
  32269. ]
  32270. ))
  32271. characterMakers.push(() => makeCharacter(
  32272. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32273. {
  32274. front: {
  32275. height: math.unit(9 + 6/12, "feet"),
  32276. weight: math.unit(940, "lb"),
  32277. name: "Front",
  32278. image: {
  32279. source: "./media/characters/byliss/front.svg",
  32280. extra: 1327/1290,
  32281. bottom: 82/1409
  32282. }
  32283. },
  32284. back: {
  32285. height: math.unit(9 + 6/12, "feet"),
  32286. weight: math.unit(940, "lb"),
  32287. name: "Back",
  32288. image: {
  32289. source: "./media/characters/byliss/back.svg",
  32290. extra: 1376/1349,
  32291. bottom: 9/1385
  32292. }
  32293. },
  32294. frontNsfw: {
  32295. height: math.unit(9 + 6/12, "feet"),
  32296. weight: math.unit(940, "lb"),
  32297. name: "Front (NSFW)",
  32298. image: {
  32299. source: "./media/characters/byliss/front-nsfw.svg",
  32300. extra: 1327/1290,
  32301. bottom: 82/1409
  32302. }
  32303. },
  32304. backNsfw: {
  32305. height: math.unit(9 + 6/12, "feet"),
  32306. weight: math.unit(940, "lb"),
  32307. name: "Back (NSFW)",
  32308. image: {
  32309. source: "./media/characters/byliss/back-nsfw.svg",
  32310. extra: 1376/1349,
  32311. bottom: 9/1385
  32312. }
  32313. },
  32314. },
  32315. [
  32316. {
  32317. name: "Normal",
  32318. height: math.unit(9 + 6/12, "feet"),
  32319. default: true
  32320. },
  32321. ]
  32322. ))
  32323. characterMakers.push(() => makeCharacter(
  32324. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32325. {
  32326. front: {
  32327. height: math.unit(5 + 2/12, "feet"),
  32328. weight: math.unit(200, "lb"),
  32329. name: "Front",
  32330. image: {
  32331. source: "./media/characters/noraly/front.svg",
  32332. extra: 4985/4773,
  32333. bottom: 150/5135
  32334. }
  32335. },
  32336. full: {
  32337. height: math.unit(5 + 2/12, "feet"),
  32338. weight: math.unit(164, "lb"),
  32339. name: "Full",
  32340. image: {
  32341. source: "./media/characters/noraly/full.svg",
  32342. extra: 1114/1059,
  32343. bottom: 35/1149
  32344. }
  32345. },
  32346. fuller: {
  32347. height: math.unit(5 + 2/12, "feet"),
  32348. weight: math.unit(230, "lb"),
  32349. name: "Fuller",
  32350. image: {
  32351. source: "./media/characters/noraly/fuller.svg",
  32352. extra: 1114/1059,
  32353. bottom: 35/1149
  32354. }
  32355. },
  32356. fullest: {
  32357. height: math.unit(5 + 2/12, "feet"),
  32358. weight: math.unit(300, "lb"),
  32359. name: "Fullest",
  32360. image: {
  32361. source: "./media/characters/noraly/fullest.svg",
  32362. extra: 1114/1059,
  32363. bottom: 35/1149
  32364. }
  32365. },
  32366. },
  32367. [
  32368. {
  32369. name: "Normal",
  32370. height: math.unit(5 + 2/12, "feet"),
  32371. default: true
  32372. },
  32373. ]
  32374. ))
  32375. characterMakers.push(() => makeCharacter(
  32376. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32377. {
  32378. front: {
  32379. height: math.unit(5 + 2/12, "feet"),
  32380. weight: math.unit(210, "lb"),
  32381. name: "Front",
  32382. image: {
  32383. source: "./media/characters/pera/front.svg",
  32384. extra: 1560/1531,
  32385. bottom: 165/1725
  32386. }
  32387. },
  32388. back: {
  32389. height: math.unit(5 + 2/12, "feet"),
  32390. weight: math.unit(210, "lb"),
  32391. name: "Back",
  32392. image: {
  32393. source: "./media/characters/pera/back.svg",
  32394. extra: 1523/1493,
  32395. bottom: 152/1675
  32396. }
  32397. },
  32398. dick: {
  32399. height: math.unit(2.4, "feet"),
  32400. name: "Dick",
  32401. image: {
  32402. source: "./media/characters/pera/dick.svg"
  32403. }
  32404. },
  32405. },
  32406. [
  32407. {
  32408. name: "Normal",
  32409. height: math.unit(5 + 2/12, "feet"),
  32410. default: true
  32411. },
  32412. ]
  32413. ))
  32414. characterMakers.push(() => makeCharacter(
  32415. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32416. {
  32417. front: {
  32418. height: math.unit(12, "feet"),
  32419. weight: math.unit(3200, "lb"),
  32420. name: "Front",
  32421. image: {
  32422. source: "./media/characters/julian/front.svg",
  32423. extra: 2962/2701,
  32424. bottom: 184/3146
  32425. }
  32426. },
  32427. maw: {
  32428. height: math.unit(5.35, "feet"),
  32429. name: "Maw",
  32430. image: {
  32431. source: "./media/characters/julian/maw.svg"
  32432. }
  32433. },
  32434. paw: {
  32435. height: math.unit(3.07, "feet"),
  32436. name: "Paw",
  32437. image: {
  32438. source: "./media/characters/julian/paw.svg"
  32439. }
  32440. },
  32441. },
  32442. [
  32443. {
  32444. name: "Default",
  32445. height: math.unit(12, "feet"),
  32446. default: true
  32447. },
  32448. {
  32449. name: "Big",
  32450. height: math.unit(50, "feet")
  32451. },
  32452. {
  32453. name: "Really Big",
  32454. height: math.unit(1, "mile")
  32455. },
  32456. {
  32457. name: "Extremely Big",
  32458. height: math.unit(100, "miles")
  32459. },
  32460. {
  32461. name: "Planet Hugger",
  32462. height: math.unit(200, "megameters")
  32463. },
  32464. {
  32465. name: "Unreasonably Big",
  32466. height: math.unit(1e300, "meters")
  32467. },
  32468. ]
  32469. ))
  32470. characterMakers.push(() => makeCharacter(
  32471. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32472. {
  32473. solgooleo: {
  32474. height: math.unit(4, "meters"),
  32475. weight: math.unit(6000*1.5, "kg"),
  32476. volume: math.unit(6000, "liters"),
  32477. name: "Solgooleo",
  32478. image: {
  32479. source: "./media/characters/pi/solgooleo.svg",
  32480. extra: 388/331,
  32481. bottom: 29/417
  32482. }
  32483. },
  32484. },
  32485. [
  32486. {
  32487. name: "Normal",
  32488. height: math.unit(4, "meters"),
  32489. default: true
  32490. },
  32491. ]
  32492. ))
  32493. characterMakers.push(() => makeCharacter(
  32494. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32495. {
  32496. front: {
  32497. height: math.unit(8 + 2/12, "feet"),
  32498. weight: math.unit(4, "tons"),
  32499. name: "Front",
  32500. image: {
  32501. source: "./media/characters/shaun/front.svg",
  32502. extra: 1550/1505,
  32503. bottom: 353/1903
  32504. }
  32505. },
  32506. },
  32507. [
  32508. {
  32509. name: "Lorg",
  32510. height: math.unit(8 + 2/12, "feet"),
  32511. default: true
  32512. },
  32513. ]
  32514. ))
  32515. characterMakers.push(() => makeCharacter(
  32516. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32517. {
  32518. front: {
  32519. height: math.unit(7, "feet"),
  32520. name: "Front",
  32521. image: {
  32522. source: "./media/characters/sini/front.svg",
  32523. extra: 726/678,
  32524. bottom: 35/761
  32525. }
  32526. },
  32527. back: {
  32528. height: math.unit(7, "feet"),
  32529. name: "Back",
  32530. image: {
  32531. source: "./media/characters/sini/back.svg",
  32532. extra: 743/701,
  32533. bottom: 12/755
  32534. }
  32535. },
  32536. mawAnthro: {
  32537. height: math.unit(2.14, "feet"),
  32538. name: "Maw (Anthro)",
  32539. image: {
  32540. source: "./media/characters/sini/maw-anthro.svg"
  32541. }
  32542. },
  32543. dick: {
  32544. height: math.unit(1.45, "feet"),
  32545. name: "Dick (Anthro)",
  32546. image: {
  32547. source: "./media/characters/sini/dick-anthro.svg"
  32548. }
  32549. },
  32550. feral: {
  32551. height: math.unit(16, "feet"),
  32552. name: "Feral",
  32553. image: {
  32554. source: "./media/characters/sini/feral.svg",
  32555. extra: 814/605,
  32556. bottom: 11/825
  32557. }
  32558. },
  32559. mawFeral: {
  32560. height: math.unit(5.66, "feet"),
  32561. name: "Maw-feral",
  32562. image: {
  32563. source: "./media/characters/sini/maw-feral.svg"
  32564. }
  32565. },
  32566. footFeral: {
  32567. height: math.unit(5.17, "feet"),
  32568. name: "Foot-feral",
  32569. image: {
  32570. source: "./media/characters/sini/foot-feral.svg"
  32571. }
  32572. },
  32573. },
  32574. [
  32575. {
  32576. name: "Normal",
  32577. height: math.unit(7, "feet"),
  32578. default: true
  32579. },
  32580. ]
  32581. ))
  32582. characterMakers.push(() => makeCharacter(
  32583. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32584. {
  32585. side: {
  32586. height: math.unit(13, "meters"),
  32587. weight: math.unit(9072, "kg"),
  32588. name: "Side",
  32589. image: {
  32590. source: "./media/characters/raylldo/side.svg",
  32591. extra: 403/344,
  32592. bottom: 42/445
  32593. }
  32594. },
  32595. leaping: {
  32596. height: math.unit(12.3, "meters"),
  32597. weight: math.unit(9072, "kg"),
  32598. name: "Leaping",
  32599. image: {
  32600. source: "./media/characters/raylldo/leaping.svg",
  32601. extra: 470/249,
  32602. bottom: 13/483
  32603. }
  32604. },
  32605. flying: {
  32606. height: math.unit(18, "meters"),
  32607. weight: math.unit(9072, "kg"),
  32608. name: "Flying",
  32609. image: {
  32610. source: "./media/characters/raylldo/flying.svg"
  32611. }
  32612. },
  32613. head: {
  32614. height: math.unit(5.85, "meters"),
  32615. name: "Head",
  32616. image: {
  32617. source: "./media/characters/raylldo/head.svg"
  32618. }
  32619. },
  32620. maw: {
  32621. height: math.unit(5.32, "meters"),
  32622. name: "Maw",
  32623. image: {
  32624. source: "./media/characters/raylldo/maw.svg"
  32625. }
  32626. },
  32627. eye: {
  32628. height: math.unit(0.54, "meters"),
  32629. name: "Eye",
  32630. image: {
  32631. source: "./media/characters/raylldo/eye.svg"
  32632. }
  32633. },
  32634. },
  32635. [
  32636. {
  32637. name: "Normal",
  32638. height: math.unit(13, "meters"),
  32639. default: true
  32640. },
  32641. ]
  32642. ))
  32643. characterMakers.push(() => makeCharacter(
  32644. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32645. {
  32646. anthroFront: {
  32647. height: math.unit(9, "feet"),
  32648. weight: math.unit(600, "lb"),
  32649. name: "Anthro (Front)",
  32650. image: {
  32651. source: "./media/characters/glint/anthro-front.svg",
  32652. extra: 1097/1018,
  32653. bottom: 28/1125
  32654. }
  32655. },
  32656. anthroBack: {
  32657. height: math.unit(9, "feet"),
  32658. weight: math.unit(600, "lb"),
  32659. name: "Anthro (Back)",
  32660. image: {
  32661. source: "./media/characters/glint/anthro-back.svg",
  32662. extra: 1154/997,
  32663. bottom: 36/1190
  32664. }
  32665. },
  32666. feral: {
  32667. height: math.unit(11, "feet"),
  32668. weight: math.unit(50000, "lb"),
  32669. name: "Feral",
  32670. image: {
  32671. source: "./media/characters/glint/feral.svg",
  32672. extra: 3035/1585,
  32673. bottom: 1169/4204
  32674. }
  32675. },
  32676. dickAnthro: {
  32677. height: math.unit(0.7, "meters"),
  32678. name: "Dick (Anthro)",
  32679. image: {
  32680. source: "./media/characters/glint/dick-anthro.svg"
  32681. }
  32682. },
  32683. dickFeral: {
  32684. height: math.unit(2.65, "meters"),
  32685. name: "Dick (Feral)",
  32686. image: {
  32687. source: "./media/characters/glint/dick-feral.svg"
  32688. }
  32689. },
  32690. slitHidden: {
  32691. height: math.unit(5.85, "meters"),
  32692. name: "Slit (Hidden)",
  32693. image: {
  32694. source: "./media/characters/glint/slit-hidden.svg"
  32695. }
  32696. },
  32697. slitErect: {
  32698. height: math.unit(5.85, "meters"),
  32699. name: "Slit (Erect)",
  32700. image: {
  32701. source: "./media/characters/glint/slit-erect.svg"
  32702. }
  32703. },
  32704. mawAnthro: {
  32705. height: math.unit(0.63, "meters"),
  32706. name: "Maw (Anthro)",
  32707. image: {
  32708. source: "./media/characters/glint/maw.svg"
  32709. }
  32710. },
  32711. mawFeral: {
  32712. height: math.unit(2.89, "meters"),
  32713. name: "Maw (Feral)",
  32714. image: {
  32715. source: "./media/characters/glint/maw.svg"
  32716. }
  32717. },
  32718. },
  32719. [
  32720. {
  32721. name: "Normal",
  32722. height: math.unit(9, "feet"),
  32723. default: true
  32724. },
  32725. ]
  32726. ))
  32727. characterMakers.push(() => makeCharacter(
  32728. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32729. {
  32730. side: {
  32731. height: math.unit(15, "feet"),
  32732. weight: math.unit(5000, "kg"),
  32733. name: "Side",
  32734. image: {
  32735. source: "./media/characters/kairne/side.svg",
  32736. extra: 979/811,
  32737. bottom: 13/992
  32738. }
  32739. },
  32740. front: {
  32741. height: math.unit(15, "feet"),
  32742. weight: math.unit(5000, "kg"),
  32743. name: "Front",
  32744. image: {
  32745. source: "./media/characters/kairne/front.svg",
  32746. extra: 908/814,
  32747. bottom: 26/934
  32748. }
  32749. },
  32750. sideNsfw: {
  32751. height: math.unit(15, "feet"),
  32752. weight: math.unit(5000, "kg"),
  32753. name: "Side (NSFW)",
  32754. image: {
  32755. source: "./media/characters/kairne/side-nsfw.svg",
  32756. extra: 979/811,
  32757. bottom: 13/992
  32758. }
  32759. },
  32760. frontNsfw: {
  32761. height: math.unit(15, "feet"),
  32762. weight: math.unit(5000, "kg"),
  32763. name: "Front (NSFW)",
  32764. image: {
  32765. source: "./media/characters/kairne/front-nsfw.svg",
  32766. extra: 908/814,
  32767. bottom: 26/934
  32768. }
  32769. },
  32770. dickCaged: {
  32771. height: math.unit(0.65, "meters"),
  32772. name: "Dick-caged",
  32773. image: {
  32774. source: "./media/characters/kairne/dick-caged.svg"
  32775. }
  32776. },
  32777. dick: {
  32778. height: math.unit(0.79, "meters"),
  32779. name: "Dick",
  32780. image: {
  32781. source: "./media/characters/kairne/dick.svg"
  32782. }
  32783. },
  32784. genitals: {
  32785. height: math.unit(1.29, "meters"),
  32786. name: "Genitals",
  32787. image: {
  32788. source: "./media/characters/kairne/genitals.svg"
  32789. }
  32790. },
  32791. maw: {
  32792. height: math.unit(1.73, "meters"),
  32793. name: "Maw",
  32794. image: {
  32795. source: "./media/characters/kairne/maw.svg"
  32796. }
  32797. },
  32798. },
  32799. [
  32800. {
  32801. name: "Normal",
  32802. height: math.unit(15, "feet"),
  32803. default: true
  32804. },
  32805. ]
  32806. ))
  32807. characterMakers.push(() => makeCharacter(
  32808. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32809. {
  32810. front: {
  32811. height: math.unit(5 + 8/12, "feet"),
  32812. weight: math.unit(139, "lb"),
  32813. name: "Front",
  32814. image: {
  32815. source: "./media/characters/biscuit-jackal/front.svg",
  32816. extra: 2106/1961,
  32817. bottom: 58/2164
  32818. }
  32819. },
  32820. back: {
  32821. height: math.unit(5 + 8/12, "feet"),
  32822. weight: math.unit(139, "lb"),
  32823. name: "Back",
  32824. image: {
  32825. source: "./media/characters/biscuit-jackal/back.svg",
  32826. extra: 2132/1976,
  32827. bottom: 57/2189
  32828. }
  32829. },
  32830. werejackal: {
  32831. height: math.unit(6 + 3/12, "feet"),
  32832. weight: math.unit(188, "lb"),
  32833. name: "Werejackal",
  32834. image: {
  32835. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32836. extra: 2373/2178,
  32837. bottom: 53/2426
  32838. }
  32839. },
  32840. },
  32841. [
  32842. {
  32843. name: "Normal",
  32844. height: math.unit(5 + 8/12, "feet"),
  32845. default: true
  32846. },
  32847. ]
  32848. ))
  32849. characterMakers.push(() => makeCharacter(
  32850. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32851. {
  32852. front: {
  32853. height: math.unit(140, "cm"),
  32854. weight: math.unit(45, "kg"),
  32855. name: "Front",
  32856. image: {
  32857. source: "./media/characters/tayra-white/front.svg",
  32858. extra: 2229/2192,
  32859. bottom: 75/2304
  32860. }
  32861. },
  32862. },
  32863. [
  32864. {
  32865. name: "Normal",
  32866. height: math.unit(140, "cm"),
  32867. default: true
  32868. },
  32869. ]
  32870. ))
  32871. characterMakers.push(() => makeCharacter(
  32872. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32873. {
  32874. front: {
  32875. height: math.unit(4 + 5/12, "feet"),
  32876. name: "Front",
  32877. image: {
  32878. source: "./media/characters/scoop/front.svg",
  32879. extra: 1257/1136,
  32880. bottom: 69/1326
  32881. }
  32882. },
  32883. back: {
  32884. height: math.unit(4 + 5/12, "feet"),
  32885. name: "Back",
  32886. image: {
  32887. source: "./media/characters/scoop/back.svg",
  32888. extra: 1321/1152,
  32889. bottom: 32/1353
  32890. }
  32891. },
  32892. maw: {
  32893. height: math.unit(0.68, "feet"),
  32894. name: "Maw",
  32895. image: {
  32896. source: "./media/characters/scoop/maw.svg"
  32897. }
  32898. },
  32899. },
  32900. [
  32901. {
  32902. name: "Really Small",
  32903. height: math.unit(1, "mm")
  32904. },
  32905. {
  32906. name: "Micro",
  32907. height: math.unit(1, "inch")
  32908. },
  32909. {
  32910. name: "Normal",
  32911. height: math.unit(4 + 5/12, "feet"),
  32912. default: true
  32913. },
  32914. {
  32915. name: "Macro",
  32916. height: math.unit(200, "feet")
  32917. },
  32918. {
  32919. name: "Megamacro",
  32920. height: math.unit(3240, "feet")
  32921. },
  32922. {
  32923. name: "Teramacro",
  32924. height: math.unit(2500, "miles")
  32925. },
  32926. ]
  32927. ))
  32928. characterMakers.push(() => makeCharacter(
  32929. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32930. {
  32931. front: {
  32932. height: math.unit(15 + 7/12, "feet"),
  32933. name: "Front",
  32934. image: {
  32935. source: "./media/characters/saphinara/front.svg",
  32936. extra: 604/546,
  32937. bottom: 19/623
  32938. }
  32939. },
  32940. side: {
  32941. height: math.unit(15 + 7/12, "feet"),
  32942. name: "Side",
  32943. image: {
  32944. source: "./media/characters/saphinara/side.svg",
  32945. extra: 605/547,
  32946. bottom: 6/611
  32947. }
  32948. },
  32949. back: {
  32950. height: math.unit(15 + 7/12, "feet"),
  32951. name: "Back",
  32952. image: {
  32953. source: "./media/characters/saphinara/back.svg",
  32954. extra: 591/531,
  32955. bottom: 13/604
  32956. }
  32957. },
  32958. frontTail: {
  32959. height: math.unit(15 + 7/12, "feet"),
  32960. name: "Front (Full Tail)",
  32961. image: {
  32962. source: "./media/characters/saphinara/front-tail.svg",
  32963. extra: 748/547,
  32964. bottom: 66/814
  32965. }
  32966. },
  32967. },
  32968. [
  32969. {
  32970. name: "Normal",
  32971. height: math.unit(15 + 7/12, "feet"),
  32972. default: true
  32973. },
  32974. {
  32975. name: "Angry",
  32976. height: math.unit(30 + 6/12, "feet")
  32977. },
  32978. {
  32979. name: "Enraged",
  32980. height: math.unit(102 + 1/12, "feet")
  32981. },
  32982. ]
  32983. ))
  32984. characterMakers.push(() => makeCharacter(
  32985. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32986. {
  32987. front: {
  32988. height: math.unit(6 + 8/12, "feet"),
  32989. weight: math.unit(300, "lb"),
  32990. name: "Front",
  32991. image: {
  32992. source: "./media/characters/jrain/front.svg",
  32993. extra: 3039/2865,
  32994. bottom: 399/3438
  32995. }
  32996. },
  32997. back: {
  32998. height: math.unit(6 + 8/12, "feet"),
  32999. weight: math.unit(300, "lb"),
  33000. name: "Back",
  33001. image: {
  33002. source: "./media/characters/jrain/back.svg",
  33003. extra: 3089/2938,
  33004. bottom: 172/3261
  33005. }
  33006. },
  33007. head: {
  33008. height: math.unit(2.14, "feet"),
  33009. name: "Head",
  33010. image: {
  33011. source: "./media/characters/jrain/head.svg"
  33012. }
  33013. },
  33014. maw: {
  33015. height: math.unit(1.77, "feet"),
  33016. name: "Maw",
  33017. image: {
  33018. source: "./media/characters/jrain/maw.svg"
  33019. }
  33020. },
  33021. leftHand: {
  33022. height: math.unit(1.1, "feet"),
  33023. name: "Left Hand",
  33024. image: {
  33025. source: "./media/characters/jrain/left-hand.svg"
  33026. }
  33027. },
  33028. rightHand: {
  33029. height: math.unit(1.1, "feet"),
  33030. name: "Right Hand",
  33031. image: {
  33032. source: "./media/characters/jrain/right-hand.svg"
  33033. }
  33034. },
  33035. eye: {
  33036. height: math.unit(0.35, "feet"),
  33037. name: "Eye",
  33038. image: {
  33039. source: "./media/characters/jrain/eye.svg"
  33040. }
  33041. },
  33042. },
  33043. [
  33044. {
  33045. name: "Normal",
  33046. height: math.unit(6 + 8/12, "feet"),
  33047. default: true
  33048. },
  33049. {
  33050. name: "Casually Large",
  33051. height: math.unit(25, "feet")
  33052. },
  33053. {
  33054. name: "Giant",
  33055. height: math.unit(100, "feet")
  33056. },
  33057. {
  33058. name: "Kaiju",
  33059. height: math.unit(300, "feet")
  33060. },
  33061. ]
  33062. ))
  33063. characterMakers.push(() => makeCharacter(
  33064. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33065. {
  33066. dragon: {
  33067. height: math.unit(5, "meters"),
  33068. name: "Dragon",
  33069. image: {
  33070. source: "./media/characters/sabrina/dragon.svg",
  33071. extra: 3670 / 2365,
  33072. bottom: 333 / 4003
  33073. }
  33074. },
  33075. gryphon: {
  33076. height: math.unit(3, "meters"),
  33077. name: "Gryphon",
  33078. image: {
  33079. source: "./media/characters/sabrina/gryphon.svg",
  33080. extra: 1576 / 945,
  33081. bottom: 71 / 1647
  33082. }
  33083. },
  33084. snake: {
  33085. height: math.unit(12, "meters"),
  33086. name: "Snake",
  33087. image: {
  33088. source: "./media/characters/sabrina/snake.svg",
  33089. extra: 1758 / 1320,
  33090. bottom: 186 / 1944
  33091. }
  33092. },
  33093. collar: {
  33094. height: math.unit(1.86, "meters"),
  33095. name: "Collar",
  33096. image: {
  33097. source: "./media/characters/sabrina/collar.svg"
  33098. }
  33099. },
  33100. eye: {
  33101. height: math.unit(0.53, "meters"),
  33102. name: "Eye",
  33103. image: {
  33104. source: "./media/characters/sabrina/eye.svg"
  33105. }
  33106. },
  33107. foot: {
  33108. height: math.unit(1.86, "meters"),
  33109. name: "Foot",
  33110. image: {
  33111. source: "./media/characters/sabrina/foot.svg"
  33112. }
  33113. },
  33114. hand: {
  33115. height: math.unit(1.32, "meters"),
  33116. name: "Hand",
  33117. image: {
  33118. source: "./media/characters/sabrina/hand.svg"
  33119. }
  33120. },
  33121. head: {
  33122. height: math.unit(2.44, "meters"),
  33123. name: "Head",
  33124. image: {
  33125. source: "./media/characters/sabrina/head.svg"
  33126. }
  33127. },
  33128. headAngry: {
  33129. height: math.unit(2.44, "meters"),
  33130. name: "Head (Angry))",
  33131. image: {
  33132. source: "./media/characters/sabrina/head-angry.svg"
  33133. }
  33134. },
  33135. maw: {
  33136. height: math.unit(1.65, "meters"),
  33137. name: "Maw",
  33138. image: {
  33139. source: "./media/characters/sabrina/maw.svg"
  33140. }
  33141. },
  33142. spikes: {
  33143. height: math.unit(1.69, "meters"),
  33144. name: "Spikes",
  33145. image: {
  33146. source: "./media/characters/sabrina/spikes.svg"
  33147. }
  33148. },
  33149. stomach: {
  33150. height: math.unit(1.15, "meters"),
  33151. name: "Stomach",
  33152. image: {
  33153. source: "./media/characters/sabrina/stomach.svg"
  33154. }
  33155. },
  33156. tongue: {
  33157. height: math.unit(1.27, "meters"),
  33158. name: "Tongue",
  33159. image: {
  33160. source: "./media/characters/sabrina/tongue.svg"
  33161. }
  33162. },
  33163. wingDorsal: {
  33164. height: math.unit(4.85, "meters"),
  33165. name: "Wing (Dorsal)",
  33166. image: {
  33167. source: "./media/characters/sabrina/wing-dorsal.svg"
  33168. }
  33169. },
  33170. wingVentral: {
  33171. height: math.unit(4.85, "meters"),
  33172. name: "Wing (Ventral)",
  33173. image: {
  33174. source: "./media/characters/sabrina/wing-ventral.svg"
  33175. }
  33176. },
  33177. },
  33178. [
  33179. {
  33180. name: "Normal",
  33181. height: math.unit(5, "meters"),
  33182. default: true
  33183. },
  33184. ]
  33185. ))
  33186. characterMakers.push(() => makeCharacter(
  33187. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33188. {
  33189. frontMaid: {
  33190. height: math.unit(5 + 5/12, "feet"),
  33191. weight: math.unit(130, "lb"),
  33192. name: "Front (Maid)",
  33193. image: {
  33194. source: "./media/characters/midnight-tales/front-maid.svg",
  33195. extra: 489/454,
  33196. bottom: 61/550
  33197. }
  33198. },
  33199. frontFormal: {
  33200. height: math.unit(5 + 5/12, "feet"),
  33201. weight: math.unit(130, "lb"),
  33202. name: "Front (Formal)",
  33203. image: {
  33204. source: "./media/characters/midnight-tales/front-formal.svg",
  33205. extra: 489/454,
  33206. bottom: 61/550
  33207. }
  33208. },
  33209. back: {
  33210. height: math.unit(5 + 5/12, "feet"),
  33211. weight: math.unit(130, "lb"),
  33212. name: "Back",
  33213. image: {
  33214. source: "./media/characters/midnight-tales/back.svg",
  33215. extra: 498/456,
  33216. bottom: 33/531
  33217. }
  33218. },
  33219. frontBeast: {
  33220. height: math.unit(40, "feet"),
  33221. weight: math.unit(64000, "lb"),
  33222. name: "Front (Beast)",
  33223. image: {
  33224. source: "./media/characters/midnight-tales/front-beast.svg",
  33225. extra: 927/860,
  33226. bottom: 53/980
  33227. }
  33228. },
  33229. backBeast: {
  33230. height: math.unit(40, "feet"),
  33231. weight: math.unit(64000, "lb"),
  33232. name: "Back (Beast)",
  33233. image: {
  33234. source: "./media/characters/midnight-tales/back-beast.svg",
  33235. extra: 929/855,
  33236. bottom: 16/945
  33237. }
  33238. },
  33239. footBeast: {
  33240. height: math.unit(6.7, "feet"),
  33241. name: "Foot (Beast)",
  33242. image: {
  33243. source: "./media/characters/midnight-tales/foot-beast.svg"
  33244. }
  33245. },
  33246. headBeast: {
  33247. height: math.unit(8, "feet"),
  33248. name: "Head (Beast)",
  33249. image: {
  33250. source: "./media/characters/midnight-tales/head-beast.svg"
  33251. }
  33252. },
  33253. },
  33254. [
  33255. {
  33256. name: "Normal",
  33257. height: math.unit(5 + 5 / 12, "feet"),
  33258. default: true
  33259. },
  33260. {
  33261. name: "Macro",
  33262. height: math.unit(25, "feet")
  33263. },
  33264. ]
  33265. ))
  33266. characterMakers.push(() => makeCharacter(
  33267. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33268. {
  33269. front: {
  33270. height: math.unit(5 + 10/12, "feet"),
  33271. name: "Front",
  33272. image: {
  33273. source: "./media/characters/argon/front.svg",
  33274. extra: 2009/1935,
  33275. bottom: 118/2127
  33276. }
  33277. },
  33278. back: {
  33279. height: math.unit(5 + 10/12, "feet"),
  33280. name: "Back",
  33281. image: {
  33282. source: "./media/characters/argon/back.svg",
  33283. extra: 2047/1992,
  33284. bottom: 20/2067
  33285. }
  33286. },
  33287. frontDressed: {
  33288. height: math.unit(5 + 10/12, "feet"),
  33289. name: "Front (Dressed)",
  33290. image: {
  33291. source: "./media/characters/argon/front-dressed.svg",
  33292. extra: 2009/1935,
  33293. bottom: 118/2127
  33294. }
  33295. },
  33296. },
  33297. [
  33298. {
  33299. name: "Normal",
  33300. height: math.unit(5 + 10/12, "feet"),
  33301. default: true
  33302. },
  33303. ]
  33304. ))
  33305. characterMakers.push(() => makeCharacter(
  33306. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33307. {
  33308. front: {
  33309. height: math.unit(8 + 6/12, "feet"),
  33310. weight: math.unit(1150, "lb"),
  33311. name: "Front",
  33312. image: {
  33313. source: "./media/characters/kichi/front.svg",
  33314. extra: 1267/1164,
  33315. bottom: 61/1328
  33316. }
  33317. },
  33318. back: {
  33319. height: math.unit(8 + 6/12, "feet"),
  33320. weight: math.unit(1150, "lb"),
  33321. name: "Back",
  33322. image: {
  33323. source: "./media/characters/kichi/back.svg",
  33324. extra: 1273/1166,
  33325. bottom: 33/1306
  33326. }
  33327. },
  33328. },
  33329. [
  33330. {
  33331. name: "Normal",
  33332. height: math.unit(8 + 6/12, "feet"),
  33333. default: true
  33334. },
  33335. ]
  33336. ))
  33337. characterMakers.push(() => makeCharacter(
  33338. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33339. {
  33340. front: {
  33341. height: math.unit(6, "feet"),
  33342. weight: math.unit(210, "lb"),
  33343. name: "Front",
  33344. image: {
  33345. source: "./media/characters/manetel-greyscale/front.svg",
  33346. extra: 350/312,
  33347. bottom: 8/358
  33348. }
  33349. },
  33350. },
  33351. [
  33352. {
  33353. name: "Micro",
  33354. height: math.unit(2, "inches")
  33355. },
  33356. {
  33357. name: "Normal",
  33358. height: math.unit(6, "feet"),
  33359. default: true
  33360. },
  33361. {
  33362. name: "Minimacro",
  33363. height: math.unit(17, "feet")
  33364. },
  33365. {
  33366. name: "Macro",
  33367. height: math.unit(117, "feet")
  33368. },
  33369. ]
  33370. ))
  33371. characterMakers.push(() => makeCharacter(
  33372. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33373. {
  33374. side: {
  33375. height: math.unit(5 + 1/12, "feet"),
  33376. weight: math.unit(418, "lb"),
  33377. name: "Side",
  33378. image: {
  33379. source: "./media/characters/softpurr/side.svg",
  33380. extra: 1993/1945,
  33381. bottom: 134/2127
  33382. }
  33383. },
  33384. front: {
  33385. height: math.unit(5 + 1/12, "feet"),
  33386. weight: math.unit(418, "lb"),
  33387. name: "Front",
  33388. image: {
  33389. source: "./media/characters/softpurr/front.svg",
  33390. extra: 1950/1856,
  33391. bottom: 174/2124
  33392. }
  33393. },
  33394. paw: {
  33395. height: math.unit(1, "feet"),
  33396. name: "Paw",
  33397. image: {
  33398. source: "./media/characters/softpurr/paw.svg"
  33399. }
  33400. },
  33401. },
  33402. [
  33403. {
  33404. name: "Normal",
  33405. height: math.unit(5 + 1/12, "feet"),
  33406. default: true
  33407. },
  33408. ]
  33409. ))
  33410. characterMakers.push(() => makeCharacter(
  33411. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33412. {
  33413. front: {
  33414. height: math.unit(260, "meters"),
  33415. name: "Front",
  33416. image: {
  33417. source: "./media/characters/anahita/front.svg",
  33418. extra: 665/635,
  33419. bottom: 89/754
  33420. }
  33421. },
  33422. },
  33423. [
  33424. {
  33425. name: "Macro",
  33426. height: math.unit(260, "meters"),
  33427. default: true
  33428. },
  33429. ]
  33430. ))
  33431. characterMakers.push(() => makeCharacter(
  33432. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33433. {
  33434. front: {
  33435. height: math.unit(4 + 10/12, "feet"),
  33436. weight: math.unit(160, "lb"),
  33437. name: "Front",
  33438. image: {
  33439. source: "./media/characters/chip-mouse/front.svg",
  33440. extra: 3528/3408,
  33441. bottom: 0/3528
  33442. }
  33443. },
  33444. frontNsfw: {
  33445. height: math.unit(4 + 10/12, "feet"),
  33446. weight: math.unit(160, "lb"),
  33447. name: "Front (NSFW)",
  33448. image: {
  33449. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33450. extra: 3528/3408,
  33451. bottom: 0/3528
  33452. }
  33453. },
  33454. },
  33455. [
  33456. {
  33457. name: "Normal",
  33458. height: math.unit(4 + 10/12, "feet"),
  33459. default: true
  33460. },
  33461. ]
  33462. ))
  33463. characterMakers.push(() => makeCharacter(
  33464. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33465. {
  33466. side: {
  33467. height: math.unit(10, "feet"),
  33468. weight: math.unit(14000, "lb"),
  33469. name: "Side",
  33470. image: {
  33471. source: "./media/characters/kremm/side.svg",
  33472. extra: 1390/1053,
  33473. bottom: 90/1480
  33474. }
  33475. },
  33476. gut: {
  33477. height: math.unit(5.8, "feet"),
  33478. name: "Gut",
  33479. image: {
  33480. source: "./media/characters/kremm/gut.svg"
  33481. }
  33482. },
  33483. ass: {
  33484. height: math.unit(6.1, "feet"),
  33485. name: "Ass",
  33486. image: {
  33487. source: "./media/characters/kremm/ass.svg"
  33488. }
  33489. },
  33490. jaws: {
  33491. height: math.unit(2.2, "feet"),
  33492. name: "Jaws",
  33493. image: {
  33494. source: "./media/characters/kremm/jaws.svg"
  33495. }
  33496. },
  33497. dick: {
  33498. height: math.unit(4.26, "feet"),
  33499. name: "Dick",
  33500. image: {
  33501. source: "./media/characters/kremm/dick.svg"
  33502. }
  33503. },
  33504. },
  33505. [
  33506. {
  33507. name: "Normal",
  33508. height: math.unit(10, "feet"),
  33509. default: true
  33510. },
  33511. ]
  33512. ))
  33513. characterMakers.push(() => makeCharacter(
  33514. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33515. {
  33516. front: {
  33517. height: math.unit(30, "stories"),
  33518. name: "Front",
  33519. image: {
  33520. source: "./media/characters/kai/front.svg",
  33521. extra: 1892/1718,
  33522. bottom: 162/2054
  33523. }
  33524. },
  33525. },
  33526. [
  33527. {
  33528. name: "Macro",
  33529. height: math.unit(30, "stories"),
  33530. default: true
  33531. },
  33532. ]
  33533. ))
  33534. characterMakers.push(() => makeCharacter(
  33535. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33536. {
  33537. front: {
  33538. height: math.unit(6 + 4/12, "feet"),
  33539. weight: math.unit(145, "lb"),
  33540. name: "Front",
  33541. image: {
  33542. source: "./media/characters/sykes/front.svg",
  33543. extra: 1321 / 1187,
  33544. bottom: 66 / 1387
  33545. }
  33546. },
  33547. back: {
  33548. height: math.unit(6 + 4/12, "feet"),
  33549. weight: math.unit(145, "lb"),
  33550. name: "Back",
  33551. image: {
  33552. source: "./media/characters/sykes/back.svg",
  33553. extra: 1326/1181,
  33554. bottom: 31/1357
  33555. }
  33556. },
  33557. handBack: {
  33558. height: math.unit(0.9, "feet"),
  33559. name: "Hand (Back)",
  33560. image: {
  33561. source: "./media/characters/sykes/hand-back.svg"
  33562. }
  33563. },
  33564. handFront: {
  33565. height: math.unit(0.839, "feet"),
  33566. name: "Hand (Front)",
  33567. image: {
  33568. source: "./media/characters/sykes/hand-front.svg"
  33569. }
  33570. },
  33571. leftFoot: {
  33572. height: math.unit(1.2, "feet"),
  33573. name: "Foot (Left)",
  33574. image: {
  33575. source: "./media/characters/sykes/foot-left.svg"
  33576. }
  33577. },
  33578. rightFoot: {
  33579. height: math.unit(1.2, "feet"),
  33580. name: "Foot (Right)",
  33581. image: {
  33582. source: "./media/characters/sykes/foot-right.svg"
  33583. }
  33584. },
  33585. maw: {
  33586. height: math.unit(1.93, "feet"),
  33587. name: "Maw",
  33588. image: {
  33589. source: "./media/characters/sykes/maw.svg"
  33590. }
  33591. },
  33592. teeth: {
  33593. height: math.unit(0.51, "feet"),
  33594. name: "Teeth",
  33595. image: {
  33596. source: "./media/characters/sykes/teeth.svg"
  33597. }
  33598. },
  33599. tongue: {
  33600. height: math.unit(2.13, "feet"),
  33601. name: "Tongue",
  33602. image: {
  33603. source: "./media/characters/sykes/tongue.svg"
  33604. }
  33605. },
  33606. uvula: {
  33607. height: math.unit(0.16, "feet"),
  33608. name: "Uvula",
  33609. image: {
  33610. source: "./media/characters/sykes/uvula.svg"
  33611. }
  33612. },
  33613. collar: {
  33614. height: math.unit(0.287, "feet"),
  33615. name: "Collar",
  33616. image: {
  33617. source: "./media/characters/sykes/collar.svg"
  33618. }
  33619. },
  33620. },
  33621. [
  33622. {
  33623. name: "Shrunken",
  33624. height: math.unit(5, "inches")
  33625. },
  33626. {
  33627. name: "Normal",
  33628. height: math.unit(6 + 4 / 12, "feet"),
  33629. default: true
  33630. },
  33631. {
  33632. name: "Big",
  33633. height: math.unit(15, "feet")
  33634. },
  33635. ]
  33636. ))
  33637. characterMakers.push(() => makeCharacter(
  33638. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33639. {
  33640. front: {
  33641. height: math.unit(5 + 8/12, "feet"),
  33642. weight: math.unit(190, "lb"),
  33643. name: "Front",
  33644. image: {
  33645. source: "./media/characters/oven-otter/front.svg",
  33646. extra: 1809/1740,
  33647. bottom: 181/1990
  33648. }
  33649. },
  33650. back: {
  33651. height: math.unit(5 + 8/12, "feet"),
  33652. weight: math.unit(190, "lb"),
  33653. name: "Back",
  33654. image: {
  33655. source: "./media/characters/oven-otter/back.svg",
  33656. extra: 1709/1635,
  33657. bottom: 118/1827
  33658. }
  33659. },
  33660. hand: {
  33661. height: math.unit(1.07, "feet"),
  33662. name: "Hand",
  33663. image: {
  33664. source: "./media/characters/oven-otter/hand.svg"
  33665. }
  33666. },
  33667. beans: {
  33668. height: math.unit(1.74, "feet"),
  33669. name: "Beans",
  33670. image: {
  33671. source: "./media/characters/oven-otter/beans.svg"
  33672. }
  33673. },
  33674. },
  33675. [
  33676. {
  33677. name: "Micro",
  33678. height: math.unit(0.5, "inches")
  33679. },
  33680. {
  33681. name: "Normal",
  33682. height: math.unit(5 + 8/12, "feet"),
  33683. default: true
  33684. },
  33685. {
  33686. name: "Macro",
  33687. height: math.unit(250, "feet")
  33688. },
  33689. {
  33690. name: "Really High",
  33691. height: math.unit(420, "feet")
  33692. },
  33693. ]
  33694. ))
  33695. characterMakers.push(() => makeCharacter(
  33696. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33697. {
  33698. front: {
  33699. height: math.unit(5, "meters"),
  33700. weight: math.unit(292000000000000, "kg"),
  33701. name: "Front",
  33702. image: {
  33703. source: "./media/characters/devourer/front.svg",
  33704. extra: 1800/1733,
  33705. bottom: 211/2011
  33706. }
  33707. },
  33708. maw: {
  33709. height: math.unit(1.1, "meter"),
  33710. name: "Maw",
  33711. image: {
  33712. source: "./media/characters/devourer/maw.svg"
  33713. }
  33714. },
  33715. },
  33716. [
  33717. {
  33718. name: "Small",
  33719. height: math.unit(3, "meters")
  33720. },
  33721. {
  33722. name: "Large",
  33723. height: math.unit(5, "meters"),
  33724. default: true
  33725. },
  33726. ]
  33727. ))
  33728. characterMakers.push(() => makeCharacter(
  33729. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33730. {
  33731. front: {
  33732. height: math.unit(6, "feet"),
  33733. weight: math.unit(400, "lb"),
  33734. name: "Front",
  33735. image: {
  33736. source: "./media/characters/ellarby/front.svg",
  33737. extra: 1909/1763,
  33738. bottom: 80/1989
  33739. }
  33740. },
  33741. back: {
  33742. height: math.unit(6, "feet"),
  33743. weight: math.unit(400, "lb"),
  33744. name: "Back",
  33745. image: {
  33746. source: "./media/characters/ellarby/back.svg",
  33747. extra: 1914/1784,
  33748. bottom: 172/2086
  33749. }
  33750. },
  33751. },
  33752. [
  33753. {
  33754. name: "Mischief",
  33755. height: math.unit(18, "inches")
  33756. },
  33757. {
  33758. name: "Trouble",
  33759. height: math.unit(12, "feet")
  33760. },
  33761. {
  33762. name: "Havoc",
  33763. height: math.unit(200, "feet"),
  33764. default: true
  33765. },
  33766. {
  33767. name: "Pandemonium",
  33768. height: math.unit(1, "mile")
  33769. },
  33770. {
  33771. name: "Catastrophe",
  33772. height: math.unit(100, "miles")
  33773. },
  33774. ]
  33775. ))
  33776. characterMakers.push(() => makeCharacter(
  33777. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33778. {
  33779. front: {
  33780. height: math.unit(4.7, "meters"),
  33781. weight: math.unit(6500, "kg"),
  33782. name: "Front",
  33783. image: {
  33784. source: "./media/characters/vex/front.svg",
  33785. extra: 1288/1140,
  33786. bottom: 100/1388
  33787. }
  33788. },
  33789. },
  33790. [
  33791. {
  33792. name: "Normal",
  33793. height: math.unit(4.7, "meters"),
  33794. default: true
  33795. },
  33796. ]
  33797. ))
  33798. characterMakers.push(() => makeCharacter(
  33799. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33800. {
  33801. normal: {
  33802. height: math.unit(6, "feet"),
  33803. weight: math.unit(350, "lb"),
  33804. name: "Normal",
  33805. image: {
  33806. source: "./media/characters/teshy/normal.svg",
  33807. extra: 1795/1735,
  33808. bottom: 16/1811
  33809. }
  33810. },
  33811. monsterFront: {
  33812. height: math.unit(12, "feet"),
  33813. weight: math.unit(4700, "lb"),
  33814. name: "Monster (Front)",
  33815. image: {
  33816. source: "./media/characters/teshy/monster-front.svg",
  33817. extra: 2042/2034,
  33818. bottom: 128/2170
  33819. }
  33820. },
  33821. monsterSide: {
  33822. height: math.unit(12, "feet"),
  33823. weight: math.unit(4700, "lb"),
  33824. name: "Monster (Side)",
  33825. image: {
  33826. source: "./media/characters/teshy/monster-side.svg",
  33827. extra: 2067/2056,
  33828. bottom: 70/2137
  33829. }
  33830. },
  33831. monsterBack: {
  33832. height: math.unit(12, "feet"),
  33833. weight: math.unit(4700, "lb"),
  33834. name: "Monster (Back)",
  33835. image: {
  33836. source: "./media/characters/teshy/monster-back.svg",
  33837. extra: 1921/1914,
  33838. bottom: 171/2092
  33839. }
  33840. },
  33841. },
  33842. [
  33843. {
  33844. name: "Normal",
  33845. height: math.unit(6, "feet"),
  33846. default: true
  33847. },
  33848. ]
  33849. ))
  33850. characterMakers.push(() => makeCharacter(
  33851. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33852. {
  33853. front: {
  33854. height: math.unit(6, "feet"),
  33855. name: "Front",
  33856. image: {
  33857. source: "./media/characters/ramey/front.svg",
  33858. extra: 790/787,
  33859. bottom: 27/817
  33860. }
  33861. },
  33862. },
  33863. [
  33864. {
  33865. name: "Normal",
  33866. height: math.unit(6, "feet"),
  33867. default: true
  33868. },
  33869. ]
  33870. ))
  33871. characterMakers.push(() => makeCharacter(
  33872. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33873. {
  33874. front: {
  33875. height: math.unit(5 + 5/12, "feet"),
  33876. weight: math.unit(120, "lb"),
  33877. name: "Front",
  33878. image: {
  33879. source: "./media/characters/phirae/front.svg",
  33880. extra: 2491/2436,
  33881. bottom: 38/2529
  33882. }
  33883. },
  33884. },
  33885. [
  33886. {
  33887. name: "Normal",
  33888. height: math.unit(5 + 5/12, "feet"),
  33889. default: true
  33890. },
  33891. ]
  33892. ))
  33893. characterMakers.push(() => makeCharacter(
  33894. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  33895. {
  33896. front: {
  33897. height: math.unit(5 + 3/12, "feet"),
  33898. name: "Front",
  33899. image: {
  33900. source: "./media/characters/stagglas/front.svg",
  33901. extra: 962/882,
  33902. bottom: 53/1015
  33903. }
  33904. },
  33905. feral: {
  33906. height: math.unit(335, "cm"),
  33907. name: "Feral",
  33908. image: {
  33909. source: "./media/characters/stagglas/feral.svg",
  33910. extra: 1732/1090,
  33911. bottom: 48/1780
  33912. }
  33913. },
  33914. },
  33915. [
  33916. {
  33917. name: "Normal",
  33918. height: math.unit(5 + 3/12, "feet"),
  33919. default: true
  33920. },
  33921. ]
  33922. ))
  33923. characterMakers.push(() => makeCharacter(
  33924. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33925. {
  33926. front: {
  33927. height: math.unit(5 + 4/12, "feet"),
  33928. weight: math.unit(145, "lb"),
  33929. name: "Front",
  33930. image: {
  33931. source: "./media/characters/starra/front.svg",
  33932. extra: 1790/1691,
  33933. bottom: 91/1881
  33934. }
  33935. },
  33936. },
  33937. [
  33938. {
  33939. name: "Normal",
  33940. height: math.unit(5 + 4/12, "feet"),
  33941. default: true
  33942. },
  33943. ]
  33944. ))
  33945. characterMakers.push(() => makeCharacter(
  33946. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33947. {
  33948. front: {
  33949. height: math.unit(2.2, "meters"),
  33950. name: "Front",
  33951. image: {
  33952. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33953. extra: 1194/1005,
  33954. bottom: 25/1219
  33955. }
  33956. },
  33957. },
  33958. [
  33959. {
  33960. name: "Normal",
  33961. height: math.unit(2.2, "meters"),
  33962. default: true
  33963. },
  33964. ]
  33965. ))
  33966. characterMakers.push(() => makeCharacter(
  33967. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33968. {
  33969. side: {
  33970. height: math.unit(8 + 2/12, "feet"),
  33971. weight: math.unit(1240, "lb"),
  33972. name: "Side",
  33973. image: {
  33974. source: "./media/characters/mika-valentine/side.svg",
  33975. extra: 2670/2501,
  33976. bottom: 250/2920
  33977. }
  33978. },
  33979. },
  33980. [
  33981. {
  33982. name: "Normal",
  33983. height: math.unit(8 + 2/12, "feet"),
  33984. default: true
  33985. },
  33986. ]
  33987. ))
  33988. characterMakers.push(() => makeCharacter(
  33989. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33990. {
  33991. front: {
  33992. height: math.unit(7 + 2/12, "feet"),
  33993. name: "Front",
  33994. image: {
  33995. source: "./media/characters/xoltol/front.svg",
  33996. extra: 2212/2124,
  33997. bottom: 84/2296
  33998. }
  33999. },
  34000. side: {
  34001. height: math.unit(7 + 2/12, "feet"),
  34002. name: "Side",
  34003. image: {
  34004. source: "./media/characters/xoltol/side.svg",
  34005. extra: 2273/2197,
  34006. bottom: 26/2299
  34007. }
  34008. },
  34009. hand: {
  34010. height: math.unit(2.5, "feet"),
  34011. name: "Hand",
  34012. image: {
  34013. source: "./media/characters/xoltol/hand.svg"
  34014. }
  34015. },
  34016. },
  34017. [
  34018. {
  34019. name: "Small-ish",
  34020. height: math.unit(5 + 11/12, "feet")
  34021. },
  34022. {
  34023. name: "Normal",
  34024. height: math.unit(7 + 2/12, "feet")
  34025. },
  34026. {
  34027. name: "\"Macro\"",
  34028. height: math.unit(14 + 9/12, "feet"),
  34029. default: true
  34030. },
  34031. {
  34032. name: "Alternate Height",
  34033. height: math.unit(20, "feet")
  34034. },
  34035. {
  34036. name: "Actually Macro",
  34037. height: math.unit(100, "feet")
  34038. },
  34039. ]
  34040. ))
  34041. characterMakers.push(() => makeCharacter(
  34042. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34043. {
  34044. front: {
  34045. height: math.unit(5 + 2/12, "feet"),
  34046. name: "Front",
  34047. image: {
  34048. source: "./media/characters/kotetsu-redwood/front.svg",
  34049. extra: 1053/942,
  34050. bottom: 60/1113
  34051. }
  34052. },
  34053. },
  34054. [
  34055. {
  34056. name: "Normal",
  34057. height: math.unit(5 + 2/12, "feet"),
  34058. default: true
  34059. },
  34060. ]
  34061. ))
  34062. characterMakers.push(() => makeCharacter(
  34063. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34064. {
  34065. front: {
  34066. height: math.unit(2.4, "meters"),
  34067. weight: math.unit(125, "kg"),
  34068. name: "Front",
  34069. image: {
  34070. source: "./media/characters/lilith/front.svg",
  34071. extra: 1590/1513,
  34072. bottom: 203/1793
  34073. }
  34074. },
  34075. },
  34076. [
  34077. {
  34078. name: "Humanoid",
  34079. height: math.unit(2.4, "meters")
  34080. },
  34081. {
  34082. name: "Normal",
  34083. height: math.unit(6, "meters"),
  34084. default: true
  34085. },
  34086. {
  34087. name: "Largest",
  34088. height: math.unit(55, "meters")
  34089. },
  34090. ]
  34091. ))
  34092. characterMakers.push(() => makeCharacter(
  34093. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34094. {
  34095. front: {
  34096. height: math.unit(8 + 4/12, "feet"),
  34097. weight: math.unit(535, "lb"),
  34098. name: "Front",
  34099. image: {
  34100. source: "./media/characters/beh'kah-bolger/front.svg",
  34101. extra: 1660/1603,
  34102. bottom: 37/1697
  34103. }
  34104. },
  34105. },
  34106. [
  34107. {
  34108. name: "Normal",
  34109. height: math.unit(8 + 4/12, "feet"),
  34110. default: true
  34111. },
  34112. {
  34113. name: "Kaiju",
  34114. height: math.unit(250, "feet")
  34115. },
  34116. {
  34117. name: "Still Growing",
  34118. height: math.unit(10, "miles")
  34119. },
  34120. {
  34121. name: "Continental",
  34122. height: math.unit(5000, "miles")
  34123. },
  34124. {
  34125. name: "Final Form",
  34126. height: math.unit(2500000, "miles")
  34127. },
  34128. ]
  34129. ))
  34130. characterMakers.push(() => makeCharacter(
  34131. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34132. {
  34133. front: {
  34134. height: math.unit(7 + 2/12, "feet"),
  34135. weight: math.unit(230, "kg"),
  34136. name: "Front",
  34137. image: {
  34138. source: "./media/characters/tatyana-milewska/front.svg",
  34139. extra: 1199/1150,
  34140. bottom: 86/1285
  34141. }
  34142. },
  34143. },
  34144. [
  34145. {
  34146. name: "Normal",
  34147. height: math.unit(7 + 2/12, "feet"),
  34148. default: true
  34149. },
  34150. {
  34151. name: "Big",
  34152. height: math.unit(12, "feet")
  34153. },
  34154. {
  34155. name: "Minimacro",
  34156. height: math.unit(20, "feet")
  34157. },
  34158. {
  34159. name: "Macro",
  34160. height: math.unit(120, "feet")
  34161. },
  34162. ]
  34163. ))
  34164. characterMakers.push(() => makeCharacter(
  34165. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34166. {
  34167. front: {
  34168. height: math.unit(7 + 8/12, "feet"),
  34169. weight: math.unit(152, "kg"),
  34170. name: "Front",
  34171. image: {
  34172. source: "./media/characters/helen-arri/front.svg",
  34173. extra: 440/423,
  34174. bottom: 14/454
  34175. }
  34176. },
  34177. back: {
  34178. height: math.unit(7 + 8/12, "feet"),
  34179. weight: math.unit(152, "kg"),
  34180. name: "Back",
  34181. image: {
  34182. source: "./media/characters/helen-arri/back.svg",
  34183. extra: 443/426,
  34184. bottom: 8/451
  34185. }
  34186. },
  34187. },
  34188. [
  34189. {
  34190. name: "Normal",
  34191. height: math.unit(7 + 8/12, "feet"),
  34192. default: true
  34193. },
  34194. {
  34195. name: "Big",
  34196. height: math.unit(14, "feet")
  34197. },
  34198. {
  34199. name: "Minimacro",
  34200. height: math.unit(24, "feet")
  34201. },
  34202. {
  34203. name: "Macro",
  34204. height: math.unit(140, "feet")
  34205. },
  34206. ]
  34207. ))
  34208. characterMakers.push(() => makeCharacter(
  34209. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34210. {
  34211. front: {
  34212. height: math.unit(6, "meters"),
  34213. name: "Front",
  34214. image: {
  34215. source: "./media/characters/ehanu-rehu/front.svg",
  34216. extra: 1800/1800,
  34217. bottom: 59/1859
  34218. }
  34219. },
  34220. },
  34221. [
  34222. {
  34223. name: "Normal",
  34224. height: math.unit(6, "meters"),
  34225. default: true
  34226. },
  34227. ]
  34228. ))
  34229. characterMakers.push(() => makeCharacter(
  34230. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34231. {
  34232. front: {
  34233. height: math.unit(7 + 3/12, "feet"),
  34234. name: "Front",
  34235. image: {
  34236. source: "./media/characters/renholder/front.svg",
  34237. extra: 3096/2960,
  34238. bottom: 250/3346
  34239. }
  34240. },
  34241. },
  34242. [
  34243. {
  34244. name: "Normal Bat",
  34245. height: math.unit(7 + 3/12, "feet"),
  34246. default: true
  34247. },
  34248. {
  34249. name: "Slightly Tall Bat",
  34250. height: math.unit(100, "feet")
  34251. },
  34252. {
  34253. name: "Big Bat",
  34254. height: math.unit(1000, "feet")
  34255. },
  34256. {
  34257. name: "City-Sized Bat",
  34258. height: math.unit(200000, "feet")
  34259. },
  34260. {
  34261. name: "Bigger Bat",
  34262. height: math.unit(10000, "miles")
  34263. },
  34264. {
  34265. name: "Solar Sized Bat",
  34266. height: math.unit(100, "AU")
  34267. },
  34268. {
  34269. name: "Galactic Bat",
  34270. height: math.unit(200000, "lightyears")
  34271. },
  34272. {
  34273. name: "Universally Known Bat",
  34274. height: math.unit(1, "universe")
  34275. },
  34276. ]
  34277. ))
  34278. characterMakers.push(() => makeCharacter(
  34279. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34280. {
  34281. front: {
  34282. height: math.unit(6 + 11/12, "feet"),
  34283. weight: math.unit(250, "lb"),
  34284. name: "Front",
  34285. image: {
  34286. source: "./media/characters/cookiecat/front.svg",
  34287. extra: 893/827,
  34288. bottom: 14/907
  34289. }
  34290. },
  34291. },
  34292. [
  34293. {
  34294. name: "Micro",
  34295. height: math.unit(3, "inches")
  34296. },
  34297. {
  34298. name: "Normal",
  34299. height: math.unit(6 + 11/12, "feet"),
  34300. default: true
  34301. },
  34302. {
  34303. name: "Macro",
  34304. height: math.unit(100, "feet")
  34305. },
  34306. {
  34307. name: "Macro+",
  34308. height: math.unit(404, "feet")
  34309. },
  34310. {
  34311. name: "Megamacro",
  34312. height: math.unit(165, "miles")
  34313. },
  34314. {
  34315. name: "Planetary",
  34316. height: math.unit(4600, "miles")
  34317. },
  34318. ]
  34319. ))
  34320. characterMakers.push(() => makeCharacter(
  34321. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34322. {
  34323. front: {
  34324. height: math.unit(10 + 3/12, "feet"),
  34325. weight: math.unit(1500, "lb"),
  34326. name: "Front",
  34327. image: {
  34328. source: "./media/characters/tux-kusanagi/front.svg",
  34329. extra: 944/840,
  34330. bottom: 39/983
  34331. }
  34332. },
  34333. back: {
  34334. height: math.unit(10 + 3/12, "feet"),
  34335. weight: math.unit(1500, "lb"),
  34336. name: "Back",
  34337. image: {
  34338. source: "./media/characters/tux-kusanagi/back.svg",
  34339. extra: 941/842,
  34340. bottom: 28/969
  34341. }
  34342. },
  34343. rump: {
  34344. height: math.unit(5.25, "feet"),
  34345. name: "Rump",
  34346. image: {
  34347. source: "./media/characters/tux-kusanagi/rump.svg"
  34348. }
  34349. },
  34350. beak: {
  34351. height: math.unit(1.54, "feet"),
  34352. name: "Beak",
  34353. image: {
  34354. source: "./media/characters/tux-kusanagi/beak.svg"
  34355. }
  34356. },
  34357. },
  34358. [
  34359. {
  34360. name: "Normal",
  34361. height: math.unit(10 + 3/12, "feet"),
  34362. default: true
  34363. },
  34364. ]
  34365. ))
  34366. characterMakers.push(() => makeCharacter(
  34367. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34368. {
  34369. front: {
  34370. height: math.unit(58, "feet"),
  34371. weight: math.unit(200, "tons"),
  34372. name: "Front",
  34373. image: {
  34374. source: "./media/characters/uzarmazari/front.svg",
  34375. extra: 1575/1455,
  34376. bottom: 152/1727
  34377. }
  34378. },
  34379. back: {
  34380. height: math.unit(58, "feet"),
  34381. weight: math.unit(200, "tons"),
  34382. name: "Back",
  34383. image: {
  34384. source: "./media/characters/uzarmazari/back.svg",
  34385. extra: 1585/1510,
  34386. bottom: 157/1742
  34387. }
  34388. },
  34389. head: {
  34390. height: math.unit(26, "feet"),
  34391. name: "Head",
  34392. image: {
  34393. source: "./media/characters/uzarmazari/head.svg"
  34394. }
  34395. },
  34396. },
  34397. [
  34398. {
  34399. name: "Normal",
  34400. height: math.unit(58, "feet"),
  34401. default: true
  34402. },
  34403. ]
  34404. ))
  34405. characterMakers.push(() => makeCharacter(
  34406. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34407. {
  34408. side: {
  34409. height: math.unit(15, "feet"),
  34410. name: "Side",
  34411. image: {
  34412. source: "./media/characters/akitu/side.svg",
  34413. extra: 1421/1321,
  34414. bottom: 157/1578
  34415. }
  34416. },
  34417. front: {
  34418. height: math.unit(15, "feet"),
  34419. name: "Front",
  34420. image: {
  34421. source: "./media/characters/akitu/front.svg",
  34422. extra: 1435/1326,
  34423. bottom: 232/1667
  34424. }
  34425. },
  34426. },
  34427. [
  34428. {
  34429. name: "Normal",
  34430. height: math.unit(15, "feet"),
  34431. default: true
  34432. },
  34433. ]
  34434. ))
  34435. characterMakers.push(() => makeCharacter(
  34436. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34437. {
  34438. front: {
  34439. height: math.unit(10 + 8/12, "feet"),
  34440. name: "Front",
  34441. image: {
  34442. source: "./media/characters/azalie-croixland/front.svg",
  34443. extra: 1972/1856,
  34444. bottom: 31/2003
  34445. }
  34446. },
  34447. },
  34448. [
  34449. {
  34450. name: "Original Height",
  34451. height: math.unit(5 + 4/12, "feet")
  34452. },
  34453. {
  34454. name: "Normal Height",
  34455. height: math.unit(10 + 8/12, "feet"),
  34456. default: true
  34457. },
  34458. ]
  34459. ))
  34460. characterMakers.push(() => makeCharacter(
  34461. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34462. {
  34463. side: {
  34464. height: math.unit(7 + 1/12, "feet"),
  34465. weight: math.unit(245, "lb"),
  34466. name: "Side",
  34467. image: {
  34468. source: "./media/characters/kavus-kazian/side.svg",
  34469. extra: 349/342,
  34470. bottom: 15/364
  34471. }
  34472. },
  34473. },
  34474. [
  34475. {
  34476. name: "Normal",
  34477. height: math.unit(7 + 1/12, "feet"),
  34478. default: true
  34479. },
  34480. ]
  34481. ))
  34482. characterMakers.push(() => makeCharacter(
  34483. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34484. {
  34485. normal: {
  34486. height: math.unit(5 + 11/12, "feet"),
  34487. name: "Normal",
  34488. image: {
  34489. source: "./media/characters/moonlight-rose/normal.svg",
  34490. extra: 1979/1835,
  34491. bottom: 14/1993
  34492. }
  34493. },
  34494. demon: {
  34495. height: math.unit(5, "km"),
  34496. name: "Demon",
  34497. image: {
  34498. source: "./media/characters/moonlight-rose/demon.svg",
  34499. extra: 986/916,
  34500. bottom: 28/1014
  34501. }
  34502. },
  34503. },
  34504. [
  34505. {
  34506. name: "\"Natural\" height",
  34507. height: math.unit(5 + 11/12, "feet")
  34508. },
  34509. {
  34510. name: "Comfortable Size",
  34511. height: math.unit(40, "meters")
  34512. },
  34513. {
  34514. name: "Common Size",
  34515. height: math.unit(50, "km"),
  34516. default: true
  34517. },
  34518. {
  34519. name: "Demonic",
  34520. height: math.unit(1.24415e+21, "meters")
  34521. },
  34522. ]
  34523. ))
  34524. characterMakers.push(() => makeCharacter(
  34525. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34526. {
  34527. front: {
  34528. height: math.unit(16, "feet"),
  34529. weight: math.unit(610, "kg"),
  34530. name: "Front",
  34531. image: {
  34532. source: "./media/characters/huckle/front.svg",
  34533. extra: 1731/1625,
  34534. bottom: 33/1764
  34535. }
  34536. },
  34537. back: {
  34538. height: math.unit(16, "feet"),
  34539. weight: math.unit(610, "kg"),
  34540. name: "Back",
  34541. image: {
  34542. source: "./media/characters/huckle/back.svg",
  34543. extra: 1738/1651,
  34544. bottom: 37/1775
  34545. }
  34546. },
  34547. laughing: {
  34548. height: math.unit(3.75, "feet"),
  34549. name: "Laughing",
  34550. image: {
  34551. source: "./media/characters/huckle/laughing.svg"
  34552. }
  34553. },
  34554. angry: {
  34555. height: math.unit(4.15, "feet"),
  34556. name: "Angry",
  34557. image: {
  34558. source: "./media/characters/huckle/angry.svg"
  34559. }
  34560. },
  34561. },
  34562. [
  34563. {
  34564. name: "Normal",
  34565. height: math.unit(16, "feet"),
  34566. default: true
  34567. },
  34568. {
  34569. name: "Mini Macro",
  34570. height: math.unit(463, "feet")
  34571. },
  34572. {
  34573. name: "Macro",
  34574. height: math.unit(1680, "meters")
  34575. },
  34576. {
  34577. name: "Mega Macro",
  34578. height: math.unit(175, "km")
  34579. },
  34580. {
  34581. name: "Terra Macro",
  34582. height: math.unit(32, "gigameters")
  34583. },
  34584. {
  34585. name: "Multiverse+",
  34586. height: math.unit(2.56e23, "yottameters")
  34587. },
  34588. ]
  34589. ))
  34590. characterMakers.push(() => makeCharacter(
  34591. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34592. {
  34593. front: {
  34594. height: math.unit(6 + 9/12, "feet"),
  34595. weight: math.unit(280, "lb"),
  34596. name: "Front",
  34597. image: {
  34598. source: "./media/characters/candy/front.svg",
  34599. extra: 234/217,
  34600. bottom: 11/245
  34601. }
  34602. },
  34603. },
  34604. [
  34605. {
  34606. name: "Really Small",
  34607. height: math.unit(0.1, "nm")
  34608. },
  34609. {
  34610. name: "Micro",
  34611. height: math.unit(2, "inches")
  34612. },
  34613. {
  34614. name: "Normal",
  34615. height: math.unit(6 + 9/12, "feet"),
  34616. default: true
  34617. },
  34618. {
  34619. name: "Small Macro",
  34620. height: math.unit(69, "feet")
  34621. },
  34622. {
  34623. name: "Macro",
  34624. height: math.unit(160, "feet")
  34625. },
  34626. {
  34627. name: "Megamacro",
  34628. height: math.unit(22000, "miles")
  34629. },
  34630. {
  34631. name: "Gigamacro",
  34632. height: math.unit(50000, "miles")
  34633. },
  34634. ]
  34635. ))
  34636. characterMakers.push(() => makeCharacter(
  34637. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  34638. {
  34639. front: {
  34640. height: math.unit(4, "feet"),
  34641. weight: math.unit(90, "lb"),
  34642. name: "Front",
  34643. image: {
  34644. source: "./media/characters/joey-mcdonald/front.svg",
  34645. extra: 1059/852,
  34646. bottom: 33/1092
  34647. }
  34648. },
  34649. back: {
  34650. height: math.unit(4, "feet"),
  34651. weight: math.unit(90, "lb"),
  34652. name: "Back",
  34653. image: {
  34654. source: "./media/characters/joey-mcdonald/back.svg",
  34655. extra: 1077/879,
  34656. bottom: 5/1082
  34657. }
  34658. },
  34659. frontKobold: {
  34660. height: math.unit(4, "feet"),
  34661. weight: math.unit(100, "lb"),
  34662. name: "Front-kobold",
  34663. image: {
  34664. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  34665. extra: 1480/1367,
  34666. bottom: 0/1480
  34667. }
  34668. },
  34669. backKobold: {
  34670. height: math.unit(4, "feet"),
  34671. weight: math.unit(100, "lb"),
  34672. name: "Back-kobold",
  34673. image: {
  34674. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  34675. extra: 1449/1361,
  34676. bottom: 0/1449
  34677. }
  34678. },
  34679. },
  34680. [
  34681. {
  34682. name: "Normal",
  34683. height: math.unit(4, "feet"),
  34684. default: true
  34685. },
  34686. ]
  34687. ))
  34688. characterMakers.push(() => makeCharacter(
  34689. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34690. {
  34691. front: {
  34692. height: math.unit(12 + 6/12, "feet"),
  34693. name: "Front",
  34694. image: {
  34695. source: "./media/characters/kass-lockheed/front.svg",
  34696. extra: 354/343,
  34697. bottom: 9/363
  34698. }
  34699. },
  34700. back: {
  34701. height: math.unit(12 + 6/12, "feet"),
  34702. name: "Back",
  34703. image: {
  34704. source: "./media/characters/kass-lockheed/back.svg",
  34705. extra: 364/352,
  34706. bottom: 3/367
  34707. }
  34708. },
  34709. dick: {
  34710. height: math.unit(3.12, "feet"),
  34711. name: "Dick",
  34712. image: {
  34713. source: "./media/characters/kass-lockheed/dick.svg"
  34714. }
  34715. },
  34716. head: {
  34717. height: math.unit(2.6, "feet"),
  34718. name: "Head",
  34719. image: {
  34720. source: "./media/characters/kass-lockheed/head.svg"
  34721. }
  34722. },
  34723. bleh: {
  34724. height: math.unit(2.85, "feet"),
  34725. name: "Bleh",
  34726. image: {
  34727. source: "./media/characters/kass-lockheed/bleh.svg"
  34728. }
  34729. },
  34730. smug: {
  34731. height: math.unit(2.85, "feet"),
  34732. name: "Smug",
  34733. image: {
  34734. source: "./media/characters/kass-lockheed/smug.svg"
  34735. }
  34736. },
  34737. },
  34738. [
  34739. {
  34740. name: "Normal",
  34741. height: math.unit(12 + 6/12, "feet"),
  34742. default: true
  34743. },
  34744. ]
  34745. ))
  34746. characterMakers.push(() => makeCharacter(
  34747. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34748. {
  34749. front: {
  34750. height: math.unit(6 + 2/12, "feet"),
  34751. name: "Front",
  34752. image: {
  34753. source: "./media/characters/taylor/front.svg",
  34754. extra: 639/495,
  34755. bottom: 12/651
  34756. }
  34757. },
  34758. },
  34759. [
  34760. {
  34761. name: "Normal",
  34762. height: math.unit(6 + 2/12, "feet"),
  34763. default: true
  34764. },
  34765. {
  34766. name: "Big",
  34767. height: math.unit(15, "feet")
  34768. },
  34769. {
  34770. name: "Lorg",
  34771. height: math.unit(80, "feet")
  34772. },
  34773. {
  34774. name: "Too Lorg",
  34775. height: math.unit(120, "feet")
  34776. },
  34777. ]
  34778. ))
  34779. characterMakers.push(() => makeCharacter(
  34780. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34781. {
  34782. front: {
  34783. height: math.unit(15, "feet"),
  34784. name: "Front",
  34785. image: {
  34786. source: "./media/characters/kaizer/front.svg",
  34787. extra: 1612/1436,
  34788. bottom: 43/1655
  34789. }
  34790. },
  34791. },
  34792. [
  34793. {
  34794. name: "Normal",
  34795. height: math.unit(15, "feet"),
  34796. default: true
  34797. },
  34798. ]
  34799. ))
  34800. characterMakers.push(() => makeCharacter(
  34801. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34802. {
  34803. front: {
  34804. height: math.unit(2, "feet"),
  34805. weight: math.unit(30, "lb"),
  34806. name: "Front",
  34807. image: {
  34808. source: "./media/characters/sandy/front.svg",
  34809. extra: 1439/1307,
  34810. bottom: 194/1633
  34811. }
  34812. },
  34813. },
  34814. [
  34815. {
  34816. name: "Normal",
  34817. height: math.unit(2, "feet"),
  34818. default: true
  34819. },
  34820. ]
  34821. ))
  34822. characterMakers.push(() => makeCharacter(
  34823. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34824. {
  34825. front: {
  34826. height: math.unit(3, "feet"),
  34827. name: "Front",
  34828. image: {
  34829. source: "./media/characters/mellvi/front.svg",
  34830. extra: 1831/1630,
  34831. bottom: 58/1889
  34832. }
  34833. },
  34834. },
  34835. [
  34836. {
  34837. name: "Normal",
  34838. height: math.unit(3, "feet"),
  34839. default: true
  34840. },
  34841. ]
  34842. ))
  34843. characterMakers.push(() => makeCharacter(
  34844. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34845. {
  34846. front: {
  34847. height: math.unit(5 + 11/12, "feet"),
  34848. weight: math.unit(200, "lb"),
  34849. name: "Front",
  34850. image: {
  34851. source: "./media/characters/shirou/front.svg",
  34852. extra: 2491/2383,
  34853. bottom: 189/2680
  34854. }
  34855. },
  34856. back: {
  34857. height: math.unit(5 + 11/12, "feet"),
  34858. weight: math.unit(200, "lb"),
  34859. name: "Back",
  34860. image: {
  34861. source: "./media/characters/shirou/back.svg",
  34862. extra: 2554/2450,
  34863. bottom: 76/2630
  34864. }
  34865. },
  34866. },
  34867. [
  34868. {
  34869. name: "Normal",
  34870. height: math.unit(5 + 11/12, "feet"),
  34871. default: true
  34872. },
  34873. ]
  34874. ))
  34875. characterMakers.push(() => makeCharacter(
  34876. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34877. {
  34878. front: {
  34879. height: math.unit(6 + 3/12, "feet"),
  34880. weight: math.unit(177, "lb"),
  34881. name: "Front",
  34882. image: {
  34883. source: "./media/characters/noryu/front.svg",
  34884. extra: 973/885,
  34885. bottom: 10/983
  34886. }
  34887. },
  34888. },
  34889. [
  34890. {
  34891. name: "Normal",
  34892. height: math.unit(6 + 3/12, "feet"),
  34893. default: true
  34894. },
  34895. ]
  34896. ))
  34897. characterMakers.push(() => makeCharacter(
  34898. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34899. {
  34900. front: {
  34901. height: math.unit(5 + 6/12, "feet"),
  34902. weight: math.unit(170, "lb"),
  34903. name: "Front",
  34904. image: {
  34905. source: "./media/characters/mevolas-rubenido/front.svg",
  34906. extra: 2109/1901,
  34907. bottom: 96/2205
  34908. }
  34909. },
  34910. },
  34911. [
  34912. {
  34913. name: "Normal",
  34914. height: math.unit(5 + 6/12, "feet"),
  34915. default: true
  34916. },
  34917. ]
  34918. ))
  34919. characterMakers.push(() => makeCharacter(
  34920. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34921. {
  34922. front: {
  34923. height: math.unit(100, "feet"),
  34924. name: "Front",
  34925. image: {
  34926. source: "./media/characters/dee/front.svg",
  34927. extra: 2153/2036,
  34928. bottom: 59/2212
  34929. }
  34930. },
  34931. back: {
  34932. height: math.unit(100, "feet"),
  34933. name: "Back",
  34934. image: {
  34935. source: "./media/characters/dee/back.svg",
  34936. extra: 2183/2058,
  34937. bottom: 75/2258
  34938. }
  34939. },
  34940. foot: {
  34941. height: math.unit(19.43, "feet"),
  34942. name: "Foot",
  34943. image: {
  34944. source: "./media/characters/dee/foot.svg"
  34945. }
  34946. },
  34947. hoof: {
  34948. height: math.unit(20.6, "feet"),
  34949. name: "Hoof",
  34950. image: {
  34951. source: "./media/characters/dee/hoof.svg"
  34952. }
  34953. },
  34954. },
  34955. [
  34956. {
  34957. name: "Macro",
  34958. height: math.unit(100, "feet"),
  34959. default: true
  34960. },
  34961. ]
  34962. ))
  34963. characterMakers.push(() => makeCharacter(
  34964. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34965. {
  34966. front: {
  34967. height: math.unit(5 + 6/12, "feet"),
  34968. name: "Front",
  34969. image: {
  34970. source: "./media/characters/teh/front.svg",
  34971. extra: 1002/847,
  34972. bottom: 62/1064
  34973. }
  34974. },
  34975. },
  34976. [
  34977. {
  34978. name: "Normal",
  34979. height: math.unit(5 + 6/12, "feet"),
  34980. default: true
  34981. },
  34982. ]
  34983. ))
  34984. characterMakers.push(() => makeCharacter(
  34985. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34986. {
  34987. side: {
  34988. height: math.unit(6 + 1/12, "feet"),
  34989. weight: math.unit(204, "lb"),
  34990. name: "Side",
  34991. image: {
  34992. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34993. extra: 974/775,
  34994. bottom: 169/1143
  34995. }
  34996. },
  34997. sitting: {
  34998. height: math.unit(6 + 2/12, "feet"),
  34999. weight: math.unit(204, "lb"),
  35000. name: "Sitting",
  35001. image: {
  35002. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35003. extra: 1175/964,
  35004. bottom: 378/1553
  35005. }
  35006. },
  35007. },
  35008. [
  35009. {
  35010. name: "Normal",
  35011. height: math.unit(6 + 1/12, "feet"),
  35012. default: true
  35013. },
  35014. ]
  35015. ))
  35016. characterMakers.push(() => makeCharacter(
  35017. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35018. {
  35019. front: {
  35020. height: math.unit(6, "inches"),
  35021. name: "Front",
  35022. image: {
  35023. source: "./media/characters/tululi/front.svg",
  35024. extra: 1997/1876,
  35025. bottom: 20/2017
  35026. }
  35027. },
  35028. },
  35029. [
  35030. {
  35031. name: "Normal",
  35032. height: math.unit(6, "inches"),
  35033. default: true
  35034. },
  35035. ]
  35036. ))
  35037. characterMakers.push(() => makeCharacter(
  35038. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35039. {
  35040. front: {
  35041. height: math.unit(4 + 1/12, "feet"),
  35042. name: "Front",
  35043. image: {
  35044. source: "./media/characters/star/front.svg",
  35045. extra: 1493/1189,
  35046. bottom: 48/1541
  35047. }
  35048. },
  35049. },
  35050. [
  35051. {
  35052. name: "Normal",
  35053. height: math.unit(4 + 1/12, "feet"),
  35054. default: true
  35055. },
  35056. ]
  35057. ))
  35058. characterMakers.push(() => makeCharacter(
  35059. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35060. {
  35061. front: {
  35062. height: math.unit(6 + 3/12, "feet"),
  35063. name: "Front",
  35064. image: {
  35065. source: "./media/characters/comet/front.svg",
  35066. extra: 1681/1462,
  35067. bottom: 26/1707
  35068. }
  35069. },
  35070. },
  35071. [
  35072. {
  35073. name: "Normal",
  35074. height: math.unit(6 + 3/12, "feet"),
  35075. default: true
  35076. },
  35077. ]
  35078. ))
  35079. characterMakers.push(() => makeCharacter(
  35080. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35081. {
  35082. front: {
  35083. height: math.unit(950, "feet"),
  35084. name: "Front",
  35085. image: {
  35086. source: "./media/characters/vortex/front.svg",
  35087. extra: 1497/1434,
  35088. bottom: 56/1553
  35089. }
  35090. },
  35091. maw: {
  35092. height: math.unit(285, "feet"),
  35093. name: "Maw",
  35094. image: {
  35095. source: "./media/characters/vortex/maw.svg"
  35096. }
  35097. },
  35098. },
  35099. [
  35100. {
  35101. name: "Macro",
  35102. height: math.unit(950, "feet"),
  35103. default: true
  35104. },
  35105. ]
  35106. ))
  35107. characterMakers.push(() => makeCharacter(
  35108. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35109. {
  35110. front: {
  35111. height: math.unit(600, "feet"),
  35112. weight: math.unit(0.02, "grams"),
  35113. name: "Front",
  35114. image: {
  35115. source: "./media/characters/doodle/front.svg",
  35116. extra: 1578/1413,
  35117. bottom: 37/1615
  35118. }
  35119. },
  35120. },
  35121. [
  35122. {
  35123. name: "Macro",
  35124. height: math.unit(600, "feet"),
  35125. default: true
  35126. },
  35127. ]
  35128. ))
  35129. characterMakers.push(() => makeCharacter(
  35130. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35131. {
  35132. front: {
  35133. height: math.unit(6 + 6/12, "feet"),
  35134. name: "Front",
  35135. image: {
  35136. source: "./media/characters/jai/front.svg",
  35137. extra: 1645/1534,
  35138. bottom: 115/1760
  35139. }
  35140. },
  35141. },
  35142. [
  35143. {
  35144. name: "Normal",
  35145. height: math.unit(6 + 6/12, "feet"),
  35146. default: true
  35147. },
  35148. ]
  35149. ))
  35150. characterMakers.push(() => makeCharacter(
  35151. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35152. {
  35153. front: {
  35154. height: math.unit(6 + 8/12, "feet"),
  35155. name: "Front",
  35156. image: {
  35157. source: "./media/characters/pixel/front.svg",
  35158. extra: 1900/1735,
  35159. bottom: 63/1963
  35160. }
  35161. },
  35162. },
  35163. [
  35164. {
  35165. name: "Normal",
  35166. height: math.unit(6 + 8/12, "feet"),
  35167. default: true
  35168. },
  35169. ]
  35170. ))
  35171. characterMakers.push(() => makeCharacter(
  35172. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35173. {
  35174. front: {
  35175. height: math.unit(4 + 11/12, "feet"),
  35176. weight: math.unit(111, "lb"),
  35177. name: "Front",
  35178. image: {
  35179. source: "./media/characters/rhett/front.svg",
  35180. extra: 1682/1586,
  35181. bottom: 92/1774
  35182. }
  35183. },
  35184. },
  35185. [
  35186. {
  35187. name: "Mini",
  35188. height: math.unit(1 + 1/12, "feet")
  35189. },
  35190. {
  35191. name: "Normal",
  35192. height: math.unit(4 + 11/12, "feet"),
  35193. default: true
  35194. },
  35195. ]
  35196. ))
  35197. characterMakers.push(() => makeCharacter(
  35198. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35199. {
  35200. front: {
  35201. height: math.unit(3 + 3/12, "feet"),
  35202. name: "Front",
  35203. image: {
  35204. source: "./media/characters/penny/front.svg",
  35205. extra: 1406/1311,
  35206. bottom: 26/1432
  35207. }
  35208. },
  35209. },
  35210. [
  35211. {
  35212. name: "Normal",
  35213. height: math.unit(3 + 3/12, "feet"),
  35214. default: true
  35215. },
  35216. ]
  35217. ))
  35218. characterMakers.push(() => makeCharacter(
  35219. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35220. {
  35221. front: {
  35222. height: math.unit(4 + 11/12, "feet"),
  35223. name: "Front",
  35224. image: {
  35225. source: "./media/characters/monty/front.svg",
  35226. extra: 1479/1209,
  35227. bottom: 0/1479
  35228. }
  35229. },
  35230. },
  35231. [
  35232. {
  35233. name: "Normal",
  35234. height: math.unit(4 + 11/12, "feet"),
  35235. default: true
  35236. },
  35237. ]
  35238. ))
  35239. characterMakers.push(() => makeCharacter(
  35240. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35241. {
  35242. front: {
  35243. height: math.unit(8 + 4/12, "feet"),
  35244. name: "Front",
  35245. image: {
  35246. source: "./media/characters/sterling/front.svg",
  35247. extra: 1420/1236,
  35248. bottom: 27/1447
  35249. }
  35250. },
  35251. },
  35252. [
  35253. {
  35254. name: "Normal",
  35255. height: math.unit(8 + 4/12, "feet"),
  35256. default: true
  35257. },
  35258. ]
  35259. ))
  35260. characterMakers.push(() => makeCharacter(
  35261. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35262. {
  35263. front: {
  35264. height: math.unit(15, "feet"),
  35265. name: "Front",
  35266. image: {
  35267. source: "./media/characters/marble/front.svg",
  35268. extra: 973/937,
  35269. bottom: 32/1005
  35270. }
  35271. },
  35272. },
  35273. [
  35274. {
  35275. name: "Normal",
  35276. height: math.unit(15, "feet"),
  35277. default: true
  35278. },
  35279. ]
  35280. ))
  35281. characterMakers.push(() => makeCharacter(
  35282. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35283. {
  35284. front: {
  35285. height: math.unit(3, "inches"),
  35286. name: "Front",
  35287. image: {
  35288. source: "./media/characters/powder/front.svg",
  35289. extra: 1504/1334,
  35290. bottom: 518/2022
  35291. }
  35292. },
  35293. },
  35294. [
  35295. {
  35296. name: "Normal",
  35297. height: math.unit(3, "inches"),
  35298. default: true
  35299. },
  35300. ]
  35301. ))
  35302. characterMakers.push(() => makeCharacter(
  35303. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35304. {
  35305. front: {
  35306. height: math.unit(4 + 5/12, "feet"),
  35307. name: "Front",
  35308. image: {
  35309. source: "./media/characters/joey-raccoon/front.svg",
  35310. extra: 1273/1197,
  35311. bottom: 0/1273
  35312. }
  35313. },
  35314. },
  35315. [
  35316. {
  35317. name: "Normal",
  35318. height: math.unit(4 + 5/12, "feet"),
  35319. default: true
  35320. },
  35321. ]
  35322. ))
  35323. characterMakers.push(() => makeCharacter(
  35324. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35325. {
  35326. front: {
  35327. height: math.unit(8 + 4/12, "feet"),
  35328. name: "Front",
  35329. image: {
  35330. source: "./media/characters/vick/front.svg",
  35331. extra: 2187/2118,
  35332. bottom: 47/2234
  35333. }
  35334. },
  35335. },
  35336. [
  35337. {
  35338. name: "Normal",
  35339. height: math.unit(8 + 4/12, "feet"),
  35340. default: true
  35341. },
  35342. ]
  35343. ))
  35344. characterMakers.push(() => makeCharacter(
  35345. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35346. {
  35347. front: {
  35348. height: math.unit(5 + 5/12, "feet"),
  35349. name: "Front",
  35350. image: {
  35351. source: "./media/characters/mitsy/front.svg",
  35352. extra: 1842/1695,
  35353. bottom: 0/1842
  35354. }
  35355. },
  35356. },
  35357. [
  35358. {
  35359. name: "Normal",
  35360. height: math.unit(5 + 5/12, "feet"),
  35361. default: true
  35362. },
  35363. ]
  35364. ))
  35365. characterMakers.push(() => makeCharacter(
  35366. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35367. {
  35368. front: {
  35369. height: math.unit(6 + 3/12, "feet"),
  35370. name: "Front",
  35371. image: {
  35372. source: "./media/characters/silvy/front.svg",
  35373. extra: 1995/1836,
  35374. bottom: 225/2220
  35375. }
  35376. },
  35377. },
  35378. [
  35379. {
  35380. name: "Normal",
  35381. height: math.unit(6 + 3/12, "feet"),
  35382. default: true
  35383. },
  35384. ]
  35385. ))
  35386. characterMakers.push(() => makeCharacter(
  35387. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35388. {
  35389. front: {
  35390. height: math.unit(3 + 8/12, "feet"),
  35391. name: "Front",
  35392. image: {
  35393. source: "./media/characters/rodney/front.svg",
  35394. extra: 1956/1747,
  35395. bottom: 31/1987
  35396. }
  35397. },
  35398. frontDressed: {
  35399. height: math.unit(2.9, "feet"),
  35400. name: "Front (Dressed)",
  35401. image: {
  35402. source: "./media/characters/rodney/front-dressed.svg",
  35403. extra: 1382/1241,
  35404. bottom: 385/1767
  35405. }
  35406. },
  35407. },
  35408. [
  35409. {
  35410. name: "Normal",
  35411. height: math.unit(3 + 8/12, "feet"),
  35412. default: true
  35413. },
  35414. ]
  35415. ))
  35416. characterMakers.push(() => makeCharacter(
  35417. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35418. {
  35419. front: {
  35420. height: math.unit(5 + 9/12, "feet"),
  35421. weight: math.unit(194, "lbs"),
  35422. name: "Front",
  35423. image: {
  35424. source: "./media/characters/zakail-sudekai/front.svg",
  35425. extra: 2696/2533,
  35426. bottom: 248/2944
  35427. }
  35428. },
  35429. maw: {
  35430. height: math.unit(1.35, "feet"),
  35431. name: "Maw",
  35432. image: {
  35433. source: "./media/characters/zakail-sudekai/maw.svg"
  35434. }
  35435. },
  35436. },
  35437. [
  35438. {
  35439. name: "Normal",
  35440. height: math.unit(5 + 9/12, "feet"),
  35441. default: true
  35442. },
  35443. ]
  35444. ))
  35445. characterMakers.push(() => makeCharacter(
  35446. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35447. {
  35448. front: {
  35449. height: math.unit(8 + 4/12, "feet"),
  35450. weight: math.unit(1200, "lb"),
  35451. name: "Front",
  35452. image: {
  35453. source: "./media/characters/eleanor/front.svg",
  35454. extra: 1226/1192,
  35455. bottom: 52/1278
  35456. }
  35457. },
  35458. back: {
  35459. height: math.unit(8 + 4/12, "feet"),
  35460. weight: math.unit(1200, "lb"),
  35461. name: "Back",
  35462. image: {
  35463. source: "./media/characters/eleanor/back.svg",
  35464. extra: 1242/1184,
  35465. bottom: 60/1302
  35466. }
  35467. },
  35468. head: {
  35469. height: math.unit(2.62, "feet"),
  35470. name: "Head",
  35471. image: {
  35472. source: "./media/characters/eleanor/head.svg"
  35473. }
  35474. },
  35475. },
  35476. [
  35477. {
  35478. name: "Normal",
  35479. height: math.unit(8 + 4/12, "feet"),
  35480. default: true
  35481. },
  35482. ]
  35483. ))
  35484. characterMakers.push(() => makeCharacter(
  35485. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35486. {
  35487. front: {
  35488. height: math.unit(8 + 4/12, "feet"),
  35489. weight: math.unit(750, "lb"),
  35490. name: "Front",
  35491. image: {
  35492. source: "./media/characters/tanya/front.svg",
  35493. extra: 1749/1615,
  35494. bottom: 33/1782
  35495. }
  35496. },
  35497. },
  35498. [
  35499. {
  35500. name: "Normal",
  35501. height: math.unit(8 + 4/12, "feet"),
  35502. default: true
  35503. },
  35504. ]
  35505. ))
  35506. characterMakers.push(() => makeCharacter(
  35507. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35508. {
  35509. front: {
  35510. height: math.unit(5, "feet"),
  35511. weight: math.unit(225, "lb"),
  35512. name: "Front",
  35513. image: {
  35514. source: "./media/characters/cindy/front.svg",
  35515. extra: 1320/1250,
  35516. bottom: 42/1362
  35517. }
  35518. },
  35519. frontDressed: {
  35520. height: math.unit(5, "feet"),
  35521. weight: math.unit(225, "lb"),
  35522. name: "Front (Dressed)",
  35523. image: {
  35524. source: "./media/characters/cindy/front-dressed.svg",
  35525. extra: 1320/1250,
  35526. bottom: 42/1362
  35527. }
  35528. },
  35529. back: {
  35530. height: math.unit(5, "feet"),
  35531. weight: math.unit(225, "lb"),
  35532. name: "Back",
  35533. image: {
  35534. source: "./media/characters/cindy/back.svg",
  35535. extra: 1384/1346,
  35536. bottom: 14/1398
  35537. }
  35538. },
  35539. },
  35540. [
  35541. {
  35542. name: "Normal",
  35543. height: math.unit(5, "feet"),
  35544. default: true
  35545. },
  35546. ]
  35547. ))
  35548. characterMakers.push(() => makeCharacter(
  35549. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35550. {
  35551. front: {
  35552. height: math.unit(6 + 9/12, "feet"),
  35553. weight: math.unit(440, "lb"),
  35554. name: "Front",
  35555. image: {
  35556. source: "./media/characters/wilbur-owen/front.svg",
  35557. extra: 1575/1448,
  35558. bottom: 72/1647
  35559. }
  35560. },
  35561. back: {
  35562. height: math.unit(6 + 9/12, "feet"),
  35563. weight: math.unit(440, "lb"),
  35564. name: "Back",
  35565. image: {
  35566. source: "./media/characters/wilbur-owen/back.svg",
  35567. extra: 1578/1445,
  35568. bottom: 36/1614
  35569. }
  35570. },
  35571. },
  35572. [
  35573. {
  35574. name: "Normal",
  35575. height: math.unit(6 + 9/12, "feet"),
  35576. default: true
  35577. },
  35578. ]
  35579. ))
  35580. characterMakers.push(() => makeCharacter(
  35581. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35582. {
  35583. front: {
  35584. height: math.unit(6 + 5/12, "feet"),
  35585. weight: math.unit(650, "lb"),
  35586. name: "Front",
  35587. image: {
  35588. source: "./media/characters/keegan/front.svg",
  35589. extra: 2387/2198,
  35590. bottom: 33/2420
  35591. }
  35592. },
  35593. side: {
  35594. height: math.unit(6 + 5/12, "feet"),
  35595. weight: math.unit(650, "lb"),
  35596. name: "Side",
  35597. image: {
  35598. source: "./media/characters/keegan/side.svg",
  35599. extra: 2390/2202,
  35600. bottom: 47/2437
  35601. }
  35602. },
  35603. back: {
  35604. height: math.unit(6 + 5/12, "feet"),
  35605. weight: math.unit(650, "lb"),
  35606. name: "Back",
  35607. image: {
  35608. source: "./media/characters/keegan/back.svg",
  35609. extra: 2418/2268,
  35610. bottom: 15/2433
  35611. }
  35612. },
  35613. frontSfw: {
  35614. height: math.unit(6 + 5/12, "feet"),
  35615. weight: math.unit(650, "lb"),
  35616. name: "Front (SFW)",
  35617. image: {
  35618. source: "./media/characters/keegan/front-sfw.svg",
  35619. extra: 2387/2198,
  35620. bottom: 33/2420
  35621. }
  35622. },
  35623. beans: {
  35624. height: math.unit(1.85, "feet"),
  35625. name: "Beans",
  35626. image: {
  35627. source: "./media/characters/keegan/beans.svg"
  35628. }
  35629. },
  35630. },
  35631. [
  35632. {
  35633. name: "Normal",
  35634. height: math.unit(6 + 5/12, "feet"),
  35635. default: true
  35636. },
  35637. ]
  35638. ))
  35639. characterMakers.push(() => makeCharacter(
  35640. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35641. {
  35642. front: {
  35643. height: math.unit(9, "feet"),
  35644. name: "Front",
  35645. image: {
  35646. source: "./media/characters/colton/front.svg",
  35647. extra: 1589/1326,
  35648. bottom: 139/1728
  35649. }
  35650. },
  35651. },
  35652. [
  35653. {
  35654. name: "Normal",
  35655. height: math.unit(9, "feet"),
  35656. default: true
  35657. },
  35658. ]
  35659. ))
  35660. characterMakers.push(() => makeCharacter(
  35661. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35662. {
  35663. front: {
  35664. height: math.unit(2 + 9/12, "feet"),
  35665. name: "Front",
  35666. image: {
  35667. source: "./media/characters/bora/front.svg",
  35668. extra: 1265/1250,
  35669. bottom: 24/1289
  35670. }
  35671. },
  35672. },
  35673. [
  35674. {
  35675. name: "Normal",
  35676. height: math.unit(2 + 9/12, "feet"),
  35677. default: true
  35678. },
  35679. ]
  35680. ))
  35681. characterMakers.push(() => makeCharacter(
  35682. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35683. {
  35684. front: {
  35685. height: math.unit(8, "feet"),
  35686. name: "Front",
  35687. image: {
  35688. source: "./media/characters/myu-myu/front.svg",
  35689. extra: 1949/1857,
  35690. bottom: 90/2039
  35691. }
  35692. },
  35693. },
  35694. [
  35695. {
  35696. name: "Normal",
  35697. height: math.unit(8, "feet"),
  35698. default: true
  35699. },
  35700. {
  35701. name: "Big",
  35702. height: math.unit(15, "feet")
  35703. },
  35704. {
  35705. name: "BIG",
  35706. height: math.unit(25, "feet")
  35707. },
  35708. ]
  35709. ))
  35710. characterMakers.push(() => makeCharacter(
  35711. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35712. {
  35713. side: {
  35714. height: math.unit(7 + 5/12, "feet"),
  35715. weight: math.unit(2800, "lb"),
  35716. name: "Side",
  35717. image: {
  35718. source: "./media/characters/haloren/side.svg",
  35719. extra: 1793/409,
  35720. bottom: 59/1852
  35721. }
  35722. },
  35723. frontPaw: {
  35724. height: math.unit(2.36, "feet"),
  35725. name: "Front paw",
  35726. image: {
  35727. source: "./media/characters/haloren/front-paw.svg"
  35728. }
  35729. },
  35730. hindPaw: {
  35731. height: math.unit(3.18, "feet"),
  35732. name: "Hind paw",
  35733. image: {
  35734. source: "./media/characters/haloren/hind-paw.svg"
  35735. }
  35736. },
  35737. maw: {
  35738. height: math.unit(5.05, "feet"),
  35739. name: "Maw",
  35740. image: {
  35741. source: "./media/characters/haloren/maw.svg"
  35742. }
  35743. },
  35744. dick: {
  35745. height: math.unit(2.90, "feet"),
  35746. name: "Dick",
  35747. image: {
  35748. source: "./media/characters/haloren/dick.svg"
  35749. }
  35750. },
  35751. },
  35752. [
  35753. {
  35754. name: "Normal",
  35755. height: math.unit(7 + 5/12, "feet"),
  35756. default: true
  35757. },
  35758. {
  35759. name: "Enhanced",
  35760. height: math.unit(14 + 3/12, "feet")
  35761. },
  35762. ]
  35763. ))
  35764. characterMakers.push(() => makeCharacter(
  35765. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35766. {
  35767. front: {
  35768. height: math.unit(171, "cm"),
  35769. name: "Front",
  35770. image: {
  35771. source: "./media/characters/kimmy/front.svg",
  35772. extra: 1491/1435,
  35773. bottom: 53/1544
  35774. }
  35775. },
  35776. },
  35777. [
  35778. {
  35779. name: "Small",
  35780. height: math.unit(9, "cm")
  35781. },
  35782. {
  35783. name: "Normal",
  35784. height: math.unit(171, "cm"),
  35785. default: true
  35786. },
  35787. ]
  35788. ))
  35789. characterMakers.push(() => makeCharacter(
  35790. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35791. {
  35792. front: {
  35793. height: math.unit(8, "feet"),
  35794. weight: math.unit(300, "lb"),
  35795. name: "Front",
  35796. image: {
  35797. source: "./media/characters/galeboomer/front.svg",
  35798. extra: 4651/4415,
  35799. bottom: 162/4813
  35800. }
  35801. },
  35802. back: {
  35803. height: math.unit(8, "feet"),
  35804. weight: math.unit(300, "lb"),
  35805. name: "Back",
  35806. image: {
  35807. source: "./media/characters/galeboomer/back.svg",
  35808. extra: 4544/4314,
  35809. bottom: 16/4560
  35810. }
  35811. },
  35812. frontAlt: {
  35813. height: math.unit(8, "feet"),
  35814. weight: math.unit(300, "lb"),
  35815. name: "Front (Alt)",
  35816. image: {
  35817. source: "./media/characters/galeboomer/front-alt.svg",
  35818. extra: 4458/4228,
  35819. bottom: 68/4526
  35820. }
  35821. },
  35822. maw: {
  35823. height: math.unit(1.2, "feet"),
  35824. name: "Maw",
  35825. image: {
  35826. source: "./media/characters/galeboomer/maw.svg"
  35827. }
  35828. },
  35829. },
  35830. [
  35831. {
  35832. name: "Normal",
  35833. height: math.unit(8, "feet"),
  35834. default: true
  35835. },
  35836. ]
  35837. ))
  35838. characterMakers.push(() => makeCharacter(
  35839. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35840. {
  35841. front: {
  35842. height: math.unit(5 + 9/12, "feet"),
  35843. weight: math.unit(120, "lb"),
  35844. name: "Front",
  35845. image: {
  35846. source: "./media/characters/chyr/front.svg",
  35847. extra: 1323/1254,
  35848. bottom: 63/1386
  35849. }
  35850. },
  35851. back: {
  35852. height: math.unit(5 + 9/12, "feet"),
  35853. weight: math.unit(120, "lb"),
  35854. name: "Back",
  35855. image: {
  35856. source: "./media/characters/chyr/back.svg",
  35857. extra: 1323/1252,
  35858. bottom: 48/1371
  35859. }
  35860. },
  35861. },
  35862. [
  35863. {
  35864. name: "Normal",
  35865. height: math.unit(5 + 9/12, "feet"),
  35866. default: true
  35867. },
  35868. ]
  35869. ))
  35870. characterMakers.push(() => makeCharacter(
  35871. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35872. {
  35873. front: {
  35874. height: math.unit(7, "feet"),
  35875. weight: math.unit(310, "lb"),
  35876. name: "Front",
  35877. image: {
  35878. source: "./media/characters/solarus/front.svg",
  35879. extra: 2415/2021,
  35880. bottom: 103/2518
  35881. }
  35882. },
  35883. back: {
  35884. height: math.unit(7, "feet"),
  35885. weight: math.unit(310, "lb"),
  35886. name: "Back",
  35887. image: {
  35888. source: "./media/characters/solarus/back.svg",
  35889. extra: 2463/2089,
  35890. bottom: 79/2542
  35891. }
  35892. },
  35893. },
  35894. [
  35895. {
  35896. name: "Normal",
  35897. height: math.unit(7, "feet"),
  35898. default: true
  35899. },
  35900. ]
  35901. ))
  35902. characterMakers.push(() => makeCharacter(
  35903. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35904. {
  35905. front: {
  35906. height: math.unit(16, "feet"),
  35907. name: "Front",
  35908. image: {
  35909. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35910. extra: 1844/1780,
  35911. bottom: 58/1902
  35912. }
  35913. },
  35914. winterCoat: {
  35915. height: math.unit(16, "feet"),
  35916. name: "Winter Coat",
  35917. image: {
  35918. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  35919. extra: 1807/1775,
  35920. bottom: 69/1876
  35921. }
  35922. },
  35923. },
  35924. [
  35925. {
  35926. name: "Normal",
  35927. height: math.unit(16, "feet"),
  35928. default: true
  35929. },
  35930. {
  35931. name: "Chicago Size",
  35932. height: math.unit(560, "feet")
  35933. },
  35934. ]
  35935. ))
  35936. characterMakers.push(() => makeCharacter(
  35937. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35938. {
  35939. front: {
  35940. height: math.unit(11 + 6/12, "feet"),
  35941. weight: math.unit(1366, "lb"),
  35942. name: "Front",
  35943. image: {
  35944. source: "./media/characters/lexor/front.svg",
  35945. extra: 1560/1481,
  35946. bottom: 211/1771
  35947. }
  35948. },
  35949. back: {
  35950. height: math.unit(11 + 6/12, "feet"),
  35951. weight: math.unit(1366, "lb"),
  35952. name: "Back",
  35953. image: {
  35954. source: "./media/characters/lexor/back.svg",
  35955. extra: 1614/1533,
  35956. bottom: 76/1690
  35957. }
  35958. },
  35959. maw: {
  35960. height: math.unit(3, "feet"),
  35961. name: "Maw",
  35962. image: {
  35963. source: "./media/characters/lexor/maw.svg"
  35964. }
  35965. },
  35966. dick: {
  35967. height: math.unit(2.59, "feet"),
  35968. name: "Dick",
  35969. image: {
  35970. source: "./media/characters/lexor/dick.svg"
  35971. }
  35972. },
  35973. },
  35974. [
  35975. {
  35976. name: "Normal",
  35977. height: math.unit(11 + 6/12, "feet"),
  35978. default: true
  35979. },
  35980. ]
  35981. ))
  35982. characterMakers.push(() => makeCharacter(
  35983. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35984. {
  35985. front: {
  35986. height: math.unit(5 + 8/12, "feet"),
  35987. name: "Front",
  35988. image: {
  35989. source: "./media/characters/magnum/front.svg",
  35990. extra: 942/855,
  35991. bottom: 26/968
  35992. }
  35993. },
  35994. },
  35995. [
  35996. {
  35997. name: "Normal",
  35998. height: math.unit(5 + 8/12, "feet"),
  35999. default: true
  36000. },
  36001. ]
  36002. ))
  36003. characterMakers.push(() => makeCharacter(
  36004. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36005. {
  36006. front: {
  36007. height: math.unit(18 + 4/12, "feet"),
  36008. weight: math.unit(1500, "kg"),
  36009. name: "Front",
  36010. image: {
  36011. source: "./media/characters/solas-sharpsman/front.svg",
  36012. extra: 1698/1589,
  36013. bottom: 0/1698
  36014. }
  36015. },
  36016. },
  36017. [
  36018. {
  36019. name: "Normal",
  36020. height: math.unit(18 + 4/12, "feet"),
  36021. default: true
  36022. },
  36023. ]
  36024. ))
  36025. characterMakers.push(() => makeCharacter(
  36026. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36027. {
  36028. front: {
  36029. height: math.unit(5 + 5/12, "feet"),
  36030. weight: math.unit(180, "lb"),
  36031. name: "Front",
  36032. image: {
  36033. source: "./media/characters/october/front.svg",
  36034. extra: 1800/1650,
  36035. bottom: 0/1800
  36036. }
  36037. },
  36038. frontNsfw: {
  36039. height: math.unit(5 + 5/12, "feet"),
  36040. weight: math.unit(180, "lb"),
  36041. name: "Front (NSFW)",
  36042. image: {
  36043. source: "./media/characters/october/front-nsfw.svg",
  36044. extra: 1392/1307,
  36045. bottom: 42/1434
  36046. }
  36047. },
  36048. },
  36049. [
  36050. {
  36051. name: "Normal",
  36052. height: math.unit(5 + 5/12, "feet"),
  36053. default: true
  36054. },
  36055. ]
  36056. ))
  36057. characterMakers.push(() => makeCharacter(
  36058. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36059. {
  36060. front: {
  36061. height: math.unit(8 + 6/12, "feet"),
  36062. name: "Front",
  36063. image: {
  36064. source: "./media/characters/essynkardi/front.svg",
  36065. extra: 1914/1846,
  36066. bottom: 22/1936
  36067. }
  36068. },
  36069. },
  36070. [
  36071. {
  36072. name: "Normal",
  36073. height: math.unit(8 + 6/12, "feet"),
  36074. default: true
  36075. },
  36076. ]
  36077. ))
  36078. characterMakers.push(() => makeCharacter(
  36079. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36080. {
  36081. front: {
  36082. height: math.unit(6 + 6/12, "feet"),
  36083. weight: math.unit(7, "lb"),
  36084. name: "Front",
  36085. image: {
  36086. source: "./media/characters/icky/front.svg",
  36087. extra: 813/782,
  36088. bottom: 66/879
  36089. }
  36090. },
  36091. back: {
  36092. height: math.unit(6 + 6/12, "feet"),
  36093. weight: math.unit(7, "lb"),
  36094. name: "Back",
  36095. image: {
  36096. source: "./media/characters/icky/back.svg",
  36097. extra: 754/735,
  36098. bottom: 56/810
  36099. }
  36100. },
  36101. },
  36102. [
  36103. {
  36104. name: "Normal",
  36105. height: math.unit(6 + 6/12, "feet"),
  36106. default: true
  36107. },
  36108. ]
  36109. ))
  36110. characterMakers.push(() => makeCharacter(
  36111. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36112. {
  36113. front: {
  36114. height: math.unit(15, "feet"),
  36115. name: "Front",
  36116. image: {
  36117. source: "./media/characters/rojas/front.svg",
  36118. extra: 1462/1408,
  36119. bottom: 95/1557
  36120. }
  36121. },
  36122. back: {
  36123. height: math.unit(15, "feet"),
  36124. name: "Back",
  36125. image: {
  36126. source: "./media/characters/rojas/back.svg",
  36127. extra: 1023/954,
  36128. bottom: 28/1051
  36129. }
  36130. },
  36131. },
  36132. [
  36133. {
  36134. name: "Normal",
  36135. height: math.unit(15, "feet"),
  36136. default: true
  36137. },
  36138. ]
  36139. ))
  36140. characterMakers.push(() => makeCharacter(
  36141. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36142. {
  36143. frontHuman: {
  36144. height: math.unit(5 + 7/12, "feet"),
  36145. name: "Front (Human)",
  36146. image: {
  36147. source: "./media/characters/alek-dryagan/front-human.svg",
  36148. extra: 1687/1667,
  36149. bottom: 69/1756
  36150. }
  36151. },
  36152. backHuman: {
  36153. height: math.unit(5 + 7/12, "feet"),
  36154. name: "Back (Human)",
  36155. image: {
  36156. source: "./media/characters/alek-dryagan/back-human.svg",
  36157. extra: 1670/1649,
  36158. bottom: 65/1735
  36159. }
  36160. },
  36161. frontDemi: {
  36162. height: math.unit(65, "feet"),
  36163. name: "Front (Demi)",
  36164. image: {
  36165. source: "./media/characters/alek-dryagan/front-demi.svg",
  36166. extra: 1669/1642,
  36167. bottom: 49/1718
  36168. }
  36169. },
  36170. backDemi: {
  36171. height: math.unit(65, "feet"),
  36172. name: "Back (Demi)",
  36173. image: {
  36174. source: "./media/characters/alek-dryagan/back-demi.svg",
  36175. extra: 1658/1637,
  36176. bottom: 40/1698
  36177. }
  36178. },
  36179. mawHuman: {
  36180. height: math.unit(0.3, "feet"),
  36181. name: "Maw (Human)",
  36182. image: {
  36183. source: "./media/characters/alek-dryagan/maw-human.svg"
  36184. }
  36185. },
  36186. mawDemi: {
  36187. height: math.unit(3.8, "feet"),
  36188. name: "Maw (Demi)",
  36189. image: {
  36190. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36191. }
  36192. },
  36193. },
  36194. [
  36195. {
  36196. name: "Normal",
  36197. height: math.unit(5 + 7/12, "feet"),
  36198. default: true
  36199. },
  36200. ]
  36201. ))
  36202. characterMakers.push(() => makeCharacter(
  36203. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36204. {
  36205. frontHuman: {
  36206. height: math.unit(5 + 2/12, "feet"),
  36207. name: "Front (Human)",
  36208. image: {
  36209. source: "./media/characters/gen/front-human.svg",
  36210. extra: 1627/1538,
  36211. bottom: 71/1698
  36212. }
  36213. },
  36214. backHuman: {
  36215. height: math.unit(5 + 2/12, "feet"),
  36216. name: "Back (Human)",
  36217. image: {
  36218. source: "./media/characters/gen/back-human.svg",
  36219. extra: 1638/1548,
  36220. bottom: 69/1707
  36221. }
  36222. },
  36223. frontDemi: {
  36224. height: math.unit(5 + 2/12, "feet"),
  36225. name: "Front (Demi)",
  36226. image: {
  36227. source: "./media/characters/gen/front-demi.svg",
  36228. extra: 1627/1538,
  36229. bottom: 71/1698
  36230. }
  36231. },
  36232. backDemi: {
  36233. height: math.unit(5 + 2/12, "feet"),
  36234. name: "Back (Demi)",
  36235. image: {
  36236. source: "./media/characters/gen/back-demi.svg",
  36237. extra: 1638/1548,
  36238. bottom: 69/1707
  36239. }
  36240. },
  36241. },
  36242. [
  36243. {
  36244. name: "Normal",
  36245. height: math.unit(5 + 2/12, "feet"),
  36246. default: true
  36247. },
  36248. ]
  36249. ))
  36250. characterMakers.push(() => makeCharacter(
  36251. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36252. {
  36253. frontImp: {
  36254. height: math.unit(1 + 11/12, "feet"),
  36255. name: "Front (Imp)",
  36256. image: {
  36257. source: "./media/characters/max-kobold/front-imp.svg",
  36258. extra: 1238/1134,
  36259. bottom: 81/1319
  36260. }
  36261. },
  36262. backImp: {
  36263. height: math.unit(1 + 11/12, "feet"),
  36264. name: "Back (Imp)",
  36265. image: {
  36266. source: "./media/characters/max-kobold/back-imp.svg",
  36267. extra: 1334/1175,
  36268. bottom: 34/1368
  36269. }
  36270. },
  36271. frontDemi: {
  36272. height: math.unit(5 + 9/12, "feet"),
  36273. name: "Front (Demi)",
  36274. image: {
  36275. source: "./media/characters/max-kobold/front-demi.svg",
  36276. extra: 1715/1685,
  36277. bottom: 54/1769
  36278. }
  36279. },
  36280. backDemi: {
  36281. height: math.unit(5 + 9/12, "feet"),
  36282. name: "Back (Demi)",
  36283. image: {
  36284. source: "./media/characters/max-kobold/back-demi.svg",
  36285. extra: 1752/1729,
  36286. bottom: 41/1793
  36287. }
  36288. },
  36289. handImp: {
  36290. height: math.unit(0.45, "feet"),
  36291. name: "Hand (Imp)",
  36292. image: {
  36293. source: "./media/characters/max-kobold/hand.svg"
  36294. }
  36295. },
  36296. pawImp: {
  36297. height: math.unit(0.46, "feet"),
  36298. name: "Paw (Imp)",
  36299. image: {
  36300. source: "./media/characters/max-kobold/paw.svg"
  36301. }
  36302. },
  36303. handDemi: {
  36304. height: math.unit(0.80, "feet"),
  36305. name: "Hand (Demi)",
  36306. image: {
  36307. source: "./media/characters/max-kobold/hand.svg"
  36308. }
  36309. },
  36310. pawDemi: {
  36311. height: math.unit(1.1, "feet"),
  36312. name: "Paw (Demi)",
  36313. image: {
  36314. source: "./media/characters/max-kobold/paw.svg"
  36315. }
  36316. },
  36317. headImp: {
  36318. height: math.unit(1.33, "feet"),
  36319. name: "Head (Imp)",
  36320. image: {
  36321. source: "./media/characters/max-kobold/head-imp.svg"
  36322. }
  36323. },
  36324. mawImp: {
  36325. height: math.unit(0.75, "feet"),
  36326. name: "Maw (Imp)",
  36327. image: {
  36328. source: "./media/characters/max-kobold/maw-imp.svg"
  36329. }
  36330. },
  36331. mawDemi: {
  36332. height: math.unit(0.42, "feet"),
  36333. name: "Maw (Demi)",
  36334. image: {
  36335. source: "./media/characters/max-kobold/maw-demi.svg"
  36336. }
  36337. },
  36338. },
  36339. [
  36340. {
  36341. name: "Normal",
  36342. height: math.unit(1 + 11/12, "feet"),
  36343. default: true
  36344. },
  36345. ]
  36346. ))
  36347. characterMakers.push(() => makeCharacter(
  36348. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36349. {
  36350. front: {
  36351. height: math.unit(7 + 5/12, "feet"),
  36352. name: "Front",
  36353. image: {
  36354. source: "./media/characters/carbon/front.svg",
  36355. extra: 1754/1689,
  36356. bottom: 65/1819
  36357. }
  36358. },
  36359. back: {
  36360. height: math.unit(7 + 5/12, "feet"),
  36361. name: "Back",
  36362. image: {
  36363. source: "./media/characters/carbon/back.svg",
  36364. extra: 1762/1695,
  36365. bottom: 24/1786
  36366. }
  36367. },
  36368. frontGigantamax: {
  36369. height: math.unit(150, "feet"),
  36370. name: "Front (Gigantamax)",
  36371. image: {
  36372. source: "./media/characters/carbon/front-gigantamax.svg",
  36373. extra: 1826/1669,
  36374. bottom: 59/1885
  36375. }
  36376. },
  36377. backGigantamax: {
  36378. height: math.unit(150, "feet"),
  36379. name: "Back (Gigantamax)",
  36380. image: {
  36381. source: "./media/characters/carbon/back-gigantamax.svg",
  36382. extra: 1796/1653,
  36383. bottom: 53/1849
  36384. }
  36385. },
  36386. maw: {
  36387. height: math.unit(0.48, "feet"),
  36388. name: "Maw",
  36389. image: {
  36390. source: "./media/characters/carbon/maw.svg"
  36391. }
  36392. },
  36393. mawGigantamax: {
  36394. height: math.unit(7.5, "feet"),
  36395. name: "Maw (Gigantamax)",
  36396. image: {
  36397. source: "./media/characters/carbon/maw-gigantamax.svg"
  36398. }
  36399. },
  36400. },
  36401. [
  36402. {
  36403. name: "Normal",
  36404. height: math.unit(7 + 5/12, "feet"),
  36405. default: true
  36406. },
  36407. ]
  36408. ))
  36409. characterMakers.push(() => makeCharacter(
  36410. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36411. {
  36412. front: {
  36413. height: math.unit(6, "feet"),
  36414. name: "Front",
  36415. image: {
  36416. source: "./media/characters/maverick/front.svg",
  36417. extra: 1672/1661,
  36418. bottom: 85/1757
  36419. }
  36420. },
  36421. back: {
  36422. height: math.unit(6, "feet"),
  36423. name: "Back",
  36424. image: {
  36425. source: "./media/characters/maverick/back.svg",
  36426. extra: 1642/1631,
  36427. bottom: 38/1680
  36428. }
  36429. },
  36430. },
  36431. [
  36432. {
  36433. name: "Normal",
  36434. height: math.unit(6, "feet"),
  36435. default: true
  36436. },
  36437. ]
  36438. ))
  36439. characterMakers.push(() => makeCharacter(
  36440. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36441. {
  36442. front: {
  36443. height: math.unit(15, "feet"),
  36444. weight: math.unit(615, "lb"),
  36445. name: "Front",
  36446. image: {
  36447. source: "./media/characters/grockle/front.svg",
  36448. extra: 1535/1427,
  36449. bottom: 56/1591
  36450. }
  36451. },
  36452. },
  36453. [
  36454. {
  36455. name: "Normal",
  36456. height: math.unit(15, "feet"),
  36457. default: true
  36458. },
  36459. {
  36460. name: "Large",
  36461. height: math.unit(150, "feet")
  36462. },
  36463. {
  36464. name: "Macro",
  36465. height: math.unit(1876, "feet")
  36466. },
  36467. {
  36468. name: "Mega Macro",
  36469. height: math.unit(121940, "feet")
  36470. },
  36471. {
  36472. name: "Giga Macro",
  36473. height: math.unit(750, "km")
  36474. },
  36475. {
  36476. name: "Tera Macro",
  36477. height: math.unit(750000, "km")
  36478. },
  36479. {
  36480. name: "Galactic",
  36481. height: math.unit(1.4e5, "km")
  36482. },
  36483. {
  36484. name: "Godlike",
  36485. height: math.unit(9.8e280, "galaxies")
  36486. },
  36487. ]
  36488. ))
  36489. characterMakers.push(() => makeCharacter(
  36490. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36491. {
  36492. front: {
  36493. height: math.unit(11, "meters"),
  36494. weight: math.unit(20, "tonnes"),
  36495. name: "Front",
  36496. image: {
  36497. source: "./media/characters/alistair/front.svg",
  36498. extra: 1265/1009,
  36499. bottom: 93/1358
  36500. }
  36501. },
  36502. },
  36503. [
  36504. {
  36505. name: "Normal",
  36506. height: math.unit(11, "meters"),
  36507. default: true
  36508. },
  36509. ]
  36510. ))
  36511. characterMakers.push(() => makeCharacter(
  36512. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36513. {
  36514. front: {
  36515. height: math.unit(5 + 8/12, "feet"),
  36516. name: "Front",
  36517. image: {
  36518. source: "./media/characters/haruka/front.svg",
  36519. extra: 2012/1952,
  36520. bottom: 0/2012
  36521. }
  36522. },
  36523. },
  36524. [
  36525. {
  36526. name: "Normal",
  36527. height: math.unit(5 + 8/12, "feet"),
  36528. default: true
  36529. },
  36530. ]
  36531. ))
  36532. characterMakers.push(() => makeCharacter(
  36533. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36534. {
  36535. back: {
  36536. height: math.unit(9, "feet"),
  36537. name: "Back",
  36538. image: {
  36539. source: "./media/characters/vivian-sylveon/back.svg",
  36540. extra: 1853/1714,
  36541. bottom: 0/1853
  36542. }
  36543. },
  36544. },
  36545. [
  36546. {
  36547. name: "Normal",
  36548. height: math.unit(9, "feet"),
  36549. default: true
  36550. },
  36551. {
  36552. name: "Macro",
  36553. height: math.unit(500, "feet")
  36554. },
  36555. {
  36556. name: "Megamacro",
  36557. height: math.unit(600, "miles")
  36558. },
  36559. {
  36560. name: "Gigamacro",
  36561. height: math.unit(30000, "miles")
  36562. },
  36563. ]
  36564. ))
  36565. characterMakers.push(() => makeCharacter(
  36566. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36567. {
  36568. anthro: {
  36569. height: math.unit(5 + 10/12, "feet"),
  36570. weight: math.unit(100, "lb"),
  36571. name: "Anthro",
  36572. image: {
  36573. source: "./media/characters/daiki/anthro.svg",
  36574. extra: 1115/1027,
  36575. bottom: 69/1184
  36576. }
  36577. },
  36578. feral: {
  36579. height: math.unit(200, "feet"),
  36580. name: "Feral",
  36581. image: {
  36582. source: "./media/characters/daiki/feral.svg",
  36583. extra: 1256/313,
  36584. bottom: 39/1295
  36585. }
  36586. },
  36587. feralHead: {
  36588. height: math.unit(171, "feet"),
  36589. name: "Feral Head",
  36590. image: {
  36591. source: "./media/characters/daiki/feral-head.svg"
  36592. }
  36593. },
  36594. manaDragon: {
  36595. height: math.unit(170, "meters"),
  36596. name: "Mana-dragon",
  36597. image: {
  36598. source: "./media/characters/daiki/mana-dragon.svg",
  36599. extra: 763/420,
  36600. bottom: 97/860
  36601. }
  36602. },
  36603. },
  36604. [
  36605. {
  36606. name: "Normal",
  36607. height: math.unit(5 + 10/12, "feet"),
  36608. default: true
  36609. },
  36610. ]
  36611. ))
  36612. characterMakers.push(() => makeCharacter(
  36613. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36614. {
  36615. fullyEquippedFront: {
  36616. height: math.unit(3 + 1/12, "feet"),
  36617. weight: math.unit(24, "lb"),
  36618. name: "Fully Equipped (Front)",
  36619. image: {
  36620. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36621. extra: 687/605,
  36622. bottom: 18/705
  36623. }
  36624. },
  36625. fullyEquippedBack: {
  36626. height: math.unit(3 + 1/12, "feet"),
  36627. weight: math.unit(24, "lb"),
  36628. name: "Fully Equipped (Back)",
  36629. image: {
  36630. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36631. extra: 689/590,
  36632. bottom: 18/707
  36633. }
  36634. },
  36635. dailyWear: {
  36636. height: math.unit(3 + 1/12, "feet"),
  36637. weight: math.unit(24, "lb"),
  36638. name: "Daily Wear",
  36639. image: {
  36640. source: "./media/characters/tea-spot/daily-wear.svg",
  36641. extra: 701/620,
  36642. bottom: 21/722
  36643. }
  36644. },
  36645. maidWork: {
  36646. height: math.unit(3 + 1/12, "feet"),
  36647. weight: math.unit(24, "lb"),
  36648. name: "Maid Work",
  36649. image: {
  36650. source: "./media/characters/tea-spot/maid-work.svg",
  36651. extra: 693/609,
  36652. bottom: 15/708
  36653. }
  36654. },
  36655. },
  36656. [
  36657. {
  36658. name: "Normal",
  36659. height: math.unit(3 + 1/12, "feet"),
  36660. default: true
  36661. },
  36662. ]
  36663. ))
  36664. characterMakers.push(() => makeCharacter(
  36665. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36666. {
  36667. front: {
  36668. height: math.unit(175, "cm"),
  36669. weight: math.unit(75, "kg"),
  36670. name: "Front",
  36671. image: {
  36672. source: "./media/characters/chee/front.svg",
  36673. extra: 1796/1740,
  36674. bottom: 40/1836
  36675. }
  36676. },
  36677. },
  36678. [
  36679. {
  36680. name: "Micro-Micro",
  36681. height: math.unit(1, "nm")
  36682. },
  36683. {
  36684. name: "Micro-erst",
  36685. height: math.unit(1, "micrometer")
  36686. },
  36687. {
  36688. name: "Micro-er",
  36689. height: math.unit(1, "cm")
  36690. },
  36691. {
  36692. name: "Normal",
  36693. height: math.unit(175, "cm"),
  36694. default: true
  36695. },
  36696. {
  36697. name: "Macro",
  36698. height: math.unit(100, "m")
  36699. },
  36700. {
  36701. name: "Macro-er",
  36702. height: math.unit(1, "km")
  36703. },
  36704. {
  36705. name: "Macro-erst",
  36706. height: math.unit(10, "km")
  36707. },
  36708. {
  36709. name: "Macro-Macro",
  36710. height: math.unit(100, "km")
  36711. },
  36712. ]
  36713. ))
  36714. characterMakers.push(() => makeCharacter(
  36715. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36716. {
  36717. front: {
  36718. height: math.unit(11 + 9/12, "feet"),
  36719. weight: math.unit(935, "lb"),
  36720. name: "Front",
  36721. image: {
  36722. source: "./media/characters/kingsley/front.svg",
  36723. extra: 1803/1674,
  36724. bottom: 127/1930
  36725. }
  36726. },
  36727. frontNude: {
  36728. height: math.unit(11 + 9/12, "feet"),
  36729. weight: math.unit(935, "lb"),
  36730. name: "Front (Nude)",
  36731. image: {
  36732. source: "./media/characters/kingsley/front-nude.svg",
  36733. extra: 1803/1674,
  36734. bottom: 127/1930
  36735. }
  36736. },
  36737. },
  36738. [
  36739. {
  36740. name: "Normal",
  36741. height: math.unit(11 + 9/12, "feet"),
  36742. default: true
  36743. },
  36744. ]
  36745. ))
  36746. characterMakers.push(() => makeCharacter(
  36747. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36748. {
  36749. side: {
  36750. height: math.unit(9, "feet"),
  36751. name: "Side",
  36752. image: {
  36753. source: "./media/characters/rymel/side.svg",
  36754. extra: 792/469,
  36755. bottom: 121/913
  36756. }
  36757. },
  36758. maw: {
  36759. height: math.unit(2.4, "meters"),
  36760. name: "Maw",
  36761. image: {
  36762. source: "./media/characters/rymel/maw.svg"
  36763. }
  36764. },
  36765. },
  36766. [
  36767. {
  36768. name: "House Drake",
  36769. height: math.unit(2, "feet")
  36770. },
  36771. {
  36772. name: "Reduced",
  36773. height: math.unit(4.5, "feet")
  36774. },
  36775. {
  36776. name: "Normal",
  36777. height: math.unit(9, "feet"),
  36778. default: true
  36779. },
  36780. ]
  36781. ))
  36782. characterMakers.push(() => makeCharacter(
  36783. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36784. {
  36785. front: {
  36786. height: math.unit(1.74, "meters"),
  36787. weight: math.unit(55, "kg"),
  36788. name: "Front",
  36789. image: {
  36790. source: "./media/characters/rubus/front.svg",
  36791. extra: 1894/1742,
  36792. bottom: 44/1938
  36793. }
  36794. },
  36795. },
  36796. [
  36797. {
  36798. name: "Normal",
  36799. height: math.unit(1.74, "meters"),
  36800. default: true
  36801. },
  36802. ]
  36803. ))
  36804. characterMakers.push(() => makeCharacter(
  36805. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36806. {
  36807. front: {
  36808. height: math.unit(5 + 2/12, "feet"),
  36809. weight: math.unit(112, "lb"),
  36810. name: "Front",
  36811. image: {
  36812. source: "./media/characters/cassie-kingston/front.svg",
  36813. extra: 1438/1390,
  36814. bottom: 47/1485
  36815. }
  36816. },
  36817. },
  36818. [
  36819. {
  36820. name: "Normal",
  36821. height: math.unit(5 + 2/12, "feet"),
  36822. default: true
  36823. },
  36824. {
  36825. name: "Macro",
  36826. height: math.unit(128, "feet")
  36827. },
  36828. {
  36829. name: "Megamacro",
  36830. height: math.unit(2.56, "miles")
  36831. },
  36832. ]
  36833. ))
  36834. characterMakers.push(() => makeCharacter(
  36835. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36836. {
  36837. front: {
  36838. height: math.unit(7, "feet"),
  36839. name: "Front",
  36840. image: {
  36841. source: "./media/characters/fox/front.svg",
  36842. extra: 1798/1703,
  36843. bottom: 55/1853
  36844. }
  36845. },
  36846. back: {
  36847. height: math.unit(7, "feet"),
  36848. name: "Back",
  36849. image: {
  36850. source: "./media/characters/fox/back.svg",
  36851. extra: 1748/1649,
  36852. bottom: 32/1780
  36853. }
  36854. },
  36855. head: {
  36856. height: math.unit(1.95, "feet"),
  36857. name: "Head",
  36858. image: {
  36859. source: "./media/characters/fox/head.svg"
  36860. }
  36861. },
  36862. dick: {
  36863. height: math.unit(1.33, "feet"),
  36864. name: "Dick",
  36865. image: {
  36866. source: "./media/characters/fox/dick.svg"
  36867. }
  36868. },
  36869. foot: {
  36870. height: math.unit(1, "feet"),
  36871. name: "Foot",
  36872. image: {
  36873. source: "./media/characters/fox/foot.svg"
  36874. }
  36875. },
  36876. paw: {
  36877. height: math.unit(0.92, "feet"),
  36878. name: "Paw",
  36879. image: {
  36880. source: "./media/characters/fox/paw.svg"
  36881. }
  36882. },
  36883. },
  36884. [
  36885. {
  36886. name: "Small",
  36887. height: math.unit(3, "inches")
  36888. },
  36889. {
  36890. name: "\"Realistic\"",
  36891. height: math.unit(7, "feet")
  36892. },
  36893. {
  36894. name: "Normal",
  36895. height: math.unit(150, "feet"),
  36896. default: true
  36897. },
  36898. {
  36899. name: "BIG",
  36900. height: math.unit(1200, "feet")
  36901. },
  36902. {
  36903. name: "👀",
  36904. height: math.unit(5, "miles")
  36905. },
  36906. {
  36907. name: "👀👀👀",
  36908. height: math.unit(64, "miles")
  36909. },
  36910. ]
  36911. ))
  36912. characterMakers.push(() => makeCharacter(
  36913. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36914. {
  36915. front: {
  36916. height: math.unit(625, "feet"),
  36917. name: "Front",
  36918. image: {
  36919. source: "./media/characters/asonja-rossa/front.svg",
  36920. extra: 1833/1686,
  36921. bottom: 24/1857
  36922. }
  36923. },
  36924. back: {
  36925. height: math.unit(625, "feet"),
  36926. name: "Back",
  36927. image: {
  36928. source: "./media/characters/asonja-rossa/back.svg",
  36929. extra: 1852/1753,
  36930. bottom: 26/1878
  36931. }
  36932. },
  36933. },
  36934. [
  36935. {
  36936. name: "Macro",
  36937. height: math.unit(625, "feet"),
  36938. default: true
  36939. },
  36940. ]
  36941. ))
  36942. characterMakers.push(() => makeCharacter(
  36943. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36944. {
  36945. side: {
  36946. height: math.unit(8, "feet"),
  36947. name: "Side",
  36948. image: {
  36949. source: "./media/characters/rezukii/side.svg",
  36950. extra: 979/542,
  36951. bottom: 87/1066
  36952. }
  36953. },
  36954. sitting: {
  36955. height: math.unit(14.6, "feet"),
  36956. name: "Sitting",
  36957. image: {
  36958. source: "./media/characters/rezukii/sitting.svg",
  36959. extra: 1023/813,
  36960. bottom: 45/1068
  36961. }
  36962. },
  36963. },
  36964. [
  36965. {
  36966. name: "Tiny",
  36967. height: math.unit(2, "feet")
  36968. },
  36969. {
  36970. name: "Smol",
  36971. height: math.unit(4, "feet")
  36972. },
  36973. {
  36974. name: "Normal",
  36975. height: math.unit(8, "feet"),
  36976. default: true
  36977. },
  36978. {
  36979. name: "Big",
  36980. height: math.unit(12, "feet")
  36981. },
  36982. {
  36983. name: "Macro",
  36984. height: math.unit(30, "feet")
  36985. },
  36986. ]
  36987. ))
  36988. characterMakers.push(() => makeCharacter(
  36989. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36990. {
  36991. front: {
  36992. height: math.unit(14, "feet"),
  36993. weight: math.unit(9.5, "tonnes"),
  36994. name: "Front",
  36995. image: {
  36996. source: "./media/characters/dawnheart/front.svg",
  36997. extra: 2792/2675,
  36998. bottom: 64/2856
  36999. }
  37000. },
  37001. },
  37002. [
  37003. {
  37004. name: "Normal",
  37005. height: math.unit(14, "feet"),
  37006. default: true
  37007. },
  37008. ]
  37009. ))
  37010. characterMakers.push(() => makeCharacter(
  37011. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37012. {
  37013. front: {
  37014. height: math.unit(1.7, "m"),
  37015. name: "Front",
  37016. image: {
  37017. source: "./media/characters/gladi/front.svg",
  37018. extra: 1460/1362,
  37019. bottom: 19/1479
  37020. }
  37021. },
  37022. back: {
  37023. height: math.unit(1.7, "m"),
  37024. name: "Back",
  37025. image: {
  37026. source: "./media/characters/gladi/back.svg",
  37027. extra: 1459/1357,
  37028. bottom: 12/1471
  37029. }
  37030. },
  37031. feral: {
  37032. height: math.unit(2.05, "m"),
  37033. name: "Feral",
  37034. image: {
  37035. source: "./media/characters/gladi/feral.svg",
  37036. extra: 821/557,
  37037. bottom: 91/912
  37038. }
  37039. },
  37040. },
  37041. [
  37042. {
  37043. name: "Shortest",
  37044. height: math.unit(70, "cm")
  37045. },
  37046. {
  37047. name: "Normal",
  37048. height: math.unit(1.7, "m")
  37049. },
  37050. {
  37051. name: "Macro",
  37052. height: math.unit(10, "m"),
  37053. default: true
  37054. },
  37055. {
  37056. name: "Tallest",
  37057. height: math.unit(200, "m")
  37058. },
  37059. ]
  37060. ))
  37061. characterMakers.push(() => makeCharacter(
  37062. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37063. {
  37064. front: {
  37065. height: math.unit(5 + 7/12, "feet"),
  37066. weight: math.unit(2, "tons"),
  37067. name: "Front",
  37068. image: {
  37069. source: "./media/characters/erdno/front.svg",
  37070. extra: 1234/1129,
  37071. bottom: 35/1269
  37072. }
  37073. },
  37074. angled: {
  37075. height: math.unit(5 + 7/12, "feet"),
  37076. weight: math.unit(2, "tons"),
  37077. name: "Angled",
  37078. image: {
  37079. source: "./media/characters/erdno/angled.svg",
  37080. extra: 1185/1139,
  37081. bottom: 36/1221
  37082. }
  37083. },
  37084. side: {
  37085. height: math.unit(5 + 7/12, "feet"),
  37086. weight: math.unit(2, "tons"),
  37087. name: "Side",
  37088. image: {
  37089. source: "./media/characters/erdno/side.svg",
  37090. extra: 1191/1144,
  37091. bottom: 40/1231
  37092. }
  37093. },
  37094. back: {
  37095. height: math.unit(5 + 7/12, "feet"),
  37096. weight: math.unit(2, "tons"),
  37097. name: "Back",
  37098. image: {
  37099. source: "./media/characters/erdno/back.svg",
  37100. extra: 1202/1146,
  37101. bottom: 17/1219
  37102. }
  37103. },
  37104. frontNsfw: {
  37105. height: math.unit(5 + 7/12, "feet"),
  37106. weight: math.unit(2, "tons"),
  37107. name: "Front (NSFW)",
  37108. image: {
  37109. source: "./media/characters/erdno/front-nsfw.svg",
  37110. extra: 1234/1129,
  37111. bottom: 35/1269
  37112. }
  37113. },
  37114. angledNsfw: {
  37115. height: math.unit(5 + 7/12, "feet"),
  37116. weight: math.unit(2, "tons"),
  37117. name: "Angled (NSFW)",
  37118. image: {
  37119. source: "./media/characters/erdno/angled-nsfw.svg",
  37120. extra: 1185/1139,
  37121. bottom: 36/1221
  37122. }
  37123. },
  37124. sideNsfw: {
  37125. height: math.unit(5 + 7/12, "feet"),
  37126. weight: math.unit(2, "tons"),
  37127. name: "Side (NSFW)",
  37128. image: {
  37129. source: "./media/characters/erdno/side-nsfw.svg",
  37130. extra: 1191/1144,
  37131. bottom: 40/1231
  37132. }
  37133. },
  37134. backNsfw: {
  37135. height: math.unit(5 + 7/12, "feet"),
  37136. weight: math.unit(2, "tons"),
  37137. name: "Back (NSFW)",
  37138. image: {
  37139. source: "./media/characters/erdno/back-nsfw.svg",
  37140. extra: 1202/1146,
  37141. bottom: 17/1219
  37142. }
  37143. },
  37144. frontHyper: {
  37145. height: math.unit(5 + 7/12, "feet"),
  37146. weight: math.unit(2, "tons"),
  37147. name: "Front (Hyper)",
  37148. image: {
  37149. source: "./media/characters/erdno/front-hyper.svg",
  37150. extra: 1298/1136,
  37151. bottom: 35/1333
  37152. }
  37153. },
  37154. },
  37155. [
  37156. {
  37157. name: "Normal",
  37158. height: math.unit(5 + 7/12, "feet"),
  37159. default: true
  37160. },
  37161. {
  37162. name: "Big",
  37163. height: math.unit(5.7, "meters")
  37164. },
  37165. {
  37166. name: "Macro",
  37167. height: math.unit(5.7, "kilometers")
  37168. },
  37169. {
  37170. name: "Megamacro",
  37171. height: math.unit(5.7, "earths")
  37172. },
  37173. ]
  37174. ))
  37175. characterMakers.push(() => makeCharacter(
  37176. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37177. {
  37178. front: {
  37179. height: math.unit(5 + 10/12, "feet"),
  37180. weight: math.unit(150, "lb"),
  37181. name: "Front",
  37182. image: {
  37183. source: "./media/characters/jamie/front.svg",
  37184. extra: 1908/1768,
  37185. bottom: 19/1927
  37186. }
  37187. },
  37188. },
  37189. [
  37190. {
  37191. name: "Minimum",
  37192. height: math.unit(2, "cm")
  37193. },
  37194. {
  37195. name: "Micro",
  37196. height: math.unit(3, "inches")
  37197. },
  37198. {
  37199. name: "Normal",
  37200. height: math.unit(5 + 10/12, "feet"),
  37201. default: true
  37202. },
  37203. {
  37204. name: "Macro",
  37205. height: math.unit(150, "feet")
  37206. },
  37207. {
  37208. name: "Megamacro",
  37209. height: math.unit(10000, "m")
  37210. },
  37211. ]
  37212. ))
  37213. characterMakers.push(() => makeCharacter(
  37214. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37215. {
  37216. front: {
  37217. height: math.unit(2, "meters"),
  37218. weight: math.unit(100, "kg"),
  37219. name: "Front",
  37220. image: {
  37221. source: "./media/characters/shiron/front.svg",
  37222. extra: 2103/1985,
  37223. bottom: 98/2201
  37224. }
  37225. },
  37226. back: {
  37227. height: math.unit(2, "meters"),
  37228. weight: math.unit(100, "kg"),
  37229. name: "Back",
  37230. image: {
  37231. source: "./media/characters/shiron/back.svg",
  37232. extra: 2110/2015,
  37233. bottom: 89/2199
  37234. }
  37235. },
  37236. hand: {
  37237. height: math.unit(0.96, "feet"),
  37238. name: "Hand",
  37239. image: {
  37240. source: "./media/characters/shiron/hand.svg"
  37241. }
  37242. },
  37243. foot: {
  37244. height: math.unit(1.464, "feet"),
  37245. name: "Foot",
  37246. image: {
  37247. source: "./media/characters/shiron/foot.svg"
  37248. }
  37249. },
  37250. },
  37251. [
  37252. {
  37253. name: "Normal",
  37254. height: math.unit(2, "meters")
  37255. },
  37256. {
  37257. name: "Macro",
  37258. height: math.unit(500, "meters"),
  37259. default: true
  37260. },
  37261. {
  37262. name: "Megamacro",
  37263. height: math.unit(20, "km")
  37264. },
  37265. ]
  37266. ))
  37267. characterMakers.push(() => makeCharacter(
  37268. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37269. {
  37270. front: {
  37271. height: math.unit(6, "feet"),
  37272. name: "Front",
  37273. image: {
  37274. source: "./media/characters/sam/front.svg",
  37275. extra: 849/826,
  37276. bottom: 19/868
  37277. }
  37278. },
  37279. },
  37280. [
  37281. {
  37282. name: "Normal",
  37283. height: math.unit(6, "feet"),
  37284. default: true
  37285. },
  37286. ]
  37287. ))
  37288. characterMakers.push(() => makeCharacter(
  37289. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37290. {
  37291. front: {
  37292. height: math.unit(8 + 4/12, "feet"),
  37293. weight: math.unit(122, "kg"),
  37294. name: "Front",
  37295. image: {
  37296. source: "./media/characters/namori-kurogawa/front.svg",
  37297. extra: 1894/1576,
  37298. bottom: 34/1928
  37299. }
  37300. },
  37301. },
  37302. [
  37303. {
  37304. name: "Normal",
  37305. height: math.unit(8 + 4/12, "feet"),
  37306. default: true
  37307. },
  37308. ]
  37309. ))
  37310. characterMakers.push(() => makeCharacter(
  37311. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37312. {
  37313. front: {
  37314. height: math.unit(9, "feet"),
  37315. weight: math.unit(621, "lb"),
  37316. name: "Front",
  37317. image: {
  37318. source: "./media/characters/unmru/front.svg",
  37319. extra: 1853/1747,
  37320. bottom: 73/1926
  37321. }
  37322. },
  37323. side: {
  37324. height: math.unit(9, "feet"),
  37325. weight: math.unit(621, "lb"),
  37326. name: "Side",
  37327. image: {
  37328. source: "./media/characters/unmru/side.svg",
  37329. extra: 1781/1671,
  37330. bottom: 127/1908
  37331. }
  37332. },
  37333. back: {
  37334. height: math.unit(9, "feet"),
  37335. weight: math.unit(621, "lb"),
  37336. name: "Back",
  37337. image: {
  37338. source: "./media/characters/unmru/back.svg",
  37339. extra: 1894/1765,
  37340. bottom: 75/1969
  37341. }
  37342. },
  37343. dick: {
  37344. height: math.unit(3, "feet"),
  37345. weight: math.unit(35, "lb"),
  37346. name: "Dick",
  37347. image: {
  37348. source: "./media/characters/unmru/dick.svg"
  37349. }
  37350. },
  37351. },
  37352. [
  37353. {
  37354. name: "Normal",
  37355. height: math.unit(9, "feet")
  37356. },
  37357. {
  37358. name: "Natural",
  37359. height: math.unit(27, "feet"),
  37360. default: true
  37361. },
  37362. {
  37363. name: "Giant",
  37364. height: math.unit(90, "feet")
  37365. },
  37366. {
  37367. name: "Kaiju",
  37368. height: math.unit(270, "feet")
  37369. },
  37370. {
  37371. name: "Macro",
  37372. height: math.unit(900, "feet")
  37373. },
  37374. {
  37375. name: "Macro+",
  37376. height: math.unit(2700, "feet")
  37377. },
  37378. {
  37379. name: "Megamacro",
  37380. height: math.unit(9000, "feet")
  37381. },
  37382. {
  37383. name: "City-Crushing",
  37384. height: math.unit(27000, "feet")
  37385. },
  37386. {
  37387. name: "Mountain-Mashing",
  37388. height: math.unit(90000, "feet")
  37389. },
  37390. {
  37391. name: "Earth-Eclipsing",
  37392. height: math.unit(2.7e8, "feet")
  37393. },
  37394. {
  37395. name: "Sol-Swallowing",
  37396. height: math.unit(9e10, "feet")
  37397. },
  37398. {
  37399. name: "Majoris-Munching",
  37400. height: math.unit(2.7e13, "feet")
  37401. },
  37402. ]
  37403. ))
  37404. characterMakers.push(() => makeCharacter(
  37405. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37406. {
  37407. front: {
  37408. height: math.unit(1, "inch"),
  37409. name: "Front",
  37410. image: {
  37411. source: "./media/characters/squeaks-mouse/front.svg",
  37412. extra: 352/308,
  37413. bottom: 25/377
  37414. }
  37415. },
  37416. },
  37417. [
  37418. {
  37419. name: "Micro",
  37420. height: math.unit(1, "inch"),
  37421. default: true
  37422. },
  37423. ]
  37424. ))
  37425. characterMakers.push(() => makeCharacter(
  37426. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37427. {
  37428. side: {
  37429. height: math.unit(35, "feet"),
  37430. name: "Side",
  37431. image: {
  37432. source: "./media/characters/sayko/side.svg",
  37433. extra: 1697/1021,
  37434. bottom: 82/1779
  37435. }
  37436. },
  37437. head: {
  37438. height: math.unit(16, "feet"),
  37439. name: "Head",
  37440. image: {
  37441. source: "./media/characters/sayko/head.svg"
  37442. }
  37443. },
  37444. forepaw: {
  37445. height: math.unit(7.85, "feet"),
  37446. name: "Forepaw",
  37447. image: {
  37448. source: "./media/characters/sayko/forepaw.svg"
  37449. }
  37450. },
  37451. hindpaw: {
  37452. height: math.unit(8.8, "feet"),
  37453. name: "Hindpaw",
  37454. image: {
  37455. source: "./media/characters/sayko/hindpaw.svg"
  37456. }
  37457. },
  37458. },
  37459. [
  37460. {
  37461. name: "Normal",
  37462. height: math.unit(35, "feet"),
  37463. default: true
  37464. },
  37465. {
  37466. name: "Colossus",
  37467. height: math.unit(100, "meters")
  37468. },
  37469. {
  37470. name: "\"Small\" Deity",
  37471. height: math.unit(1, "km")
  37472. },
  37473. {
  37474. name: "\"Large\" Deity",
  37475. height: math.unit(15, "km")
  37476. },
  37477. ]
  37478. ))
  37479. characterMakers.push(() => makeCharacter(
  37480. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37481. {
  37482. front: {
  37483. height: math.unit(6, "feet"),
  37484. weight: math.unit(250, "lb"),
  37485. name: "Front",
  37486. image: {
  37487. source: "./media/characters/mukiro/front.svg",
  37488. extra: 1368/1310,
  37489. bottom: 34/1402
  37490. }
  37491. },
  37492. },
  37493. [
  37494. {
  37495. name: "Normal",
  37496. height: math.unit(6, "feet"),
  37497. default: true
  37498. },
  37499. ]
  37500. ))
  37501. characterMakers.push(() => makeCharacter(
  37502. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37503. {
  37504. front: {
  37505. height: math.unit(12 + 4/12, "feet"),
  37506. name: "Front",
  37507. image: {
  37508. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37509. extra: 1346/1311,
  37510. bottom: 65/1411
  37511. }
  37512. },
  37513. },
  37514. [
  37515. {
  37516. name: "Base",
  37517. height: math.unit(12 + 4/12, "feet"),
  37518. default: true
  37519. },
  37520. {
  37521. name: "Macro",
  37522. height: math.unit(150, "feet")
  37523. },
  37524. {
  37525. name: "Mega",
  37526. height: math.unit(2, "miles")
  37527. },
  37528. {
  37529. name: "Demi God",
  37530. height: math.unit(4, "AU")
  37531. },
  37532. {
  37533. name: "God Size",
  37534. height: math.unit(1, "universe")
  37535. },
  37536. ]
  37537. ))
  37538. characterMakers.push(() => makeCharacter(
  37539. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37540. {
  37541. front: {
  37542. height: math.unit(3 + 3/12, "feet"),
  37543. weight: math.unit(88, "lb"),
  37544. name: "Front",
  37545. image: {
  37546. source: "./media/characters/trey/front.svg",
  37547. extra: 1815/1509,
  37548. bottom: 60/1875
  37549. }
  37550. },
  37551. },
  37552. [
  37553. {
  37554. name: "Normal",
  37555. height: math.unit(3 + 3/12, "feet"),
  37556. default: true
  37557. },
  37558. ]
  37559. ))
  37560. characterMakers.push(() => makeCharacter(
  37561. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37562. {
  37563. front: {
  37564. height: math.unit(4, "meters"),
  37565. name: "Front",
  37566. image: {
  37567. source: "./media/characters/adelonda/front.svg",
  37568. extra: 1077/982,
  37569. bottom: 39/1116
  37570. }
  37571. },
  37572. back: {
  37573. height: math.unit(4, "meters"),
  37574. name: "Back",
  37575. image: {
  37576. source: "./media/characters/adelonda/back.svg",
  37577. extra: 1105/1003,
  37578. bottom: 25/1130
  37579. }
  37580. },
  37581. },
  37582. [
  37583. {
  37584. name: "Normal",
  37585. height: math.unit(4, "meters"),
  37586. default: true
  37587. },
  37588. ]
  37589. ))
  37590. characterMakers.push(() => makeCharacter(
  37591. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37592. {
  37593. front: {
  37594. height: math.unit(8 + 4/12, "feet"),
  37595. weight: math.unit(670, "lb"),
  37596. name: "Front",
  37597. image: {
  37598. source: "./media/characters/acadiel/front.svg",
  37599. extra: 1901/1595,
  37600. bottom: 142/2043
  37601. }
  37602. },
  37603. },
  37604. [
  37605. {
  37606. name: "Normal",
  37607. height: math.unit(8 + 4/12, "feet"),
  37608. default: true
  37609. },
  37610. {
  37611. name: "Macro",
  37612. height: math.unit(200, "feet")
  37613. },
  37614. ]
  37615. ))
  37616. characterMakers.push(() => makeCharacter(
  37617. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37618. {
  37619. front: {
  37620. height: math.unit(6 + 2/12, "feet"),
  37621. weight: math.unit(185, "lb"),
  37622. name: "Front",
  37623. image: {
  37624. source: "./media/characters/kayne-ein/front.svg",
  37625. extra: 1780/1560,
  37626. bottom: 81/1861
  37627. }
  37628. },
  37629. },
  37630. [
  37631. {
  37632. name: "Normal",
  37633. height: math.unit(6 + 2/12, "feet"),
  37634. default: true
  37635. },
  37636. {
  37637. name: "Transformation Stage",
  37638. height: math.unit(15, "feet")
  37639. },
  37640. {
  37641. name: "Macro",
  37642. height: math.unit(150, "feet")
  37643. },
  37644. {
  37645. name: "Earth's Shadow",
  37646. height: math.unit(6200, "miles")
  37647. },
  37648. {
  37649. name: "Universal Demon",
  37650. height: math.unit(28e9, "parsecs")
  37651. },
  37652. {
  37653. name: "Multiverse God",
  37654. height: math.unit(3, "multiverses")
  37655. },
  37656. ]
  37657. ))
  37658. characterMakers.push(() => makeCharacter(
  37659. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37660. {
  37661. front: {
  37662. height: math.unit(5 + 5/12, "feet"),
  37663. name: "Front",
  37664. image: {
  37665. source: "./media/characters/fawn/front.svg",
  37666. extra: 1873/1731,
  37667. bottom: 95/1968
  37668. }
  37669. },
  37670. back: {
  37671. height: math.unit(5 + 5/12, "feet"),
  37672. name: "Back",
  37673. image: {
  37674. source: "./media/characters/fawn/back.svg",
  37675. extra: 1813/1700,
  37676. bottom: 14/1827
  37677. }
  37678. },
  37679. hoof: {
  37680. height: math.unit(1.45, "feet"),
  37681. name: "Hoof",
  37682. image: {
  37683. source: "./media/characters/fawn/hoof.svg"
  37684. }
  37685. },
  37686. },
  37687. [
  37688. {
  37689. name: "Normal",
  37690. height: math.unit(5 + 5/12, "feet"),
  37691. default: true
  37692. },
  37693. ]
  37694. ))
  37695. characterMakers.push(() => makeCharacter(
  37696. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37697. {
  37698. front: {
  37699. height: math.unit(2 + 5/12, "feet"),
  37700. name: "Front",
  37701. image: {
  37702. source: "./media/characters/orion/front.svg",
  37703. extra: 1366/1304,
  37704. bottom: 43/1409
  37705. }
  37706. },
  37707. paw: {
  37708. height: math.unit(0.52, "feet"),
  37709. name: "Paw",
  37710. image: {
  37711. source: "./media/characters/orion/paw.svg"
  37712. }
  37713. },
  37714. },
  37715. [
  37716. {
  37717. name: "Normal",
  37718. height: math.unit(2 + 5/12, "feet"),
  37719. default: true
  37720. },
  37721. ]
  37722. ))
  37723. characterMakers.push(() => makeCharacter(
  37724. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37725. {
  37726. front: {
  37727. height: math.unit(5 + 10/12, "feet"),
  37728. name: "Front",
  37729. image: {
  37730. source: "./media/characters/vera/front.svg",
  37731. extra: 1680/1575,
  37732. bottom: 49/1729
  37733. }
  37734. },
  37735. back: {
  37736. height: math.unit(5 + 10/12, "feet"),
  37737. name: "Back",
  37738. image: {
  37739. source: "./media/characters/vera/back.svg",
  37740. extra: 1700/1588,
  37741. bottom: 18/1718
  37742. }
  37743. },
  37744. arcanine: {
  37745. height: math.unit(6 + 8/12, "feet"),
  37746. name: "Arcanine",
  37747. image: {
  37748. source: "./media/characters/vera/arcanine.svg",
  37749. extra: 1590/1511,
  37750. bottom: 71/1661
  37751. }
  37752. },
  37753. maw: {
  37754. height: math.unit(0.82, "feet"),
  37755. name: "Maw",
  37756. image: {
  37757. source: "./media/characters/vera/maw.svg"
  37758. }
  37759. },
  37760. mawArcanine: {
  37761. height: math.unit(0.97, "feet"),
  37762. name: "Maw (Arcanine)",
  37763. image: {
  37764. source: "./media/characters/vera/maw-arcanine.svg"
  37765. }
  37766. },
  37767. paw: {
  37768. height: math.unit(0.75, "feet"),
  37769. name: "Paw",
  37770. image: {
  37771. source: "./media/characters/vera/paw.svg"
  37772. }
  37773. },
  37774. pawprint: {
  37775. height: math.unit(0.52, "feet"),
  37776. name: "Pawprint",
  37777. image: {
  37778. source: "./media/characters/vera/pawprint.svg"
  37779. }
  37780. },
  37781. },
  37782. [
  37783. {
  37784. name: "Normal",
  37785. height: math.unit(5 + 10/12, "feet"),
  37786. default: true
  37787. },
  37788. {
  37789. name: "Macro",
  37790. height: math.unit(75, "feet")
  37791. },
  37792. ]
  37793. ))
  37794. characterMakers.push(() => makeCharacter(
  37795. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37796. {
  37797. front: {
  37798. height: math.unit(4, "feet"),
  37799. weight: math.unit(40, "lb"),
  37800. name: "Front",
  37801. image: {
  37802. source: "./media/characters/orvan-rabbit/front.svg",
  37803. extra: 1896/1642,
  37804. bottom: 29/1925
  37805. }
  37806. },
  37807. },
  37808. [
  37809. {
  37810. name: "Normal",
  37811. height: math.unit(4, "feet"),
  37812. default: true
  37813. },
  37814. ]
  37815. ))
  37816. characterMakers.push(() => makeCharacter(
  37817. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37818. {
  37819. front: {
  37820. height: math.unit(6, "feet"),
  37821. weight: math.unit(168, "lb"),
  37822. name: "Front",
  37823. image: {
  37824. source: "./media/characters/lisa/front.svg",
  37825. extra: 2065/1867,
  37826. bottom: 46/2111
  37827. }
  37828. },
  37829. back: {
  37830. height: math.unit(6, "feet"),
  37831. weight: math.unit(168, "lb"),
  37832. name: "Back",
  37833. image: {
  37834. source: "./media/characters/lisa/back.svg",
  37835. extra: 1982/1838,
  37836. bottom: 29/2011
  37837. }
  37838. },
  37839. maw: {
  37840. height: math.unit(0.81, "feet"),
  37841. name: "Maw",
  37842. image: {
  37843. source: "./media/characters/lisa/maw.svg"
  37844. }
  37845. },
  37846. paw: {
  37847. height: math.unit(0.9, "feet"),
  37848. name: "Paw",
  37849. image: {
  37850. source: "./media/characters/lisa/paw.svg"
  37851. }
  37852. },
  37853. caribousune: {
  37854. height: math.unit(7 + 2/12, "feet"),
  37855. weight: math.unit(268, "lb"),
  37856. name: "Caribousune",
  37857. image: {
  37858. source: "./media/characters/lisa/caribousune.svg",
  37859. extra: 1843/1633,
  37860. bottom: 29/1872
  37861. }
  37862. },
  37863. frontCaribousune: {
  37864. height: math.unit(7 + 2/12, "feet"),
  37865. weight: math.unit(268, "lb"),
  37866. name: "Front (Caribousune)",
  37867. image: {
  37868. source: "./media/characters/lisa/front-caribousune.svg",
  37869. extra: 1818/1638,
  37870. bottom: 52/1870
  37871. }
  37872. },
  37873. sideCaribousune: {
  37874. height: math.unit(7 + 2/12, "feet"),
  37875. weight: math.unit(268, "lb"),
  37876. name: "Side (Caribousune)",
  37877. image: {
  37878. source: "./media/characters/lisa/side-caribousune.svg",
  37879. extra: 1851/1635,
  37880. bottom: 16/1867
  37881. }
  37882. },
  37883. backCaribousune: {
  37884. height: math.unit(7 + 2/12, "feet"),
  37885. weight: math.unit(268, "lb"),
  37886. name: "Back (Caribousune)",
  37887. image: {
  37888. source: "./media/characters/lisa/back-caribousune.svg",
  37889. extra: 1801/1604,
  37890. bottom: 44/1845
  37891. }
  37892. },
  37893. caribou: {
  37894. height: math.unit(7 + 2/12, "feet"),
  37895. weight: math.unit(268, "lb"),
  37896. name: "Caribou",
  37897. image: {
  37898. source: "./media/characters/lisa/caribou.svg",
  37899. extra: 1843/1633,
  37900. bottom: 29/1872
  37901. }
  37902. },
  37903. frontCaribou: {
  37904. height: math.unit(7 + 2/12, "feet"),
  37905. weight: math.unit(268, "lb"),
  37906. name: "Front (Caribou)",
  37907. image: {
  37908. source: "./media/characters/lisa/front-caribou.svg",
  37909. extra: 1818/1638,
  37910. bottom: 52/1870
  37911. }
  37912. },
  37913. sideCaribou: {
  37914. height: math.unit(7 + 2/12, "feet"),
  37915. weight: math.unit(268, "lb"),
  37916. name: "Side (Caribou)",
  37917. image: {
  37918. source: "./media/characters/lisa/side-caribou.svg",
  37919. extra: 1851/1635,
  37920. bottom: 16/1867
  37921. }
  37922. },
  37923. backCaribou: {
  37924. height: math.unit(7 + 2/12, "feet"),
  37925. weight: math.unit(268, "lb"),
  37926. name: "Back (Caribou)",
  37927. image: {
  37928. source: "./media/characters/lisa/back-caribou.svg",
  37929. extra: 1801/1604,
  37930. bottom: 44/1845
  37931. }
  37932. },
  37933. mawCaribou: {
  37934. height: math.unit(1.45, "feet"),
  37935. name: "Maw (Caribou)",
  37936. image: {
  37937. source: "./media/characters/lisa/maw-caribou.svg"
  37938. }
  37939. },
  37940. mawCaribousune: {
  37941. height: math.unit(1.45, "feet"),
  37942. name: "Maw (Caribousune)",
  37943. image: {
  37944. source: "./media/characters/lisa/maw-caribousune.svg"
  37945. }
  37946. },
  37947. pawCaribousune: {
  37948. height: math.unit(1.61, "feet"),
  37949. name: "Paw (Caribou)",
  37950. image: {
  37951. source: "./media/characters/lisa/paw-caribousune.svg"
  37952. }
  37953. },
  37954. },
  37955. [
  37956. {
  37957. name: "Normal",
  37958. height: math.unit(6, "feet")
  37959. },
  37960. {
  37961. name: "God Size",
  37962. height: math.unit(72, "feet"),
  37963. default: true
  37964. },
  37965. {
  37966. name: "Towering",
  37967. height: math.unit(288, "feet")
  37968. },
  37969. {
  37970. name: "City Size",
  37971. height: math.unit(48384, "feet")
  37972. },
  37973. {
  37974. name: "Continental",
  37975. height: math.unit(4200, "miles")
  37976. },
  37977. {
  37978. name: "Planet Eater",
  37979. height: math.unit(42, "earths")
  37980. },
  37981. {
  37982. name: "Star Swallower",
  37983. height: math.unit(42, "solarradii")
  37984. },
  37985. {
  37986. name: "System Swallower",
  37987. height: math.unit(84000, "AU")
  37988. },
  37989. {
  37990. name: "Galaxy Gobbler",
  37991. height: math.unit(42, "galaxies")
  37992. },
  37993. {
  37994. name: "Universe Devourer",
  37995. height: math.unit(42, "universes")
  37996. },
  37997. {
  37998. name: "Multiverse Muncher",
  37999. height: math.unit(42, "multiverses")
  38000. },
  38001. ]
  38002. ))
  38003. characterMakers.push(() => makeCharacter(
  38004. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38005. {
  38006. front: {
  38007. height: math.unit(36, "feet"),
  38008. name: "Front",
  38009. image: {
  38010. source: "./media/characters/shadow-rat/front.svg",
  38011. extra: 1845/1758,
  38012. bottom: 83/1928
  38013. }
  38014. },
  38015. },
  38016. [
  38017. {
  38018. name: "Macro",
  38019. height: math.unit(36, "feet"),
  38020. default: true
  38021. },
  38022. ]
  38023. ))
  38024. characterMakers.push(() => makeCharacter(
  38025. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38026. {
  38027. side: {
  38028. height: math.unit(8, "feet"),
  38029. weight: math.unit(2630, "lb"),
  38030. name: "Side",
  38031. image: {
  38032. source: "./media/characters/torallia/side.svg",
  38033. extra: 2164/2021,
  38034. bottom: 371/2535
  38035. }
  38036. },
  38037. },
  38038. [
  38039. {
  38040. name: "Mortal Interaction",
  38041. height: math.unit(8, "feet")
  38042. },
  38043. {
  38044. name: "Natural",
  38045. height: math.unit(24, "feet"),
  38046. default: true
  38047. },
  38048. {
  38049. name: "Giant",
  38050. height: math.unit(80, "feet")
  38051. },
  38052. {
  38053. name: "Kaiju",
  38054. height: math.unit(240, "feet")
  38055. },
  38056. {
  38057. name: "Macro",
  38058. height: math.unit(800, "feet")
  38059. },
  38060. {
  38061. name: "Macro+",
  38062. height: math.unit(2400, "feet")
  38063. },
  38064. {
  38065. name: "Macro++",
  38066. height: math.unit(8000, "feet")
  38067. },
  38068. {
  38069. name: "City-Crushing",
  38070. height: math.unit(24000, "feet")
  38071. },
  38072. {
  38073. name: "Mountain-Mashing",
  38074. height: math.unit(80000, "feet")
  38075. },
  38076. {
  38077. name: "District Demolisher",
  38078. height: math.unit(240000, "feet")
  38079. },
  38080. {
  38081. name: "Tri-County Terror",
  38082. height: math.unit(800000, "feet")
  38083. },
  38084. {
  38085. name: "State Smasher",
  38086. height: math.unit(2.4e6, "feet")
  38087. },
  38088. {
  38089. name: "Nation Nemesis",
  38090. height: math.unit(8e6, "feet")
  38091. },
  38092. {
  38093. name: "Continent Cracker",
  38094. height: math.unit(2.4e7, "feet")
  38095. },
  38096. {
  38097. name: "Planet-Pillaging",
  38098. height: math.unit(8e7, "feet")
  38099. },
  38100. {
  38101. name: "Earth-Eclipsing",
  38102. height: math.unit(2.4e8, "feet")
  38103. },
  38104. {
  38105. name: "Jovian-Jostling",
  38106. height: math.unit(8e8, "feet")
  38107. },
  38108. {
  38109. name: "Gas Giant Gulper",
  38110. height: math.unit(2.4e9, "feet")
  38111. },
  38112. {
  38113. name: "Astral Annihilator",
  38114. height: math.unit(8e9, "feet")
  38115. },
  38116. {
  38117. name: "Celestial Conqueror",
  38118. height: math.unit(2.4e10, "feet")
  38119. },
  38120. {
  38121. name: "Sol-Swallowing",
  38122. height: math.unit(8e10, "feet")
  38123. },
  38124. {
  38125. name: "Hunter of the Heavens",
  38126. height: math.unit(2.4e13, "feet")
  38127. },
  38128. ]
  38129. ))
  38130. characterMakers.push(() => makeCharacter(
  38131. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38132. {
  38133. front: {
  38134. height: math.unit(6 + 8/12, "feet"),
  38135. name: "Front",
  38136. image: {
  38137. source: "./media/characters/rebecca-pawlson/front.svg",
  38138. extra: 1737/1596,
  38139. bottom: 107/1844
  38140. }
  38141. },
  38142. back: {
  38143. height: math.unit(6 + 8/12, "feet"),
  38144. name: "Back",
  38145. image: {
  38146. source: "./media/characters/rebecca-pawlson/back.svg",
  38147. extra: 1702/1523,
  38148. bottom: 86/1788
  38149. }
  38150. },
  38151. },
  38152. [
  38153. {
  38154. name: "Normal",
  38155. height: math.unit(6 + 8/12, "feet")
  38156. },
  38157. {
  38158. name: "Mini Macro",
  38159. height: math.unit(10, "feet"),
  38160. default: true
  38161. },
  38162. {
  38163. name: "Macro",
  38164. height: math.unit(100, "feet")
  38165. },
  38166. {
  38167. name: "Mega Macro",
  38168. height: math.unit(2500, "feet")
  38169. },
  38170. {
  38171. name: "Giga Macro",
  38172. height: math.unit(50, "miles")
  38173. },
  38174. ]
  38175. ))
  38176. characterMakers.push(() => makeCharacter(
  38177. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38178. {
  38179. front: {
  38180. height: math.unit(7 + 6/12, "feet"),
  38181. weight: math.unit(600, "lb"),
  38182. name: "Front",
  38183. image: {
  38184. source: "./media/characters/moxie-nova/front.svg",
  38185. extra: 1734/1652,
  38186. bottom: 41/1775
  38187. }
  38188. },
  38189. },
  38190. [
  38191. {
  38192. name: "Normal",
  38193. height: math.unit(7 + 6/12, "feet"),
  38194. default: true
  38195. },
  38196. ]
  38197. ))
  38198. characterMakers.push(() => makeCharacter(
  38199. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38200. {
  38201. goat: {
  38202. height: math.unit(4, "feet"),
  38203. weight: math.unit(180, "lb"),
  38204. name: "Goat",
  38205. image: {
  38206. source: "./media/characters/tiffany/goat.svg",
  38207. extra: 1845/1595,
  38208. bottom: 106/1951
  38209. }
  38210. },
  38211. front: {
  38212. height: math.unit(5, "feet"),
  38213. weight: math.unit(150, "lb"),
  38214. name: "Foxcoon",
  38215. image: {
  38216. source: "./media/characters/tiffany/foxcoon.svg",
  38217. extra: 1941/1845,
  38218. bottom: 58/1999
  38219. }
  38220. },
  38221. },
  38222. [
  38223. {
  38224. name: "Normal",
  38225. height: math.unit(5, "feet"),
  38226. default: true
  38227. },
  38228. ]
  38229. ))
  38230. characterMakers.push(() => makeCharacter(
  38231. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38232. {
  38233. front: {
  38234. height: math.unit(8, "feet"),
  38235. weight: math.unit(300, "lb"),
  38236. name: "Front",
  38237. image: {
  38238. source: "./media/characters/raxinath/front.svg",
  38239. extra: 1407/1309,
  38240. bottom: 39/1446
  38241. }
  38242. },
  38243. back: {
  38244. height: math.unit(8, "feet"),
  38245. weight: math.unit(300, "lb"),
  38246. name: "Back",
  38247. image: {
  38248. source: "./media/characters/raxinath/back.svg",
  38249. extra: 1405/1315,
  38250. bottom: 9/1414
  38251. }
  38252. },
  38253. },
  38254. [
  38255. {
  38256. name: "Speck",
  38257. height: math.unit(0.5, "nm")
  38258. },
  38259. {
  38260. name: "Micro",
  38261. height: math.unit(3, "inches")
  38262. },
  38263. {
  38264. name: "Kobold",
  38265. height: math.unit(3, "feet")
  38266. },
  38267. {
  38268. name: "Normal",
  38269. height: math.unit(8, "feet"),
  38270. default: true
  38271. },
  38272. {
  38273. name: "Giant",
  38274. height: math.unit(50, "feet")
  38275. },
  38276. {
  38277. name: "Macro",
  38278. height: math.unit(1000, "feet")
  38279. },
  38280. {
  38281. name: "Megamacro",
  38282. height: math.unit(1, "mile")
  38283. },
  38284. ]
  38285. ))
  38286. characterMakers.push(() => makeCharacter(
  38287. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38288. {
  38289. front: {
  38290. height: math.unit(10, "feet"),
  38291. weight: math.unit(1442, "lb"),
  38292. name: "Front",
  38293. image: {
  38294. source: "./media/characters/mal-dragon/front.svg",
  38295. extra: 1515/1444,
  38296. bottom: 113/1628
  38297. }
  38298. },
  38299. back: {
  38300. height: math.unit(10, "feet"),
  38301. weight: math.unit(1442, "lb"),
  38302. name: "Back",
  38303. image: {
  38304. source: "./media/characters/mal-dragon/back.svg",
  38305. extra: 1527/1434,
  38306. bottom: 25/1552
  38307. }
  38308. },
  38309. },
  38310. [
  38311. {
  38312. name: "Mortal Interaction",
  38313. height: math.unit(10, "feet"),
  38314. default: true
  38315. },
  38316. {
  38317. name: "Large",
  38318. height: math.unit(30, "feet")
  38319. },
  38320. {
  38321. name: "Kaiju",
  38322. height: math.unit(300, "feet")
  38323. },
  38324. {
  38325. name: "Megamacro",
  38326. height: math.unit(10000, "feet")
  38327. },
  38328. {
  38329. name: "Continent Cracker",
  38330. height: math.unit(30000000, "feet")
  38331. },
  38332. {
  38333. name: "Sol-Swallowing",
  38334. height: math.unit(1e11, "feet")
  38335. },
  38336. {
  38337. name: "Light Universal",
  38338. height: math.unit(5, "universes")
  38339. },
  38340. {
  38341. name: "Universe Atoms",
  38342. height: math.unit(1.829e9, "universes")
  38343. },
  38344. {
  38345. name: "Light Multiversal",
  38346. height: math.unit(5, "multiverses")
  38347. },
  38348. {
  38349. name: "Multiverse Atoms",
  38350. height: math.unit(1.829e9, "multiverses")
  38351. },
  38352. {
  38353. name: "Fabric of Time",
  38354. height: math.unit(1e262, "multiverses")
  38355. },
  38356. ]
  38357. ))
  38358. characterMakers.push(() => makeCharacter(
  38359. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38360. {
  38361. front: {
  38362. height: math.unit(9, "feet"),
  38363. weight: math.unit(1050, "lb"),
  38364. name: "Front",
  38365. image: {
  38366. source: "./media/characters/tabitha/front.svg",
  38367. extra: 2083/1994,
  38368. bottom: 68/2151
  38369. }
  38370. },
  38371. },
  38372. [
  38373. {
  38374. name: "Baseline",
  38375. height: math.unit(9, "feet"),
  38376. default: true
  38377. },
  38378. {
  38379. name: "Giant",
  38380. height: math.unit(90, "feet")
  38381. },
  38382. {
  38383. name: "Macro",
  38384. height: math.unit(900, "feet")
  38385. },
  38386. {
  38387. name: "Megamacro",
  38388. height: math.unit(9000, "feet")
  38389. },
  38390. {
  38391. name: "City-Crushing",
  38392. height: math.unit(27000, "feet")
  38393. },
  38394. {
  38395. name: "Mountain-Mashing",
  38396. height: math.unit(90000, "feet")
  38397. },
  38398. {
  38399. name: "Nation Nemesis",
  38400. height: math.unit(9e6, "feet")
  38401. },
  38402. {
  38403. name: "Continent Cracker",
  38404. height: math.unit(27e6, "feet")
  38405. },
  38406. {
  38407. name: "Earth-Eclipsing",
  38408. height: math.unit(2.7e8, "feet")
  38409. },
  38410. {
  38411. name: "Gas Giant Gulper",
  38412. height: math.unit(2.7e9, "feet")
  38413. },
  38414. {
  38415. name: "Sol-Swallowing",
  38416. height: math.unit(9e10, "feet")
  38417. },
  38418. {
  38419. name: "Galaxy Gulper",
  38420. height: math.unit(9, "galaxies")
  38421. },
  38422. {
  38423. name: "Cosmos Churner",
  38424. height: math.unit(9, "universes")
  38425. },
  38426. ]
  38427. ))
  38428. characterMakers.push(() => makeCharacter(
  38429. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38430. {
  38431. front: {
  38432. height: math.unit(160, "cm"),
  38433. weight: math.unit(55, "kg"),
  38434. name: "Front",
  38435. image: {
  38436. source: "./media/characters/tow/front.svg",
  38437. extra: 1751/1722,
  38438. bottom: 74/1825
  38439. }
  38440. },
  38441. },
  38442. [
  38443. {
  38444. name: "Norm",
  38445. height: math.unit(160, "cm")
  38446. },
  38447. {
  38448. name: "Casual",
  38449. height: math.unit(3200, "m"),
  38450. default: true
  38451. },
  38452. {
  38453. name: "Show-Off",
  38454. height: math.unit(160, "km")
  38455. },
  38456. ]
  38457. ))
  38458. characterMakers.push(() => makeCharacter(
  38459. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38460. {
  38461. front: {
  38462. height: math.unit(7 + 11/12, "feet"),
  38463. weight: math.unit(342.8, "lb"),
  38464. name: "Front",
  38465. image: {
  38466. source: "./media/characters/vivian-orca-dragon/front.svg",
  38467. extra: 1890/1865,
  38468. bottom: 28/1918
  38469. }
  38470. },
  38471. },
  38472. [
  38473. {
  38474. name: "Micro",
  38475. height: math.unit(5, "inches")
  38476. },
  38477. {
  38478. name: "Normal",
  38479. height: math.unit(7 + 11/12, "feet"),
  38480. default: true
  38481. },
  38482. {
  38483. name: "Macro",
  38484. height: math.unit(395 + 7/12, "feet")
  38485. },
  38486. ]
  38487. ))
  38488. characterMakers.push(() => makeCharacter(
  38489. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38490. {
  38491. side: {
  38492. height: math.unit(10, "feet"),
  38493. weight: math.unit(1442, "lb"),
  38494. name: "Side",
  38495. image: {
  38496. source: "./media/characters/lotherakon/side.svg",
  38497. extra: 1604/1497,
  38498. bottom: 89/1693
  38499. }
  38500. },
  38501. },
  38502. [
  38503. {
  38504. name: "Mortal Interaction",
  38505. height: math.unit(10, "feet")
  38506. },
  38507. {
  38508. name: "Large",
  38509. height: math.unit(30, "feet"),
  38510. default: true
  38511. },
  38512. {
  38513. name: "Giant",
  38514. height: math.unit(100, "feet")
  38515. },
  38516. {
  38517. name: "Kaiju",
  38518. height: math.unit(300, "feet")
  38519. },
  38520. {
  38521. name: "Macro",
  38522. height: math.unit(1000, "feet")
  38523. },
  38524. {
  38525. name: "Macro+",
  38526. height: math.unit(3000, "feet")
  38527. },
  38528. {
  38529. name: "Megamacro",
  38530. height: math.unit(10000, "feet")
  38531. },
  38532. {
  38533. name: "City-Crushing",
  38534. height: math.unit(30000, "feet")
  38535. },
  38536. {
  38537. name: "Continent Cracker",
  38538. height: math.unit(30e6, "feet")
  38539. },
  38540. {
  38541. name: "Earth Eclipsing",
  38542. height: math.unit(3e8, "feet")
  38543. },
  38544. {
  38545. name: "Gas Giant Gulper",
  38546. height: math.unit(3e9, "feet")
  38547. },
  38548. {
  38549. name: "Sol-Swallowing",
  38550. height: math.unit(1e11, "feet")
  38551. },
  38552. {
  38553. name: "System Swallower",
  38554. height: math.unit(3e14, "feet")
  38555. },
  38556. {
  38557. name: "Galaxy Gulper",
  38558. height: math.unit(10, "galaxies")
  38559. },
  38560. {
  38561. name: "Light Universal",
  38562. height: math.unit(5, "universes")
  38563. },
  38564. {
  38565. name: "Universe Palm",
  38566. height: math.unit(20, "universes")
  38567. },
  38568. {
  38569. name: "Light Multiversal",
  38570. height: math.unit(5, "multiverses")
  38571. },
  38572. {
  38573. name: "Multiverse Palm",
  38574. height: math.unit(20, "multiverses")
  38575. },
  38576. {
  38577. name: "Inferno Incarnate",
  38578. height: math.unit(1e7, "multiverses")
  38579. },
  38580. ]
  38581. ))
  38582. characterMakers.push(() => makeCharacter(
  38583. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38584. {
  38585. front: {
  38586. height: math.unit(8, "feet"),
  38587. weight: math.unit(1200, "lb"),
  38588. name: "Front",
  38589. image: {
  38590. source: "./media/characters/malithee/front.svg",
  38591. extra: 1675/1640,
  38592. bottom: 162/1837
  38593. }
  38594. },
  38595. },
  38596. [
  38597. {
  38598. name: "Mortal Interaction",
  38599. height: math.unit(8, "feet"),
  38600. default: true
  38601. },
  38602. {
  38603. name: "Large",
  38604. height: math.unit(24, "feet")
  38605. },
  38606. {
  38607. name: "Kaiju",
  38608. height: math.unit(240, "feet")
  38609. },
  38610. {
  38611. name: "Megamacro",
  38612. height: math.unit(8000, "feet")
  38613. },
  38614. {
  38615. name: "Continent Cracker",
  38616. height: math.unit(24e6, "feet")
  38617. },
  38618. {
  38619. name: "Earth-Eclipsing",
  38620. height: math.unit(2.4e8, "feet")
  38621. },
  38622. {
  38623. name: "Sol-Swallowing",
  38624. height: math.unit(8e10, "feet")
  38625. },
  38626. {
  38627. name: "Galaxy Gulper",
  38628. height: math.unit(8, "galaxies")
  38629. },
  38630. {
  38631. name: "Light Universal",
  38632. height: math.unit(4, "universes")
  38633. },
  38634. {
  38635. name: "Universe Atoms",
  38636. height: math.unit(1.829e9, "universes")
  38637. },
  38638. {
  38639. name: "Light Multiversal",
  38640. height: math.unit(4, "multiverses")
  38641. },
  38642. {
  38643. name: "Multiverse Atoms",
  38644. height: math.unit(1.829e9, "multiverses")
  38645. },
  38646. {
  38647. name: "Nigh-Omnipresence",
  38648. height: math.unit(8e261, "multiverses")
  38649. },
  38650. ]
  38651. ))
  38652. characterMakers.push(() => makeCharacter(
  38653. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38654. {
  38655. front: {
  38656. height: math.unit(10, "feet"),
  38657. weight: math.unit(1500, "lb"),
  38658. name: "Front",
  38659. image: {
  38660. source: "./media/characters/miles-thestia/front.svg",
  38661. extra: 1812/1727,
  38662. bottom: 86/1898
  38663. }
  38664. },
  38665. back: {
  38666. height: math.unit(10, "feet"),
  38667. weight: math.unit(1500, "lb"),
  38668. name: "Back",
  38669. image: {
  38670. source: "./media/characters/miles-thestia/back.svg",
  38671. extra: 1799/1690,
  38672. bottom: 47/1846
  38673. }
  38674. },
  38675. frontNsfw: {
  38676. height: math.unit(10, "feet"),
  38677. weight: math.unit(1500, "lb"),
  38678. name: "Front (NSFW)",
  38679. image: {
  38680. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38681. extra: 1812/1727,
  38682. bottom: 86/1898
  38683. }
  38684. },
  38685. },
  38686. [
  38687. {
  38688. name: "Mini-Macro",
  38689. height: math.unit(10, "feet"),
  38690. default: true
  38691. },
  38692. ]
  38693. ))
  38694. characterMakers.push(() => makeCharacter(
  38695. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38696. {
  38697. front: {
  38698. height: math.unit(25, "feet"),
  38699. name: "Front",
  38700. image: {
  38701. source: "./media/characters/titan-s-wulf/front.svg",
  38702. extra: 1560/1484,
  38703. bottom: 76/1636
  38704. }
  38705. },
  38706. },
  38707. [
  38708. {
  38709. name: "Smallest",
  38710. height: math.unit(25, "feet"),
  38711. default: true
  38712. },
  38713. {
  38714. name: "Normal",
  38715. height: math.unit(200, "feet")
  38716. },
  38717. {
  38718. name: "Macro",
  38719. height: math.unit(200000, "feet")
  38720. },
  38721. {
  38722. name: "Multiversal Original",
  38723. height: math.unit(10000, "multiverses")
  38724. },
  38725. ]
  38726. ))
  38727. characterMakers.push(() => makeCharacter(
  38728. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38729. {
  38730. front: {
  38731. height: math.unit(8, "feet"),
  38732. weight: math.unit(553, "lb"),
  38733. name: "Front",
  38734. image: {
  38735. source: "./media/characters/tawendeh/front.svg",
  38736. extra: 2365/2268,
  38737. bottom: 83/2448
  38738. }
  38739. },
  38740. frontClothed: {
  38741. height: math.unit(8, "feet"),
  38742. weight: math.unit(553, "lb"),
  38743. name: "Front (Clothed)",
  38744. image: {
  38745. source: "./media/characters/tawendeh/front-clothed.svg",
  38746. extra: 2365/2268,
  38747. bottom: 83/2448
  38748. }
  38749. },
  38750. back: {
  38751. height: math.unit(8, "feet"),
  38752. weight: math.unit(553, "lb"),
  38753. name: "Back",
  38754. image: {
  38755. source: "./media/characters/tawendeh/back.svg",
  38756. extra: 2397/2294,
  38757. bottom: 42/2439
  38758. }
  38759. },
  38760. },
  38761. [
  38762. {
  38763. name: "Mortal Interaction",
  38764. height: math.unit(8, "feet"),
  38765. default: true
  38766. },
  38767. {
  38768. name: "Giant",
  38769. height: math.unit(80, "feet")
  38770. },
  38771. {
  38772. name: "Macro",
  38773. height: math.unit(800, "feet")
  38774. },
  38775. {
  38776. name: "Megamacro",
  38777. height: math.unit(8000, "feet")
  38778. },
  38779. {
  38780. name: "City-Crushing",
  38781. height: math.unit(24000, "feet")
  38782. },
  38783. {
  38784. name: "Mountain-Mashing",
  38785. height: math.unit(80000, "feet")
  38786. },
  38787. {
  38788. name: "Nation Nemesis",
  38789. height: math.unit(8e6, "feet")
  38790. },
  38791. {
  38792. name: "Continent Cracker",
  38793. height: math.unit(24e6, "feet")
  38794. },
  38795. {
  38796. name: "Earth-Eclipsing",
  38797. height: math.unit(2.4e8, "feet")
  38798. },
  38799. {
  38800. name: "Gas Giant Gulper",
  38801. height: math.unit(2.4e9, "feet")
  38802. },
  38803. {
  38804. name: "Sol-Swallowing",
  38805. height: math.unit(8e10, "feet")
  38806. },
  38807. {
  38808. name: "Galaxy Gulper",
  38809. height: math.unit(8, "galaxies")
  38810. },
  38811. {
  38812. name: "Cosmos Churner",
  38813. height: math.unit(8, "universes")
  38814. },
  38815. {
  38816. name: "Omnipotent Otter",
  38817. height: math.unit(80, "universes")
  38818. },
  38819. ]
  38820. ))
  38821. characterMakers.push(() => makeCharacter(
  38822. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38823. {
  38824. front: {
  38825. height: math.unit(2.6, "meters"),
  38826. weight: math.unit(900, "kg"),
  38827. name: "Front",
  38828. image: {
  38829. source: "./media/characters/neesha/front.svg",
  38830. extra: 1803/1653,
  38831. bottom: 128/1931
  38832. }
  38833. },
  38834. },
  38835. [
  38836. {
  38837. name: "Normal",
  38838. height: math.unit(2.6, "meters"),
  38839. default: true
  38840. },
  38841. {
  38842. name: "Macro",
  38843. height: math.unit(50, "meters")
  38844. },
  38845. ]
  38846. ))
  38847. characterMakers.push(() => makeCharacter(
  38848. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38849. {
  38850. front: {
  38851. height: math.unit(5, "feet"),
  38852. weight: math.unit(185, "lb"),
  38853. name: "Front",
  38854. image: {
  38855. source: "./media/characters/kyera/front.svg",
  38856. extra: 1875/1790,
  38857. bottom: 96/1971
  38858. }
  38859. },
  38860. },
  38861. [
  38862. {
  38863. name: "Normal",
  38864. height: math.unit(5, "feet"),
  38865. default: true
  38866. },
  38867. ]
  38868. ))
  38869. characterMakers.push(() => makeCharacter(
  38870. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38871. {
  38872. front: {
  38873. height: math.unit(7 + 6/12, "feet"),
  38874. weight: math.unit(540, "lb"),
  38875. name: "Front",
  38876. image: {
  38877. source: "./media/characters/yuko/front.svg",
  38878. extra: 1282/1222,
  38879. bottom: 101/1383
  38880. }
  38881. },
  38882. frontClothed: {
  38883. height: math.unit(7 + 6/12, "feet"),
  38884. weight: math.unit(540, "lb"),
  38885. name: "Front (Clothed)",
  38886. image: {
  38887. source: "./media/characters/yuko/front-clothed.svg",
  38888. extra: 1282/1222,
  38889. bottom: 101/1383
  38890. }
  38891. },
  38892. },
  38893. [
  38894. {
  38895. name: "Normal",
  38896. height: math.unit(7 + 6/12, "feet"),
  38897. default: true
  38898. },
  38899. {
  38900. name: "Macro",
  38901. height: math.unit(26 + 9/12, "feet")
  38902. },
  38903. {
  38904. name: "Megamacro",
  38905. height: math.unit(300, "feet")
  38906. },
  38907. {
  38908. name: "Gigamacro",
  38909. height: math.unit(5000, "feet")
  38910. },
  38911. {
  38912. name: "Planetary",
  38913. height: math.unit(10000, "miles")
  38914. },
  38915. ]
  38916. ))
  38917. characterMakers.push(() => makeCharacter(
  38918. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38919. {
  38920. front: {
  38921. height: math.unit(8 + 2/12, "feet"),
  38922. weight: math.unit(600, "lb"),
  38923. name: "Front",
  38924. image: {
  38925. source: "./media/characters/deam-nitrel/front.svg",
  38926. extra: 1308/1234,
  38927. bottom: 125/1433
  38928. }
  38929. },
  38930. },
  38931. [
  38932. {
  38933. name: "Normal",
  38934. height: math.unit(8 + 2/12, "feet"),
  38935. default: true
  38936. },
  38937. ]
  38938. ))
  38939. characterMakers.push(() => makeCharacter(
  38940. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  38941. {
  38942. front: {
  38943. height: math.unit(6.1, "feet"),
  38944. weight: math.unit(180, "lb"),
  38945. name: "Front",
  38946. image: {
  38947. source: "./media/characters/skyress/front.svg",
  38948. extra: 1045/915,
  38949. bottom: 28/1073
  38950. }
  38951. },
  38952. maw: {
  38953. height: math.unit(1, "feet"),
  38954. name: "Maw",
  38955. image: {
  38956. source: "./media/characters/skyress/maw.svg"
  38957. }
  38958. },
  38959. },
  38960. [
  38961. {
  38962. name: "Normal",
  38963. height: math.unit(6.1, "feet"),
  38964. default: true
  38965. },
  38966. {
  38967. name: "Macro",
  38968. height: math.unit(200, "feet")
  38969. },
  38970. ]
  38971. ))
  38972. characterMakers.push(() => makeCharacter(
  38973. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  38974. {
  38975. front: {
  38976. height: math.unit(4 + 2/12, "feet"),
  38977. weight: math.unit(40, "kg"),
  38978. name: "Front",
  38979. image: {
  38980. source: "./media/characters/amethyst-jones/front.svg",
  38981. extra: 1220/1150,
  38982. bottom: 101/1321
  38983. }
  38984. },
  38985. },
  38986. [
  38987. {
  38988. name: "Normal",
  38989. height: math.unit(4 + 2/12, "feet"),
  38990. default: true
  38991. },
  38992. ]
  38993. ))
  38994. characterMakers.push(() => makeCharacter(
  38995. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  38996. {
  38997. front: {
  38998. height: math.unit(1.7, "m"),
  38999. weight: math.unit(135, "lb"),
  39000. name: "Front",
  39001. image: {
  39002. source: "./media/characters/jade/front.svg",
  39003. extra: 1818/1767,
  39004. bottom: 32/1850
  39005. }
  39006. },
  39007. back: {
  39008. height: math.unit(1.7, "m"),
  39009. weight: math.unit(135, "lb"),
  39010. name: "Back",
  39011. image: {
  39012. source: "./media/characters/jade/back.svg",
  39013. extra: 1869/1809,
  39014. bottom: 35/1904
  39015. }
  39016. },
  39017. hand: {
  39018. height: math.unit(0.24, "m"),
  39019. name: "Hand",
  39020. image: {
  39021. source: "./media/characters/jade/hand.svg"
  39022. }
  39023. },
  39024. foot: {
  39025. height: math.unit(0.263, "m"),
  39026. name: "Foot",
  39027. image: {
  39028. source: "./media/characters/jade/foot.svg"
  39029. }
  39030. },
  39031. dick: {
  39032. height: math.unit(0.47, "m"),
  39033. name: "Dick",
  39034. image: {
  39035. source: "./media/characters/jade/dick.svg"
  39036. }
  39037. },
  39038. },
  39039. [
  39040. {
  39041. name: "Micro",
  39042. height: math.unit(22, "cm")
  39043. },
  39044. {
  39045. name: "Normal",
  39046. height: math.unit(1.7, "m"),
  39047. default: true
  39048. },
  39049. {
  39050. name: "Macro",
  39051. height: math.unit(152, "m")
  39052. },
  39053. ]
  39054. ))
  39055. characterMakers.push(() => makeCharacter(
  39056. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39057. {
  39058. front: {
  39059. height: math.unit(100, "miles"),
  39060. weight: math.unit(20000, "tons"),
  39061. name: "Front",
  39062. image: {
  39063. source: "./media/characters/cookie/front.svg",
  39064. extra: 1125/1070,
  39065. bottom: 30/1155
  39066. }
  39067. },
  39068. },
  39069. [
  39070. {
  39071. name: "Big",
  39072. height: math.unit(50, "feet")
  39073. },
  39074. {
  39075. name: "Macro",
  39076. height: math.unit(100, "miles"),
  39077. default: true
  39078. },
  39079. {
  39080. name: "Megamacro",
  39081. height: math.unit(90000, "miles")
  39082. },
  39083. ]
  39084. ))
  39085. characterMakers.push(() => makeCharacter(
  39086. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39087. {
  39088. front: {
  39089. height: math.unit(6, "feet"),
  39090. weight: math.unit(145, "lb"),
  39091. name: "Front",
  39092. image: {
  39093. source: "./media/characters/farzian/front.svg",
  39094. extra: 1902/1693,
  39095. bottom: 108/2010
  39096. }
  39097. },
  39098. },
  39099. [
  39100. {
  39101. name: "Macro",
  39102. height: math.unit(500, "feet"),
  39103. default: true
  39104. },
  39105. ]
  39106. ))
  39107. characterMakers.push(() => makeCharacter(
  39108. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39109. {
  39110. front: {
  39111. height: math.unit(3 + 6/12, "feet"),
  39112. weight: math.unit(50, "lb"),
  39113. name: "Front",
  39114. image: {
  39115. source: "./media/characters/kimberly-tilson/front.svg",
  39116. extra: 1400/1322,
  39117. bottom: 36/1436
  39118. }
  39119. },
  39120. back: {
  39121. height: math.unit(3 + 6/12, "feet"),
  39122. weight: math.unit(50, "lb"),
  39123. name: "Back",
  39124. image: {
  39125. source: "./media/characters/kimberly-tilson/back.svg",
  39126. extra: 1370/1307,
  39127. bottom: 20/1390
  39128. }
  39129. },
  39130. },
  39131. [
  39132. {
  39133. name: "Normal",
  39134. height: math.unit(3 + 6/12, "feet"),
  39135. default: true
  39136. },
  39137. ]
  39138. ))
  39139. characterMakers.push(() => makeCharacter(
  39140. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39141. {
  39142. front: {
  39143. height: math.unit(1148, "feet"),
  39144. weight: math.unit(34057, "lb"),
  39145. name: "Front",
  39146. image: {
  39147. source: "./media/characters/harthos/front.svg",
  39148. extra: 1391/1339,
  39149. bottom: 13/1404
  39150. }
  39151. },
  39152. },
  39153. [
  39154. {
  39155. name: "Macro",
  39156. height: math.unit(1148, "feet"),
  39157. default: true
  39158. },
  39159. ]
  39160. ))
  39161. characterMakers.push(() => makeCharacter(
  39162. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39163. {
  39164. front: {
  39165. height: math.unit(15, "feet"),
  39166. name: "Front",
  39167. image: {
  39168. source: "./media/characters/hypatia/front.svg",
  39169. extra: 1653/1591,
  39170. bottom: 79/1732
  39171. }
  39172. },
  39173. },
  39174. [
  39175. {
  39176. name: "Normal",
  39177. height: math.unit(15, "feet")
  39178. },
  39179. {
  39180. name: "Small",
  39181. height: math.unit(300, "feet")
  39182. },
  39183. {
  39184. name: "Macro",
  39185. height: math.unit(2500, "feet"),
  39186. default: true
  39187. },
  39188. {
  39189. name: "Mega Macro",
  39190. height: math.unit(1500, "miles")
  39191. },
  39192. {
  39193. name: "Giga Macro",
  39194. height: math.unit(1.5e6, "miles")
  39195. },
  39196. ]
  39197. ))
  39198. characterMakers.push(() => makeCharacter(
  39199. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39200. {
  39201. front: {
  39202. height: math.unit(6, "feet"),
  39203. weight: math.unit(200, "lb"),
  39204. name: "Front",
  39205. image: {
  39206. source: "./media/characters/wulver/front.svg",
  39207. extra: 1724/1632,
  39208. bottom: 130/1854
  39209. }
  39210. },
  39211. frontNsfw: {
  39212. height: math.unit(6, "feet"),
  39213. weight: math.unit(200, "lb"),
  39214. name: "Front (NSFW)",
  39215. image: {
  39216. source: "./media/characters/wulver/front-nsfw.svg",
  39217. extra: 1724/1632,
  39218. bottom: 130/1854
  39219. }
  39220. },
  39221. },
  39222. [
  39223. {
  39224. name: "Human-Sized",
  39225. height: math.unit(6, "feet")
  39226. },
  39227. {
  39228. name: "Normal",
  39229. height: math.unit(4, "meters"),
  39230. default: true
  39231. },
  39232. {
  39233. name: "Large",
  39234. height: math.unit(6, "m")
  39235. },
  39236. ]
  39237. ))
  39238. characterMakers.push(() => makeCharacter(
  39239. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39240. {
  39241. front: {
  39242. height: math.unit(7, "feet"),
  39243. name: "Front",
  39244. image: {
  39245. source: "./media/characters/maru/front.svg",
  39246. extra: 1595/1570,
  39247. bottom: 0/1595
  39248. }
  39249. },
  39250. },
  39251. [
  39252. {
  39253. name: "Normal",
  39254. height: math.unit(7, "feet"),
  39255. default: true
  39256. },
  39257. {
  39258. name: "Macro",
  39259. height: math.unit(700, "feet")
  39260. },
  39261. {
  39262. name: "Mega Macro",
  39263. height: math.unit(25, "miles")
  39264. },
  39265. ]
  39266. ))
  39267. characterMakers.push(() => makeCharacter(
  39268. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39269. {
  39270. front: {
  39271. height: math.unit(6, "feet"),
  39272. weight: math.unit(170, "lb"),
  39273. name: "Front",
  39274. image: {
  39275. source: "./media/characters/xenon/front.svg",
  39276. extra: 1376/1305,
  39277. bottom: 56/1432
  39278. }
  39279. },
  39280. back: {
  39281. height: math.unit(6, "feet"),
  39282. weight: math.unit(170, "lb"),
  39283. name: "Back",
  39284. image: {
  39285. source: "./media/characters/xenon/back.svg",
  39286. extra: 1328/1259,
  39287. bottom: 95/1423
  39288. }
  39289. },
  39290. maw: {
  39291. height: math.unit(0.52, "feet"),
  39292. name: "Maw",
  39293. image: {
  39294. source: "./media/characters/xenon/maw.svg"
  39295. }
  39296. },
  39297. hand: {
  39298. height: math.unit(0.82, "feet"),
  39299. name: "Hand",
  39300. image: {
  39301. source: "./media/characters/xenon/hand.svg"
  39302. }
  39303. },
  39304. foot: {
  39305. height: math.unit(1.13, "feet"),
  39306. name: "Foot",
  39307. image: {
  39308. source: "./media/characters/xenon/foot.svg"
  39309. }
  39310. },
  39311. },
  39312. [
  39313. {
  39314. name: "Micro",
  39315. height: math.unit(0.8, "inches")
  39316. },
  39317. {
  39318. name: "Normal",
  39319. height: math.unit(6, "feet")
  39320. },
  39321. {
  39322. name: "Macro",
  39323. height: math.unit(50, "feet"),
  39324. default: true
  39325. },
  39326. {
  39327. name: "Macro+",
  39328. height: math.unit(250, "feet")
  39329. },
  39330. {
  39331. name: "Megamacro",
  39332. height: math.unit(1500, "feet")
  39333. },
  39334. ]
  39335. ))
  39336. characterMakers.push(() => makeCharacter(
  39337. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39338. {
  39339. front: {
  39340. height: math.unit(7 + 5/12, "feet"),
  39341. name: "Front",
  39342. image: {
  39343. source: "./media/characters/zane/front.svg",
  39344. extra: 1260/1203,
  39345. bottom: 94/1354
  39346. }
  39347. },
  39348. back: {
  39349. height: math.unit(5.05, "feet"),
  39350. name: "Back",
  39351. image: {
  39352. source: "./media/characters/zane/back.svg",
  39353. extra: 893/829,
  39354. bottom: 30/923
  39355. }
  39356. },
  39357. werewolf: {
  39358. height: math.unit(11, "feet"),
  39359. name: "Werewolf",
  39360. image: {
  39361. source: "./media/characters/zane/werewolf.svg",
  39362. extra: 1383/1323,
  39363. bottom: 89/1472
  39364. }
  39365. },
  39366. foot: {
  39367. height: math.unit(1.46, "feet"),
  39368. name: "Foot",
  39369. image: {
  39370. source: "./media/characters/zane/foot.svg"
  39371. }
  39372. },
  39373. footFront: {
  39374. height: math.unit(0.784, "feet"),
  39375. name: "Foot (Front)",
  39376. image: {
  39377. source: "./media/characters/zane/foot-front.svg"
  39378. }
  39379. },
  39380. dick: {
  39381. height: math.unit(1.95, "feet"),
  39382. name: "Dick",
  39383. image: {
  39384. source: "./media/characters/zane/dick.svg"
  39385. }
  39386. },
  39387. dickWerewolf: {
  39388. height: math.unit(3.77, "feet"),
  39389. name: "Dick (Werewolf)",
  39390. image: {
  39391. source: "./media/characters/zane/dick.svg"
  39392. }
  39393. },
  39394. },
  39395. [
  39396. {
  39397. name: "Normal",
  39398. height: math.unit(7 + 5/12, "feet"),
  39399. default: true
  39400. },
  39401. ]
  39402. ))
  39403. characterMakers.push(() => makeCharacter(
  39404. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39405. {
  39406. front: {
  39407. height: math.unit(6 + 2/12, "feet"),
  39408. weight: math.unit(284, "lb"),
  39409. name: "Front",
  39410. image: {
  39411. source: "./media/characters/benni-desparque/front.svg",
  39412. extra: 1353/1126,
  39413. bottom: 69/1422
  39414. }
  39415. },
  39416. },
  39417. [
  39418. {
  39419. name: "Civilian",
  39420. height: math.unit(6 + 2/12, "feet")
  39421. },
  39422. {
  39423. name: "Normal",
  39424. height: math.unit(98, "feet"),
  39425. default: true
  39426. },
  39427. {
  39428. name: "Kaiju Fighter",
  39429. height: math.unit(268, "feet")
  39430. },
  39431. ]
  39432. ))
  39433. characterMakers.push(() => makeCharacter(
  39434. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39435. {
  39436. front: {
  39437. height: math.unit(5, "feet"),
  39438. weight: math.unit(105, "lb"),
  39439. name: "Front",
  39440. image: {
  39441. source: "./media/characters/maxine/front.svg",
  39442. extra: 1386/1250,
  39443. bottom: 71/1457
  39444. }
  39445. },
  39446. },
  39447. [
  39448. {
  39449. name: "Normal",
  39450. height: math.unit(5, "feet"),
  39451. default: true
  39452. },
  39453. ]
  39454. ))
  39455. characterMakers.push(() => makeCharacter(
  39456. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39457. {
  39458. front: {
  39459. height: math.unit(11 + 7/12, "feet"),
  39460. weight: math.unit(9576, "lb"),
  39461. name: "Front",
  39462. image: {
  39463. source: "./media/characters/scaly/front.svg",
  39464. extra: 888/867,
  39465. bottom: 36/924
  39466. }
  39467. },
  39468. },
  39469. [
  39470. {
  39471. name: "Normal",
  39472. height: math.unit(11 + 7/12, "feet"),
  39473. default: true
  39474. },
  39475. ]
  39476. ))
  39477. characterMakers.push(() => makeCharacter(
  39478. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39479. {
  39480. front: {
  39481. height: math.unit(9, "inches"),
  39482. name: "Front",
  39483. image: {
  39484. source: "./media/characters/saelria/front.svg",
  39485. extra: 662/621,
  39486. bottom: 12/674
  39487. }
  39488. },
  39489. },
  39490. [
  39491. {
  39492. name: "Tiny",
  39493. height: math.unit(9, "inches"),
  39494. default: true
  39495. },
  39496. ]
  39497. ))
  39498. characterMakers.push(() => makeCharacter(
  39499. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39500. {
  39501. front: {
  39502. height: math.unit(80, "meters"),
  39503. weight: math.unit(7000, "tonnes"),
  39504. name: "Front",
  39505. image: {
  39506. source: "./media/characters/tef/front.svg",
  39507. extra: 2036/1991,
  39508. bottom: 54/2090
  39509. }
  39510. },
  39511. back: {
  39512. height: math.unit(80, "meters"),
  39513. weight: math.unit(7000, "tonnes"),
  39514. name: "Back",
  39515. image: {
  39516. source: "./media/characters/tef/back.svg",
  39517. extra: 2036/1991,
  39518. bottom: 54/2090
  39519. }
  39520. },
  39521. },
  39522. [
  39523. {
  39524. name: "Macro",
  39525. height: math.unit(80, "meters"),
  39526. default: true
  39527. },
  39528. ]
  39529. ))
  39530. characterMakers.push(() => makeCharacter(
  39531. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39532. {
  39533. front: {
  39534. height: math.unit(13, "feet"),
  39535. weight: math.unit(6, "tons"),
  39536. name: "Front",
  39537. image: {
  39538. source: "./media/characters/rover/front.svg",
  39539. extra: 1233/1156,
  39540. bottom: 50/1283
  39541. }
  39542. },
  39543. back: {
  39544. height: math.unit(13, "feet"),
  39545. weight: math.unit(6, "tons"),
  39546. name: "Back",
  39547. image: {
  39548. source: "./media/characters/rover/back.svg",
  39549. extra: 1327/1258,
  39550. bottom: 39/1366
  39551. }
  39552. },
  39553. },
  39554. [
  39555. {
  39556. name: "Normal",
  39557. height: math.unit(13, "feet"),
  39558. default: true
  39559. },
  39560. {
  39561. name: "Macro",
  39562. height: math.unit(1300, "feet")
  39563. },
  39564. {
  39565. name: "Megamacro",
  39566. height: math.unit(1300, "miles")
  39567. },
  39568. {
  39569. name: "Gigamacro",
  39570. height: math.unit(1300000, "miles")
  39571. },
  39572. ]
  39573. ))
  39574. characterMakers.push(() => makeCharacter(
  39575. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39576. {
  39577. front: {
  39578. height: math.unit(6, "feet"),
  39579. weight: math.unit(150, "lb"),
  39580. name: "Front",
  39581. image: {
  39582. source: "./media/characters/ariz/front.svg",
  39583. extra: 1401/1346,
  39584. bottom: 5/1406
  39585. }
  39586. },
  39587. },
  39588. [
  39589. {
  39590. name: "Normal",
  39591. height: math.unit(10, "feet"),
  39592. default: true
  39593. },
  39594. ]
  39595. ))
  39596. characterMakers.push(() => makeCharacter(
  39597. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39598. {
  39599. front: {
  39600. height: math.unit(6, "feet"),
  39601. weight: math.unit(140, "lb"),
  39602. name: "Front",
  39603. image: {
  39604. source: "./media/characters/sigrun/front.svg",
  39605. extra: 1418/1359,
  39606. bottom: 27/1445
  39607. }
  39608. },
  39609. },
  39610. [
  39611. {
  39612. name: "Macro",
  39613. height: math.unit(35, "feet"),
  39614. default: true
  39615. },
  39616. ]
  39617. ))
  39618. characterMakers.push(() => makeCharacter(
  39619. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39620. {
  39621. front: {
  39622. height: math.unit(6, "feet"),
  39623. weight: math.unit(150, "lb"),
  39624. name: "Front",
  39625. image: {
  39626. source: "./media/characters/numin/front.svg",
  39627. extra: 1433/1388,
  39628. bottom: 12/1445
  39629. }
  39630. },
  39631. },
  39632. [
  39633. {
  39634. name: "Macro",
  39635. height: math.unit(21.5, "km"),
  39636. default: true
  39637. },
  39638. ]
  39639. ))
  39640. characterMakers.push(() => makeCharacter(
  39641. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39642. {
  39643. front: {
  39644. height: math.unit(6, "feet"),
  39645. weight: math.unit(463, "lb"),
  39646. name: "Front",
  39647. image: {
  39648. source: "./media/characters/melwa/front.svg",
  39649. extra: 1307/1248,
  39650. bottom: 93/1400
  39651. }
  39652. },
  39653. },
  39654. [
  39655. {
  39656. name: "Macro",
  39657. height: math.unit(50, "meters"),
  39658. default: true
  39659. },
  39660. ]
  39661. ))
  39662. characterMakers.push(() => makeCharacter(
  39663. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39664. {
  39665. front: {
  39666. height: math.unit(325, "feet"),
  39667. name: "Front",
  39668. image: {
  39669. source: "./media/characters/zorkaiju/front.svg",
  39670. extra: 1955/1814,
  39671. bottom: 40/1995
  39672. }
  39673. },
  39674. frontExtended: {
  39675. height: math.unit(325, "feet"),
  39676. name: "Front (Extended)",
  39677. image: {
  39678. source: "./media/characters/zorkaiju/front-extended.svg",
  39679. extra: 1955/1814,
  39680. bottom: 40/1995
  39681. }
  39682. },
  39683. side: {
  39684. height: math.unit(325, "feet"),
  39685. name: "Side",
  39686. image: {
  39687. source: "./media/characters/zorkaiju/side.svg",
  39688. extra: 1495/1396,
  39689. bottom: 17/1512
  39690. }
  39691. },
  39692. sideExtended: {
  39693. height: math.unit(325, "feet"),
  39694. name: "Side (Extended)",
  39695. image: {
  39696. source: "./media/characters/zorkaiju/side-extended.svg",
  39697. extra: 1495/1396,
  39698. bottom: 17/1512
  39699. }
  39700. },
  39701. back: {
  39702. height: math.unit(325, "feet"),
  39703. name: "Back",
  39704. image: {
  39705. source: "./media/characters/zorkaiju/back.svg",
  39706. extra: 1959/1821,
  39707. bottom: 31/1990
  39708. }
  39709. },
  39710. backExtended: {
  39711. height: math.unit(325, "feet"),
  39712. name: "Back (Extended)",
  39713. image: {
  39714. source: "./media/characters/zorkaiju/back-extended.svg",
  39715. extra: 1959/1821,
  39716. bottom: 31/1990
  39717. }
  39718. },
  39719. hand: {
  39720. height: math.unit(58.4, "feet"),
  39721. name: "Hand",
  39722. image: {
  39723. source: "./media/characters/zorkaiju/hand.svg"
  39724. }
  39725. },
  39726. handExtended: {
  39727. height: math.unit(61.4, "feet"),
  39728. name: "Hand (Extended)",
  39729. image: {
  39730. source: "./media/characters/zorkaiju/hand-extended.svg"
  39731. }
  39732. },
  39733. foot: {
  39734. height: math.unit(95, "feet"),
  39735. name: "Foot",
  39736. image: {
  39737. source: "./media/characters/zorkaiju/foot.svg"
  39738. }
  39739. },
  39740. leftArm: {
  39741. height: math.unit(59, "feet"),
  39742. name: "Left Arm",
  39743. image: {
  39744. source: "./media/characters/zorkaiju/left-arm.svg"
  39745. }
  39746. },
  39747. rightArm: {
  39748. height: math.unit(59, "feet"),
  39749. name: "Right Arm",
  39750. image: {
  39751. source: "./media/characters/zorkaiju/right-arm.svg"
  39752. }
  39753. },
  39754. tail: {
  39755. height: math.unit(104, "feet"),
  39756. name: "Tail",
  39757. image: {
  39758. source: "./media/characters/zorkaiju/tail.svg"
  39759. }
  39760. },
  39761. tailExtended: {
  39762. height: math.unit(104, "feet"),
  39763. name: "Tail (Extended)",
  39764. image: {
  39765. source: "./media/characters/zorkaiju/tail-extended.svg"
  39766. }
  39767. },
  39768. tailBottom: {
  39769. height: math.unit(104, "feet"),
  39770. name: "Tail Bottom",
  39771. image: {
  39772. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39773. }
  39774. },
  39775. crystal: {
  39776. height: math.unit(27.54, "feet"),
  39777. name: "Crystal",
  39778. image: {
  39779. source: "./media/characters/zorkaiju/crystal.svg"
  39780. }
  39781. },
  39782. },
  39783. [
  39784. {
  39785. name: "Kaiju",
  39786. height: math.unit(325, "feet"),
  39787. default: true
  39788. },
  39789. ]
  39790. ))
  39791. characterMakers.push(() => makeCharacter(
  39792. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  39793. {
  39794. front: {
  39795. height: math.unit(6 + 1/12, "feet"),
  39796. weight: math.unit(115, "lb"),
  39797. name: "Front",
  39798. image: {
  39799. source: "./media/characters/bailey-belfry/front.svg",
  39800. extra: 1240/1121,
  39801. bottom: 101/1341
  39802. }
  39803. },
  39804. },
  39805. [
  39806. {
  39807. name: "Normal",
  39808. height: math.unit(6 + 1/12, "feet"),
  39809. default: true
  39810. },
  39811. ]
  39812. ))
  39813. characterMakers.push(() => makeCharacter(
  39814. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  39815. {
  39816. side: {
  39817. height: math.unit(4, "meters"),
  39818. weight: math.unit(250, "kg"),
  39819. name: "Side",
  39820. image: {
  39821. source: "./media/characters/blacky/side.svg",
  39822. extra: 1027/919,
  39823. bottom: 43/1070
  39824. }
  39825. },
  39826. maw: {
  39827. height: math.unit(1, "meters"),
  39828. name: "Maw",
  39829. image: {
  39830. source: "./media/characters/blacky/maw.svg"
  39831. }
  39832. },
  39833. paw: {
  39834. height: math.unit(1, "meters"),
  39835. name: "Paw",
  39836. image: {
  39837. source: "./media/characters/blacky/paw.svg"
  39838. }
  39839. },
  39840. },
  39841. [
  39842. {
  39843. name: "Normal",
  39844. height: math.unit(4, "meters"),
  39845. default: true
  39846. },
  39847. ]
  39848. ))
  39849. characterMakers.push(() => makeCharacter(
  39850. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  39851. {
  39852. front: {
  39853. height: math.unit(170, "cm"),
  39854. weight: math.unit(66, "kg"),
  39855. name: "Front",
  39856. image: {
  39857. source: "./media/characters/thux-ei/front.svg",
  39858. extra: 1109/1011,
  39859. bottom: 8/1117
  39860. }
  39861. },
  39862. },
  39863. [
  39864. {
  39865. name: "Normal",
  39866. height: math.unit(170, "cm"),
  39867. default: true
  39868. },
  39869. ]
  39870. ))
  39871. characterMakers.push(() => makeCharacter(
  39872. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  39873. {
  39874. front: {
  39875. height: math.unit(5, "feet"),
  39876. weight: math.unit(120, "lb"),
  39877. name: "Front",
  39878. image: {
  39879. source: "./media/characters/roxanne-voltaire/front.svg",
  39880. extra: 1901/1779,
  39881. bottom: 53/1954
  39882. }
  39883. },
  39884. },
  39885. [
  39886. {
  39887. name: "Normal",
  39888. height: math.unit(5, "feet"),
  39889. default: true
  39890. },
  39891. {
  39892. name: "Giant",
  39893. height: math.unit(50, "feet")
  39894. },
  39895. {
  39896. name: "Titan",
  39897. height: math.unit(500, "feet")
  39898. },
  39899. {
  39900. name: "Macro",
  39901. height: math.unit(5000, "feet")
  39902. },
  39903. {
  39904. name: "Megamacro",
  39905. height: math.unit(50000, "feet")
  39906. },
  39907. {
  39908. name: "Gigamacro",
  39909. height: math.unit(500000, "feet")
  39910. },
  39911. {
  39912. name: "Teramacro",
  39913. height: math.unit(5e6, "feet")
  39914. },
  39915. ]
  39916. ))
  39917. characterMakers.push(() => makeCharacter(
  39918. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  39919. {
  39920. front: {
  39921. height: math.unit(6 + 2/12, "feet"),
  39922. name: "Front",
  39923. image: {
  39924. source: "./media/characters/squeaks/front.svg",
  39925. extra: 1823/1768,
  39926. bottom: 138/1961
  39927. }
  39928. },
  39929. },
  39930. [
  39931. {
  39932. name: "Micro",
  39933. height: math.unit(0.5, "inches")
  39934. },
  39935. {
  39936. name: "Normal",
  39937. height: math.unit(6 + 2/12, "feet"),
  39938. default: true
  39939. },
  39940. {
  39941. name: "Macro",
  39942. height: math.unit(600, "feet")
  39943. },
  39944. ]
  39945. ))
  39946. characterMakers.push(() => makeCharacter(
  39947. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  39948. {
  39949. front: {
  39950. height: math.unit(1.72, "meters"),
  39951. name: "Front",
  39952. image: {
  39953. source: "./media/characters/archinger/front.svg",
  39954. extra: 1861/1675,
  39955. bottom: 125/1986
  39956. }
  39957. },
  39958. back: {
  39959. height: math.unit(1.72, "meters"),
  39960. name: "Back",
  39961. image: {
  39962. source: "./media/characters/archinger/back.svg",
  39963. extra: 1844/1701,
  39964. bottom: 104/1948
  39965. }
  39966. },
  39967. cock: {
  39968. height: math.unit(0.59, "feet"),
  39969. name: "Cock",
  39970. image: {
  39971. source: "./media/characters/archinger/cock.svg"
  39972. }
  39973. },
  39974. },
  39975. [
  39976. {
  39977. name: "Normal",
  39978. height: math.unit(1.72, "meters"),
  39979. default: true
  39980. },
  39981. {
  39982. name: "Macro",
  39983. height: math.unit(84, "meters")
  39984. },
  39985. {
  39986. name: "Macro+",
  39987. height: math.unit(112, "meters")
  39988. },
  39989. {
  39990. name: "Macro++",
  39991. height: math.unit(960, "meters")
  39992. },
  39993. {
  39994. name: "Macro+++",
  39995. height: math.unit(4, "km")
  39996. },
  39997. {
  39998. name: "Macro++++",
  39999. height: math.unit(48, "km")
  40000. },
  40001. {
  40002. name: "Macro+++++",
  40003. height: math.unit(4500, "km")
  40004. },
  40005. ]
  40006. ))
  40007. characterMakers.push(() => makeCharacter(
  40008. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40009. {
  40010. front: {
  40011. height: math.unit(5 + 5/12, "feet"),
  40012. name: "Front",
  40013. image: {
  40014. source: "./media/characters/alsnapz/front.svg",
  40015. extra: 1157/1065,
  40016. bottom: 42/1199
  40017. }
  40018. },
  40019. },
  40020. [
  40021. {
  40022. name: "Normal",
  40023. height: math.unit(5 + 5/12, "feet"),
  40024. default: true
  40025. },
  40026. ]
  40027. ))
  40028. characterMakers.push(() => makeCharacter(
  40029. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40030. {
  40031. side: {
  40032. height: math.unit(3.2, "earths"),
  40033. name: "Side",
  40034. image: {
  40035. source: "./media/characters/mag/side.svg",
  40036. extra: 1331/1008,
  40037. bottom: 52/1383
  40038. }
  40039. },
  40040. wing: {
  40041. height: math.unit(1.94, "earths"),
  40042. name: "Wing",
  40043. image: {
  40044. source: "./media/characters/mag/wing.svg"
  40045. }
  40046. },
  40047. dick: {
  40048. height: math.unit(1.8, "earths"),
  40049. name: "Dick",
  40050. image: {
  40051. source: "./media/characters/mag/dick.svg"
  40052. }
  40053. },
  40054. ass: {
  40055. height: math.unit(1.33, "earths"),
  40056. name: "Ass",
  40057. image: {
  40058. source: "./media/characters/mag/ass.svg"
  40059. }
  40060. },
  40061. head: {
  40062. height: math.unit(1.1, "earths"),
  40063. name: "Head",
  40064. image: {
  40065. source: "./media/characters/mag/head.svg"
  40066. }
  40067. },
  40068. maw: {
  40069. height: math.unit(1.62, "earths"),
  40070. name: "Maw",
  40071. image: {
  40072. source: "./media/characters/mag/maw.svg"
  40073. }
  40074. },
  40075. },
  40076. [
  40077. {
  40078. name: "Small",
  40079. height: math.unit(162, "feet")
  40080. },
  40081. {
  40082. name: "Normal",
  40083. height: math.unit(3.2, "earths"),
  40084. default: true
  40085. },
  40086. ]
  40087. ))
  40088. characterMakers.push(() => makeCharacter(
  40089. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40090. {
  40091. front: {
  40092. height: math.unit(512, "feet"),
  40093. weight: math.unit(63509, "tonnes"),
  40094. name: "Front",
  40095. image: {
  40096. source: "./media/characters/vorrel-harroc/front.svg",
  40097. extra: 1075/1063,
  40098. bottom: 62/1137
  40099. }
  40100. },
  40101. },
  40102. [
  40103. {
  40104. name: "Normal",
  40105. height: math.unit(10, "feet")
  40106. },
  40107. {
  40108. name: "Macro",
  40109. height: math.unit(512, "feet"),
  40110. default: true
  40111. },
  40112. {
  40113. name: "Megamacro",
  40114. height: math.unit(256, "miles")
  40115. },
  40116. {
  40117. name: "Gigamacro",
  40118. height: math.unit(4096, "miles")
  40119. },
  40120. ]
  40121. ))
  40122. characterMakers.push(() => makeCharacter(
  40123. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40124. {
  40125. side: {
  40126. height: math.unit(50, "feet"),
  40127. name: "Side",
  40128. image: {
  40129. source: "./media/characters/froimar/side.svg",
  40130. extra: 855/638,
  40131. bottom: 99/954
  40132. }
  40133. },
  40134. },
  40135. [
  40136. {
  40137. name: "Macro",
  40138. height: math.unit(50, "feet"),
  40139. default: true
  40140. },
  40141. ]
  40142. ))
  40143. characterMakers.push(() => makeCharacter(
  40144. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40145. {
  40146. front: {
  40147. height: math.unit(210, "miles"),
  40148. name: "Front",
  40149. image: {
  40150. source: "./media/characters/timothy/front.svg",
  40151. extra: 1007/943,
  40152. bottom: 62/1069
  40153. }
  40154. },
  40155. frontSkirt: {
  40156. height: math.unit(210, "miles"),
  40157. name: "Front (Skirt)",
  40158. image: {
  40159. source: "./media/characters/timothy/front-skirt.svg",
  40160. extra: 1007/943,
  40161. bottom: 62/1069
  40162. }
  40163. },
  40164. frontCoat: {
  40165. height: math.unit(210, "miles"),
  40166. name: "Front (Coat)",
  40167. image: {
  40168. source: "./media/characters/timothy/front-coat.svg",
  40169. extra: 1007/943,
  40170. bottom: 62/1069
  40171. }
  40172. },
  40173. },
  40174. [
  40175. {
  40176. name: "Macro",
  40177. height: math.unit(210, "miles"),
  40178. default: true
  40179. },
  40180. {
  40181. name: "Megamacro",
  40182. height: math.unit(210000, "miles")
  40183. },
  40184. ]
  40185. ))
  40186. characterMakers.push(() => makeCharacter(
  40187. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40188. {
  40189. front: {
  40190. height: math.unit(188, "feet"),
  40191. name: "Front",
  40192. image: {
  40193. source: "./media/characters/pyotr/front.svg",
  40194. extra: 1912/1826,
  40195. bottom: 18/1930
  40196. }
  40197. },
  40198. },
  40199. [
  40200. {
  40201. name: "Macro",
  40202. height: math.unit(188, "feet"),
  40203. default: true
  40204. },
  40205. {
  40206. name: "Megamacro",
  40207. height: math.unit(8, "miles")
  40208. },
  40209. ]
  40210. ))
  40211. characterMakers.push(() => makeCharacter(
  40212. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40213. {
  40214. side: {
  40215. height: math.unit(10, "feet"),
  40216. weight: math.unit(4500, "lb"),
  40217. name: "Side",
  40218. image: {
  40219. source: "./media/characters/ackart/side.svg",
  40220. extra: 1776/1668,
  40221. bottom: 116/1892
  40222. }
  40223. },
  40224. },
  40225. [
  40226. {
  40227. name: "Normal",
  40228. height: math.unit(10, "feet"),
  40229. default: true
  40230. },
  40231. ]
  40232. ))
  40233. characterMakers.push(() => makeCharacter(
  40234. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40235. {
  40236. side: {
  40237. height: math.unit(21, "feet"),
  40238. name: "Side",
  40239. image: {
  40240. source: "./media/characters/nolow/side.svg",
  40241. extra: 1484/1434,
  40242. bottom: 85/1569
  40243. }
  40244. },
  40245. sideErect: {
  40246. height: math.unit(21, "feet"),
  40247. name: "Side-erect",
  40248. image: {
  40249. source: "./media/characters/nolow/side-erect.svg",
  40250. extra: 1484/1434,
  40251. bottom: 85/1569
  40252. }
  40253. },
  40254. },
  40255. [
  40256. {
  40257. name: "Regular",
  40258. height: math.unit(12, "feet")
  40259. },
  40260. {
  40261. name: "Big Chee",
  40262. height: math.unit(21, "feet"),
  40263. default: true
  40264. },
  40265. ]
  40266. ))
  40267. characterMakers.push(() => makeCharacter(
  40268. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40269. {
  40270. front: {
  40271. height: math.unit(7, "feet"),
  40272. weight: math.unit(250, "lb"),
  40273. name: "Front",
  40274. image: {
  40275. source: "./media/characters/nines/front.svg",
  40276. extra: 1741/1607,
  40277. bottom: 41/1782
  40278. }
  40279. },
  40280. side: {
  40281. height: math.unit(7, "feet"),
  40282. weight: math.unit(250, "lb"),
  40283. name: "Side",
  40284. image: {
  40285. source: "./media/characters/nines/side.svg",
  40286. extra: 1854/1735,
  40287. bottom: 93/1947
  40288. }
  40289. },
  40290. back: {
  40291. height: math.unit(7, "feet"),
  40292. weight: math.unit(250, "lb"),
  40293. name: "Back",
  40294. image: {
  40295. source: "./media/characters/nines/back.svg",
  40296. extra: 1748/1615,
  40297. bottom: 20/1768
  40298. }
  40299. },
  40300. },
  40301. [
  40302. {
  40303. name: "Megamacro",
  40304. height: math.unit(99, "km"),
  40305. default: true
  40306. },
  40307. ]
  40308. ))
  40309. characterMakers.push(() => makeCharacter(
  40310. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40311. {
  40312. front: {
  40313. height: math.unit(5 + 10/12, "feet"),
  40314. weight: math.unit(210, "lb"),
  40315. name: "Front",
  40316. image: {
  40317. source: "./media/characters/zenith/front.svg",
  40318. extra: 1531/1452,
  40319. bottom: 198/1729
  40320. }
  40321. },
  40322. back: {
  40323. height: math.unit(5 + 10/12, "feet"),
  40324. weight: math.unit(210, "lb"),
  40325. name: "Back",
  40326. image: {
  40327. source: "./media/characters/zenith/back.svg",
  40328. extra: 1571/1487,
  40329. bottom: 75/1646
  40330. }
  40331. },
  40332. },
  40333. [
  40334. {
  40335. name: "Normal",
  40336. height: math.unit(5 + 10/12, "feet"),
  40337. default: true
  40338. }
  40339. ]
  40340. ))
  40341. characterMakers.push(() => makeCharacter(
  40342. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40343. {
  40344. front: {
  40345. height: math.unit(4, "feet"),
  40346. weight: math.unit(60, "lb"),
  40347. name: "Front",
  40348. image: {
  40349. source: "./media/characters/jasper/front.svg",
  40350. extra: 1450/1379,
  40351. bottom: 19/1469
  40352. }
  40353. },
  40354. },
  40355. [
  40356. {
  40357. name: "Normal",
  40358. height: math.unit(4, "feet"),
  40359. default: true
  40360. },
  40361. ]
  40362. ))
  40363. characterMakers.push(() => makeCharacter(
  40364. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40365. {
  40366. front: {
  40367. height: math.unit(6 + 5/12, "feet"),
  40368. weight: math.unit(290, "lb"),
  40369. name: "Front",
  40370. image: {
  40371. source: "./media/characters/tiberius-thyben/front.svg",
  40372. extra: 757/739,
  40373. bottom: 39/796
  40374. }
  40375. },
  40376. },
  40377. [
  40378. {
  40379. name: "Micro",
  40380. height: math.unit(1.5, "inches")
  40381. },
  40382. {
  40383. name: "Normal",
  40384. height: math.unit(6 + 5/12, "feet"),
  40385. default: true
  40386. },
  40387. {
  40388. name: "Macro",
  40389. height: math.unit(300, "feet")
  40390. },
  40391. ]
  40392. ))
  40393. characterMakers.push(() => makeCharacter(
  40394. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40395. {
  40396. front: {
  40397. height: math.unit(5 + 6/12, "feet"),
  40398. weight: math.unit(60, "kg"),
  40399. name: "Front",
  40400. image: {
  40401. source: "./media/characters/sabre/front.svg",
  40402. extra: 738/671,
  40403. bottom: 27/765
  40404. }
  40405. },
  40406. },
  40407. [
  40408. {
  40409. name: "Teeny",
  40410. height: math.unit(2, "inches")
  40411. },
  40412. {
  40413. name: "Smol",
  40414. height: math.unit(8, "inches")
  40415. },
  40416. {
  40417. name: "Normal",
  40418. height: math.unit(5 + 6/12, "feet"),
  40419. default: true
  40420. },
  40421. {
  40422. name: "Mini-Macro",
  40423. height: math.unit(15, "feet")
  40424. },
  40425. {
  40426. name: "Macro",
  40427. height: math.unit(50, "feet")
  40428. },
  40429. ]
  40430. ))
  40431. characterMakers.push(() => makeCharacter(
  40432. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40433. {
  40434. front: {
  40435. height: math.unit(6 + 4/12, "feet"),
  40436. weight: math.unit(170, "lb"),
  40437. name: "Front",
  40438. image: {
  40439. source: "./media/characters/charlie/front.svg",
  40440. extra: 1348/1228,
  40441. bottom: 15/1363
  40442. }
  40443. },
  40444. },
  40445. [
  40446. {
  40447. name: "Macro",
  40448. height: math.unit(1700, "meters"),
  40449. default: true
  40450. },
  40451. {
  40452. name: "MegaMacro",
  40453. height: math.unit(20400, "meters")
  40454. },
  40455. ]
  40456. ))
  40457. characterMakers.push(() => makeCharacter(
  40458. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40459. {
  40460. front: {
  40461. height: math.unit(6 + 3/12, "feet"),
  40462. weight: math.unit(185, "lb"),
  40463. name: "Front",
  40464. image: {
  40465. source: "./media/characters/susan-grant/front.svg",
  40466. extra: 1351/1327,
  40467. bottom: 26/1377
  40468. }
  40469. },
  40470. },
  40471. [
  40472. {
  40473. name: "Normal",
  40474. height: math.unit(6 + 3/12, "feet"),
  40475. default: true
  40476. },
  40477. {
  40478. name: "Macro",
  40479. height: math.unit(225, "feet")
  40480. },
  40481. {
  40482. name: "Macro+",
  40483. height: math.unit(900, "feet")
  40484. },
  40485. {
  40486. name: "MegaMacro",
  40487. height: math.unit(14400, "feet")
  40488. },
  40489. ]
  40490. ))
  40491. characterMakers.push(() => makeCharacter(
  40492. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40493. {
  40494. front: {
  40495. height: math.unit(5 + 4/12, "feet"),
  40496. weight: math.unit(110, "lb"),
  40497. name: "Front",
  40498. image: {
  40499. source: "./media/characters/axel-isanov/front.svg",
  40500. extra: 1096/1065,
  40501. bottom: 13/1109
  40502. }
  40503. },
  40504. },
  40505. [
  40506. {
  40507. name: "Normal",
  40508. height: math.unit(5 + 4/12, "feet"),
  40509. default: true
  40510. },
  40511. ]
  40512. ))
  40513. characterMakers.push(() => makeCharacter(
  40514. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40515. {
  40516. front: {
  40517. height: math.unit(9, "feet"),
  40518. weight: math.unit(467, "lb"),
  40519. name: "Front",
  40520. image: {
  40521. source: "./media/characters/necahual/front.svg",
  40522. extra: 920/873,
  40523. bottom: 26/946
  40524. }
  40525. },
  40526. back: {
  40527. height: math.unit(9, "feet"),
  40528. weight: math.unit(467, "lb"),
  40529. name: "Back",
  40530. image: {
  40531. source: "./media/characters/necahual/back.svg",
  40532. extra: 930/884,
  40533. bottom: 16/946
  40534. }
  40535. },
  40536. frontUnderwear: {
  40537. height: math.unit(9, "feet"),
  40538. weight: math.unit(467, "lb"),
  40539. name: "Front (Underwear)",
  40540. image: {
  40541. source: "./media/characters/necahual/front-underwear.svg",
  40542. extra: 920/873,
  40543. bottom: 26/946
  40544. }
  40545. },
  40546. frontDressed: {
  40547. height: math.unit(9, "feet"),
  40548. weight: math.unit(467, "lb"),
  40549. name: "Front (Dressed)",
  40550. image: {
  40551. source: "./media/characters/necahual/front-dressed.svg",
  40552. extra: 920/873,
  40553. bottom: 26/946
  40554. }
  40555. },
  40556. },
  40557. [
  40558. {
  40559. name: "Comprsesed",
  40560. height: math.unit(9, "feet")
  40561. },
  40562. {
  40563. name: "Natural",
  40564. height: math.unit(15, "feet"),
  40565. default: true
  40566. },
  40567. {
  40568. name: "Boosted",
  40569. height: math.unit(50, "feet")
  40570. },
  40571. {
  40572. name: "Boosted+",
  40573. height: math.unit(150, "feet")
  40574. },
  40575. {
  40576. name: "Max",
  40577. height: math.unit(500, "feet")
  40578. },
  40579. ]
  40580. ))
  40581. characterMakers.push(() => makeCharacter(
  40582. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40583. {
  40584. front: {
  40585. height: math.unit(22 + 1/12, "feet"),
  40586. weight: math.unit(3200, "lb"),
  40587. name: "Front",
  40588. image: {
  40589. source: "./media/characters/theo-acacia/front.svg",
  40590. extra: 1796/1741,
  40591. bottom: 83/1879
  40592. }
  40593. },
  40594. frontUnderwear: {
  40595. height: math.unit(22 + 1/12, "feet"),
  40596. weight: math.unit(3200, "lb"),
  40597. name: "Front (Underwear)",
  40598. image: {
  40599. source: "./media/characters/theo-acacia/front-underwear.svg",
  40600. extra: 1796/1741,
  40601. bottom: 83/1879
  40602. }
  40603. },
  40604. frontNude: {
  40605. height: math.unit(22 + 1/12, "feet"),
  40606. weight: math.unit(3200, "lb"),
  40607. name: "Front (Nude)",
  40608. image: {
  40609. source: "./media/characters/theo-acacia/front-nude.svg",
  40610. extra: 1796/1741,
  40611. bottom: 83/1879
  40612. }
  40613. },
  40614. },
  40615. [
  40616. {
  40617. name: "Normal",
  40618. height: math.unit(22 + 1/12, "feet"),
  40619. default: true
  40620. },
  40621. ]
  40622. ))
  40623. characterMakers.push(() => makeCharacter(
  40624. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40625. {
  40626. front: {
  40627. height: math.unit(20, "feet"),
  40628. name: "Front",
  40629. image: {
  40630. source: "./media/characters/astra/front.svg",
  40631. extra: 1850/1714,
  40632. bottom: 106/1956
  40633. }
  40634. },
  40635. frontUndressed: {
  40636. height: math.unit(20, "feet"),
  40637. name: "Front (Undressed)",
  40638. image: {
  40639. source: "./media/characters/astra/front-undressed.svg",
  40640. extra: 1926/1749,
  40641. bottom: 0/1926
  40642. }
  40643. },
  40644. hand: {
  40645. height: math.unit(1.53, "feet"),
  40646. name: "Hand",
  40647. image: {
  40648. source: "./media/characters/astra/hand.svg"
  40649. }
  40650. },
  40651. paw: {
  40652. height: math.unit(1.53, "feet"),
  40653. name: "Paw",
  40654. image: {
  40655. source: "./media/characters/astra/paw.svg"
  40656. }
  40657. },
  40658. },
  40659. [
  40660. {
  40661. name: "Smallest",
  40662. height: math.unit(20, "feet")
  40663. },
  40664. {
  40665. name: "Normal",
  40666. height: math.unit(1e9, "miles"),
  40667. default: true
  40668. },
  40669. {
  40670. name: "Larger",
  40671. height: math.unit(5, "multiverses")
  40672. },
  40673. {
  40674. name: "Largest",
  40675. height: math.unit(1e9, "multiverses")
  40676. },
  40677. ]
  40678. ))
  40679. characterMakers.push(() => makeCharacter(
  40680. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40681. {
  40682. front: {
  40683. height: math.unit(8, "feet"),
  40684. name: "Front",
  40685. image: {
  40686. source: "./media/characters/breanna/front.svg",
  40687. extra: 1912/1632,
  40688. bottom: 33/1945
  40689. }
  40690. },
  40691. },
  40692. [
  40693. {
  40694. name: "Smallest",
  40695. height: math.unit(8, "feet")
  40696. },
  40697. {
  40698. name: "Normal",
  40699. height: math.unit(1, "mile"),
  40700. default: true
  40701. },
  40702. {
  40703. name: "Maximum",
  40704. height: math.unit(1500000000000, "lightyears")
  40705. },
  40706. ]
  40707. ))
  40708. characterMakers.push(() => makeCharacter(
  40709. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  40710. {
  40711. front: {
  40712. height: math.unit(5 + 11/12, "feet"),
  40713. weight: math.unit(155, "lb"),
  40714. name: "Front",
  40715. image: {
  40716. source: "./media/characters/cai/front.svg",
  40717. extra: 1823/1702,
  40718. bottom: 32/1855
  40719. }
  40720. },
  40721. back: {
  40722. height: math.unit(5 + 11/12, "feet"),
  40723. weight: math.unit(155, "lb"),
  40724. name: "Back",
  40725. image: {
  40726. source: "./media/characters/cai/back.svg",
  40727. extra: 1809/1708,
  40728. bottom: 31/1840
  40729. }
  40730. },
  40731. },
  40732. [
  40733. {
  40734. name: "Normal",
  40735. height: math.unit(5 + 11/12, "feet"),
  40736. default: true
  40737. },
  40738. {
  40739. name: "Big",
  40740. height: math.unit(15, "feet")
  40741. },
  40742. {
  40743. name: "Macro",
  40744. height: math.unit(200, "feet")
  40745. },
  40746. ]
  40747. ))
  40748. characterMakers.push(() => makeCharacter(
  40749. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  40750. {
  40751. front: {
  40752. height: math.unit(5 + 6/12, "feet"),
  40753. weight: math.unit(160, "lb"),
  40754. name: "Front",
  40755. image: {
  40756. source: "./media/characters/zanna-virtuedòttir/front.svg",
  40757. extra: 1227/1174,
  40758. bottom: 37/1264
  40759. }
  40760. },
  40761. },
  40762. [
  40763. {
  40764. name: "Macro",
  40765. height: math.unit(444, "meters"),
  40766. default: true
  40767. },
  40768. ]
  40769. ))
  40770. characterMakers.push(() => makeCharacter(
  40771. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  40772. {
  40773. front: {
  40774. height: math.unit(18 + 7/12, "feet"),
  40775. name: "Front",
  40776. image: {
  40777. source: "./media/characters/rex/front.svg",
  40778. extra: 1941/1807,
  40779. bottom: 66/2007
  40780. }
  40781. },
  40782. back: {
  40783. height: math.unit(18 + 7/12, "feet"),
  40784. name: "Back",
  40785. image: {
  40786. source: "./media/characters/rex/back.svg",
  40787. extra: 1937/1822,
  40788. bottom: 42/1979
  40789. }
  40790. },
  40791. boot: {
  40792. height: math.unit(3.45, "feet"),
  40793. name: "Boot",
  40794. image: {
  40795. source: "./media/characters/rex/boot.svg"
  40796. }
  40797. },
  40798. paw: {
  40799. height: math.unit(4.17, "feet"),
  40800. name: "Paw",
  40801. image: {
  40802. source: "./media/characters/rex/paw.svg"
  40803. }
  40804. },
  40805. head: {
  40806. height: math.unit(6.728, "feet"),
  40807. name: "Head",
  40808. image: {
  40809. source: "./media/characters/rex/head.svg"
  40810. }
  40811. },
  40812. },
  40813. [
  40814. {
  40815. name: "Nano",
  40816. height: math.unit(18 + 7/12, "feet")
  40817. },
  40818. {
  40819. name: "Micro",
  40820. height: math.unit(1.5, "megameters")
  40821. },
  40822. {
  40823. name: "Normal",
  40824. height: math.unit(440, "megameters"),
  40825. default: true
  40826. },
  40827. {
  40828. name: "Macro",
  40829. height: math.unit(2.5, "gigameters")
  40830. },
  40831. {
  40832. name: "Gigamacro",
  40833. height: math.unit(2, "galaxies")
  40834. },
  40835. ]
  40836. ))
  40837. characterMakers.push(() => makeCharacter(
  40838. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  40839. {
  40840. side: {
  40841. height: math.unit(32, "feet"),
  40842. weight: math.unit(250000, "lb"),
  40843. name: "Side",
  40844. image: {
  40845. source: "./media/characters/silverwing/side.svg",
  40846. extra: 1100/1019,
  40847. bottom: 204/1304
  40848. }
  40849. },
  40850. },
  40851. [
  40852. {
  40853. name: "Normal",
  40854. height: math.unit(32, "feet"),
  40855. default: true
  40856. },
  40857. ]
  40858. ))
  40859. characterMakers.push(() => makeCharacter(
  40860. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  40861. {
  40862. front: {
  40863. height: math.unit(6 + 6/12, "feet"),
  40864. weight: math.unit(350, "lb"),
  40865. name: "Front",
  40866. image: {
  40867. source: "./media/characters/tristan-hawthorne/front.svg",
  40868. extra: 1159/1124,
  40869. bottom: 37/1196
  40870. }
  40871. },
  40872. },
  40873. [
  40874. {
  40875. name: "Normal",
  40876. height: math.unit(6 + 6/12, "feet"),
  40877. default: true
  40878. },
  40879. ]
  40880. ))
  40881. characterMakers.push(() => makeCharacter(
  40882. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  40883. {
  40884. front: {
  40885. height: math.unit(5 + 11/12, "feet"),
  40886. weight: math.unit(190, "lb"),
  40887. name: "Front",
  40888. image: {
  40889. source: "./media/characters/mizu/front.svg",
  40890. extra: 1988/1788,
  40891. bottom: 14/2002
  40892. }
  40893. },
  40894. },
  40895. [
  40896. {
  40897. name: "Normal",
  40898. height: math.unit(5 + 11/12, "feet"),
  40899. default: true
  40900. },
  40901. ]
  40902. ))
  40903. characterMakers.push(() => makeCharacter(
  40904. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  40905. {
  40906. front: {
  40907. height: math.unit(6, "feet"),
  40908. name: "Front",
  40909. image: {
  40910. source: "./media/characters/moonlight-rose-terra/front.svg",
  40911. extra: 1434/1252,
  40912. bottom: 48/1482
  40913. }
  40914. },
  40915. },
  40916. [
  40917. {
  40918. name: "TRAPPIST-1D",
  40919. height: math.unit(4992*2, "km")
  40920. },
  40921. {
  40922. name: "Earth",
  40923. height: math.unit(6367*2, "km"),
  40924. default: true
  40925. },
  40926. {
  40927. name: "Kepler-22b",
  40928. height: math.unit(15282*2, "km")
  40929. },
  40930. ]
  40931. ))
  40932. characterMakers.push(() => makeCharacter(
  40933. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  40934. {
  40935. front: {
  40936. height: math.unit(6, "feet"),
  40937. name: "Front",
  40938. image: {
  40939. source: "./media/characters/moonlight-rose-neptune/front.svg",
  40940. extra: 1851/1712,
  40941. bottom: 0/1851
  40942. }
  40943. },
  40944. },
  40945. [
  40946. {
  40947. name: "Enceladus",
  40948. height: math.unit(513*2, "km")
  40949. },
  40950. {
  40951. name: "Europe",
  40952. height: math.unit(1560*2, "km")
  40953. },
  40954. {
  40955. name: "Neptune",
  40956. height: math.unit(24622*2, "km"),
  40957. default: true
  40958. },
  40959. {
  40960. name: "CoRoT-9b",
  40961. height: math.unit(75067*2, "km")
  40962. },
  40963. ]
  40964. ))
  40965. characterMakers.push(() => makeCharacter(
  40966. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  40967. {
  40968. front: {
  40969. height: math.unit(6, "feet"),
  40970. name: "Front",
  40971. image: {
  40972. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  40973. extra: 1367/1286,
  40974. bottom: 55/1422
  40975. }
  40976. },
  40977. },
  40978. [
  40979. {
  40980. name: "Saturn",
  40981. height: math.unit(58232*2, "km")
  40982. },
  40983. {
  40984. name: "Jupiter",
  40985. height: math.unit(69911*2, "km"),
  40986. default: true
  40987. },
  40988. {
  40989. name: "HD 100546 b",
  40990. height: math.unit(482938, "km")
  40991. },
  40992. ]
  40993. ))
  40994. characterMakers.push(() => makeCharacter(
  40995. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  40996. {
  40997. front: {
  40998. height: math.unit(1.7, "feet"),
  40999. weight: math.unit(50, "lb"),
  41000. name: "Front",
  41001. image: {
  41002. source: "./media/characters/dechroma/front.svg",
  41003. extra: 1095/859,
  41004. bottom: 64/1159
  41005. }
  41006. },
  41007. },
  41008. [
  41009. {
  41010. name: "Normal",
  41011. height: math.unit(1.7, "feet"),
  41012. default: true
  41013. },
  41014. ]
  41015. ))
  41016. characterMakers.push(() => makeCharacter(
  41017. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41018. {
  41019. side: {
  41020. height: math.unit(30, "feet"),
  41021. name: "Side",
  41022. image: {
  41023. source: "./media/characters/veluren-thanazel/side.svg",
  41024. extra: 1611/633,
  41025. bottom: 118/1729
  41026. }
  41027. },
  41028. front: {
  41029. height: math.unit(30, "feet"),
  41030. name: "Front",
  41031. image: {
  41032. source: "./media/characters/veluren-thanazel/front.svg",
  41033. extra: 1486/636,
  41034. bottom: 238/1724
  41035. }
  41036. },
  41037. head: {
  41038. height: math.unit(21.4, "feet"),
  41039. name: "Head",
  41040. image: {
  41041. source: "./media/characters/veluren-thanazel/head.svg"
  41042. }
  41043. },
  41044. genitals: {
  41045. height: math.unit(19.4, "feet"),
  41046. name: "Genitals",
  41047. image: {
  41048. source: "./media/characters/veluren-thanazel/genitals.svg"
  41049. }
  41050. },
  41051. },
  41052. [
  41053. {
  41054. name: "Social",
  41055. height: math.unit(6, "feet")
  41056. },
  41057. {
  41058. name: "Play",
  41059. height: math.unit(12, "feet")
  41060. },
  41061. {
  41062. name: "True",
  41063. height: math.unit(30, "feet"),
  41064. default: true
  41065. },
  41066. ]
  41067. ))
  41068. characterMakers.push(() => makeCharacter(
  41069. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41070. {
  41071. front: {
  41072. height: math.unit(7 + 6/12, "feet"),
  41073. weight: math.unit(500, "kg"),
  41074. name: "Front",
  41075. image: {
  41076. source: "./media/characters/arcturas/front.svg",
  41077. extra: 1700/1500,
  41078. bottom: 145/1845
  41079. }
  41080. },
  41081. },
  41082. [
  41083. {
  41084. name: "Normal",
  41085. height: math.unit(7 + 6/12, "feet"),
  41086. default: true
  41087. },
  41088. ]
  41089. ))
  41090. characterMakers.push(() => makeCharacter(
  41091. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41092. {
  41093. side: {
  41094. height: math.unit(6, "feet"),
  41095. weight: math.unit(2, "tons"),
  41096. name: "Side",
  41097. image: {
  41098. source: "./media/characters/vitaen/side.svg",
  41099. extra: 1157/617,
  41100. bottom: 122/1279
  41101. }
  41102. },
  41103. },
  41104. [
  41105. {
  41106. name: "Normal",
  41107. height: math.unit(6, "feet"),
  41108. default: true
  41109. },
  41110. ]
  41111. ))
  41112. characterMakers.push(() => makeCharacter(
  41113. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41114. {
  41115. front: {
  41116. height: math.unit(19, "feet"),
  41117. name: "Front",
  41118. image: {
  41119. source: "./media/characters/fia-dreamweaver/front.svg",
  41120. extra: 1630/1504,
  41121. bottom: 25/1655
  41122. }
  41123. },
  41124. },
  41125. [
  41126. {
  41127. name: "Normal",
  41128. height: math.unit(19, "feet"),
  41129. default: true
  41130. },
  41131. ]
  41132. ))
  41133. characterMakers.push(() => makeCharacter(
  41134. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41135. {
  41136. front: {
  41137. height: math.unit(5 + 4/12, "feet"),
  41138. name: "Front",
  41139. image: {
  41140. source: "./media/characters/artan/front.svg",
  41141. extra: 1618/1535,
  41142. bottom: 46/1664
  41143. }
  41144. },
  41145. back: {
  41146. height: math.unit(5 + 4/12, "feet"),
  41147. name: "Back",
  41148. image: {
  41149. source: "./media/characters/artan/back.svg",
  41150. extra: 1618/1543,
  41151. bottom: 31/1649
  41152. }
  41153. },
  41154. },
  41155. [
  41156. {
  41157. name: "Normal",
  41158. height: math.unit(5 + 4/12, "feet"),
  41159. default: true
  41160. },
  41161. ]
  41162. ))
  41163. characterMakers.push(() => makeCharacter(
  41164. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41165. {
  41166. side: {
  41167. height: math.unit(182, "cm"),
  41168. weight: math.unit(1000, "lb"),
  41169. name: "Side",
  41170. image: {
  41171. source: "./media/characters/silver-dragon/side.svg",
  41172. extra: 710/287,
  41173. bottom: 88/798
  41174. }
  41175. },
  41176. },
  41177. [
  41178. {
  41179. name: "Normal",
  41180. height: math.unit(182, "cm"),
  41181. default: true
  41182. },
  41183. ]
  41184. ))
  41185. characterMakers.push(() => makeCharacter(
  41186. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41187. {
  41188. side: {
  41189. height: math.unit(6 + 6/12, "feet"),
  41190. weight: math.unit(1.5, "tons"),
  41191. name: "Side",
  41192. image: {
  41193. source: "./media/characters/zephyr/side.svg",
  41194. extra: 1433/586,
  41195. bottom: 109/1542
  41196. }
  41197. },
  41198. },
  41199. [
  41200. {
  41201. name: "Normal",
  41202. height: math.unit(6 + 6/12, "feet"),
  41203. default: true
  41204. },
  41205. ]
  41206. ))
  41207. characterMakers.push(() => makeCharacter(
  41208. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41209. {
  41210. side: {
  41211. height: math.unit(1, "feet"),
  41212. name: "Side",
  41213. image: {
  41214. source: "./media/characters/vixye/side.svg",
  41215. extra: 632/541,
  41216. bottom: 0/632
  41217. }
  41218. },
  41219. },
  41220. [
  41221. {
  41222. name: "Normal",
  41223. height: math.unit(1, "feet"),
  41224. default: true
  41225. },
  41226. {
  41227. name: "True",
  41228. height: math.unit(1e15, "multiverses")
  41229. },
  41230. ]
  41231. ))
  41232. characterMakers.push(() => makeCharacter(
  41233. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41234. {
  41235. front: {
  41236. height: math.unit(8 + 2/12, "feet"),
  41237. weight: math.unit(650, "lb"),
  41238. name: "Front",
  41239. image: {
  41240. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41241. extra: 1174/1137,
  41242. bottom: 82/1256
  41243. }
  41244. },
  41245. back: {
  41246. height: math.unit(8 + 2/12, "feet"),
  41247. weight: math.unit(650, "lb"),
  41248. name: "Back",
  41249. image: {
  41250. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41251. extra: 1204/1157,
  41252. bottom: 46/1250
  41253. }
  41254. },
  41255. },
  41256. [
  41257. {
  41258. name: "Wildform",
  41259. height: math.unit(8 + 2/12, "feet"),
  41260. default: true
  41261. },
  41262. ]
  41263. ))
  41264. characterMakers.push(() => makeCharacter(
  41265. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41266. {
  41267. front: {
  41268. height: math.unit(18, "feet"),
  41269. name: "Front",
  41270. image: {
  41271. source: "./media/characters/cyphin/front.svg",
  41272. extra: 970/886,
  41273. bottom: 42/1012
  41274. }
  41275. },
  41276. back: {
  41277. height: math.unit(18, "feet"),
  41278. name: "Back",
  41279. image: {
  41280. source: "./media/characters/cyphin/back.svg",
  41281. extra: 1009/894,
  41282. bottom: 24/1033
  41283. }
  41284. },
  41285. head: {
  41286. height: math.unit(5.05, "feet"),
  41287. name: "Head",
  41288. image: {
  41289. source: "./media/characters/cyphin/head.svg"
  41290. }
  41291. },
  41292. tailbud: {
  41293. height: math.unit(5, "feet"),
  41294. name: "Tailbud",
  41295. image: {
  41296. source: "./media/characters/cyphin/tailbud.svg"
  41297. }
  41298. },
  41299. },
  41300. [
  41301. ]
  41302. ))
  41303. characterMakers.push(() => makeCharacter(
  41304. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41305. {
  41306. side: {
  41307. height: math.unit(10, "feet"),
  41308. weight: math.unit(6, "tons"),
  41309. name: "Side",
  41310. image: {
  41311. source: "./media/characters/raijin/side.svg",
  41312. extra: 1529/613,
  41313. bottom: 337/1866
  41314. }
  41315. },
  41316. },
  41317. [
  41318. {
  41319. name: "Normal",
  41320. height: math.unit(10, "feet"),
  41321. default: true
  41322. },
  41323. ]
  41324. ))
  41325. characterMakers.push(() => makeCharacter(
  41326. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41327. {
  41328. side: {
  41329. height: math.unit(9, "feet"),
  41330. name: "Side",
  41331. image: {
  41332. source: "./media/characters/nilghais/side.svg",
  41333. extra: 1047/744,
  41334. bottom: 91/1138
  41335. }
  41336. },
  41337. head: {
  41338. height: math.unit(3.14, "feet"),
  41339. name: "Head",
  41340. image: {
  41341. source: "./media/characters/nilghais/head.svg"
  41342. }
  41343. },
  41344. mouth: {
  41345. height: math.unit(4.6, "feet"),
  41346. name: "Mouth",
  41347. image: {
  41348. source: "./media/characters/nilghais/mouth.svg"
  41349. }
  41350. },
  41351. wings: {
  41352. height: math.unit(24, "feet"),
  41353. name: "Wings",
  41354. image: {
  41355. source: "./media/characters/nilghais/wings.svg"
  41356. }
  41357. },
  41358. ass: {
  41359. height: math.unit(6.12, "feet"),
  41360. name: "Ass",
  41361. image: {
  41362. source: "./media/characters/nilghais/ass.svg"
  41363. }
  41364. },
  41365. },
  41366. [
  41367. {
  41368. name: "Normal",
  41369. height: math.unit(9, "feet"),
  41370. default: true
  41371. },
  41372. ]
  41373. ))
  41374. characterMakers.push(() => makeCharacter(
  41375. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41376. {
  41377. regular: {
  41378. height: math.unit(16 + 2/12, "feet"),
  41379. weight: math.unit(2300, "lb"),
  41380. name: "Regular",
  41381. image: {
  41382. source: "./media/characters/zolgar/regular.svg",
  41383. extra: 1246/1004,
  41384. bottom: 124/1370
  41385. }
  41386. },
  41387. boxers: {
  41388. height: math.unit(16 + 2/12, "feet"),
  41389. weight: math.unit(2300, "lb"),
  41390. name: "Boxers",
  41391. image: {
  41392. source: "./media/characters/zolgar/boxers.svg",
  41393. extra: 1246/1004,
  41394. bottom: 124/1370
  41395. }
  41396. },
  41397. armored: {
  41398. height: math.unit(16 + 2/12, "feet"),
  41399. weight: math.unit(2300, "lb"),
  41400. name: "Armored",
  41401. image: {
  41402. source: "./media/characters/zolgar/armored.svg",
  41403. extra: 1246/1004,
  41404. bottom: 124/1370
  41405. }
  41406. },
  41407. goth: {
  41408. height: math.unit(16 + 2/12, "feet"),
  41409. weight: math.unit(2300, "lb"),
  41410. name: "Goth",
  41411. image: {
  41412. source: "./media/characters/zolgar/goth.svg",
  41413. extra: 1246/1004,
  41414. bottom: 124/1370
  41415. }
  41416. },
  41417. },
  41418. [
  41419. {
  41420. name: "Shrunken Down",
  41421. height: math.unit(9 + 2/12, "feet")
  41422. },
  41423. {
  41424. name: "Normal",
  41425. height: math.unit(16 + 2/12, "feet"),
  41426. default: true
  41427. },
  41428. ]
  41429. ))
  41430. characterMakers.push(() => makeCharacter(
  41431. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41432. {
  41433. front: {
  41434. height: math.unit(6, "feet"),
  41435. weight: math.unit(168, "lb"),
  41436. name: "Front",
  41437. image: {
  41438. source: "./media/characters/luca/front.svg",
  41439. extra: 841/667,
  41440. bottom: 102/943
  41441. }
  41442. },
  41443. },
  41444. [
  41445. {
  41446. name: "Normal",
  41447. height: math.unit(6, "feet"),
  41448. default: true
  41449. },
  41450. ]
  41451. ))
  41452. characterMakers.push(() => makeCharacter(
  41453. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41454. {
  41455. side: {
  41456. height: math.unit(7 + 3/12, "feet"),
  41457. weight: math.unit(312, "lb"),
  41458. name: "Side",
  41459. image: {
  41460. source: "./media/characters/zezo/side.svg",
  41461. extra: 1192/1067,
  41462. bottom: 63/1255
  41463. }
  41464. },
  41465. },
  41466. [
  41467. {
  41468. name: "Normal",
  41469. height: math.unit(7 + 3/12, "feet"),
  41470. default: true
  41471. },
  41472. ]
  41473. ))
  41474. characterMakers.push(() => makeCharacter(
  41475. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41476. {
  41477. front: {
  41478. height: math.unit(5 + 5/12, "feet"),
  41479. weight: math.unit(170, "lb"),
  41480. name: "Front",
  41481. image: {
  41482. source: "./media/characters/mayso/front.svg",
  41483. extra: 1215/1108,
  41484. bottom: 16/1231
  41485. }
  41486. },
  41487. },
  41488. [
  41489. {
  41490. name: "Normal",
  41491. height: math.unit(5 + 5/12, "feet"),
  41492. default: true
  41493. },
  41494. ]
  41495. ))
  41496. characterMakers.push(() => makeCharacter(
  41497. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41498. {
  41499. front: {
  41500. height: math.unit(4 + 3/12, "feet"),
  41501. weight: math.unit(80, "lb"),
  41502. name: "Front",
  41503. image: {
  41504. source: "./media/characters/hess/front.svg",
  41505. extra: 1200/1123,
  41506. bottom: 16/1216
  41507. }
  41508. },
  41509. },
  41510. [
  41511. {
  41512. name: "Normal",
  41513. height: math.unit(4 + 3/12, "feet"),
  41514. default: true
  41515. },
  41516. ]
  41517. ))
  41518. characterMakers.push(() => makeCharacter(
  41519. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41520. {
  41521. front: {
  41522. height: math.unit(1.9, "meters"),
  41523. name: "Front",
  41524. image: {
  41525. source: "./media/characters/ashgar/front.svg",
  41526. extra: 1177/1146,
  41527. bottom: 99/1276
  41528. }
  41529. },
  41530. back: {
  41531. height: math.unit(1.9, "meters"),
  41532. name: "Back",
  41533. image: {
  41534. source: "./media/characters/ashgar/back.svg",
  41535. extra: 1201/1183,
  41536. bottom: 53/1254
  41537. }
  41538. },
  41539. feral: {
  41540. height: math.unit(1.4, "meters"),
  41541. name: "Feral",
  41542. image: {
  41543. source: "./media/characters/ashgar/feral.svg",
  41544. extra: 370/345,
  41545. bottom: 45/415
  41546. }
  41547. },
  41548. },
  41549. [
  41550. {
  41551. name: "Normal",
  41552. height: math.unit(1.9, "meters"),
  41553. default: true
  41554. },
  41555. ]
  41556. ))
  41557. characterMakers.push(() => makeCharacter(
  41558. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  41559. {
  41560. regular: {
  41561. height: math.unit(6, "feet"),
  41562. weight: math.unit(220, "lb"),
  41563. name: "Regular",
  41564. image: {
  41565. source: "./media/characters/phillip/regular.svg",
  41566. extra: 1373/1277,
  41567. bottom: 75/1448
  41568. }
  41569. },
  41570. dressed: {
  41571. height: math.unit(6, "feet"),
  41572. weight: math.unit(220, "lb"),
  41573. name: "Dressed",
  41574. image: {
  41575. source: "./media/characters/phillip/dressed.svg",
  41576. extra: 1373/1277,
  41577. bottom: 75/1448
  41578. }
  41579. },
  41580. paw: {
  41581. height: math.unit(1.44, "feet"),
  41582. name: "Paw",
  41583. image: {
  41584. source: "./media/characters/phillip/paw.svg"
  41585. }
  41586. },
  41587. },
  41588. [
  41589. {
  41590. name: "Normal",
  41591. height: math.unit(6, "feet"),
  41592. default: true
  41593. },
  41594. ]
  41595. ))
  41596. characterMakers.push(() => makeCharacter(
  41597. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  41598. {
  41599. side: {
  41600. height: math.unit(42, "feet"),
  41601. name: "Side",
  41602. image: {
  41603. source: "./media/characters/uvula/side.svg",
  41604. extra: 683/586,
  41605. bottom: 60/743
  41606. }
  41607. },
  41608. front: {
  41609. height: math.unit(42, "feet"),
  41610. name: "Front",
  41611. image: {
  41612. source: "./media/characters/uvula/front.svg",
  41613. extra: 705/613,
  41614. bottom: 54/759
  41615. }
  41616. },
  41617. maw: {
  41618. height: math.unit(23.5, "feet"),
  41619. name: "Maw",
  41620. image: {
  41621. source: "./media/characters/uvula/maw.svg"
  41622. }
  41623. },
  41624. },
  41625. [
  41626. {
  41627. name: "Original Size",
  41628. height: math.unit(14, "inches")
  41629. },
  41630. {
  41631. name: "Human Size",
  41632. height: math.unit(6, "feet")
  41633. },
  41634. {
  41635. name: "Big",
  41636. height: math.unit(42, "feet"),
  41637. default: true
  41638. },
  41639. {
  41640. name: "Bigger",
  41641. height: math.unit(100, "feet")
  41642. },
  41643. ]
  41644. ))
  41645. characterMakers.push(() => makeCharacter(
  41646. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  41647. {
  41648. front: {
  41649. height: math.unit(5 + 11/12, "feet"),
  41650. name: "Front",
  41651. image: {
  41652. source: "./media/characters/lannah/front.svg",
  41653. extra: 1208/1113,
  41654. bottom: 97/1305
  41655. }
  41656. },
  41657. },
  41658. [
  41659. {
  41660. name: "Normal",
  41661. height: math.unit(5 + 11/12, "feet"),
  41662. default: true
  41663. },
  41664. ]
  41665. ))
  41666. characterMakers.push(() => makeCharacter(
  41667. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  41668. {
  41669. front: {
  41670. height: math.unit(6 + 3/12, "feet"),
  41671. weight: math.unit(3.5, "tons"),
  41672. name: "Front",
  41673. image: {
  41674. source: "./media/characters/emberflame/front.svg",
  41675. extra: 1198/672,
  41676. bottom: 82/1280
  41677. }
  41678. },
  41679. side: {
  41680. height: math.unit(6 + 3/12, "feet"),
  41681. weight: math.unit(3.5, "tons"),
  41682. name: "Side",
  41683. image: {
  41684. source: "./media/characters/emberflame/side.svg",
  41685. extra: 938/527,
  41686. bottom: 56/994
  41687. }
  41688. },
  41689. },
  41690. [
  41691. {
  41692. name: "Normal",
  41693. height: math.unit(6 + 3/12, "feet"),
  41694. default: true
  41695. },
  41696. ]
  41697. ))
  41698. characterMakers.push(() => makeCharacter(
  41699. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  41700. {
  41701. side: {
  41702. height: math.unit(17.5, "feet"),
  41703. weight: math.unit(35, "tons"),
  41704. name: "Side",
  41705. image: {
  41706. source: "./media/characters/sophie-ambrose/side.svg",
  41707. extra: 1573/1242,
  41708. bottom: 71/1644
  41709. }
  41710. },
  41711. maw: {
  41712. height: math.unit(7.4, "feet"),
  41713. name: "Maw",
  41714. image: {
  41715. source: "./media/characters/sophie-ambrose/maw.svg"
  41716. }
  41717. },
  41718. },
  41719. [
  41720. {
  41721. name: "Normal",
  41722. height: math.unit(17.5, "feet"),
  41723. default: true
  41724. },
  41725. ]
  41726. ))
  41727. characterMakers.push(() => makeCharacter(
  41728. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  41729. {
  41730. front: {
  41731. height: math.unit(280, "feet"),
  41732. weight: math.unit(550, "tons"),
  41733. name: "Front",
  41734. image: {
  41735. source: "./media/characters/king-mugi/front.svg",
  41736. extra: 1102/947,
  41737. bottom: 104/1206
  41738. }
  41739. },
  41740. },
  41741. [
  41742. {
  41743. name: "King Mugi",
  41744. height: math.unit(280, "feet"),
  41745. default: true
  41746. },
  41747. ]
  41748. ))
  41749. characterMakers.push(() => makeCharacter(
  41750. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  41751. {
  41752. front: {
  41753. height: math.unit(64, "meters"),
  41754. name: "Front",
  41755. image: {
  41756. source: "./media/characters/nova-fox/front.svg",
  41757. extra: 1310/1246,
  41758. bottom: 65/1375
  41759. }
  41760. },
  41761. },
  41762. [
  41763. {
  41764. name: "Macro",
  41765. height: math.unit(64, "meters"),
  41766. default: true
  41767. },
  41768. ]
  41769. ))
  41770. characterMakers.push(() => makeCharacter(
  41771. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  41772. {
  41773. front: {
  41774. height: math.unit(6 + 3/12, "feet"),
  41775. weight: math.unit(170, "lb"),
  41776. name: "Front",
  41777. image: {
  41778. source: "./media/characters/sam-bat/front.svg",
  41779. extra: 1601/1411,
  41780. bottom: 125/1726
  41781. }
  41782. },
  41783. back: {
  41784. height: math.unit(6 + 3/12, "feet"),
  41785. weight: math.unit(170, "lb"),
  41786. name: "Back",
  41787. image: {
  41788. source: "./media/characters/sam-bat/back.svg",
  41789. extra: 1577/1405,
  41790. bottom: 58/1635
  41791. }
  41792. },
  41793. },
  41794. [
  41795. {
  41796. name: "Normal",
  41797. height: math.unit(6 + 3/12, "feet"),
  41798. default: true
  41799. },
  41800. ]
  41801. ))
  41802. characterMakers.push(() => makeCharacter(
  41803. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  41804. {
  41805. front: {
  41806. height: math.unit(59, "feet"),
  41807. weight: math.unit(40000, "lb"),
  41808. name: "Front",
  41809. image: {
  41810. source: "./media/characters/inari/front.svg",
  41811. extra: 1884/1350,
  41812. bottom: 95/1979
  41813. }
  41814. },
  41815. },
  41816. [
  41817. {
  41818. name: "Gigantamax",
  41819. height: math.unit(59, "feet"),
  41820. default: true
  41821. },
  41822. ]
  41823. ))
  41824. characterMakers.push(() => makeCharacter(
  41825. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  41826. {
  41827. front: {
  41828. height: math.unit(5 + 8/12, "feet"),
  41829. name: "Front",
  41830. image: {
  41831. source: "./media/characters/elizabeth/front.svg",
  41832. extra: 1395/1298,
  41833. bottom: 54/1449
  41834. }
  41835. },
  41836. mouth: {
  41837. height: math.unit(1.97, "feet"),
  41838. name: "Mouth",
  41839. image: {
  41840. source: "./media/characters/elizabeth/mouth.svg"
  41841. }
  41842. },
  41843. foot: {
  41844. height: math.unit(1.17, "feet"),
  41845. name: "Foot",
  41846. image: {
  41847. source: "./media/characters/elizabeth/foot.svg"
  41848. }
  41849. },
  41850. },
  41851. [
  41852. {
  41853. name: "Normal",
  41854. height: math.unit(5 + 8/12, "feet"),
  41855. default: true
  41856. },
  41857. {
  41858. name: "Minimacro",
  41859. height: math.unit(18, "feet")
  41860. },
  41861. {
  41862. name: "Macro",
  41863. height: math.unit(180, "feet")
  41864. },
  41865. ]
  41866. ))
  41867. characterMakers.push(() => makeCharacter(
  41868. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  41869. {
  41870. front: {
  41871. height: math.unit(5 + 2/12, "feet"),
  41872. name: "Front",
  41873. image: {
  41874. source: "./media/characters/october-gossamer/front.svg",
  41875. extra: 505/454,
  41876. bottom: 7/512
  41877. }
  41878. },
  41879. back: {
  41880. height: math.unit(5 + 2/12, "feet"),
  41881. name: "Back",
  41882. image: {
  41883. source: "./media/characters/october-gossamer/back.svg",
  41884. extra: 501/454,
  41885. bottom: 11/512
  41886. }
  41887. },
  41888. },
  41889. [
  41890. {
  41891. name: "Normal",
  41892. height: math.unit(5 + 2/12, "feet"),
  41893. default: true
  41894. },
  41895. ]
  41896. ))
  41897. characterMakers.push(() => makeCharacter(
  41898. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  41899. {
  41900. front: {
  41901. height: math.unit(5, "feet"),
  41902. name: "Front",
  41903. image: {
  41904. source: "./media/characters/epiglottis/front.svg",
  41905. extra: 923/849,
  41906. bottom: 17/940
  41907. }
  41908. },
  41909. },
  41910. [
  41911. {
  41912. name: "Original Size",
  41913. height: math.unit(10, "inches")
  41914. },
  41915. {
  41916. name: "Human Size",
  41917. height: math.unit(5, "feet"),
  41918. default: true
  41919. },
  41920. {
  41921. name: "Big",
  41922. height: math.unit(25, "feet")
  41923. },
  41924. {
  41925. name: "Bigger",
  41926. height: math.unit(50, "feet")
  41927. },
  41928. {
  41929. name: "oh lawd",
  41930. height: math.unit(75, "feet")
  41931. },
  41932. ]
  41933. ))
  41934. characterMakers.push(() => makeCharacter(
  41935. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  41936. {
  41937. front: {
  41938. height: math.unit(2 + 4/12, "feet"),
  41939. weight: math.unit(60, "lb"),
  41940. name: "Front",
  41941. image: {
  41942. source: "./media/characters/lerm/front.svg",
  41943. extra: 796/790,
  41944. bottom: 79/875
  41945. }
  41946. },
  41947. },
  41948. [
  41949. {
  41950. name: "Normal",
  41951. height: math.unit(2 + 4/12, "feet"),
  41952. default: true
  41953. },
  41954. ]
  41955. ))
  41956. characterMakers.push(() => makeCharacter(
  41957. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  41958. {
  41959. front: {
  41960. height: math.unit(5.5, "feet"),
  41961. weight: math.unit(130, "lb"),
  41962. name: "Front",
  41963. image: {
  41964. source: "./media/characters/xena-nebadon/front.svg",
  41965. extra: 1828/1730,
  41966. bottom: 79/1907
  41967. }
  41968. },
  41969. },
  41970. [
  41971. {
  41972. name: "Tiny Puppy",
  41973. height: math.unit(3, "inches")
  41974. },
  41975. {
  41976. name: "Normal",
  41977. height: math.unit(5.5, "feet"),
  41978. default: true
  41979. },
  41980. {
  41981. name: "Lotta Lady",
  41982. height: math.unit(12, "feet")
  41983. },
  41984. {
  41985. name: "Pretty Big",
  41986. height: math.unit(100, "feet")
  41987. },
  41988. {
  41989. name: "Big",
  41990. height: math.unit(500, "feet")
  41991. },
  41992. {
  41993. name: "Skyscraper Toys",
  41994. height: math.unit(2500, "feet")
  41995. },
  41996. {
  41997. name: "Plane Catcher",
  41998. height: math.unit(8, "miles")
  41999. },
  42000. {
  42001. name: "Planet Toys",
  42002. height: math.unit(15, "earths")
  42003. },
  42004. {
  42005. name: "Stardust",
  42006. height: math.unit(0.25, "galaxies")
  42007. },
  42008. {
  42009. name: "Snacks",
  42010. height: math.unit(70, "universes")
  42011. },
  42012. ]
  42013. ))
  42014. characterMakers.push(() => makeCharacter(
  42015. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42016. {
  42017. front: {
  42018. height: math.unit(1.6, "meters"),
  42019. weight: math.unit(60, "kg"),
  42020. name: "Front",
  42021. image: {
  42022. source: "./media/characters/bounty/front.svg",
  42023. extra: 1426/1308,
  42024. bottom: 15/1441
  42025. }
  42026. },
  42027. },
  42028. [
  42029. {
  42030. name: "Normal",
  42031. height: math.unit(1.6, "meters"),
  42032. default: true
  42033. },
  42034. {
  42035. name: "Macro",
  42036. height: math.unit(300, "meters")
  42037. },
  42038. ]
  42039. ))
  42040. characterMakers.push(() => makeCharacter(
  42041. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42042. {
  42043. front: {
  42044. height: math.unit(2 + 8/12, "feet"),
  42045. weight: math.unit(15, "lb"),
  42046. name: "Front",
  42047. image: {
  42048. source: "./media/characters/mochi/front.svg",
  42049. extra: 1022/852,
  42050. bottom: 435/1457
  42051. }
  42052. },
  42053. back: {
  42054. height: math.unit(2 + 8/12, "feet"),
  42055. weight: math.unit(15, "lb"),
  42056. name: "Back",
  42057. image: {
  42058. source: "./media/characters/mochi/back.svg",
  42059. extra: 1335/1119,
  42060. bottom: 39/1374
  42061. }
  42062. },
  42063. bird: {
  42064. height: math.unit(2 + 8/12, "feet"),
  42065. weight: math.unit(15, "lb"),
  42066. name: "Bird",
  42067. image: {
  42068. source: "./media/characters/mochi/bird.svg",
  42069. extra: 1251/1113,
  42070. bottom: 178/1429
  42071. }
  42072. },
  42073. kaiju: {
  42074. height: math.unit(154, "feet"),
  42075. weight: math.unit(1e7, "lb"),
  42076. name: "Kaiju",
  42077. image: {
  42078. source: "./media/characters/mochi/kaiju.svg",
  42079. extra: 460/324,
  42080. bottom: 40/500
  42081. }
  42082. },
  42083. head: {
  42084. height: math.unit(1.21, "feet"),
  42085. name: "Head",
  42086. image: {
  42087. source: "./media/characters/mochi/head.svg"
  42088. }
  42089. },
  42090. alternateTail: {
  42091. height: math.unit(2 + 8/12, "feet"),
  42092. weight: math.unit(45, "lb"),
  42093. name: "Alternate Tail",
  42094. image: {
  42095. source: "./media/characters/mochi/alternate-tail.svg",
  42096. extra: 139/76,
  42097. bottom: 45/184
  42098. }
  42099. },
  42100. },
  42101. [
  42102. {
  42103. name: "Micro",
  42104. height: math.unit(2, "inches")
  42105. },
  42106. {
  42107. name: "Normal",
  42108. height: math.unit(2 + 8/12, "feet"),
  42109. default: true
  42110. },
  42111. {
  42112. name: "Macro",
  42113. height: math.unit(106, "feet")
  42114. },
  42115. ]
  42116. ))
  42117. characterMakers.push(() => makeCharacter(
  42118. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42119. {
  42120. front: {
  42121. height: math.unit(5.67, "feet"),
  42122. weight: math.unit(135, "lb"),
  42123. name: "Front",
  42124. image: {
  42125. source: "./media/characters/sarel/front.svg",
  42126. extra: 865/788,
  42127. bottom: 97/962
  42128. }
  42129. },
  42130. back: {
  42131. height: math.unit(5.67, "feet"),
  42132. weight: math.unit(135, "lb"),
  42133. name: "Back",
  42134. image: {
  42135. source: "./media/characters/sarel/back.svg",
  42136. extra: 857/777,
  42137. bottom: 32/889
  42138. }
  42139. },
  42140. chozoan: {
  42141. height: math.unit(5.67, "feet"),
  42142. weight: math.unit(135, "lb"),
  42143. name: "Chozoan",
  42144. image: {
  42145. source: "./media/characters/sarel/chozoan.svg",
  42146. extra: 865/788,
  42147. bottom: 97/962
  42148. }
  42149. },
  42150. current: {
  42151. height: math.unit(5.67, "feet"),
  42152. weight: math.unit(135, "lb"),
  42153. name: "Current",
  42154. image: {
  42155. source: "./media/characters/sarel/current.svg",
  42156. extra: 865/788,
  42157. bottom: 97/962
  42158. }
  42159. },
  42160. head: {
  42161. height: math.unit(1.77, "feet"),
  42162. name: "Head",
  42163. image: {
  42164. source: "./media/characters/sarel/head.svg"
  42165. }
  42166. },
  42167. claws: {
  42168. height: math.unit(1.8, "feet"),
  42169. name: "Claws",
  42170. image: {
  42171. source: "./media/characters/sarel/claws.svg"
  42172. }
  42173. },
  42174. clawsAlt: {
  42175. height: math.unit(1.8, "feet"),
  42176. name: "Claws-alt",
  42177. image: {
  42178. source: "./media/characters/sarel/claws-alt.svg"
  42179. }
  42180. },
  42181. },
  42182. [
  42183. {
  42184. name: "Normal",
  42185. height: math.unit(5.67, "feet"),
  42186. default: true
  42187. },
  42188. ]
  42189. ))
  42190. characterMakers.push(() => makeCharacter(
  42191. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42192. {
  42193. front: {
  42194. height: math.unit(5500, "feet"),
  42195. name: "Front",
  42196. image: {
  42197. source: "./media/characters/alyonia/front.svg",
  42198. extra: 1200/1135,
  42199. bottom: 29/1229
  42200. }
  42201. },
  42202. back: {
  42203. height: math.unit(5500, "feet"),
  42204. name: "Back",
  42205. image: {
  42206. source: "./media/characters/alyonia/back.svg",
  42207. extra: 1205/1138,
  42208. bottom: 10/1215
  42209. }
  42210. },
  42211. },
  42212. [
  42213. {
  42214. name: "Small",
  42215. height: math.unit(10, "feet")
  42216. },
  42217. {
  42218. name: "Macro",
  42219. height: math.unit(500, "feet")
  42220. },
  42221. {
  42222. name: "Mega Macro",
  42223. height: math.unit(5500, "feet"),
  42224. default: true
  42225. },
  42226. {
  42227. name: "Mega Macro+",
  42228. height: math.unit(500000, "feet")
  42229. },
  42230. {
  42231. name: "Giga Macro",
  42232. height: math.unit(3000, "miles")
  42233. },
  42234. {
  42235. name: "Tera Macro",
  42236. height: math.unit(2.8e6, "miles")
  42237. },
  42238. {
  42239. name: "Galactic",
  42240. height: math.unit(120000, "lightyears")
  42241. },
  42242. ]
  42243. ))
  42244. characterMakers.push(() => makeCharacter(
  42245. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42246. {
  42247. werewolf: {
  42248. height: math.unit(8, "feet"),
  42249. weight: math.unit(425, "lb"),
  42250. name: "Werewolf",
  42251. image: {
  42252. source: "./media/characters/autumn/werewolf.svg",
  42253. extra: 2154/2031,
  42254. bottom: 160/2314
  42255. }
  42256. },
  42257. human: {
  42258. height: math.unit(5 + 8/12, "feet"),
  42259. weight: math.unit(150, "lb"),
  42260. name: "Human",
  42261. image: {
  42262. source: "./media/characters/autumn/human.svg",
  42263. extra: 1200/1149,
  42264. bottom: 30/1230
  42265. }
  42266. },
  42267. },
  42268. [
  42269. {
  42270. name: "Normal",
  42271. height: math.unit(8, "feet"),
  42272. default: true
  42273. },
  42274. ]
  42275. ))
  42276. characterMakers.push(() => makeCharacter(
  42277. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42278. {
  42279. front: {
  42280. height: math.unit(8 + 5/12, "feet"),
  42281. weight: math.unit(825, "lb"),
  42282. name: "Front",
  42283. image: {
  42284. source: "./media/characters/cobalt-charizard/front.svg",
  42285. extra: 1268/1155,
  42286. bottom: 122/1390
  42287. }
  42288. },
  42289. side: {
  42290. height: math.unit(8 + 5/12, "feet"),
  42291. weight: math.unit(825, "lb"),
  42292. name: "Side",
  42293. image: {
  42294. source: "./media/characters/cobalt-charizard/side.svg",
  42295. extra: 1348/1257,
  42296. bottom: 58/1406
  42297. }
  42298. },
  42299. gMax: {
  42300. height: math.unit(134 + 11/12, "feet"),
  42301. name: "G-Max",
  42302. image: {
  42303. source: "./media/characters/cobalt-charizard/g-max.svg",
  42304. extra: 1835/1541,
  42305. bottom: 151/1986
  42306. }
  42307. },
  42308. },
  42309. [
  42310. {
  42311. name: "Normal",
  42312. height: math.unit(8 + 5/12, "feet"),
  42313. default: true
  42314. },
  42315. ]
  42316. ))
  42317. characterMakers.push(() => makeCharacter(
  42318. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42319. {
  42320. front: {
  42321. height: math.unit(6 + 3/12, "feet"),
  42322. weight: math.unit(210, "lb"),
  42323. name: "Front",
  42324. image: {
  42325. source: "./media/characters/stella/front.svg",
  42326. extra: 3549/3335,
  42327. bottom: 51/3600
  42328. }
  42329. },
  42330. },
  42331. [
  42332. {
  42333. name: "Normal",
  42334. height: math.unit(6 + 3/12, "feet"),
  42335. default: true
  42336. },
  42337. ]
  42338. ))
  42339. characterMakers.push(() => makeCharacter(
  42340. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42341. {
  42342. front: {
  42343. height: math.unit(5, "feet"),
  42344. weight: math.unit(90, "lb"),
  42345. name: "Front",
  42346. image: {
  42347. source: "./media/characters/riley-bishop/front.svg",
  42348. extra: 1450/1428,
  42349. bottom: 152/1602
  42350. }
  42351. },
  42352. },
  42353. [
  42354. {
  42355. name: "Normal",
  42356. height: math.unit(5, "feet"),
  42357. default: true
  42358. },
  42359. ]
  42360. ))
  42361. characterMakers.push(() => makeCharacter(
  42362. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42363. {
  42364. side: {
  42365. height: math.unit(8 + 2/12, "feet"),
  42366. weight: math.unit(500, "kg"),
  42367. name: "Side",
  42368. image: {
  42369. source: "./media/characters/theo-arcanine/side.svg",
  42370. extra: 1342/1074,
  42371. bottom: 111/1453
  42372. }
  42373. },
  42374. },
  42375. [
  42376. {
  42377. name: "Normal",
  42378. height: math.unit(8 + 2/12, "feet"),
  42379. default: true
  42380. },
  42381. ]
  42382. ))
  42383. characterMakers.push(() => makeCharacter(
  42384. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  42385. {
  42386. front: {
  42387. height: math.unit(4, "feet"),
  42388. name: "Front",
  42389. image: {
  42390. source: "./media/characters/kali/front.svg",
  42391. extra: 1921/1357,
  42392. bottom: 70/1991
  42393. }
  42394. },
  42395. },
  42396. [
  42397. {
  42398. name: "Normal",
  42399. height: math.unit(4, "feet"),
  42400. default: true
  42401. },
  42402. {
  42403. name: "Macro",
  42404. height: math.unit(32, "meters")
  42405. },
  42406. {
  42407. name: "Macro+",
  42408. height: math.unit(150, "meters")
  42409. },
  42410. {
  42411. name: "Megamacro",
  42412. height: math.unit(7500, "meters")
  42413. },
  42414. {
  42415. name: "Megamacro+",
  42416. height: math.unit(80, "kilometers")
  42417. },
  42418. ]
  42419. ))
  42420. characterMakers.push(() => makeCharacter(
  42421. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  42422. {
  42423. side: {
  42424. height: math.unit(5 + 11/12, "feet"),
  42425. weight: math.unit(236, "lb"),
  42426. name: "Side",
  42427. image: {
  42428. source: "./media/characters/gapp/side.svg",
  42429. extra: 775/340,
  42430. bottom: 58/833
  42431. }
  42432. },
  42433. mouth: {
  42434. height: math.unit(2.98, "feet"),
  42435. name: "Mouth",
  42436. image: {
  42437. source: "./media/characters/gapp/mouth.svg"
  42438. }
  42439. },
  42440. },
  42441. [
  42442. {
  42443. name: "Normal",
  42444. height: math.unit(5 + 1/12, "feet"),
  42445. default: true
  42446. },
  42447. ]
  42448. ))
  42449. characterMakers.push(() => makeCharacter(
  42450. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  42451. {
  42452. front: {
  42453. height: math.unit(6, "feet"),
  42454. name: "Front",
  42455. image: {
  42456. source: "./media/characters/persephone/front.svg",
  42457. extra: 1895/1717,
  42458. bottom: 96/1991
  42459. }
  42460. },
  42461. back: {
  42462. height: math.unit(6, "feet"),
  42463. name: "Back",
  42464. image: {
  42465. source: "./media/characters/persephone/back.svg",
  42466. extra: 1868/1679,
  42467. bottom: 26/1894
  42468. }
  42469. },
  42470. casual: {
  42471. height: math.unit(6, "feet"),
  42472. name: "Casual",
  42473. image: {
  42474. source: "./media/characters/persephone/casual.svg",
  42475. extra: 1713/1541,
  42476. bottom: 76/1789
  42477. }
  42478. },
  42479. },
  42480. [
  42481. {
  42482. name: "Human Size",
  42483. height: math.unit(6, "feet"),
  42484. default: true
  42485. },
  42486. {
  42487. name: "Galaxy Brain",
  42488. height: math.unit(1, "zettameter")
  42489. },
  42490. ]
  42491. ))
  42492. characterMakers.push(() => makeCharacter(
  42493. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  42494. {
  42495. front: {
  42496. height: math.unit(1.85, "meters"),
  42497. name: "Front",
  42498. image: {
  42499. source: "./media/characters/riley-foxthing/front.svg",
  42500. extra: 1495/1354,
  42501. bottom: 122/1617
  42502. }
  42503. },
  42504. frontAlt: {
  42505. height: math.unit(1.85, "meters"),
  42506. name: "Front (Alt)",
  42507. image: {
  42508. source: "./media/characters/riley-foxthing/front-alt.svg",
  42509. extra: 1572/1389,
  42510. bottom: 116/1688
  42511. }
  42512. },
  42513. },
  42514. [
  42515. {
  42516. name: "Normal Sized",
  42517. height: math.unit(1.85, "meters"),
  42518. default: true
  42519. },
  42520. {
  42521. name: "Quite Sizable",
  42522. height: math.unit(5, "meters")
  42523. },
  42524. {
  42525. name: "Rather Large",
  42526. height: math.unit(20, "meters")
  42527. },
  42528. {
  42529. name: "Macro",
  42530. height: math.unit(450, "meters")
  42531. },
  42532. {
  42533. name: "Giga",
  42534. height: math.unit(5, "km")
  42535. },
  42536. ]
  42537. ))
  42538. characterMakers.push(() => makeCharacter(
  42539. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  42540. {
  42541. front: {
  42542. height: math.unit(6, "feet"),
  42543. weight: math.unit(200, "lb"),
  42544. name: "Front",
  42545. image: {
  42546. source: "./media/characters/blizzard/front.svg",
  42547. extra: 1136/990,
  42548. bottom: 136/1272
  42549. }
  42550. },
  42551. back: {
  42552. height: math.unit(6, "feet"),
  42553. weight: math.unit(200, "lb"),
  42554. name: "Back",
  42555. image: {
  42556. source: "./media/characters/blizzard/back.svg",
  42557. extra: 1175/1034,
  42558. bottom: 97/1272
  42559. }
  42560. },
  42561. sitting: {
  42562. height: math.unit(3.725, "feet"),
  42563. weight: math.unit(200, "lb"),
  42564. name: "Sitting",
  42565. image: {
  42566. source: "./media/characters/blizzard/sitting.svg",
  42567. extra: 581/485,
  42568. bottom: 90/671
  42569. }
  42570. },
  42571. frontWizard: {
  42572. height: math.unit(7.9, "feet"),
  42573. weight: math.unit(200, "lb"),
  42574. name: "Front (Wizard)",
  42575. image: {
  42576. source: "./media/characters/blizzard/front-wizard.svg"
  42577. }
  42578. },
  42579. backWizard: {
  42580. height: math.unit(7.9, "feet"),
  42581. weight: math.unit(200, "lb"),
  42582. name: "Back (Wizard)",
  42583. image: {
  42584. source: "./media/characters/blizzard/back-wizard.svg"
  42585. }
  42586. },
  42587. frontNsfw: {
  42588. height: math.unit(6, "feet"),
  42589. weight: math.unit(200, "lb"),
  42590. name: "Front (NSFW)",
  42591. image: {
  42592. source: "./media/characters/blizzard/front-nsfw.svg",
  42593. extra: 1136/990,
  42594. bottom: 136/1272
  42595. }
  42596. },
  42597. backNsfw: {
  42598. height: math.unit(6, "feet"),
  42599. weight: math.unit(200, "lb"),
  42600. name: "Back (NSFW)",
  42601. image: {
  42602. source: "./media/characters/blizzard/back-nsfw.svg",
  42603. extra: 1175/1034,
  42604. bottom: 97/1272
  42605. }
  42606. },
  42607. sittingNsfw: {
  42608. height: math.unit(3.725, "feet"),
  42609. weight: math.unit(200, "lb"),
  42610. name: "Sitting (NSFW)",
  42611. image: {
  42612. source: "./media/characters/blizzard/sitting-nsfw.svg",
  42613. extra: 581/485,
  42614. bottom: 90/671
  42615. }
  42616. },
  42617. wizardFrontNsfw: {
  42618. height: math.unit(7.9, "feet"),
  42619. weight: math.unit(200, "lb"),
  42620. name: "Wizard (Front, NSFW)",
  42621. image: {
  42622. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  42623. }
  42624. },
  42625. },
  42626. [
  42627. {
  42628. name: "Normal",
  42629. height: math.unit(6, "feet"),
  42630. default: true
  42631. },
  42632. ]
  42633. ))
  42634. characterMakers.push(() => makeCharacter(
  42635. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  42636. {
  42637. front: {
  42638. height: math.unit(5 + 2/12, "feet"),
  42639. name: "Front",
  42640. image: {
  42641. source: "./media/characters/lumi/front.svg",
  42642. extra: 1328/1268,
  42643. bottom: 103/1431
  42644. }
  42645. },
  42646. back: {
  42647. height: math.unit(5 + 2/12, "feet"),
  42648. name: "Back",
  42649. image: {
  42650. source: "./media/characters/lumi/back.svg",
  42651. extra: 1381/1327,
  42652. bottom: 43/1424
  42653. }
  42654. },
  42655. },
  42656. [
  42657. {
  42658. name: "Normal",
  42659. height: math.unit(5 + 2/12, "feet"),
  42660. default: true
  42661. },
  42662. ]
  42663. ))
  42664. characterMakers.push(() => makeCharacter(
  42665. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  42666. {
  42667. front: {
  42668. height: math.unit(5 + 9/12, "feet"),
  42669. name: "Front",
  42670. image: {
  42671. source: "./media/characters/aliya-cotton/front.svg",
  42672. extra: 577/564,
  42673. bottom: 29/606
  42674. }
  42675. },
  42676. },
  42677. [
  42678. {
  42679. name: "Normal",
  42680. height: math.unit(5 + 9/12, "feet"),
  42681. default: true
  42682. },
  42683. ]
  42684. ))
  42685. characterMakers.push(() => makeCharacter(
  42686. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  42687. {
  42688. front: {
  42689. height: math.unit(2.7, "meters"),
  42690. weight: math.unit(25000, "lb"),
  42691. name: "Front",
  42692. image: {
  42693. source: "./media/characters/noah-luxray/front.svg",
  42694. extra: 1644/825,
  42695. bottom: 339/1983
  42696. }
  42697. },
  42698. side: {
  42699. height: math.unit(2.97, "meters"),
  42700. weight: math.unit(25000, "lb"),
  42701. name: "Side",
  42702. image: {
  42703. source: "./media/characters/noah-luxray/side.svg",
  42704. extra: 1319/650,
  42705. bottom: 163/1482
  42706. }
  42707. },
  42708. dick: {
  42709. height: math.unit(7.4, "feet"),
  42710. weight: math.unit(2500, "lb"),
  42711. name: "Dick",
  42712. image: {
  42713. source: "./media/characters/noah-luxray/dick.svg"
  42714. }
  42715. },
  42716. dickAlt: {
  42717. height: math.unit(10.83, "feet"),
  42718. weight: math.unit(2500, "lb"),
  42719. name: "Dick-alt",
  42720. image: {
  42721. source: "./media/characters/noah-luxray/dick-alt.svg"
  42722. }
  42723. },
  42724. },
  42725. [
  42726. {
  42727. name: "BIG",
  42728. height: math.unit(2.7, "meters"),
  42729. default: true
  42730. },
  42731. ]
  42732. ))
  42733. characterMakers.push(() => makeCharacter(
  42734. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  42735. {
  42736. standing: {
  42737. height: math.unit(183, "cm"),
  42738. weight: math.unit(68, "kg"),
  42739. name: "Standing",
  42740. image: {
  42741. source: "./media/characters/arion/standing.svg",
  42742. extra: 1869/1807,
  42743. bottom: 93/1962
  42744. }
  42745. },
  42746. reclining: {
  42747. height: math.unit(70.5, "cm"),
  42748. weight: math.unit(68, "lb"),
  42749. name: "Reclining",
  42750. image: {
  42751. source: "./media/characters/arion/reclining.svg",
  42752. extra: 937/870,
  42753. bottom: 63/1000
  42754. }
  42755. },
  42756. },
  42757. [
  42758. {
  42759. name: "Colossus Size, Low",
  42760. height: math.unit(33, "meters"),
  42761. default: true
  42762. },
  42763. {
  42764. name: "Colossus Size, Mid",
  42765. height: math.unit(52, "meters")
  42766. },
  42767. {
  42768. name: "Colossus Size, High",
  42769. height: math.unit(60, "meters")
  42770. },
  42771. {
  42772. name: "Titan Size, Low",
  42773. height: math.unit(91, "meters"),
  42774. },
  42775. {
  42776. name: "Titan Size, Mid",
  42777. height: math.unit(122, "meters")
  42778. },
  42779. {
  42780. name: "Titan Size, High",
  42781. height: math.unit(162, "meters")
  42782. },
  42783. ]
  42784. ))
  42785. characterMakers.push(() => makeCharacter(
  42786. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  42787. {
  42788. front: {
  42789. height: math.unit(53, "meters"),
  42790. name: "Front",
  42791. image: {
  42792. source: "./media/characters/stellar-marbey/front.svg",
  42793. extra: 1913/1805,
  42794. bottom: 92/2005
  42795. }
  42796. },
  42797. back: {
  42798. height: math.unit(53, "meters"),
  42799. name: "Back",
  42800. image: {
  42801. source: "./media/characters/stellar-marbey/back.svg",
  42802. extra: 1960/1851,
  42803. bottom: 28/1988
  42804. }
  42805. },
  42806. mouth: {
  42807. height: math.unit(3.5, "meters"),
  42808. name: "Mouth",
  42809. image: {
  42810. source: "./media/characters/stellar-marbey/mouth.svg"
  42811. }
  42812. },
  42813. },
  42814. [
  42815. {
  42816. name: "Macro",
  42817. height: math.unit(53, "meters"),
  42818. default: true
  42819. },
  42820. ]
  42821. ))
  42822. characterMakers.push(() => makeCharacter(
  42823. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  42824. {
  42825. front: {
  42826. height: math.unit(8 + 1/12, "feet"),
  42827. weight: math.unit(233, "lb"),
  42828. name: "Front",
  42829. image: {
  42830. source: "./media/characters/matsu/front.svg",
  42831. extra: 832/772,
  42832. bottom: 40/872
  42833. }
  42834. },
  42835. back: {
  42836. height: math.unit(8 + 1/12, "feet"),
  42837. weight: math.unit(233, "lb"),
  42838. name: "Back",
  42839. image: {
  42840. source: "./media/characters/matsu/back.svg",
  42841. extra: 839/780,
  42842. bottom: 47/886
  42843. }
  42844. },
  42845. },
  42846. [
  42847. {
  42848. name: "Normal",
  42849. height: math.unit(8 + 1/12, "feet"),
  42850. default: true
  42851. },
  42852. ]
  42853. ))
  42854. characterMakers.push(() => makeCharacter(
  42855. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  42856. {
  42857. front: {
  42858. height: math.unit(4, "feet"),
  42859. weight: math.unit(148, "lb"),
  42860. name: "Front",
  42861. image: {
  42862. source: "./media/characters/thiz/front.svg",
  42863. extra: 1913/1748,
  42864. bottom: 62/1975
  42865. }
  42866. },
  42867. },
  42868. [
  42869. {
  42870. name: "Normal",
  42871. height: math.unit(4, "feet"),
  42872. default: true
  42873. },
  42874. ]
  42875. ))
  42876. characterMakers.push(() => makeCharacter(
  42877. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  42878. {
  42879. front: {
  42880. height: math.unit(7 + 6/12, "feet"),
  42881. weight: math.unit(267, "lb"),
  42882. name: "Front",
  42883. image: {
  42884. source: "./media/characters/marcel/front.svg",
  42885. extra: 1221/1096,
  42886. bottom: 76/1297
  42887. }
  42888. },
  42889. },
  42890. [
  42891. {
  42892. name: "Normal",
  42893. height: math.unit(7 + 6/12, "feet"),
  42894. default: true
  42895. },
  42896. ]
  42897. ))
  42898. characterMakers.push(() => makeCharacter(
  42899. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  42900. {
  42901. side: {
  42902. height: math.unit(42, "meters"),
  42903. name: "Side",
  42904. image: {
  42905. source: "./media/characters/flake/side.svg",
  42906. extra: 1525/1306,
  42907. bottom: 209/1734
  42908. }
  42909. },
  42910. },
  42911. [
  42912. {
  42913. name: "Normal",
  42914. height: math.unit(42, "meters"),
  42915. default: true
  42916. },
  42917. ]
  42918. ))
  42919. characterMakers.push(() => makeCharacter(
  42920. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  42921. {
  42922. dressed: {
  42923. height: math.unit(6 + 4/12, "feet"),
  42924. weight: math.unit(520, "lb"),
  42925. name: "Dressed",
  42926. image: {
  42927. source: "./media/characters/someonne/dressed.svg",
  42928. extra: 1020/1010,
  42929. bottom: 178/1198
  42930. }
  42931. },
  42932. undressed: {
  42933. height: math.unit(6 + 4/12, "feet"),
  42934. weight: math.unit(520, "lb"),
  42935. name: "Undressed",
  42936. image: {
  42937. source: "./media/characters/someonne/undressed.svg",
  42938. extra: 1019/1014,
  42939. bottom: 169/1188
  42940. }
  42941. },
  42942. },
  42943. [
  42944. {
  42945. name: "Normal",
  42946. height: math.unit(6 + 4/12, "feet"),
  42947. default: true
  42948. },
  42949. ]
  42950. ))
  42951. characterMakers.push(() => makeCharacter(
  42952. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  42953. {
  42954. front: {
  42955. height: math.unit(3, "feet"),
  42956. weight: math.unit(30, "lb"),
  42957. name: "Front",
  42958. image: {
  42959. source: "./media/characters/till/front.svg",
  42960. extra: 892/823,
  42961. bottom: 55/947
  42962. }
  42963. },
  42964. },
  42965. [
  42966. {
  42967. name: "Normal",
  42968. height: math.unit(3, "feet"),
  42969. default: true
  42970. },
  42971. ]
  42972. ))
  42973. characterMakers.push(() => makeCharacter(
  42974. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  42975. {
  42976. front: {
  42977. height: math.unit(9 + 8/12, "feet"),
  42978. weight: math.unit(800, "lb"),
  42979. name: "Front",
  42980. image: {
  42981. source: "./media/characters/sydney-heki/front.svg",
  42982. extra: 1360/1300,
  42983. bottom: 22/1382
  42984. }
  42985. },
  42986. back: {
  42987. height: math.unit(9 + 8/12, "feet"),
  42988. weight: math.unit(800, "lb"),
  42989. name: "Back",
  42990. image: {
  42991. source: "./media/characters/sydney-heki/back.svg",
  42992. extra: 1356/1293,
  42993. bottom: 12/1368
  42994. }
  42995. },
  42996. frontDressed: {
  42997. height: math.unit(9 + 8/12, "feet"),
  42998. weight: math.unit(800, "lb"),
  42999. name: "Front-dressed",
  43000. image: {
  43001. source: "./media/characters/sydney-heki/front-dressed.svg",
  43002. extra: 1360/1300,
  43003. bottom: 22/1382
  43004. }
  43005. },
  43006. },
  43007. [
  43008. {
  43009. name: "Normal",
  43010. height: math.unit(9 + 8/12, "feet"),
  43011. default: true
  43012. },
  43013. {
  43014. name: "Macro",
  43015. height: math.unit(500, "feet")
  43016. },
  43017. {
  43018. name: "Megamacro",
  43019. height: math.unit(3.6, "miles")
  43020. },
  43021. ]
  43022. ))
  43023. characterMakers.push(() => makeCharacter(
  43024. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43025. {
  43026. front: {
  43027. height: math.unit(200, "cm"),
  43028. weight: math.unit(250, "lb"),
  43029. name: "Front",
  43030. image: {
  43031. source: "./media/characters/fowler-karlsson/front.svg",
  43032. extra: 897/845,
  43033. bottom: 123/1020
  43034. }
  43035. },
  43036. back: {
  43037. height: math.unit(200, "cm"),
  43038. weight: math.unit(250, "lb"),
  43039. name: "Back",
  43040. image: {
  43041. source: "./media/characters/fowler-karlsson/back.svg",
  43042. extra: 999/944,
  43043. bottom: 26/1025
  43044. }
  43045. },
  43046. dick: {
  43047. height: math.unit(1.92, "feet"),
  43048. weight: math.unit(150, "lb"),
  43049. name: "Dick",
  43050. image: {
  43051. source: "./media/characters/fowler-karlsson/dick.svg"
  43052. }
  43053. },
  43054. },
  43055. [
  43056. {
  43057. name: "Normal",
  43058. height: math.unit(200, "cm"),
  43059. default: true
  43060. },
  43061. {
  43062. name: "Smaller Macro",
  43063. height: math.unit(90, "m")
  43064. },
  43065. {
  43066. name: "Macro",
  43067. height: math.unit(150, "m")
  43068. },
  43069. {
  43070. name: "Bigger Macro",
  43071. height: math.unit(300, "m")
  43072. },
  43073. ]
  43074. ))
  43075. characterMakers.push(() => makeCharacter(
  43076. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43077. {
  43078. side: {
  43079. height: math.unit(8 + 2/12, "feet"),
  43080. weight: math.unit(1, "tonne"),
  43081. name: "Side",
  43082. image: {
  43083. source: "./media/characters/rylide/side.svg",
  43084. extra: 1318/1034,
  43085. bottom: 106/1424
  43086. }
  43087. },
  43088. sitting: {
  43089. height: math.unit(303, "cm"),
  43090. weight: math.unit(1, "tonne"),
  43091. name: "Sitting",
  43092. image: {
  43093. source: "./media/characters/rylide/sitting.svg",
  43094. extra: 1303/1103,
  43095. bottom: 36/1339
  43096. }
  43097. },
  43098. },
  43099. [
  43100. {
  43101. name: "Normal",
  43102. height: math.unit(8 + 2/12, "feet"),
  43103. default: true
  43104. },
  43105. ]
  43106. ))
  43107. characterMakers.push(() => makeCharacter(
  43108. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43109. {
  43110. front: {
  43111. height: math.unit(5 + 10/12, "feet"),
  43112. weight: math.unit(160, "lb"),
  43113. name: "Front",
  43114. image: {
  43115. source: "./media/characters/pudask/front.svg",
  43116. extra: 1616/1590,
  43117. bottom: 161/1777
  43118. }
  43119. },
  43120. },
  43121. [
  43122. {
  43123. name: "Ferret Height",
  43124. height: math.unit(2 + 5/12, "feet")
  43125. },
  43126. {
  43127. name: "Canon Height",
  43128. height: math.unit(5 + 10/12, "feet"),
  43129. default: true
  43130. },
  43131. ]
  43132. ))
  43133. characterMakers.push(() => makeCharacter(
  43134. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43135. {
  43136. front: {
  43137. height: math.unit(3 + 6/12, "feet"),
  43138. weight: math.unit(60, "lb"),
  43139. name: "Front",
  43140. image: {
  43141. source: "./media/characters/ramita/front.svg",
  43142. extra: 1402/1232,
  43143. bottom: 62/1464
  43144. }
  43145. },
  43146. dressed: {
  43147. height: math.unit(3 + 6/12, "feet"),
  43148. weight: math.unit(60, "lb"),
  43149. name: "Dressed",
  43150. image: {
  43151. source: "./media/characters/ramita/dressed.svg",
  43152. extra: 1534/1249,
  43153. bottom: 50/1584
  43154. }
  43155. },
  43156. },
  43157. [
  43158. {
  43159. name: "Normal",
  43160. height: math.unit(3 + 6/12, "feet"),
  43161. default: true
  43162. },
  43163. ]
  43164. ))
  43165. characterMakers.push(() => makeCharacter(
  43166. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43167. {
  43168. front: {
  43169. height: math.unit(8, "feet"),
  43170. name: "Front",
  43171. image: {
  43172. source: "./media/characters/ark/front.svg",
  43173. extra: 772/693,
  43174. bottom: 45/817
  43175. }
  43176. },
  43177. },
  43178. [
  43179. {
  43180. name: "Normal",
  43181. height: math.unit(8, "feet"),
  43182. default: true
  43183. },
  43184. ]
  43185. ))
  43186. characterMakers.push(() => makeCharacter(
  43187. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43188. {
  43189. front: {
  43190. height: math.unit(6, "feet"),
  43191. weight: math.unit(250, "lb"),
  43192. volume: math.unit(5/8, "gallons"),
  43193. name: "Front",
  43194. image: {
  43195. source: "./media/characters/ludwig-horn/front.svg",
  43196. extra: 1782/1635,
  43197. bottom: 96/1878
  43198. }
  43199. },
  43200. back: {
  43201. height: math.unit(6, "feet"),
  43202. weight: math.unit(250, "lb"),
  43203. volume: math.unit(5/8, "gallons"),
  43204. name: "Back",
  43205. image: {
  43206. source: "./media/characters/ludwig-horn/back.svg",
  43207. extra: 1874/1729,
  43208. bottom: 27/1901
  43209. }
  43210. },
  43211. dick: {
  43212. height: math.unit(1.05, "feet"),
  43213. weight: math.unit(15, "lb"),
  43214. volume: math.unit(5/8, "gallons"),
  43215. name: "Dick",
  43216. image: {
  43217. source: "./media/characters/ludwig-horn/dick.svg"
  43218. }
  43219. },
  43220. },
  43221. [
  43222. {
  43223. name: "Small",
  43224. height: math.unit(6, "feet")
  43225. },
  43226. {
  43227. name: "Typical",
  43228. height: math.unit(12, "feet"),
  43229. default: true
  43230. },
  43231. {
  43232. name: "Building",
  43233. height: math.unit(80, "feet")
  43234. },
  43235. {
  43236. name: "Town",
  43237. height: math.unit(800, "feet")
  43238. },
  43239. {
  43240. name: "Kingdom",
  43241. height: math.unit(80000, "feet")
  43242. },
  43243. {
  43244. name: "Planet",
  43245. height: math.unit(8000000, "feet")
  43246. },
  43247. {
  43248. name: "Universe",
  43249. height: math.unit(8000000000, "feet")
  43250. },
  43251. {
  43252. name: "Transcended",
  43253. height: math.unit(8e27, "feet")
  43254. },
  43255. ]
  43256. ))
  43257. characterMakers.push(() => makeCharacter(
  43258. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43259. {
  43260. front: {
  43261. height: math.unit(5, "feet"),
  43262. weight: math.unit(50, "kg"),
  43263. name: "Front",
  43264. image: {
  43265. source: "./media/characters/biot-avery/front.svg",
  43266. extra: 1295/1232,
  43267. bottom: 86/1381
  43268. }
  43269. },
  43270. },
  43271. [
  43272. {
  43273. name: "Normal",
  43274. height: math.unit(5, "feet"),
  43275. default: true
  43276. },
  43277. ]
  43278. ))
  43279. characterMakers.push(() => makeCharacter(
  43280. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  43281. {
  43282. front: {
  43283. height: math.unit(6, "feet"),
  43284. name: "Front",
  43285. image: {
  43286. source: "./media/characters/kitsune-kiro/front.svg",
  43287. extra: 1270/1158,
  43288. bottom: 42/1312
  43289. }
  43290. },
  43291. frontAlt: {
  43292. height: math.unit(6, "feet"),
  43293. name: "Front-alt",
  43294. image: {
  43295. source: "./media/characters/kitsune-kiro/front-alt.svg",
  43296. extra: 1130/1081,
  43297. bottom: 36/1166
  43298. }
  43299. },
  43300. },
  43301. [
  43302. {
  43303. name: "Smol",
  43304. height: math.unit(3, "feet")
  43305. },
  43306. {
  43307. name: "Normal",
  43308. height: math.unit(6, "feet"),
  43309. default: true
  43310. },
  43311. ]
  43312. ))
  43313. characterMakers.push(() => makeCharacter(
  43314. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  43315. {
  43316. front: {
  43317. height: math.unit(6, "feet"),
  43318. weight: math.unit(125, "lb"),
  43319. name: "Front",
  43320. image: {
  43321. source: "./media/characters/jack-thatcher/front.svg",
  43322. extra: 1474/1370,
  43323. bottom: 26/1500
  43324. }
  43325. },
  43326. back: {
  43327. height: math.unit(6, "feet"),
  43328. weight: math.unit(125, "lb"),
  43329. name: "Back",
  43330. image: {
  43331. source: "./media/characters/jack-thatcher/back.svg",
  43332. extra: 1489/1384,
  43333. bottom: 18/1507
  43334. }
  43335. },
  43336. },
  43337. [
  43338. {
  43339. name: "Normal",
  43340. height: math.unit(6, "feet"),
  43341. default: true
  43342. },
  43343. {
  43344. name: "Macro",
  43345. height: math.unit(75, "feet")
  43346. },
  43347. {
  43348. name: "Macro-er",
  43349. height: math.unit(250, "feet")
  43350. },
  43351. ]
  43352. ))
  43353. characterMakers.push(() => makeCharacter(
  43354. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  43355. {
  43356. front: {
  43357. height: math.unit(7, "feet"),
  43358. weight: math.unit(110, "kg"),
  43359. name: "Front",
  43360. image: {
  43361. source: "./media/characters/max-hyper/front.svg",
  43362. extra: 1969/1881,
  43363. bottom: 49/2018
  43364. }
  43365. },
  43366. },
  43367. [
  43368. {
  43369. name: "Normal",
  43370. height: math.unit(7, "feet"),
  43371. default: true
  43372. },
  43373. ]
  43374. ))
  43375. characterMakers.push(() => makeCharacter(
  43376. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  43377. {
  43378. front: {
  43379. height: math.unit(5 + 5/12, "feet"),
  43380. weight: math.unit(160, "lb"),
  43381. name: "Front",
  43382. image: {
  43383. source: "./media/characters/spook/front.svg",
  43384. extra: 794/791,
  43385. bottom: 54/848
  43386. }
  43387. },
  43388. back: {
  43389. height: math.unit(5 + 5/12, "feet"),
  43390. weight: math.unit(160, "lb"),
  43391. name: "Back",
  43392. image: {
  43393. source: "./media/characters/spook/back.svg",
  43394. extra: 812/798,
  43395. bottom: 32/844
  43396. }
  43397. },
  43398. },
  43399. [
  43400. {
  43401. name: "Normal",
  43402. height: math.unit(5 + 5/12, "feet"),
  43403. default: true
  43404. },
  43405. ]
  43406. ))
  43407. characterMakers.push(() => makeCharacter(
  43408. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  43409. {
  43410. front: {
  43411. height: math.unit(18, "feet"),
  43412. name: "Front",
  43413. image: {
  43414. source: "./media/characters/xeaduulix/front.svg",
  43415. extra: 1380/1166,
  43416. bottom: 110/1490
  43417. }
  43418. },
  43419. back: {
  43420. height: math.unit(18, "feet"),
  43421. name: "Back",
  43422. image: {
  43423. source: "./media/characters/xeaduulix/back.svg",
  43424. extra: 1592/1170,
  43425. bottom: 128/1720
  43426. }
  43427. },
  43428. frontNsfw: {
  43429. height: math.unit(18, "feet"),
  43430. name: "Front (NSFW)",
  43431. image: {
  43432. source: "./media/characters/xeaduulix/front-nsfw.svg",
  43433. extra: 1380/1166,
  43434. bottom: 110/1490
  43435. }
  43436. },
  43437. backNsfw: {
  43438. height: math.unit(18, "feet"),
  43439. name: "Back (NSFW)",
  43440. image: {
  43441. source: "./media/characters/xeaduulix/back-nsfw.svg",
  43442. extra: 1592/1170,
  43443. bottom: 128/1720
  43444. }
  43445. },
  43446. },
  43447. [
  43448. {
  43449. name: "Normal",
  43450. height: math.unit(18, "feet"),
  43451. default: true
  43452. },
  43453. ]
  43454. ))
  43455. characterMakers.push(() => makeCharacter(
  43456. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  43457. {
  43458. spreadWings: {
  43459. height: math.unit(20, "feet"),
  43460. name: "Spread Wings",
  43461. image: {
  43462. source: "./media/characters/fledge/spread-wings.svg",
  43463. extra: 693/635,
  43464. bottom: 26/719
  43465. }
  43466. },
  43467. front: {
  43468. height: math.unit(20, "feet"),
  43469. name: "Front",
  43470. image: {
  43471. source: "./media/characters/fledge/front.svg",
  43472. extra: 684/637,
  43473. bottom: 18/702
  43474. }
  43475. },
  43476. frontAlt: {
  43477. height: math.unit(20, "feet"),
  43478. name: "Front (Alt)",
  43479. image: {
  43480. source: "./media/characters/fledge/front-alt.svg",
  43481. extra: 708/664,
  43482. bottom: 13/721
  43483. }
  43484. },
  43485. back: {
  43486. height: math.unit(20, "feet"),
  43487. name: "Back",
  43488. image: {
  43489. source: "./media/characters/fledge/back.svg",
  43490. extra: 718/634,
  43491. bottom: 22/740
  43492. }
  43493. },
  43494. head: {
  43495. height: math.unit(5.55, "feet"),
  43496. name: "Head",
  43497. image: {
  43498. source: "./media/characters/fledge/head.svg"
  43499. }
  43500. },
  43501. headAlt: {
  43502. height: math.unit(5.1, "feet"),
  43503. name: "Head (Alt)",
  43504. image: {
  43505. source: "./media/characters/fledge/head-alt.svg"
  43506. }
  43507. },
  43508. },
  43509. [
  43510. {
  43511. name: "Small",
  43512. height: math.unit(6 + 2/12, "feet")
  43513. },
  43514. {
  43515. name: "Big",
  43516. height: math.unit(20, "feet"),
  43517. default: true
  43518. },
  43519. {
  43520. name: "Giant",
  43521. height: math.unit(100, "feet")
  43522. },
  43523. {
  43524. name: "Macro",
  43525. height: math.unit(200, "feet")
  43526. },
  43527. ]
  43528. ))
  43529. characterMakers.push(() => makeCharacter(
  43530. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  43531. {
  43532. front: {
  43533. height: math.unit(1, "meter"),
  43534. name: "Front",
  43535. image: {
  43536. source: "./media/characters/atlas-morenai/front.svg",
  43537. extra: 1275/1043,
  43538. bottom: 19/1294
  43539. }
  43540. },
  43541. back: {
  43542. height: math.unit(1, "meter"),
  43543. name: "Back",
  43544. image: {
  43545. source: "./media/characters/atlas-morenai/back.svg",
  43546. extra: 1141/1001,
  43547. bottom: 25/1166
  43548. }
  43549. },
  43550. },
  43551. [
  43552. {
  43553. name: "Normal",
  43554. height: math.unit(1, "meter"),
  43555. default: true
  43556. },
  43557. {
  43558. name: "Magic-Infused",
  43559. height: math.unit(5, "meters")
  43560. },
  43561. ]
  43562. ))
  43563. characterMakers.push(() => makeCharacter(
  43564. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  43565. {
  43566. front: {
  43567. height: math.unit(5, "meters"),
  43568. name: "Front",
  43569. image: {
  43570. source: "./media/characters/cintia/front.svg",
  43571. extra: 1312/1228,
  43572. bottom: 38/1350
  43573. }
  43574. },
  43575. back: {
  43576. height: math.unit(5, "meters"),
  43577. name: "Back",
  43578. image: {
  43579. source: "./media/characters/cintia/back.svg",
  43580. extra: 1260/1166,
  43581. bottom: 98/1358
  43582. }
  43583. },
  43584. frontDick: {
  43585. height: math.unit(5, "meters"),
  43586. name: "Front (Dick)",
  43587. image: {
  43588. source: "./media/characters/cintia/front-dick.svg",
  43589. extra: 1312/1228,
  43590. bottom: 38/1350
  43591. }
  43592. },
  43593. backDick: {
  43594. height: math.unit(5, "meters"),
  43595. name: "Back (Dick)",
  43596. image: {
  43597. source: "./media/characters/cintia/back-dick.svg",
  43598. extra: 1260/1166,
  43599. bottom: 98/1358
  43600. }
  43601. },
  43602. bust: {
  43603. height: math.unit(1.97, "meters"),
  43604. name: "Bust",
  43605. image: {
  43606. source: "./media/characters/cintia/bust.svg",
  43607. extra: 617/565,
  43608. bottom: 0/617
  43609. }
  43610. },
  43611. },
  43612. [
  43613. {
  43614. name: "Normal",
  43615. height: math.unit(5, "meters"),
  43616. default: true
  43617. },
  43618. ]
  43619. ))
  43620. //characters
  43621. function makeCharacters() {
  43622. const results = [];
  43623. characterMakers.forEach(character => {
  43624. results.push(character());
  43625. });
  43626. return results;
  43627. }