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

44318 строки
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. }
  1787. //species
  1788. function getSpeciesInfo(speciesList) {
  1789. let result = new Set();
  1790. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1791. result.add(entry)
  1792. });
  1793. return Array.from(result);
  1794. };
  1795. function getSpeciesInfoHelper(species) {
  1796. if (!speciesData[species]) {
  1797. console.warn(species + " doesn't exist");
  1798. return [];
  1799. }
  1800. if (speciesData[species].parents) {
  1801. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1802. } else {
  1803. return [species];
  1804. }
  1805. }
  1806. characterMakers.push(() => makeCharacter(
  1807. {
  1808. name: "Fen",
  1809. species: ["crux"],
  1810. description: {
  1811. title: "Bio",
  1812. text: "Very furry. Sheds on everything."
  1813. },
  1814. tags: [
  1815. "anthro",
  1816. "goo"
  1817. ]
  1818. },
  1819. {
  1820. back: {
  1821. height: math.unit(2.2428, "meter"),
  1822. weight: math.unit(124.738, "kg"),
  1823. name: "Back",
  1824. image: {
  1825. source: "./media/characters/fen/back.svg",
  1826. },
  1827. info: {
  1828. description: {
  1829. mode: "append",
  1830. text: "\n\nHe is not currently looking at you."
  1831. }
  1832. }
  1833. },
  1834. full: {
  1835. height: math.unit(0.91, "meter"),
  1836. weight: math.unit(225, "kg"),
  1837. name: "Full",
  1838. image: {
  1839. source: "./media/characters/fen/full.svg",
  1840. extra: 1133/859,
  1841. bottom: 145/1278
  1842. },
  1843. info: {
  1844. description: {
  1845. mode: "append",
  1846. text: "\n\nMunch."
  1847. }
  1848. }
  1849. },
  1850. kneeling: {
  1851. height: math.unit(5.4, "feet"),
  1852. weight: math.unit(124.738, "kg"),
  1853. name: "Kneeling",
  1854. image: {
  1855. source: "./media/characters/fen/kneeling.svg",
  1856. extra: 563 / 507
  1857. }
  1858. },
  1859. goo: {
  1860. height: math.unit(2.8, "feet"),
  1861. weight: math.unit(125, "kg"),
  1862. capacity: math.unit(1, "people"),
  1863. name: "Goo",
  1864. image: {
  1865. source: "./media/characters/fen/goo.svg",
  1866. bottom: 116 / 613
  1867. }
  1868. },
  1869. lounging: {
  1870. height: math.unit(6.5, "feet"),
  1871. weight: math.unit(125, "kg"),
  1872. name: "Lounging",
  1873. image: {
  1874. source: "./media/characters/fen/lounging.svg"
  1875. }
  1876. },
  1877. },
  1878. [
  1879. {
  1880. name: "Normal",
  1881. height: math.unit(2.2428, "meter")
  1882. },
  1883. {
  1884. name: "Big",
  1885. height: math.unit(12, "feet")
  1886. },
  1887. {
  1888. name: "Minimacro",
  1889. height: math.unit(40, "feet"),
  1890. default: true,
  1891. info: {
  1892. description: {
  1893. mode: "append",
  1894. text: "\n\nTOO DAMN BIG"
  1895. }
  1896. }
  1897. },
  1898. {
  1899. name: "Macro",
  1900. height: math.unit(100, "feet"),
  1901. info: {
  1902. description: {
  1903. mode: "append",
  1904. text: "\n\nTOO DAMN BIG"
  1905. }
  1906. }
  1907. },
  1908. {
  1909. name: "Macro+",
  1910. height: math.unit(300, "feet")
  1911. },
  1912. {
  1913. name: "Megamacro",
  1914. height: math.unit(2, "miles")
  1915. }
  1916. ]
  1917. ))
  1918. characterMakers.push(() => makeCharacter(
  1919. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1920. {
  1921. front: {
  1922. height: math.unit(183, "cm"),
  1923. weight: math.unit(80, "kg"),
  1924. name: "Front",
  1925. image: {
  1926. source: "./media/characters/sofia-fluttertail/front.svg",
  1927. bottom: 0.01,
  1928. extra: 2154 / 2081
  1929. }
  1930. },
  1931. frontAlt: {
  1932. height: math.unit(183, "cm"),
  1933. weight: math.unit(80, "kg"),
  1934. name: "Front (alt)",
  1935. image: {
  1936. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1937. }
  1938. },
  1939. back: {
  1940. height: math.unit(183, "cm"),
  1941. weight: math.unit(80, "kg"),
  1942. name: "Back",
  1943. image: {
  1944. source: "./media/characters/sofia-fluttertail/back.svg"
  1945. }
  1946. },
  1947. kneeling: {
  1948. height: math.unit(125, "cm"),
  1949. weight: math.unit(80, "kg"),
  1950. name: "Kneeling",
  1951. image: {
  1952. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1953. extra: 1033 / 977,
  1954. bottom: 23.7 / 1057
  1955. }
  1956. },
  1957. maw: {
  1958. height: math.unit(183 / 5, "cm"),
  1959. name: "Maw",
  1960. image: {
  1961. source: "./media/characters/sofia-fluttertail/maw.svg"
  1962. }
  1963. },
  1964. mawcloseup: {
  1965. height: math.unit(183 / 5 * 0.41, "cm"),
  1966. name: "Maw (Closeup)",
  1967. image: {
  1968. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1969. }
  1970. },
  1971. paws: {
  1972. height: math.unit(1.17, "feet"),
  1973. name: "Paws",
  1974. image: {
  1975. source: "./media/characters/sofia-fluttertail/paws.svg",
  1976. extra: 851 / 851,
  1977. bottom: 17 / 868
  1978. }
  1979. },
  1980. },
  1981. [
  1982. {
  1983. name: "Normal",
  1984. height: math.unit(1.83, "meter")
  1985. },
  1986. {
  1987. name: "Size Thief",
  1988. height: math.unit(18, "feet")
  1989. },
  1990. {
  1991. name: "50 Foot Collie",
  1992. height: math.unit(50, "feet")
  1993. },
  1994. {
  1995. name: "Macro",
  1996. height: math.unit(96, "feet"),
  1997. default: true
  1998. },
  1999. {
  2000. name: "Megamerger",
  2001. height: math.unit(650, "feet")
  2002. },
  2003. ]
  2004. ))
  2005. characterMakers.push(() => makeCharacter(
  2006. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2007. {
  2008. front: {
  2009. height: math.unit(7, "feet"),
  2010. weight: math.unit(100, "kg"),
  2011. name: "Front",
  2012. image: {
  2013. source: "./media/characters/march/front.svg",
  2014. extra: 1992/1851,
  2015. bottom: 39/2031
  2016. }
  2017. },
  2018. foot: {
  2019. height: math.unit(0.9, "feet"),
  2020. name: "Foot",
  2021. image: {
  2022. source: "./media/characters/march/foot.svg"
  2023. }
  2024. },
  2025. },
  2026. [
  2027. {
  2028. name: "Normal",
  2029. height: math.unit(7.9, "feet")
  2030. },
  2031. {
  2032. name: "Macro",
  2033. height: math.unit(220, "meters")
  2034. },
  2035. {
  2036. name: "Megamacro",
  2037. height: math.unit(2.98, "km"),
  2038. default: true
  2039. },
  2040. {
  2041. name: "Gigamacro",
  2042. height: math.unit(15963, "km")
  2043. },
  2044. {
  2045. name: "Teramacro",
  2046. height: math.unit(2980000000, "km")
  2047. },
  2048. {
  2049. name: "Examacro",
  2050. height: math.unit(250, "parsecs")
  2051. },
  2052. ]
  2053. ))
  2054. characterMakers.push(() => makeCharacter(
  2055. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2056. {
  2057. front: {
  2058. height: math.unit(6, "feet"),
  2059. weight: math.unit(60, "kg"),
  2060. name: "Front",
  2061. image: {
  2062. source: "./media/characters/noir/front.svg",
  2063. extra: 1,
  2064. bottom: 0.032
  2065. }
  2066. },
  2067. },
  2068. [
  2069. {
  2070. name: "Normal",
  2071. height: math.unit(6.6, "feet")
  2072. },
  2073. {
  2074. name: "Macro",
  2075. height: math.unit(500, "feet")
  2076. },
  2077. {
  2078. name: "Megamacro",
  2079. height: math.unit(2.5, "km"),
  2080. default: true
  2081. },
  2082. {
  2083. name: "Gigamacro",
  2084. height: math.unit(22500, "km")
  2085. },
  2086. {
  2087. name: "Teramacro",
  2088. height: math.unit(2500000000, "km")
  2089. },
  2090. {
  2091. name: "Examacro",
  2092. height: math.unit(200, "parsecs")
  2093. },
  2094. ]
  2095. ))
  2096. characterMakers.push(() => makeCharacter(
  2097. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2098. {
  2099. front: {
  2100. height: math.unit(7, "feet"),
  2101. weight: math.unit(100, "kg"),
  2102. name: "Front",
  2103. image: {
  2104. source: "./media/characters/okuri/front.svg",
  2105. extra: 1,
  2106. bottom: 0.037
  2107. }
  2108. },
  2109. back: {
  2110. height: math.unit(7, "feet"),
  2111. weight: math.unit(100, "kg"),
  2112. name: "Back",
  2113. image: {
  2114. source: "./media/characters/okuri/back.svg",
  2115. extra: 1,
  2116. bottom: 0.007
  2117. }
  2118. },
  2119. },
  2120. [
  2121. {
  2122. name: "Megamacro",
  2123. height: math.unit(100, "miles"),
  2124. default: true
  2125. },
  2126. ]
  2127. ))
  2128. characterMakers.push(() => makeCharacter(
  2129. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2130. {
  2131. front: {
  2132. height: math.unit(7, "feet"),
  2133. weight: math.unit(100, "kg"),
  2134. name: "Front",
  2135. image: {
  2136. source: "./media/characters/manny/front.svg",
  2137. extra: 1,
  2138. bottom: 0.06
  2139. }
  2140. },
  2141. back: {
  2142. height: math.unit(7, "feet"),
  2143. weight: math.unit(100, "kg"),
  2144. name: "Back",
  2145. image: {
  2146. source: "./media/characters/manny/back.svg",
  2147. extra: 1,
  2148. bottom: 0.014
  2149. }
  2150. },
  2151. },
  2152. [
  2153. {
  2154. name: "Normal",
  2155. height: math.unit(7, "feet"),
  2156. },
  2157. {
  2158. name: "Macro",
  2159. height: math.unit(78, "feet"),
  2160. default: true
  2161. },
  2162. {
  2163. name: "Macro+",
  2164. height: math.unit(300, "meters")
  2165. },
  2166. {
  2167. name: "Macro++",
  2168. height: math.unit(2400, "meters")
  2169. },
  2170. {
  2171. name: "Megamacro",
  2172. height: math.unit(5167, "meters")
  2173. },
  2174. {
  2175. name: "Gigamacro",
  2176. height: math.unit(41769, "miles")
  2177. },
  2178. ]
  2179. ))
  2180. characterMakers.push(() => makeCharacter(
  2181. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2182. {
  2183. front: {
  2184. height: math.unit(7, "feet"),
  2185. weight: math.unit(100, "kg"),
  2186. name: "Front",
  2187. image: {
  2188. source: "./media/characters/adake/front-1.svg"
  2189. }
  2190. },
  2191. frontAlt: {
  2192. height: math.unit(7, "feet"),
  2193. weight: math.unit(100, "kg"),
  2194. name: "Front (Alt)",
  2195. image: {
  2196. source: "./media/characters/adake/front-2.svg",
  2197. extra: 1,
  2198. bottom: 0.01
  2199. }
  2200. },
  2201. back: {
  2202. height: math.unit(7, "feet"),
  2203. weight: math.unit(100, "kg"),
  2204. name: "Back",
  2205. image: {
  2206. source: "./media/characters/adake/back.svg",
  2207. }
  2208. },
  2209. kneel: {
  2210. height: math.unit(5.385, "feet"),
  2211. weight: math.unit(100, "kg"),
  2212. name: "Kneeling",
  2213. image: {
  2214. source: "./media/characters/adake/kneel.svg",
  2215. bottom: 0.052
  2216. }
  2217. },
  2218. },
  2219. [
  2220. {
  2221. name: "Normal",
  2222. height: math.unit(7, "feet"),
  2223. },
  2224. {
  2225. name: "Macro",
  2226. height: math.unit(78, "feet"),
  2227. default: true
  2228. },
  2229. {
  2230. name: "Macro+",
  2231. height: math.unit(300, "meters")
  2232. },
  2233. {
  2234. name: "Macro++",
  2235. height: math.unit(2400, "meters")
  2236. },
  2237. {
  2238. name: "Megamacro",
  2239. height: math.unit(5167, "meters")
  2240. },
  2241. {
  2242. name: "Gigamacro",
  2243. height: math.unit(41769, "miles")
  2244. },
  2245. ]
  2246. ))
  2247. characterMakers.push(() => makeCharacter(
  2248. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2249. {
  2250. front: {
  2251. height: math.unit(1.65, "meters"),
  2252. weight: math.unit(50, "kg"),
  2253. name: "Front",
  2254. image: {
  2255. source: "./media/characters/elijah/front.svg",
  2256. extra: 858 / 830,
  2257. bottom: 95.5 / 953.8559
  2258. }
  2259. },
  2260. back: {
  2261. height: math.unit(1.65, "meters"),
  2262. weight: math.unit(50, "kg"),
  2263. name: "Back",
  2264. image: {
  2265. source: "./media/characters/elijah/back.svg",
  2266. extra: 895 / 850,
  2267. bottom: 5.3 / 897.956
  2268. }
  2269. },
  2270. frontNsfw: {
  2271. height: math.unit(1.65, "meters"),
  2272. weight: math.unit(50, "kg"),
  2273. name: "Front (NSFW)",
  2274. image: {
  2275. source: "./media/characters/elijah/front-nsfw.svg",
  2276. extra: 858 / 830,
  2277. bottom: 95.5 / 953.8559
  2278. }
  2279. },
  2280. backNsfw: {
  2281. height: math.unit(1.65, "meters"),
  2282. weight: math.unit(50, "kg"),
  2283. name: "Back (NSFW)",
  2284. image: {
  2285. source: "./media/characters/elijah/back-nsfw.svg",
  2286. extra: 895 / 850,
  2287. bottom: 5.3 / 897.956
  2288. }
  2289. },
  2290. dick: {
  2291. height: math.unit(1, "feet"),
  2292. name: "Dick",
  2293. image: {
  2294. source: "./media/characters/elijah/dick.svg"
  2295. }
  2296. },
  2297. beakOpen: {
  2298. height: math.unit(1.25, "feet"),
  2299. name: "Beak (Open)",
  2300. image: {
  2301. source: "./media/characters/elijah/beak-open.svg"
  2302. }
  2303. },
  2304. beakShut: {
  2305. height: math.unit(1.25, "feet"),
  2306. name: "Beak (Shut)",
  2307. image: {
  2308. source: "./media/characters/elijah/beak-shut.svg"
  2309. }
  2310. },
  2311. footFlexing: {
  2312. height: math.unit(1.61, "feet"),
  2313. name: "Foot (Flexing)",
  2314. image: {
  2315. source: "./media/characters/elijah/foot-flexing.svg"
  2316. }
  2317. },
  2318. footStepping: {
  2319. height: math.unit(1.44, "feet"),
  2320. name: "Foot (Stepping)",
  2321. image: {
  2322. source: "./media/characters/elijah/foot-stepping.svg"
  2323. }
  2324. },
  2325. plantigradeLeg: {
  2326. height: math.unit(2.34, "feet"),
  2327. name: "Plantigrade Leg",
  2328. image: {
  2329. source: "./media/characters/elijah/plantigrade-leg.svg"
  2330. }
  2331. },
  2332. plantigradeFootLeft: {
  2333. height: math.unit(0.9, "feet"),
  2334. name: "Plantigrade Foot (Left)",
  2335. image: {
  2336. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2337. }
  2338. },
  2339. plantigradeFootRight: {
  2340. height: math.unit(0.9, "feet"),
  2341. name: "Plantigrade Foot (Right)",
  2342. image: {
  2343. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2344. }
  2345. },
  2346. },
  2347. [
  2348. {
  2349. name: "Normal",
  2350. height: math.unit(1.65, "meters")
  2351. },
  2352. {
  2353. name: "Macro",
  2354. height: math.unit(55, "meters"),
  2355. default: true
  2356. },
  2357. {
  2358. name: "Macro+",
  2359. height: math.unit(105, "meters")
  2360. },
  2361. ]
  2362. ))
  2363. characterMakers.push(() => makeCharacter(
  2364. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2365. {
  2366. front: {
  2367. height: math.unit(11, "feet"),
  2368. weight: math.unit(320, "kg"),
  2369. name: "Front",
  2370. image: {
  2371. source: "./media/characters/rai/front.svg",
  2372. extra: 1802/1696,
  2373. bottom: 68/1870
  2374. }
  2375. },
  2376. frontDressed: {
  2377. height: math.unit(11, "feet"),
  2378. weight: math.unit(320, "kg"),
  2379. name: "Front (Dressed)",
  2380. image: {
  2381. source: "./media/characters/rai/front-dressed.svg",
  2382. extra: 1802/1696,
  2383. bottom: 68/1870
  2384. }
  2385. },
  2386. side: {
  2387. height: math.unit(11, "feet"),
  2388. weight: math.unit(320, "kg"),
  2389. name: "Side",
  2390. image: {
  2391. source: "./media/characters/rai/side.svg",
  2392. extra: 1789/1710,
  2393. bottom: 115/1904
  2394. }
  2395. },
  2396. back: {
  2397. height: math.unit(11, "feet"),
  2398. weight: math.unit(320, "kg"),
  2399. name: "Back",
  2400. image: {
  2401. source: "./media/characters/rai/back.svg",
  2402. extra: 1770/1707,
  2403. bottom: 28/1798
  2404. }
  2405. },
  2406. feral: {
  2407. height: math.unit(11, "feet"),
  2408. weight: math.unit(640, "kg"),
  2409. name: "Feral",
  2410. image: {
  2411. source: "./media/characters/rai/feral.svg",
  2412. extra: 1035/642,
  2413. bottom: 86/1121
  2414. }
  2415. },
  2416. dragon: {
  2417. height: math.unit(23, "feet"),
  2418. weight: math.unit(50000, "lb"),
  2419. name: "Dragon",
  2420. image: {
  2421. source: "./media/characters/rai/dragon.svg",
  2422. extra: 2498 / 2030,
  2423. bottom: 85.2 / 2584
  2424. }
  2425. },
  2426. maw: {
  2427. height: math.unit(6 / 3.81416, "feet"),
  2428. name: "Maw",
  2429. image: {
  2430. source: "./media/characters/rai/maw.svg"
  2431. }
  2432. },
  2433. },
  2434. [
  2435. {
  2436. name: "Normal",
  2437. height: math.unit(11, "feet")
  2438. },
  2439. {
  2440. name: "Macro",
  2441. height: math.unit(302, "feet"),
  2442. default: true
  2443. },
  2444. ]
  2445. ))
  2446. characterMakers.push(() => makeCharacter(
  2447. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2448. {
  2449. frontDressed: {
  2450. height: math.unit(216, "feet"),
  2451. weight: math.unit(7000000, "lb"),
  2452. name: "Front (Dressed)",
  2453. image: {
  2454. source: "./media/characters/jazzy/front-dressed.svg",
  2455. extra: 2738 / 2651,
  2456. bottom: 41.8 / 2786
  2457. }
  2458. },
  2459. backDressed: {
  2460. height: math.unit(216, "feet"),
  2461. weight: math.unit(7000000, "lb"),
  2462. name: "Back (Dressed)",
  2463. image: {
  2464. source: "./media/characters/jazzy/back-dressed.svg",
  2465. extra: 2775 / 2673,
  2466. bottom: 36.8 / 2817
  2467. }
  2468. },
  2469. front: {
  2470. height: math.unit(216, "feet"),
  2471. weight: math.unit(7000000, "lb"),
  2472. name: "Front",
  2473. image: {
  2474. source: "./media/characters/jazzy/front.svg",
  2475. extra: 2738 / 2651,
  2476. bottom: 41.8 / 2786
  2477. }
  2478. },
  2479. back: {
  2480. height: math.unit(216, "feet"),
  2481. weight: math.unit(7000000, "lb"),
  2482. name: "Back",
  2483. image: {
  2484. source: "./media/characters/jazzy/back.svg",
  2485. extra: 2775 / 2673,
  2486. bottom: 36.8 / 2817
  2487. }
  2488. },
  2489. maw: {
  2490. height: math.unit(20, "feet"),
  2491. name: "Maw",
  2492. image: {
  2493. source: "./media/characters/jazzy/maw.svg"
  2494. }
  2495. },
  2496. paws: {
  2497. height: math.unit(27.5, "feet"),
  2498. name: "Paws",
  2499. image: {
  2500. source: "./media/characters/jazzy/paws.svg"
  2501. }
  2502. },
  2503. eye: {
  2504. height: math.unit(4.4, "feet"),
  2505. name: "Eye",
  2506. image: {
  2507. source: "./media/characters/jazzy/eye.svg"
  2508. }
  2509. },
  2510. droneOffense: {
  2511. height: math.unit(9.5, "inches"),
  2512. name: "Drone (Offense)",
  2513. image: {
  2514. source: "./media/characters/jazzy/drone-offense.svg"
  2515. }
  2516. },
  2517. droneRecon: {
  2518. height: math.unit(9.5, "inches"),
  2519. name: "Drone (Recon)",
  2520. image: {
  2521. source: "./media/characters/jazzy/drone-recon.svg"
  2522. }
  2523. },
  2524. droneDefense: {
  2525. height: math.unit(9.5, "inches"),
  2526. name: "Drone (Defense)",
  2527. image: {
  2528. source: "./media/characters/jazzy/drone-defense.svg"
  2529. }
  2530. },
  2531. },
  2532. [
  2533. {
  2534. name: "Macro",
  2535. height: math.unit(216, "feet"),
  2536. default: true
  2537. },
  2538. ]
  2539. ))
  2540. characterMakers.push(() => makeCharacter(
  2541. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2542. {
  2543. front: {
  2544. height: math.unit(9 + 6/12, "feet"),
  2545. weight: math.unit(700, "lb"),
  2546. name: "Front",
  2547. image: {
  2548. source: "./media/characters/flamm/front.svg",
  2549. extra: 1751/1632,
  2550. bottom: 46/1797
  2551. }
  2552. },
  2553. buff: {
  2554. height: math.unit(9 + 6/12, "feet"),
  2555. weight: math.unit(950, "lb"),
  2556. name: "Buff",
  2557. image: {
  2558. source: "./media/characters/flamm/buff.svg",
  2559. extra: 3018/2874,
  2560. bottom: 221/3239
  2561. }
  2562. },
  2563. },
  2564. [
  2565. {
  2566. name: "Normal",
  2567. height: math.unit(9.5, "feet")
  2568. },
  2569. {
  2570. name: "Macro",
  2571. height: math.unit(200, "feet"),
  2572. default: true
  2573. },
  2574. ]
  2575. ))
  2576. characterMakers.push(() => makeCharacter(
  2577. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2578. {
  2579. front: {
  2580. height: math.unit(5 + 3/12, "feet"),
  2581. weight: math.unit(60, "kg"),
  2582. name: "Front",
  2583. image: {
  2584. source: "./media/characters/zephiro/front.svg",
  2585. extra: 2309 / 2162,
  2586. bottom: 0.069
  2587. }
  2588. },
  2589. side: {
  2590. height: math.unit(5 + 3/12, "feet"),
  2591. weight: math.unit(60, "kg"),
  2592. name: "Side",
  2593. image: {
  2594. source: "./media/characters/zephiro/side.svg",
  2595. extra: 2403 / 2279,
  2596. bottom: 0.015
  2597. }
  2598. },
  2599. back: {
  2600. height: math.unit(5 + 3/12, "feet"),
  2601. weight: math.unit(60, "kg"),
  2602. name: "Back",
  2603. image: {
  2604. source: "./media/characters/zephiro/back.svg",
  2605. extra: 2373 / 2244,
  2606. bottom: 0.013
  2607. }
  2608. },
  2609. hand: {
  2610. height: math.unit(0.68, "feet"),
  2611. name: "Hand",
  2612. image: {
  2613. source: "./media/characters/zephiro/hand.svg"
  2614. }
  2615. },
  2616. paw: {
  2617. height: math.unit(1, "feet"),
  2618. name: "Paw",
  2619. image: {
  2620. source: "./media/characters/zephiro/paw.svg"
  2621. }
  2622. },
  2623. beans: {
  2624. height: math.unit(0.93, "feet"),
  2625. name: "Beans",
  2626. image: {
  2627. source: "./media/characters/zephiro/beans.svg"
  2628. }
  2629. },
  2630. },
  2631. [
  2632. {
  2633. name: "Micro",
  2634. height: math.unit(3, "inches")
  2635. },
  2636. {
  2637. name: "Normal",
  2638. height: math.unit(5 + 3 / 12, "feet"),
  2639. default: true
  2640. },
  2641. {
  2642. name: "Macro",
  2643. height: math.unit(118, "feet")
  2644. },
  2645. ]
  2646. ))
  2647. characterMakers.push(() => makeCharacter(
  2648. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2649. {
  2650. front: {
  2651. height: math.unit(5, "feet"),
  2652. weight: math.unit(90, "kg"),
  2653. name: "Front",
  2654. image: {
  2655. source: "./media/characters/fory/front.svg",
  2656. extra: 2862 / 2674,
  2657. bottom: 180 / 3043.8
  2658. }
  2659. },
  2660. back: {
  2661. height: math.unit(5, "feet"),
  2662. weight: math.unit(90, "kg"),
  2663. name: "Back",
  2664. image: {
  2665. source: "./media/characters/fory/back.svg",
  2666. extra: 2962 / 2791,
  2667. bottom: 106 / 3071.8
  2668. }
  2669. },
  2670. foot: {
  2671. height: math.unit(2.14, "feet"),
  2672. name: "Foot",
  2673. image: {
  2674. source: "./media/characters/fory/foot.svg"
  2675. }
  2676. },
  2677. },
  2678. [
  2679. {
  2680. name: "Normal",
  2681. height: math.unit(5, "feet")
  2682. },
  2683. {
  2684. name: "Macro",
  2685. height: math.unit(50, "feet"),
  2686. default: true
  2687. },
  2688. {
  2689. name: "Megamacro",
  2690. height: math.unit(10, "miles")
  2691. },
  2692. {
  2693. name: "Gigamacro",
  2694. height: math.unit(5, "earths")
  2695. },
  2696. ]
  2697. ))
  2698. characterMakers.push(() => makeCharacter(
  2699. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2700. {
  2701. front: {
  2702. height: math.unit(7, "feet"),
  2703. weight: math.unit(90, "kg"),
  2704. name: "Front",
  2705. image: {
  2706. source: "./media/characters/kurrikage/front.svg",
  2707. extra: 1,
  2708. bottom: 0.035
  2709. }
  2710. },
  2711. back: {
  2712. height: math.unit(7, "feet"),
  2713. weight: math.unit(90, "lb"),
  2714. name: "Back",
  2715. image: {
  2716. source: "./media/characters/kurrikage/back.svg"
  2717. }
  2718. },
  2719. paw: {
  2720. height: math.unit(1.5, "feet"),
  2721. name: "Paw",
  2722. image: {
  2723. source: "./media/characters/kurrikage/paw.svg"
  2724. }
  2725. },
  2726. staff: {
  2727. height: math.unit(6.7, "feet"),
  2728. name: "Staff",
  2729. image: {
  2730. source: "./media/characters/kurrikage/staff.svg"
  2731. }
  2732. },
  2733. peek: {
  2734. height: math.unit(1.05, "feet"),
  2735. name: "Peeking",
  2736. image: {
  2737. source: "./media/characters/kurrikage/peek.svg",
  2738. bottom: 0.08
  2739. }
  2740. },
  2741. },
  2742. [
  2743. {
  2744. name: "Normal",
  2745. height: math.unit(12, "feet"),
  2746. default: true
  2747. },
  2748. {
  2749. name: "Big",
  2750. height: math.unit(20, "feet")
  2751. },
  2752. {
  2753. name: "Macro",
  2754. height: math.unit(500, "feet")
  2755. },
  2756. {
  2757. name: "Megamacro",
  2758. height: math.unit(20, "miles")
  2759. },
  2760. ]
  2761. ))
  2762. characterMakers.push(() => makeCharacter(
  2763. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2764. {
  2765. front: {
  2766. height: math.unit(6, "feet"),
  2767. weight: math.unit(75, "kg"),
  2768. name: "Front",
  2769. image: {
  2770. source: "./media/characters/shingo/front.svg",
  2771. extra: 1900/1825,
  2772. bottom: 82/1982
  2773. }
  2774. },
  2775. side: {
  2776. height: math.unit(6, "feet"),
  2777. weight: math.unit(75, "kg"),
  2778. name: "Side",
  2779. image: {
  2780. source: "./media/characters/shingo/side.svg",
  2781. extra: 1930/1865,
  2782. bottom: 16/1946
  2783. }
  2784. },
  2785. back: {
  2786. height: math.unit(6, "feet"),
  2787. weight: math.unit(75, "kg"),
  2788. name: "Back",
  2789. image: {
  2790. source: "./media/characters/shingo/back.svg",
  2791. extra: 1922/1852,
  2792. bottom: 16/1938
  2793. }
  2794. },
  2795. frontDressed: {
  2796. height: math.unit(6, "feet"),
  2797. weight: math.unit(150, "lb"),
  2798. name: "Front-dressed",
  2799. image: {
  2800. source: "./media/characters/shingo/front-dressed.svg",
  2801. extra: 1900/1825,
  2802. bottom: 82/1982
  2803. }
  2804. },
  2805. paw: {
  2806. height: math.unit(1.29, "feet"),
  2807. name: "Paw",
  2808. image: {
  2809. source: "./media/characters/shingo/paw.svg"
  2810. }
  2811. },
  2812. hand: {
  2813. height: math.unit(1.07, "feet"),
  2814. name: "Hand",
  2815. image: {
  2816. source: "./media/characters/shingo/hand.svg"
  2817. }
  2818. },
  2819. frontAlt: {
  2820. height: math.unit(6, "feet"),
  2821. weight: math.unit(75, "kg"),
  2822. name: "Front (Alt)",
  2823. image: {
  2824. source: "./media/characters/shingo/front-alt.svg",
  2825. extra: 3511 / 3338,
  2826. bottom: 0.005
  2827. }
  2828. },
  2829. frontAlt2: {
  2830. height: math.unit(6, "feet"),
  2831. weight: math.unit(75, "kg"),
  2832. name: "Front (Alt 2)",
  2833. image: {
  2834. source: "./media/characters/shingo/front-alt-2.svg",
  2835. extra: 706/681,
  2836. bottom: 11/717
  2837. }
  2838. },
  2839. pawAlt: {
  2840. height: math.unit(1, "feet"),
  2841. name: "Paw (Alt)",
  2842. image: {
  2843. source: "./media/characters/shingo/paw-alt.svg"
  2844. }
  2845. },
  2846. },
  2847. [
  2848. {
  2849. name: "Micro",
  2850. height: math.unit(4, "inches")
  2851. },
  2852. {
  2853. name: "Normal",
  2854. height: math.unit(6, "feet"),
  2855. default: true
  2856. },
  2857. {
  2858. name: "Macro",
  2859. height: math.unit(108, "feet")
  2860. },
  2861. {
  2862. name: "Macro+",
  2863. height: math.unit(1500, "feet")
  2864. },
  2865. ]
  2866. ))
  2867. characterMakers.push(() => makeCharacter(
  2868. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2869. {
  2870. side: {
  2871. height: math.unit(6, "feet"),
  2872. weight: math.unit(75, "kg"),
  2873. name: "Side",
  2874. image: {
  2875. source: "./media/characters/aigey/side.svg"
  2876. }
  2877. },
  2878. },
  2879. [
  2880. {
  2881. name: "Macro",
  2882. height: math.unit(200, "feet"),
  2883. default: true
  2884. },
  2885. {
  2886. name: "Megamacro",
  2887. height: math.unit(100, "miles")
  2888. },
  2889. ]
  2890. )
  2891. )
  2892. characterMakers.push(() => makeCharacter(
  2893. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2894. {
  2895. front: {
  2896. height: math.unit(5 + 5 / 12, "feet"),
  2897. weight: math.unit(75, "kg"),
  2898. name: "Front",
  2899. image: {
  2900. source: "./media/characters/natasha/front.svg",
  2901. extra: 859 / 824,
  2902. bottom: 23 / 879.6
  2903. }
  2904. },
  2905. frontNsfw: {
  2906. height: math.unit(5 + 5 / 12, "feet"),
  2907. weight: math.unit(75, "kg"),
  2908. name: "Front (NSFW)",
  2909. image: {
  2910. source: "./media/characters/natasha/front-nsfw.svg",
  2911. extra: 859 / 824,
  2912. bottom: 23 / 879.6
  2913. }
  2914. },
  2915. frontErect: {
  2916. height: math.unit(5 + 5 / 12, "feet"),
  2917. weight: math.unit(75, "kg"),
  2918. name: "Front (Erect)",
  2919. image: {
  2920. source: "./media/characters/natasha/front-erect.svg",
  2921. extra: 859 / 824,
  2922. bottom: 23 / 879.6
  2923. }
  2924. },
  2925. back: {
  2926. height: math.unit(5 + 5 / 12, "feet"),
  2927. weight: math.unit(75, "kg"),
  2928. name: "Back",
  2929. image: {
  2930. source: "./media/characters/natasha/back.svg",
  2931. extra: 887.9 / 852.6,
  2932. bottom: 9.7 / 896.4
  2933. }
  2934. },
  2935. backAlt: {
  2936. height: math.unit(5 + 5 / 12, "feet"),
  2937. weight: math.unit(75, "kg"),
  2938. name: "Back (Alt)",
  2939. image: {
  2940. source: "./media/characters/natasha/back-alt.svg",
  2941. extra: 1236.7 / 1192,
  2942. bottom: 22.3 / 1258.2
  2943. }
  2944. },
  2945. dick: {
  2946. height: math.unit(1.772, "feet"),
  2947. name: "Dick",
  2948. image: {
  2949. source: "./media/characters/natasha/dick.svg"
  2950. }
  2951. },
  2952. paw: {
  2953. height: math.unit(0.250, "meters"),
  2954. name: "Paw",
  2955. image: {
  2956. source: "./media/characters/natasha/paw.svg"
  2957. }
  2958. },
  2959. },
  2960. [
  2961. {
  2962. name: "Normal",
  2963. height: math.unit(5 + 5 / 12, "feet")
  2964. },
  2965. {
  2966. name: "Large",
  2967. height: math.unit(12, "feet")
  2968. },
  2969. {
  2970. name: "Macro",
  2971. height: math.unit(100, "feet"),
  2972. default: true
  2973. },
  2974. {
  2975. name: "Macro+",
  2976. height: math.unit(260, "feet")
  2977. },
  2978. {
  2979. name: "Macro++",
  2980. height: math.unit(1, "mile")
  2981. },
  2982. ]
  2983. ))
  2984. characterMakers.push(() => makeCharacter(
  2985. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2986. {
  2987. front: {
  2988. height: math.unit(6, "feet"),
  2989. weight: math.unit(75, "kg"),
  2990. name: "Front",
  2991. image: {
  2992. source: "./media/characters/malik/front.svg"
  2993. }
  2994. },
  2995. side: {
  2996. height: math.unit(6, "feet"),
  2997. weight: math.unit(75, "kg"),
  2998. name: "Side",
  2999. image: {
  3000. source: "./media/characters/malik/side.svg",
  3001. extra: 1.1539
  3002. }
  3003. },
  3004. back: {
  3005. height: math.unit(6, "feet"),
  3006. weight: math.unit(75, "kg"),
  3007. name: "Back",
  3008. image: {
  3009. source: "./media/characters/malik/back.svg"
  3010. }
  3011. },
  3012. },
  3013. [
  3014. {
  3015. name: "Macro",
  3016. height: math.unit(156, "feet"),
  3017. default: true
  3018. },
  3019. {
  3020. name: "Macro+",
  3021. height: math.unit(1188, "feet")
  3022. },
  3023. ]
  3024. ))
  3025. characterMakers.push(() => makeCharacter(
  3026. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3027. {
  3028. front: {
  3029. height: math.unit(6, "feet"),
  3030. weight: math.unit(75, "kg"),
  3031. name: "Front",
  3032. image: {
  3033. source: "./media/characters/sefer/front.svg",
  3034. extra: 848 / 659,
  3035. bottom: 28.3 / 876.442
  3036. }
  3037. },
  3038. back: {
  3039. height: math.unit(6, "feet"),
  3040. weight: math.unit(75, "kg"),
  3041. name: "Back",
  3042. image: {
  3043. source: "./media/characters/sefer/back.svg",
  3044. extra: 864 / 695,
  3045. bottom: 10 / 871
  3046. }
  3047. },
  3048. frontDressed: {
  3049. height: math.unit(6, "feet"),
  3050. weight: math.unit(75, "kg"),
  3051. name: "Front (Dressed)",
  3052. image: {
  3053. source: "./media/characters/sefer/front-dressed.svg",
  3054. extra: 839 / 653,
  3055. bottom: 37.6 / 878
  3056. }
  3057. },
  3058. },
  3059. [
  3060. {
  3061. name: "Normal",
  3062. height: math.unit(6, "feet"),
  3063. default: true
  3064. },
  3065. ]
  3066. ))
  3067. characterMakers.push(() => makeCharacter(
  3068. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3069. {
  3070. body: {
  3071. height: math.unit(2.2428, "meter"),
  3072. weight: math.unit(124.738, "kg"),
  3073. name: "Body",
  3074. image: {
  3075. extra: 1225 / 1050,
  3076. source: "./media/characters/north/front.svg"
  3077. }
  3078. }
  3079. },
  3080. [
  3081. {
  3082. name: "Micro",
  3083. height: math.unit(4, "inches")
  3084. },
  3085. {
  3086. name: "Macro",
  3087. height: math.unit(63, "meters")
  3088. },
  3089. {
  3090. name: "Megamacro",
  3091. height: math.unit(101, "miles"),
  3092. default: true
  3093. }
  3094. ]
  3095. ))
  3096. characterMakers.push(() => makeCharacter(
  3097. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3098. {
  3099. angled: {
  3100. height: math.unit(4, "meter"),
  3101. weight: math.unit(150, "kg"),
  3102. name: "Angled",
  3103. image: {
  3104. source: "./media/characters/talan/angled-sfw.svg",
  3105. bottom: 29 / 3734
  3106. }
  3107. },
  3108. angledNsfw: {
  3109. height: math.unit(4, "meter"),
  3110. weight: math.unit(150, "kg"),
  3111. name: "Angled (NSFW)",
  3112. image: {
  3113. source: "./media/characters/talan/angled-nsfw.svg",
  3114. bottom: 29 / 3734
  3115. }
  3116. },
  3117. frontNsfw: {
  3118. height: math.unit(4, "meter"),
  3119. weight: math.unit(150, "kg"),
  3120. name: "Front (NSFW)",
  3121. image: {
  3122. source: "./media/characters/talan/front-nsfw.svg",
  3123. bottom: 29 / 3734
  3124. }
  3125. },
  3126. sideNsfw: {
  3127. height: math.unit(4, "meter"),
  3128. weight: math.unit(150, "kg"),
  3129. name: "Side (NSFW)",
  3130. image: {
  3131. source: "./media/characters/talan/side-nsfw.svg",
  3132. bottom: 29 / 3734
  3133. }
  3134. },
  3135. back: {
  3136. height: math.unit(4, "meter"),
  3137. weight: math.unit(150, "kg"),
  3138. name: "Back",
  3139. image: {
  3140. source: "./media/characters/talan/back.svg"
  3141. }
  3142. },
  3143. dickBottom: {
  3144. height: math.unit(0.621, "meter"),
  3145. name: "Dick (Bottom)",
  3146. image: {
  3147. source: "./media/characters/talan/dick-bottom.svg"
  3148. }
  3149. },
  3150. dickTop: {
  3151. height: math.unit(0.621, "meter"),
  3152. name: "Dick (Top)",
  3153. image: {
  3154. source: "./media/characters/talan/dick-top.svg"
  3155. }
  3156. },
  3157. dickSide: {
  3158. height: math.unit(0.305, "meter"),
  3159. name: "Dick (Side)",
  3160. image: {
  3161. source: "./media/characters/talan/dick-side.svg"
  3162. }
  3163. },
  3164. dickFront: {
  3165. height: math.unit(0.305, "meter"),
  3166. name: "Dick (Front)",
  3167. image: {
  3168. source: "./media/characters/talan/dick-front.svg"
  3169. }
  3170. },
  3171. },
  3172. [
  3173. {
  3174. name: "Normal",
  3175. height: math.unit(4, "meters")
  3176. },
  3177. {
  3178. name: "Macro",
  3179. height: math.unit(100, "meters")
  3180. },
  3181. {
  3182. name: "Megamacro",
  3183. height: math.unit(2, "miles"),
  3184. default: true
  3185. },
  3186. {
  3187. name: "Gigamacro",
  3188. height: math.unit(5000, "miles")
  3189. },
  3190. {
  3191. name: "Teramacro",
  3192. height: math.unit(100, "parsecs")
  3193. }
  3194. ]
  3195. ))
  3196. characterMakers.push(() => makeCharacter(
  3197. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3198. {
  3199. front: {
  3200. height: math.unit(2, "meter"),
  3201. weight: math.unit(90, "kg"),
  3202. name: "Front",
  3203. image: {
  3204. source: "./media/characters/gael'rathus/front.svg"
  3205. }
  3206. },
  3207. frontAlt: {
  3208. height: math.unit(2, "meter"),
  3209. weight: math.unit(90, "kg"),
  3210. name: "Front (alt)",
  3211. image: {
  3212. source: "./media/characters/gael'rathus/front-alt.svg"
  3213. }
  3214. },
  3215. frontAlt2: {
  3216. height: math.unit(2, "meter"),
  3217. weight: math.unit(90, "kg"),
  3218. name: "Front (alt 2)",
  3219. image: {
  3220. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3221. }
  3222. }
  3223. },
  3224. [
  3225. {
  3226. name: "Normal",
  3227. height: math.unit(9, "feet"),
  3228. default: true
  3229. },
  3230. {
  3231. name: "Large",
  3232. height: math.unit(25, "feet")
  3233. },
  3234. {
  3235. name: "Macro",
  3236. height: math.unit(0.25, "miles")
  3237. },
  3238. {
  3239. name: "Megamacro",
  3240. height: math.unit(10, "miles")
  3241. }
  3242. ]
  3243. ))
  3244. characterMakers.push(() => makeCharacter(
  3245. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3246. {
  3247. side: {
  3248. height: math.unit(2, "meter"),
  3249. weight: math.unit(140, "kg"),
  3250. name: "Side",
  3251. image: {
  3252. source: "./media/characters/sosha/side.svg",
  3253. bottom: 0.042
  3254. }
  3255. },
  3256. },
  3257. [
  3258. {
  3259. name: "Normal",
  3260. height: math.unit(12, "feet"),
  3261. default: true
  3262. }
  3263. ]
  3264. ))
  3265. characterMakers.push(() => makeCharacter(
  3266. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3267. {
  3268. side: {
  3269. height: math.unit(5 + 5 / 12, "feet"),
  3270. weight: math.unit(170, "kg"),
  3271. name: "Side",
  3272. image: {
  3273. source: "./media/characters/runnola/side.svg",
  3274. extra: 741 / 448,
  3275. bottom: 0.05
  3276. }
  3277. },
  3278. },
  3279. [
  3280. {
  3281. name: "Small",
  3282. height: math.unit(3, "feet")
  3283. },
  3284. {
  3285. name: "Normal",
  3286. height: math.unit(5 + 5 / 12, "feet"),
  3287. default: true
  3288. },
  3289. {
  3290. name: "Big",
  3291. height: math.unit(10, "feet")
  3292. },
  3293. ]
  3294. ))
  3295. characterMakers.push(() => makeCharacter(
  3296. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3297. {
  3298. front: {
  3299. height: math.unit(2, "meter"),
  3300. weight: math.unit(50, "kg"),
  3301. name: "Front",
  3302. image: {
  3303. source: "./media/characters/kurribird/front.svg",
  3304. bottom: 0.015
  3305. }
  3306. },
  3307. frontAlt: {
  3308. height: math.unit(1.5, "meter"),
  3309. weight: math.unit(50, "kg"),
  3310. name: "Front (Alt)",
  3311. image: {
  3312. source: "./media/characters/kurribird/front-alt.svg",
  3313. extra: 1.45
  3314. }
  3315. },
  3316. },
  3317. [
  3318. {
  3319. name: "Normal",
  3320. height: math.unit(7, "feet")
  3321. },
  3322. {
  3323. name: "Big",
  3324. height: math.unit(12, "feet"),
  3325. default: true
  3326. },
  3327. {
  3328. name: "Macro",
  3329. height: math.unit(1500, "feet")
  3330. },
  3331. {
  3332. name: "Megamacro",
  3333. height: math.unit(2, "miles")
  3334. }
  3335. ]
  3336. ))
  3337. characterMakers.push(() => makeCharacter(
  3338. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3339. {
  3340. front: {
  3341. height: math.unit(2, "meter"),
  3342. weight: math.unit(80, "kg"),
  3343. name: "Front",
  3344. image: {
  3345. source: "./media/characters/elbial/front.svg",
  3346. extra: 1643 / 1556,
  3347. bottom: 60.2 / 1696
  3348. }
  3349. },
  3350. side: {
  3351. height: math.unit(2, "meter"),
  3352. weight: math.unit(80, "kg"),
  3353. name: "Side",
  3354. image: {
  3355. source: "./media/characters/elbial/side.svg",
  3356. extra: 1630 / 1565,
  3357. bottom: 71.5 / 1697
  3358. }
  3359. },
  3360. back: {
  3361. height: math.unit(2, "meter"),
  3362. weight: math.unit(80, "kg"),
  3363. name: "Back",
  3364. image: {
  3365. source: "./media/characters/elbial/back.svg",
  3366. extra: 1668 / 1595,
  3367. bottom: 5.6 / 1672
  3368. }
  3369. },
  3370. frontDressed: {
  3371. height: math.unit(2, "meter"),
  3372. weight: math.unit(80, "kg"),
  3373. name: "Front (Dressed)",
  3374. image: {
  3375. source: "./media/characters/elbial/front-dressed.svg",
  3376. extra: 1653 / 1584,
  3377. bottom: 57 / 1708
  3378. }
  3379. },
  3380. genitals: {
  3381. height: math.unit(2 / 3.367, "meter"),
  3382. name: "Genitals",
  3383. image: {
  3384. source: "./media/characters/elbial/genitals.svg"
  3385. }
  3386. },
  3387. },
  3388. [
  3389. {
  3390. name: "Large",
  3391. height: math.unit(100, "feet")
  3392. },
  3393. {
  3394. name: "Macro",
  3395. height: math.unit(500, "feet"),
  3396. default: true
  3397. },
  3398. {
  3399. name: "Megamacro",
  3400. height: math.unit(10, "miles")
  3401. },
  3402. {
  3403. name: "Gigamacro",
  3404. height: math.unit(25000, "miles")
  3405. },
  3406. {
  3407. name: "Full-Size",
  3408. height: math.unit(8000000, "gigaparsecs")
  3409. }
  3410. ]
  3411. ))
  3412. characterMakers.push(() => makeCharacter(
  3413. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3414. {
  3415. front: {
  3416. height: math.unit(2, "meter"),
  3417. weight: math.unit(60, "kg"),
  3418. name: "Front",
  3419. image: {
  3420. source: "./media/characters/noah/front.svg"
  3421. }
  3422. },
  3423. talons: {
  3424. height: math.unit(0.315, "meter"),
  3425. name: "Talons",
  3426. image: {
  3427. source: "./media/characters/noah/talons.svg"
  3428. }
  3429. }
  3430. },
  3431. [
  3432. {
  3433. name: "Large",
  3434. height: math.unit(50, "feet")
  3435. },
  3436. {
  3437. name: "Macro",
  3438. height: math.unit(750, "feet"),
  3439. default: true
  3440. },
  3441. {
  3442. name: "Megamacro",
  3443. height: math.unit(50, "miles")
  3444. },
  3445. {
  3446. name: "Gigamacro",
  3447. height: math.unit(100000, "miles")
  3448. },
  3449. {
  3450. name: "Full-Size",
  3451. height: math.unit(3000000000, "miles")
  3452. }
  3453. ]
  3454. ))
  3455. characterMakers.push(() => makeCharacter(
  3456. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3457. {
  3458. front: {
  3459. height: math.unit(2, "meter"),
  3460. weight: math.unit(80, "kg"),
  3461. name: "Front",
  3462. image: {
  3463. source: "./media/characters/natalya/front.svg"
  3464. }
  3465. },
  3466. back: {
  3467. height: math.unit(2, "meter"),
  3468. weight: math.unit(80, "kg"),
  3469. name: "Back",
  3470. image: {
  3471. source: "./media/characters/natalya/back.svg"
  3472. }
  3473. }
  3474. },
  3475. [
  3476. {
  3477. name: "Normal",
  3478. height: math.unit(150, "feet"),
  3479. default: true
  3480. },
  3481. {
  3482. name: "Megamacro",
  3483. height: math.unit(5, "miles")
  3484. },
  3485. {
  3486. name: "Full-Size",
  3487. height: math.unit(600, "kiloparsecs")
  3488. }
  3489. ]
  3490. ))
  3491. characterMakers.push(() => makeCharacter(
  3492. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3493. {
  3494. front: {
  3495. height: math.unit(2, "meter"),
  3496. weight: math.unit(50, "kg"),
  3497. name: "Front",
  3498. image: {
  3499. source: "./media/characters/erestrebah/front.svg",
  3500. extra: 208 / 193,
  3501. bottom: 0.055
  3502. }
  3503. },
  3504. back: {
  3505. height: math.unit(2, "meter"),
  3506. weight: math.unit(50, "kg"),
  3507. name: "Back",
  3508. image: {
  3509. source: "./media/characters/erestrebah/back.svg",
  3510. extra: 1.3
  3511. }
  3512. }
  3513. },
  3514. [
  3515. {
  3516. name: "Normal",
  3517. height: math.unit(10, "feet")
  3518. },
  3519. {
  3520. name: "Large",
  3521. height: math.unit(50, "feet"),
  3522. default: true
  3523. },
  3524. {
  3525. name: "Macro",
  3526. height: math.unit(300, "feet")
  3527. },
  3528. {
  3529. name: "Macro+",
  3530. height: math.unit(750, "feet")
  3531. },
  3532. {
  3533. name: "Megamacro",
  3534. height: math.unit(3, "miles")
  3535. }
  3536. ]
  3537. ))
  3538. characterMakers.push(() => makeCharacter(
  3539. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3540. {
  3541. front: {
  3542. height: math.unit(2, "meter"),
  3543. weight: math.unit(80, "kg"),
  3544. name: "Front",
  3545. image: {
  3546. source: "./media/characters/jennifer/front.svg",
  3547. bottom: 0.11,
  3548. extra: 1.16
  3549. }
  3550. },
  3551. frontAlt: {
  3552. height: math.unit(2, "meter"),
  3553. weight: math.unit(80, "kg"),
  3554. name: "Front (Alt)",
  3555. image: {
  3556. source: "./media/characters/jennifer/front-alt.svg"
  3557. }
  3558. }
  3559. },
  3560. [
  3561. {
  3562. name: "Canon Height",
  3563. height: math.unit(120, "feet"),
  3564. default: true
  3565. },
  3566. {
  3567. name: "Macro+",
  3568. height: math.unit(300, "feet")
  3569. },
  3570. {
  3571. name: "Megamacro",
  3572. height: math.unit(20000, "feet")
  3573. }
  3574. ]
  3575. ))
  3576. characterMakers.push(() => makeCharacter(
  3577. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3578. {
  3579. front: {
  3580. height: math.unit(2, "meter"),
  3581. weight: math.unit(50, "kg"),
  3582. name: "Front",
  3583. image: {
  3584. source: "./media/characters/kalista/front.svg",
  3585. extra: 1947 / 1700,
  3586. bottom: 76.6 / 1412.98
  3587. }
  3588. },
  3589. back: {
  3590. height: math.unit(2, "meter"),
  3591. weight: math.unit(50, "kg"),
  3592. name: "Back",
  3593. image: {
  3594. source: "./media/characters/kalista/back.svg",
  3595. extra: 1366 / 1156,
  3596. bottom: 33.9 / 1362.78
  3597. }
  3598. }
  3599. },
  3600. [
  3601. {
  3602. name: "Uncomfortably Small",
  3603. height: math.unit(10, "feet")
  3604. },
  3605. {
  3606. name: "Small",
  3607. height: math.unit(30, "feet")
  3608. },
  3609. {
  3610. name: "Macro",
  3611. height: math.unit(100, "feet"),
  3612. default: true
  3613. },
  3614. {
  3615. name: "Macro+",
  3616. height: math.unit(2000, "feet")
  3617. },
  3618. {
  3619. name: "True Form",
  3620. height: math.unit(8924, "miles")
  3621. }
  3622. ]
  3623. ))
  3624. characterMakers.push(() => makeCharacter(
  3625. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3626. {
  3627. front: {
  3628. height: math.unit(2, "meter"),
  3629. weight: math.unit(120, "kg"),
  3630. name: "Front",
  3631. image: {
  3632. source: "./media/characters/ggv/front.svg"
  3633. }
  3634. },
  3635. side: {
  3636. height: math.unit(2, "meter"),
  3637. weight: math.unit(120, "kg"),
  3638. name: "Side",
  3639. image: {
  3640. source: "./media/characters/ggv/side.svg"
  3641. }
  3642. }
  3643. },
  3644. [
  3645. {
  3646. name: "Extremely Puny",
  3647. height: math.unit(9 + 5 / 12, "feet")
  3648. },
  3649. {
  3650. name: "Horribly Small",
  3651. height: math.unit(47.7, "miles"),
  3652. default: true
  3653. },
  3654. {
  3655. name: "Reasonably Sized",
  3656. height: math.unit(25000, "parsecs")
  3657. },
  3658. {
  3659. name: "Slightly Uncompressed",
  3660. height: math.unit(7.77e31, "parsecs")
  3661. },
  3662. {
  3663. name: "Omniversal",
  3664. height: math.unit(1e300, "meters")
  3665. },
  3666. ]
  3667. ))
  3668. characterMakers.push(() => makeCharacter(
  3669. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3670. {
  3671. front: {
  3672. height: math.unit(2, "meter"),
  3673. weight: math.unit(75, "lb"),
  3674. name: "Front",
  3675. image: {
  3676. source: "./media/characters/napalm/front.svg"
  3677. }
  3678. },
  3679. back: {
  3680. height: math.unit(2, "meter"),
  3681. weight: math.unit(75, "lb"),
  3682. name: "Back",
  3683. image: {
  3684. source: "./media/characters/napalm/back.svg"
  3685. }
  3686. }
  3687. },
  3688. [
  3689. {
  3690. name: "Standard",
  3691. height: math.unit(55, "feet"),
  3692. default: true
  3693. }
  3694. ]
  3695. ))
  3696. characterMakers.push(() => makeCharacter(
  3697. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3698. {
  3699. front: {
  3700. height: math.unit(7 + 5 / 6, "feet"),
  3701. weight: math.unit(325, "lb"),
  3702. name: "Front",
  3703. image: {
  3704. source: "./media/characters/asana/front.svg",
  3705. extra: 1133 / 1060,
  3706. bottom: 15.2 / 1148.6
  3707. }
  3708. },
  3709. back: {
  3710. height: math.unit(7 + 5 / 6, "feet"),
  3711. weight: math.unit(325, "lb"),
  3712. name: "Back",
  3713. image: {
  3714. source: "./media/characters/asana/back.svg",
  3715. extra: 1114 / 1043,
  3716. bottom: 5 / 1120
  3717. }
  3718. },
  3719. dressedDark: {
  3720. height: math.unit(7 + 5 / 6, "feet"),
  3721. weight: math.unit(325, "lb"),
  3722. name: "Dressed (Dark)",
  3723. image: {
  3724. source: "./media/characters/asana/dressed-dark.svg",
  3725. extra: 1133 / 1060,
  3726. bottom: 15.2 / 1148.6
  3727. }
  3728. },
  3729. dressedLight: {
  3730. height: math.unit(7 + 5 / 6, "feet"),
  3731. weight: math.unit(325, "lb"),
  3732. name: "Dressed (Light)",
  3733. image: {
  3734. source: "./media/characters/asana/dressed-light.svg",
  3735. extra: 1133 / 1060,
  3736. bottom: 15.2 / 1148.6
  3737. }
  3738. },
  3739. },
  3740. [
  3741. {
  3742. name: "Standard",
  3743. height: math.unit(7 + 5 / 6, "feet"),
  3744. default: true
  3745. },
  3746. {
  3747. name: "Large",
  3748. height: math.unit(10, "meters")
  3749. },
  3750. {
  3751. name: "Macro",
  3752. height: math.unit(2500, "meters")
  3753. },
  3754. {
  3755. name: "Megamacro",
  3756. height: math.unit(5e6, "meters")
  3757. },
  3758. {
  3759. name: "Examacro",
  3760. height: math.unit(5e12, "lightyears")
  3761. },
  3762. {
  3763. name: "Max Size",
  3764. height: math.unit(1e31, "lightyears")
  3765. }
  3766. ]
  3767. ))
  3768. characterMakers.push(() => makeCharacter(
  3769. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3770. {
  3771. front: {
  3772. height: math.unit(2, "meter"),
  3773. weight: math.unit(60, "kg"),
  3774. name: "Front",
  3775. image: {
  3776. source: "./media/characters/ebony/front.svg",
  3777. bottom: 0.03,
  3778. extra: 1045 / 810 + 0.03
  3779. }
  3780. },
  3781. side: {
  3782. height: math.unit(2, "meter"),
  3783. weight: math.unit(60, "kg"),
  3784. name: "Side",
  3785. image: {
  3786. source: "./media/characters/ebony/side.svg",
  3787. bottom: 0.03,
  3788. extra: 1045 / 810 + 0.03
  3789. }
  3790. },
  3791. back: {
  3792. height: math.unit(2, "meter"),
  3793. weight: math.unit(60, "kg"),
  3794. name: "Back",
  3795. image: {
  3796. source: "./media/characters/ebony/back.svg",
  3797. bottom: 0.01,
  3798. extra: 1045 / 810 + 0.01
  3799. }
  3800. },
  3801. },
  3802. [
  3803. // TODO check why I did this lol
  3804. {
  3805. name: "Standard",
  3806. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3807. default: true
  3808. },
  3809. {
  3810. name: "Macro",
  3811. height: math.unit(200, "feet")
  3812. },
  3813. {
  3814. name: "Gigamacro",
  3815. height: math.unit(13000, "km")
  3816. }
  3817. ]
  3818. ))
  3819. characterMakers.push(() => makeCharacter(
  3820. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3821. {
  3822. front: {
  3823. height: math.unit(6, "feet"),
  3824. weight: math.unit(175, "lb"),
  3825. name: "Front",
  3826. image: {
  3827. source: "./media/characters/mountain/front.svg",
  3828. extra: 972 / 955,
  3829. bottom: 64 / 1036.6
  3830. }
  3831. },
  3832. back: {
  3833. height: math.unit(6, "feet"),
  3834. weight: math.unit(175, "lb"),
  3835. name: "Back",
  3836. image: {
  3837. source: "./media/characters/mountain/back.svg",
  3838. extra: 970 / 950,
  3839. bottom: 28.25 / 999
  3840. }
  3841. },
  3842. },
  3843. [
  3844. {
  3845. name: "Large",
  3846. height: math.unit(20, "meters")
  3847. },
  3848. {
  3849. name: "Macro",
  3850. height: math.unit(300, "meters")
  3851. },
  3852. {
  3853. name: "Gigamacro",
  3854. height: math.unit(10000, "km"),
  3855. default: true
  3856. },
  3857. {
  3858. name: "Examacro",
  3859. height: math.unit(10e9, "lightyears")
  3860. }
  3861. ]
  3862. ))
  3863. characterMakers.push(() => makeCharacter(
  3864. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3865. {
  3866. front: {
  3867. height: math.unit(8, "feet"),
  3868. weight: math.unit(500, "lb"),
  3869. name: "Front",
  3870. image: {
  3871. source: "./media/characters/rick/front.svg"
  3872. }
  3873. }
  3874. },
  3875. [
  3876. {
  3877. name: "Normal",
  3878. height: math.unit(8, "feet"),
  3879. default: true
  3880. },
  3881. {
  3882. name: "Macro",
  3883. height: math.unit(5, "km")
  3884. }
  3885. ]
  3886. ))
  3887. characterMakers.push(() => makeCharacter(
  3888. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3889. {
  3890. front: {
  3891. height: math.unit(8, "feet"),
  3892. weight: math.unit(120, "lb"),
  3893. name: "Front",
  3894. image: {
  3895. source: "./media/characters/ona/front.svg"
  3896. }
  3897. },
  3898. frontAlt: {
  3899. height: math.unit(8, "feet"),
  3900. weight: math.unit(120, "lb"),
  3901. name: "Front (Alt)",
  3902. image: {
  3903. source: "./media/characters/ona/front-alt.svg"
  3904. }
  3905. },
  3906. back: {
  3907. height: math.unit(8, "feet"),
  3908. weight: math.unit(120, "lb"),
  3909. name: "Back",
  3910. image: {
  3911. source: "./media/characters/ona/back.svg"
  3912. }
  3913. },
  3914. foot: {
  3915. height: math.unit(1.1, "feet"),
  3916. name: "Foot",
  3917. image: {
  3918. source: "./media/characters/ona/foot.svg"
  3919. }
  3920. }
  3921. },
  3922. [
  3923. {
  3924. name: "Megamacro",
  3925. height: math.unit(70, "km"),
  3926. default: true
  3927. },
  3928. {
  3929. name: "Gigamacro",
  3930. height: math.unit(681818, "miles")
  3931. },
  3932. {
  3933. name: "Examacro",
  3934. height: math.unit(3800000, "lightyears")
  3935. },
  3936. ]
  3937. ))
  3938. characterMakers.push(() => makeCharacter(
  3939. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3940. {
  3941. front: {
  3942. height: math.unit(12, "feet"),
  3943. weight: math.unit(3000, "lb"),
  3944. name: "Front",
  3945. image: {
  3946. source: "./media/characters/mech/front.svg",
  3947. extra: 2900 / 2770,
  3948. bottom: 110 / 3010
  3949. }
  3950. },
  3951. back: {
  3952. height: math.unit(12, "feet"),
  3953. weight: math.unit(3000, "lb"),
  3954. name: "Back",
  3955. image: {
  3956. source: "./media/characters/mech/back.svg",
  3957. extra: 3011 / 2890,
  3958. bottom: 94 / 3105
  3959. }
  3960. },
  3961. maw: {
  3962. height: math.unit(3.07, "feet"),
  3963. name: "Maw",
  3964. image: {
  3965. source: "./media/characters/mech/maw.svg"
  3966. }
  3967. },
  3968. head: {
  3969. height: math.unit(2.82, "feet"),
  3970. name: "Head",
  3971. image: {
  3972. source: "./media/characters/mech/head.svg"
  3973. }
  3974. },
  3975. dick: {
  3976. height: math.unit(1.43, "feet"),
  3977. name: "Dick",
  3978. image: {
  3979. source: "./media/characters/mech/dick.svg"
  3980. }
  3981. },
  3982. },
  3983. [
  3984. {
  3985. name: "Normal",
  3986. height: math.unit(12, "feet")
  3987. },
  3988. {
  3989. name: "Macro",
  3990. height: math.unit(300, "feet"),
  3991. default: true
  3992. },
  3993. {
  3994. name: "Macro+",
  3995. height: math.unit(1500, "feet")
  3996. },
  3997. ]
  3998. ))
  3999. characterMakers.push(() => makeCharacter(
  4000. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4001. {
  4002. front: {
  4003. height: math.unit(1.3, "meter"),
  4004. weight: math.unit(30, "kg"),
  4005. name: "Front",
  4006. image: {
  4007. source: "./media/characters/gregory/front.svg",
  4008. }
  4009. }
  4010. },
  4011. [
  4012. {
  4013. name: "Normal",
  4014. height: math.unit(1.3, "meter"),
  4015. default: true
  4016. },
  4017. {
  4018. name: "Macro",
  4019. height: math.unit(20, "meter")
  4020. }
  4021. ]
  4022. ))
  4023. characterMakers.push(() => makeCharacter(
  4024. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4025. {
  4026. front: {
  4027. height: math.unit(2.8, "meter"),
  4028. weight: math.unit(200, "kg"),
  4029. name: "Front",
  4030. image: {
  4031. source: "./media/characters/elory/front.svg",
  4032. }
  4033. }
  4034. },
  4035. [
  4036. {
  4037. name: "Normal",
  4038. height: math.unit(2.8, "meter"),
  4039. default: true
  4040. },
  4041. {
  4042. name: "Macro",
  4043. height: math.unit(38, "meter")
  4044. }
  4045. ]
  4046. ))
  4047. characterMakers.push(() => makeCharacter(
  4048. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4049. {
  4050. front: {
  4051. height: math.unit(470, "feet"),
  4052. weight: math.unit(924, "tons"),
  4053. name: "Front",
  4054. image: {
  4055. source: "./media/characters/angelpatamon/front.svg",
  4056. }
  4057. }
  4058. },
  4059. [
  4060. {
  4061. name: "Normal",
  4062. height: math.unit(470, "feet"),
  4063. default: true
  4064. },
  4065. {
  4066. name: "Deity Size I",
  4067. height: math.unit(28651.2, "km")
  4068. },
  4069. {
  4070. name: "Deity Size II",
  4071. height: math.unit(171907.2, "km")
  4072. }
  4073. ]
  4074. ))
  4075. characterMakers.push(() => makeCharacter(
  4076. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4077. {
  4078. side: {
  4079. height: math.unit(7.2, "meter"),
  4080. weight: math.unit(8.2, "tons"),
  4081. name: "Side",
  4082. image: {
  4083. source: "./media/characters/cryae/side.svg",
  4084. extra: 3500 / 1500
  4085. }
  4086. }
  4087. },
  4088. [
  4089. {
  4090. name: "Normal",
  4091. height: math.unit(7.2, "meter"),
  4092. default: true
  4093. }
  4094. ]
  4095. ))
  4096. characterMakers.push(() => makeCharacter(
  4097. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4098. {
  4099. front: {
  4100. height: math.unit(6, "feet"),
  4101. weight: math.unit(175, "lb"),
  4102. name: "Front",
  4103. image: {
  4104. source: "./media/characters/xera/front.svg",
  4105. extra: 2377 / 1972,
  4106. bottom: 75.5 / 2452
  4107. }
  4108. },
  4109. side: {
  4110. height: math.unit(6, "feet"),
  4111. weight: math.unit(175, "lb"),
  4112. name: "Side",
  4113. image: {
  4114. source: "./media/characters/xera/side.svg",
  4115. extra: 2345 / 2019,
  4116. bottom: 39.7 / 2384
  4117. }
  4118. },
  4119. back: {
  4120. height: math.unit(6, "feet"),
  4121. weight: math.unit(175, "lb"),
  4122. name: "Back",
  4123. image: {
  4124. source: "./media/characters/xera/back.svg",
  4125. extra: 2095 / 1984,
  4126. bottom: 67 / 2166
  4127. }
  4128. },
  4129. },
  4130. [
  4131. {
  4132. name: "Small",
  4133. height: math.unit(10, "feet")
  4134. },
  4135. {
  4136. name: "Macro",
  4137. height: math.unit(500, "meters"),
  4138. default: true
  4139. },
  4140. {
  4141. name: "Macro+",
  4142. height: math.unit(10, "km")
  4143. },
  4144. {
  4145. name: "Gigamacro",
  4146. height: math.unit(25000, "km")
  4147. },
  4148. {
  4149. name: "Teramacro",
  4150. height: math.unit(3e6, "km")
  4151. }
  4152. ]
  4153. ))
  4154. characterMakers.push(() => makeCharacter(
  4155. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4156. {
  4157. front: {
  4158. height: math.unit(6, "feet"),
  4159. weight: math.unit(175, "lb"),
  4160. name: "Front",
  4161. image: {
  4162. source: "./media/characters/nebula/front.svg",
  4163. extra: 2566 / 2362,
  4164. bottom: 81 / 2644
  4165. }
  4166. }
  4167. },
  4168. [
  4169. {
  4170. name: "Small",
  4171. height: math.unit(4.5, "meters")
  4172. },
  4173. {
  4174. name: "Macro",
  4175. height: math.unit(1500, "meters"),
  4176. default: true
  4177. },
  4178. {
  4179. name: "Megamacro",
  4180. height: math.unit(150, "km")
  4181. },
  4182. {
  4183. name: "Gigamacro",
  4184. height: math.unit(27000, "km")
  4185. }
  4186. ]
  4187. ))
  4188. characterMakers.push(() => makeCharacter(
  4189. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4190. {
  4191. front: {
  4192. height: math.unit(6, "feet"),
  4193. weight: math.unit(225, "lb"),
  4194. name: "Front",
  4195. image: {
  4196. source: "./media/characters/abysgar/front.svg"
  4197. }
  4198. }
  4199. },
  4200. [
  4201. {
  4202. name: "Small",
  4203. height: math.unit(4.5, "meters")
  4204. },
  4205. {
  4206. name: "Macro",
  4207. height: math.unit(1250, "meters"),
  4208. default: true
  4209. },
  4210. {
  4211. name: "Megamacro",
  4212. height: math.unit(125, "km")
  4213. },
  4214. {
  4215. name: "Gigamacro",
  4216. height: math.unit(26000, "km")
  4217. }
  4218. ]
  4219. ))
  4220. characterMakers.push(() => makeCharacter(
  4221. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4222. {
  4223. front: {
  4224. height: math.unit(6, "feet"),
  4225. weight: math.unit(180, "lb"),
  4226. name: "Front",
  4227. image: {
  4228. source: "./media/characters/yakuz/front.svg"
  4229. }
  4230. }
  4231. },
  4232. [
  4233. {
  4234. name: "Small",
  4235. height: math.unit(5, "meters")
  4236. },
  4237. {
  4238. name: "Macro",
  4239. height: math.unit(1500, "meters"),
  4240. default: true
  4241. },
  4242. {
  4243. name: "Megamacro",
  4244. height: math.unit(200, "km")
  4245. },
  4246. {
  4247. name: "Gigamacro",
  4248. height: math.unit(100000, "km")
  4249. }
  4250. ]
  4251. ))
  4252. characterMakers.push(() => makeCharacter(
  4253. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4254. {
  4255. front: {
  4256. height: math.unit(6, "feet"),
  4257. weight: math.unit(175, "lb"),
  4258. name: "Front",
  4259. image: {
  4260. source: "./media/characters/mirova/front.svg",
  4261. extra: 3334 / 3071,
  4262. bottom: 42 / 3375.6
  4263. }
  4264. }
  4265. },
  4266. [
  4267. {
  4268. name: "Small",
  4269. height: math.unit(5, "meters")
  4270. },
  4271. {
  4272. name: "Macro",
  4273. height: math.unit(900, "meters"),
  4274. default: true
  4275. },
  4276. {
  4277. name: "Megamacro",
  4278. height: math.unit(135, "km")
  4279. },
  4280. {
  4281. name: "Gigamacro",
  4282. height: math.unit(20000, "km")
  4283. }
  4284. ]
  4285. ))
  4286. characterMakers.push(() => makeCharacter(
  4287. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4288. {
  4289. side: {
  4290. height: math.unit(28.35, "feet"),
  4291. weight: math.unit(99.75, "tons"),
  4292. name: "Side",
  4293. image: {
  4294. source: "./media/characters/asana-mech/side.svg",
  4295. extra: 923 / 699,
  4296. bottom: 50 / 975
  4297. }
  4298. },
  4299. chaingun: {
  4300. height: math.unit(7, "feet"),
  4301. weight: math.unit(2400, "lb"),
  4302. name: "Chaingun",
  4303. image: {
  4304. source: "./media/characters/asana-mech/chaingun.svg"
  4305. }
  4306. },
  4307. laser: {
  4308. height: math.unit(7.12, "feet"),
  4309. weight: math.unit(2000, "lb"),
  4310. name: "Laser",
  4311. image: {
  4312. source: "./media/characters/asana-mech/laser.svg"
  4313. }
  4314. },
  4315. },
  4316. [
  4317. {
  4318. name: "Normal",
  4319. height: math.unit(28.35, "feet"),
  4320. default: true
  4321. },
  4322. {
  4323. name: "Macro",
  4324. height: math.unit(2500, "feet")
  4325. },
  4326. {
  4327. name: "Megamacro",
  4328. height: math.unit(25, "miles")
  4329. },
  4330. {
  4331. name: "Examacro",
  4332. height: math.unit(6e8, "lightyears")
  4333. },
  4334. ]
  4335. ))
  4336. characterMakers.push(() => makeCharacter(
  4337. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4338. {
  4339. front: {
  4340. height: math.unit(5, "meters"),
  4341. weight: math.unit(1000, "kg"),
  4342. name: "Front",
  4343. image: {
  4344. source: "./media/characters/asche/front.svg",
  4345. extra: 1258 / 1190,
  4346. bottom: 47 / 1305
  4347. }
  4348. },
  4349. frontUnderwear: {
  4350. height: math.unit(5, "meters"),
  4351. weight: math.unit(1000, "kg"),
  4352. name: "Front (Underwear)",
  4353. image: {
  4354. source: "./media/characters/asche/front-underwear.svg",
  4355. extra: 1258 / 1190,
  4356. bottom: 47 / 1305
  4357. }
  4358. },
  4359. frontDressed: {
  4360. height: math.unit(5, "meters"),
  4361. weight: math.unit(1000, "kg"),
  4362. name: "Front (Dressed)",
  4363. image: {
  4364. source: "./media/characters/asche/front-dressed.svg",
  4365. extra: 1258 / 1190,
  4366. bottom: 47 / 1305
  4367. }
  4368. },
  4369. frontArmor: {
  4370. height: math.unit(5, "meters"),
  4371. weight: math.unit(1000, "kg"),
  4372. name: "Front (Armored)",
  4373. image: {
  4374. source: "./media/characters/asche/front-armored.svg",
  4375. extra: 1374 / 1308,
  4376. bottom: 23 / 1397
  4377. }
  4378. },
  4379. mp724: {
  4380. height: math.unit(0.96, "meters"),
  4381. weight: math.unit(38, "kg"),
  4382. name: "H&K MP724",
  4383. image: {
  4384. source: "./media/characters/asche/h&k-mp724.svg"
  4385. }
  4386. },
  4387. side: {
  4388. height: math.unit(5, "meters"),
  4389. weight: math.unit(1000, "kg"),
  4390. name: "Side",
  4391. image: {
  4392. source: "./media/characters/asche/side.svg",
  4393. extra: 1717 / 1609,
  4394. bottom: 0.005
  4395. }
  4396. },
  4397. back: {
  4398. height: math.unit(5, "meters"),
  4399. weight: math.unit(1000, "kg"),
  4400. name: "Back",
  4401. image: {
  4402. source: "./media/characters/asche/back.svg",
  4403. extra: 1570 / 1501
  4404. }
  4405. },
  4406. },
  4407. [
  4408. {
  4409. name: "DEFCON 5",
  4410. height: math.unit(5, "meters")
  4411. },
  4412. {
  4413. name: "DEFCON 4",
  4414. height: math.unit(500, "meters"),
  4415. default: true
  4416. },
  4417. {
  4418. name: "DEFCON 3",
  4419. height: math.unit(5, "km")
  4420. },
  4421. {
  4422. name: "DEFCON 2",
  4423. height: math.unit(500, "km")
  4424. },
  4425. {
  4426. name: "DEFCON 1",
  4427. height: math.unit(500000, "km")
  4428. },
  4429. {
  4430. name: "DEFCON 0",
  4431. height: math.unit(3, "gigaparsecs")
  4432. },
  4433. ]
  4434. ))
  4435. characterMakers.push(() => makeCharacter(
  4436. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4437. {
  4438. front: {
  4439. height: math.unit(2, "meters"),
  4440. weight: math.unit(76, "kg"),
  4441. name: "Front",
  4442. image: {
  4443. source: "./media/characters/gale/front.svg"
  4444. }
  4445. },
  4446. frontAlt1: {
  4447. height: math.unit(2, "meters"),
  4448. weight: math.unit(76, "kg"),
  4449. name: "Front (Alt 1)",
  4450. image: {
  4451. source: "./media/characters/gale/front-alt-1.svg"
  4452. }
  4453. },
  4454. frontAlt2: {
  4455. height: math.unit(2, "meters"),
  4456. weight: math.unit(76, "kg"),
  4457. name: "Front (Alt 2)",
  4458. image: {
  4459. source: "./media/characters/gale/front-alt-2.svg"
  4460. }
  4461. },
  4462. },
  4463. [
  4464. {
  4465. name: "Normal",
  4466. height: math.unit(7, "feet")
  4467. },
  4468. {
  4469. name: "Macro",
  4470. height: math.unit(150, "feet"),
  4471. default: true
  4472. },
  4473. {
  4474. name: "Macro+",
  4475. height: math.unit(300, "feet")
  4476. },
  4477. ]
  4478. ))
  4479. characterMakers.push(() => makeCharacter(
  4480. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4481. {
  4482. front: {
  4483. height: math.unit(2, "meters"),
  4484. weight: math.unit(76, "kg"),
  4485. name: "Front",
  4486. image: {
  4487. source: "./media/characters/draylen/front.svg"
  4488. }
  4489. }
  4490. },
  4491. [
  4492. {
  4493. name: "Macro",
  4494. height: math.unit(150, "feet"),
  4495. default: true
  4496. }
  4497. ]
  4498. ))
  4499. characterMakers.push(() => makeCharacter(
  4500. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4501. {
  4502. front: {
  4503. height: math.unit(7 + 9 / 12, "feet"),
  4504. weight: math.unit(379, "lbs"),
  4505. name: "Front",
  4506. image: {
  4507. source: "./media/characters/chez/front.svg"
  4508. }
  4509. },
  4510. side: {
  4511. height: math.unit(7 + 9 / 12, "feet"),
  4512. weight: math.unit(379, "lbs"),
  4513. name: "Side",
  4514. image: {
  4515. source: "./media/characters/chez/side.svg"
  4516. }
  4517. }
  4518. },
  4519. [
  4520. {
  4521. name: "Normal",
  4522. height: math.unit(7 + 9 / 12, "feet"),
  4523. default: true
  4524. },
  4525. {
  4526. name: "God King",
  4527. height: math.unit(9750000, "meters")
  4528. }
  4529. ]
  4530. ))
  4531. characterMakers.push(() => makeCharacter(
  4532. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4533. {
  4534. front: {
  4535. height: math.unit(6, "feet"),
  4536. weight: math.unit(275, "lbs"),
  4537. name: "Front",
  4538. image: {
  4539. source: "./media/characters/kaylum/front.svg",
  4540. bottom: 0.01,
  4541. extra: 1166 / 1031
  4542. }
  4543. },
  4544. frontWingless: {
  4545. height: math.unit(6, "feet"),
  4546. weight: math.unit(275, "lbs"),
  4547. name: "Front (Wingless)",
  4548. image: {
  4549. source: "./media/characters/kaylum/front-wingless.svg",
  4550. bottom: 0.01,
  4551. extra: 1117 / 1031
  4552. }
  4553. }
  4554. },
  4555. [
  4556. {
  4557. name: "Normal",
  4558. height: math.unit(3.05, "meters")
  4559. },
  4560. {
  4561. name: "Master",
  4562. height: math.unit(5.5, "meters")
  4563. },
  4564. {
  4565. name: "Rampage",
  4566. height: math.unit(19, "meters")
  4567. },
  4568. {
  4569. name: "Macro Lite",
  4570. height: math.unit(37, "meters")
  4571. },
  4572. {
  4573. name: "Hyper Predator",
  4574. height: math.unit(61, "meters")
  4575. },
  4576. {
  4577. name: "Macro",
  4578. height: math.unit(138, "meters"),
  4579. default: true
  4580. }
  4581. ]
  4582. ))
  4583. characterMakers.push(() => makeCharacter(
  4584. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4585. {
  4586. front: {
  4587. height: math.unit(6, "feet"),
  4588. weight: math.unit(150, "lbs"),
  4589. name: "Front",
  4590. image: {
  4591. source: "./media/characters/geta/front.svg"
  4592. }
  4593. }
  4594. },
  4595. [
  4596. {
  4597. name: "Micro",
  4598. height: math.unit(3, "inches"),
  4599. default: true
  4600. },
  4601. {
  4602. name: "Normal",
  4603. height: math.unit(5 + 5 / 12, "feet")
  4604. }
  4605. ]
  4606. ))
  4607. characterMakers.push(() => makeCharacter(
  4608. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4609. {
  4610. front: {
  4611. height: math.unit(6, "feet"),
  4612. weight: math.unit(300, "lbs"),
  4613. name: "Front",
  4614. image: {
  4615. source: "./media/characters/tyrnn/front.svg"
  4616. }
  4617. }
  4618. },
  4619. [
  4620. {
  4621. name: "Main Height",
  4622. height: math.unit(355, "feet"),
  4623. default: true
  4624. },
  4625. {
  4626. name: "Fave. Height",
  4627. height: math.unit(2400, "feet")
  4628. }
  4629. ]
  4630. ))
  4631. characterMakers.push(() => makeCharacter(
  4632. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4633. {
  4634. front: {
  4635. height: math.unit(6, "feet"),
  4636. weight: math.unit(300, "lbs"),
  4637. name: "Front",
  4638. image: {
  4639. source: "./media/characters/appledectomy/front.svg"
  4640. }
  4641. }
  4642. },
  4643. [
  4644. {
  4645. name: "Macro",
  4646. height: math.unit(2500, "feet")
  4647. },
  4648. {
  4649. name: "Megamacro",
  4650. height: math.unit(50, "miles"),
  4651. default: true
  4652. },
  4653. {
  4654. name: "Gigamacro",
  4655. height: math.unit(5000, "miles")
  4656. },
  4657. {
  4658. name: "Teramacro",
  4659. height: math.unit(250000, "miles")
  4660. },
  4661. ]
  4662. ))
  4663. characterMakers.push(() => makeCharacter(
  4664. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4665. {
  4666. front: {
  4667. height: math.unit(6, "feet"),
  4668. weight: math.unit(200, "lbs"),
  4669. name: "Front",
  4670. image: {
  4671. source: "./media/characters/vulpes/front.svg",
  4672. extra: 573 / 543,
  4673. bottom: 0.033
  4674. }
  4675. },
  4676. side: {
  4677. height: math.unit(6, "feet"),
  4678. weight: math.unit(200, "lbs"),
  4679. name: "Side",
  4680. image: {
  4681. source: "./media/characters/vulpes/side.svg",
  4682. extra: 577 / 549,
  4683. bottom: 11 / 588
  4684. }
  4685. },
  4686. back: {
  4687. height: math.unit(6, "feet"),
  4688. weight: math.unit(200, "lbs"),
  4689. name: "Back",
  4690. image: {
  4691. source: "./media/characters/vulpes/back.svg",
  4692. extra: 573 / 549,
  4693. bottom: 20 / 593
  4694. }
  4695. },
  4696. feet: {
  4697. height: math.unit(1.276, "feet"),
  4698. name: "Feet",
  4699. image: {
  4700. source: "./media/characters/vulpes/feet.svg"
  4701. }
  4702. },
  4703. maw: {
  4704. height: math.unit(1.18, "feet"),
  4705. name: "Maw",
  4706. image: {
  4707. source: "./media/characters/vulpes/maw.svg"
  4708. }
  4709. },
  4710. },
  4711. [
  4712. {
  4713. name: "Micro",
  4714. height: math.unit(2, "inches")
  4715. },
  4716. {
  4717. name: "Normal",
  4718. height: math.unit(6.3, "feet")
  4719. },
  4720. {
  4721. name: "Macro",
  4722. height: math.unit(850, "feet")
  4723. },
  4724. {
  4725. name: "Megamacro",
  4726. height: math.unit(7500, "feet"),
  4727. default: true
  4728. },
  4729. {
  4730. name: "Gigamacro",
  4731. height: math.unit(570000, "miles")
  4732. }
  4733. ]
  4734. ))
  4735. characterMakers.push(() => makeCharacter(
  4736. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4737. {
  4738. front: {
  4739. height: math.unit(6, "feet"),
  4740. weight: math.unit(210, "lbs"),
  4741. name: "Front",
  4742. image: {
  4743. source: "./media/characters/rain-fallen/front.svg"
  4744. }
  4745. },
  4746. side: {
  4747. height: math.unit(6, "feet"),
  4748. weight: math.unit(210, "lbs"),
  4749. name: "Side",
  4750. image: {
  4751. source: "./media/characters/rain-fallen/side.svg"
  4752. }
  4753. },
  4754. back: {
  4755. height: math.unit(6, "feet"),
  4756. weight: math.unit(210, "lbs"),
  4757. name: "Back",
  4758. image: {
  4759. source: "./media/characters/rain-fallen/back.svg"
  4760. }
  4761. },
  4762. feral: {
  4763. height: math.unit(9, "feet"),
  4764. weight: math.unit(700, "lbs"),
  4765. name: "Feral",
  4766. image: {
  4767. source: "./media/characters/rain-fallen/feral.svg"
  4768. }
  4769. },
  4770. },
  4771. [
  4772. {
  4773. name: "Meddling with Mortals",
  4774. height: math.unit(8 + 8/12, "feet")
  4775. },
  4776. {
  4777. name: "Normal",
  4778. height: math.unit(5, "meter")
  4779. },
  4780. {
  4781. name: "Macro",
  4782. height: math.unit(150, "meter"),
  4783. default: true
  4784. },
  4785. {
  4786. name: "Megamacro",
  4787. height: math.unit(278e6, "meter")
  4788. },
  4789. {
  4790. name: "Gigamacro",
  4791. height: math.unit(2e9, "meter")
  4792. },
  4793. {
  4794. name: "Teramacro",
  4795. height: math.unit(8e12, "meter")
  4796. },
  4797. {
  4798. name: "Devourer",
  4799. height: math.unit(14, "zettameters")
  4800. },
  4801. {
  4802. name: "Scarlet King",
  4803. height: math.unit(18, "yottameters")
  4804. },
  4805. {
  4806. name: "Void",
  4807. height: math.unit(1e88, "yottameters")
  4808. }
  4809. ]
  4810. ))
  4811. characterMakers.push(() => makeCharacter(
  4812. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4813. {
  4814. standing: {
  4815. height: math.unit(6, "feet"),
  4816. weight: math.unit(180, "lbs"),
  4817. name: "Standing",
  4818. image: {
  4819. source: "./media/characters/zaakira/standing.svg",
  4820. extra: 1599/1504,
  4821. bottom: 39/1638
  4822. }
  4823. },
  4824. laying: {
  4825. height: math.unit(3, "feet"),
  4826. weight: math.unit(180, "lbs"),
  4827. name: "Laying",
  4828. image: {
  4829. source: "./media/characters/zaakira/laying.svg"
  4830. }
  4831. },
  4832. },
  4833. [
  4834. {
  4835. name: "Normal",
  4836. height: math.unit(12, "feet")
  4837. },
  4838. {
  4839. name: "Macro",
  4840. height: math.unit(279, "feet"),
  4841. default: true
  4842. }
  4843. ]
  4844. ))
  4845. characterMakers.push(() => makeCharacter(
  4846. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4847. {
  4848. femSfw: {
  4849. height: math.unit(8, "feet"),
  4850. weight: math.unit(350, "lb"),
  4851. name: "Fem",
  4852. image: {
  4853. source: "./media/characters/sigvald/fem-sfw.svg",
  4854. extra: 182 / 164,
  4855. bottom: 8.7 / 190.5
  4856. }
  4857. },
  4858. femNsfw: {
  4859. height: math.unit(8, "feet"),
  4860. weight: math.unit(350, "lb"),
  4861. name: "Fem (NSFW)",
  4862. image: {
  4863. source: "./media/characters/sigvald/fem-nsfw.svg",
  4864. extra: 182 / 164,
  4865. bottom: 8.7 / 190.5
  4866. }
  4867. },
  4868. maleNsfw: {
  4869. height: math.unit(8, "feet"),
  4870. weight: math.unit(350, "lb"),
  4871. name: "Male (NSFW)",
  4872. image: {
  4873. source: "./media/characters/sigvald/male-nsfw.svg",
  4874. extra: 182 / 164,
  4875. bottom: 8.7 / 190.5
  4876. }
  4877. },
  4878. hermNsfw: {
  4879. height: math.unit(8, "feet"),
  4880. weight: math.unit(350, "lb"),
  4881. name: "Herm (NSFW)",
  4882. image: {
  4883. source: "./media/characters/sigvald/herm-nsfw.svg",
  4884. extra: 182 / 164,
  4885. bottom: 8.7 / 190.5
  4886. }
  4887. },
  4888. dick: {
  4889. height: math.unit(2.36, "feet"),
  4890. name: "Dick",
  4891. image: {
  4892. source: "./media/characters/sigvald/dick.svg"
  4893. }
  4894. },
  4895. eye: {
  4896. height: math.unit(0.31, "feet"),
  4897. name: "Eye",
  4898. image: {
  4899. source: "./media/characters/sigvald/eye.svg"
  4900. }
  4901. },
  4902. mouth: {
  4903. height: math.unit(0.92, "feet"),
  4904. name: "Mouth",
  4905. image: {
  4906. source: "./media/characters/sigvald/mouth.svg"
  4907. }
  4908. },
  4909. paws: {
  4910. height: math.unit(2.2, "feet"),
  4911. name: "Paws",
  4912. image: {
  4913. source: "./media/characters/sigvald/paws.svg"
  4914. }
  4915. }
  4916. },
  4917. [
  4918. {
  4919. name: "Normal",
  4920. height: math.unit(8, "feet")
  4921. },
  4922. {
  4923. name: "Large",
  4924. height: math.unit(12, "feet")
  4925. },
  4926. {
  4927. name: "Larger",
  4928. height: math.unit(20, "feet")
  4929. },
  4930. {
  4931. name: "Macro",
  4932. height: math.unit(150, "feet")
  4933. },
  4934. {
  4935. name: "Macro+",
  4936. height: math.unit(200, "feet"),
  4937. default: true
  4938. },
  4939. ]
  4940. ))
  4941. characterMakers.push(() => makeCharacter(
  4942. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4943. {
  4944. side: {
  4945. height: math.unit(12, "feet"),
  4946. weight: math.unit(2000, "kg"),
  4947. name: "Side",
  4948. image: {
  4949. source: "./media/characters/scott/side.svg",
  4950. extra: 754 / 724,
  4951. bottom: 0.069
  4952. }
  4953. },
  4954. upright: {
  4955. height: math.unit(12, "feet"),
  4956. weight: math.unit(2000, "kg"),
  4957. name: "Upright",
  4958. image: {
  4959. source: "./media/characters/scott/upright.svg",
  4960. extra: 3881 / 3722,
  4961. bottom: 0.05
  4962. }
  4963. },
  4964. },
  4965. [
  4966. {
  4967. name: "Normal",
  4968. height: math.unit(12, "feet"),
  4969. default: true
  4970. },
  4971. ]
  4972. ))
  4973. characterMakers.push(() => makeCharacter(
  4974. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4975. {
  4976. side: {
  4977. height: math.unit(8, "meters"),
  4978. weight: math.unit(84755, "lbs"),
  4979. name: "Side",
  4980. image: {
  4981. source: "./media/characters/tobias/side.svg",
  4982. extra: 1474 / 1096,
  4983. bottom: 38.9 / 1513.1235
  4984. }
  4985. },
  4986. },
  4987. [
  4988. {
  4989. name: "Normal",
  4990. height: math.unit(8, "meters"),
  4991. default: true
  4992. },
  4993. ]
  4994. ))
  4995. characterMakers.push(() => makeCharacter(
  4996. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4997. {
  4998. front: {
  4999. height: math.unit(5.5, "feet"),
  5000. weight: math.unit(400, "lbs"),
  5001. name: "Front",
  5002. image: {
  5003. source: "./media/characters/kieran/front.svg",
  5004. extra: 2694 / 2364,
  5005. bottom: 217 / 2908
  5006. }
  5007. },
  5008. side: {
  5009. height: math.unit(5.5, "feet"),
  5010. weight: math.unit(400, "lbs"),
  5011. name: "Side",
  5012. image: {
  5013. source: "./media/characters/kieran/side.svg",
  5014. extra: 875 / 777,
  5015. bottom: 84.6 / 959
  5016. }
  5017. },
  5018. },
  5019. [
  5020. {
  5021. name: "Normal",
  5022. height: math.unit(5.5, "feet"),
  5023. default: true
  5024. },
  5025. ]
  5026. ))
  5027. characterMakers.push(() => makeCharacter(
  5028. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5029. {
  5030. side: {
  5031. height: math.unit(2, "meters"),
  5032. weight: math.unit(70, "kg"),
  5033. name: "Side",
  5034. image: {
  5035. source: "./media/characters/sanya/side.svg",
  5036. bottom: 0.02,
  5037. extra: 1.02
  5038. }
  5039. },
  5040. },
  5041. [
  5042. {
  5043. name: "Small",
  5044. height: math.unit(2, "meters")
  5045. },
  5046. {
  5047. name: "Normal",
  5048. height: math.unit(3, "meters")
  5049. },
  5050. {
  5051. name: "Macro",
  5052. height: math.unit(16, "meters"),
  5053. default: true
  5054. },
  5055. ]
  5056. ))
  5057. characterMakers.push(() => makeCharacter(
  5058. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5059. {
  5060. front: {
  5061. height: math.unit(2, "meters"),
  5062. weight: math.unit(120, "kg"),
  5063. name: "Front",
  5064. image: {
  5065. source: "./media/characters/miranda/front.svg",
  5066. extra: 195 / 185,
  5067. bottom: 10.9 / 206.5
  5068. }
  5069. },
  5070. back: {
  5071. height: math.unit(2, "meters"),
  5072. weight: math.unit(120, "kg"),
  5073. name: "Back",
  5074. image: {
  5075. source: "./media/characters/miranda/back.svg",
  5076. extra: 201 / 193,
  5077. bottom: 2.3 / 203.7
  5078. }
  5079. },
  5080. },
  5081. [
  5082. {
  5083. name: "Normal",
  5084. height: math.unit(10, "feet"),
  5085. default: true
  5086. }
  5087. ]
  5088. ))
  5089. characterMakers.push(() => makeCharacter(
  5090. { name: "James", species: ["deer"], tags: ["anthro"] },
  5091. {
  5092. side: {
  5093. height: math.unit(2, "meters"),
  5094. weight: math.unit(100, "kg"),
  5095. name: "Front",
  5096. image: {
  5097. source: "./media/characters/james/front.svg",
  5098. extra: 10 / 8.5
  5099. }
  5100. },
  5101. },
  5102. [
  5103. {
  5104. name: "Normal",
  5105. height: math.unit(8.5, "feet"),
  5106. default: true
  5107. }
  5108. ]
  5109. ))
  5110. characterMakers.push(() => makeCharacter(
  5111. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5112. {
  5113. side: {
  5114. height: math.unit(9.5, "feet"),
  5115. weight: math.unit(2500, "lbs"),
  5116. name: "Side",
  5117. image: {
  5118. source: "./media/characters/heather/side.svg"
  5119. }
  5120. },
  5121. },
  5122. [
  5123. {
  5124. name: "Normal",
  5125. height: math.unit(9.5, "feet"),
  5126. default: true
  5127. }
  5128. ]
  5129. ))
  5130. characterMakers.push(() => makeCharacter(
  5131. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5132. {
  5133. side: {
  5134. height: math.unit(6.5, "feet"),
  5135. weight: math.unit(400, "lbs"),
  5136. name: "Side",
  5137. image: {
  5138. source: "./media/characters/lukas/side.svg",
  5139. extra: 7.25 / 6.5
  5140. }
  5141. },
  5142. },
  5143. [
  5144. {
  5145. name: "Normal",
  5146. height: math.unit(6.5, "feet"),
  5147. default: true
  5148. }
  5149. ]
  5150. ))
  5151. characterMakers.push(() => makeCharacter(
  5152. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5153. {
  5154. side: {
  5155. height: math.unit(5, "feet"),
  5156. weight: math.unit(3000, "lbs"),
  5157. name: "Side",
  5158. image: {
  5159. source: "./media/characters/louise/side.svg"
  5160. }
  5161. },
  5162. },
  5163. [
  5164. {
  5165. name: "Normal",
  5166. height: math.unit(5, "feet"),
  5167. default: true
  5168. }
  5169. ]
  5170. ))
  5171. characterMakers.push(() => makeCharacter(
  5172. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5173. {
  5174. side: {
  5175. height: math.unit(6, "feet"),
  5176. weight: math.unit(150, "lbs"),
  5177. name: "Side",
  5178. image: {
  5179. source: "./media/characters/ramona/side.svg"
  5180. }
  5181. },
  5182. },
  5183. [
  5184. {
  5185. name: "Normal",
  5186. height: math.unit(5.3, "meters"),
  5187. default: true
  5188. },
  5189. {
  5190. name: "Macro",
  5191. height: math.unit(20, "stories")
  5192. },
  5193. {
  5194. name: "Macro+",
  5195. height: math.unit(50, "stories")
  5196. },
  5197. ]
  5198. ))
  5199. characterMakers.push(() => makeCharacter(
  5200. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5201. {
  5202. standing: {
  5203. height: math.unit(5.75, "feet"),
  5204. weight: math.unit(160, "lbs"),
  5205. name: "Standing",
  5206. image: {
  5207. source: "./media/characters/deerpuff/standing.svg",
  5208. extra: 682 / 624
  5209. }
  5210. },
  5211. sitting: {
  5212. height: math.unit(5.75 / 1.79, "feet"),
  5213. weight: math.unit(160, "lbs"),
  5214. name: "Sitting",
  5215. image: {
  5216. source: "./media/characters/deerpuff/sitting.svg",
  5217. bottom: 44 / 400,
  5218. extra: 1
  5219. }
  5220. },
  5221. taurLaying: {
  5222. height: math.unit(6, "feet"),
  5223. weight: math.unit(400, "lbs"),
  5224. name: "Taur (Laying)",
  5225. image: {
  5226. source: "./media/characters/deerpuff/taur-laying.svg"
  5227. }
  5228. },
  5229. },
  5230. [
  5231. {
  5232. name: "Puffball",
  5233. height: math.unit(6, "inches")
  5234. },
  5235. {
  5236. name: "Normalpuff",
  5237. height: math.unit(5.75, "feet")
  5238. },
  5239. {
  5240. name: "Macropuff",
  5241. height: math.unit(1500, "feet"),
  5242. default: true
  5243. },
  5244. {
  5245. name: "Megapuff",
  5246. height: math.unit(500, "miles")
  5247. },
  5248. {
  5249. name: "Gigapuff",
  5250. height: math.unit(250000, "miles")
  5251. },
  5252. {
  5253. name: "Omegapuff",
  5254. height: math.unit(1000, "lightyears")
  5255. },
  5256. ]
  5257. ))
  5258. characterMakers.push(() => makeCharacter(
  5259. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5260. {
  5261. stomping: {
  5262. height: math.unit(6, "feet"),
  5263. weight: math.unit(170, "lbs"),
  5264. name: "Stomping",
  5265. image: {
  5266. source: "./media/characters/vivian/stomping.svg"
  5267. }
  5268. },
  5269. sitting: {
  5270. height: math.unit(6 / 1.75, "feet"),
  5271. weight: math.unit(170, "lbs"),
  5272. name: "Sitting",
  5273. image: {
  5274. source: "./media/characters/vivian/sitting.svg",
  5275. bottom: 1 / 6.4,
  5276. extra: 1,
  5277. }
  5278. },
  5279. },
  5280. [
  5281. {
  5282. name: "Normal",
  5283. height: math.unit(7, "feet"),
  5284. default: true
  5285. },
  5286. {
  5287. name: "Macro",
  5288. height: math.unit(10, "stories")
  5289. },
  5290. {
  5291. name: "Macro+",
  5292. height: math.unit(30, "stories")
  5293. },
  5294. {
  5295. name: "Megamacro",
  5296. height: math.unit(10, "miles")
  5297. },
  5298. {
  5299. name: "Megamacro+",
  5300. height: math.unit(2750000, "meters")
  5301. },
  5302. ]
  5303. ))
  5304. characterMakers.push(() => makeCharacter(
  5305. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5306. {
  5307. front: {
  5308. height: math.unit(6, "feet"),
  5309. weight: math.unit(160, "lbs"),
  5310. name: "Front",
  5311. image: {
  5312. source: "./media/characters/prince/front.svg",
  5313. extra: 3400 / 3000
  5314. }
  5315. },
  5316. jumping: {
  5317. height: math.unit(6, "feet"),
  5318. weight: math.unit(160, "lbs"),
  5319. name: "Jumping",
  5320. image: {
  5321. source: "./media/characters/prince/jump.svg",
  5322. extra: 2555 / 2134
  5323. }
  5324. },
  5325. },
  5326. [
  5327. {
  5328. name: "Normal",
  5329. height: math.unit(7.75, "feet"),
  5330. default: true
  5331. },
  5332. {
  5333. name: "Not cute",
  5334. height: math.unit(17, "feet")
  5335. },
  5336. {
  5337. name: "I said NOT",
  5338. height: math.unit(91, "feet")
  5339. },
  5340. {
  5341. name: "Please stop",
  5342. height: math.unit(560, "feet")
  5343. },
  5344. {
  5345. name: "What have you done",
  5346. height: math.unit(2200, "feet")
  5347. },
  5348. {
  5349. name: "Deer God",
  5350. height: math.unit(3.6, "miles")
  5351. },
  5352. ]
  5353. ))
  5354. characterMakers.push(() => makeCharacter(
  5355. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5356. {
  5357. standing: {
  5358. height: math.unit(6, "feet"),
  5359. weight: math.unit(300, "lbs"),
  5360. name: "Standing",
  5361. image: {
  5362. source: "./media/characters/psymon/standing.svg",
  5363. extra: 1888 / 1810,
  5364. bottom: 0.05
  5365. }
  5366. },
  5367. slithering: {
  5368. height: math.unit(6, "feet"),
  5369. weight: math.unit(300, "lbs"),
  5370. name: "Slithering",
  5371. image: {
  5372. source: "./media/characters/psymon/slithering.svg",
  5373. extra: 1330 / 1224
  5374. }
  5375. },
  5376. slitheringAlt: {
  5377. height: math.unit(6, "feet"),
  5378. weight: math.unit(300, "lbs"),
  5379. name: "Slithering (Alt)",
  5380. image: {
  5381. source: "./media/characters/psymon/slithering-alt.svg",
  5382. extra: 1330 / 1224
  5383. }
  5384. },
  5385. },
  5386. [
  5387. {
  5388. name: "Normal",
  5389. height: math.unit(11.25, "feet"),
  5390. default: true
  5391. },
  5392. {
  5393. name: "Large",
  5394. height: math.unit(27, "feet")
  5395. },
  5396. {
  5397. name: "Giant",
  5398. height: math.unit(87, "feet")
  5399. },
  5400. {
  5401. name: "Macro",
  5402. height: math.unit(365, "feet")
  5403. },
  5404. {
  5405. name: "Megamacro",
  5406. height: math.unit(3, "miles")
  5407. },
  5408. {
  5409. name: "World Serpent",
  5410. height: math.unit(8000, "miles")
  5411. },
  5412. ]
  5413. ))
  5414. characterMakers.push(() => makeCharacter(
  5415. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5416. {
  5417. front: {
  5418. height: math.unit(6, "feet"),
  5419. weight: math.unit(180, "lbs"),
  5420. name: "Front",
  5421. image: {
  5422. source: "./media/characters/daimos/front.svg",
  5423. extra: 4160 / 3897,
  5424. bottom: 0.021
  5425. }
  5426. }
  5427. },
  5428. [
  5429. {
  5430. name: "Normal",
  5431. height: math.unit(8, "feet"),
  5432. default: true
  5433. },
  5434. {
  5435. name: "Big Dog",
  5436. height: math.unit(22, "feet")
  5437. },
  5438. {
  5439. name: "Macro",
  5440. height: math.unit(127, "feet")
  5441. },
  5442. {
  5443. name: "Megamacro",
  5444. height: math.unit(3600, "feet")
  5445. },
  5446. ]
  5447. ))
  5448. characterMakers.push(() => makeCharacter(
  5449. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5450. {
  5451. side: {
  5452. height: math.unit(6, "feet"),
  5453. weight: math.unit(180, "lbs"),
  5454. name: "Side",
  5455. image: {
  5456. source: "./media/characters/blake/side.svg",
  5457. extra: 1212 / 1120,
  5458. bottom: 0.05
  5459. }
  5460. },
  5461. crouched: {
  5462. height: math.unit(6 * 0.57, "feet"),
  5463. weight: math.unit(180, "lbs"),
  5464. name: "Crouched",
  5465. image: {
  5466. source: "./media/characters/blake/crouched.svg",
  5467. extra: 840 / 587,
  5468. bottom: 0.04
  5469. }
  5470. },
  5471. bent: {
  5472. height: math.unit(6 * 0.75, "feet"),
  5473. weight: math.unit(180, "lbs"),
  5474. name: "Bent",
  5475. image: {
  5476. source: "./media/characters/blake/bent.svg",
  5477. extra: 592 / 544,
  5478. bottom: 0.035
  5479. }
  5480. },
  5481. },
  5482. [
  5483. {
  5484. name: "Normal",
  5485. height: math.unit(8 + 1 / 6, "feet"),
  5486. default: true
  5487. },
  5488. {
  5489. name: "Big Backside",
  5490. height: math.unit(37, "feet")
  5491. },
  5492. {
  5493. name: "Subway Shredder",
  5494. height: math.unit(72, "feet")
  5495. },
  5496. {
  5497. name: "City Carver",
  5498. height: math.unit(1675, "feet")
  5499. },
  5500. {
  5501. name: "Tectonic Tweaker",
  5502. height: math.unit(2300, "miles")
  5503. },
  5504. ]
  5505. ))
  5506. characterMakers.push(() => makeCharacter(
  5507. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5508. {
  5509. front: {
  5510. height: math.unit(6, "feet"),
  5511. weight: math.unit(180, "lbs"),
  5512. name: "Front",
  5513. image: {
  5514. source: "./media/characters/guisetto/front.svg",
  5515. extra: 856 / 817,
  5516. bottom: 0.06
  5517. }
  5518. },
  5519. airborne: {
  5520. height: math.unit(6, "feet"),
  5521. weight: math.unit(180, "lbs"),
  5522. name: "Airborne",
  5523. image: {
  5524. source: "./media/characters/guisetto/airborne.svg",
  5525. extra: 584 / 525
  5526. }
  5527. },
  5528. },
  5529. [
  5530. {
  5531. name: "Normal",
  5532. height: math.unit(10 + 11 / 12, "feet"),
  5533. default: true
  5534. },
  5535. {
  5536. name: "Large",
  5537. height: math.unit(35, "feet")
  5538. },
  5539. {
  5540. name: "Macro",
  5541. height: math.unit(475, "feet")
  5542. },
  5543. ]
  5544. ))
  5545. characterMakers.push(() => makeCharacter(
  5546. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5547. {
  5548. front: {
  5549. height: math.unit(6, "feet"),
  5550. weight: math.unit(180, "lbs"),
  5551. name: "Front",
  5552. image: {
  5553. source: "./media/characters/luxor/front.svg",
  5554. extra: 2940 / 2152
  5555. }
  5556. },
  5557. back: {
  5558. height: math.unit(6, "feet"),
  5559. weight: math.unit(180, "lbs"),
  5560. name: "Back",
  5561. image: {
  5562. source: "./media/characters/luxor/back.svg",
  5563. extra: 1083 / 960
  5564. }
  5565. },
  5566. },
  5567. [
  5568. {
  5569. name: "Normal",
  5570. height: math.unit(5 + 5 / 6, "feet"),
  5571. default: true
  5572. },
  5573. {
  5574. name: "Lamp",
  5575. height: math.unit(50, "feet")
  5576. },
  5577. {
  5578. name: "Lämp",
  5579. height: math.unit(300, "feet")
  5580. },
  5581. {
  5582. name: "The sun is a lamp",
  5583. height: math.unit(250000, "miles")
  5584. },
  5585. ]
  5586. ))
  5587. characterMakers.push(() => makeCharacter(
  5588. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5589. {
  5590. front: {
  5591. height: math.unit(6, "feet"),
  5592. weight: math.unit(50, "lbs"),
  5593. name: "Front",
  5594. image: {
  5595. source: "./media/characters/huoyan/front.svg"
  5596. }
  5597. },
  5598. side: {
  5599. height: math.unit(6, "feet"),
  5600. weight: math.unit(180, "lbs"),
  5601. name: "Side",
  5602. image: {
  5603. source: "./media/characters/huoyan/side.svg"
  5604. }
  5605. },
  5606. },
  5607. [
  5608. {
  5609. name: "Chef",
  5610. height: math.unit(9, "feet")
  5611. },
  5612. {
  5613. name: "Normal",
  5614. height: math.unit(65, "feet"),
  5615. default: true
  5616. },
  5617. {
  5618. name: "Macro",
  5619. height: math.unit(780, "feet")
  5620. },
  5621. {
  5622. name: "Flaming Mountain",
  5623. height: math.unit(4.8, "miles")
  5624. },
  5625. {
  5626. name: "Celestial",
  5627. height: math.unit(765000, "miles")
  5628. },
  5629. ]
  5630. ))
  5631. characterMakers.push(() => makeCharacter(
  5632. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5633. {
  5634. front: {
  5635. height: math.unit(5 + 3 / 4, "feet"),
  5636. weight: math.unit(120, "lbs"),
  5637. name: "Front",
  5638. image: {
  5639. source: "./media/characters/tails/front.svg"
  5640. }
  5641. }
  5642. },
  5643. [
  5644. {
  5645. name: "Normal",
  5646. height: math.unit(5 + 3 / 4, "feet"),
  5647. default: true
  5648. }
  5649. ]
  5650. ))
  5651. characterMakers.push(() => makeCharacter(
  5652. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5653. {
  5654. front: {
  5655. height: math.unit(4, "feet"),
  5656. weight: math.unit(50, "lbs"),
  5657. name: "Front",
  5658. image: {
  5659. source: "./media/characters/rainy/front.svg"
  5660. }
  5661. }
  5662. },
  5663. [
  5664. {
  5665. name: "Macro",
  5666. height: math.unit(800, "feet"),
  5667. default: true
  5668. }
  5669. ]
  5670. ))
  5671. characterMakers.push(() => makeCharacter(
  5672. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5673. {
  5674. front: {
  5675. height: math.unit(6, "feet"),
  5676. weight: math.unit(150, "lbs"),
  5677. name: "Front",
  5678. image: {
  5679. source: "./media/characters/rainier/front.svg"
  5680. }
  5681. }
  5682. },
  5683. [
  5684. {
  5685. name: "Micro",
  5686. height: math.unit(2, "mm"),
  5687. default: true
  5688. }
  5689. ]
  5690. ))
  5691. characterMakers.push(() => makeCharacter(
  5692. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5693. {
  5694. front: {
  5695. height: math.unit(8 + 4/12, "feet"),
  5696. name: "Front",
  5697. image: {
  5698. source: "./media/characters/andy-renard/front.svg",
  5699. extra: 1839/1726,
  5700. bottom: 134/1973
  5701. }
  5702. },
  5703. back: {
  5704. height: math.unit(8 + 4/12, "feet"),
  5705. name: "Back",
  5706. image: {
  5707. source: "./media/characters/andy-renard/back.svg",
  5708. extra: 1838/1710,
  5709. bottom: 105/1943
  5710. }
  5711. },
  5712. },
  5713. [
  5714. {
  5715. name: "Tall",
  5716. height: math.unit(8 + 4/12, "feet")
  5717. },
  5718. {
  5719. name: "Mini Macro",
  5720. height: math.unit(15, "feet"),
  5721. default: true
  5722. },
  5723. {
  5724. name: "Macro",
  5725. height: math.unit(100, "feet")
  5726. },
  5727. {
  5728. name: "Mega Macro",
  5729. height: math.unit(1000, "feet")
  5730. },
  5731. {
  5732. name: "Giga Macro",
  5733. height: math.unit(10, "miles")
  5734. },
  5735. {
  5736. name: "God Macro",
  5737. height: math.unit(1, "multiverse")
  5738. },
  5739. ]
  5740. ))
  5741. characterMakers.push(() => makeCharacter(
  5742. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5743. {
  5744. front: {
  5745. height: math.unit(6, "feet"),
  5746. weight: math.unit(210, "lbs"),
  5747. name: "Front",
  5748. image: {
  5749. source: "./media/characters/cimmaron/front-sfw.svg",
  5750. extra: 701 / 676,
  5751. bottom: 0.046
  5752. }
  5753. },
  5754. back: {
  5755. height: math.unit(6, "feet"),
  5756. weight: math.unit(210, "lbs"),
  5757. name: "Back",
  5758. image: {
  5759. source: "./media/characters/cimmaron/back-sfw.svg",
  5760. extra: 701 / 676,
  5761. bottom: 0.046
  5762. }
  5763. },
  5764. frontNsfw: {
  5765. height: math.unit(6, "feet"),
  5766. weight: math.unit(210, "lbs"),
  5767. name: "Front (NSFW)",
  5768. image: {
  5769. source: "./media/characters/cimmaron/front-nsfw.svg",
  5770. extra: 701 / 676,
  5771. bottom: 0.046
  5772. }
  5773. },
  5774. backNsfw: {
  5775. height: math.unit(6, "feet"),
  5776. weight: math.unit(210, "lbs"),
  5777. name: "Back (NSFW)",
  5778. image: {
  5779. source: "./media/characters/cimmaron/back-nsfw.svg",
  5780. extra: 701 / 676,
  5781. bottom: 0.046
  5782. }
  5783. },
  5784. dick: {
  5785. height: math.unit(1.714, "feet"),
  5786. name: "Dick",
  5787. image: {
  5788. source: "./media/characters/cimmaron/dick.svg"
  5789. }
  5790. },
  5791. },
  5792. [
  5793. {
  5794. name: "Normal",
  5795. height: math.unit(6, "feet"),
  5796. default: true
  5797. },
  5798. {
  5799. name: "Macro Mayor",
  5800. height: math.unit(350, "meters")
  5801. },
  5802. ]
  5803. ))
  5804. characterMakers.push(() => makeCharacter(
  5805. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5806. {
  5807. front: {
  5808. height: math.unit(6, "feet"),
  5809. weight: math.unit(200, "lbs"),
  5810. name: "Front",
  5811. image: {
  5812. source: "./media/characters/akari/front.svg",
  5813. extra: 962 / 901,
  5814. bottom: 0.04
  5815. }
  5816. }
  5817. },
  5818. [
  5819. {
  5820. name: "Micro",
  5821. height: math.unit(5, "inches"),
  5822. default: true
  5823. },
  5824. {
  5825. name: "Normal",
  5826. height: math.unit(7, "feet")
  5827. },
  5828. ]
  5829. ))
  5830. characterMakers.push(() => makeCharacter(
  5831. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5832. {
  5833. front: {
  5834. height: math.unit(6, "feet"),
  5835. weight: math.unit(140, "lbs"),
  5836. name: "Front",
  5837. image: {
  5838. source: "./media/characters/cynosura/front.svg",
  5839. extra: 896 / 847
  5840. }
  5841. },
  5842. back: {
  5843. height: math.unit(6, "feet"),
  5844. weight: math.unit(140, "lbs"),
  5845. name: "Back",
  5846. image: {
  5847. source: "./media/characters/cynosura/back.svg",
  5848. extra: 1365 / 1250
  5849. }
  5850. },
  5851. },
  5852. [
  5853. {
  5854. name: "Micro",
  5855. height: math.unit(4, "inches")
  5856. },
  5857. {
  5858. name: "Normal",
  5859. height: math.unit(5.75, "feet"),
  5860. default: true
  5861. },
  5862. {
  5863. name: "Tall",
  5864. height: math.unit(10, "feet")
  5865. },
  5866. {
  5867. name: "Big",
  5868. height: math.unit(20, "feet")
  5869. },
  5870. {
  5871. name: "Macro",
  5872. height: math.unit(50, "feet")
  5873. },
  5874. ]
  5875. ))
  5876. characterMakers.push(() => makeCharacter(
  5877. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5878. {
  5879. front: {
  5880. height: math.unit(13 + 2/12, "feet"),
  5881. weight: math.unit(800, "kg"),
  5882. name: "Front",
  5883. image: {
  5884. source: "./media/characters/gin/front.svg",
  5885. extra: 1312/1191,
  5886. bottom: 45/1357
  5887. }
  5888. },
  5889. mouth: {
  5890. height: math.unit(2.39 * 1.8, "feet"),
  5891. name: "Mouth",
  5892. image: {
  5893. source: "./media/characters/gin/mouth.svg"
  5894. }
  5895. },
  5896. hand: {
  5897. height: math.unit(1.57 * 2.19, "feet"),
  5898. name: "Hand",
  5899. image: {
  5900. source: "./media/characters/gin/hand.svg"
  5901. }
  5902. },
  5903. foot: {
  5904. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5905. name: "Foot",
  5906. image: {
  5907. source: "./media/characters/gin/foot.svg"
  5908. }
  5909. },
  5910. sole: {
  5911. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5912. name: "Sole",
  5913. image: {
  5914. source: "./media/characters/gin/sole.svg"
  5915. }
  5916. },
  5917. },
  5918. [
  5919. {
  5920. name: "Very Small",
  5921. height: math.unit(13 + 2 / 12, "feet")
  5922. },
  5923. {
  5924. name: "Micro",
  5925. height: math.unit(600, "miles")
  5926. },
  5927. {
  5928. name: "Regular",
  5929. height: math.unit(20, "earths"),
  5930. default: true
  5931. },
  5932. {
  5933. name: "Macro",
  5934. height: math.unit(2.2, "solarradii")
  5935. },
  5936. {
  5937. name: "Teramacro",
  5938. height: math.unit(1.2, "galaxies")
  5939. },
  5940. {
  5941. name: "Omegamacro",
  5942. height: math.unit(200, "universes")
  5943. },
  5944. ]
  5945. ))
  5946. characterMakers.push(() => makeCharacter(
  5947. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5948. {
  5949. front: {
  5950. height: math.unit(6 + 1 / 6, "feet"),
  5951. weight: math.unit(178, "lbs"),
  5952. name: "Front",
  5953. image: {
  5954. source: "./media/characters/guy/front.svg"
  5955. }
  5956. }
  5957. },
  5958. [
  5959. {
  5960. name: "Normal",
  5961. height: math.unit(6 + 1 / 6, "feet"),
  5962. default: true
  5963. },
  5964. {
  5965. name: "Large",
  5966. height: math.unit(25 + 7 / 12, "feet")
  5967. },
  5968. {
  5969. name: "Macro",
  5970. height: math.unit(60 + 9 / 12, "feet")
  5971. },
  5972. {
  5973. name: "Macro+",
  5974. height: math.unit(246, "feet")
  5975. },
  5976. {
  5977. name: "Macro++",
  5978. height: math.unit(878, "feet")
  5979. }
  5980. ]
  5981. ))
  5982. characterMakers.push(() => makeCharacter(
  5983. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5984. {
  5985. front: {
  5986. height: math.unit(9, "feet"),
  5987. weight: math.unit(800, "lbs"),
  5988. name: "Front",
  5989. image: {
  5990. source: "./media/characters/tiberius/front.svg",
  5991. extra: 2295 / 2071
  5992. }
  5993. },
  5994. back: {
  5995. height: math.unit(9, "feet"),
  5996. weight: math.unit(800, "lbs"),
  5997. name: "Back",
  5998. image: {
  5999. source: "./media/characters/tiberius/back.svg",
  6000. extra: 2373 / 2160
  6001. }
  6002. },
  6003. },
  6004. [
  6005. {
  6006. name: "Normal",
  6007. height: math.unit(9, "feet"),
  6008. default: true
  6009. }
  6010. ]
  6011. ))
  6012. characterMakers.push(() => makeCharacter(
  6013. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6014. {
  6015. front: {
  6016. height: math.unit(6, "feet"),
  6017. weight: math.unit(600, "lbs"),
  6018. name: "Front",
  6019. image: {
  6020. source: "./media/characters/surgo/front.svg",
  6021. extra: 3591 / 2227
  6022. }
  6023. },
  6024. back: {
  6025. height: math.unit(6, "feet"),
  6026. weight: math.unit(600, "lbs"),
  6027. name: "Back",
  6028. image: {
  6029. source: "./media/characters/surgo/back.svg",
  6030. extra: 3557 / 2228
  6031. }
  6032. },
  6033. laying: {
  6034. height: math.unit(6 * 0.85, "feet"),
  6035. weight: math.unit(600, "lbs"),
  6036. name: "Laying",
  6037. image: {
  6038. source: "./media/characters/surgo/laying.svg"
  6039. }
  6040. },
  6041. },
  6042. [
  6043. {
  6044. name: "Normal",
  6045. height: math.unit(6, "feet"),
  6046. default: true
  6047. }
  6048. ]
  6049. ))
  6050. characterMakers.push(() => makeCharacter(
  6051. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6052. {
  6053. side: {
  6054. height: math.unit(6, "feet"),
  6055. weight: math.unit(150, "lbs"),
  6056. name: "Side",
  6057. image: {
  6058. source: "./media/characters/cibus/side.svg",
  6059. extra: 800 / 400
  6060. }
  6061. },
  6062. },
  6063. [
  6064. {
  6065. name: "Normal",
  6066. height: math.unit(6, "feet"),
  6067. default: true
  6068. }
  6069. ]
  6070. ))
  6071. characterMakers.push(() => makeCharacter(
  6072. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6073. {
  6074. front: {
  6075. height: math.unit(6, "feet"),
  6076. weight: math.unit(240, "lbs"),
  6077. name: "Front",
  6078. image: {
  6079. source: "./media/characters/nibbles/front.svg"
  6080. }
  6081. },
  6082. side: {
  6083. height: math.unit(6, "feet"),
  6084. weight: math.unit(240, "lbs"),
  6085. name: "Side",
  6086. image: {
  6087. source: "./media/characters/nibbles/side.svg"
  6088. }
  6089. },
  6090. },
  6091. [
  6092. {
  6093. name: "Normal",
  6094. height: math.unit(9, "feet"),
  6095. default: true
  6096. }
  6097. ]
  6098. ))
  6099. characterMakers.push(() => makeCharacter(
  6100. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6101. {
  6102. side: {
  6103. height: math.unit(5 + 1 / 6, "feet"),
  6104. weight: math.unit(130, "lbs"),
  6105. name: "Side",
  6106. image: {
  6107. source: "./media/characters/rikky/side.svg",
  6108. extra: 851 / 801
  6109. }
  6110. },
  6111. },
  6112. [
  6113. {
  6114. name: "Normal",
  6115. height: math.unit(5 + 1 / 6, "feet")
  6116. },
  6117. {
  6118. name: "Macro",
  6119. height: math.unit(152, "feet"),
  6120. default: true
  6121. },
  6122. {
  6123. name: "Megamacro",
  6124. height: math.unit(7, "miles")
  6125. }
  6126. ]
  6127. ))
  6128. characterMakers.push(() => makeCharacter(
  6129. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6130. {
  6131. side: {
  6132. height: math.unit(370, "cm"),
  6133. weight: math.unit(350, "lbs"),
  6134. name: "Side",
  6135. image: {
  6136. source: "./media/characters/malfressa/side.svg"
  6137. }
  6138. },
  6139. walking: {
  6140. height: math.unit(370, "cm"),
  6141. weight: math.unit(350, "lbs"),
  6142. name: "Walking",
  6143. image: {
  6144. source: "./media/characters/malfressa/walking.svg"
  6145. }
  6146. },
  6147. feral: {
  6148. height: math.unit(2500, "cm"),
  6149. weight: math.unit(100000, "lbs"),
  6150. name: "Feral",
  6151. image: {
  6152. source: "./media/characters/malfressa/feral.svg",
  6153. extra: 2108 / 837,
  6154. bottom: 0.02
  6155. }
  6156. },
  6157. },
  6158. [
  6159. {
  6160. name: "Normal",
  6161. height: math.unit(370, "cm")
  6162. },
  6163. {
  6164. name: "Macro",
  6165. height: math.unit(300, "meters"),
  6166. default: true
  6167. }
  6168. ]
  6169. ))
  6170. characterMakers.push(() => makeCharacter(
  6171. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6172. {
  6173. front: {
  6174. height: math.unit(6, "feet"),
  6175. weight: math.unit(60, "kg"),
  6176. name: "Front",
  6177. image: {
  6178. source: "./media/characters/jaro/front.svg"
  6179. }
  6180. },
  6181. back: {
  6182. height: math.unit(6, "feet"),
  6183. weight: math.unit(60, "kg"),
  6184. name: "Back",
  6185. image: {
  6186. source: "./media/characters/jaro/back.svg"
  6187. }
  6188. },
  6189. },
  6190. [
  6191. {
  6192. name: "Micro",
  6193. height: math.unit(7, "inches")
  6194. },
  6195. {
  6196. name: "Normal",
  6197. height: math.unit(5.5, "feet"),
  6198. default: true
  6199. },
  6200. {
  6201. name: "Minimacro",
  6202. height: math.unit(20, "feet")
  6203. },
  6204. {
  6205. name: "Macro",
  6206. height: math.unit(200, "meters")
  6207. }
  6208. ]
  6209. ))
  6210. characterMakers.push(() => makeCharacter(
  6211. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6212. {
  6213. front: {
  6214. height: math.unit(6, "feet"),
  6215. weight: math.unit(195, "lb"),
  6216. name: "Front",
  6217. image: {
  6218. source: "./media/characters/rogue/front.svg"
  6219. }
  6220. },
  6221. },
  6222. [
  6223. {
  6224. name: "Macro",
  6225. height: math.unit(90, "feet"),
  6226. default: true
  6227. },
  6228. ]
  6229. ))
  6230. characterMakers.push(() => makeCharacter(
  6231. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6232. {
  6233. front: {
  6234. height: math.unit(5 + 8 / 12, "feet"),
  6235. weight: math.unit(140, "lb"),
  6236. name: "Front",
  6237. image: {
  6238. source: "./media/characters/piper/front.svg",
  6239. extra: 3948/3655,
  6240. bottom: 0/3948
  6241. }
  6242. },
  6243. },
  6244. [
  6245. {
  6246. name: "Micro",
  6247. height: math.unit(2, "inches")
  6248. },
  6249. {
  6250. name: "Normal",
  6251. height: math.unit(5 + 8 / 12, "feet")
  6252. },
  6253. {
  6254. name: "Macro",
  6255. height: math.unit(250, "feet"),
  6256. default: true
  6257. },
  6258. {
  6259. name: "Megamacro",
  6260. height: math.unit(7, "miles")
  6261. },
  6262. ]
  6263. ))
  6264. characterMakers.push(() => makeCharacter(
  6265. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6266. {
  6267. front: {
  6268. height: math.unit(6, "feet"),
  6269. weight: math.unit(220, "lb"),
  6270. name: "Front",
  6271. image: {
  6272. source: "./media/characters/gemini/front.svg"
  6273. }
  6274. },
  6275. back: {
  6276. height: math.unit(6, "feet"),
  6277. weight: math.unit(220, "lb"),
  6278. name: "Back",
  6279. image: {
  6280. source: "./media/characters/gemini/back.svg"
  6281. }
  6282. },
  6283. kneeling: {
  6284. height: math.unit(6 / 1.5, "feet"),
  6285. weight: math.unit(220, "lb"),
  6286. name: "Kneeling",
  6287. image: {
  6288. source: "./media/characters/gemini/kneeling.svg",
  6289. bottom: 0.02
  6290. }
  6291. },
  6292. },
  6293. [
  6294. {
  6295. name: "Macro",
  6296. height: math.unit(300, "meters"),
  6297. default: true
  6298. },
  6299. {
  6300. name: "Megamacro",
  6301. height: math.unit(6900, "meters")
  6302. },
  6303. ]
  6304. ))
  6305. characterMakers.push(() => makeCharacter(
  6306. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6307. {
  6308. anthro: {
  6309. height: math.unit(2.35, "meters"),
  6310. weight: math.unit(73, "kg"),
  6311. name: "Anthro",
  6312. image: {
  6313. source: "./media/characters/alicia/anthro.svg",
  6314. extra: 2571 / 2385,
  6315. bottom: 75 / 2648
  6316. }
  6317. },
  6318. paw: {
  6319. height: math.unit(1.32, "feet"),
  6320. name: "Paw",
  6321. image: {
  6322. source: "./media/characters/alicia/paw.svg"
  6323. }
  6324. },
  6325. feral: {
  6326. height: math.unit(1.69, "meters"),
  6327. weight: math.unit(73, "kg"),
  6328. name: "Feral",
  6329. image: {
  6330. source: "./media/characters/alicia/feral.svg",
  6331. extra: 2123 / 1715,
  6332. bottom: 222 / 2349
  6333. }
  6334. },
  6335. },
  6336. [
  6337. {
  6338. name: "Normal",
  6339. height: math.unit(2.35, "meters")
  6340. },
  6341. {
  6342. name: "Macro",
  6343. height: math.unit(60, "meters"),
  6344. default: true
  6345. },
  6346. {
  6347. name: "Megamacro",
  6348. height: math.unit(10000, "kilometers")
  6349. },
  6350. ]
  6351. ))
  6352. characterMakers.push(() => makeCharacter(
  6353. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6354. {
  6355. front: {
  6356. height: math.unit(7, "feet"),
  6357. weight: math.unit(250, "lbs"),
  6358. name: "Front",
  6359. image: {
  6360. source: "./media/characters/archy/front.svg"
  6361. }
  6362. }
  6363. },
  6364. [
  6365. {
  6366. name: "Micro",
  6367. height: math.unit(1, "inch")
  6368. },
  6369. {
  6370. name: "Shorty",
  6371. height: math.unit(5, "feet")
  6372. },
  6373. {
  6374. name: "Normal",
  6375. height: math.unit(7, "feet")
  6376. },
  6377. {
  6378. name: "Macro",
  6379. height: math.unit(600, "meters"),
  6380. default: true
  6381. },
  6382. {
  6383. name: "Megamacro",
  6384. height: math.unit(1, "mile")
  6385. },
  6386. ]
  6387. ))
  6388. characterMakers.push(() => makeCharacter(
  6389. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6390. {
  6391. front: {
  6392. height: math.unit(1.65, "meters"),
  6393. weight: math.unit(74, "kg"),
  6394. name: "Front",
  6395. image: {
  6396. source: "./media/characters/berri/front.svg",
  6397. extra: 857 / 837,
  6398. bottom: 18 / 877
  6399. }
  6400. },
  6401. bum: {
  6402. height: math.unit(1.46, "feet"),
  6403. name: "Bum",
  6404. image: {
  6405. source: "./media/characters/berri/bum.svg"
  6406. }
  6407. },
  6408. mouth: {
  6409. height: math.unit(0.44, "feet"),
  6410. name: "Mouth",
  6411. image: {
  6412. source: "./media/characters/berri/mouth.svg"
  6413. }
  6414. },
  6415. paw: {
  6416. height: math.unit(0.826, "feet"),
  6417. name: "Paw",
  6418. image: {
  6419. source: "./media/characters/berri/paw.svg"
  6420. }
  6421. },
  6422. },
  6423. [
  6424. {
  6425. name: "Normal",
  6426. height: math.unit(1.65, "meters")
  6427. },
  6428. {
  6429. name: "Macro",
  6430. height: math.unit(60, "m"),
  6431. default: true
  6432. },
  6433. {
  6434. name: "Megamacro",
  6435. height: math.unit(9.213, "km")
  6436. },
  6437. {
  6438. name: "Planet Eater",
  6439. height: math.unit(489, "megameters")
  6440. },
  6441. {
  6442. name: "Teramacro",
  6443. height: math.unit(2471635000000, "meters")
  6444. },
  6445. {
  6446. name: "Examacro",
  6447. height: math.unit(8.0624e+26, "meters")
  6448. }
  6449. ]
  6450. ))
  6451. characterMakers.push(() => makeCharacter(
  6452. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6453. {
  6454. front: {
  6455. height: math.unit(1.72, "meters"),
  6456. weight: math.unit(68, "kg"),
  6457. name: "Front",
  6458. image: {
  6459. source: "./media/characters/lexi/front.svg"
  6460. }
  6461. }
  6462. },
  6463. [
  6464. {
  6465. name: "Very Smol",
  6466. height: math.unit(10, "mm")
  6467. },
  6468. {
  6469. name: "Micro",
  6470. height: math.unit(6.8, "cm"),
  6471. default: true
  6472. },
  6473. {
  6474. name: "Normal",
  6475. height: math.unit(1.72, "m")
  6476. }
  6477. ]
  6478. ))
  6479. characterMakers.push(() => makeCharacter(
  6480. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6481. {
  6482. front: {
  6483. height: math.unit(1.69, "meters"),
  6484. weight: math.unit(68, "kg"),
  6485. name: "Front",
  6486. image: {
  6487. source: "./media/characters/martin/front.svg",
  6488. extra: 596 / 581
  6489. }
  6490. }
  6491. },
  6492. [
  6493. {
  6494. name: "Micro",
  6495. height: math.unit(6.85, "cm"),
  6496. default: true
  6497. },
  6498. {
  6499. name: "Normal",
  6500. height: math.unit(1.69, "m")
  6501. }
  6502. ]
  6503. ))
  6504. characterMakers.push(() => makeCharacter(
  6505. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6506. {
  6507. front: {
  6508. height: math.unit(1.69, "meters"),
  6509. weight: math.unit(68, "kg"),
  6510. name: "Front",
  6511. image: {
  6512. source: "./media/characters/juno/front.svg"
  6513. }
  6514. }
  6515. },
  6516. [
  6517. {
  6518. name: "Micro",
  6519. height: math.unit(7, "cm")
  6520. },
  6521. {
  6522. name: "Normal",
  6523. height: math.unit(1.89, "m")
  6524. },
  6525. {
  6526. name: "Macro",
  6527. height: math.unit(353, "meters"),
  6528. default: true
  6529. }
  6530. ]
  6531. ))
  6532. characterMakers.push(() => makeCharacter(
  6533. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6534. {
  6535. front: {
  6536. height: math.unit(1.93, "meters"),
  6537. weight: math.unit(83, "kg"),
  6538. name: "Front",
  6539. image: {
  6540. source: "./media/characters/samantha/front.svg"
  6541. }
  6542. },
  6543. frontClothed: {
  6544. height: math.unit(1.93, "meters"),
  6545. weight: math.unit(83, "kg"),
  6546. name: "Front (Clothed)",
  6547. image: {
  6548. source: "./media/characters/samantha/front-clothed.svg"
  6549. }
  6550. },
  6551. back: {
  6552. height: math.unit(1.93, "meters"),
  6553. weight: math.unit(83, "kg"),
  6554. name: "Back",
  6555. image: {
  6556. source: "./media/characters/samantha/back.svg"
  6557. }
  6558. },
  6559. },
  6560. [
  6561. {
  6562. name: "Normal",
  6563. height: math.unit(1.93, "m")
  6564. },
  6565. {
  6566. name: "Macro",
  6567. height: math.unit(74, "meters"),
  6568. default: true
  6569. },
  6570. {
  6571. name: "Macro+",
  6572. height: math.unit(223, "meters"),
  6573. },
  6574. {
  6575. name: "Megamacro",
  6576. height: math.unit(8381, "meters"),
  6577. },
  6578. {
  6579. name: "Megamacro+",
  6580. height: math.unit(12000, "kilometers")
  6581. },
  6582. ]
  6583. ))
  6584. characterMakers.push(() => makeCharacter(
  6585. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6586. {
  6587. front: {
  6588. height: math.unit(1.92, "meters"),
  6589. weight: math.unit(80, "kg"),
  6590. name: "Front",
  6591. image: {
  6592. source: "./media/characters/dr-clay/front.svg"
  6593. }
  6594. },
  6595. frontClothed: {
  6596. height: math.unit(1.92, "meters"),
  6597. weight: math.unit(80, "kg"),
  6598. name: "Front (Clothed)",
  6599. image: {
  6600. source: "./media/characters/dr-clay/front-clothed.svg"
  6601. }
  6602. }
  6603. },
  6604. [
  6605. {
  6606. name: "Normal",
  6607. height: math.unit(1.92, "m")
  6608. },
  6609. {
  6610. name: "Macro",
  6611. height: math.unit(214, "meters"),
  6612. default: true
  6613. },
  6614. {
  6615. name: "Macro+",
  6616. height: math.unit(12.237, "meters"),
  6617. },
  6618. {
  6619. name: "Megamacro",
  6620. height: math.unit(557, "megameters"),
  6621. },
  6622. {
  6623. name: "Unimaginable",
  6624. height: math.unit(120e9, "lightyears")
  6625. },
  6626. ]
  6627. ))
  6628. characterMakers.push(() => makeCharacter(
  6629. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6630. {
  6631. front: {
  6632. height: math.unit(2, "meters"),
  6633. weight: math.unit(80, "kg"),
  6634. name: "Front",
  6635. image: {
  6636. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6637. }
  6638. }
  6639. },
  6640. [
  6641. {
  6642. name: "Teramacro",
  6643. height: math.unit(500000, "lightyears"),
  6644. default: true
  6645. },
  6646. ]
  6647. ))
  6648. characterMakers.push(() => makeCharacter(
  6649. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6650. {
  6651. crux: {
  6652. height: math.unit(2, "meters"),
  6653. weight: math.unit(150, "kg"),
  6654. name: "Crux",
  6655. image: {
  6656. source: "./media/characters/vemus/crux.svg",
  6657. extra: 1074/936,
  6658. bottom: 23/1097
  6659. }
  6660. },
  6661. skunkTanuki: {
  6662. height: math.unit(2, "meters"),
  6663. weight: math.unit(150, "kg"),
  6664. name: "Skunk-Tanuki",
  6665. image: {
  6666. source: "./media/characters/vemus/skunk-tanuki.svg",
  6667. extra: 926/893,
  6668. bottom: 20/946
  6669. }
  6670. },
  6671. },
  6672. [
  6673. {
  6674. name: "Normal",
  6675. height: math.unit(3.75, "meters"),
  6676. default: true
  6677. },
  6678. {
  6679. name: "Big",
  6680. height: math.unit(8, "meters")
  6681. },
  6682. {
  6683. name: "Macro",
  6684. height: math.unit(100, "meters")
  6685. },
  6686. {
  6687. name: "Macro+",
  6688. height: math.unit(1500, "meters")
  6689. },
  6690. {
  6691. name: "Stellar",
  6692. height: math.unit(14e8, "meters")
  6693. },
  6694. ]
  6695. ))
  6696. characterMakers.push(() => makeCharacter(
  6697. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6698. {
  6699. front: {
  6700. height: math.unit(2, "meters"),
  6701. weight: math.unit(70, "kg"),
  6702. name: "Front",
  6703. image: {
  6704. source: "./media/characters/beherit/front.svg",
  6705. extra: 1408 / 1242
  6706. }
  6707. }
  6708. },
  6709. [
  6710. {
  6711. name: "Normal",
  6712. height: math.unit(6, "feet")
  6713. },
  6714. {
  6715. name: "Lorg",
  6716. height: math.unit(25, "feet"),
  6717. default: true
  6718. },
  6719. {
  6720. name: "Lorger",
  6721. height: math.unit(75, "feet")
  6722. },
  6723. {
  6724. name: "Macro",
  6725. height: math.unit(200, "meters")
  6726. },
  6727. ]
  6728. ))
  6729. characterMakers.push(() => makeCharacter(
  6730. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6731. {
  6732. front: {
  6733. height: math.unit(2, "meters"),
  6734. weight: math.unit(150, "kg"),
  6735. name: "Front",
  6736. image: {
  6737. source: "./media/characters/everett/front.svg",
  6738. extra: 2038 / 1737,
  6739. bottom: 0.03
  6740. }
  6741. },
  6742. paw: {
  6743. height: math.unit(2 / 3.6, "meters"),
  6744. name: "Paw",
  6745. image: {
  6746. source: "./media/characters/everett/paw.svg"
  6747. }
  6748. },
  6749. },
  6750. [
  6751. {
  6752. name: "Normal",
  6753. height: math.unit(15, "feet"),
  6754. default: true
  6755. },
  6756. {
  6757. name: "Lorg",
  6758. height: math.unit(70, "feet"),
  6759. default: true
  6760. },
  6761. {
  6762. name: "Lorger",
  6763. height: math.unit(250, "feet")
  6764. },
  6765. {
  6766. name: "Macro",
  6767. height: math.unit(500, "meters")
  6768. },
  6769. ]
  6770. ))
  6771. characterMakers.push(() => makeCharacter(
  6772. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6773. {
  6774. front: {
  6775. height: math.unit(2, "meters"),
  6776. weight: math.unit(86, "kg"),
  6777. name: "Front",
  6778. image: {
  6779. source: "./media/characters/rose/front.svg",
  6780. extra: 1785/1636,
  6781. bottom: 30/1815
  6782. }
  6783. },
  6784. frontSporty: {
  6785. height: math.unit(2, "meters"),
  6786. weight: math.unit(86, "kg"),
  6787. name: "Front (Sporty)",
  6788. image: {
  6789. source: "./media/characters/rose/front-sporty.svg",
  6790. extra: 350/335,
  6791. bottom: 10/360
  6792. }
  6793. },
  6794. frontAlt: {
  6795. height: math.unit(1.6, "meters"),
  6796. weight: math.unit(86, "kg"),
  6797. name: "Front (Alt)",
  6798. image: {
  6799. source: "./media/characters/rose/front-alt.svg",
  6800. extra: 299/283,
  6801. bottom: 3/302
  6802. }
  6803. },
  6804. plush: {
  6805. height: math.unit(2, "meters"),
  6806. weight: math.unit(86/3, "kg"),
  6807. name: "Plush",
  6808. image: {
  6809. source: "./media/characters/rose/plush.svg",
  6810. extra: 361/337,
  6811. bottom: 11/372
  6812. }
  6813. },
  6814. },
  6815. [
  6816. {
  6817. name: "True Micro",
  6818. height: math.unit(9, "cm")
  6819. },
  6820. {
  6821. name: "Micro",
  6822. height: math.unit(16, "cm")
  6823. },
  6824. {
  6825. name: "Normal",
  6826. height: math.unit(1.85, "meters"),
  6827. default: true
  6828. },
  6829. {
  6830. name: "Mini-Macro",
  6831. height: math.unit(5, "meters")
  6832. },
  6833. {
  6834. name: "Macro",
  6835. height: math.unit(15, "meters")
  6836. },
  6837. {
  6838. name: "True Macro",
  6839. height: math.unit(40, "meters")
  6840. },
  6841. {
  6842. name: "City Scale",
  6843. height: math.unit(1, "km")
  6844. },
  6845. ]
  6846. ))
  6847. characterMakers.push(() => makeCharacter(
  6848. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6849. {
  6850. front: {
  6851. height: math.unit(2, "meters"),
  6852. weight: math.unit(350, "lbs"),
  6853. name: "Front",
  6854. image: {
  6855. source: "./media/characters/regal/front.svg"
  6856. }
  6857. },
  6858. back: {
  6859. height: math.unit(2, "meters"),
  6860. weight: math.unit(350, "lbs"),
  6861. name: "Back",
  6862. image: {
  6863. source: "./media/characters/regal/back.svg"
  6864. }
  6865. },
  6866. },
  6867. [
  6868. {
  6869. name: "Macro",
  6870. height: math.unit(350, "feet"),
  6871. default: true
  6872. }
  6873. ]
  6874. ))
  6875. characterMakers.push(() => makeCharacter(
  6876. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6877. {
  6878. front: {
  6879. height: math.unit(4 + 11 / 12, "feet"),
  6880. weight: math.unit(100, "lbs"),
  6881. name: "Front",
  6882. image: {
  6883. source: "./media/characters/opal/front.svg"
  6884. }
  6885. },
  6886. frontAlt: {
  6887. height: math.unit(4 + 11 / 12, "feet"),
  6888. weight: math.unit(100, "lbs"),
  6889. name: "Front (Alt)",
  6890. image: {
  6891. source: "./media/characters/opal/front-alt.svg"
  6892. }
  6893. },
  6894. },
  6895. [
  6896. {
  6897. name: "Small",
  6898. height: math.unit(4 + 11 / 12, "feet")
  6899. },
  6900. {
  6901. name: "Normal",
  6902. height: math.unit(20, "feet"),
  6903. default: true
  6904. },
  6905. {
  6906. name: "Macro",
  6907. height: math.unit(120, "feet")
  6908. },
  6909. {
  6910. name: "Megamacro",
  6911. height: math.unit(80, "miles")
  6912. },
  6913. {
  6914. name: "True Size",
  6915. height: math.unit(100000, "lightyears")
  6916. },
  6917. ]
  6918. ))
  6919. characterMakers.push(() => makeCharacter(
  6920. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6921. {
  6922. front: {
  6923. height: math.unit(6, "feet"),
  6924. weight: math.unit(200, "lbs"),
  6925. name: "Front",
  6926. image: {
  6927. source: "./media/characters/vector-wuff/front.svg"
  6928. }
  6929. }
  6930. },
  6931. [
  6932. {
  6933. name: "Normal",
  6934. height: math.unit(2.8, "meters")
  6935. },
  6936. {
  6937. name: "Macro",
  6938. height: math.unit(450, "meters"),
  6939. default: true
  6940. },
  6941. {
  6942. name: "Megamacro",
  6943. height: math.unit(15, "kilometers")
  6944. }
  6945. ]
  6946. ))
  6947. characterMakers.push(() => makeCharacter(
  6948. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6949. {
  6950. front: {
  6951. height: math.unit(6, "feet"),
  6952. weight: math.unit(256, "lbs"),
  6953. name: "Front",
  6954. image: {
  6955. source: "./media/characters/dannik/front.svg"
  6956. }
  6957. }
  6958. },
  6959. [
  6960. {
  6961. name: "Macro",
  6962. height: math.unit(69.57, "meters"),
  6963. default: true
  6964. },
  6965. ]
  6966. ))
  6967. characterMakers.push(() => makeCharacter(
  6968. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6969. {
  6970. front: {
  6971. height: math.unit(6, "feet"),
  6972. weight: math.unit(120, "lbs"),
  6973. name: "Front",
  6974. image: {
  6975. source: "./media/characters/azura-saharah/front.svg"
  6976. }
  6977. },
  6978. back: {
  6979. height: math.unit(6, "feet"),
  6980. weight: math.unit(120, "lbs"),
  6981. name: "Back",
  6982. image: {
  6983. source: "./media/characters/azura-saharah/back.svg"
  6984. }
  6985. },
  6986. },
  6987. [
  6988. {
  6989. name: "Macro",
  6990. height: math.unit(100, "feet"),
  6991. default: true
  6992. },
  6993. ]
  6994. ))
  6995. characterMakers.push(() => makeCharacter(
  6996. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6997. {
  6998. side: {
  6999. height: math.unit(5 + 4 / 12, "feet"),
  7000. weight: math.unit(163, "lbs"),
  7001. name: "Side",
  7002. image: {
  7003. source: "./media/characters/kennedy/side.svg"
  7004. }
  7005. }
  7006. },
  7007. [
  7008. {
  7009. name: "Standard Doggo",
  7010. height: math.unit(5 + 4 / 12, "feet")
  7011. },
  7012. {
  7013. name: "Big Doggo",
  7014. height: math.unit(25 + 3 / 12, "feet"),
  7015. default: true
  7016. },
  7017. ]
  7018. ))
  7019. characterMakers.push(() => makeCharacter(
  7020. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7021. {
  7022. front: {
  7023. height: math.unit(6, "feet"),
  7024. weight: math.unit(90, "lbs"),
  7025. name: "Front",
  7026. image: {
  7027. source: "./media/characters/odi-lunar/front.svg"
  7028. }
  7029. }
  7030. },
  7031. [
  7032. {
  7033. name: "Micro",
  7034. height: math.unit(3, "inches"),
  7035. default: true
  7036. },
  7037. {
  7038. name: "Normal",
  7039. height: math.unit(5.5, "feet")
  7040. }
  7041. ]
  7042. ))
  7043. characterMakers.push(() => makeCharacter(
  7044. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7045. {
  7046. back: {
  7047. height: math.unit(6, "feet"),
  7048. weight: math.unit(220, "lbs"),
  7049. name: "Back",
  7050. image: {
  7051. source: "./media/characters/mandake/back.svg"
  7052. }
  7053. }
  7054. },
  7055. [
  7056. {
  7057. name: "Normal",
  7058. height: math.unit(7, "feet"),
  7059. default: true
  7060. },
  7061. {
  7062. name: "Macro",
  7063. height: math.unit(78, "feet")
  7064. },
  7065. {
  7066. name: "Macro+",
  7067. height: math.unit(300, "meters")
  7068. },
  7069. {
  7070. name: "Macro++",
  7071. height: math.unit(2400, "feet")
  7072. },
  7073. {
  7074. name: "Megamacro",
  7075. height: math.unit(5167, "meters")
  7076. },
  7077. {
  7078. name: "Gigamacro",
  7079. height: math.unit(41769, "miles")
  7080. },
  7081. ]
  7082. ))
  7083. characterMakers.push(() => makeCharacter(
  7084. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7085. {
  7086. front: {
  7087. height: math.unit(6, "feet"),
  7088. weight: math.unit(120, "lbs"),
  7089. name: "Front",
  7090. image: {
  7091. source: "./media/characters/yozey/front.svg"
  7092. }
  7093. },
  7094. frontAlt: {
  7095. height: math.unit(6, "feet"),
  7096. weight: math.unit(120, "lbs"),
  7097. name: "Front (Alt)",
  7098. image: {
  7099. source: "./media/characters/yozey/front-alt.svg"
  7100. }
  7101. },
  7102. side: {
  7103. height: math.unit(6, "feet"),
  7104. weight: math.unit(120, "lbs"),
  7105. name: "Side",
  7106. image: {
  7107. source: "./media/characters/yozey/side.svg"
  7108. }
  7109. },
  7110. },
  7111. [
  7112. {
  7113. name: "Micro",
  7114. height: math.unit(3, "inches"),
  7115. default: true
  7116. },
  7117. {
  7118. name: "Normal",
  7119. height: math.unit(6, "feet")
  7120. }
  7121. ]
  7122. ))
  7123. characterMakers.push(() => makeCharacter(
  7124. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7125. {
  7126. front: {
  7127. height: math.unit(6, "feet"),
  7128. weight: math.unit(103, "lbs"),
  7129. name: "Front",
  7130. image: {
  7131. source: "./media/characters/valeska-voss/front.svg"
  7132. }
  7133. }
  7134. },
  7135. [
  7136. {
  7137. name: "Mini-Sized Sub",
  7138. height: math.unit(3.1, "inches")
  7139. },
  7140. {
  7141. name: "Mid-Sized Sub",
  7142. height: math.unit(6.2, "inches")
  7143. },
  7144. {
  7145. name: "Full-Sized Sub",
  7146. height: math.unit(9.3, "inches")
  7147. },
  7148. {
  7149. name: "Normal",
  7150. height: math.unit(5 + 2 / 12, "foot"),
  7151. default: true
  7152. },
  7153. ]
  7154. ))
  7155. characterMakers.push(() => makeCharacter(
  7156. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7157. {
  7158. front: {
  7159. height: math.unit(6, "feet"),
  7160. weight: math.unit(160, "lbs"),
  7161. name: "Front",
  7162. image: {
  7163. source: "./media/characters/gene-zeta/front.svg",
  7164. extra: 3006 / 2826,
  7165. bottom: 182 / 3188
  7166. }
  7167. }
  7168. },
  7169. [
  7170. {
  7171. name: "Micro",
  7172. height: math.unit(6, "inches")
  7173. },
  7174. {
  7175. name: "Normal",
  7176. height: math.unit(5 + 11 / 12, "foot"),
  7177. default: true
  7178. },
  7179. {
  7180. name: "Macro",
  7181. height: math.unit(140, "feet")
  7182. },
  7183. {
  7184. name: "Supercharged",
  7185. height: math.unit(2500, "feet")
  7186. },
  7187. ]
  7188. ))
  7189. characterMakers.push(() => makeCharacter(
  7190. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7191. {
  7192. front: {
  7193. height: math.unit(6, "feet"),
  7194. weight: math.unit(350, "lbs"),
  7195. name: "Front",
  7196. image: {
  7197. source: "./media/characters/razinox/front.svg",
  7198. extra: 1686 / 1548,
  7199. bottom: 28.2 / 1868
  7200. }
  7201. },
  7202. back: {
  7203. height: math.unit(6, "feet"),
  7204. weight: math.unit(350, "lbs"),
  7205. name: "Back",
  7206. image: {
  7207. source: "./media/characters/razinox/back.svg",
  7208. extra: 1660 / 1590,
  7209. bottom: 15 / 1665
  7210. }
  7211. },
  7212. },
  7213. [
  7214. {
  7215. name: "Normal",
  7216. height: math.unit(10 + 8 / 12, "foot")
  7217. },
  7218. {
  7219. name: "Minimacro",
  7220. height: math.unit(15, "foot")
  7221. },
  7222. {
  7223. name: "Macro",
  7224. height: math.unit(60, "foot"),
  7225. default: true
  7226. },
  7227. {
  7228. name: "Megamacro",
  7229. height: math.unit(5, "miles")
  7230. },
  7231. {
  7232. name: "Gigamacro",
  7233. height: math.unit(6000, "miles")
  7234. },
  7235. ]
  7236. ))
  7237. characterMakers.push(() => makeCharacter(
  7238. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7239. {
  7240. front: {
  7241. height: math.unit(6, "feet"),
  7242. weight: math.unit(150, "lbs"),
  7243. name: "Front",
  7244. image: {
  7245. source: "./media/characters/cobalt/front.svg"
  7246. }
  7247. }
  7248. },
  7249. [
  7250. {
  7251. name: "Normal",
  7252. height: math.unit(8 + 1 / 12, "foot")
  7253. },
  7254. {
  7255. name: "Macro",
  7256. height: math.unit(111, "foot"),
  7257. default: true
  7258. },
  7259. {
  7260. name: "Supracosmic",
  7261. height: math.unit(1e42, "feet")
  7262. },
  7263. ]
  7264. ))
  7265. characterMakers.push(() => makeCharacter(
  7266. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7267. {
  7268. front: {
  7269. height: math.unit(6, "feet"),
  7270. weight: math.unit(140, "lbs"),
  7271. name: "Front",
  7272. image: {
  7273. source: "./media/characters/amanda/front.svg"
  7274. }
  7275. }
  7276. },
  7277. [
  7278. {
  7279. name: "Micro",
  7280. height: math.unit(5, "inches"),
  7281. default: true
  7282. },
  7283. ]
  7284. ))
  7285. characterMakers.push(() => makeCharacter(
  7286. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7287. {
  7288. front: {
  7289. height: math.unit(2.75, "meters"),
  7290. weight: math.unit(1200, "lb"),
  7291. name: "Front",
  7292. image: {
  7293. source: "./media/characters/teal/front.svg",
  7294. extra: 2463 / 2320,
  7295. bottom: 166 / 2629
  7296. }
  7297. },
  7298. back: {
  7299. height: math.unit(2.75, "meters"),
  7300. weight: math.unit(1200, "lb"),
  7301. name: "Back",
  7302. image: {
  7303. source: "./media/characters/teal/back.svg",
  7304. extra: 2580 / 2489,
  7305. bottom: 151 / 2731
  7306. }
  7307. },
  7308. sitting: {
  7309. height: math.unit(1.9, "meters"),
  7310. weight: math.unit(1200, "lb"),
  7311. name: "Sitting",
  7312. image: {
  7313. source: "./media/characters/teal/sitting.svg",
  7314. extra: 623 / 590,
  7315. bottom: 121 / 744
  7316. }
  7317. },
  7318. standing: {
  7319. height: math.unit(2.75, "meters"),
  7320. weight: math.unit(1200, "lb"),
  7321. name: "Standing",
  7322. image: {
  7323. source: "./media/characters/teal/standing.svg",
  7324. extra: 923 / 893,
  7325. bottom: 60 / 983
  7326. }
  7327. },
  7328. stretching: {
  7329. height: math.unit(3.65, "meters"),
  7330. weight: math.unit(1200, "lb"),
  7331. name: "Stretching",
  7332. image: {
  7333. source: "./media/characters/teal/stretching.svg",
  7334. extra: 1276 / 1244,
  7335. bottom: 0 / 1276
  7336. }
  7337. },
  7338. legged: {
  7339. height: math.unit(1.3, "meters"),
  7340. weight: math.unit(100, "lb"),
  7341. name: "Legged",
  7342. image: {
  7343. source: "./media/characters/teal/legged.svg",
  7344. extra: 462 / 437,
  7345. bottom: 24 / 486
  7346. }
  7347. },
  7348. naga: {
  7349. height: math.unit(5.4, "meters"),
  7350. weight: math.unit(4000, "lb"),
  7351. name: "Naga",
  7352. image: {
  7353. source: "./media/characters/teal/naga.svg",
  7354. extra: 1902 / 1858,
  7355. bottom: 0 / 1902
  7356. }
  7357. },
  7358. hand: {
  7359. height: math.unit(0.52, "meters"),
  7360. name: "Hand",
  7361. image: {
  7362. source: "./media/characters/teal/hand.svg"
  7363. }
  7364. },
  7365. maw: {
  7366. height: math.unit(0.43, "meters"),
  7367. name: "Maw",
  7368. image: {
  7369. source: "./media/characters/teal/maw.svg"
  7370. }
  7371. },
  7372. slit: {
  7373. height: math.unit(0.25, "meters"),
  7374. name: "Slit",
  7375. image: {
  7376. source: "./media/characters/teal/slit.svg"
  7377. }
  7378. },
  7379. },
  7380. [
  7381. {
  7382. name: "Normal",
  7383. height: math.unit(2.75, "meters"),
  7384. default: true
  7385. },
  7386. {
  7387. name: "Macro",
  7388. height: math.unit(300, "feet")
  7389. },
  7390. {
  7391. name: "Macro+",
  7392. height: math.unit(2000, "feet")
  7393. },
  7394. ]
  7395. ))
  7396. characterMakers.push(() => makeCharacter(
  7397. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7398. {
  7399. frontCat: {
  7400. height: math.unit(6, "feet"),
  7401. weight: math.unit(180, "lbs"),
  7402. name: "Front (Cat)",
  7403. image: {
  7404. source: "./media/characters/ravin-amulet/front-cat.svg"
  7405. }
  7406. },
  7407. frontCatAlt: {
  7408. height: math.unit(6, "feet"),
  7409. weight: math.unit(180, "lbs"),
  7410. name: "Front (Alt, Cat)",
  7411. image: {
  7412. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7413. }
  7414. },
  7415. frontWerewolf: {
  7416. height: math.unit(6 * 1.2, "feet"),
  7417. weight: math.unit(225, "lbs"),
  7418. name: "Front (Werewolf)",
  7419. image: {
  7420. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7421. }
  7422. },
  7423. backWerewolf: {
  7424. height: math.unit(6 * 1.2, "feet"),
  7425. weight: math.unit(225, "lbs"),
  7426. name: "Back (Werewolf)",
  7427. image: {
  7428. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7429. }
  7430. },
  7431. },
  7432. [
  7433. {
  7434. name: "Nano",
  7435. height: math.unit(1, "micrometer")
  7436. },
  7437. {
  7438. name: "Micro",
  7439. height: math.unit(1, "inch")
  7440. },
  7441. {
  7442. name: "Normal",
  7443. height: math.unit(6, "feet"),
  7444. default: true
  7445. },
  7446. {
  7447. name: "Macro",
  7448. height: math.unit(60, "feet")
  7449. }
  7450. ]
  7451. ))
  7452. characterMakers.push(() => makeCharacter(
  7453. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7454. {
  7455. front: {
  7456. height: math.unit(6, "feet"),
  7457. weight: math.unit(165, "lbs"),
  7458. name: "Front",
  7459. image: {
  7460. source: "./media/characters/fluoresce/front.svg"
  7461. }
  7462. }
  7463. },
  7464. [
  7465. {
  7466. name: "Micro",
  7467. height: math.unit(6, "cm")
  7468. },
  7469. {
  7470. name: "Normal",
  7471. height: math.unit(5 + 7 / 12, "feet"),
  7472. default: true
  7473. },
  7474. {
  7475. name: "Macro",
  7476. height: math.unit(56, "feet")
  7477. },
  7478. {
  7479. name: "Megamacro",
  7480. height: math.unit(1.9, "miles")
  7481. },
  7482. ]
  7483. ))
  7484. characterMakers.push(() => makeCharacter(
  7485. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7486. {
  7487. front: {
  7488. height: math.unit(9 + 6 / 12, "feet"),
  7489. weight: math.unit(523, "lbs"),
  7490. name: "Side",
  7491. image: {
  7492. source: "./media/characters/aurora/side.svg"
  7493. }
  7494. }
  7495. },
  7496. [
  7497. {
  7498. name: "Normal",
  7499. height: math.unit(9 + 6 / 12, "feet")
  7500. },
  7501. {
  7502. name: "Macro",
  7503. height: math.unit(96, "feet"),
  7504. default: true
  7505. },
  7506. {
  7507. name: "Macro+",
  7508. height: math.unit(243, "feet")
  7509. },
  7510. ]
  7511. ))
  7512. characterMakers.push(() => makeCharacter(
  7513. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7514. {
  7515. front: {
  7516. height: math.unit(194, "cm"),
  7517. weight: math.unit(90, "kg"),
  7518. name: "Front",
  7519. image: {
  7520. source: "./media/characters/ranek/front.svg"
  7521. }
  7522. },
  7523. side: {
  7524. height: math.unit(194, "cm"),
  7525. weight: math.unit(90, "kg"),
  7526. name: "Side",
  7527. image: {
  7528. source: "./media/characters/ranek/side.svg"
  7529. }
  7530. },
  7531. back: {
  7532. height: math.unit(194, "cm"),
  7533. weight: math.unit(90, "kg"),
  7534. name: "Back",
  7535. image: {
  7536. source: "./media/characters/ranek/back.svg"
  7537. }
  7538. },
  7539. feral: {
  7540. height: math.unit(30, "cm"),
  7541. weight: math.unit(1.6, "lbs"),
  7542. name: "Feral",
  7543. image: {
  7544. source: "./media/characters/ranek/feral.svg"
  7545. }
  7546. },
  7547. },
  7548. [
  7549. {
  7550. name: "Normal",
  7551. height: math.unit(194, "cm"),
  7552. default: true
  7553. },
  7554. {
  7555. name: "Macro",
  7556. height: math.unit(100, "meters")
  7557. },
  7558. ]
  7559. ))
  7560. characterMakers.push(() => makeCharacter(
  7561. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7562. {
  7563. front: {
  7564. height: math.unit(5 + 6 / 12, "feet"),
  7565. weight: math.unit(153, "lbs"),
  7566. name: "Front",
  7567. image: {
  7568. source: "./media/characters/andrew-cooper/front.svg"
  7569. }
  7570. },
  7571. },
  7572. [
  7573. {
  7574. name: "Nano",
  7575. height: math.unit(1, "mm")
  7576. },
  7577. {
  7578. name: "Micro",
  7579. height: math.unit(2, "inches")
  7580. },
  7581. {
  7582. name: "Normal",
  7583. height: math.unit(5 + 6 / 12, "feet"),
  7584. default: true
  7585. }
  7586. ]
  7587. ))
  7588. characterMakers.push(() => makeCharacter(
  7589. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7590. {
  7591. front: {
  7592. height: math.unit(6, "feet"),
  7593. weight: math.unit(180, "lbs"),
  7594. name: "Front",
  7595. image: {
  7596. source: "./media/characters/akane-sato/front.svg",
  7597. extra: 1219 / 1140
  7598. }
  7599. },
  7600. back: {
  7601. height: math.unit(6, "feet"),
  7602. weight: math.unit(180, "lbs"),
  7603. name: "Back",
  7604. image: {
  7605. source: "./media/characters/akane-sato/back.svg",
  7606. extra: 1219 / 1170
  7607. }
  7608. },
  7609. },
  7610. [
  7611. {
  7612. name: "Normal",
  7613. height: math.unit(2.5, "meters")
  7614. },
  7615. {
  7616. name: "Macro",
  7617. height: math.unit(250, "meters"),
  7618. default: true
  7619. },
  7620. {
  7621. name: "Megamacro",
  7622. height: math.unit(25, "km")
  7623. },
  7624. ]
  7625. ))
  7626. characterMakers.push(() => makeCharacter(
  7627. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7628. {
  7629. front: {
  7630. height: math.unit(6, "feet"),
  7631. weight: math.unit(65, "kg"),
  7632. name: "Front",
  7633. image: {
  7634. source: "./media/characters/rook/front.svg",
  7635. extra: 960 / 950
  7636. }
  7637. }
  7638. },
  7639. [
  7640. {
  7641. name: "Normal",
  7642. height: math.unit(8.8, "feet")
  7643. },
  7644. {
  7645. name: "Macro",
  7646. height: math.unit(88, "feet"),
  7647. default: true
  7648. },
  7649. {
  7650. name: "Megamacro",
  7651. height: math.unit(8, "miles")
  7652. },
  7653. ]
  7654. ))
  7655. characterMakers.push(() => makeCharacter(
  7656. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7657. {
  7658. front: {
  7659. height: math.unit(12 + 2 / 12, "feet"),
  7660. weight: math.unit(808, "lbs"),
  7661. name: "Front",
  7662. image: {
  7663. source: "./media/characters/prodigy/front.svg"
  7664. }
  7665. }
  7666. },
  7667. [
  7668. {
  7669. name: "Normal",
  7670. height: math.unit(12 + 2 / 12, "feet"),
  7671. default: true
  7672. },
  7673. {
  7674. name: "Macro",
  7675. height: math.unit(143, "feet")
  7676. },
  7677. {
  7678. name: "Macro+",
  7679. height: math.unit(400, "feet")
  7680. },
  7681. ]
  7682. ))
  7683. characterMakers.push(() => makeCharacter(
  7684. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7685. {
  7686. front: {
  7687. height: math.unit(6, "feet"),
  7688. weight: math.unit(225, "lbs"),
  7689. name: "Front",
  7690. image: {
  7691. source: "./media/characters/daniel/front.svg"
  7692. }
  7693. },
  7694. leaning: {
  7695. height: math.unit(6, "feet"),
  7696. weight: math.unit(225, "lbs"),
  7697. name: "Leaning",
  7698. image: {
  7699. source: "./media/characters/daniel/leaning.svg"
  7700. }
  7701. },
  7702. },
  7703. [
  7704. {
  7705. name: "Macro",
  7706. height: math.unit(1000, "feet"),
  7707. default: true
  7708. },
  7709. ]
  7710. ))
  7711. characterMakers.push(() => makeCharacter(
  7712. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7713. {
  7714. front: {
  7715. height: math.unit(6, "feet"),
  7716. weight: math.unit(88, "lbs"),
  7717. name: "Front",
  7718. image: {
  7719. source: "./media/characters/chiros/front.svg",
  7720. extra: 306 / 226
  7721. }
  7722. },
  7723. side: {
  7724. height: math.unit(6, "feet"),
  7725. weight: math.unit(88, "lbs"),
  7726. name: "Side",
  7727. image: {
  7728. source: "./media/characters/chiros/side.svg",
  7729. extra: 306 / 226
  7730. }
  7731. },
  7732. },
  7733. [
  7734. {
  7735. name: "Normal",
  7736. height: math.unit(6, "cm"),
  7737. default: true
  7738. },
  7739. ]
  7740. ))
  7741. characterMakers.push(() => makeCharacter(
  7742. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7743. {
  7744. front: {
  7745. height: math.unit(6, "feet"),
  7746. weight: math.unit(100, "lbs"),
  7747. name: "Front",
  7748. image: {
  7749. source: "./media/characters/selka/front.svg",
  7750. extra: 947 / 887
  7751. }
  7752. }
  7753. },
  7754. [
  7755. {
  7756. name: "Normal",
  7757. height: math.unit(5, "cm"),
  7758. default: true
  7759. },
  7760. ]
  7761. ))
  7762. characterMakers.push(() => makeCharacter(
  7763. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7764. {
  7765. front: {
  7766. height: math.unit(8 + 3 / 12, "feet"),
  7767. weight: math.unit(424, "lbs"),
  7768. name: "Front",
  7769. image: {
  7770. source: "./media/characters/verin/front.svg",
  7771. extra: 1845 / 1550
  7772. }
  7773. },
  7774. frontArmored: {
  7775. height: math.unit(8 + 3 / 12, "feet"),
  7776. weight: math.unit(424, "lbs"),
  7777. name: "Front (Armored)",
  7778. image: {
  7779. source: "./media/characters/verin/front-armor.svg",
  7780. extra: 1845 / 1550,
  7781. bottom: 0.01
  7782. }
  7783. },
  7784. back: {
  7785. height: math.unit(8 + 3 / 12, "feet"),
  7786. weight: math.unit(424, "lbs"),
  7787. name: "Back",
  7788. image: {
  7789. source: "./media/characters/verin/back.svg",
  7790. bottom: 0.1,
  7791. extra: 1
  7792. }
  7793. },
  7794. foot: {
  7795. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7796. name: "Foot",
  7797. image: {
  7798. source: "./media/characters/verin/foot.svg"
  7799. }
  7800. },
  7801. },
  7802. [
  7803. {
  7804. name: "Normal",
  7805. height: math.unit(8 + 3 / 12, "feet")
  7806. },
  7807. {
  7808. name: "Minimacro",
  7809. height: math.unit(21, "feet"),
  7810. default: true
  7811. },
  7812. {
  7813. name: "Macro",
  7814. height: math.unit(626, "feet")
  7815. },
  7816. ]
  7817. ))
  7818. characterMakers.push(() => makeCharacter(
  7819. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7820. {
  7821. front: {
  7822. height: math.unit(2.718, "meters"),
  7823. weight: math.unit(150, "lbs"),
  7824. name: "Front",
  7825. image: {
  7826. source: "./media/characters/sovrim-terraquian/front.svg"
  7827. }
  7828. },
  7829. back: {
  7830. height: math.unit(2.718, "meters"),
  7831. weight: math.unit(150, "lbs"),
  7832. name: "Back",
  7833. image: {
  7834. source: "./media/characters/sovrim-terraquian/back.svg"
  7835. }
  7836. }
  7837. },
  7838. [
  7839. {
  7840. name: "Micro",
  7841. height: math.unit(2, "inches")
  7842. },
  7843. {
  7844. name: "Small",
  7845. height: math.unit(1, "meter")
  7846. },
  7847. {
  7848. name: "Normal",
  7849. height: math.unit(Math.E, "meters"),
  7850. default: true
  7851. },
  7852. {
  7853. name: "Macro",
  7854. height: math.unit(20, "meters")
  7855. },
  7856. {
  7857. name: "Macro+",
  7858. height: math.unit(400, "meters")
  7859. },
  7860. ]
  7861. ))
  7862. characterMakers.push(() => makeCharacter(
  7863. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7864. {
  7865. front: {
  7866. height: math.unit(7, "feet"),
  7867. weight: math.unit(489, "lbs"),
  7868. name: "Front",
  7869. image: {
  7870. source: "./media/characters/reece-silvermane/front.svg",
  7871. bottom: 0.02,
  7872. extra: 1
  7873. }
  7874. },
  7875. },
  7876. [
  7877. {
  7878. name: "Macro",
  7879. height: math.unit(1.5, "miles"),
  7880. default: true
  7881. },
  7882. ]
  7883. ))
  7884. characterMakers.push(() => makeCharacter(
  7885. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7886. {
  7887. front: {
  7888. height: math.unit(6, "feet"),
  7889. weight: math.unit(78, "kg"),
  7890. name: "Front",
  7891. image: {
  7892. source: "./media/characters/kane/front.svg",
  7893. extra: 978 / 899
  7894. }
  7895. },
  7896. },
  7897. [
  7898. {
  7899. name: "Normal",
  7900. height: math.unit(2.1, "m"),
  7901. },
  7902. {
  7903. name: "Macro",
  7904. height: math.unit(1, "km"),
  7905. default: true
  7906. },
  7907. ]
  7908. ))
  7909. characterMakers.push(() => makeCharacter(
  7910. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7911. {
  7912. front: {
  7913. height: math.unit(6, "feet"),
  7914. weight: math.unit(200, "kg"),
  7915. name: "Front",
  7916. image: {
  7917. source: "./media/characters/tegon/front.svg",
  7918. bottom: 0.01,
  7919. extra: 1
  7920. }
  7921. },
  7922. },
  7923. [
  7924. {
  7925. name: "Micro",
  7926. height: math.unit(1, "inch")
  7927. },
  7928. {
  7929. name: "Normal",
  7930. height: math.unit(6 + 3 / 12, "feet"),
  7931. default: true
  7932. },
  7933. {
  7934. name: "Macro",
  7935. height: math.unit(300, "feet")
  7936. },
  7937. {
  7938. name: "Megamacro",
  7939. height: math.unit(69, "miles")
  7940. },
  7941. ]
  7942. ))
  7943. characterMakers.push(() => makeCharacter(
  7944. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7945. {
  7946. side: {
  7947. height: math.unit(6, "feet"),
  7948. weight: math.unit(2304, "lbs"),
  7949. name: "Side",
  7950. image: {
  7951. source: "./media/characters/arcturax/side.svg",
  7952. extra: 790 / 376,
  7953. bottom: 0.01
  7954. }
  7955. },
  7956. },
  7957. [
  7958. {
  7959. name: "Micro",
  7960. height: math.unit(2, "inch")
  7961. },
  7962. {
  7963. name: "Normal",
  7964. height: math.unit(6, "feet")
  7965. },
  7966. {
  7967. name: "Macro",
  7968. height: math.unit(39, "feet"),
  7969. default: true
  7970. },
  7971. {
  7972. name: "Megamacro",
  7973. height: math.unit(7, "miles")
  7974. },
  7975. ]
  7976. ))
  7977. characterMakers.push(() => makeCharacter(
  7978. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7979. {
  7980. front: {
  7981. height: math.unit(6, "feet"),
  7982. weight: math.unit(50, "lbs"),
  7983. name: "Front",
  7984. image: {
  7985. source: "./media/characters/sentri/front.svg",
  7986. extra: 1750 / 1570,
  7987. bottom: 0.025
  7988. }
  7989. },
  7990. frontAlt: {
  7991. height: math.unit(6, "feet"),
  7992. weight: math.unit(50, "lbs"),
  7993. name: "Front (Alt)",
  7994. image: {
  7995. source: "./media/characters/sentri/front-alt.svg",
  7996. extra: 1750 / 1570,
  7997. bottom: 0.025
  7998. }
  7999. },
  8000. },
  8001. [
  8002. {
  8003. name: "Normal",
  8004. height: math.unit(15, "feet"),
  8005. default: true
  8006. },
  8007. {
  8008. name: "Macro",
  8009. height: math.unit(2500, "feet")
  8010. }
  8011. ]
  8012. ))
  8013. characterMakers.push(() => makeCharacter(
  8014. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8015. {
  8016. front: {
  8017. height: math.unit(5 + 8 / 12, "feet"),
  8018. weight: math.unit(130, "lbs"),
  8019. name: "Front",
  8020. image: {
  8021. source: "./media/characters/corvin/front.svg",
  8022. extra: 1803 / 1629
  8023. }
  8024. },
  8025. frontShirt: {
  8026. height: math.unit(5 + 8 / 12, "feet"),
  8027. weight: math.unit(130, "lbs"),
  8028. name: "Front (Shirt)",
  8029. image: {
  8030. source: "./media/characters/corvin/front-shirt.svg",
  8031. extra: 1803 / 1629
  8032. }
  8033. },
  8034. frontPoncho: {
  8035. height: math.unit(5 + 8 / 12, "feet"),
  8036. weight: math.unit(130, "lbs"),
  8037. name: "Front (Poncho)",
  8038. image: {
  8039. source: "./media/characters/corvin/front-poncho.svg",
  8040. extra: 1803 / 1629
  8041. }
  8042. },
  8043. side: {
  8044. height: math.unit(5 + 8 / 12, "feet"),
  8045. weight: math.unit(130, "lbs"),
  8046. name: "Side",
  8047. image: {
  8048. source: "./media/characters/corvin/side.svg",
  8049. extra: 1012 / 945
  8050. }
  8051. },
  8052. back: {
  8053. height: math.unit(5 + 8 / 12, "feet"),
  8054. weight: math.unit(130, "lbs"),
  8055. name: "Back",
  8056. image: {
  8057. source: "./media/characters/corvin/back.svg",
  8058. extra: 1803 / 1629
  8059. }
  8060. },
  8061. },
  8062. [
  8063. {
  8064. name: "Micro",
  8065. height: math.unit(3, "inches")
  8066. },
  8067. {
  8068. name: "Normal",
  8069. height: math.unit(5 + 8 / 12, "feet")
  8070. },
  8071. {
  8072. name: "Macro",
  8073. height: math.unit(300, "feet"),
  8074. default: true
  8075. },
  8076. {
  8077. name: "Megamacro",
  8078. height: math.unit(500, "miles")
  8079. }
  8080. ]
  8081. ))
  8082. characterMakers.push(() => makeCharacter(
  8083. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8084. {
  8085. front: {
  8086. height: math.unit(6, "feet"),
  8087. weight: math.unit(135, "lbs"),
  8088. name: "Front",
  8089. image: {
  8090. source: "./media/characters/q/front.svg",
  8091. extra: 854 / 752,
  8092. bottom: 0.005
  8093. }
  8094. },
  8095. back: {
  8096. height: math.unit(6, "feet"),
  8097. weight: math.unit(130, "lbs"),
  8098. name: "Back",
  8099. image: {
  8100. source: "./media/characters/q/back.svg",
  8101. extra: 854 / 752
  8102. }
  8103. },
  8104. },
  8105. [
  8106. {
  8107. name: "Macro",
  8108. height: math.unit(90, "feet"),
  8109. default: true
  8110. },
  8111. {
  8112. name: "Extra Macro",
  8113. height: math.unit(300, "feet"),
  8114. },
  8115. {
  8116. name: "BIG WALF",
  8117. height: math.unit(750, "feet"),
  8118. },
  8119. ]
  8120. ))
  8121. characterMakers.push(() => makeCharacter(
  8122. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8123. {
  8124. front: {
  8125. height: math.unit(6, "feet"),
  8126. weight: math.unit(150, "lbs"),
  8127. name: "Front",
  8128. image: {
  8129. source: "./media/characters/carley/front.svg",
  8130. extra: 3927 / 3540,
  8131. bottom: 29.2 / 735
  8132. }
  8133. }
  8134. },
  8135. [
  8136. {
  8137. name: "Normal",
  8138. height: math.unit(6 + 3 / 12, "feet")
  8139. },
  8140. {
  8141. name: "Macro",
  8142. height: math.unit(185, "feet"),
  8143. default: true
  8144. },
  8145. {
  8146. name: "Megamacro",
  8147. height: math.unit(8, "miles"),
  8148. },
  8149. ]
  8150. ))
  8151. characterMakers.push(() => makeCharacter(
  8152. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8153. {
  8154. front: {
  8155. height: math.unit(3, "feet"),
  8156. weight: math.unit(28, "lbs"),
  8157. name: "Front",
  8158. image: {
  8159. source: "./media/characters/citrine/front.svg"
  8160. }
  8161. }
  8162. },
  8163. [
  8164. {
  8165. name: "Normal",
  8166. height: math.unit(3, "feet"),
  8167. default: true
  8168. }
  8169. ]
  8170. ))
  8171. characterMakers.push(() => makeCharacter(
  8172. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8173. {
  8174. front: {
  8175. height: math.unit(14, "feet"),
  8176. weight: math.unit(1450, "kg"),
  8177. capacity: math.unit(15, "people"),
  8178. name: "Front",
  8179. image: {
  8180. source: "./media/characters/aura-starwind/front.svg",
  8181. extra: 1440/1327,
  8182. bottom: 11/1451
  8183. }
  8184. },
  8185. side: {
  8186. height: math.unit(14, "feet"),
  8187. weight: math.unit(1450, "kg"),
  8188. capacity: math.unit(15, "people"),
  8189. name: "Side",
  8190. image: {
  8191. source: "./media/characters/aura-starwind/side.svg",
  8192. extra: 1654 / 1497
  8193. }
  8194. },
  8195. taur: {
  8196. height: math.unit(18, "feet"),
  8197. weight: math.unit(5500, "kg"),
  8198. capacity: math.unit(50, "people"),
  8199. name: "Taur",
  8200. image: {
  8201. source: "./media/characters/aura-starwind/taur.svg",
  8202. extra: 1760 / 1650
  8203. }
  8204. },
  8205. feral: {
  8206. height: math.unit(46, "feet"),
  8207. weight: math.unit(25000, "kg"),
  8208. capacity: math.unit(120, "people"),
  8209. name: "Feral",
  8210. image: {
  8211. source: "./media/characters/aura-starwind/feral.svg"
  8212. }
  8213. },
  8214. },
  8215. [
  8216. {
  8217. name: "Normal",
  8218. height: math.unit(14, "feet"),
  8219. default: true
  8220. },
  8221. {
  8222. name: "Macro",
  8223. height: math.unit(50, "meters")
  8224. },
  8225. {
  8226. name: "Megamacro",
  8227. height: math.unit(5000, "meters")
  8228. },
  8229. {
  8230. name: "Gigamacro",
  8231. height: math.unit(100000, "kilometers")
  8232. },
  8233. ]
  8234. ))
  8235. characterMakers.push(() => makeCharacter(
  8236. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8237. {
  8238. front: {
  8239. height: math.unit(2 + 7 / 12, "feet"),
  8240. weight: math.unit(32, "lbs"),
  8241. name: "Front",
  8242. image: {
  8243. source: "./media/characters/rivet/front.svg",
  8244. extra: 1716 / 1658,
  8245. bottom: 0.03
  8246. }
  8247. },
  8248. foot: {
  8249. height: math.unit(0.551, "feet"),
  8250. name: "Rivet's Foot",
  8251. image: {
  8252. source: "./media/characters/rivet/foot.svg"
  8253. },
  8254. rename: true
  8255. }
  8256. },
  8257. [
  8258. {
  8259. name: "Micro",
  8260. height: math.unit(1.5, "inches"),
  8261. },
  8262. {
  8263. name: "Normal",
  8264. height: math.unit(2 + 7 / 12, "feet"),
  8265. default: true
  8266. },
  8267. {
  8268. name: "Macro",
  8269. height: math.unit(85, "feet")
  8270. },
  8271. {
  8272. name: "Megamacro",
  8273. height: math.unit(2.2, "km")
  8274. }
  8275. ]
  8276. ))
  8277. characterMakers.push(() => makeCharacter(
  8278. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8279. {
  8280. front: {
  8281. height: math.unit(5 + 9 / 12, "feet"),
  8282. weight: math.unit(150, "lbs"),
  8283. name: "Front",
  8284. image: {
  8285. source: "./media/characters/coffee/front.svg",
  8286. extra: 3666 / 3032,
  8287. bottom: 0.04
  8288. }
  8289. },
  8290. foot: {
  8291. height: math.unit(1.29, "feet"),
  8292. name: "Foot",
  8293. image: {
  8294. source: "./media/characters/coffee/foot.svg"
  8295. }
  8296. },
  8297. },
  8298. [
  8299. {
  8300. name: "Micro",
  8301. height: math.unit(2, "inches"),
  8302. },
  8303. {
  8304. name: "Normal",
  8305. height: math.unit(5 + 9 / 12, "feet"),
  8306. default: true
  8307. },
  8308. {
  8309. name: "Macro",
  8310. height: math.unit(800, "feet")
  8311. },
  8312. {
  8313. name: "Megamacro",
  8314. height: math.unit(25, "miles")
  8315. }
  8316. ]
  8317. ))
  8318. characterMakers.push(() => makeCharacter(
  8319. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8320. {
  8321. front: {
  8322. height: math.unit(6, "feet"),
  8323. weight: math.unit(200, "lbs"),
  8324. name: "Front",
  8325. image: {
  8326. source: "./media/characters/chari-gal/front.svg",
  8327. extra: 1568 / 1385,
  8328. bottom: 0.047
  8329. }
  8330. },
  8331. gigantamax: {
  8332. height: math.unit(6 * 16, "feet"),
  8333. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8334. name: "Gigantamax",
  8335. image: {
  8336. source: "./media/characters/chari-gal/gigantamax.svg",
  8337. extra: 1124 / 888,
  8338. bottom: 0.03
  8339. }
  8340. },
  8341. },
  8342. [
  8343. {
  8344. name: "Normal",
  8345. height: math.unit(5 + 7 / 12, "feet")
  8346. },
  8347. {
  8348. name: "Macro",
  8349. height: math.unit(200, "feet"),
  8350. default: true
  8351. }
  8352. ]
  8353. ))
  8354. characterMakers.push(() => makeCharacter(
  8355. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8356. {
  8357. front: {
  8358. height: math.unit(6, "feet"),
  8359. weight: math.unit(150, "lbs"),
  8360. name: "Front",
  8361. image: {
  8362. source: "./media/characters/nova/front.svg",
  8363. extra: 5000 / 4722,
  8364. bottom: 0.02
  8365. }
  8366. }
  8367. },
  8368. [
  8369. {
  8370. name: "Micro-",
  8371. height: math.unit(0.8, "inches")
  8372. },
  8373. {
  8374. name: "Micro",
  8375. height: math.unit(2, "inches"),
  8376. default: true
  8377. },
  8378. ]
  8379. ))
  8380. characterMakers.push(() => makeCharacter(
  8381. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8382. {
  8383. front: {
  8384. height: math.unit(3 + 1 / 12, "feet"),
  8385. weight: math.unit(21.7, "lbs"),
  8386. name: "Front",
  8387. image: {
  8388. source: "./media/characters/argent/front.svg",
  8389. extra: 1471 / 1331,
  8390. bottom: 100.8 / 1575.5
  8391. }
  8392. }
  8393. },
  8394. [
  8395. {
  8396. name: "Micro",
  8397. height: math.unit(2, "inches")
  8398. },
  8399. {
  8400. name: "Normal",
  8401. height: math.unit(3 + 1 / 12, "feet"),
  8402. default: true
  8403. },
  8404. {
  8405. name: "Macro",
  8406. height: math.unit(120, "feet")
  8407. },
  8408. ]
  8409. ))
  8410. characterMakers.push(() => makeCharacter(
  8411. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8412. {
  8413. lamp: {
  8414. height: math.unit(7 * 1559 / 989, "feet"),
  8415. name: "Magic Lamp",
  8416. image: {
  8417. source: "./media/characters/mira-al-cul/lamp.svg",
  8418. extra: 1617 / 1559
  8419. }
  8420. },
  8421. front: {
  8422. height: math.unit(7, "feet"),
  8423. name: "Front",
  8424. image: {
  8425. source: "./media/characters/mira-al-cul/front.svg",
  8426. extra: 1044 / 990
  8427. }
  8428. },
  8429. },
  8430. [
  8431. {
  8432. name: "Heavily Restricted",
  8433. height: math.unit(7 * 1559 / 989, "feet")
  8434. },
  8435. {
  8436. name: "Freshly Freed",
  8437. height: math.unit(50 * 1559 / 989, "feet")
  8438. },
  8439. {
  8440. name: "World Encompassing",
  8441. height: math.unit(10000 * 1559 / 989, "miles")
  8442. },
  8443. {
  8444. name: "Galactic",
  8445. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8446. },
  8447. {
  8448. name: "Palmed Universe",
  8449. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8450. default: true
  8451. },
  8452. {
  8453. name: "Multiversal Matriarch",
  8454. height: math.unit(8.87e10, "yottameters")
  8455. },
  8456. {
  8457. name: "Void Mother",
  8458. height: math.unit(3.14e110, "yottaparsecs")
  8459. },
  8460. {
  8461. name: "Toying with Transcendence",
  8462. height: math.unit(1e307, "meters")
  8463. },
  8464. ]
  8465. ))
  8466. characterMakers.push(() => makeCharacter(
  8467. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8468. {
  8469. front: {
  8470. height: math.unit(17 + 1 / 12, "feet"),
  8471. weight: math.unit(476.2 * 5, "lbs"),
  8472. name: "Front",
  8473. image: {
  8474. source: "./media/characters/kuro-shi-uchū/front.svg",
  8475. extra: 2329 / 1835,
  8476. bottom: 0.02
  8477. }
  8478. },
  8479. },
  8480. [
  8481. {
  8482. name: "Micro",
  8483. height: math.unit(2, "inches")
  8484. },
  8485. {
  8486. name: "Normal",
  8487. height: math.unit(12, "meters")
  8488. },
  8489. {
  8490. name: "Planetary",
  8491. height: math.unit(0.00929, "AU"),
  8492. default: true
  8493. },
  8494. {
  8495. name: "Universal",
  8496. height: math.unit(20, "gigaparsecs")
  8497. },
  8498. ]
  8499. ))
  8500. characterMakers.push(() => makeCharacter(
  8501. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8502. {
  8503. front: {
  8504. height: math.unit(5 + 2 / 12, "feet"),
  8505. weight: math.unit(120, "lbs"),
  8506. name: "Front",
  8507. image: {
  8508. source: "./media/characters/katherine/front.svg",
  8509. extra: 2075 / 1969
  8510. }
  8511. },
  8512. dress: {
  8513. height: math.unit(5 + 2 / 12, "feet"),
  8514. weight: math.unit(120, "lbs"),
  8515. name: "Dress",
  8516. image: {
  8517. source: "./media/characters/katherine/dress.svg",
  8518. extra: 2258 / 2064
  8519. }
  8520. },
  8521. },
  8522. [
  8523. {
  8524. name: "Micro",
  8525. height: math.unit(1, "inches"),
  8526. default: true
  8527. },
  8528. {
  8529. name: "Normal",
  8530. height: math.unit(5 + 2 / 12, "feet")
  8531. },
  8532. {
  8533. name: "Macro",
  8534. height: math.unit(100, "meters")
  8535. },
  8536. {
  8537. name: "Megamacro",
  8538. height: math.unit(80, "miles")
  8539. },
  8540. ]
  8541. ))
  8542. characterMakers.push(() => makeCharacter(
  8543. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8544. {
  8545. front: {
  8546. height: math.unit(7 + 8 / 12, "feet"),
  8547. weight: math.unit(250, "lbs"),
  8548. name: "Front",
  8549. image: {
  8550. source: "./media/characters/yevis/front.svg",
  8551. extra: 1938 / 1755
  8552. }
  8553. }
  8554. },
  8555. [
  8556. {
  8557. name: "Mortal",
  8558. height: math.unit(7 + 8 / 12, "feet")
  8559. },
  8560. {
  8561. name: "Battle",
  8562. height: math.unit(25 + 11 / 12, "feet")
  8563. },
  8564. {
  8565. name: "Wrath",
  8566. height: math.unit(1654 + 11 / 12, "feet")
  8567. },
  8568. {
  8569. name: "Planet Destroyer",
  8570. height: math.unit(12000, "miles")
  8571. },
  8572. {
  8573. name: "Galaxy Conqueror",
  8574. height: math.unit(1.45, "zettameters"),
  8575. default: true
  8576. },
  8577. {
  8578. name: "Universal War",
  8579. height: math.unit(184, "gigaparsecs")
  8580. },
  8581. {
  8582. name: "Eternity War",
  8583. height: math.unit(1.98e55, "yottaparsecs")
  8584. },
  8585. ]
  8586. ))
  8587. characterMakers.push(() => makeCharacter(
  8588. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8589. {
  8590. front: {
  8591. height: math.unit(5 + 8 / 12, "feet"),
  8592. weight: math.unit(63, "kg"),
  8593. name: "Front",
  8594. image: {
  8595. source: "./media/characters/xavier/front.svg",
  8596. extra: 944 / 883
  8597. }
  8598. },
  8599. frontStretch: {
  8600. height: math.unit(5 + 8 / 12, "feet"),
  8601. weight: math.unit(63, "kg"),
  8602. name: "Stretching",
  8603. image: {
  8604. source: "./media/characters/xavier/front-stretch.svg",
  8605. extra: 962 / 820
  8606. }
  8607. },
  8608. },
  8609. [
  8610. {
  8611. name: "Normal",
  8612. height: math.unit(5 + 8 / 12, "feet")
  8613. },
  8614. {
  8615. name: "Macro",
  8616. height: math.unit(100, "meters"),
  8617. default: true
  8618. },
  8619. {
  8620. name: "McLargeHuge",
  8621. height: math.unit(10, "miles")
  8622. },
  8623. ]
  8624. ))
  8625. characterMakers.push(() => makeCharacter(
  8626. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8627. {
  8628. front: {
  8629. height: math.unit(5 + 5 / 12, "feet"),
  8630. weight: math.unit(150, "lb"),
  8631. name: "Front",
  8632. image: {
  8633. source: "./media/characters/joshii/front.svg",
  8634. extra: 765 / 653,
  8635. bottom: 51 / 816
  8636. }
  8637. },
  8638. foot: {
  8639. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8640. name: "Foot",
  8641. image: {
  8642. source: "./media/characters/joshii/foot.svg"
  8643. }
  8644. },
  8645. },
  8646. [
  8647. {
  8648. name: "Micro",
  8649. height: math.unit(2, "inches"),
  8650. default: true
  8651. },
  8652. {
  8653. name: "Normal",
  8654. height: math.unit(5 + 5 / 12, "feet")
  8655. },
  8656. {
  8657. name: "Macro",
  8658. height: math.unit(785, "feet")
  8659. },
  8660. {
  8661. name: "Megamacro",
  8662. height: math.unit(24.5, "miles")
  8663. },
  8664. ]
  8665. ))
  8666. characterMakers.push(() => makeCharacter(
  8667. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8668. {
  8669. front: {
  8670. height: math.unit(6, "feet"),
  8671. weight: math.unit(150, "lb"),
  8672. name: "Front",
  8673. image: {
  8674. source: "./media/characters/goddess-elizabeth/front.svg",
  8675. extra: 1800 / 1525,
  8676. bottom: 0.005
  8677. }
  8678. },
  8679. foot: {
  8680. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8681. name: "Foot",
  8682. image: {
  8683. source: "./media/characters/goddess-elizabeth/foot.svg"
  8684. }
  8685. },
  8686. mouth: {
  8687. height: math.unit(6, "feet"),
  8688. name: "Mouth",
  8689. image: {
  8690. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8691. }
  8692. },
  8693. },
  8694. [
  8695. {
  8696. name: "Micro",
  8697. height: math.unit(12, "feet")
  8698. },
  8699. {
  8700. name: "Normal",
  8701. height: math.unit(80, "miles"),
  8702. default: true
  8703. },
  8704. {
  8705. name: "Macro",
  8706. height: math.unit(15000, "parsecs")
  8707. },
  8708. ]
  8709. ))
  8710. characterMakers.push(() => makeCharacter(
  8711. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8712. {
  8713. front: {
  8714. height: math.unit(5 + 9 / 12, "feet"),
  8715. weight: math.unit(144, "lb"),
  8716. name: "Front",
  8717. image: {
  8718. source: "./media/characters/kara/front.svg"
  8719. }
  8720. },
  8721. feet: {
  8722. height: math.unit(6 / 6.765, "feet"),
  8723. name: "Kara's Feet",
  8724. rename: true,
  8725. image: {
  8726. source: "./media/characters/kara/feet.svg"
  8727. }
  8728. },
  8729. },
  8730. [
  8731. {
  8732. name: "Normal",
  8733. height: math.unit(5 + 9 / 12, "feet")
  8734. },
  8735. {
  8736. name: "Macro",
  8737. height: math.unit(174, "feet"),
  8738. default: true
  8739. },
  8740. ]
  8741. ))
  8742. characterMakers.push(() => makeCharacter(
  8743. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8744. {
  8745. front: {
  8746. height: math.unit(18, "feet"),
  8747. weight: math.unit(4050, "lb"),
  8748. name: "Front",
  8749. image: {
  8750. source: "./media/characters/tyrone/front.svg",
  8751. extra: 2405 / 2270,
  8752. bottom: 182 / 2587
  8753. }
  8754. },
  8755. },
  8756. [
  8757. {
  8758. name: "Normal",
  8759. height: math.unit(18, "feet"),
  8760. default: true
  8761. },
  8762. {
  8763. name: "Macro",
  8764. height: math.unit(300, "feet")
  8765. },
  8766. {
  8767. name: "Megamacro",
  8768. height: math.unit(15, "km")
  8769. },
  8770. {
  8771. name: "Gigamacro",
  8772. height: math.unit(500, "km")
  8773. },
  8774. {
  8775. name: "Teramacro",
  8776. height: math.unit(0.5, "gigameters")
  8777. },
  8778. {
  8779. name: "Omnimacro",
  8780. height: math.unit(1e252, "yottauniverse")
  8781. },
  8782. ]
  8783. ))
  8784. characterMakers.push(() => makeCharacter(
  8785. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8786. {
  8787. front: {
  8788. height: math.unit(7 + 8 / 12, "feet"),
  8789. weight: math.unit(120, "lb"),
  8790. name: "Front",
  8791. image: {
  8792. source: "./media/characters/danny/front.svg",
  8793. extra: 1490 / 1350
  8794. }
  8795. },
  8796. back: {
  8797. height: math.unit(7 + 8 / 12, "feet"),
  8798. weight: math.unit(120, "lb"),
  8799. name: "Back",
  8800. image: {
  8801. source: "./media/characters/danny/back.svg",
  8802. extra: 1490 / 1350
  8803. }
  8804. },
  8805. },
  8806. [
  8807. {
  8808. name: "Normal",
  8809. height: math.unit(7 + 8 / 12, "feet"),
  8810. default: true
  8811. },
  8812. ]
  8813. ))
  8814. characterMakers.push(() => makeCharacter(
  8815. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8816. {
  8817. front: {
  8818. height: math.unit(3.5, "inches"),
  8819. weight: math.unit(19, "grams"),
  8820. name: "Front",
  8821. image: {
  8822. source: "./media/characters/mallow/front.svg",
  8823. extra: 471 / 431
  8824. }
  8825. },
  8826. back: {
  8827. height: math.unit(3.5, "inches"),
  8828. weight: math.unit(19, "grams"),
  8829. name: "Back",
  8830. image: {
  8831. source: "./media/characters/mallow/back.svg",
  8832. extra: 471 / 431
  8833. }
  8834. },
  8835. },
  8836. [
  8837. {
  8838. name: "Normal",
  8839. height: math.unit(3.5, "inches"),
  8840. default: true
  8841. },
  8842. ]
  8843. ))
  8844. characterMakers.push(() => makeCharacter(
  8845. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8846. {
  8847. front: {
  8848. height: math.unit(9, "feet"),
  8849. weight: math.unit(230, "kg"),
  8850. name: "Front",
  8851. image: {
  8852. source: "./media/characters/starry-aqua/front.svg"
  8853. }
  8854. },
  8855. back: {
  8856. height: math.unit(9, "feet"),
  8857. weight: math.unit(230, "kg"),
  8858. name: "Back",
  8859. image: {
  8860. source: "./media/characters/starry-aqua/back.svg"
  8861. }
  8862. },
  8863. hand: {
  8864. height: math.unit(9 * 0.1168, "feet"),
  8865. name: "Hand",
  8866. image: {
  8867. source: "./media/characters/starry-aqua/hand.svg"
  8868. }
  8869. },
  8870. foot: {
  8871. height: math.unit(9 * 0.18, "feet"),
  8872. name: "Foot",
  8873. image: {
  8874. source: "./media/characters/starry-aqua/foot.svg"
  8875. }
  8876. }
  8877. },
  8878. [
  8879. {
  8880. name: "Micro",
  8881. height: math.unit(3, "inches")
  8882. },
  8883. {
  8884. name: "Normal",
  8885. height: math.unit(9, "feet")
  8886. },
  8887. {
  8888. name: "Macro",
  8889. height: math.unit(300, "feet"),
  8890. default: true
  8891. },
  8892. {
  8893. name: "Megamacro",
  8894. height: math.unit(3200, "feet")
  8895. }
  8896. ]
  8897. ))
  8898. characterMakers.push(() => makeCharacter(
  8899. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8900. {
  8901. front: {
  8902. height: math.unit(6, "feet"),
  8903. weight: math.unit(230, "lb"),
  8904. name: "Front",
  8905. image: {
  8906. source: "./media/characters/luka/front.svg",
  8907. extra: 1,
  8908. bottom: 0.025
  8909. }
  8910. },
  8911. },
  8912. [
  8913. {
  8914. name: "Normal",
  8915. height: math.unit(12 + 8 / 12, "feet"),
  8916. default: true
  8917. },
  8918. {
  8919. name: "Minimacro",
  8920. height: math.unit(20, "feet")
  8921. },
  8922. {
  8923. name: "Macro",
  8924. height: math.unit(250, "feet")
  8925. },
  8926. {
  8927. name: "Megamacro",
  8928. height: math.unit(5, "miles")
  8929. },
  8930. {
  8931. name: "Gigamacro",
  8932. height: math.unit(8000, "miles")
  8933. },
  8934. ]
  8935. ))
  8936. characterMakers.push(() => makeCharacter(
  8937. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8938. {
  8939. front: {
  8940. height: math.unit(6, "feet"),
  8941. weight: math.unit(150, "lb"),
  8942. name: "Front",
  8943. image: {
  8944. source: "./media/characters/natalie-nightring/front.svg",
  8945. extra: 1,
  8946. bottom: 0.06
  8947. }
  8948. },
  8949. },
  8950. [
  8951. {
  8952. name: "Uh Oh",
  8953. height: math.unit(0.1, "mm")
  8954. },
  8955. {
  8956. name: "Small",
  8957. height: math.unit(3, "inches")
  8958. },
  8959. {
  8960. name: "Human Scale",
  8961. height: math.unit(6, "feet")
  8962. },
  8963. {
  8964. name: "Librarian",
  8965. height: math.unit(50, "feet"),
  8966. default: true
  8967. },
  8968. {
  8969. name: "Immense",
  8970. height: math.unit(200, "miles")
  8971. },
  8972. ]
  8973. ))
  8974. characterMakers.push(() => makeCharacter(
  8975. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8976. {
  8977. front: {
  8978. height: math.unit(6, "feet"),
  8979. weight: math.unit(180, "lbs"),
  8980. name: "Front",
  8981. image: {
  8982. source: "./media/characters/danni-rosie/front.svg",
  8983. extra: 1260 / 1128,
  8984. bottom: 0.022
  8985. }
  8986. },
  8987. },
  8988. [
  8989. {
  8990. name: "Micro",
  8991. height: math.unit(2, "inches"),
  8992. default: true
  8993. },
  8994. ]
  8995. ))
  8996. characterMakers.push(() => makeCharacter(
  8997. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8998. {
  8999. front: {
  9000. height: math.unit(5 + 9 / 12, "feet"),
  9001. weight: math.unit(220, "lb"),
  9002. name: "Front",
  9003. image: {
  9004. source: "./media/characters/samantha-kruse/front.svg",
  9005. extra: (985 / 935),
  9006. bottom: 0.03
  9007. }
  9008. },
  9009. frontUndressed: {
  9010. height: math.unit(5 + 9 / 12, "feet"),
  9011. weight: math.unit(220, "lb"),
  9012. name: "Front (Undressed)",
  9013. image: {
  9014. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9015. extra: (973 / 923),
  9016. bottom: 0.025
  9017. }
  9018. },
  9019. fat: {
  9020. height: math.unit(5 + 9 / 12, "feet"),
  9021. weight: math.unit(900, "lb"),
  9022. name: "Front (Fat)",
  9023. image: {
  9024. source: "./media/characters/samantha-kruse/fat.svg",
  9025. extra: 2688 / 2561
  9026. }
  9027. },
  9028. },
  9029. [
  9030. {
  9031. name: "Normal",
  9032. height: math.unit(5 + 9 / 12, "feet"),
  9033. default: true
  9034. }
  9035. ]
  9036. ))
  9037. characterMakers.push(() => makeCharacter(
  9038. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9039. {
  9040. back: {
  9041. height: math.unit(5 + 4 / 12, "feet"),
  9042. weight: math.unit(4963, "lb"),
  9043. name: "Back",
  9044. image: {
  9045. source: "./media/characters/amelia-rosie/back.svg",
  9046. extra: 1113 / 963,
  9047. bottom: 0.01
  9048. }
  9049. },
  9050. },
  9051. [
  9052. {
  9053. name: "Level 0",
  9054. height: math.unit(5 + 4 / 12, "feet")
  9055. },
  9056. {
  9057. name: "Level 1",
  9058. height: math.unit(164597, "feet"),
  9059. default: true
  9060. },
  9061. {
  9062. name: "Level 2",
  9063. height: math.unit(956243, "miles")
  9064. },
  9065. {
  9066. name: "Level 3",
  9067. height: math.unit(29421709423, "miles")
  9068. },
  9069. {
  9070. name: "Level 4",
  9071. height: math.unit(154, "lightyears")
  9072. },
  9073. {
  9074. name: "Level 5",
  9075. height: math.unit(4738272, "lightyears")
  9076. },
  9077. {
  9078. name: "Level 6",
  9079. height: math.unit(145787152896, "lightyears")
  9080. },
  9081. ]
  9082. ))
  9083. characterMakers.push(() => makeCharacter(
  9084. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9085. {
  9086. front: {
  9087. height: math.unit(5 + 11 / 12, "feet"),
  9088. weight: math.unit(65, "kg"),
  9089. name: "Front",
  9090. image: {
  9091. source: "./media/characters/rook-kitara/front.svg",
  9092. extra: 1347 / 1274,
  9093. bottom: 0.005
  9094. }
  9095. },
  9096. },
  9097. [
  9098. {
  9099. name: "Totally Unfair",
  9100. height: math.unit(1.8, "mm")
  9101. },
  9102. {
  9103. name: "Lap Rookie",
  9104. height: math.unit(1.4, "feet")
  9105. },
  9106. {
  9107. name: "Normal",
  9108. height: math.unit(5 + 11 / 12, "feet"),
  9109. default: true
  9110. },
  9111. {
  9112. name: "How Did This Happen",
  9113. height: math.unit(80, "miles")
  9114. }
  9115. ]
  9116. ))
  9117. characterMakers.push(() => makeCharacter(
  9118. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9119. {
  9120. front: {
  9121. height: math.unit(7, "feet"),
  9122. weight: math.unit(300, "lb"),
  9123. name: "Front",
  9124. image: {
  9125. source: "./media/characters/pisces/front.svg",
  9126. extra: 2255 / 2115,
  9127. bottom: 0.03
  9128. }
  9129. },
  9130. back: {
  9131. height: math.unit(7, "feet"),
  9132. weight: math.unit(300, "lb"),
  9133. name: "Back",
  9134. image: {
  9135. source: "./media/characters/pisces/back.svg",
  9136. extra: 2146 / 2055,
  9137. bottom: 0.04
  9138. }
  9139. },
  9140. },
  9141. [
  9142. {
  9143. name: "Normal",
  9144. height: math.unit(7, "feet"),
  9145. default: true
  9146. },
  9147. {
  9148. name: "Swimming Pool",
  9149. height: math.unit(12.2, "meters")
  9150. },
  9151. {
  9152. name: "Olympic Swimming Pool",
  9153. height: math.unit(56.3, "meters")
  9154. },
  9155. {
  9156. name: "Lake Superior",
  9157. height: math.unit(93900, "meters")
  9158. },
  9159. {
  9160. name: "Mediterranean Sea",
  9161. height: math.unit(644457, "meters")
  9162. },
  9163. {
  9164. name: "World's Oceans",
  9165. height: math.unit(4567491, "meters")
  9166. },
  9167. ]
  9168. ))
  9169. characterMakers.push(() => makeCharacter(
  9170. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9171. {
  9172. front: {
  9173. height: math.unit(2.3, "meters"),
  9174. weight: math.unit(120, "kg"),
  9175. name: "Front",
  9176. image: {
  9177. source: "./media/characters/zelas/front.svg"
  9178. }
  9179. },
  9180. side: {
  9181. height: math.unit(2.3, "meters"),
  9182. weight: math.unit(120, "kg"),
  9183. name: "Side",
  9184. image: {
  9185. source: "./media/characters/zelas/side.svg"
  9186. }
  9187. },
  9188. back: {
  9189. height: math.unit(2.3, "meters"),
  9190. weight: math.unit(120, "kg"),
  9191. name: "Back",
  9192. image: {
  9193. source: "./media/characters/zelas/back.svg"
  9194. }
  9195. },
  9196. foot: {
  9197. height: math.unit(1.116, "feet"),
  9198. name: "Foot",
  9199. image: {
  9200. source: "./media/characters/zelas/foot.svg"
  9201. }
  9202. },
  9203. },
  9204. [
  9205. {
  9206. name: "Normal",
  9207. height: math.unit(2.3, "meters")
  9208. },
  9209. {
  9210. name: "Macro",
  9211. height: math.unit(30, "meters"),
  9212. default: true
  9213. },
  9214. ]
  9215. ))
  9216. characterMakers.push(() => makeCharacter(
  9217. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9218. {
  9219. front: {
  9220. height: math.unit(1, "inch"),
  9221. weight: math.unit(0.21, "grams"),
  9222. name: "Front",
  9223. image: {
  9224. source: "./media/characters/talbot/front.svg",
  9225. extra: 594 / 544
  9226. }
  9227. },
  9228. },
  9229. [
  9230. {
  9231. name: "Micro",
  9232. height: math.unit(1, "inch"),
  9233. default: true
  9234. },
  9235. ]
  9236. ))
  9237. characterMakers.push(() => makeCharacter(
  9238. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9239. {
  9240. front: {
  9241. height: math.unit(3 + 3 / 12, "feet"),
  9242. weight: math.unit(51.8, "lb"),
  9243. name: "Front",
  9244. image: {
  9245. source: "./media/characters/fliss/front.svg",
  9246. extra: 840 / 640
  9247. }
  9248. },
  9249. },
  9250. [
  9251. {
  9252. name: "Teeny Tiny",
  9253. height: math.unit(1, "mm")
  9254. },
  9255. {
  9256. name: "Small",
  9257. height: math.unit(1, "inch"),
  9258. default: true
  9259. },
  9260. {
  9261. name: "Standard Sylveon",
  9262. height: math.unit(3 + 3 / 12, "feet")
  9263. },
  9264. {
  9265. name: "Large Nuisance",
  9266. height: math.unit(33, "feet")
  9267. },
  9268. {
  9269. name: "City Filler",
  9270. height: math.unit(3000, "feet")
  9271. },
  9272. {
  9273. name: "New Horizon",
  9274. height: math.unit(6000, "miles")
  9275. },
  9276. ]
  9277. ))
  9278. characterMakers.push(() => makeCharacter(
  9279. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9280. {
  9281. front: {
  9282. height: math.unit(5, "cm"),
  9283. weight: math.unit(1.94, "g"),
  9284. name: "Front",
  9285. image: {
  9286. source: "./media/characters/fleta/front.svg",
  9287. extra: 835 / 803
  9288. }
  9289. },
  9290. back: {
  9291. height: math.unit(5, "cm"),
  9292. weight: math.unit(1.94, "g"),
  9293. name: "Back",
  9294. image: {
  9295. source: "./media/characters/fleta/back.svg",
  9296. extra: 835 / 803
  9297. }
  9298. },
  9299. },
  9300. [
  9301. {
  9302. name: "Micro",
  9303. height: math.unit(5, "cm"),
  9304. default: true
  9305. },
  9306. ]
  9307. ))
  9308. characterMakers.push(() => makeCharacter(
  9309. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9310. {
  9311. front: {
  9312. height: math.unit(6, "feet"),
  9313. weight: math.unit(225, "lb"),
  9314. name: "Front",
  9315. image: {
  9316. source: "./media/characters/dominic/front.svg",
  9317. extra: 1770 / 1620,
  9318. bottom: 0.025
  9319. }
  9320. },
  9321. back: {
  9322. height: math.unit(6, "feet"),
  9323. weight: math.unit(225, "lb"),
  9324. name: "Back",
  9325. image: {
  9326. source: "./media/characters/dominic/back.svg",
  9327. extra: 1745 / 1620,
  9328. bottom: 0.065
  9329. }
  9330. },
  9331. },
  9332. [
  9333. {
  9334. name: "Nano",
  9335. height: math.unit(0.1, "mm")
  9336. },
  9337. {
  9338. name: "Micro-",
  9339. height: math.unit(1, "mm")
  9340. },
  9341. {
  9342. name: "Micro",
  9343. height: math.unit(4, "inches")
  9344. },
  9345. {
  9346. name: "Normal",
  9347. height: math.unit(6 + 4 / 12, "feet"),
  9348. default: true
  9349. },
  9350. {
  9351. name: "Macro",
  9352. height: math.unit(115, "feet")
  9353. },
  9354. {
  9355. name: "Macro+",
  9356. height: math.unit(955, "feet")
  9357. },
  9358. {
  9359. name: "Megamacro",
  9360. height: math.unit(8990, "feet")
  9361. },
  9362. {
  9363. name: "Gigmacro",
  9364. height: math.unit(9310, "miles")
  9365. },
  9366. {
  9367. name: "Teramacro",
  9368. height: math.unit(1567005010, "miles")
  9369. },
  9370. {
  9371. name: "Examacro",
  9372. height: math.unit(1425, "parsecs")
  9373. },
  9374. ]
  9375. ))
  9376. characterMakers.push(() => makeCharacter(
  9377. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9378. {
  9379. front: {
  9380. height: math.unit(400, "feet"),
  9381. weight: math.unit(44444444, "lb"),
  9382. name: "Front",
  9383. image: {
  9384. source: "./media/characters/major-colonel/front.svg"
  9385. }
  9386. },
  9387. back: {
  9388. height: math.unit(400, "feet"),
  9389. weight: math.unit(44444444, "lb"),
  9390. name: "Back",
  9391. image: {
  9392. source: "./media/characters/major-colonel/back.svg"
  9393. }
  9394. },
  9395. },
  9396. [
  9397. {
  9398. name: "Macro",
  9399. height: math.unit(400, "feet"),
  9400. default: true
  9401. },
  9402. ]
  9403. ))
  9404. characterMakers.push(() => makeCharacter(
  9405. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9406. {
  9407. catFront: {
  9408. height: math.unit(6, "feet"),
  9409. weight: math.unit(120, "lb"),
  9410. name: "Front (Cat Side)",
  9411. image: {
  9412. source: "./media/characters/axel-lycan/cat-front.svg",
  9413. extra: 430 / 402,
  9414. bottom: 43 / 472.35
  9415. }
  9416. },
  9417. catBack: {
  9418. height: math.unit(6, "feet"),
  9419. weight: math.unit(120, "lb"),
  9420. name: "Back (Cat Side)",
  9421. image: {
  9422. source: "./media/characters/axel-lycan/cat-back.svg",
  9423. extra: 447 / 419,
  9424. bottom: 23.3 / 469
  9425. }
  9426. },
  9427. wolfFront: {
  9428. height: math.unit(6, "feet"),
  9429. weight: math.unit(120, "lb"),
  9430. name: "Front (Wolf Side)",
  9431. image: {
  9432. source: "./media/characters/axel-lycan/wolf-front.svg",
  9433. extra: 485 / 456,
  9434. bottom: 19 / 504
  9435. }
  9436. },
  9437. wolfBack: {
  9438. height: math.unit(6, "feet"),
  9439. weight: math.unit(120, "lb"),
  9440. name: "Back (Wolf Side)",
  9441. image: {
  9442. source: "./media/characters/axel-lycan/wolf-back.svg",
  9443. extra: 475 / 438,
  9444. bottom: 39.2 / 514
  9445. }
  9446. },
  9447. },
  9448. [
  9449. {
  9450. name: "Macro",
  9451. height: math.unit(1, "km"),
  9452. default: true
  9453. },
  9454. ]
  9455. ))
  9456. characterMakers.push(() => makeCharacter(
  9457. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9458. {
  9459. front: {
  9460. height: math.unit(5 + 9 / 12, "feet"),
  9461. weight: math.unit(175, "lb"),
  9462. name: "Front",
  9463. image: {
  9464. source: "./media/characters/vanrel-hyena/front.svg",
  9465. extra: 1086 / 1010,
  9466. bottom: 0.04
  9467. }
  9468. },
  9469. },
  9470. [
  9471. {
  9472. name: "Normal",
  9473. height: math.unit(5 + 9 / 12, "feet"),
  9474. default: true
  9475. },
  9476. ]
  9477. ))
  9478. characterMakers.push(() => makeCharacter(
  9479. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9480. {
  9481. front: {
  9482. height: math.unit(6, "feet"),
  9483. weight: math.unit(103, "lb"),
  9484. name: "Front",
  9485. image: {
  9486. source: "./media/characters/abbott-absol/front.svg",
  9487. extra: 2010 / 1842
  9488. }
  9489. },
  9490. },
  9491. [
  9492. {
  9493. name: "Megamicro",
  9494. height: math.unit(0.1, "mm")
  9495. },
  9496. {
  9497. name: "Micro",
  9498. height: math.unit(1, "inch")
  9499. },
  9500. {
  9501. name: "Normal",
  9502. height: math.unit(6, "feet"),
  9503. default: true
  9504. },
  9505. ]
  9506. ))
  9507. characterMakers.push(() => makeCharacter(
  9508. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9509. {
  9510. front: {
  9511. height: math.unit(6, "feet"),
  9512. weight: math.unit(264, "lb"),
  9513. name: "Front",
  9514. image: {
  9515. source: "./media/characters/hector/front.svg",
  9516. extra: 2280 / 2130,
  9517. bottom: 0.07
  9518. }
  9519. },
  9520. },
  9521. [
  9522. {
  9523. name: "Normal",
  9524. height: math.unit(12.25, "foot"),
  9525. default: true
  9526. },
  9527. {
  9528. name: "Macro",
  9529. height: math.unit(160, "feet")
  9530. },
  9531. ]
  9532. ))
  9533. characterMakers.push(() => makeCharacter(
  9534. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9535. {
  9536. front: {
  9537. height: math.unit(6, "feet"),
  9538. weight: math.unit(150, "lb"),
  9539. name: "Front",
  9540. image: {
  9541. source: "./media/characters/sal/front.svg",
  9542. extra: 1846 / 1699,
  9543. bottom: 0.04
  9544. }
  9545. },
  9546. },
  9547. [
  9548. {
  9549. name: "Megamacro",
  9550. height: math.unit(10, "miles"),
  9551. default: true
  9552. },
  9553. ]
  9554. ))
  9555. characterMakers.push(() => makeCharacter(
  9556. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9557. {
  9558. front: {
  9559. height: math.unit(3, "meters"),
  9560. weight: math.unit(450, "kg"),
  9561. name: "front",
  9562. image: {
  9563. source: "./media/characters/ranger/front.svg",
  9564. extra: 2401 / 2243,
  9565. bottom: 0.05
  9566. }
  9567. },
  9568. },
  9569. [
  9570. {
  9571. name: "Normal",
  9572. height: math.unit(3, "meters"),
  9573. default: true
  9574. },
  9575. ]
  9576. ))
  9577. characterMakers.push(() => makeCharacter(
  9578. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9579. {
  9580. front: {
  9581. height: math.unit(14, "feet"),
  9582. weight: math.unit(800, "kg"),
  9583. name: "Front",
  9584. image: {
  9585. source: "./media/characters/theresa/front.svg",
  9586. extra: 3575 / 3346,
  9587. bottom: 0.03
  9588. }
  9589. },
  9590. },
  9591. [
  9592. {
  9593. name: "Normal",
  9594. height: math.unit(14, "feet"),
  9595. default: true
  9596. },
  9597. ]
  9598. ))
  9599. characterMakers.push(() => makeCharacter(
  9600. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9601. {
  9602. front: {
  9603. height: math.unit(6, "feet"),
  9604. weight: math.unit(3, "kg"),
  9605. name: "Front",
  9606. image: {
  9607. source: "./media/characters/ine/front.svg",
  9608. extra: 678 / 539,
  9609. bottom: 0.023
  9610. }
  9611. },
  9612. },
  9613. [
  9614. {
  9615. name: "Normal",
  9616. height: math.unit(2.265, "feet"),
  9617. default: true
  9618. },
  9619. ]
  9620. ))
  9621. characterMakers.push(() => makeCharacter(
  9622. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9623. {
  9624. front: {
  9625. height: math.unit(5, "feet"),
  9626. weight: math.unit(30, "kg"),
  9627. name: "Front",
  9628. image: {
  9629. source: "./media/characters/vial/front.svg",
  9630. extra: 1365 / 1277,
  9631. bottom: 0.04
  9632. }
  9633. },
  9634. },
  9635. [
  9636. {
  9637. name: "Normal",
  9638. height: math.unit(5, "feet"),
  9639. default: true
  9640. },
  9641. ]
  9642. ))
  9643. characterMakers.push(() => makeCharacter(
  9644. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9645. {
  9646. side: {
  9647. height: math.unit(3.4, "meters"),
  9648. weight: math.unit(1000, "lb"),
  9649. name: "Side",
  9650. image: {
  9651. source: "./media/characters/rovoska/side.svg",
  9652. extra: 4403 / 1515
  9653. }
  9654. },
  9655. },
  9656. [
  9657. {
  9658. name: "Normal",
  9659. height: math.unit(3.4, "meters"),
  9660. default: true
  9661. },
  9662. ]
  9663. ))
  9664. characterMakers.push(() => makeCharacter(
  9665. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9666. {
  9667. front: {
  9668. height: math.unit(8, "feet"),
  9669. weight: math.unit(315, "lb"),
  9670. name: "Front",
  9671. image: {
  9672. source: "./media/characters/gunner-rotthbauer/front.svg"
  9673. }
  9674. },
  9675. back: {
  9676. height: math.unit(8, "feet"),
  9677. weight: math.unit(315, "lb"),
  9678. name: "Back",
  9679. image: {
  9680. source: "./media/characters/gunner-rotthbauer/back.svg"
  9681. }
  9682. },
  9683. },
  9684. [
  9685. {
  9686. name: "Micro",
  9687. height: math.unit(3.5, "inches")
  9688. },
  9689. {
  9690. name: "Normal",
  9691. height: math.unit(8, "feet"),
  9692. default: true
  9693. },
  9694. {
  9695. name: "Macro",
  9696. height: math.unit(250, "feet")
  9697. },
  9698. {
  9699. name: "Megamacro",
  9700. height: math.unit(1, "AU")
  9701. },
  9702. ]
  9703. ))
  9704. characterMakers.push(() => makeCharacter(
  9705. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9706. {
  9707. front: {
  9708. height: math.unit(5 + 5 / 12, "feet"),
  9709. weight: math.unit(140, "lb"),
  9710. name: "Front",
  9711. image: {
  9712. source: "./media/characters/allatia/front.svg",
  9713. extra: 1227 / 1180,
  9714. bottom: 0.027
  9715. }
  9716. },
  9717. },
  9718. [
  9719. {
  9720. name: "Normal",
  9721. height: math.unit(5 + 5 / 12, "feet")
  9722. },
  9723. {
  9724. name: "Macro",
  9725. height: math.unit(250, "feet"),
  9726. default: true
  9727. },
  9728. {
  9729. name: "Megamacro",
  9730. height: math.unit(8, "miles")
  9731. }
  9732. ]
  9733. ))
  9734. characterMakers.push(() => makeCharacter(
  9735. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9736. {
  9737. front: {
  9738. height: math.unit(6, "feet"),
  9739. weight: math.unit(120, "lb"),
  9740. name: "Front",
  9741. image: {
  9742. source: "./media/characters/tene/front.svg",
  9743. extra: 1728 / 1578,
  9744. bottom: 0.022
  9745. }
  9746. },
  9747. stomping: {
  9748. height: math.unit(2.025, "meters"),
  9749. weight: math.unit(120, "lb"),
  9750. name: "Stomping",
  9751. image: {
  9752. source: "./media/characters/tene/stomping.svg",
  9753. extra: 938 / 873,
  9754. bottom: 0.01
  9755. }
  9756. },
  9757. sitting: {
  9758. height: math.unit(1, "meter"),
  9759. weight: math.unit(120, "lb"),
  9760. name: "Sitting",
  9761. image: {
  9762. source: "./media/characters/tene/sitting.svg",
  9763. extra: 437 / 415,
  9764. bottom: 0.1
  9765. }
  9766. },
  9767. feral: {
  9768. height: math.unit(3.9, "feet"),
  9769. weight: math.unit(250, "lb"),
  9770. name: "Feral",
  9771. image: {
  9772. source: "./media/characters/tene/feral.svg",
  9773. extra: 717 / 458,
  9774. bottom: 0.179
  9775. }
  9776. },
  9777. },
  9778. [
  9779. {
  9780. name: "Normal",
  9781. height: math.unit(6, "feet")
  9782. },
  9783. {
  9784. name: "Macro",
  9785. height: math.unit(300, "feet"),
  9786. default: true
  9787. },
  9788. {
  9789. name: "Megamacro",
  9790. height: math.unit(5, "miles")
  9791. },
  9792. ]
  9793. ))
  9794. characterMakers.push(() => makeCharacter(
  9795. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9796. {
  9797. side: {
  9798. height: math.unit(6, "feet"),
  9799. name: "Side",
  9800. image: {
  9801. source: "./media/characters/evander/side.svg",
  9802. extra: 877 / 477
  9803. }
  9804. },
  9805. },
  9806. [
  9807. {
  9808. name: "Normal",
  9809. height: math.unit(0.83, "meters"),
  9810. default: true
  9811. },
  9812. ]
  9813. ))
  9814. characterMakers.push(() => makeCharacter(
  9815. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9816. {
  9817. front: {
  9818. height: math.unit(12, "feet"),
  9819. weight: math.unit(1000, "lb"),
  9820. name: "Front",
  9821. image: {
  9822. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9823. extra: 1762 / 1611
  9824. }
  9825. },
  9826. back: {
  9827. height: math.unit(12, "feet"),
  9828. weight: math.unit(1000, "lb"),
  9829. name: "Back",
  9830. image: {
  9831. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9832. extra: 1762 / 1611
  9833. }
  9834. },
  9835. },
  9836. [
  9837. {
  9838. name: "Normal",
  9839. height: math.unit(12, "feet"),
  9840. default: true
  9841. },
  9842. {
  9843. name: "Kaiju",
  9844. height: math.unit(150, "feet")
  9845. },
  9846. ]
  9847. ))
  9848. characterMakers.push(() => makeCharacter(
  9849. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9850. {
  9851. front: {
  9852. height: math.unit(6, "feet"),
  9853. weight: math.unit(150, "lb"),
  9854. name: "Front",
  9855. image: {
  9856. source: "./media/characters/zero-alurus/front.svg"
  9857. }
  9858. },
  9859. back: {
  9860. height: math.unit(6, "feet"),
  9861. weight: math.unit(150, "lb"),
  9862. name: "Back",
  9863. image: {
  9864. source: "./media/characters/zero-alurus/back.svg"
  9865. }
  9866. },
  9867. },
  9868. [
  9869. {
  9870. name: "Normal",
  9871. height: math.unit(5 + 10 / 12, "feet")
  9872. },
  9873. {
  9874. name: "Macro",
  9875. height: math.unit(60, "feet"),
  9876. default: true
  9877. },
  9878. {
  9879. name: "Macro+",
  9880. height: math.unit(450, "feet")
  9881. },
  9882. ]
  9883. ))
  9884. characterMakers.push(() => makeCharacter(
  9885. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9886. {
  9887. front: {
  9888. height: math.unit(6, "feet"),
  9889. weight: math.unit(200, "lb"),
  9890. name: "Front",
  9891. image: {
  9892. source: "./media/characters/mega-shi/front.svg",
  9893. extra: 1279 / 1250,
  9894. bottom: 0.02
  9895. }
  9896. },
  9897. back: {
  9898. height: math.unit(6, "feet"),
  9899. weight: math.unit(200, "lb"),
  9900. name: "Back",
  9901. image: {
  9902. source: "./media/characters/mega-shi/back.svg",
  9903. extra: 1279 / 1250,
  9904. bottom: 0.02
  9905. }
  9906. },
  9907. },
  9908. [
  9909. {
  9910. name: "Micro",
  9911. height: math.unit(16 + 6 / 12, "feet")
  9912. },
  9913. {
  9914. name: "Third Dimension",
  9915. height: math.unit(40, "meters")
  9916. },
  9917. {
  9918. name: "Normal",
  9919. height: math.unit(660, "feet"),
  9920. default: true
  9921. },
  9922. {
  9923. name: "Megamacro",
  9924. height: math.unit(10, "miles")
  9925. },
  9926. {
  9927. name: "Planetary Launch",
  9928. height: math.unit(500, "miles")
  9929. },
  9930. {
  9931. name: "Interstellar",
  9932. height: math.unit(1e9, "miles")
  9933. },
  9934. {
  9935. name: "Leaving the Universe",
  9936. height: math.unit(1, "gigaparsec")
  9937. },
  9938. {
  9939. name: "Travelling Universes",
  9940. height: math.unit(30e15, "parsecs")
  9941. },
  9942. ]
  9943. ))
  9944. characterMakers.push(() => makeCharacter(
  9945. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9946. {
  9947. front: {
  9948. height: math.unit(6, "feet"),
  9949. weight: math.unit(150, "lb"),
  9950. name: "Front",
  9951. image: {
  9952. source: "./media/characters/odyssey/front.svg",
  9953. extra: 1782 / 1582,
  9954. bottom: 0.01
  9955. }
  9956. },
  9957. side: {
  9958. height: math.unit(5.7, "feet"),
  9959. weight: math.unit(140, "lb"),
  9960. name: "Side",
  9961. image: {
  9962. source: "./media/characters/odyssey/side.svg",
  9963. extra: 6462 / 5700
  9964. }
  9965. },
  9966. },
  9967. [
  9968. {
  9969. name: "Normal",
  9970. height: math.unit(5 + 4 / 12, "feet")
  9971. },
  9972. {
  9973. name: "Macro",
  9974. height: math.unit(1, "km")
  9975. },
  9976. {
  9977. name: "Megamacro",
  9978. height: math.unit(3000, "km")
  9979. },
  9980. {
  9981. name: "Gigamacro",
  9982. height: math.unit(1, "AU"),
  9983. default: true
  9984. },
  9985. {
  9986. name: "Omniversal",
  9987. height: math.unit(100e14, "lightyears")
  9988. },
  9989. ]
  9990. ))
  9991. characterMakers.push(() => makeCharacter(
  9992. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9993. {
  9994. front: {
  9995. height: math.unit(6, "feet"),
  9996. weight: math.unit(300, "lb"),
  9997. name: "Front",
  9998. image: {
  9999. source: "./media/characters/mekuto/front.svg",
  10000. extra: 921 / 832,
  10001. bottom: 0.03
  10002. }
  10003. },
  10004. hand: {
  10005. height: math.unit(6 / 10.24, "feet"),
  10006. name: "Hand",
  10007. image: {
  10008. source: "./media/characters/mekuto/hand.svg"
  10009. }
  10010. },
  10011. foot: {
  10012. height: math.unit(6 / 5.05, "feet"),
  10013. name: "Foot",
  10014. image: {
  10015. source: "./media/characters/mekuto/foot.svg"
  10016. }
  10017. },
  10018. },
  10019. [
  10020. {
  10021. name: "Minimicro",
  10022. height: math.unit(0.2, "inches")
  10023. },
  10024. {
  10025. name: "Micro",
  10026. height: math.unit(1.5, "inches")
  10027. },
  10028. {
  10029. name: "Normal",
  10030. height: math.unit(5 + 11 / 12, "feet"),
  10031. default: true
  10032. },
  10033. {
  10034. name: "Minimacro",
  10035. height: math.unit(17 + 9 / 12, "feet")
  10036. },
  10037. {
  10038. name: "Macro",
  10039. height: math.unit(177.5, "feet")
  10040. },
  10041. {
  10042. name: "Megamacro",
  10043. height: math.unit(152, "miles")
  10044. },
  10045. ]
  10046. ))
  10047. characterMakers.push(() => makeCharacter(
  10048. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10049. {
  10050. front: {
  10051. height: math.unit(6.5, "inches"),
  10052. weight: math.unit(13, "oz"),
  10053. name: "Front",
  10054. image: {
  10055. source: "./media/characters/dafydd-tomos/front.svg",
  10056. extra: 2990 / 2603,
  10057. bottom: 0.03
  10058. }
  10059. },
  10060. },
  10061. [
  10062. {
  10063. name: "Micro",
  10064. height: math.unit(6.5, "inches"),
  10065. default: true
  10066. },
  10067. ]
  10068. ))
  10069. characterMakers.push(() => makeCharacter(
  10070. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10071. {
  10072. front: {
  10073. height: math.unit(6, "feet"),
  10074. weight: math.unit(150, "lb"),
  10075. name: "Front",
  10076. image: {
  10077. source: "./media/characters/splinter/front.svg",
  10078. extra: 2990 / 2882,
  10079. bottom: 0.04
  10080. }
  10081. },
  10082. back: {
  10083. height: math.unit(6, "feet"),
  10084. weight: math.unit(150, "lb"),
  10085. name: "Back",
  10086. image: {
  10087. source: "./media/characters/splinter/back.svg",
  10088. extra: 2990 / 2882,
  10089. bottom: 0.04
  10090. }
  10091. },
  10092. },
  10093. [
  10094. {
  10095. name: "Normal",
  10096. height: math.unit(6, "feet")
  10097. },
  10098. {
  10099. name: "Macro",
  10100. height: math.unit(230, "meters"),
  10101. default: true
  10102. },
  10103. ]
  10104. ))
  10105. characterMakers.push(() => makeCharacter(
  10106. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10107. {
  10108. front: {
  10109. height: math.unit(4 + 10 / 12, "feet"),
  10110. weight: math.unit(480, "lb"),
  10111. name: "Front",
  10112. image: {
  10113. source: "./media/characters/snow-gabumon/front.svg",
  10114. extra: 1140 / 963,
  10115. bottom: 0.058
  10116. }
  10117. },
  10118. back: {
  10119. height: math.unit(4 + 10 / 12, "feet"),
  10120. weight: math.unit(480, "lb"),
  10121. name: "Back",
  10122. image: {
  10123. source: "./media/characters/snow-gabumon/back.svg",
  10124. extra: 1115 / 962,
  10125. bottom: 0.041
  10126. }
  10127. },
  10128. frontUndresed: {
  10129. height: math.unit(4 + 10 / 12, "feet"),
  10130. weight: math.unit(480, "lb"),
  10131. name: "Front (Undressed)",
  10132. image: {
  10133. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10134. extra: 1061 / 960,
  10135. bottom: 0.045
  10136. }
  10137. },
  10138. },
  10139. [
  10140. {
  10141. name: "Micro",
  10142. height: math.unit(1, "inch")
  10143. },
  10144. {
  10145. name: "Normal",
  10146. height: math.unit(4 + 10 / 12, "feet"),
  10147. default: true
  10148. },
  10149. {
  10150. name: "Macro",
  10151. height: math.unit(200, "feet")
  10152. },
  10153. {
  10154. name: "Megamacro",
  10155. height: math.unit(120, "miles")
  10156. },
  10157. {
  10158. name: "Gigamacro",
  10159. height: math.unit(9800, "miles")
  10160. },
  10161. ]
  10162. ))
  10163. characterMakers.push(() => makeCharacter(
  10164. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10165. {
  10166. front: {
  10167. height: math.unit(1.7, "meters"),
  10168. weight: math.unit(140, "lb"),
  10169. name: "Front",
  10170. image: {
  10171. source: "./media/characters/moody/front.svg",
  10172. extra: 3226 / 3007,
  10173. bottom: 0.087
  10174. }
  10175. },
  10176. },
  10177. [
  10178. {
  10179. name: "Micro",
  10180. height: math.unit(1, "mm")
  10181. },
  10182. {
  10183. name: "Normal",
  10184. height: math.unit(1.7, "meters"),
  10185. default: true
  10186. },
  10187. {
  10188. name: "Macro",
  10189. height: math.unit(80, "meters")
  10190. },
  10191. {
  10192. name: "Macro+",
  10193. height: math.unit(500, "meters")
  10194. },
  10195. ]
  10196. ))
  10197. characterMakers.push(() => makeCharacter(
  10198. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10199. {
  10200. front: {
  10201. height: math.unit(6, "feet"),
  10202. weight: math.unit(150, "lb"),
  10203. name: "Front",
  10204. image: {
  10205. source: "./media/characters/zyas/front.svg",
  10206. extra: 1180 / 1120,
  10207. bottom: 0.045
  10208. }
  10209. },
  10210. },
  10211. [
  10212. {
  10213. name: "Normal",
  10214. height: math.unit(10, "feet"),
  10215. default: true
  10216. },
  10217. {
  10218. name: "Macro",
  10219. height: math.unit(500, "feet")
  10220. },
  10221. {
  10222. name: "Megamacro",
  10223. height: math.unit(5, "miles")
  10224. },
  10225. {
  10226. name: "Teramacro",
  10227. height: math.unit(150000, "miles")
  10228. },
  10229. ]
  10230. ))
  10231. characterMakers.push(() => makeCharacter(
  10232. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10233. {
  10234. front: {
  10235. height: math.unit(6, "feet"),
  10236. weight: math.unit(150, "lb"),
  10237. name: "Front",
  10238. image: {
  10239. source: "./media/characters/cuon/front.svg",
  10240. extra: 1390 / 1320,
  10241. bottom: 0.008
  10242. }
  10243. },
  10244. },
  10245. [
  10246. {
  10247. name: "Micro",
  10248. height: math.unit(3, "inches")
  10249. },
  10250. {
  10251. name: "Normal",
  10252. height: math.unit(18 + 9 / 12, "feet"),
  10253. default: true
  10254. },
  10255. {
  10256. name: "Macro",
  10257. height: math.unit(360, "feet")
  10258. },
  10259. {
  10260. name: "Megamacro",
  10261. height: math.unit(360, "miles")
  10262. },
  10263. ]
  10264. ))
  10265. characterMakers.push(() => makeCharacter(
  10266. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10267. {
  10268. front: {
  10269. height: math.unit(2.4, "meters"),
  10270. weight: math.unit(70, "kg"),
  10271. name: "Front",
  10272. image: {
  10273. source: "./media/characters/nyanuxk/front.svg",
  10274. extra: 1172 / 1084,
  10275. bottom: 0.065
  10276. }
  10277. },
  10278. side: {
  10279. height: math.unit(2.4, "meters"),
  10280. weight: math.unit(70, "kg"),
  10281. name: "Side",
  10282. image: {
  10283. source: "./media/characters/nyanuxk/side.svg",
  10284. extra: 1190 / 1132,
  10285. bottom: 0.007
  10286. }
  10287. },
  10288. back: {
  10289. height: math.unit(2.4, "meters"),
  10290. weight: math.unit(70, "kg"),
  10291. name: "Back",
  10292. image: {
  10293. source: "./media/characters/nyanuxk/back.svg",
  10294. extra: 1200 / 1141,
  10295. bottom: 0.015
  10296. }
  10297. },
  10298. foot: {
  10299. height: math.unit(0.52, "meters"),
  10300. name: "Foot",
  10301. image: {
  10302. source: "./media/characters/nyanuxk/foot.svg"
  10303. }
  10304. },
  10305. },
  10306. [
  10307. {
  10308. name: "Micro",
  10309. height: math.unit(2, "cm")
  10310. },
  10311. {
  10312. name: "Normal",
  10313. height: math.unit(2.4, "meters"),
  10314. default: true
  10315. },
  10316. {
  10317. name: "Smaller Macro",
  10318. height: math.unit(120, "meters")
  10319. },
  10320. {
  10321. name: "Bigger Macro",
  10322. height: math.unit(1.2, "km")
  10323. },
  10324. {
  10325. name: "Megamacro",
  10326. height: math.unit(15, "kilometers")
  10327. },
  10328. {
  10329. name: "Gigamacro",
  10330. height: math.unit(2000, "km")
  10331. },
  10332. {
  10333. name: "Teramacro",
  10334. height: math.unit(500000, "km")
  10335. },
  10336. ]
  10337. ))
  10338. characterMakers.push(() => makeCharacter(
  10339. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10340. {
  10341. side: {
  10342. height: math.unit(6, "feet"),
  10343. name: "Side",
  10344. image: {
  10345. source: "./media/characters/ailbhe/side.svg",
  10346. extra: 757 / 464,
  10347. bottom: 0.041
  10348. }
  10349. },
  10350. },
  10351. [
  10352. {
  10353. name: "Normal",
  10354. height: math.unit(1.07, "meters"),
  10355. default: true
  10356. },
  10357. ]
  10358. ))
  10359. characterMakers.push(() => makeCharacter(
  10360. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10361. {
  10362. front: {
  10363. height: math.unit(6, "feet"),
  10364. weight: math.unit(120, "kg"),
  10365. name: "Front",
  10366. image: {
  10367. source: "./media/characters/zevulfius/front.svg",
  10368. extra: 965 / 903
  10369. }
  10370. },
  10371. side: {
  10372. height: math.unit(6, "feet"),
  10373. weight: math.unit(120, "kg"),
  10374. name: "Side",
  10375. image: {
  10376. source: "./media/characters/zevulfius/side.svg",
  10377. extra: 939 / 900
  10378. }
  10379. },
  10380. back: {
  10381. height: math.unit(6, "feet"),
  10382. weight: math.unit(120, "kg"),
  10383. name: "Back",
  10384. image: {
  10385. source: "./media/characters/zevulfius/back.svg",
  10386. extra: 918 / 854,
  10387. bottom: 0.005
  10388. }
  10389. },
  10390. foot: {
  10391. height: math.unit(6 / 3.72, "feet"),
  10392. name: "Foot",
  10393. image: {
  10394. source: "./media/characters/zevulfius/foot.svg"
  10395. }
  10396. },
  10397. },
  10398. [
  10399. {
  10400. name: "Macro",
  10401. height: math.unit(750, "meters")
  10402. },
  10403. {
  10404. name: "Megamacro",
  10405. height: math.unit(20, "km"),
  10406. default: true
  10407. },
  10408. {
  10409. name: "Gigamacro",
  10410. height: math.unit(2000, "km")
  10411. },
  10412. {
  10413. name: "Teramacro",
  10414. height: math.unit(250000, "km")
  10415. },
  10416. ]
  10417. ))
  10418. characterMakers.push(() => makeCharacter(
  10419. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10420. {
  10421. front: {
  10422. height: math.unit(100, "feet"),
  10423. weight: math.unit(350, "kg"),
  10424. name: "Front",
  10425. image: {
  10426. source: "./media/characters/rikes/front.svg",
  10427. extra: 1565 / 1483,
  10428. bottom: 0.017
  10429. }
  10430. },
  10431. },
  10432. [
  10433. {
  10434. name: "Macro",
  10435. height: math.unit(100, "feet"),
  10436. default: true
  10437. },
  10438. ]
  10439. ))
  10440. characterMakers.push(() => makeCharacter(
  10441. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10442. {
  10443. anthro: {
  10444. height: math.unit(8, "feet"),
  10445. weight: math.unit(120, "kg"),
  10446. name: "Anthro",
  10447. image: {
  10448. source: "./media/characters/adam-silver-mane/anthro.svg",
  10449. extra: 5743 / 5339,
  10450. bottom: 0.07
  10451. }
  10452. },
  10453. taur: {
  10454. height: math.unit(16, "feet"),
  10455. weight: math.unit(1500, "kg"),
  10456. name: "Taur",
  10457. image: {
  10458. source: "./media/characters/adam-silver-mane/taur.svg",
  10459. extra: 1713 / 1571,
  10460. bottom: 0.01
  10461. }
  10462. },
  10463. },
  10464. [
  10465. {
  10466. name: "Normal",
  10467. height: math.unit(8, "feet")
  10468. },
  10469. {
  10470. name: "Minimacro",
  10471. height: math.unit(80, "feet")
  10472. },
  10473. {
  10474. name: "Macro",
  10475. height: math.unit(800, "feet"),
  10476. default: true
  10477. },
  10478. {
  10479. name: "Megamacro",
  10480. height: math.unit(8000, "feet")
  10481. },
  10482. {
  10483. name: "Gigamacro",
  10484. height: math.unit(800, "miles")
  10485. },
  10486. {
  10487. name: "Teramacro",
  10488. height: math.unit(80000, "miles")
  10489. },
  10490. {
  10491. name: "Celestial",
  10492. height: math.unit(8e6, "miles")
  10493. },
  10494. {
  10495. name: "Star Dragon",
  10496. height: math.unit(800000, "parsecs")
  10497. },
  10498. {
  10499. name: "Godly",
  10500. height: math.unit(800, "teraparsecs")
  10501. },
  10502. ]
  10503. ))
  10504. characterMakers.push(() => makeCharacter(
  10505. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10506. {
  10507. front: {
  10508. height: math.unit(6, "feet"),
  10509. weight: math.unit(150, "lb"),
  10510. name: "Front",
  10511. image: {
  10512. source: "./media/characters/ky'owin/front.svg",
  10513. extra: 3888 / 3068,
  10514. bottom: 0.015
  10515. }
  10516. },
  10517. },
  10518. [
  10519. {
  10520. name: "Normal",
  10521. height: math.unit(6 + 8 / 12, "feet")
  10522. },
  10523. {
  10524. name: "Large",
  10525. height: math.unit(68, "feet")
  10526. },
  10527. {
  10528. name: "Macro",
  10529. height: math.unit(132, "feet")
  10530. },
  10531. {
  10532. name: "Macro+",
  10533. height: math.unit(340, "feet")
  10534. },
  10535. {
  10536. name: "Macro++",
  10537. height: math.unit(680, "feet"),
  10538. default: true
  10539. },
  10540. {
  10541. name: "Megamacro",
  10542. height: math.unit(1, "mile")
  10543. },
  10544. {
  10545. name: "Megamacro+",
  10546. height: math.unit(10, "miles")
  10547. },
  10548. ]
  10549. ))
  10550. characterMakers.push(() => makeCharacter(
  10551. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10552. {
  10553. front: {
  10554. height: math.unit(4, "feet"),
  10555. weight: math.unit(50, "lb"),
  10556. name: "Front",
  10557. image: {
  10558. source: "./media/characters/mal/front.svg",
  10559. extra: 785 / 724,
  10560. bottom: 0.07
  10561. }
  10562. },
  10563. },
  10564. [
  10565. {
  10566. name: "Micro",
  10567. height: math.unit(4, "inches")
  10568. },
  10569. {
  10570. name: "Normal",
  10571. height: math.unit(4, "feet"),
  10572. default: true
  10573. },
  10574. {
  10575. name: "Macro",
  10576. height: math.unit(200, "feet")
  10577. },
  10578. ]
  10579. ))
  10580. characterMakers.push(() => makeCharacter(
  10581. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10582. {
  10583. front: {
  10584. height: math.unit(6, "feet"),
  10585. weight: math.unit(150, "lb"),
  10586. name: "Front",
  10587. image: {
  10588. source: "./media/characters/jordan-deware/front.svg",
  10589. extra: 1191 / 1012
  10590. }
  10591. },
  10592. },
  10593. [
  10594. {
  10595. name: "Nano",
  10596. height: math.unit(0.01, "mm")
  10597. },
  10598. {
  10599. name: "Minimicro",
  10600. height: math.unit(1, "mm")
  10601. },
  10602. {
  10603. name: "Micro",
  10604. height: math.unit(0.5, "inches")
  10605. },
  10606. {
  10607. name: "Normal",
  10608. height: math.unit(4, "feet"),
  10609. default: true
  10610. },
  10611. {
  10612. name: "Minimacro",
  10613. height: math.unit(40, "meters")
  10614. },
  10615. {
  10616. name: "Small Macro",
  10617. height: math.unit(400, "meters")
  10618. },
  10619. {
  10620. name: "Macro",
  10621. height: math.unit(4, "miles")
  10622. },
  10623. {
  10624. name: "Megamacro",
  10625. height: math.unit(40, "miles")
  10626. },
  10627. {
  10628. name: "Megamacro+",
  10629. height: math.unit(400, "miles")
  10630. },
  10631. {
  10632. name: "Gigamacro",
  10633. height: math.unit(400000, "miles")
  10634. },
  10635. ]
  10636. ))
  10637. characterMakers.push(() => makeCharacter(
  10638. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10639. {
  10640. side: {
  10641. height: math.unit(6, "feet"),
  10642. weight: math.unit(150, "lb"),
  10643. name: "Side",
  10644. image: {
  10645. source: "./media/characters/kimiko/side.svg",
  10646. extra: 600 / 358
  10647. }
  10648. },
  10649. },
  10650. [
  10651. {
  10652. name: "Normal",
  10653. height: math.unit(15, "feet"),
  10654. default: true
  10655. },
  10656. {
  10657. name: "Macro",
  10658. height: math.unit(220, "feet")
  10659. },
  10660. {
  10661. name: "Macro+",
  10662. height: math.unit(1450, "feet")
  10663. },
  10664. {
  10665. name: "Megamacro",
  10666. height: math.unit(11500, "feet")
  10667. },
  10668. {
  10669. name: "Gigamacro",
  10670. height: math.unit(9500, "miles")
  10671. },
  10672. {
  10673. name: "Teramacro",
  10674. height: math.unit(2208005005, "miles")
  10675. },
  10676. {
  10677. name: "Examacro",
  10678. height: math.unit(2750, "parsecs")
  10679. },
  10680. {
  10681. name: "Zettamacro",
  10682. height: math.unit(101500, "parsecs")
  10683. },
  10684. ]
  10685. ))
  10686. characterMakers.push(() => makeCharacter(
  10687. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10688. {
  10689. front: {
  10690. height: math.unit(6, "feet"),
  10691. weight: math.unit(70, "kg"),
  10692. name: "Front",
  10693. image: {
  10694. source: "./media/characters/andrew-sleepy/front.svg"
  10695. }
  10696. },
  10697. side: {
  10698. height: math.unit(6, "feet"),
  10699. weight: math.unit(70, "kg"),
  10700. name: "Side",
  10701. image: {
  10702. source: "./media/characters/andrew-sleepy/side.svg"
  10703. }
  10704. },
  10705. },
  10706. [
  10707. {
  10708. name: "Micro",
  10709. height: math.unit(1, "mm"),
  10710. default: true
  10711. },
  10712. ]
  10713. ))
  10714. characterMakers.push(() => makeCharacter(
  10715. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10716. {
  10717. front: {
  10718. height: math.unit(6, "feet"),
  10719. weight: math.unit(150, "lb"),
  10720. name: "Front",
  10721. image: {
  10722. source: "./media/characters/judio/front.svg",
  10723. extra: 1258 / 1110
  10724. }
  10725. },
  10726. },
  10727. [
  10728. {
  10729. name: "Normal",
  10730. height: math.unit(5 + 6 / 12, "feet")
  10731. },
  10732. {
  10733. name: "Macro",
  10734. height: math.unit(1000, "feet"),
  10735. default: true
  10736. },
  10737. {
  10738. name: "Megamacro",
  10739. height: math.unit(10, "miles")
  10740. },
  10741. ]
  10742. ))
  10743. characterMakers.push(() => makeCharacter(
  10744. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10745. {
  10746. front: {
  10747. height: math.unit(6, "feet"),
  10748. weight: math.unit(68, "kg"),
  10749. name: "Front",
  10750. image: {
  10751. source: "./media/characters/nomaxice/front.svg",
  10752. extra: 1498 / 1073,
  10753. bottom: 0.075
  10754. }
  10755. },
  10756. foot: {
  10757. height: math.unit(1.1, "feet"),
  10758. name: "Foot",
  10759. image: {
  10760. source: "./media/characters/nomaxice/foot.svg"
  10761. }
  10762. },
  10763. },
  10764. [
  10765. {
  10766. name: "Micro",
  10767. height: math.unit(8, "cm")
  10768. },
  10769. {
  10770. name: "Norm",
  10771. height: math.unit(1.82, "m")
  10772. },
  10773. {
  10774. name: "Norm+",
  10775. height: math.unit(8.8, "feet")
  10776. },
  10777. {
  10778. name: "Big",
  10779. height: math.unit(8, "meters"),
  10780. default: true
  10781. },
  10782. {
  10783. name: "Macro",
  10784. height: math.unit(18, "meters")
  10785. },
  10786. {
  10787. name: "Macro+",
  10788. height: math.unit(88, "meters")
  10789. },
  10790. ]
  10791. ))
  10792. characterMakers.push(() => makeCharacter(
  10793. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10794. {
  10795. front: {
  10796. height: math.unit(12, "feet"),
  10797. weight: math.unit(1.5, "tons"),
  10798. name: "Front",
  10799. image: {
  10800. source: "./media/characters/dydros/front.svg",
  10801. extra: 863 / 800,
  10802. bottom: 0.015
  10803. }
  10804. },
  10805. back: {
  10806. height: math.unit(12, "feet"),
  10807. weight: math.unit(1.5, "tons"),
  10808. name: "Back",
  10809. image: {
  10810. source: "./media/characters/dydros/back.svg",
  10811. extra: 900 / 843,
  10812. bottom: 0.005
  10813. }
  10814. },
  10815. },
  10816. [
  10817. {
  10818. name: "Normal",
  10819. height: math.unit(12, "feet"),
  10820. default: true
  10821. },
  10822. ]
  10823. ))
  10824. characterMakers.push(() => makeCharacter(
  10825. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10826. {
  10827. front: {
  10828. height: math.unit(6, "feet"),
  10829. weight: math.unit(100, "kg"),
  10830. name: "Front",
  10831. image: {
  10832. source: "./media/characters/riggi/front.svg",
  10833. extra: 5787 / 5303
  10834. }
  10835. },
  10836. hyper: {
  10837. height: math.unit(6 * 5 / 3, "feet"),
  10838. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10839. name: "Hyper",
  10840. image: {
  10841. source: "./media/characters/riggi/hyper.svg",
  10842. extra: 3595 / 3485
  10843. }
  10844. },
  10845. },
  10846. [
  10847. {
  10848. name: "Small Macro",
  10849. height: math.unit(50, "feet")
  10850. },
  10851. {
  10852. name: "Default",
  10853. height: math.unit(200, "feet"),
  10854. default: true
  10855. },
  10856. {
  10857. name: "Loom",
  10858. height: math.unit(10000, "feet")
  10859. },
  10860. {
  10861. name: "Cruising Altitude",
  10862. height: math.unit(30000, "feet")
  10863. },
  10864. {
  10865. name: "Megamacro",
  10866. height: math.unit(100, "miles")
  10867. },
  10868. {
  10869. name: "Continent Sized",
  10870. height: math.unit(2800, "miles")
  10871. },
  10872. {
  10873. name: "Earth Sized",
  10874. height: math.unit(8000, "miles")
  10875. },
  10876. ]
  10877. ))
  10878. characterMakers.push(() => makeCharacter(
  10879. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10880. {
  10881. front: {
  10882. height: math.unit(6, "feet"),
  10883. weight: math.unit(250, "lb"),
  10884. name: "Front",
  10885. image: {
  10886. source: "./media/characters/alexi/front.svg",
  10887. extra: 3483 / 3291,
  10888. bottom: 0.04
  10889. }
  10890. },
  10891. back: {
  10892. height: math.unit(6, "feet"),
  10893. weight: math.unit(250, "lb"),
  10894. name: "Back",
  10895. image: {
  10896. source: "./media/characters/alexi/back.svg",
  10897. extra: 3533 / 3356,
  10898. bottom: 0.021
  10899. }
  10900. },
  10901. frontTransforming: {
  10902. height: math.unit(8.58, "feet"),
  10903. weight: math.unit(1300, "lb"),
  10904. name: "Transforming",
  10905. image: {
  10906. source: "./media/characters/alexi/front-transforming.svg",
  10907. extra: 437 / 409,
  10908. bottom: 19 / 458.66
  10909. }
  10910. },
  10911. frontTransformed: {
  10912. height: math.unit(12.5, "feet"),
  10913. weight: math.unit(4000, "lb"),
  10914. name: "Transformed",
  10915. image: {
  10916. source: "./media/characters/alexi/front-transformed.svg",
  10917. extra: 639 / 614,
  10918. bottom: 30.55 / 671
  10919. }
  10920. },
  10921. },
  10922. [
  10923. {
  10924. name: "Normal",
  10925. height: math.unit(14, "feet"),
  10926. default: true
  10927. },
  10928. {
  10929. name: "Minimacro",
  10930. height: math.unit(30, "meters")
  10931. },
  10932. {
  10933. name: "Macro",
  10934. height: math.unit(500, "meters")
  10935. },
  10936. {
  10937. name: "Megamacro",
  10938. height: math.unit(9000, "km")
  10939. },
  10940. {
  10941. name: "Teramacro",
  10942. height: math.unit(384000, "km")
  10943. },
  10944. ]
  10945. ))
  10946. characterMakers.push(() => makeCharacter(
  10947. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10948. {
  10949. front: {
  10950. height: math.unit(6, "feet"),
  10951. weight: math.unit(150, "lb"),
  10952. name: "Front",
  10953. image: {
  10954. source: "./media/characters/kayroo/front.svg",
  10955. extra: 1153 / 1038,
  10956. bottom: 0.06
  10957. }
  10958. },
  10959. foot: {
  10960. height: math.unit(6, "feet"),
  10961. weight: math.unit(150, "lb"),
  10962. name: "Foot",
  10963. image: {
  10964. source: "./media/characters/kayroo/foot.svg"
  10965. }
  10966. },
  10967. },
  10968. [
  10969. {
  10970. name: "Normal",
  10971. height: math.unit(8, "feet"),
  10972. default: true
  10973. },
  10974. {
  10975. name: "Minimacro",
  10976. height: math.unit(250, "feet")
  10977. },
  10978. {
  10979. name: "Macro",
  10980. height: math.unit(2800, "feet")
  10981. },
  10982. {
  10983. name: "Megamacro",
  10984. height: math.unit(5200, "feet")
  10985. },
  10986. {
  10987. name: "Gigamacro",
  10988. height: math.unit(27000, "feet")
  10989. },
  10990. {
  10991. name: "Omega",
  10992. height: math.unit(45000, "feet")
  10993. },
  10994. ]
  10995. ))
  10996. characterMakers.push(() => makeCharacter(
  10997. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10998. {
  10999. front: {
  11000. height: math.unit(18, "feet"),
  11001. weight: math.unit(5800, "lb"),
  11002. name: "Front",
  11003. image: {
  11004. source: "./media/characters/rhys/front.svg",
  11005. extra: 3386 / 3090,
  11006. bottom: 0.07
  11007. }
  11008. },
  11009. },
  11010. [
  11011. {
  11012. name: "Normal",
  11013. height: math.unit(18, "feet"),
  11014. default: true
  11015. },
  11016. {
  11017. name: "Working Size",
  11018. height: math.unit(200, "feet")
  11019. },
  11020. {
  11021. name: "Demolition Size",
  11022. height: math.unit(2000, "feet")
  11023. },
  11024. {
  11025. name: "Maximum Licensed Size",
  11026. height: math.unit(5, "miles")
  11027. },
  11028. {
  11029. name: "Maximum Observed Size",
  11030. height: math.unit(10, "yottameters")
  11031. },
  11032. ]
  11033. ))
  11034. characterMakers.push(() => makeCharacter(
  11035. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11036. {
  11037. front: {
  11038. height: math.unit(6, "feet"),
  11039. weight: math.unit(250, "lb"),
  11040. name: "Front",
  11041. image: {
  11042. source: "./media/characters/toto/front.svg",
  11043. extra: 527 / 479,
  11044. bottom: 0.05
  11045. }
  11046. },
  11047. },
  11048. [
  11049. {
  11050. name: "Micro",
  11051. height: math.unit(3, "feet")
  11052. },
  11053. {
  11054. name: "Normal",
  11055. height: math.unit(10, "feet")
  11056. },
  11057. {
  11058. name: "Macro",
  11059. height: math.unit(150, "feet"),
  11060. default: true
  11061. },
  11062. {
  11063. name: "Megamacro",
  11064. height: math.unit(1200, "feet")
  11065. },
  11066. ]
  11067. ))
  11068. characterMakers.push(() => makeCharacter(
  11069. { name: "King", species: ["lion"], tags: ["anthro"] },
  11070. {
  11071. back: {
  11072. height: math.unit(6, "feet"),
  11073. weight: math.unit(150, "lb"),
  11074. name: "Back",
  11075. image: {
  11076. source: "./media/characters/king/back.svg"
  11077. }
  11078. },
  11079. },
  11080. [
  11081. {
  11082. name: "Micro",
  11083. height: math.unit(2, "inches")
  11084. },
  11085. {
  11086. name: "Normal",
  11087. height: math.unit(8, "feet")
  11088. },
  11089. {
  11090. name: "Macro",
  11091. height: math.unit(200, "feet"),
  11092. default: true
  11093. },
  11094. {
  11095. name: "Megamacro",
  11096. height: math.unit(50, "miles")
  11097. },
  11098. ]
  11099. ))
  11100. characterMakers.push(() => makeCharacter(
  11101. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11102. {
  11103. anthro: {
  11104. height: math.unit(6 + 5 / 12, "feet"),
  11105. weight: math.unit(280, "lb"),
  11106. name: "Anthro",
  11107. image: {
  11108. source: "./media/characters/cordite/anthro.svg",
  11109. extra: 1986 / 1905,
  11110. bottom: 0.025
  11111. }
  11112. },
  11113. feral: {
  11114. height: math.unit(2, "feet"),
  11115. weight: math.unit(90, "lb"),
  11116. name: "Feral",
  11117. image: {
  11118. source: "./media/characters/cordite/feral.svg",
  11119. extra: 1260 / 755,
  11120. bottom: 0.05
  11121. }
  11122. },
  11123. },
  11124. [
  11125. {
  11126. name: "Normal",
  11127. height: math.unit(6 + 5 / 12, "feet"),
  11128. default: true
  11129. },
  11130. ]
  11131. ))
  11132. characterMakers.push(() => makeCharacter(
  11133. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11134. {
  11135. front: {
  11136. height: math.unit(6, "feet"),
  11137. weight: math.unit(150, "lb"),
  11138. name: "Front",
  11139. image: {
  11140. source: "./media/characters/pianostrong/front.svg",
  11141. extra: 6577 / 6254,
  11142. bottom: 0.02
  11143. }
  11144. },
  11145. side: {
  11146. height: math.unit(6, "feet"),
  11147. weight: math.unit(150, "lb"),
  11148. name: "Side",
  11149. image: {
  11150. source: "./media/characters/pianostrong/side.svg",
  11151. extra: 6106 / 5730
  11152. }
  11153. },
  11154. back: {
  11155. height: math.unit(6, "feet"),
  11156. weight: math.unit(150, "lb"),
  11157. name: "Back",
  11158. image: {
  11159. source: "./media/characters/pianostrong/back.svg",
  11160. extra: 6085 / 5733,
  11161. bottom: 0.01
  11162. }
  11163. },
  11164. },
  11165. [
  11166. {
  11167. name: "Macro",
  11168. height: math.unit(100, "feet")
  11169. },
  11170. {
  11171. name: "Macro+",
  11172. height: math.unit(300, "feet"),
  11173. default: true
  11174. },
  11175. {
  11176. name: "Macro++",
  11177. height: math.unit(1000, "feet")
  11178. },
  11179. ]
  11180. ))
  11181. characterMakers.push(() => makeCharacter(
  11182. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11183. {
  11184. front: {
  11185. height: math.unit(6, "feet"),
  11186. weight: math.unit(150, "lb"),
  11187. name: "Front",
  11188. image: {
  11189. source: "./media/characters/kona/front.svg",
  11190. extra: 2960 / 2629,
  11191. bottom: 0.005
  11192. }
  11193. },
  11194. },
  11195. [
  11196. {
  11197. name: "Normal",
  11198. height: math.unit(11 + 8 / 12, "feet")
  11199. },
  11200. {
  11201. name: "Macro",
  11202. height: math.unit(850, "feet"),
  11203. default: true
  11204. },
  11205. {
  11206. name: "Macro+",
  11207. height: math.unit(1.5, "km"),
  11208. default: true
  11209. },
  11210. {
  11211. name: "Megamacro",
  11212. height: math.unit(80, "miles")
  11213. },
  11214. {
  11215. name: "Gigamacro",
  11216. height: math.unit(3500, "miles")
  11217. },
  11218. ]
  11219. ))
  11220. characterMakers.push(() => makeCharacter(
  11221. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11222. {
  11223. side: {
  11224. height: math.unit(1.9, "meters"),
  11225. weight: math.unit(326, "kg"),
  11226. name: "Side",
  11227. image: {
  11228. source: "./media/characters/levi/side.svg",
  11229. extra: 1704 / 1334,
  11230. bottom: 0.02
  11231. }
  11232. },
  11233. },
  11234. [
  11235. {
  11236. name: "Normal",
  11237. height: math.unit(1.9, "meters"),
  11238. default: true
  11239. },
  11240. {
  11241. name: "Macro",
  11242. height: math.unit(20, "meters")
  11243. },
  11244. {
  11245. name: "Macro+",
  11246. height: math.unit(200, "meters")
  11247. },
  11248. {
  11249. name: "Megamacro",
  11250. height: math.unit(2, "km")
  11251. },
  11252. {
  11253. name: "Megamacro+",
  11254. height: math.unit(20, "km")
  11255. },
  11256. {
  11257. name: "Gigamacro",
  11258. height: math.unit(2500, "km")
  11259. },
  11260. {
  11261. name: "Gigamacro+",
  11262. height: math.unit(120000, "km")
  11263. },
  11264. {
  11265. name: "Teramacro",
  11266. height: math.unit(7.77e6, "km")
  11267. },
  11268. ]
  11269. ))
  11270. characterMakers.push(() => makeCharacter(
  11271. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11272. {
  11273. front: {
  11274. height: math.unit(6 + 4/12, "feet"),
  11275. weight: math.unit(190, "lb"),
  11276. name: "Front",
  11277. image: {
  11278. source: "./media/characters/bmc/front.svg",
  11279. extra: 1626/1472,
  11280. bottom: 79/1705
  11281. }
  11282. },
  11283. back: {
  11284. height: math.unit(6 + 4/12, "feet"),
  11285. weight: math.unit(190, "lb"),
  11286. name: "Back",
  11287. image: {
  11288. source: "./media/characters/bmc/back.svg",
  11289. extra: 1640/1479,
  11290. bottom: 45/1685
  11291. }
  11292. },
  11293. frontArmor: {
  11294. height: math.unit(6 + 4/12, "feet"),
  11295. weight: math.unit(190, "lb"),
  11296. name: "Front-armor",
  11297. image: {
  11298. source: "./media/characters/bmc/front-armor.svg",
  11299. extra: 1538/1468,
  11300. bottom: 79/1617
  11301. }
  11302. },
  11303. },
  11304. [
  11305. {
  11306. name: "Human-sized",
  11307. height: math.unit(6 + 4 / 12, "feet")
  11308. },
  11309. {
  11310. name: "Interactive Size",
  11311. height: math.unit(25, "feet")
  11312. },
  11313. {
  11314. name: "Small",
  11315. height: math.unit(250, "feet")
  11316. },
  11317. {
  11318. name: "Normal",
  11319. height: math.unit(1250, "feet"),
  11320. default: true
  11321. },
  11322. {
  11323. name: "Good Day",
  11324. height: math.unit(88, "miles")
  11325. },
  11326. {
  11327. name: "Largest Measured Size",
  11328. height: math.unit(105.960, "galaxies")
  11329. },
  11330. ]
  11331. ))
  11332. characterMakers.push(() => makeCharacter(
  11333. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11334. {
  11335. front: {
  11336. height: math.unit(20, "feet"),
  11337. weight: math.unit(2016, "kg"),
  11338. name: "Front",
  11339. image: {
  11340. source: "./media/characters/sven-the-kaiju/front.svg",
  11341. extra: 1277/1250,
  11342. bottom: 35/1312
  11343. }
  11344. },
  11345. mouth: {
  11346. height: math.unit(1.85, "feet"),
  11347. name: "Mouth",
  11348. image: {
  11349. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11350. }
  11351. },
  11352. },
  11353. [
  11354. {
  11355. name: "Fairy",
  11356. height: math.unit(6, "inches")
  11357. },
  11358. {
  11359. name: "Normal",
  11360. height: math.unit(20, "feet"),
  11361. default: true
  11362. },
  11363. {
  11364. name: "Rampage",
  11365. height: math.unit(200, "feet")
  11366. },
  11367. {
  11368. name: "Archfey Forest Guardian",
  11369. height: math.unit(1, "mile")
  11370. },
  11371. ]
  11372. ))
  11373. characterMakers.push(() => makeCharacter(
  11374. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11375. {
  11376. front: {
  11377. height: math.unit(4, "meters"),
  11378. weight: math.unit(2, "tons"),
  11379. name: "Front",
  11380. image: {
  11381. source: "./media/characters/marik/front.svg",
  11382. extra: 1057 / 1003,
  11383. bottom: 0.08
  11384. }
  11385. },
  11386. },
  11387. [
  11388. {
  11389. name: "Normal",
  11390. height: math.unit(4, "meters"),
  11391. default: true
  11392. },
  11393. {
  11394. name: "Macro",
  11395. height: math.unit(20, "meters")
  11396. },
  11397. {
  11398. name: "Megamacro",
  11399. height: math.unit(50, "km")
  11400. },
  11401. {
  11402. name: "Gigamacro",
  11403. height: math.unit(100, "km")
  11404. },
  11405. {
  11406. name: "Alpha Macro",
  11407. height: math.unit(7.88e7, "yottameters")
  11408. },
  11409. ]
  11410. ))
  11411. characterMakers.push(() => makeCharacter(
  11412. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11413. {
  11414. front: {
  11415. height: math.unit(6, "feet"),
  11416. weight: math.unit(110, "lb"),
  11417. name: "Front",
  11418. image: {
  11419. source: "./media/characters/mel/front.svg",
  11420. extra: 736 / 617,
  11421. bottom: 0.017
  11422. }
  11423. },
  11424. },
  11425. [
  11426. {
  11427. name: "Pico",
  11428. height: math.unit(3, "pm")
  11429. },
  11430. {
  11431. name: "Nano",
  11432. height: math.unit(3, "nm")
  11433. },
  11434. {
  11435. name: "Micro",
  11436. height: math.unit(0.3, "mm"),
  11437. default: true
  11438. },
  11439. {
  11440. name: "Micro+",
  11441. height: math.unit(3, "mm")
  11442. },
  11443. {
  11444. name: "Normal",
  11445. height: math.unit(5 + 10.5 / 12, "feet")
  11446. },
  11447. ]
  11448. ))
  11449. characterMakers.push(() => makeCharacter(
  11450. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11451. {
  11452. kaiju: {
  11453. height: math.unit(1.75, "meters"),
  11454. weight: math.unit(55, "kg"),
  11455. name: "Kaiju",
  11456. image: {
  11457. source: "./media/characters/lykonous/kaiju.svg",
  11458. extra: 1055 / 946,
  11459. bottom: 0.135
  11460. }
  11461. },
  11462. },
  11463. [
  11464. {
  11465. name: "Normal",
  11466. height: math.unit(2.5, "meters"),
  11467. default: true
  11468. },
  11469. {
  11470. name: "Kaiju Dragon",
  11471. height: math.unit(60, "meters")
  11472. },
  11473. {
  11474. name: "Mega Kaiju",
  11475. height: math.unit(120, "km")
  11476. },
  11477. {
  11478. name: "Giga Kaiju",
  11479. height: math.unit(200, "megameters")
  11480. },
  11481. {
  11482. name: "Terra Kaiju",
  11483. height: math.unit(400, "gigameters")
  11484. },
  11485. {
  11486. name: "Kaiju Dragon God",
  11487. height: math.unit(13000, "exaparsecs")
  11488. },
  11489. ]
  11490. ))
  11491. characterMakers.push(() => makeCharacter(
  11492. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11493. {
  11494. front: {
  11495. height: math.unit(6, "feet"),
  11496. weight: math.unit(150, "lb"),
  11497. name: "Front",
  11498. image: {
  11499. source: "./media/characters/blü/front.svg",
  11500. extra: 1883 / 1564,
  11501. bottom: 0.031
  11502. }
  11503. },
  11504. },
  11505. [
  11506. {
  11507. name: "Normal",
  11508. height: math.unit(13, "feet"),
  11509. default: true
  11510. },
  11511. {
  11512. name: "Big Boi",
  11513. height: math.unit(150, "meters")
  11514. },
  11515. {
  11516. name: "Mini Stomper",
  11517. height: math.unit(300, "meters")
  11518. },
  11519. {
  11520. name: "Macro",
  11521. height: math.unit(1000, "meters")
  11522. },
  11523. {
  11524. name: "Megamacro",
  11525. height: math.unit(11000, "meters")
  11526. },
  11527. {
  11528. name: "Gigamacro",
  11529. height: math.unit(11000, "km")
  11530. },
  11531. {
  11532. name: "Teramacro",
  11533. height: math.unit(420000, "km")
  11534. },
  11535. {
  11536. name: "Examacro",
  11537. height: math.unit(120, "parsecs")
  11538. },
  11539. {
  11540. name: "God Tho",
  11541. height: math.unit(98000000000, "parsecs")
  11542. },
  11543. ]
  11544. ))
  11545. characterMakers.push(() => makeCharacter(
  11546. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11547. {
  11548. taurFront: {
  11549. height: math.unit(6, "feet"),
  11550. weight: math.unit(200, "lb"),
  11551. name: "Taur (Front)",
  11552. image: {
  11553. source: "./media/characters/scales/taur-front.svg",
  11554. extra: 1,
  11555. bottom: 0.05
  11556. }
  11557. },
  11558. taurBack: {
  11559. height: math.unit(6, "feet"),
  11560. weight: math.unit(200, "lb"),
  11561. name: "Taur (Back)",
  11562. image: {
  11563. source: "./media/characters/scales/taur-back.svg",
  11564. extra: 1,
  11565. bottom: 0.08
  11566. }
  11567. },
  11568. anthro: {
  11569. height: math.unit(6 * 7 / 12, "feet"),
  11570. weight: math.unit(100, "lb"),
  11571. name: "Anthro",
  11572. image: {
  11573. source: "./media/characters/scales/anthro.svg",
  11574. extra: 1,
  11575. bottom: 0.06
  11576. }
  11577. },
  11578. },
  11579. [
  11580. {
  11581. name: "Normal",
  11582. height: math.unit(12, "feet"),
  11583. default: true
  11584. },
  11585. ]
  11586. ))
  11587. characterMakers.push(() => makeCharacter(
  11588. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11589. {
  11590. front: {
  11591. height: math.unit(6, "feet"),
  11592. weight: math.unit(150, "lb"),
  11593. name: "Front",
  11594. image: {
  11595. source: "./media/characters/koragos/front.svg",
  11596. extra: 841 / 794,
  11597. bottom: 0.035
  11598. }
  11599. },
  11600. back: {
  11601. height: math.unit(6, "feet"),
  11602. weight: math.unit(150, "lb"),
  11603. name: "Back",
  11604. image: {
  11605. source: "./media/characters/koragos/back.svg",
  11606. extra: 841 / 810,
  11607. bottom: 0.022
  11608. }
  11609. },
  11610. },
  11611. [
  11612. {
  11613. name: "Normal",
  11614. height: math.unit(6 + 11 / 12, "feet"),
  11615. default: true
  11616. },
  11617. {
  11618. name: "Macro",
  11619. height: math.unit(490, "feet")
  11620. },
  11621. {
  11622. name: "Megamacro",
  11623. height: math.unit(10, "miles")
  11624. },
  11625. {
  11626. name: "Gigamacro",
  11627. height: math.unit(50, "miles")
  11628. },
  11629. ]
  11630. ))
  11631. characterMakers.push(() => makeCharacter(
  11632. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11633. {
  11634. front: {
  11635. height: math.unit(6, "feet"),
  11636. weight: math.unit(250, "lb"),
  11637. name: "Front",
  11638. image: {
  11639. source: "./media/characters/xylrem/front.svg",
  11640. extra: 3323 / 3050,
  11641. bottom: 0.065
  11642. }
  11643. },
  11644. },
  11645. [
  11646. {
  11647. name: "Micro",
  11648. height: math.unit(4, "feet")
  11649. },
  11650. {
  11651. name: "Normal",
  11652. height: math.unit(16, "feet"),
  11653. default: true
  11654. },
  11655. {
  11656. name: "Macro",
  11657. height: math.unit(2720, "feet")
  11658. },
  11659. {
  11660. name: "Megamacro",
  11661. height: math.unit(25000, "miles")
  11662. },
  11663. ]
  11664. ))
  11665. characterMakers.push(() => makeCharacter(
  11666. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11667. {
  11668. front: {
  11669. height: math.unit(8, "feet"),
  11670. weight: math.unit(250, "kg"),
  11671. name: "Front",
  11672. image: {
  11673. source: "./media/characters/ikideru/front.svg",
  11674. extra: 930 / 870,
  11675. bottom: 0.087
  11676. }
  11677. },
  11678. back: {
  11679. height: math.unit(8, "feet"),
  11680. weight: math.unit(250, "kg"),
  11681. name: "Back",
  11682. image: {
  11683. source: "./media/characters/ikideru/back.svg",
  11684. extra: 919 / 852,
  11685. bottom: 0.055
  11686. }
  11687. },
  11688. },
  11689. [
  11690. {
  11691. name: "Rare",
  11692. height: math.unit(8, "feet"),
  11693. default: true
  11694. },
  11695. {
  11696. name: "Playful Loom",
  11697. height: math.unit(80, "feet")
  11698. },
  11699. {
  11700. name: "City Leaner",
  11701. height: math.unit(230, "feet")
  11702. },
  11703. {
  11704. name: "Megamacro",
  11705. height: math.unit(2500, "feet")
  11706. },
  11707. {
  11708. name: "Gigamacro",
  11709. height: math.unit(26400, "feet")
  11710. },
  11711. {
  11712. name: "Tectonic Shifter",
  11713. height: math.unit(1.7, "megameters")
  11714. },
  11715. {
  11716. name: "Planet Carer",
  11717. height: math.unit(21, "megameters")
  11718. },
  11719. {
  11720. name: "God",
  11721. height: math.unit(11157.22, "parsecs")
  11722. },
  11723. ]
  11724. ))
  11725. characterMakers.push(() => makeCharacter(
  11726. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11727. {
  11728. front: {
  11729. height: math.unit(6, "feet"),
  11730. weight: math.unit(120, "lb"),
  11731. name: "Front",
  11732. image: {
  11733. source: "./media/characters/neo/front.svg"
  11734. }
  11735. },
  11736. },
  11737. [
  11738. {
  11739. name: "Micro",
  11740. height: math.unit(2, "inches"),
  11741. default: true
  11742. },
  11743. {
  11744. name: "Human Size",
  11745. height: math.unit(5 + 8 / 12, "feet")
  11746. },
  11747. ]
  11748. ))
  11749. characterMakers.push(() => makeCharacter(
  11750. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11751. {
  11752. front: {
  11753. height: math.unit(13 + 10 / 12, "feet"),
  11754. weight: math.unit(5320, "lb"),
  11755. name: "Front",
  11756. image: {
  11757. source: "./media/characters/chauncey-chantz/front.svg",
  11758. extra: 1587 / 1435,
  11759. bottom: 0.02
  11760. }
  11761. },
  11762. },
  11763. [
  11764. {
  11765. name: "Normal",
  11766. height: math.unit(13 + 10 / 12, "feet"),
  11767. default: true
  11768. },
  11769. {
  11770. name: "Macro",
  11771. height: math.unit(45, "feet")
  11772. },
  11773. {
  11774. name: "Megamacro",
  11775. height: math.unit(250, "miles")
  11776. },
  11777. {
  11778. name: "Planetary",
  11779. height: math.unit(10000, "miles")
  11780. },
  11781. {
  11782. name: "Galactic",
  11783. height: math.unit(40000, "parsecs")
  11784. },
  11785. {
  11786. name: "Universal",
  11787. height: math.unit(1, "yottameter")
  11788. },
  11789. ]
  11790. ))
  11791. characterMakers.push(() => makeCharacter(
  11792. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11793. {
  11794. front: {
  11795. height: math.unit(6, "feet"),
  11796. weight: math.unit(150, "lb"),
  11797. name: "Front",
  11798. image: {
  11799. source: "./media/characters/epifox/front.svg",
  11800. extra: 1,
  11801. bottom: 0.075
  11802. }
  11803. },
  11804. },
  11805. [
  11806. {
  11807. name: "Micro",
  11808. height: math.unit(6, "inches")
  11809. },
  11810. {
  11811. name: "Normal",
  11812. height: math.unit(12, "feet"),
  11813. default: true
  11814. },
  11815. {
  11816. name: "Macro",
  11817. height: math.unit(3810, "feet")
  11818. },
  11819. {
  11820. name: "Megamacro",
  11821. height: math.unit(500, "miles")
  11822. },
  11823. ]
  11824. ))
  11825. characterMakers.push(() => makeCharacter(
  11826. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11827. {
  11828. front: {
  11829. height: math.unit(1.8796, "m"),
  11830. weight: math.unit(230, "lb"),
  11831. name: "Front",
  11832. image: {
  11833. source: "./media/characters/colin-t/front.svg",
  11834. extra: 1272 / 1193,
  11835. bottom: 0.07
  11836. }
  11837. },
  11838. },
  11839. [
  11840. {
  11841. name: "Micro",
  11842. height: math.unit(0.571, "meters")
  11843. },
  11844. {
  11845. name: "Normal",
  11846. height: math.unit(1.8796, "meters"),
  11847. default: true
  11848. },
  11849. {
  11850. name: "Tall",
  11851. height: math.unit(4, "meters")
  11852. },
  11853. {
  11854. name: "Macro",
  11855. height: math.unit(67.241, "meters")
  11856. },
  11857. {
  11858. name: "Megamacro",
  11859. height: math.unit(371.856, "meters")
  11860. },
  11861. {
  11862. name: "Planetary",
  11863. height: math.unit(12631.5689, "km")
  11864. },
  11865. ]
  11866. ))
  11867. characterMakers.push(() => makeCharacter(
  11868. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11869. {
  11870. front: {
  11871. height: math.unit(1.85, "meters"),
  11872. weight: math.unit(80, "kg"),
  11873. name: "Front",
  11874. image: {
  11875. source: "./media/characters/matvei/front.svg",
  11876. extra: 614 / 594,
  11877. bottom: 0.01
  11878. }
  11879. },
  11880. },
  11881. [
  11882. {
  11883. name: "Normal",
  11884. height: math.unit(1.85, "meters"),
  11885. default: true
  11886. },
  11887. ]
  11888. ))
  11889. characterMakers.push(() => makeCharacter(
  11890. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11891. {
  11892. front: {
  11893. height: math.unit(5 + 9 / 12, "feet"),
  11894. weight: math.unit(70, "lb"),
  11895. name: "Front",
  11896. image: {
  11897. source: "./media/characters/quincy/front.svg",
  11898. extra: 3041 / 2751
  11899. }
  11900. },
  11901. back: {
  11902. height: math.unit(5 + 9 / 12, "feet"),
  11903. weight: math.unit(70, "lb"),
  11904. name: "Back",
  11905. image: {
  11906. source: "./media/characters/quincy/back.svg",
  11907. extra: 3041 / 2751
  11908. }
  11909. },
  11910. flying: {
  11911. height: math.unit(5 + 4 / 12, "feet"),
  11912. weight: math.unit(70, "lb"),
  11913. name: "Flying",
  11914. image: {
  11915. source: "./media/characters/quincy/flying.svg",
  11916. extra: 1044 / 930
  11917. }
  11918. },
  11919. },
  11920. [
  11921. {
  11922. name: "Micro",
  11923. height: math.unit(3, "cm")
  11924. },
  11925. {
  11926. name: "Normal",
  11927. height: math.unit(5 + 9 / 12, "feet")
  11928. },
  11929. {
  11930. name: "Macro",
  11931. height: math.unit(200, "meters"),
  11932. default: true
  11933. },
  11934. {
  11935. name: "Megamacro",
  11936. height: math.unit(1000, "meters")
  11937. },
  11938. ]
  11939. ))
  11940. characterMakers.push(() => makeCharacter(
  11941. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11942. {
  11943. front: {
  11944. height: math.unit(3 + 11/12, "feet"),
  11945. weight: math.unit(50, "lb"),
  11946. name: "Front",
  11947. image: {
  11948. source: "./media/characters/vanrel/front.svg",
  11949. extra: 1104/949,
  11950. bottom: 52/1156
  11951. }
  11952. },
  11953. back: {
  11954. height: math.unit(3 + 11/12, "feet"),
  11955. weight: math.unit(50, "lb"),
  11956. name: "Back",
  11957. image: {
  11958. source: "./media/characters/vanrel/back.svg",
  11959. extra: 1119/976,
  11960. bottom: 37/1156
  11961. }
  11962. },
  11963. tome: {
  11964. height: math.unit(1.35, "feet"),
  11965. weight: math.unit(10, "lb"),
  11966. name: "Vanrel's Tome",
  11967. rename: true,
  11968. image: {
  11969. source: "./media/characters/vanrel/tome.svg"
  11970. }
  11971. },
  11972. beans: {
  11973. height: math.unit(0.89, "feet"),
  11974. name: "Beans",
  11975. image: {
  11976. source: "./media/characters/vanrel/beans.svg"
  11977. }
  11978. },
  11979. },
  11980. [
  11981. {
  11982. name: "Normal",
  11983. height: math.unit(3 + 11/12, "feet"),
  11984. default: true
  11985. },
  11986. ]
  11987. ))
  11988. characterMakers.push(() => makeCharacter(
  11989. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11990. {
  11991. front: {
  11992. height: math.unit(7 + 5 / 12, "feet"),
  11993. name: "Front",
  11994. image: {
  11995. source: "./media/characters/kuiper-vanrel/front.svg",
  11996. extra: 1219/1169,
  11997. bottom: 69/1288
  11998. }
  11999. },
  12000. back: {
  12001. height: math.unit(7 + 5 / 12, "feet"),
  12002. name: "Back",
  12003. image: {
  12004. source: "./media/characters/kuiper-vanrel/back.svg",
  12005. extra: 1236/1193,
  12006. bottom: 27/1263
  12007. }
  12008. },
  12009. foot: {
  12010. height: math.unit(0.55, "meters"),
  12011. name: "Foot",
  12012. image: {
  12013. source: "./media/characters/kuiper-vanrel/foot.svg",
  12014. }
  12015. },
  12016. battle: {
  12017. height: math.unit(6.824, "feet"),
  12018. name: "Battle",
  12019. image: {
  12020. source: "./media/characters/kuiper-vanrel/battle.svg",
  12021. extra: 1466 / 1327,
  12022. bottom: 29 / 1492.5
  12023. }
  12024. },
  12025. meerkui: {
  12026. height: math.unit(18, "inches"),
  12027. name: "Meerkui",
  12028. image: {
  12029. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12030. extra: 1354/1289,
  12031. bottom: 69/1423
  12032. }
  12033. },
  12034. },
  12035. [
  12036. {
  12037. name: "Normal",
  12038. height: math.unit(7 + 5 / 12, "feet"),
  12039. default: true
  12040. },
  12041. ]
  12042. ))
  12043. characterMakers.push(() => makeCharacter(
  12044. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12045. {
  12046. front: {
  12047. height: math.unit(8 + 5 / 12, "feet"),
  12048. name: "Front",
  12049. image: {
  12050. source: "./media/characters/keset-vanrel/front.svg",
  12051. extra: 1231/1148,
  12052. bottom: 82/1313
  12053. }
  12054. },
  12055. back: {
  12056. height: math.unit(8 + 5 / 12, "feet"),
  12057. name: "Back",
  12058. image: {
  12059. source: "./media/characters/keset-vanrel/back.svg",
  12060. extra: 1240/1174,
  12061. bottom: 33/1273
  12062. }
  12063. },
  12064. hand: {
  12065. height: math.unit(0.6, "meters"),
  12066. name: "Hand",
  12067. image: {
  12068. source: "./media/characters/keset-vanrel/hand.svg"
  12069. }
  12070. },
  12071. foot: {
  12072. height: math.unit(0.94978, "meters"),
  12073. name: "Foot",
  12074. image: {
  12075. source: "./media/characters/keset-vanrel/foot.svg"
  12076. }
  12077. },
  12078. battle: {
  12079. height: math.unit(7.408, "feet"),
  12080. name: "Battle",
  12081. image: {
  12082. source: "./media/characters/keset-vanrel/battle.svg",
  12083. extra: 1890 / 1386,
  12084. bottom: 73.28 / 1970
  12085. }
  12086. },
  12087. },
  12088. [
  12089. {
  12090. name: "Normal",
  12091. height: math.unit(8 + 5 / 12, "feet"),
  12092. default: true
  12093. },
  12094. ]
  12095. ))
  12096. characterMakers.push(() => makeCharacter(
  12097. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12098. {
  12099. front: {
  12100. height: math.unit(6, "feet"),
  12101. weight: math.unit(150, "lb"),
  12102. name: "Front",
  12103. image: {
  12104. source: "./media/characters/neos/front.svg",
  12105. extra: 1696 / 992,
  12106. bottom: 0.14
  12107. }
  12108. },
  12109. },
  12110. [
  12111. {
  12112. name: "Normal",
  12113. height: math.unit(54, "cm"),
  12114. default: true
  12115. },
  12116. {
  12117. name: "Macro",
  12118. height: math.unit(100, "m")
  12119. },
  12120. {
  12121. name: "Megamacro",
  12122. height: math.unit(10, "km")
  12123. },
  12124. {
  12125. name: "Megamacro+",
  12126. height: math.unit(100, "km")
  12127. },
  12128. {
  12129. name: "Gigamacro",
  12130. height: math.unit(100, "Mm")
  12131. },
  12132. {
  12133. name: "Teramacro",
  12134. height: math.unit(100, "Gm")
  12135. },
  12136. {
  12137. name: "Examacro",
  12138. height: math.unit(100, "Em")
  12139. },
  12140. {
  12141. name: "Godly",
  12142. height: math.unit(10000, "Ym")
  12143. },
  12144. {
  12145. name: "Beyond Godly",
  12146. height: math.unit(25, "multiverses")
  12147. },
  12148. ]
  12149. ))
  12150. characterMakers.push(() => makeCharacter(
  12151. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12152. {
  12153. feminine: {
  12154. height: math.unit(5, "feet"),
  12155. weight: math.unit(100, "lb"),
  12156. name: "Feminine",
  12157. image: {
  12158. source: "./media/characters/sammy-mouse/feminine.svg",
  12159. extra: 2526 / 2425,
  12160. bottom: 0.123
  12161. }
  12162. },
  12163. masculine: {
  12164. height: math.unit(5, "feet"),
  12165. weight: math.unit(100, "lb"),
  12166. name: "Masculine",
  12167. image: {
  12168. source: "./media/characters/sammy-mouse/masculine.svg",
  12169. extra: 2526 / 2425,
  12170. bottom: 0.123
  12171. }
  12172. },
  12173. },
  12174. [
  12175. {
  12176. name: "Micro",
  12177. height: math.unit(5, "inches")
  12178. },
  12179. {
  12180. name: "Normal",
  12181. height: math.unit(5, "feet"),
  12182. default: true
  12183. },
  12184. {
  12185. name: "Macro",
  12186. height: math.unit(60, "feet")
  12187. },
  12188. ]
  12189. ))
  12190. characterMakers.push(() => makeCharacter(
  12191. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12192. {
  12193. front: {
  12194. height: math.unit(4, "feet"),
  12195. weight: math.unit(50, "lb"),
  12196. name: "Front",
  12197. image: {
  12198. source: "./media/characters/kole/front.svg",
  12199. extra: 1423 / 1303,
  12200. bottom: 0.025
  12201. }
  12202. },
  12203. back: {
  12204. height: math.unit(4, "feet"),
  12205. weight: math.unit(50, "lb"),
  12206. name: "Back",
  12207. image: {
  12208. source: "./media/characters/kole/back.svg",
  12209. extra: 1426 / 1280,
  12210. bottom: 0.02
  12211. }
  12212. },
  12213. },
  12214. [
  12215. {
  12216. name: "Normal",
  12217. height: math.unit(4, "feet"),
  12218. default: true
  12219. },
  12220. ]
  12221. ))
  12222. characterMakers.push(() => makeCharacter(
  12223. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12224. {
  12225. front: {
  12226. height: math.unit(2.5, "feet"),
  12227. weight: math.unit(32, "lb"),
  12228. name: "Front",
  12229. image: {
  12230. source: "./media/characters/rufran/front.svg",
  12231. extra: 1313/885,
  12232. bottom: 94/1407
  12233. }
  12234. },
  12235. side: {
  12236. height: math.unit(2.5, "feet"),
  12237. weight: math.unit(32, "lb"),
  12238. name: "Side",
  12239. image: {
  12240. source: "./media/characters/rufran/side.svg",
  12241. extra: 1109/852,
  12242. bottom: 118/1227
  12243. }
  12244. },
  12245. back: {
  12246. height: math.unit(2.5, "feet"),
  12247. weight: math.unit(32, "lb"),
  12248. name: "Back",
  12249. image: {
  12250. source: "./media/characters/rufran/back.svg",
  12251. extra: 1280/878,
  12252. bottom: 131/1411
  12253. }
  12254. },
  12255. mouth: {
  12256. height: math.unit(1.13, "feet"),
  12257. name: "Mouth",
  12258. image: {
  12259. source: "./media/characters/rufran/mouth.svg"
  12260. }
  12261. },
  12262. foot: {
  12263. height: math.unit(1.33, "feet"),
  12264. name: "Foot",
  12265. image: {
  12266. source: "./media/characters/rufran/foot.svg"
  12267. }
  12268. },
  12269. koboldFront: {
  12270. height: math.unit(2 + 6 / 12, "feet"),
  12271. weight: math.unit(20, "lb"),
  12272. name: "Front (Kobold)",
  12273. image: {
  12274. source: "./media/characters/rufran/kobold-front.svg",
  12275. extra: 2041 / 1839,
  12276. bottom: 0.055
  12277. }
  12278. },
  12279. koboldBack: {
  12280. height: math.unit(2 + 6 / 12, "feet"),
  12281. weight: math.unit(20, "lb"),
  12282. name: "Back (Kobold)",
  12283. image: {
  12284. source: "./media/characters/rufran/kobold-back.svg",
  12285. extra: 2054 / 1839,
  12286. bottom: 0.01
  12287. }
  12288. },
  12289. koboldHand: {
  12290. height: math.unit(0.2166, "meters"),
  12291. name: "Hand (Kobold)",
  12292. image: {
  12293. source: "./media/characters/rufran/kobold-hand.svg"
  12294. }
  12295. },
  12296. koboldFoot: {
  12297. height: math.unit(0.185, "meters"),
  12298. name: "Foot (Kobold)",
  12299. image: {
  12300. source: "./media/characters/rufran/kobold-foot.svg"
  12301. }
  12302. },
  12303. },
  12304. [
  12305. {
  12306. name: "Micro",
  12307. height: math.unit(1, "inch")
  12308. },
  12309. {
  12310. name: "Normal",
  12311. height: math.unit(2 + 6 / 12, "feet"),
  12312. default: true
  12313. },
  12314. {
  12315. name: "Big",
  12316. height: math.unit(60, "feet")
  12317. },
  12318. {
  12319. name: "Macro",
  12320. height: math.unit(325, "feet")
  12321. },
  12322. ]
  12323. ))
  12324. characterMakers.push(() => makeCharacter(
  12325. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12326. {
  12327. front: {
  12328. height: math.unit(0.3, "meters"),
  12329. weight: math.unit(3.5, "kg"),
  12330. name: "Front",
  12331. image: {
  12332. source: "./media/characters/chip/front.svg",
  12333. extra: 748 / 674
  12334. }
  12335. },
  12336. },
  12337. [
  12338. {
  12339. name: "Micro",
  12340. height: math.unit(1, "inch"),
  12341. default: true
  12342. },
  12343. ]
  12344. ))
  12345. characterMakers.push(() => makeCharacter(
  12346. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12347. {
  12348. side: {
  12349. height: math.unit(2.3, "meters"),
  12350. weight: math.unit(3500, "lb"),
  12351. name: "Side",
  12352. image: {
  12353. source: "./media/characters/torvid/side.svg",
  12354. extra: 1972 / 722,
  12355. bottom: 0.035
  12356. }
  12357. },
  12358. },
  12359. [
  12360. {
  12361. name: "Normal",
  12362. height: math.unit(2.3, "meters"),
  12363. default: true
  12364. },
  12365. ]
  12366. ))
  12367. characterMakers.push(() => makeCharacter(
  12368. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12369. {
  12370. front: {
  12371. height: math.unit(2, "meters"),
  12372. weight: math.unit(150.5, "kg"),
  12373. name: "Front",
  12374. image: {
  12375. source: "./media/characters/susan/front.svg",
  12376. extra: 693 / 635,
  12377. bottom: 0.05
  12378. }
  12379. },
  12380. },
  12381. [
  12382. {
  12383. name: "Megamacro",
  12384. height: math.unit(505, "miles"),
  12385. default: true
  12386. },
  12387. ]
  12388. ))
  12389. characterMakers.push(() => makeCharacter(
  12390. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12391. {
  12392. front: {
  12393. height: math.unit(6, "feet"),
  12394. weight: math.unit(150, "lb"),
  12395. name: "Front",
  12396. image: {
  12397. source: "./media/characters/raindrops/front.svg",
  12398. extra: 2655 / 2461,
  12399. bottom: 49 / 2705
  12400. }
  12401. },
  12402. back: {
  12403. height: math.unit(6, "feet"),
  12404. weight: math.unit(150, "lb"),
  12405. name: "Back",
  12406. image: {
  12407. source: "./media/characters/raindrops/back.svg",
  12408. extra: 2574 / 2400,
  12409. bottom: 65 / 2634
  12410. }
  12411. },
  12412. },
  12413. [
  12414. {
  12415. name: "Micro",
  12416. height: math.unit(6, "inches")
  12417. },
  12418. {
  12419. name: "Normal",
  12420. height: math.unit(6 + 2 / 12, "feet")
  12421. },
  12422. {
  12423. name: "Macro",
  12424. height: math.unit(131, "feet"),
  12425. default: true
  12426. },
  12427. {
  12428. name: "Megamacro",
  12429. height: math.unit(15, "miles")
  12430. },
  12431. {
  12432. name: "Gigamacro",
  12433. height: math.unit(4000, "miles")
  12434. },
  12435. {
  12436. name: "Teramacro",
  12437. height: math.unit(315000, "miles")
  12438. },
  12439. ]
  12440. ))
  12441. characterMakers.push(() => makeCharacter(
  12442. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12443. {
  12444. front: {
  12445. height: math.unit(2.794, "meters"),
  12446. weight: math.unit(325, "kg"),
  12447. name: "Front",
  12448. image: {
  12449. source: "./media/characters/tezwa/front.svg",
  12450. extra: 2083 / 1906,
  12451. bottom: 0.031
  12452. }
  12453. },
  12454. foot: {
  12455. height: math.unit(0.687, "meters"),
  12456. name: "Foot",
  12457. image: {
  12458. source: "./media/characters/tezwa/foot.svg"
  12459. }
  12460. },
  12461. },
  12462. [
  12463. {
  12464. name: "Normal",
  12465. height: math.unit(9 + 2 / 12, "feet"),
  12466. default: true
  12467. },
  12468. ]
  12469. ))
  12470. characterMakers.push(() => makeCharacter(
  12471. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12472. {
  12473. front: {
  12474. height: math.unit(58, "feet"),
  12475. weight: math.unit(89000, "lb"),
  12476. name: "Front",
  12477. image: {
  12478. source: "./media/characters/typhus/front.svg",
  12479. extra: 816 / 800,
  12480. bottom: 0.065
  12481. }
  12482. },
  12483. },
  12484. [
  12485. {
  12486. name: "Macro",
  12487. height: math.unit(58, "feet"),
  12488. default: true
  12489. },
  12490. ]
  12491. ))
  12492. characterMakers.push(() => makeCharacter(
  12493. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12494. {
  12495. front: {
  12496. height: math.unit(12, "feet"),
  12497. weight: math.unit(6, "tonnes"),
  12498. name: "Front",
  12499. image: {
  12500. source: "./media/characters/lyra-von-wulf/front.svg",
  12501. extra: 1,
  12502. bottom: 0.10
  12503. }
  12504. },
  12505. frontMecha: {
  12506. height: math.unit(12, "feet"),
  12507. weight: math.unit(12, "tonnes"),
  12508. name: "Front (Mecha)",
  12509. image: {
  12510. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12511. extra: 1,
  12512. bottom: 0.042
  12513. }
  12514. },
  12515. maw: {
  12516. height: math.unit(2.2, "feet"),
  12517. name: "Maw",
  12518. image: {
  12519. source: "./media/characters/lyra-von-wulf/maw.svg"
  12520. }
  12521. },
  12522. },
  12523. [
  12524. {
  12525. name: "Normal",
  12526. height: math.unit(12, "feet"),
  12527. default: true
  12528. },
  12529. {
  12530. name: "Classic",
  12531. height: math.unit(50, "feet")
  12532. },
  12533. {
  12534. name: "Macro",
  12535. height: math.unit(500, "feet")
  12536. },
  12537. {
  12538. name: "Megamacro",
  12539. height: math.unit(1, "mile")
  12540. },
  12541. {
  12542. name: "Gigamacro",
  12543. height: math.unit(400, "miles")
  12544. },
  12545. {
  12546. name: "Teramacro",
  12547. height: math.unit(22000, "miles")
  12548. },
  12549. {
  12550. name: "Solarmacro",
  12551. height: math.unit(8600000, "miles")
  12552. },
  12553. {
  12554. name: "Galactic",
  12555. height: math.unit(1057000, "lightyears")
  12556. },
  12557. ]
  12558. ))
  12559. characterMakers.push(() => makeCharacter(
  12560. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12561. {
  12562. front: {
  12563. height: math.unit(6 + 10 / 12, "feet"),
  12564. weight: math.unit(150, "lb"),
  12565. name: "Front",
  12566. image: {
  12567. source: "./media/characters/dixon/front.svg",
  12568. extra: 3361 / 3209,
  12569. bottom: 0.01
  12570. }
  12571. },
  12572. },
  12573. [
  12574. {
  12575. name: "Normal",
  12576. height: math.unit(6 + 10 / 12, "feet"),
  12577. default: true
  12578. },
  12579. {
  12580. name: "Big",
  12581. height: math.unit(12, "meters")
  12582. },
  12583. {
  12584. name: "Macro",
  12585. height: math.unit(500, "meters")
  12586. },
  12587. {
  12588. name: "Megamacro",
  12589. height: math.unit(2, "km")
  12590. },
  12591. ]
  12592. ))
  12593. characterMakers.push(() => makeCharacter(
  12594. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12595. {
  12596. front: {
  12597. height: math.unit(185, "cm"),
  12598. weight: math.unit(68, "kg"),
  12599. name: "Front",
  12600. image: {
  12601. source: "./media/characters/kauko/front.svg",
  12602. extra: 1455 / 1421,
  12603. bottom: 0.03
  12604. }
  12605. },
  12606. back: {
  12607. height: math.unit(185, "cm"),
  12608. weight: math.unit(68, "kg"),
  12609. name: "Back",
  12610. image: {
  12611. source: "./media/characters/kauko/back.svg",
  12612. extra: 1455 / 1421,
  12613. bottom: 0.004
  12614. }
  12615. },
  12616. },
  12617. [
  12618. {
  12619. name: "Normal",
  12620. height: math.unit(185, "cm"),
  12621. default: true
  12622. },
  12623. ]
  12624. ))
  12625. characterMakers.push(() => makeCharacter(
  12626. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12627. {
  12628. front: {
  12629. height: math.unit(6, "feet"),
  12630. weight: math.unit(150, "kg"),
  12631. name: "Front",
  12632. image: {
  12633. source: "./media/characters/varg/front.svg",
  12634. extra: 1108 / 1018,
  12635. bottom: 0.0375
  12636. }
  12637. },
  12638. },
  12639. [
  12640. {
  12641. name: "Normal",
  12642. height: math.unit(5, "meters")
  12643. },
  12644. {
  12645. name: "Macro",
  12646. height: math.unit(200, "meters")
  12647. },
  12648. {
  12649. name: "Megamacro",
  12650. height: math.unit(20, "kilometers")
  12651. },
  12652. {
  12653. name: "True Size",
  12654. height: math.unit(211, "km"),
  12655. default: true
  12656. },
  12657. {
  12658. name: "Gigamacro",
  12659. height: math.unit(1000, "km")
  12660. },
  12661. {
  12662. name: "Gigamacro+",
  12663. height: math.unit(8000, "km")
  12664. },
  12665. {
  12666. name: "Teramacro",
  12667. height: math.unit(1000000, "km")
  12668. },
  12669. ]
  12670. ))
  12671. characterMakers.push(() => makeCharacter(
  12672. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12673. {
  12674. front: {
  12675. height: math.unit(7 + 7 / 12, "feet"),
  12676. weight: math.unit(267, "lb"),
  12677. name: "Front",
  12678. image: {
  12679. source: "./media/characters/dayza/front.svg",
  12680. extra: 1262 / 1200,
  12681. bottom: 0.035
  12682. }
  12683. },
  12684. side: {
  12685. height: math.unit(7 + 7 / 12, "feet"),
  12686. weight: math.unit(267, "lb"),
  12687. name: "Side",
  12688. image: {
  12689. source: "./media/characters/dayza/side.svg",
  12690. extra: 1295 / 1245,
  12691. bottom: 0.05
  12692. }
  12693. },
  12694. back: {
  12695. height: math.unit(7 + 7 / 12, "feet"),
  12696. weight: math.unit(267, "lb"),
  12697. name: "Back",
  12698. image: {
  12699. source: "./media/characters/dayza/back.svg",
  12700. extra: 1241 / 1170
  12701. }
  12702. },
  12703. },
  12704. [
  12705. {
  12706. name: "Normal",
  12707. height: math.unit(7 + 7 / 12, "feet"),
  12708. default: true
  12709. },
  12710. {
  12711. name: "Macro",
  12712. height: math.unit(155, "feet")
  12713. },
  12714. ]
  12715. ))
  12716. characterMakers.push(() => makeCharacter(
  12717. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12718. {
  12719. front: {
  12720. height: math.unit(6 + 5 / 12, "feet"),
  12721. weight: math.unit(160, "lb"),
  12722. name: "Front",
  12723. image: {
  12724. source: "./media/characters/xanthos/front.svg",
  12725. extra: 1,
  12726. bottom: 0.04
  12727. }
  12728. },
  12729. back: {
  12730. height: math.unit(6 + 5 / 12, "feet"),
  12731. weight: math.unit(160, "lb"),
  12732. name: "Back",
  12733. image: {
  12734. source: "./media/characters/xanthos/back.svg",
  12735. extra: 1,
  12736. bottom: 0.03
  12737. }
  12738. },
  12739. hand: {
  12740. height: math.unit(0.928, "feet"),
  12741. name: "Hand",
  12742. image: {
  12743. source: "./media/characters/xanthos/hand.svg"
  12744. }
  12745. },
  12746. foot: {
  12747. height: math.unit(1.286, "feet"),
  12748. name: "Foot",
  12749. image: {
  12750. source: "./media/characters/xanthos/foot.svg"
  12751. }
  12752. },
  12753. },
  12754. [
  12755. {
  12756. name: "Normal",
  12757. height: math.unit(6 + 5 / 12, "feet"),
  12758. default: true
  12759. },
  12760. {
  12761. name: "Normal+",
  12762. height: math.unit(6, "meters")
  12763. },
  12764. {
  12765. name: "Macro",
  12766. height: math.unit(40, "feet")
  12767. },
  12768. {
  12769. name: "Macro+",
  12770. height: math.unit(200, "meters")
  12771. },
  12772. {
  12773. name: "Megamacro",
  12774. height: math.unit(20, "km")
  12775. },
  12776. {
  12777. name: "Megamacro+",
  12778. height: math.unit(100, "km")
  12779. },
  12780. {
  12781. name: "Gigamacro",
  12782. height: math.unit(200, "megameters")
  12783. },
  12784. {
  12785. name: "Gigamacro+",
  12786. height: math.unit(1.5, "gigameters")
  12787. },
  12788. ]
  12789. ))
  12790. characterMakers.push(() => makeCharacter(
  12791. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12792. {
  12793. front: {
  12794. height: math.unit(6 + 3 / 12, "feet"),
  12795. weight: math.unit(215, "lb"),
  12796. name: "Front",
  12797. image: {
  12798. source: "./media/characters/grynn/front.svg",
  12799. extra: 4627 / 4209,
  12800. bottom: 0.047
  12801. }
  12802. },
  12803. },
  12804. [
  12805. {
  12806. name: "Micro",
  12807. height: math.unit(6, "inches")
  12808. },
  12809. {
  12810. name: "Normal",
  12811. height: math.unit(6 + 3 / 12, "feet"),
  12812. default: true
  12813. },
  12814. {
  12815. name: "Big",
  12816. height: math.unit(104, "feet")
  12817. },
  12818. {
  12819. name: "Macro",
  12820. height: math.unit(944, "feet")
  12821. },
  12822. {
  12823. name: "Macro+",
  12824. height: math.unit(9480, "feet")
  12825. },
  12826. {
  12827. name: "Megamacro",
  12828. height: math.unit(78752, "feet")
  12829. },
  12830. {
  12831. name: "Megamacro+",
  12832. height: math.unit(630128, "feet")
  12833. },
  12834. {
  12835. name: "Megamacro++",
  12836. height: math.unit(3150695, "feet")
  12837. },
  12838. ]
  12839. ))
  12840. characterMakers.push(() => makeCharacter(
  12841. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12842. {
  12843. front: {
  12844. height: math.unit(7 + 5 / 12, "feet"),
  12845. weight: math.unit(450, "lb"),
  12846. name: "Front",
  12847. image: {
  12848. source: "./media/characters/mocha-aura/front.svg",
  12849. extra: 1907 / 1817,
  12850. bottom: 0.04
  12851. }
  12852. },
  12853. back: {
  12854. height: math.unit(7 + 5 / 12, "feet"),
  12855. weight: math.unit(450, "lb"),
  12856. name: "Back",
  12857. image: {
  12858. source: "./media/characters/mocha-aura/back.svg",
  12859. extra: 1900 / 1825,
  12860. bottom: 0.045
  12861. }
  12862. },
  12863. },
  12864. [
  12865. {
  12866. name: "Nano",
  12867. height: math.unit(1, "nm")
  12868. },
  12869. {
  12870. name: "Megamicro",
  12871. height: math.unit(1, "mm")
  12872. },
  12873. {
  12874. name: "Micro",
  12875. height: math.unit(3, "inches")
  12876. },
  12877. {
  12878. name: "Normal",
  12879. height: math.unit(7 + 5 / 12, "feet"),
  12880. default: true
  12881. },
  12882. {
  12883. name: "Macro",
  12884. height: math.unit(30, "feet")
  12885. },
  12886. {
  12887. name: "Megamacro",
  12888. height: math.unit(3500, "feet")
  12889. },
  12890. {
  12891. name: "Teramacro",
  12892. height: math.unit(500000, "miles")
  12893. },
  12894. {
  12895. name: "Petamacro",
  12896. height: math.unit(50000000000000000, "parsecs")
  12897. },
  12898. ]
  12899. ))
  12900. characterMakers.push(() => makeCharacter(
  12901. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12902. {
  12903. front: {
  12904. height: math.unit(6, "feet"),
  12905. weight: math.unit(150, "lb"),
  12906. name: "Front",
  12907. image: {
  12908. source: "./media/characters/ilisha-devya/front.svg",
  12909. extra: 1,
  12910. bottom: 0.175
  12911. }
  12912. },
  12913. back: {
  12914. height: math.unit(6, "feet"),
  12915. weight: math.unit(150, "lb"),
  12916. name: "Back",
  12917. image: {
  12918. source: "./media/characters/ilisha-devya/back.svg",
  12919. extra: 1,
  12920. bottom: 0.015
  12921. }
  12922. },
  12923. },
  12924. [
  12925. {
  12926. name: "Macro",
  12927. height: math.unit(500, "feet"),
  12928. default: true
  12929. },
  12930. {
  12931. name: "Megamacro",
  12932. height: math.unit(10, "miles")
  12933. },
  12934. {
  12935. name: "Gigamacro",
  12936. height: math.unit(100000, "miles")
  12937. },
  12938. {
  12939. name: "Examacro",
  12940. height: math.unit(1e9, "lightyears")
  12941. },
  12942. {
  12943. name: "Omniversal",
  12944. height: math.unit(1e33, "lightyears")
  12945. },
  12946. {
  12947. name: "Beyond Infinite",
  12948. height: math.unit(1e100, "lightyears")
  12949. },
  12950. ]
  12951. ))
  12952. characterMakers.push(() => makeCharacter(
  12953. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12954. {
  12955. Side: {
  12956. height: math.unit(6, "feet"),
  12957. weight: math.unit(150, "lb"),
  12958. name: "Side",
  12959. image: {
  12960. source: "./media/characters/mira/side.svg",
  12961. extra: 900 / 799,
  12962. bottom: 0.02
  12963. }
  12964. },
  12965. },
  12966. [
  12967. {
  12968. name: "Human Size",
  12969. height: math.unit(6, "feet")
  12970. },
  12971. {
  12972. name: "Macro",
  12973. height: math.unit(100, "feet"),
  12974. default: true
  12975. },
  12976. {
  12977. name: "Megamacro",
  12978. height: math.unit(10, "miles")
  12979. },
  12980. {
  12981. name: "Gigamacro",
  12982. height: math.unit(25000, "miles")
  12983. },
  12984. {
  12985. name: "Teramacro",
  12986. height: math.unit(300, "AU")
  12987. },
  12988. {
  12989. name: "Full Size",
  12990. height: math.unit(4.5e10, "lightyears")
  12991. },
  12992. ]
  12993. ))
  12994. characterMakers.push(() => makeCharacter(
  12995. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12996. {
  12997. front: {
  12998. height: math.unit(6, "feet"),
  12999. weight: math.unit(150, "lb"),
  13000. name: "Front",
  13001. image: {
  13002. source: "./media/characters/holly/front.svg",
  13003. extra: 639 / 606
  13004. }
  13005. },
  13006. back: {
  13007. height: math.unit(6, "feet"),
  13008. weight: math.unit(150, "lb"),
  13009. name: "Back",
  13010. image: {
  13011. source: "./media/characters/holly/back.svg",
  13012. extra: 623 / 598
  13013. }
  13014. },
  13015. frontWorking: {
  13016. height: math.unit(6, "feet"),
  13017. weight: math.unit(150, "lb"),
  13018. name: "Front (Working)",
  13019. image: {
  13020. source: "./media/characters/holly/front-working.svg",
  13021. extra: 607 / 577,
  13022. bottom: 0.048
  13023. }
  13024. },
  13025. },
  13026. [
  13027. {
  13028. name: "Normal",
  13029. height: math.unit(12 + 3 / 12, "feet"),
  13030. default: true
  13031. },
  13032. ]
  13033. ))
  13034. characterMakers.push(() => makeCharacter(
  13035. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13036. {
  13037. front: {
  13038. height: math.unit(6, "feet"),
  13039. weight: math.unit(150, "lb"),
  13040. name: "Front",
  13041. image: {
  13042. source: "./media/characters/porter/front.svg",
  13043. extra: 1,
  13044. bottom: 0.01
  13045. }
  13046. },
  13047. frontRobes: {
  13048. height: math.unit(6, "feet"),
  13049. weight: math.unit(150, "lb"),
  13050. name: "Front (Robes)",
  13051. image: {
  13052. source: "./media/characters/porter/front-robes.svg",
  13053. extra: 1.01,
  13054. bottom: 0.01
  13055. }
  13056. },
  13057. },
  13058. [
  13059. {
  13060. name: "Normal",
  13061. height: math.unit(11 + 9 / 12, "feet"),
  13062. default: true
  13063. },
  13064. ]
  13065. ))
  13066. characterMakers.push(() => makeCharacter(
  13067. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13068. {
  13069. legendary: {
  13070. height: math.unit(6, "feet"),
  13071. weight: math.unit(150, "lb"),
  13072. name: "Legendary",
  13073. image: {
  13074. source: "./media/characters/lucy/legendary.svg",
  13075. extra: 1355 / 1100,
  13076. bottom: 0.045
  13077. }
  13078. },
  13079. },
  13080. [
  13081. {
  13082. name: "Legendary",
  13083. height: math.unit(86882 * 2, "miles"),
  13084. default: true
  13085. },
  13086. ]
  13087. ))
  13088. characterMakers.push(() => makeCharacter(
  13089. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13090. {
  13091. front: {
  13092. height: math.unit(6, "feet"),
  13093. weight: math.unit(150, "lb"),
  13094. name: "Front",
  13095. image: {
  13096. source: "./media/characters/drusilla/front.svg",
  13097. extra: 678 / 635,
  13098. bottom: 0.03
  13099. }
  13100. },
  13101. back: {
  13102. height: math.unit(6, "feet"),
  13103. weight: math.unit(150, "lb"),
  13104. name: "Back",
  13105. image: {
  13106. source: "./media/characters/drusilla/back.svg",
  13107. extra: 678 / 635,
  13108. bottom: 0.005
  13109. }
  13110. },
  13111. },
  13112. [
  13113. {
  13114. name: "Macro",
  13115. height: math.unit(100, "feet")
  13116. },
  13117. {
  13118. name: "Canon Height",
  13119. height: math.unit(2000, "feet"),
  13120. default: true
  13121. },
  13122. ]
  13123. ))
  13124. characterMakers.push(() => makeCharacter(
  13125. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13126. {
  13127. front: {
  13128. height: math.unit(6, "feet"),
  13129. weight: math.unit(180, "lb"),
  13130. name: "Front",
  13131. image: {
  13132. source: "./media/characters/renard-thatch/front.svg",
  13133. extra: 2411 / 2275,
  13134. bottom: 0.01
  13135. }
  13136. },
  13137. frontPosing: {
  13138. height: math.unit(6, "feet"),
  13139. weight: math.unit(180, "lb"),
  13140. name: "Front (Posing)",
  13141. image: {
  13142. source: "./media/characters/renard-thatch/front-posing.svg",
  13143. extra: 2381 / 2261,
  13144. bottom: 0.01
  13145. }
  13146. },
  13147. back: {
  13148. height: math.unit(6, "feet"),
  13149. weight: math.unit(180, "lb"),
  13150. name: "Back",
  13151. image: {
  13152. source: "./media/characters/renard-thatch/back.svg",
  13153. extra: 2428 / 2288
  13154. }
  13155. },
  13156. },
  13157. [
  13158. {
  13159. name: "Micro",
  13160. height: math.unit(3, "inches")
  13161. },
  13162. {
  13163. name: "Default",
  13164. height: math.unit(6, "feet"),
  13165. default: true
  13166. },
  13167. {
  13168. name: "Macro",
  13169. height: math.unit(75, "feet")
  13170. },
  13171. ]
  13172. ))
  13173. characterMakers.push(() => makeCharacter(
  13174. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13175. {
  13176. front: {
  13177. height: math.unit(1450, "feet"),
  13178. weight: math.unit(1.21e6, "tons"),
  13179. name: "Front",
  13180. image: {
  13181. source: "./media/characters/sekvra/front.svg",
  13182. extra: 1,
  13183. bottom: 0.03
  13184. }
  13185. },
  13186. frontClothed: {
  13187. height: math.unit(1450, "feet"),
  13188. weight: math.unit(1.21e6, "tons"),
  13189. name: "Front (Clothed)",
  13190. image: {
  13191. source: "./media/characters/sekvra/front-clothed.svg",
  13192. extra: 1,
  13193. bottom: 0.03
  13194. }
  13195. },
  13196. side: {
  13197. height: math.unit(1450, "feet"),
  13198. weight: math.unit(1.21e6, "tons"),
  13199. name: "Side",
  13200. image: {
  13201. source: "./media/characters/sekvra/side.svg",
  13202. extra: 1,
  13203. bottom: 0.025
  13204. }
  13205. },
  13206. back: {
  13207. height: math.unit(1450, "feet"),
  13208. weight: math.unit(1.21e6, "tons"),
  13209. name: "Back",
  13210. image: {
  13211. source: "./media/characters/sekvra/back.svg",
  13212. extra: 1,
  13213. bottom: 0.005
  13214. }
  13215. },
  13216. },
  13217. [
  13218. {
  13219. name: "Macro",
  13220. height: math.unit(1450, "feet"),
  13221. default: true
  13222. },
  13223. {
  13224. name: "Megamacro",
  13225. height: math.unit(15000, "feet")
  13226. },
  13227. ]
  13228. ))
  13229. characterMakers.push(() => makeCharacter(
  13230. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13231. {
  13232. front: {
  13233. height: math.unit(6, "feet"),
  13234. weight: math.unit(150, "lb"),
  13235. name: "Front",
  13236. image: {
  13237. source: "./media/characters/carmine/front.svg",
  13238. extra: 1,
  13239. bottom: 0.035
  13240. }
  13241. },
  13242. frontArmor: {
  13243. height: math.unit(6, "feet"),
  13244. weight: math.unit(150, "lb"),
  13245. name: "Front (Armor)",
  13246. image: {
  13247. source: "./media/characters/carmine/front-armor.svg",
  13248. extra: 1,
  13249. bottom: 0.035
  13250. }
  13251. },
  13252. },
  13253. [
  13254. {
  13255. name: "Large",
  13256. height: math.unit(1, "mile")
  13257. },
  13258. {
  13259. name: "Huge",
  13260. height: math.unit(40, "miles"),
  13261. default: true
  13262. },
  13263. {
  13264. name: "Colossal",
  13265. height: math.unit(2500, "miles")
  13266. },
  13267. ]
  13268. ))
  13269. characterMakers.push(() => makeCharacter(
  13270. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13271. {
  13272. front: {
  13273. height: math.unit(6, "feet"),
  13274. weight: math.unit(150, "lb"),
  13275. name: "Front",
  13276. image: {
  13277. source: "./media/characters/elyssia/front.svg",
  13278. extra: 2201 / 2035,
  13279. bottom: 0.05
  13280. }
  13281. },
  13282. frontClothed: {
  13283. height: math.unit(6, "feet"),
  13284. weight: math.unit(150, "lb"),
  13285. name: "Front (Clothed)",
  13286. image: {
  13287. source: "./media/characters/elyssia/front-clothed.svg",
  13288. extra: 2201 / 2035,
  13289. bottom: 0.05
  13290. }
  13291. },
  13292. back: {
  13293. height: math.unit(6, "feet"),
  13294. weight: math.unit(150, "lb"),
  13295. name: "Back",
  13296. image: {
  13297. source: "./media/characters/elyssia/back.svg",
  13298. extra: 2201 / 2035,
  13299. bottom: 0.013
  13300. }
  13301. },
  13302. },
  13303. [
  13304. {
  13305. name: "Smaller",
  13306. height: math.unit(150, "feet")
  13307. },
  13308. {
  13309. name: "Standard",
  13310. height: math.unit(1400, "feet"),
  13311. default: true
  13312. },
  13313. {
  13314. name: "Distracted",
  13315. height: math.unit(15000, "feet")
  13316. },
  13317. ]
  13318. ))
  13319. characterMakers.push(() => makeCharacter(
  13320. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13321. {
  13322. front: {
  13323. height: math.unit(7 + 4 / 12, "feet"),
  13324. weight: math.unit(500, "lb"),
  13325. name: "Front",
  13326. image: {
  13327. source: "./media/characters/geno-maxwell/front.svg",
  13328. extra: 2207 / 2040,
  13329. bottom: 0.015
  13330. }
  13331. },
  13332. },
  13333. [
  13334. {
  13335. name: "Micro",
  13336. height: math.unit(3, "inches")
  13337. },
  13338. {
  13339. name: "Normal",
  13340. height: math.unit(7 + 4 / 12, "feet"),
  13341. default: true
  13342. },
  13343. {
  13344. name: "Macro",
  13345. height: math.unit(220, "feet")
  13346. },
  13347. {
  13348. name: "Megamacro",
  13349. height: math.unit(11, "miles")
  13350. },
  13351. ]
  13352. ))
  13353. characterMakers.push(() => makeCharacter(
  13354. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13355. {
  13356. front: {
  13357. height: math.unit(7 + 4 / 12, "feet"),
  13358. weight: math.unit(500, "lb"),
  13359. name: "Front",
  13360. image: {
  13361. source: "./media/characters/regena-maxwell/front.svg",
  13362. extra: 3115 / 2770,
  13363. bottom: 0.02
  13364. }
  13365. },
  13366. },
  13367. [
  13368. {
  13369. name: "Normal",
  13370. height: math.unit(7 + 4 / 12, "feet"),
  13371. default: true
  13372. },
  13373. {
  13374. name: "Macro",
  13375. height: math.unit(220, "feet")
  13376. },
  13377. {
  13378. name: "Megamacro",
  13379. height: math.unit(11, "miles")
  13380. },
  13381. ]
  13382. ))
  13383. characterMakers.push(() => makeCharacter(
  13384. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13385. {
  13386. front: {
  13387. height: math.unit(6, "feet"),
  13388. weight: math.unit(150, "lb"),
  13389. name: "Front",
  13390. image: {
  13391. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13392. extra: 860 / 690,
  13393. bottom: 0.03
  13394. }
  13395. },
  13396. },
  13397. [
  13398. {
  13399. name: "Normal",
  13400. height: math.unit(1.7, "meters"),
  13401. default: true
  13402. },
  13403. ]
  13404. ))
  13405. characterMakers.push(() => makeCharacter(
  13406. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13407. {
  13408. front: {
  13409. height: math.unit(6, "feet"),
  13410. weight: math.unit(150, "lb"),
  13411. name: "Front",
  13412. image: {
  13413. source: "./media/characters/quilly/front.svg",
  13414. extra: 890 / 776
  13415. }
  13416. },
  13417. },
  13418. [
  13419. {
  13420. name: "Gigamacro",
  13421. height: math.unit(404090, "miles"),
  13422. default: true
  13423. },
  13424. ]
  13425. ))
  13426. characterMakers.push(() => makeCharacter(
  13427. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13428. {
  13429. front: {
  13430. height: math.unit(7 + 8 / 12, "feet"),
  13431. weight: math.unit(350, "lb"),
  13432. name: "Front",
  13433. image: {
  13434. source: "./media/characters/tempest/front.svg",
  13435. extra: 1175 / 1086,
  13436. bottom: 0.02
  13437. }
  13438. },
  13439. },
  13440. [
  13441. {
  13442. name: "Normal",
  13443. height: math.unit(7 + 8 / 12, "feet"),
  13444. default: true
  13445. },
  13446. ]
  13447. ))
  13448. characterMakers.push(() => makeCharacter(
  13449. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13450. {
  13451. side: {
  13452. height: math.unit(4 + 5 / 12, "feet"),
  13453. weight: math.unit(80, "lb"),
  13454. name: "Side",
  13455. image: {
  13456. source: "./media/characters/rodger/side.svg",
  13457. extra: 1235 / 1118
  13458. }
  13459. },
  13460. },
  13461. [
  13462. {
  13463. name: "Micro",
  13464. height: math.unit(1, "inch")
  13465. },
  13466. {
  13467. name: "Normal",
  13468. height: math.unit(4 + 5 / 12, "feet"),
  13469. default: true
  13470. },
  13471. {
  13472. name: "Macro",
  13473. height: math.unit(120, "feet")
  13474. },
  13475. ]
  13476. ))
  13477. characterMakers.push(() => makeCharacter(
  13478. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13479. {
  13480. front: {
  13481. height: math.unit(6, "feet"),
  13482. weight: math.unit(150, "lb"),
  13483. name: "Front",
  13484. image: {
  13485. source: "./media/characters/danyel/front.svg",
  13486. extra: 1185 / 1123,
  13487. bottom: 0.05
  13488. }
  13489. },
  13490. },
  13491. [
  13492. {
  13493. name: "Shrunken",
  13494. height: math.unit(0.5, "mm")
  13495. },
  13496. {
  13497. name: "Micro",
  13498. height: math.unit(1, "mm"),
  13499. default: true
  13500. },
  13501. {
  13502. name: "Upsized",
  13503. height: math.unit(5 + 5 / 12, "feet")
  13504. },
  13505. ]
  13506. ))
  13507. characterMakers.push(() => makeCharacter(
  13508. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13509. {
  13510. front: {
  13511. height: math.unit(5 + 6 / 12, "feet"),
  13512. weight: math.unit(200, "lb"),
  13513. name: "Front",
  13514. image: {
  13515. source: "./media/characters/vivian-bijoux/front.svg",
  13516. extra: 1,
  13517. bottom: 0.072
  13518. }
  13519. },
  13520. },
  13521. [
  13522. {
  13523. name: "Normal",
  13524. height: math.unit(5 + 6 / 12, "feet"),
  13525. default: true
  13526. },
  13527. {
  13528. name: "Bad Dream",
  13529. height: math.unit(500, "feet")
  13530. },
  13531. {
  13532. name: "Nightmare",
  13533. height: math.unit(500, "miles")
  13534. },
  13535. ]
  13536. ))
  13537. characterMakers.push(() => makeCharacter(
  13538. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13539. {
  13540. front: {
  13541. height: math.unit(6 + 1 / 12, "feet"),
  13542. weight: math.unit(260, "lb"),
  13543. name: "Front",
  13544. image: {
  13545. source: "./media/characters/zeta/front.svg",
  13546. extra: 1968 / 1889,
  13547. bottom: 0.06
  13548. }
  13549. },
  13550. back: {
  13551. height: math.unit(6 + 1 / 12, "feet"),
  13552. weight: math.unit(260, "lb"),
  13553. name: "Back",
  13554. image: {
  13555. source: "./media/characters/zeta/back.svg",
  13556. extra: 1944 / 1858,
  13557. bottom: 0.03
  13558. }
  13559. },
  13560. hand: {
  13561. height: math.unit(1.112, "feet"),
  13562. name: "Hand",
  13563. image: {
  13564. source: "./media/characters/zeta/hand.svg"
  13565. }
  13566. },
  13567. foot: {
  13568. height: math.unit(1.48, "feet"),
  13569. name: "Foot",
  13570. image: {
  13571. source: "./media/characters/zeta/foot.svg"
  13572. }
  13573. },
  13574. },
  13575. [
  13576. {
  13577. name: "Micro",
  13578. height: math.unit(6, "inches")
  13579. },
  13580. {
  13581. name: "Normal",
  13582. height: math.unit(6 + 1 / 12, "feet"),
  13583. default: true
  13584. },
  13585. {
  13586. name: "Macro",
  13587. height: math.unit(20, "feet")
  13588. },
  13589. ]
  13590. ))
  13591. characterMakers.push(() => makeCharacter(
  13592. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13593. {
  13594. front: {
  13595. height: math.unit(6, "feet"),
  13596. weight: math.unit(150, "lb"),
  13597. name: "Front",
  13598. image: {
  13599. source: "./media/characters/jamie-larsen/front.svg",
  13600. extra: 962 / 933,
  13601. bottom: 0.02
  13602. }
  13603. },
  13604. back: {
  13605. height: math.unit(6, "feet"),
  13606. weight: math.unit(150, "lb"),
  13607. name: "Back",
  13608. image: {
  13609. source: "./media/characters/jamie-larsen/back.svg",
  13610. extra: 997 / 946
  13611. }
  13612. },
  13613. },
  13614. [
  13615. {
  13616. name: "Macro",
  13617. height: math.unit(28 + 7 / 12, "feet"),
  13618. default: true
  13619. },
  13620. {
  13621. name: "Macro+",
  13622. height: math.unit(180, "feet")
  13623. },
  13624. {
  13625. name: "Megamacro",
  13626. height: math.unit(10, "miles")
  13627. },
  13628. {
  13629. name: "Gigamacro",
  13630. height: math.unit(200000, "miles")
  13631. },
  13632. ]
  13633. ))
  13634. characterMakers.push(() => makeCharacter(
  13635. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13636. {
  13637. front: {
  13638. height: math.unit(6, "feet"),
  13639. weight: math.unit(120, "lb"),
  13640. name: "Front",
  13641. image: {
  13642. source: "./media/characters/vance/front.svg",
  13643. extra: 1980 / 1890,
  13644. bottom: 0.09
  13645. }
  13646. },
  13647. back: {
  13648. height: math.unit(6, "feet"),
  13649. weight: math.unit(120, "lb"),
  13650. name: "Back",
  13651. image: {
  13652. source: "./media/characters/vance/back.svg",
  13653. extra: 2081 / 1994,
  13654. bottom: 0.014
  13655. }
  13656. },
  13657. hand: {
  13658. height: math.unit(0.88, "feet"),
  13659. name: "Hand",
  13660. image: {
  13661. source: "./media/characters/vance/hand.svg"
  13662. }
  13663. },
  13664. foot: {
  13665. height: math.unit(0.64, "feet"),
  13666. name: "Foot",
  13667. image: {
  13668. source: "./media/characters/vance/foot.svg"
  13669. }
  13670. },
  13671. },
  13672. [
  13673. {
  13674. name: "Small",
  13675. height: math.unit(90, "feet"),
  13676. default: true
  13677. },
  13678. {
  13679. name: "Macro",
  13680. height: math.unit(100, "meters")
  13681. },
  13682. {
  13683. name: "Megamacro",
  13684. height: math.unit(15, "miles")
  13685. },
  13686. ]
  13687. ))
  13688. characterMakers.push(() => makeCharacter(
  13689. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13690. {
  13691. front: {
  13692. height: math.unit(6, "feet"),
  13693. weight: math.unit(180, "lb"),
  13694. name: "Front",
  13695. image: {
  13696. source: "./media/characters/xochitl/front.svg",
  13697. extra: 2297 / 2261,
  13698. bottom: 0.065
  13699. }
  13700. },
  13701. back: {
  13702. height: math.unit(6, "feet"),
  13703. weight: math.unit(180, "lb"),
  13704. name: "Back",
  13705. image: {
  13706. source: "./media/characters/xochitl/back.svg",
  13707. extra: 2386 / 2354,
  13708. bottom: 0.01
  13709. }
  13710. },
  13711. foot: {
  13712. height: math.unit(6 / 5 * 1.15, "feet"),
  13713. weight: math.unit(150, "lb"),
  13714. name: "Foot",
  13715. image: {
  13716. source: "./media/characters/xochitl/foot.svg"
  13717. }
  13718. },
  13719. },
  13720. [
  13721. {
  13722. name: "Macro",
  13723. height: math.unit(80, "feet")
  13724. },
  13725. {
  13726. name: "Macro+",
  13727. height: math.unit(400, "feet"),
  13728. default: true
  13729. },
  13730. {
  13731. name: "Gigamacro",
  13732. height: math.unit(80000, "miles")
  13733. },
  13734. {
  13735. name: "Gigamacro+",
  13736. height: math.unit(400000, "miles")
  13737. },
  13738. {
  13739. name: "Teramacro",
  13740. height: math.unit(300, "AU")
  13741. },
  13742. ]
  13743. ))
  13744. characterMakers.push(() => makeCharacter(
  13745. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13746. {
  13747. front: {
  13748. height: math.unit(6, "feet"),
  13749. weight: math.unit(150, "lb"),
  13750. name: "Front",
  13751. image: {
  13752. source: "./media/characters/vincent/front.svg",
  13753. extra: 1130 / 1080,
  13754. bottom: 0.055
  13755. }
  13756. },
  13757. beak: {
  13758. height: math.unit(6 * 0.1, "feet"),
  13759. name: "Beak",
  13760. image: {
  13761. source: "./media/characters/vincent/beak.svg"
  13762. }
  13763. },
  13764. hand: {
  13765. height: math.unit(6 * 0.85, "feet"),
  13766. weight: math.unit(150, "lb"),
  13767. name: "Hand",
  13768. image: {
  13769. source: "./media/characters/vincent/hand.svg"
  13770. }
  13771. },
  13772. foot: {
  13773. height: math.unit(6 * 0.19, "feet"),
  13774. weight: math.unit(150, "lb"),
  13775. name: "Foot",
  13776. image: {
  13777. source: "./media/characters/vincent/foot.svg"
  13778. }
  13779. },
  13780. },
  13781. [
  13782. {
  13783. name: "Base",
  13784. height: math.unit(6 + 5 / 12, "feet"),
  13785. default: true
  13786. },
  13787. {
  13788. name: "Macro",
  13789. height: math.unit(300, "feet")
  13790. },
  13791. {
  13792. name: "Megamacro",
  13793. height: math.unit(2, "miles")
  13794. },
  13795. {
  13796. name: "Gigamacro",
  13797. height: math.unit(1000, "miles")
  13798. },
  13799. ]
  13800. ))
  13801. characterMakers.push(() => makeCharacter(
  13802. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13803. {
  13804. front: {
  13805. height: math.unit(2, "meters"),
  13806. weight: math.unit(500, "kg"),
  13807. name: "Front",
  13808. image: {
  13809. source: "./media/characters/coatl/front.svg",
  13810. extra: 3948 / 3500,
  13811. bottom: 0.082
  13812. }
  13813. },
  13814. },
  13815. [
  13816. {
  13817. name: "Normal",
  13818. height: math.unit(4, "meters")
  13819. },
  13820. {
  13821. name: "Macro",
  13822. height: math.unit(100, "meters"),
  13823. default: true
  13824. },
  13825. {
  13826. name: "Macro+",
  13827. height: math.unit(300, "meters")
  13828. },
  13829. {
  13830. name: "Megamacro",
  13831. height: math.unit(3, "gigameters")
  13832. },
  13833. {
  13834. name: "Megamacro+",
  13835. height: math.unit(300, "terameters")
  13836. },
  13837. {
  13838. name: "Megamacro++",
  13839. height: math.unit(3, "lightyears")
  13840. },
  13841. ]
  13842. ))
  13843. characterMakers.push(() => makeCharacter(
  13844. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13845. {
  13846. front: {
  13847. height: math.unit(6, "feet"),
  13848. weight: math.unit(50, "kg"),
  13849. name: "front",
  13850. image: {
  13851. source: "./media/characters/shiroryu/front.svg",
  13852. extra: 1990 / 1935
  13853. }
  13854. },
  13855. },
  13856. [
  13857. {
  13858. name: "Mortal Mingling",
  13859. height: math.unit(3, "meters")
  13860. },
  13861. {
  13862. name: "Kaiju-ish",
  13863. height: math.unit(250, "meters")
  13864. },
  13865. {
  13866. name: "Somewhat Godly",
  13867. height: math.unit(400, "km"),
  13868. default: true
  13869. },
  13870. {
  13871. name: "Planetary",
  13872. height: math.unit(300, "megameters")
  13873. },
  13874. {
  13875. name: "Galaxy-dwarfing",
  13876. height: math.unit(450, "kiloparsecs")
  13877. },
  13878. {
  13879. name: "Universe Eater",
  13880. height: math.unit(150, "gigaparsecs")
  13881. },
  13882. {
  13883. name: "Almost Immeasurable",
  13884. height: math.unit(1.3e266, "yottaparsecs")
  13885. },
  13886. ]
  13887. ))
  13888. characterMakers.push(() => makeCharacter(
  13889. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13890. {
  13891. front: {
  13892. height: math.unit(6, "feet"),
  13893. weight: math.unit(150, "lb"),
  13894. name: "Front",
  13895. image: {
  13896. source: "./media/characters/umeko/front.svg",
  13897. extra: 1,
  13898. bottom: 0.019
  13899. }
  13900. },
  13901. frontArmored: {
  13902. height: math.unit(6, "feet"),
  13903. weight: math.unit(150, "lb"),
  13904. name: "Front (Armored)",
  13905. image: {
  13906. source: "./media/characters/umeko/front-armored.svg",
  13907. extra: 1,
  13908. bottom: 0.021
  13909. }
  13910. },
  13911. },
  13912. [
  13913. {
  13914. name: "Macro",
  13915. height: math.unit(220, "feet"),
  13916. default: true
  13917. },
  13918. {
  13919. name: "Guardian Dragon",
  13920. height: math.unit(50, "miles")
  13921. },
  13922. {
  13923. name: "Cosmic",
  13924. height: math.unit(800000, "miles")
  13925. },
  13926. ]
  13927. ))
  13928. characterMakers.push(() => makeCharacter(
  13929. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13930. {
  13931. front: {
  13932. height: math.unit(6, "feet"),
  13933. weight: math.unit(150, "lb"),
  13934. name: "Front",
  13935. image: {
  13936. source: "./media/characters/cassidy/front.svg",
  13937. extra: 1,
  13938. bottom: 0.043
  13939. }
  13940. },
  13941. },
  13942. [
  13943. {
  13944. name: "Canon Height",
  13945. height: math.unit(120, "feet"),
  13946. default: true
  13947. },
  13948. {
  13949. name: "Macro+",
  13950. height: math.unit(400, "feet")
  13951. },
  13952. {
  13953. name: "Macro++",
  13954. height: math.unit(4000, "feet")
  13955. },
  13956. {
  13957. name: "Megamacro",
  13958. height: math.unit(3, "miles")
  13959. },
  13960. ]
  13961. ))
  13962. characterMakers.push(() => makeCharacter(
  13963. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13964. {
  13965. front: {
  13966. height: math.unit(6, "feet"),
  13967. weight: math.unit(150, "lb"),
  13968. name: "Front",
  13969. image: {
  13970. source: "./media/characters/isaac/front.svg",
  13971. extra: 896 / 815,
  13972. bottom: 0.11
  13973. }
  13974. },
  13975. },
  13976. [
  13977. {
  13978. name: "Human Size",
  13979. height: math.unit(8, "feet"),
  13980. default: true
  13981. },
  13982. {
  13983. name: "Macro",
  13984. height: math.unit(400, "feet")
  13985. },
  13986. {
  13987. name: "Megamacro",
  13988. height: math.unit(50, "miles")
  13989. },
  13990. {
  13991. name: "Canon Height",
  13992. height: math.unit(200, "AU")
  13993. },
  13994. ]
  13995. ))
  13996. characterMakers.push(() => makeCharacter(
  13997. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13998. {
  13999. front: {
  14000. height: math.unit(6, "feet"),
  14001. weight: math.unit(72, "kg"),
  14002. name: "Front",
  14003. image: {
  14004. source: "./media/characters/sleekit/front.svg",
  14005. extra: 4693 / 4487,
  14006. bottom: 0.012
  14007. }
  14008. },
  14009. },
  14010. [
  14011. {
  14012. name: "Minimum Height",
  14013. height: math.unit(10, "meters")
  14014. },
  14015. {
  14016. name: "Smaller",
  14017. height: math.unit(25, "meters")
  14018. },
  14019. {
  14020. name: "Larger",
  14021. height: math.unit(38, "meters"),
  14022. default: true
  14023. },
  14024. {
  14025. name: "Maximum height",
  14026. height: math.unit(100, "meters")
  14027. },
  14028. ]
  14029. ))
  14030. characterMakers.push(() => makeCharacter(
  14031. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14032. {
  14033. front: {
  14034. height: math.unit(6, "feet"),
  14035. weight: math.unit(150, "lb"),
  14036. name: "Front",
  14037. image: {
  14038. source: "./media/characters/nillia/front.svg",
  14039. extra: 2195 / 2037,
  14040. bottom: 0.005
  14041. }
  14042. },
  14043. back: {
  14044. height: math.unit(6, "feet"),
  14045. weight: math.unit(150, "lb"),
  14046. name: "Back",
  14047. image: {
  14048. source: "./media/characters/nillia/back.svg",
  14049. extra: 2195 / 2037,
  14050. bottom: 0.005
  14051. }
  14052. },
  14053. },
  14054. [
  14055. {
  14056. name: "Canon Height",
  14057. height: math.unit(489, "feet"),
  14058. default: true
  14059. }
  14060. ]
  14061. ))
  14062. characterMakers.push(() => makeCharacter(
  14063. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14064. {
  14065. front: {
  14066. height: math.unit(6, "feet"),
  14067. weight: math.unit(150, "lb"),
  14068. name: "Front",
  14069. image: {
  14070. source: "./media/characters/mesmyriza/front.svg",
  14071. extra: 2067 / 1784,
  14072. bottom: 0.035
  14073. }
  14074. },
  14075. foot: {
  14076. height: math.unit(6 / (250 / 35), "feet"),
  14077. name: "Foot",
  14078. image: {
  14079. source: "./media/characters/mesmyriza/foot.svg"
  14080. }
  14081. },
  14082. },
  14083. [
  14084. {
  14085. name: "Macro",
  14086. height: math.unit(457, "meters"),
  14087. default: true
  14088. },
  14089. {
  14090. name: "Megamacro",
  14091. height: math.unit(8, "megameters")
  14092. },
  14093. ]
  14094. ))
  14095. characterMakers.push(() => makeCharacter(
  14096. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14097. {
  14098. front: {
  14099. height: math.unit(6, "feet"),
  14100. weight: math.unit(250, "lb"),
  14101. name: "Front",
  14102. image: {
  14103. source: "./media/characters/saudade/front.svg",
  14104. extra: 1172 / 1139,
  14105. bottom: 0.035
  14106. }
  14107. },
  14108. },
  14109. [
  14110. {
  14111. name: "Micro",
  14112. height: math.unit(3, "inches")
  14113. },
  14114. {
  14115. name: "Normal",
  14116. height: math.unit(6, "feet"),
  14117. default: true
  14118. },
  14119. {
  14120. name: "Macro",
  14121. height: math.unit(50, "feet")
  14122. },
  14123. {
  14124. name: "Megamacro",
  14125. height: math.unit(2800, "feet")
  14126. },
  14127. ]
  14128. ))
  14129. characterMakers.push(() => makeCharacter(
  14130. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14131. {
  14132. front: {
  14133. height: math.unit(5 + 4 / 12, "feet"),
  14134. weight: math.unit(100, "lb"),
  14135. name: "Front",
  14136. image: {
  14137. source: "./media/characters/keireer/front.svg",
  14138. extra: 716 / 666,
  14139. bottom: 0.05
  14140. }
  14141. },
  14142. },
  14143. [
  14144. {
  14145. name: "Normal",
  14146. height: math.unit(5 + 4 / 12, "feet"),
  14147. default: true
  14148. },
  14149. ]
  14150. ))
  14151. characterMakers.push(() => makeCharacter(
  14152. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14153. {
  14154. front: {
  14155. height: math.unit(6, "feet"),
  14156. weight: math.unit(90, "kg"),
  14157. name: "Front",
  14158. image: {
  14159. source: "./media/characters/mirja/front.svg",
  14160. extra: 1789 / 1683,
  14161. bottom: 0.05
  14162. }
  14163. },
  14164. frontDressed: {
  14165. height: math.unit(6, "feet"),
  14166. weight: math.unit(90, "lb"),
  14167. name: "Front (Dressed)",
  14168. image: {
  14169. source: "./media/characters/mirja/front-dressed.svg",
  14170. extra: 1789 / 1683,
  14171. bottom: 0.05
  14172. }
  14173. },
  14174. back: {
  14175. height: math.unit(6, "feet"),
  14176. weight: math.unit(90, "lb"),
  14177. name: "Back",
  14178. image: {
  14179. source: "./media/characters/mirja/back.svg",
  14180. extra: 953 / 917,
  14181. bottom: 0.017
  14182. }
  14183. },
  14184. },
  14185. [
  14186. {
  14187. name: "\"Incognito\"",
  14188. height: math.unit(3, "meters")
  14189. },
  14190. {
  14191. name: "Strolling Size",
  14192. height: math.unit(15, "km")
  14193. },
  14194. {
  14195. name: "Larger Strolling Size",
  14196. height: math.unit(400, "km")
  14197. },
  14198. {
  14199. name: "Preferred Size",
  14200. height: math.unit(5000, "km")
  14201. },
  14202. {
  14203. name: "True Size",
  14204. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14205. default: true
  14206. },
  14207. ]
  14208. ))
  14209. characterMakers.push(() => makeCharacter(
  14210. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14211. {
  14212. front: {
  14213. height: math.unit(15, "feet"),
  14214. weight: math.unit(880, "kg"),
  14215. name: "Front",
  14216. image: {
  14217. source: "./media/characters/nightraver/front.svg",
  14218. extra: 2444 / 2160,
  14219. bottom: 0.027
  14220. }
  14221. },
  14222. back: {
  14223. height: math.unit(15, "feet"),
  14224. weight: math.unit(880, "kg"),
  14225. name: "Back",
  14226. image: {
  14227. source: "./media/characters/nightraver/back.svg",
  14228. extra: 2309 / 2180,
  14229. bottom: 0.005
  14230. }
  14231. },
  14232. sole: {
  14233. height: math.unit(2.878, "feet"),
  14234. name: "Sole",
  14235. image: {
  14236. source: "./media/characters/nightraver/sole.svg"
  14237. }
  14238. },
  14239. foot: {
  14240. height: math.unit(2.285, "feet"),
  14241. name: "Foot",
  14242. image: {
  14243. source: "./media/characters/nightraver/foot.svg"
  14244. }
  14245. },
  14246. maw: {
  14247. height: math.unit(2.67, "feet"),
  14248. name: "Maw",
  14249. image: {
  14250. source: "./media/characters/nightraver/maw.svg"
  14251. }
  14252. },
  14253. },
  14254. [
  14255. {
  14256. name: "Micro",
  14257. height: math.unit(1, "cm")
  14258. },
  14259. {
  14260. name: "Normal",
  14261. height: math.unit(15, "feet"),
  14262. default: true
  14263. },
  14264. {
  14265. name: "Macro",
  14266. height: math.unit(300, "feet")
  14267. },
  14268. {
  14269. name: "Megamacro",
  14270. height: math.unit(300, "miles")
  14271. },
  14272. {
  14273. name: "Gigamacro",
  14274. height: math.unit(10000, "miles")
  14275. },
  14276. ]
  14277. ))
  14278. characterMakers.push(() => makeCharacter(
  14279. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14280. {
  14281. side: {
  14282. height: math.unit(2, "inches"),
  14283. weight: math.unit(5, "grams"),
  14284. name: "Side",
  14285. image: {
  14286. source: "./media/characters/arc/side.svg"
  14287. }
  14288. },
  14289. },
  14290. [
  14291. {
  14292. name: "Micro",
  14293. height: math.unit(2, "inches"),
  14294. default: true
  14295. },
  14296. ]
  14297. ))
  14298. characterMakers.push(() => makeCharacter(
  14299. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14300. {
  14301. front: {
  14302. height: math.unit(1.1938, "meters"),
  14303. weight: math.unit(54, "kg"),
  14304. name: "Front",
  14305. image: {
  14306. source: "./media/characters/nebula-shahar/front.svg",
  14307. extra: 1642 / 1436,
  14308. bottom: 0.06
  14309. }
  14310. },
  14311. },
  14312. [
  14313. {
  14314. name: "Megamicro",
  14315. height: math.unit(0.3, "mm")
  14316. },
  14317. {
  14318. name: "Micro",
  14319. height: math.unit(3, "cm")
  14320. },
  14321. {
  14322. name: "Normal",
  14323. height: math.unit(138, "cm"),
  14324. default: true
  14325. },
  14326. {
  14327. name: "Macro",
  14328. height: math.unit(30, "m")
  14329. },
  14330. ]
  14331. ))
  14332. characterMakers.push(() => makeCharacter(
  14333. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14334. {
  14335. front: {
  14336. height: math.unit(5.24, "feet"),
  14337. weight: math.unit(150, "lb"),
  14338. name: "Front",
  14339. image: {
  14340. source: "./media/characters/shayla/front.svg",
  14341. extra: 1512 / 1414,
  14342. bottom: 0.01
  14343. }
  14344. },
  14345. back: {
  14346. height: math.unit(5.24, "feet"),
  14347. weight: math.unit(150, "lb"),
  14348. name: "Back",
  14349. image: {
  14350. source: "./media/characters/shayla/back.svg",
  14351. extra: 1512 / 1414
  14352. }
  14353. },
  14354. hand: {
  14355. height: math.unit(0.7781496062992126, "feet"),
  14356. name: "Hand",
  14357. image: {
  14358. source: "./media/characters/shayla/hand.svg"
  14359. }
  14360. },
  14361. foot: {
  14362. height: math.unit(1.4206036745406823, "feet"),
  14363. name: "Foot",
  14364. image: {
  14365. source: "./media/characters/shayla/foot.svg"
  14366. }
  14367. },
  14368. },
  14369. [
  14370. {
  14371. name: "Micro",
  14372. height: math.unit(0.32, "feet")
  14373. },
  14374. {
  14375. name: "Normal",
  14376. height: math.unit(5.24, "feet"),
  14377. default: true
  14378. },
  14379. {
  14380. name: "Macro",
  14381. height: math.unit(492.12, "feet")
  14382. },
  14383. {
  14384. name: "Megamacro",
  14385. height: math.unit(186.41, "miles")
  14386. },
  14387. ]
  14388. ))
  14389. characterMakers.push(() => makeCharacter(
  14390. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14391. {
  14392. front: {
  14393. height: math.unit(2.2, "m"),
  14394. weight: math.unit(120, "kg"),
  14395. name: "Front",
  14396. image: {
  14397. source: "./media/characters/pia-jr/front.svg",
  14398. extra: 1000 / 970,
  14399. bottom: 0.035
  14400. }
  14401. },
  14402. hand: {
  14403. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14404. name: "Hand",
  14405. image: {
  14406. source: "./media/characters/pia-jr/hand.svg"
  14407. }
  14408. },
  14409. paw: {
  14410. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14411. name: "Paw",
  14412. image: {
  14413. source: "./media/characters/pia-jr/paw.svg"
  14414. }
  14415. },
  14416. },
  14417. [
  14418. {
  14419. name: "Micro",
  14420. height: math.unit(1.2, "cm")
  14421. },
  14422. {
  14423. name: "Normal",
  14424. height: math.unit(2.2, "m"),
  14425. default: true
  14426. },
  14427. {
  14428. name: "Macro",
  14429. height: math.unit(180, "m")
  14430. },
  14431. {
  14432. name: "Megamacro",
  14433. height: math.unit(420, "km")
  14434. },
  14435. ]
  14436. ))
  14437. characterMakers.push(() => makeCharacter(
  14438. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14439. {
  14440. front: {
  14441. height: math.unit(2, "m"),
  14442. weight: math.unit(115, "kg"),
  14443. name: "Front",
  14444. image: {
  14445. source: "./media/characters/pia-sr/front.svg",
  14446. extra: 760 / 730,
  14447. bottom: 0.015
  14448. }
  14449. },
  14450. back: {
  14451. height: math.unit(2, "m"),
  14452. weight: math.unit(115, "kg"),
  14453. name: "Back",
  14454. image: {
  14455. source: "./media/characters/pia-sr/back.svg",
  14456. extra: 760 / 730,
  14457. bottom: 0.01
  14458. }
  14459. },
  14460. hand: {
  14461. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14462. name: "Hand",
  14463. image: {
  14464. source: "./media/characters/pia-sr/hand.svg"
  14465. }
  14466. },
  14467. foot: {
  14468. height: math.unit(1.83, "feet"),
  14469. name: "Foot",
  14470. image: {
  14471. source: "./media/characters/pia-sr/foot.svg"
  14472. }
  14473. },
  14474. },
  14475. [
  14476. {
  14477. name: "Micro",
  14478. height: math.unit(88, "mm")
  14479. },
  14480. {
  14481. name: "Normal",
  14482. height: math.unit(2, "m"),
  14483. default: true
  14484. },
  14485. {
  14486. name: "Macro",
  14487. height: math.unit(200, "m")
  14488. },
  14489. {
  14490. name: "Megamacro",
  14491. height: math.unit(420, "km")
  14492. },
  14493. ]
  14494. ))
  14495. characterMakers.push(() => makeCharacter(
  14496. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14497. {
  14498. front: {
  14499. height: math.unit(8 + 2 / 12, "feet"),
  14500. weight: math.unit(300, "lb"),
  14501. name: "Front",
  14502. image: {
  14503. source: "./media/characters/kibibyte/front.svg",
  14504. extra: 2221 / 2098,
  14505. bottom: 0.04
  14506. }
  14507. },
  14508. },
  14509. [
  14510. {
  14511. name: "Normal",
  14512. height: math.unit(8 + 2 / 12, "feet"),
  14513. default: true
  14514. },
  14515. {
  14516. name: "Socialable Macro",
  14517. height: math.unit(50, "feet")
  14518. },
  14519. {
  14520. name: "Macro",
  14521. height: math.unit(300, "feet")
  14522. },
  14523. {
  14524. name: "Megamacro",
  14525. height: math.unit(500, "miles")
  14526. },
  14527. ]
  14528. ))
  14529. characterMakers.push(() => makeCharacter(
  14530. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14531. {
  14532. front: {
  14533. height: math.unit(6, "feet"),
  14534. weight: math.unit(150, "lb"),
  14535. name: "Front",
  14536. image: {
  14537. source: "./media/characters/felix/front.svg",
  14538. extra: 762 / 722,
  14539. bottom: 0.02
  14540. }
  14541. },
  14542. frontClothed: {
  14543. height: math.unit(6, "feet"),
  14544. weight: math.unit(150, "lb"),
  14545. name: "Front (Clothed)",
  14546. image: {
  14547. source: "./media/characters/felix/front-clothed.svg",
  14548. extra: 762 / 722,
  14549. bottom: 0.02
  14550. }
  14551. },
  14552. },
  14553. [
  14554. {
  14555. name: "Normal",
  14556. height: math.unit(6 + 8 / 12, "feet"),
  14557. default: true
  14558. },
  14559. {
  14560. name: "Macro",
  14561. height: math.unit(2600, "feet")
  14562. },
  14563. {
  14564. name: "Megamacro",
  14565. height: math.unit(450, "miles")
  14566. },
  14567. ]
  14568. ))
  14569. characterMakers.push(() => makeCharacter(
  14570. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14571. {
  14572. front: {
  14573. height: math.unit(6 + 1 / 12, "feet"),
  14574. weight: math.unit(250, "lb"),
  14575. name: "Front",
  14576. image: {
  14577. source: "./media/characters/tobo/front.svg",
  14578. extra: 608 / 586,
  14579. bottom: 0.023
  14580. }
  14581. },
  14582. back: {
  14583. height: math.unit(6 + 1 / 12, "feet"),
  14584. weight: math.unit(250, "lb"),
  14585. name: "Back",
  14586. image: {
  14587. source: "./media/characters/tobo/back.svg",
  14588. extra: 608 / 586
  14589. }
  14590. },
  14591. },
  14592. [
  14593. {
  14594. name: "Nano",
  14595. height: math.unit(2, "nm")
  14596. },
  14597. {
  14598. name: "Megamicro",
  14599. height: math.unit(0.1, "mm")
  14600. },
  14601. {
  14602. name: "Micro",
  14603. height: math.unit(1, "inch"),
  14604. default: true
  14605. },
  14606. {
  14607. name: "Human-sized",
  14608. height: math.unit(6 + 1 / 12, "feet")
  14609. },
  14610. {
  14611. name: "Macro",
  14612. height: math.unit(250, "feet")
  14613. },
  14614. {
  14615. name: "Megamacro",
  14616. height: math.unit(75, "miles")
  14617. },
  14618. {
  14619. name: "Texas-sized",
  14620. height: math.unit(750, "miles")
  14621. },
  14622. {
  14623. name: "Teramacro",
  14624. height: math.unit(50000, "miles")
  14625. },
  14626. ]
  14627. ))
  14628. characterMakers.push(() => makeCharacter(
  14629. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14630. {
  14631. front: {
  14632. height: math.unit(6, "feet"),
  14633. weight: math.unit(269, "lb"),
  14634. name: "Front",
  14635. image: {
  14636. source: "./media/characters/danny-kapowsky/front.svg",
  14637. extra: 766 / 736,
  14638. bottom: 0.044
  14639. }
  14640. },
  14641. back: {
  14642. height: math.unit(6, "feet"),
  14643. weight: math.unit(269, "lb"),
  14644. name: "Back",
  14645. image: {
  14646. source: "./media/characters/danny-kapowsky/back.svg",
  14647. extra: 797 / 760,
  14648. bottom: 0.025
  14649. }
  14650. },
  14651. },
  14652. [
  14653. {
  14654. name: "Macro",
  14655. height: math.unit(150, "feet"),
  14656. default: true
  14657. },
  14658. {
  14659. name: "Macro+",
  14660. height: math.unit(200, "feet")
  14661. },
  14662. {
  14663. name: "Macro++",
  14664. height: math.unit(300, "feet")
  14665. },
  14666. {
  14667. name: "Macro+++",
  14668. height: math.unit(400, "feet")
  14669. },
  14670. ]
  14671. ))
  14672. characterMakers.push(() => makeCharacter(
  14673. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14674. {
  14675. side: {
  14676. height: math.unit(6, "feet"),
  14677. weight: math.unit(170, "lb"),
  14678. name: "Side",
  14679. image: {
  14680. source: "./media/characters/finn/side.svg",
  14681. extra: 1953 / 1807,
  14682. bottom: 0.057
  14683. }
  14684. },
  14685. },
  14686. [
  14687. {
  14688. name: "Megamacro",
  14689. height: math.unit(14445, "feet"),
  14690. default: true
  14691. },
  14692. ]
  14693. ))
  14694. characterMakers.push(() => makeCharacter(
  14695. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14696. {
  14697. front: {
  14698. height: math.unit(5 + 6 / 12, "feet"),
  14699. weight: math.unit(125, "lb"),
  14700. name: "Front",
  14701. image: {
  14702. source: "./media/characters/roy/front.svg",
  14703. extra: 1,
  14704. bottom: 0.11
  14705. }
  14706. },
  14707. },
  14708. [
  14709. {
  14710. name: "Micro",
  14711. height: math.unit(3, "inches"),
  14712. default: true
  14713. },
  14714. {
  14715. name: "Normal",
  14716. height: math.unit(5 + 6 / 12, "feet")
  14717. },
  14718. {
  14719. name: "Lesser Macro",
  14720. height: math.unit(60, "feet")
  14721. },
  14722. {
  14723. name: "Greater Macro",
  14724. height: math.unit(120, "feet")
  14725. },
  14726. ]
  14727. ))
  14728. characterMakers.push(() => makeCharacter(
  14729. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14730. {
  14731. front: {
  14732. height: math.unit(6, "feet"),
  14733. weight: math.unit(100, "lb"),
  14734. name: "Front",
  14735. image: {
  14736. source: "./media/characters/aevsivs/front.svg",
  14737. extra: 1,
  14738. bottom: 0.03
  14739. }
  14740. },
  14741. back: {
  14742. height: math.unit(6, "feet"),
  14743. weight: math.unit(100, "lb"),
  14744. name: "Back",
  14745. image: {
  14746. source: "./media/characters/aevsivs/back.svg"
  14747. }
  14748. },
  14749. },
  14750. [
  14751. {
  14752. name: "Micro",
  14753. height: math.unit(2, "inches"),
  14754. default: true
  14755. },
  14756. {
  14757. name: "Normal",
  14758. height: math.unit(5, "feet")
  14759. },
  14760. ]
  14761. ))
  14762. characterMakers.push(() => makeCharacter(
  14763. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14764. {
  14765. front: {
  14766. height: math.unit(5 + 7 / 12, "feet"),
  14767. weight: math.unit(159, "lb"),
  14768. name: "Front",
  14769. image: {
  14770. source: "./media/characters/hildegard/front.svg",
  14771. extra: 289 / 269,
  14772. bottom: 7.63 / 297.8
  14773. }
  14774. },
  14775. back: {
  14776. height: math.unit(5 + 7 / 12, "feet"),
  14777. weight: math.unit(159, "lb"),
  14778. name: "Back",
  14779. image: {
  14780. source: "./media/characters/hildegard/back.svg",
  14781. extra: 280 / 260,
  14782. bottom: 2.3 / 282
  14783. }
  14784. },
  14785. },
  14786. [
  14787. {
  14788. name: "Normal",
  14789. height: math.unit(5 + 7 / 12, "feet"),
  14790. default: true
  14791. },
  14792. ]
  14793. ))
  14794. characterMakers.push(() => makeCharacter(
  14795. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14796. {
  14797. bernard: {
  14798. height: math.unit(2 + 7 / 12, "feet"),
  14799. weight: math.unit(66, "lb"),
  14800. name: "Bernard",
  14801. rename: true,
  14802. image: {
  14803. source: "./media/characters/bernard-wilder/bernard.svg",
  14804. extra: 192 / 128,
  14805. bottom: 0.05
  14806. }
  14807. },
  14808. wilder: {
  14809. height: math.unit(5 + 8 / 12, "feet"),
  14810. weight: math.unit(143, "lb"),
  14811. name: "Wilder",
  14812. rename: true,
  14813. image: {
  14814. source: "./media/characters/bernard-wilder/wilder.svg",
  14815. extra: 361 / 312,
  14816. bottom: 0.02
  14817. }
  14818. },
  14819. },
  14820. [
  14821. {
  14822. name: "Normal",
  14823. height: math.unit(2 + 7 / 12, "feet"),
  14824. default: true
  14825. },
  14826. ]
  14827. ))
  14828. characterMakers.push(() => makeCharacter(
  14829. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14830. {
  14831. anthro: {
  14832. height: math.unit(6 + 1 / 12, "feet"),
  14833. weight: math.unit(155, "lb"),
  14834. name: "Anthro",
  14835. image: {
  14836. source: "./media/characters/hearth/anthro.svg",
  14837. extra: 260 / 250,
  14838. bottom: 0.02
  14839. }
  14840. },
  14841. feral: {
  14842. height: math.unit(3.78, "feet"),
  14843. weight: math.unit(35, "kg"),
  14844. name: "Feral",
  14845. image: {
  14846. source: "./media/characters/hearth/feral.svg",
  14847. extra: 153 / 135,
  14848. bottom: 0.03
  14849. }
  14850. },
  14851. },
  14852. [
  14853. {
  14854. name: "Normal",
  14855. height: math.unit(6 + 1 / 12, "feet"),
  14856. default: true
  14857. },
  14858. ]
  14859. ))
  14860. characterMakers.push(() => makeCharacter(
  14861. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14862. {
  14863. front: {
  14864. height: math.unit(6, "feet"),
  14865. weight: math.unit(182, "lb"),
  14866. name: "Front",
  14867. image: {
  14868. source: "./media/characters/ingrid/front.svg",
  14869. extra: 294 / 268,
  14870. bottom: 0.027
  14871. }
  14872. },
  14873. },
  14874. [
  14875. {
  14876. name: "Normal",
  14877. height: math.unit(6, "feet"),
  14878. default: true
  14879. },
  14880. ]
  14881. ))
  14882. characterMakers.push(() => makeCharacter(
  14883. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14884. {
  14885. eevee: {
  14886. height: math.unit(2 + 10 / 12, "feet"),
  14887. weight: math.unit(86, "lb"),
  14888. name: "Malgam",
  14889. image: {
  14890. source: "./media/characters/malgam/eevee.svg",
  14891. extra: 218 / 180,
  14892. bottom: 0.2
  14893. }
  14894. },
  14895. sylveon: {
  14896. height: math.unit(4, "feet"),
  14897. weight: math.unit(101, "lb"),
  14898. name: "Future Malgam",
  14899. rename: true,
  14900. image: {
  14901. source: "./media/characters/malgam/sylveon.svg",
  14902. extra: 371 / 325,
  14903. bottom: 0.015
  14904. }
  14905. },
  14906. gigantamax: {
  14907. height: math.unit(50, "feet"),
  14908. name: "Gigantamax Malgam",
  14909. rename: true,
  14910. image: {
  14911. source: "./media/characters/malgam/gigantamax.svg"
  14912. }
  14913. },
  14914. },
  14915. [
  14916. {
  14917. name: "Normal",
  14918. height: math.unit(2 + 10 / 12, "feet"),
  14919. default: true
  14920. },
  14921. ]
  14922. ))
  14923. characterMakers.push(() => makeCharacter(
  14924. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14925. {
  14926. front: {
  14927. height: math.unit(5 + 11 / 12, "feet"),
  14928. weight: math.unit(188, "lb"),
  14929. name: "Front",
  14930. image: {
  14931. source: "./media/characters/fleur/front.svg",
  14932. extra: 309 / 283,
  14933. bottom: 0.007
  14934. }
  14935. },
  14936. },
  14937. [
  14938. {
  14939. name: "Normal",
  14940. height: math.unit(5 + 11 / 12, "feet"),
  14941. default: true
  14942. },
  14943. ]
  14944. ))
  14945. characterMakers.push(() => makeCharacter(
  14946. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14947. {
  14948. front: {
  14949. height: math.unit(5 + 4 / 12, "feet"),
  14950. weight: math.unit(122, "lb"),
  14951. name: "Front",
  14952. image: {
  14953. source: "./media/characters/jude/front.svg",
  14954. extra: 288 / 273,
  14955. bottom: 0.03
  14956. }
  14957. },
  14958. },
  14959. [
  14960. {
  14961. name: "Normal",
  14962. height: math.unit(5 + 4 / 12, "feet"),
  14963. default: true
  14964. },
  14965. ]
  14966. ))
  14967. characterMakers.push(() => makeCharacter(
  14968. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14969. {
  14970. front: {
  14971. height: math.unit(5 + 11 / 12, "feet"),
  14972. weight: math.unit(190, "lb"),
  14973. name: "Front",
  14974. image: {
  14975. source: "./media/characters/seara/front.svg",
  14976. extra: 1,
  14977. bottom: 0.05
  14978. }
  14979. },
  14980. },
  14981. [
  14982. {
  14983. name: "Normal",
  14984. height: math.unit(5 + 11 / 12, "feet"),
  14985. default: true
  14986. },
  14987. ]
  14988. ))
  14989. characterMakers.push(() => makeCharacter(
  14990. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14991. {
  14992. front: {
  14993. height: math.unit(16 + 5 / 12, "feet"),
  14994. weight: math.unit(524, "lb"),
  14995. name: "Front",
  14996. image: {
  14997. source: "./media/characters/caspian/front.svg",
  14998. extra: 1,
  14999. bottom: 0.04
  15000. }
  15001. },
  15002. },
  15003. [
  15004. {
  15005. name: "Normal",
  15006. height: math.unit(16 + 5 / 12, "feet"),
  15007. default: true
  15008. },
  15009. ]
  15010. ))
  15011. characterMakers.push(() => makeCharacter(
  15012. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15013. {
  15014. front: {
  15015. height: math.unit(5 + 7 / 12, "feet"),
  15016. weight: math.unit(170, "lb"),
  15017. name: "Front",
  15018. image: {
  15019. source: "./media/characters/mika/front.svg",
  15020. extra: 1,
  15021. bottom: 0.016
  15022. }
  15023. },
  15024. },
  15025. [
  15026. {
  15027. name: "Normal",
  15028. height: math.unit(5 + 7 / 12, "feet"),
  15029. default: true
  15030. },
  15031. ]
  15032. ))
  15033. characterMakers.push(() => makeCharacter(
  15034. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15035. {
  15036. front: {
  15037. height: math.unit(6 + 2 / 12, "feet"),
  15038. weight: math.unit(268, "lb"),
  15039. name: "Front",
  15040. image: {
  15041. source: "./media/characters/sol/front.svg",
  15042. extra: 247 / 231,
  15043. bottom: 0.05
  15044. }
  15045. },
  15046. },
  15047. [
  15048. {
  15049. name: "Normal",
  15050. height: math.unit(6 + 2 / 12, "feet"),
  15051. default: true
  15052. },
  15053. ]
  15054. ))
  15055. characterMakers.push(() => makeCharacter(
  15056. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15057. {
  15058. buizel: {
  15059. height: math.unit(2 + 5 / 12, "feet"),
  15060. weight: math.unit(87, "lb"),
  15061. name: "Buizel",
  15062. image: {
  15063. source: "./media/characters/umiko/buizel.svg",
  15064. extra: 172 / 157,
  15065. bottom: 0.01
  15066. }
  15067. },
  15068. floatzel: {
  15069. height: math.unit(5 + 9 / 12, "feet"),
  15070. weight: math.unit(250, "lb"),
  15071. name: "Floatzel",
  15072. image: {
  15073. source: "./media/characters/umiko/floatzel.svg",
  15074. extra: 262 / 248
  15075. }
  15076. },
  15077. },
  15078. [
  15079. {
  15080. name: "Normal",
  15081. height: math.unit(2 + 5 / 12, "feet"),
  15082. default: true
  15083. },
  15084. ]
  15085. ))
  15086. characterMakers.push(() => makeCharacter(
  15087. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15088. {
  15089. front: {
  15090. height: math.unit(6 + 2 / 12, "feet"),
  15091. weight: math.unit(146, "lb"),
  15092. name: "Front",
  15093. image: {
  15094. source: "./media/characters/iliac/front.svg",
  15095. extra: 389 / 365,
  15096. bottom: 0.035
  15097. }
  15098. },
  15099. },
  15100. [
  15101. {
  15102. name: "Normal",
  15103. height: math.unit(6 + 2 / 12, "feet"),
  15104. default: true
  15105. },
  15106. ]
  15107. ))
  15108. characterMakers.push(() => makeCharacter(
  15109. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15110. {
  15111. front: {
  15112. height: math.unit(6, "feet"),
  15113. weight: math.unit(170, "lb"),
  15114. name: "Front",
  15115. image: {
  15116. source: "./media/characters/topaz/front.svg",
  15117. extra: 317 / 303,
  15118. bottom: 0.055
  15119. }
  15120. },
  15121. },
  15122. [
  15123. {
  15124. name: "Normal",
  15125. height: math.unit(6, "feet"),
  15126. default: true
  15127. },
  15128. ]
  15129. ))
  15130. characterMakers.push(() => makeCharacter(
  15131. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15132. {
  15133. front: {
  15134. height: math.unit(5 + 11 / 12, "feet"),
  15135. weight: math.unit(144, "lb"),
  15136. name: "Front",
  15137. image: {
  15138. source: "./media/characters/gabriel/front.svg",
  15139. extra: 285 / 262,
  15140. bottom: 0.004
  15141. }
  15142. },
  15143. },
  15144. [
  15145. {
  15146. name: "Normal",
  15147. height: math.unit(5 + 11 / 12, "feet"),
  15148. default: true
  15149. },
  15150. ]
  15151. ))
  15152. characterMakers.push(() => makeCharacter(
  15153. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15154. {
  15155. side: {
  15156. height: math.unit(6 + 5 / 12, "feet"),
  15157. weight: math.unit(300, "lb"),
  15158. name: "Side",
  15159. image: {
  15160. source: "./media/characters/tempest-suicune/side.svg",
  15161. extra: 195 / 154,
  15162. bottom: 0.04
  15163. }
  15164. },
  15165. },
  15166. [
  15167. {
  15168. name: "Normal",
  15169. height: math.unit(6 + 5 / 12, "feet"),
  15170. default: true
  15171. },
  15172. ]
  15173. ))
  15174. characterMakers.push(() => makeCharacter(
  15175. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15176. {
  15177. front: {
  15178. height: math.unit(7 + 2 / 12, "feet"),
  15179. weight: math.unit(322, "lb"),
  15180. name: "Front",
  15181. image: {
  15182. source: "./media/characters/vulcan/front.svg",
  15183. extra: 154 / 147,
  15184. bottom: 0.04
  15185. }
  15186. },
  15187. },
  15188. [
  15189. {
  15190. name: "Normal",
  15191. height: math.unit(7 + 2 / 12, "feet"),
  15192. default: true
  15193. },
  15194. ]
  15195. ))
  15196. characterMakers.push(() => makeCharacter(
  15197. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15198. {
  15199. front: {
  15200. height: math.unit(5 + 10 / 12, "feet"),
  15201. weight: math.unit(264, "lb"),
  15202. name: "Front",
  15203. image: {
  15204. source: "./media/characters/gault/front.svg",
  15205. extra: 161 / 140,
  15206. bottom: 0.028
  15207. }
  15208. },
  15209. },
  15210. [
  15211. {
  15212. name: "Normal",
  15213. height: math.unit(5 + 10 / 12, "feet"),
  15214. default: true
  15215. },
  15216. ]
  15217. ))
  15218. characterMakers.push(() => makeCharacter(
  15219. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15220. {
  15221. front: {
  15222. height: math.unit(6, "feet"),
  15223. weight: math.unit(150, "lb"),
  15224. name: "Front",
  15225. image: {
  15226. source: "./media/characters/shard/front.svg",
  15227. extra: 273 / 238,
  15228. bottom: 0.02
  15229. }
  15230. },
  15231. },
  15232. [
  15233. {
  15234. name: "Normal",
  15235. height: math.unit(3 + 6 / 12, "feet"),
  15236. default: true
  15237. },
  15238. ]
  15239. ))
  15240. characterMakers.push(() => makeCharacter(
  15241. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15242. {
  15243. front: {
  15244. height: math.unit(5 + 11 / 12, "feet"),
  15245. weight: math.unit(146, "lb"),
  15246. name: "Front",
  15247. image: {
  15248. source: "./media/characters/ashe/front.svg",
  15249. extra: 400 / 373,
  15250. bottom: 0.01
  15251. }
  15252. },
  15253. },
  15254. [
  15255. {
  15256. name: "Normal",
  15257. height: math.unit(5 + 11 / 12, "feet"),
  15258. default: true
  15259. },
  15260. ]
  15261. ))
  15262. characterMakers.push(() => makeCharacter(
  15263. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15264. {
  15265. front: {
  15266. height: math.unit(5 + 5 / 12, "feet"),
  15267. weight: math.unit(135, "lb"),
  15268. name: "Front",
  15269. image: {
  15270. source: "./media/characters/beatrix/front.svg",
  15271. extra: 392 / 379,
  15272. bottom: 0.01
  15273. }
  15274. },
  15275. },
  15276. [
  15277. {
  15278. name: "Normal",
  15279. height: math.unit(6, "feet"),
  15280. default: true
  15281. },
  15282. ]
  15283. ))
  15284. characterMakers.push(() => makeCharacter(
  15285. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15286. {
  15287. front: {
  15288. height: math.unit(6, "feet"),
  15289. weight: math.unit(150, "lb"),
  15290. name: "Front",
  15291. image: {
  15292. source: "./media/characters/ignatius/front.svg",
  15293. extra: 245 / 222,
  15294. bottom: 0.01
  15295. }
  15296. },
  15297. },
  15298. [
  15299. {
  15300. name: "Normal",
  15301. height: math.unit(5 + 5 / 12, "feet"),
  15302. default: true
  15303. },
  15304. ]
  15305. ))
  15306. characterMakers.push(() => makeCharacter(
  15307. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15308. {
  15309. front: {
  15310. height: math.unit(6 + 2 / 12, "feet"),
  15311. weight: math.unit(138, "lb"),
  15312. name: "Front",
  15313. image: {
  15314. source: "./media/characters/mei-li/front.svg",
  15315. extra: 237 / 229,
  15316. bottom: 0.03
  15317. }
  15318. },
  15319. },
  15320. [
  15321. {
  15322. name: "Normal",
  15323. height: math.unit(6 + 2 / 12, "feet"),
  15324. default: true
  15325. },
  15326. ]
  15327. ))
  15328. characterMakers.push(() => makeCharacter(
  15329. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15330. {
  15331. front: {
  15332. height: math.unit(2 + 4 / 12, "feet"),
  15333. weight: math.unit(62, "lb"),
  15334. name: "Front",
  15335. image: {
  15336. source: "./media/characters/puru/front.svg",
  15337. extra: 206 / 149,
  15338. bottom: 0.06
  15339. }
  15340. },
  15341. },
  15342. [
  15343. {
  15344. name: "Normal",
  15345. height: math.unit(2 + 4 / 12, "feet"),
  15346. default: true
  15347. },
  15348. ]
  15349. ))
  15350. characterMakers.push(() => makeCharacter(
  15351. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15352. {
  15353. anthro: {
  15354. height: math.unit(5 + 8/12, "feet"),
  15355. weight: math.unit(200, "lb"),
  15356. energyNeed: math.unit(2000, "kcal"),
  15357. name: "Anthro",
  15358. image: {
  15359. source: "./media/characters/kee/anthro.svg",
  15360. extra: 3251/3184,
  15361. bottom: 250/3501
  15362. }
  15363. },
  15364. taur: {
  15365. height: math.unit(11, "feet"),
  15366. weight: math.unit(500, "lb"),
  15367. energyNeed: math.unit(5000, "kcal"),
  15368. name: "Taur",
  15369. image: {
  15370. source: "./media/characters/kee/taur.svg",
  15371. extra: 1362/1320,
  15372. bottom: 83/1445
  15373. }
  15374. },
  15375. },
  15376. [
  15377. {
  15378. name: "Normal",
  15379. height: math.unit(5 + 8/12, "feet"),
  15380. default: true
  15381. },
  15382. {
  15383. name: "Macro",
  15384. height: math.unit(35, "feet")
  15385. },
  15386. ]
  15387. ))
  15388. characterMakers.push(() => makeCharacter(
  15389. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15390. {
  15391. anthro: {
  15392. height: math.unit(7, "feet"),
  15393. weight: math.unit(190, "lb"),
  15394. name: "Anthro",
  15395. image: {
  15396. source: "./media/characters/cobalt-dracha/anthro.svg",
  15397. extra: 231 / 225,
  15398. bottom: 0.04
  15399. }
  15400. },
  15401. feral: {
  15402. height: math.unit(9 + 7 / 12, "feet"),
  15403. weight: math.unit(294, "lb"),
  15404. name: "Feral",
  15405. image: {
  15406. source: "./media/characters/cobalt-dracha/feral.svg",
  15407. extra: 692 / 633,
  15408. bottom: 0.05
  15409. }
  15410. },
  15411. },
  15412. [
  15413. {
  15414. name: "Normal",
  15415. height: math.unit(7, "feet"),
  15416. default: true
  15417. },
  15418. ]
  15419. ))
  15420. characterMakers.push(() => makeCharacter(
  15421. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15422. {
  15423. fallen: {
  15424. height: math.unit(11 + 8 / 12, "feet"),
  15425. weight: math.unit(485, "lb"),
  15426. name: "Java (Fallen)",
  15427. rename: true,
  15428. image: {
  15429. source: "./media/characters/java/fallen.svg",
  15430. extra: 226 / 208,
  15431. bottom: 0.005
  15432. }
  15433. },
  15434. godkin: {
  15435. height: math.unit(10 + 6 / 12, "feet"),
  15436. weight: math.unit(328, "lb"),
  15437. name: "Java (Godkin)",
  15438. rename: true,
  15439. image: {
  15440. source: "./media/characters/java/godkin.svg",
  15441. extra: 270 / 262,
  15442. bottom: 0.02
  15443. }
  15444. },
  15445. },
  15446. [
  15447. {
  15448. name: "Normal",
  15449. height: math.unit(11 + 8 / 12, "feet"),
  15450. default: true
  15451. },
  15452. ]
  15453. ))
  15454. characterMakers.push(() => makeCharacter(
  15455. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15456. {
  15457. front: {
  15458. height: math.unit(7 + 8 / 12, "feet"),
  15459. weight: math.unit(320, "lb"),
  15460. name: "Front",
  15461. image: {
  15462. source: "./media/characters/skoll/front.svg",
  15463. extra: 232 / 220,
  15464. bottom: 0.02
  15465. }
  15466. },
  15467. },
  15468. [
  15469. {
  15470. name: "Normal",
  15471. height: math.unit(7 + 8 / 12, "feet"),
  15472. default: true
  15473. },
  15474. ]
  15475. ))
  15476. characterMakers.push(() => makeCharacter(
  15477. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15478. {
  15479. front: {
  15480. height: math.unit(5 + 9 / 12, "feet"),
  15481. weight: math.unit(170, "lb"),
  15482. name: "Front",
  15483. image: {
  15484. source: "./media/characters/purna/front.svg",
  15485. extra: 239 / 229,
  15486. bottom: 0.01
  15487. }
  15488. },
  15489. },
  15490. [
  15491. {
  15492. name: "Normal",
  15493. height: math.unit(5 + 9 / 12, "feet"),
  15494. default: true
  15495. },
  15496. ]
  15497. ))
  15498. characterMakers.push(() => makeCharacter(
  15499. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15500. {
  15501. front: {
  15502. height: math.unit(5 + 9 / 12, "feet"),
  15503. weight: math.unit(142, "lb"),
  15504. name: "Front",
  15505. image: {
  15506. source: "./media/characters/kuva/front.svg",
  15507. extra: 281 / 271,
  15508. bottom: 0.006
  15509. }
  15510. },
  15511. },
  15512. [
  15513. {
  15514. name: "Normal",
  15515. height: math.unit(5 + 9 / 12, "feet"),
  15516. default: true
  15517. },
  15518. ]
  15519. ))
  15520. characterMakers.push(() => makeCharacter(
  15521. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15522. {
  15523. anthro: {
  15524. height: math.unit(9 + 2 / 12, "feet"),
  15525. weight: math.unit(270, "lb"),
  15526. name: "Anthro",
  15527. image: {
  15528. source: "./media/characters/embra/anthro.svg",
  15529. extra: 200 / 187,
  15530. bottom: 0.02
  15531. }
  15532. },
  15533. feral: {
  15534. height: math.unit(18 + 8 / 12, "feet"),
  15535. weight: math.unit(576, "lb"),
  15536. name: "Feral",
  15537. image: {
  15538. source: "./media/characters/embra/feral.svg",
  15539. extra: 152 / 137,
  15540. bottom: 0.037
  15541. }
  15542. },
  15543. },
  15544. [
  15545. {
  15546. name: "Normal",
  15547. height: math.unit(9 + 2 / 12, "feet"),
  15548. default: true
  15549. },
  15550. ]
  15551. ))
  15552. characterMakers.push(() => makeCharacter(
  15553. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15554. {
  15555. anthro: {
  15556. height: math.unit(10 + 9 / 12, "feet"),
  15557. weight: math.unit(224, "lb"),
  15558. name: "Anthro",
  15559. image: {
  15560. source: "./media/characters/grottos/anthro.svg",
  15561. extra: 350 / 332,
  15562. bottom: 0.045
  15563. }
  15564. },
  15565. feral: {
  15566. height: math.unit(20 + 7 / 12, "feet"),
  15567. weight: math.unit(629, "lb"),
  15568. name: "Feral",
  15569. image: {
  15570. source: "./media/characters/grottos/feral.svg",
  15571. extra: 207 / 190,
  15572. bottom: 0.05
  15573. }
  15574. },
  15575. },
  15576. [
  15577. {
  15578. name: "Normal",
  15579. height: math.unit(10 + 9 / 12, "feet"),
  15580. default: true
  15581. },
  15582. ]
  15583. ))
  15584. characterMakers.push(() => makeCharacter(
  15585. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15586. {
  15587. anthro: {
  15588. height: math.unit(9 + 6 / 12, "feet"),
  15589. weight: math.unit(298, "lb"),
  15590. name: "Anthro",
  15591. image: {
  15592. source: "./media/characters/frifna/anthro.svg",
  15593. extra: 282 / 269,
  15594. bottom: 0.015
  15595. }
  15596. },
  15597. feral: {
  15598. height: math.unit(16 + 2 / 12, "feet"),
  15599. weight: math.unit(624, "lb"),
  15600. name: "Feral",
  15601. image: {
  15602. source: "./media/characters/frifna/feral.svg"
  15603. }
  15604. },
  15605. },
  15606. [
  15607. {
  15608. name: "Normal",
  15609. height: math.unit(9 + 6 / 12, "feet"),
  15610. default: true
  15611. },
  15612. ]
  15613. ))
  15614. characterMakers.push(() => makeCharacter(
  15615. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15616. {
  15617. front: {
  15618. height: math.unit(6 + 2 / 12, "feet"),
  15619. weight: math.unit(168, "lb"),
  15620. name: "Front",
  15621. image: {
  15622. source: "./media/characters/elise/front.svg",
  15623. extra: 276 / 271
  15624. }
  15625. },
  15626. },
  15627. [
  15628. {
  15629. name: "Normal",
  15630. height: math.unit(6 + 2 / 12, "feet"),
  15631. default: true
  15632. },
  15633. ]
  15634. ))
  15635. characterMakers.push(() => makeCharacter(
  15636. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15637. {
  15638. front: {
  15639. height: math.unit(5 + 10 / 12, "feet"),
  15640. weight: math.unit(210, "lb"),
  15641. name: "Front",
  15642. image: {
  15643. source: "./media/characters/glade/front.svg",
  15644. extra: 258 / 247,
  15645. bottom: 0.008
  15646. }
  15647. },
  15648. },
  15649. [
  15650. {
  15651. name: "Normal",
  15652. height: math.unit(5 + 10 / 12, "feet"),
  15653. default: true
  15654. },
  15655. ]
  15656. ))
  15657. characterMakers.push(() => makeCharacter(
  15658. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15659. {
  15660. front: {
  15661. height: math.unit(5 + 10 / 12, "feet"),
  15662. weight: math.unit(129, "lb"),
  15663. name: "Front",
  15664. image: {
  15665. source: "./media/characters/rina/front.svg",
  15666. extra: 266 / 255,
  15667. bottom: 0.005
  15668. }
  15669. },
  15670. },
  15671. [
  15672. {
  15673. name: "Normal",
  15674. height: math.unit(5 + 10 / 12, "feet"),
  15675. default: true
  15676. },
  15677. ]
  15678. ))
  15679. characterMakers.push(() => makeCharacter(
  15680. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15681. {
  15682. front: {
  15683. height: math.unit(6 + 1 / 12, "feet"),
  15684. weight: math.unit(192, "lb"),
  15685. name: "Front",
  15686. image: {
  15687. source: "./media/characters/veronica/front.svg",
  15688. extra: 319 / 309,
  15689. bottom: 0.005
  15690. }
  15691. },
  15692. },
  15693. [
  15694. {
  15695. name: "Normal",
  15696. height: math.unit(6 + 1 / 12, "feet"),
  15697. default: true
  15698. },
  15699. ]
  15700. ))
  15701. characterMakers.push(() => makeCharacter(
  15702. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15703. {
  15704. front: {
  15705. height: math.unit(9 + 3 / 12, "feet"),
  15706. weight: math.unit(1100, "lb"),
  15707. name: "Front",
  15708. image: {
  15709. source: "./media/characters/braxton/front.svg",
  15710. extra: 1057 / 984,
  15711. bottom: 0.05
  15712. }
  15713. },
  15714. },
  15715. [
  15716. {
  15717. name: "Normal",
  15718. height: math.unit(9 + 3 / 12, "feet")
  15719. },
  15720. {
  15721. name: "Giant",
  15722. height: math.unit(300, "feet"),
  15723. default: true
  15724. },
  15725. {
  15726. name: "Macro",
  15727. height: math.unit(700, "feet")
  15728. },
  15729. {
  15730. name: "Megamacro",
  15731. height: math.unit(6000, "feet")
  15732. },
  15733. ]
  15734. ))
  15735. characterMakers.push(() => makeCharacter(
  15736. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15737. {
  15738. front: {
  15739. height: math.unit(6 + 7 / 12, "feet"),
  15740. weight: math.unit(150, "lb"),
  15741. name: "Front",
  15742. image: {
  15743. source: "./media/characters/blue-feyonics/front.svg",
  15744. extra: 1403 / 1306,
  15745. bottom: 0.047
  15746. }
  15747. },
  15748. },
  15749. [
  15750. {
  15751. name: "Normal",
  15752. height: math.unit(6 + 7 / 12, "feet"),
  15753. default: true
  15754. },
  15755. ]
  15756. ))
  15757. characterMakers.push(() => makeCharacter(
  15758. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15759. {
  15760. front: {
  15761. height: math.unit(1.8, "meters"),
  15762. weight: math.unit(60, "kg"),
  15763. name: "Front",
  15764. image: {
  15765. source: "./media/characters/maxwell/front.svg",
  15766. extra: 2060 / 1873
  15767. }
  15768. },
  15769. },
  15770. [
  15771. {
  15772. name: "Micro",
  15773. height: math.unit(1, "mm")
  15774. },
  15775. {
  15776. name: "Normal",
  15777. height: math.unit(1.8, "meter"),
  15778. default: true
  15779. },
  15780. {
  15781. name: "Macro",
  15782. height: math.unit(30, "meters")
  15783. },
  15784. {
  15785. name: "Megamacro",
  15786. height: math.unit(10, "km")
  15787. },
  15788. ]
  15789. ))
  15790. characterMakers.push(() => makeCharacter(
  15791. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15792. {
  15793. front: {
  15794. height: math.unit(6, "feet"),
  15795. weight: math.unit(150, "lb"),
  15796. name: "Front",
  15797. image: {
  15798. source: "./media/characters/jack/front.svg",
  15799. extra: 1754 / 1640,
  15800. bottom: 0.01
  15801. }
  15802. },
  15803. },
  15804. [
  15805. {
  15806. name: "Normal",
  15807. height: math.unit(80000, "feet"),
  15808. default: true
  15809. },
  15810. {
  15811. name: "Max size",
  15812. height: math.unit(10, "lightyears")
  15813. },
  15814. ]
  15815. ))
  15816. characterMakers.push(() => makeCharacter(
  15817. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15818. {
  15819. urban: {
  15820. height: math.unit(5, "feet"),
  15821. weight: math.unit(240, "lb"),
  15822. name: "Urban",
  15823. image: {
  15824. source: "./media/characters/cafat/urban.svg",
  15825. extra: 1223/1126,
  15826. bottom: 205/1428
  15827. }
  15828. },
  15829. summer: {
  15830. height: math.unit(5, "feet"),
  15831. weight: math.unit(240, "lb"),
  15832. name: "Summer",
  15833. image: {
  15834. source: "./media/characters/cafat/summer.svg",
  15835. extra: 1223/1126,
  15836. bottom: 205/1428
  15837. }
  15838. },
  15839. winter: {
  15840. height: math.unit(5, "feet"),
  15841. weight: math.unit(240, "lb"),
  15842. name: "Winter",
  15843. image: {
  15844. source: "./media/characters/cafat/winter.svg",
  15845. extra: 1223/1126,
  15846. bottom: 205/1428
  15847. }
  15848. },
  15849. lingerie: {
  15850. height: math.unit(5, "feet"),
  15851. weight: math.unit(240, "lb"),
  15852. name: "Lingerie",
  15853. image: {
  15854. source: "./media/characters/cafat/lingerie.svg",
  15855. extra: 1223/1126,
  15856. bottom: 205/1428
  15857. }
  15858. },
  15859. upright: {
  15860. height: math.unit(6.3, "feet"),
  15861. weight: math.unit(240, "lb"),
  15862. name: "Upright",
  15863. image: {
  15864. source: "./media/characters/cafat/upright.svg",
  15865. bottom: 0.01
  15866. }
  15867. },
  15868. uprightFull: {
  15869. height: math.unit(6.3, "feet"),
  15870. weight: math.unit(240, "lb"),
  15871. name: "Upright (Full)",
  15872. image: {
  15873. source: "./media/characters/cafat/upright-full.svg",
  15874. bottom: 0.01
  15875. }
  15876. },
  15877. },
  15878. [
  15879. {
  15880. name: "Small",
  15881. height: math.unit(5, "feet"),
  15882. default: true
  15883. },
  15884. {
  15885. name: "Large",
  15886. height: math.unit(13, "feet")
  15887. },
  15888. ]
  15889. ))
  15890. characterMakers.push(() => makeCharacter(
  15891. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15892. {
  15893. front: {
  15894. height: math.unit(6, "feet"),
  15895. weight: math.unit(150, "lb"),
  15896. name: "Front",
  15897. image: {
  15898. source: "./media/characters/verin-raharra/front.svg",
  15899. extra: 5019 / 4835,
  15900. bottom: 0.023
  15901. }
  15902. },
  15903. },
  15904. [
  15905. {
  15906. name: "Normal",
  15907. height: math.unit(7 + 5 / 12, "feet"),
  15908. default: true
  15909. },
  15910. {
  15911. name: "Upsized",
  15912. height: math.unit(20, "feet")
  15913. },
  15914. ]
  15915. ))
  15916. characterMakers.push(() => makeCharacter(
  15917. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15918. {
  15919. front: {
  15920. height: math.unit(7, "feet"),
  15921. weight: math.unit(230, "lb"),
  15922. name: "Front",
  15923. image: {
  15924. source: "./media/characters/nakata/front.svg",
  15925. extra: 1.005,
  15926. bottom: 0.01
  15927. }
  15928. },
  15929. },
  15930. [
  15931. {
  15932. name: "Normal",
  15933. height: math.unit(7, "feet"),
  15934. default: true
  15935. },
  15936. {
  15937. name: "Big",
  15938. height: math.unit(14, "feet")
  15939. },
  15940. {
  15941. name: "Macro",
  15942. height: math.unit(400, "feet")
  15943. },
  15944. ]
  15945. ))
  15946. characterMakers.push(() => makeCharacter(
  15947. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15948. {
  15949. front: {
  15950. height: math.unit(4.91, "feet"),
  15951. weight: math.unit(100, "lb"),
  15952. name: "Front",
  15953. image: {
  15954. source: "./media/characters/lily/front.svg",
  15955. extra: 1585 / 1415,
  15956. bottom: 0.02
  15957. }
  15958. },
  15959. },
  15960. [
  15961. {
  15962. name: "Normal",
  15963. height: math.unit(4.91, "feet"),
  15964. default: true
  15965. },
  15966. ]
  15967. ))
  15968. characterMakers.push(() => makeCharacter(
  15969. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15970. {
  15971. laying: {
  15972. height: math.unit(4 + 4 / 12, "feet"),
  15973. weight: math.unit(600, "lb"),
  15974. name: "Laying",
  15975. image: {
  15976. source: "./media/characters/sheila/laying.svg",
  15977. extra: 1333 / 1265,
  15978. bottom: 0.16
  15979. }
  15980. },
  15981. },
  15982. [
  15983. {
  15984. name: "Normal",
  15985. height: math.unit(4 + 4 / 12, "feet"),
  15986. default: true
  15987. },
  15988. ]
  15989. ))
  15990. characterMakers.push(() => makeCharacter(
  15991. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15992. {
  15993. front: {
  15994. height: math.unit(6, "feet"),
  15995. weight: math.unit(190, "lb"),
  15996. name: "Front",
  15997. image: {
  15998. source: "./media/characters/sax/front.svg",
  15999. extra: 1187 / 973,
  16000. bottom: 0.042
  16001. }
  16002. },
  16003. },
  16004. [
  16005. {
  16006. name: "Micro",
  16007. height: math.unit(4, "inches"),
  16008. default: true
  16009. },
  16010. ]
  16011. ))
  16012. characterMakers.push(() => makeCharacter(
  16013. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16014. {
  16015. front: {
  16016. height: math.unit(6, "feet"),
  16017. weight: math.unit(150, "lb"),
  16018. name: "Front",
  16019. image: {
  16020. source: "./media/characters/pandora/front.svg",
  16021. extra: 2720 / 2556,
  16022. bottom: 0.015
  16023. }
  16024. },
  16025. back: {
  16026. height: math.unit(6, "feet"),
  16027. weight: math.unit(150, "lb"),
  16028. name: "Back",
  16029. image: {
  16030. source: "./media/characters/pandora/back.svg",
  16031. extra: 2720 / 2556,
  16032. bottom: 0.01
  16033. }
  16034. },
  16035. beans: {
  16036. height: math.unit(6 / 8, "feet"),
  16037. name: "Beans",
  16038. image: {
  16039. source: "./media/characters/pandora/beans.svg"
  16040. }
  16041. },
  16042. collar: {
  16043. height: math.unit(0.31, "feet"),
  16044. name: "Collar",
  16045. image: {
  16046. source: "./media/characters/pandora/collar.svg"
  16047. }
  16048. },
  16049. skirt: {
  16050. height: math.unit(6, "feet"),
  16051. weight: math.unit(150, "lb"),
  16052. name: "Skirt",
  16053. image: {
  16054. source: "./media/characters/pandora/skirt.svg",
  16055. extra: 1622 / 1525,
  16056. bottom: 0.015
  16057. }
  16058. },
  16059. hoodie: {
  16060. height: math.unit(6, "feet"),
  16061. weight: math.unit(150, "lb"),
  16062. name: "Hoodie",
  16063. image: {
  16064. source: "./media/characters/pandora/hoodie.svg",
  16065. extra: 1622 / 1525,
  16066. bottom: 0.015
  16067. }
  16068. },
  16069. casual: {
  16070. height: math.unit(6, "feet"),
  16071. weight: math.unit(150, "lb"),
  16072. name: "Casual",
  16073. image: {
  16074. source: "./media/characters/pandora/casual.svg",
  16075. extra: 1622 / 1525,
  16076. bottom: 0.015
  16077. }
  16078. },
  16079. },
  16080. [
  16081. {
  16082. name: "Normal",
  16083. height: math.unit(6, "feet")
  16084. },
  16085. {
  16086. name: "Big Steppy",
  16087. height: math.unit(1, "km"),
  16088. default: true
  16089. },
  16090. {
  16091. name: "Galactic Steppy",
  16092. height: math.unit(2, "gigameters")
  16093. },
  16094. ]
  16095. ))
  16096. characterMakers.push(() => makeCharacter(
  16097. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16098. {
  16099. side: {
  16100. height: math.unit(10, "feet"),
  16101. weight: math.unit(800, "kg"),
  16102. name: "Side",
  16103. image: {
  16104. source: "./media/characters/venio-darcony/side.svg",
  16105. extra: 1373 / 1003,
  16106. bottom: 0.037
  16107. }
  16108. },
  16109. front: {
  16110. height: math.unit(19, "feet"),
  16111. weight: math.unit(800, "kg"),
  16112. name: "Front",
  16113. image: {
  16114. source: "./media/characters/venio-darcony/front.svg"
  16115. }
  16116. },
  16117. back: {
  16118. height: math.unit(19, "feet"),
  16119. weight: math.unit(800, "kg"),
  16120. name: "Back",
  16121. image: {
  16122. source: "./media/characters/venio-darcony/back.svg"
  16123. }
  16124. },
  16125. sideNsfw: {
  16126. height: math.unit(10, "feet"),
  16127. weight: math.unit(800, "kg"),
  16128. name: "Side (NSFW)",
  16129. image: {
  16130. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16131. extra: 1373 / 1003,
  16132. bottom: 0.037
  16133. }
  16134. },
  16135. frontNsfw: {
  16136. height: math.unit(19, "feet"),
  16137. weight: math.unit(800, "kg"),
  16138. name: "Front (NSFW)",
  16139. image: {
  16140. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16141. }
  16142. },
  16143. backNsfw: {
  16144. height: math.unit(19, "feet"),
  16145. weight: math.unit(800, "kg"),
  16146. name: "Back (NSFW)",
  16147. image: {
  16148. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16149. }
  16150. },
  16151. sideArmored: {
  16152. height: math.unit(10, "feet"),
  16153. weight: math.unit(800, "kg"),
  16154. name: "Side (Armored)",
  16155. image: {
  16156. source: "./media/characters/venio-darcony/side-armored.svg",
  16157. extra: 1373 / 1003,
  16158. bottom: 0.037
  16159. }
  16160. },
  16161. frontArmored: {
  16162. height: math.unit(19, "feet"),
  16163. weight: math.unit(900, "kg"),
  16164. name: "Front (Armored)",
  16165. image: {
  16166. source: "./media/characters/venio-darcony/front-armored.svg"
  16167. }
  16168. },
  16169. backArmored: {
  16170. height: math.unit(19, "feet"),
  16171. weight: math.unit(900, "kg"),
  16172. name: "Back (Armored)",
  16173. image: {
  16174. source: "./media/characters/venio-darcony/back-armored.svg"
  16175. }
  16176. },
  16177. sword: {
  16178. height: math.unit(10, "feet"),
  16179. weight: math.unit(50, "lb"),
  16180. name: "Sword",
  16181. image: {
  16182. source: "./media/characters/venio-darcony/sword.svg"
  16183. }
  16184. },
  16185. },
  16186. [
  16187. {
  16188. name: "Normal",
  16189. height: math.unit(10, "feet")
  16190. },
  16191. {
  16192. name: "Macro",
  16193. height: math.unit(130, "feet"),
  16194. default: true
  16195. },
  16196. {
  16197. name: "Macro+",
  16198. height: math.unit(240, "feet")
  16199. },
  16200. ]
  16201. ))
  16202. characterMakers.push(() => makeCharacter(
  16203. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16204. {
  16205. front: {
  16206. height: math.unit(6, "feet"),
  16207. weight: math.unit(150, "lb"),
  16208. name: "Front",
  16209. image: {
  16210. source: "./media/characters/veski/front.svg",
  16211. extra: 1299 / 1225,
  16212. bottom: 0.04
  16213. }
  16214. },
  16215. back: {
  16216. height: math.unit(6, "feet"),
  16217. weight: math.unit(150, "lb"),
  16218. name: "Back",
  16219. image: {
  16220. source: "./media/characters/veski/back.svg",
  16221. extra: 1299 / 1225,
  16222. bottom: 0.008
  16223. }
  16224. },
  16225. maw: {
  16226. height: math.unit(1.5 * 1.21, "feet"),
  16227. name: "Maw",
  16228. image: {
  16229. source: "./media/characters/veski/maw.svg"
  16230. }
  16231. },
  16232. },
  16233. [
  16234. {
  16235. name: "Macro",
  16236. height: math.unit(2, "km"),
  16237. default: true
  16238. },
  16239. ]
  16240. ))
  16241. characterMakers.push(() => makeCharacter(
  16242. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16243. {
  16244. front: {
  16245. height: math.unit(5 + 7 / 12, "feet"),
  16246. name: "Front",
  16247. image: {
  16248. source: "./media/characters/isabelle/front.svg",
  16249. extra: 2130 / 1976,
  16250. bottom: 0.05
  16251. }
  16252. },
  16253. },
  16254. [
  16255. {
  16256. name: "Supermicro",
  16257. height: math.unit(10, "micrometers")
  16258. },
  16259. {
  16260. name: "Micro",
  16261. height: math.unit(1, "inch")
  16262. },
  16263. {
  16264. name: "Tiny",
  16265. height: math.unit(5, "inches")
  16266. },
  16267. {
  16268. name: "Standard",
  16269. height: math.unit(5 + 7 / 12, "inches")
  16270. },
  16271. {
  16272. name: "Macro",
  16273. height: math.unit(80, "meters"),
  16274. default: true
  16275. },
  16276. {
  16277. name: "Megamacro",
  16278. height: math.unit(250, "meters")
  16279. },
  16280. {
  16281. name: "Gigamacro",
  16282. height: math.unit(5, "km")
  16283. },
  16284. {
  16285. name: "Cosmic",
  16286. height: math.unit(2.5e6, "miles")
  16287. },
  16288. ]
  16289. ))
  16290. characterMakers.push(() => makeCharacter(
  16291. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16292. {
  16293. front: {
  16294. height: math.unit(6, "feet"),
  16295. weight: math.unit(150, "lb"),
  16296. name: "Front",
  16297. image: {
  16298. source: "./media/characters/hanzo/front.svg",
  16299. extra: 374 / 344,
  16300. bottom: 0.02
  16301. }
  16302. },
  16303. },
  16304. [
  16305. {
  16306. name: "Normal",
  16307. height: math.unit(8, "feet"),
  16308. default: true
  16309. },
  16310. ]
  16311. ))
  16312. characterMakers.push(() => makeCharacter(
  16313. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16314. {
  16315. front: {
  16316. height: math.unit(7, "feet"),
  16317. weight: math.unit(130, "lb"),
  16318. name: "Front",
  16319. image: {
  16320. source: "./media/characters/anna/front.svg",
  16321. extra: 169 / 145,
  16322. bottom: 0.06
  16323. }
  16324. },
  16325. full: {
  16326. height: math.unit(4.96, "feet"),
  16327. weight: math.unit(220, "lb"),
  16328. name: "Full",
  16329. image: {
  16330. source: "./media/characters/anna/full.svg",
  16331. extra: 138 / 114,
  16332. bottom: 0.15
  16333. }
  16334. },
  16335. tongue: {
  16336. height: math.unit(2.53, "feet"),
  16337. name: "Tongue",
  16338. image: {
  16339. source: "./media/characters/anna/tongue.svg"
  16340. }
  16341. },
  16342. },
  16343. [
  16344. {
  16345. name: "Normal",
  16346. height: math.unit(7, "feet"),
  16347. default: true
  16348. },
  16349. ]
  16350. ))
  16351. characterMakers.push(() => makeCharacter(
  16352. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16353. {
  16354. front: {
  16355. height: math.unit(7, "feet"),
  16356. weight: math.unit(150, "lb"),
  16357. name: "Front",
  16358. image: {
  16359. source: "./media/characters/ian-corvid/front.svg",
  16360. extra: 150 / 142,
  16361. bottom: 0.02
  16362. }
  16363. },
  16364. back: {
  16365. height: math.unit(7, "feet"),
  16366. weight: math.unit(150, "lb"),
  16367. name: "Back",
  16368. image: {
  16369. source: "./media/characters/ian-corvid/back.svg",
  16370. extra: 150 / 143,
  16371. bottom: 0.01
  16372. }
  16373. },
  16374. stomping: {
  16375. height: math.unit(7, "feet"),
  16376. weight: math.unit(150, "lb"),
  16377. name: "Stomping",
  16378. image: {
  16379. source: "./media/characters/ian-corvid/stomping.svg",
  16380. extra: 76 / 72
  16381. }
  16382. },
  16383. sitting: {
  16384. height: math.unit(7 / 1.8, "feet"),
  16385. weight: math.unit(150, "lb"),
  16386. name: "Sitting",
  16387. image: {
  16388. source: "./media/characters/ian-corvid/sitting.svg",
  16389. extra: 1400 / 1269,
  16390. bottom: 0.15
  16391. }
  16392. },
  16393. },
  16394. [
  16395. {
  16396. name: "Tiny Microw",
  16397. height: math.unit(1, "inch")
  16398. },
  16399. {
  16400. name: "Microw",
  16401. height: math.unit(6, "inches")
  16402. },
  16403. {
  16404. name: "Crow",
  16405. height: math.unit(7 + 1 / 12, "feet"),
  16406. default: true
  16407. },
  16408. {
  16409. name: "Macrow",
  16410. height: math.unit(176, "feet")
  16411. },
  16412. ]
  16413. ))
  16414. characterMakers.push(() => makeCharacter(
  16415. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16416. {
  16417. front: {
  16418. height: math.unit(5 + 7 / 12, "feet"),
  16419. weight: math.unit(147, "lb"),
  16420. name: "Front",
  16421. image: {
  16422. source: "./media/characters/natalie-kellon/front.svg",
  16423. extra: 1214 / 1141,
  16424. bottom: 0.02
  16425. }
  16426. },
  16427. },
  16428. [
  16429. {
  16430. name: "Micro",
  16431. height: math.unit(1 / 16, "inch")
  16432. },
  16433. {
  16434. name: "Tiny",
  16435. height: math.unit(4, "inches")
  16436. },
  16437. {
  16438. name: "Normal",
  16439. height: math.unit(5 + 7 / 12, "feet"),
  16440. default: true
  16441. },
  16442. {
  16443. name: "Amazon",
  16444. height: math.unit(12, "feet")
  16445. },
  16446. {
  16447. name: "Giantess",
  16448. height: math.unit(160, "meters")
  16449. },
  16450. {
  16451. name: "Titaness",
  16452. height: math.unit(800, "meters")
  16453. },
  16454. ]
  16455. ))
  16456. characterMakers.push(() => makeCharacter(
  16457. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16458. {
  16459. front: {
  16460. height: math.unit(6, "feet"),
  16461. weight: math.unit(150, "lb"),
  16462. name: "Front",
  16463. image: {
  16464. source: "./media/characters/alluria/front.svg",
  16465. extra: 806 / 738,
  16466. bottom: 0.01
  16467. }
  16468. },
  16469. side: {
  16470. height: math.unit(6, "feet"),
  16471. weight: math.unit(150, "lb"),
  16472. name: "Side",
  16473. image: {
  16474. source: "./media/characters/alluria/side.svg",
  16475. extra: 800 / 750,
  16476. }
  16477. },
  16478. back: {
  16479. height: math.unit(6, "feet"),
  16480. weight: math.unit(150, "lb"),
  16481. name: "Back",
  16482. image: {
  16483. source: "./media/characters/alluria/back.svg",
  16484. extra: 806 / 738,
  16485. }
  16486. },
  16487. frontMaid: {
  16488. height: math.unit(6, "feet"),
  16489. weight: math.unit(150, "lb"),
  16490. name: "Front (Maid)",
  16491. image: {
  16492. source: "./media/characters/alluria/front-maid.svg",
  16493. extra: 806 / 738,
  16494. bottom: 0.01
  16495. }
  16496. },
  16497. sideMaid: {
  16498. height: math.unit(6, "feet"),
  16499. weight: math.unit(150, "lb"),
  16500. name: "Side (Maid)",
  16501. image: {
  16502. source: "./media/characters/alluria/side-maid.svg",
  16503. extra: 800 / 750,
  16504. bottom: 0.005
  16505. }
  16506. },
  16507. backMaid: {
  16508. height: math.unit(6, "feet"),
  16509. weight: math.unit(150, "lb"),
  16510. name: "Back (Maid)",
  16511. image: {
  16512. source: "./media/characters/alluria/back-maid.svg",
  16513. extra: 806 / 738,
  16514. }
  16515. },
  16516. },
  16517. [
  16518. {
  16519. name: "Micro",
  16520. height: math.unit(6, "inches"),
  16521. default: true
  16522. },
  16523. ]
  16524. ))
  16525. characterMakers.push(() => makeCharacter(
  16526. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16527. {
  16528. front: {
  16529. height: math.unit(6, "feet"),
  16530. weight: math.unit(150, "lb"),
  16531. name: "Front",
  16532. image: {
  16533. source: "./media/characters/kyle/front.svg",
  16534. extra: 1069 / 962,
  16535. bottom: 77.228 / 1727.45
  16536. }
  16537. },
  16538. },
  16539. [
  16540. {
  16541. name: "Macro",
  16542. height: math.unit(150, "feet"),
  16543. default: true
  16544. },
  16545. ]
  16546. ))
  16547. characterMakers.push(() => makeCharacter(
  16548. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16549. {
  16550. front: {
  16551. height: math.unit(6, "feet"),
  16552. weight: math.unit(300, "lb"),
  16553. name: "Front",
  16554. image: {
  16555. source: "./media/characters/duncan/front.svg",
  16556. extra: 1650 / 1482,
  16557. bottom: 0.05
  16558. }
  16559. },
  16560. },
  16561. [
  16562. {
  16563. name: "Macro",
  16564. height: math.unit(100, "feet"),
  16565. default: true
  16566. },
  16567. ]
  16568. ))
  16569. characterMakers.push(() => makeCharacter(
  16570. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16571. {
  16572. front: {
  16573. height: math.unit(5 + 4 / 12, "feet"),
  16574. weight: math.unit(220, "lb"),
  16575. name: "Front",
  16576. image: {
  16577. source: "./media/characters/memory/front.svg",
  16578. extra: 3641 / 3545,
  16579. bottom: 0.03
  16580. }
  16581. },
  16582. back: {
  16583. height: math.unit(5 + 4 / 12, "feet"),
  16584. weight: math.unit(220, "lb"),
  16585. name: "Back",
  16586. image: {
  16587. source: "./media/characters/memory/back.svg",
  16588. extra: 3641 / 3545,
  16589. bottom: 0.025
  16590. }
  16591. },
  16592. frontSkirt: {
  16593. height: math.unit(5 + 4 / 12, "feet"),
  16594. weight: math.unit(220, "lb"),
  16595. name: "Front (Skirt)",
  16596. image: {
  16597. source: "./media/characters/memory/front-skirt.svg",
  16598. extra: 3641 / 3545,
  16599. bottom: 0.03
  16600. }
  16601. },
  16602. frontDress: {
  16603. height: math.unit(5 + 4 / 12, "feet"),
  16604. weight: math.unit(220, "lb"),
  16605. name: "Front (Dress)",
  16606. image: {
  16607. source: "./media/characters/memory/front-dress.svg",
  16608. extra: 3641 / 3545,
  16609. bottom: 0.03
  16610. }
  16611. },
  16612. },
  16613. [
  16614. {
  16615. name: "Micro",
  16616. height: math.unit(6, "inches"),
  16617. default: true
  16618. },
  16619. {
  16620. name: "Normal",
  16621. height: math.unit(5 + 4 / 12, "feet")
  16622. },
  16623. ]
  16624. ))
  16625. characterMakers.push(() => makeCharacter(
  16626. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16627. {
  16628. front: {
  16629. height: math.unit(4 + 11 / 12, "feet"),
  16630. weight: math.unit(100, "lb"),
  16631. name: "Front",
  16632. image: {
  16633. source: "./media/characters/luno/front.svg",
  16634. extra: 1535 / 1487,
  16635. bottom: 0.03
  16636. }
  16637. },
  16638. },
  16639. [
  16640. {
  16641. name: "Micro",
  16642. height: math.unit(3, "inches")
  16643. },
  16644. {
  16645. name: "Normal",
  16646. height: math.unit(4 + 11 / 12, "feet"),
  16647. default: true
  16648. },
  16649. {
  16650. name: "Macro",
  16651. height: math.unit(300, "feet")
  16652. },
  16653. {
  16654. name: "Megamacro",
  16655. height: math.unit(700, "miles")
  16656. },
  16657. ]
  16658. ))
  16659. characterMakers.push(() => makeCharacter(
  16660. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16661. {
  16662. front: {
  16663. height: math.unit(6 + 2 / 12, "feet"),
  16664. weight: math.unit(170, "lb"),
  16665. name: "Front",
  16666. image: {
  16667. source: "./media/characters/jamesy/front.svg",
  16668. extra: 440 / 382,
  16669. bottom: 0.005
  16670. }
  16671. },
  16672. },
  16673. [
  16674. {
  16675. name: "Micro",
  16676. height: math.unit(3, "inches")
  16677. },
  16678. {
  16679. name: "Normal",
  16680. height: math.unit(6 + 2 / 12, "feet"),
  16681. default: true
  16682. },
  16683. {
  16684. name: "Macro",
  16685. height: math.unit(300, "feet")
  16686. },
  16687. {
  16688. name: "Megamacro",
  16689. height: math.unit(700, "miles")
  16690. },
  16691. ]
  16692. ))
  16693. characterMakers.push(() => makeCharacter(
  16694. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16695. {
  16696. front: {
  16697. height: math.unit(6, "feet"),
  16698. weight: math.unit(160, "lb"),
  16699. name: "Front",
  16700. image: {
  16701. source: "./media/characters/mark/front.svg",
  16702. extra: 3300 / 3100,
  16703. bottom: 136.42 / 3440.47
  16704. }
  16705. },
  16706. },
  16707. [
  16708. {
  16709. name: "Macro",
  16710. height: math.unit(120, "meters")
  16711. },
  16712. {
  16713. name: "Bigger Macro",
  16714. height: math.unit(350, "meters")
  16715. },
  16716. {
  16717. name: "Megamacro",
  16718. height: math.unit(8, "km"),
  16719. default: true
  16720. },
  16721. {
  16722. name: "Continental",
  16723. height: math.unit(4550, "km")
  16724. },
  16725. {
  16726. name: "Planetary",
  16727. height: math.unit(65000, "km")
  16728. },
  16729. ]
  16730. ))
  16731. characterMakers.push(() => makeCharacter(
  16732. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16733. {
  16734. front: {
  16735. height: math.unit(6, "feet"),
  16736. weight: math.unit(400, "lb"),
  16737. name: "Front",
  16738. image: {
  16739. source: "./media/characters/mac/front.svg",
  16740. extra: 1048 / 987.7,
  16741. bottom: 60 / 1107.6,
  16742. }
  16743. },
  16744. },
  16745. [
  16746. {
  16747. name: "Macro",
  16748. height: math.unit(500, "feet"),
  16749. default: true
  16750. },
  16751. ]
  16752. ))
  16753. characterMakers.push(() => makeCharacter(
  16754. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16755. {
  16756. front: {
  16757. height: math.unit(5 + 2 / 12, "feet"),
  16758. weight: math.unit(190, "lb"),
  16759. name: "Front",
  16760. image: {
  16761. source: "./media/characters/bari/front.svg",
  16762. extra: 3156 / 2880,
  16763. bottom: 0.03
  16764. }
  16765. },
  16766. back: {
  16767. height: math.unit(5 + 2 / 12, "feet"),
  16768. weight: math.unit(190, "lb"),
  16769. name: "Back",
  16770. image: {
  16771. source: "./media/characters/bari/back.svg",
  16772. extra: 3260 / 2834,
  16773. bottom: 0.025
  16774. }
  16775. },
  16776. frontPlush: {
  16777. height: math.unit(5 + 2 / 12, "feet"),
  16778. weight: math.unit(190, "lb"),
  16779. name: "Front (Plush)",
  16780. image: {
  16781. source: "./media/characters/bari/front-plush.svg",
  16782. extra: 1112 / 1061,
  16783. bottom: 0.002
  16784. }
  16785. },
  16786. },
  16787. [
  16788. {
  16789. name: "Micro",
  16790. height: math.unit(3, "inches")
  16791. },
  16792. {
  16793. name: "Normal",
  16794. height: math.unit(5 + 2 / 12, "feet"),
  16795. default: true
  16796. },
  16797. {
  16798. name: "Macro",
  16799. height: math.unit(20, "feet")
  16800. },
  16801. ]
  16802. ))
  16803. characterMakers.push(() => makeCharacter(
  16804. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16805. {
  16806. front: {
  16807. height: math.unit(6 + 1 / 12, "feet"),
  16808. weight: math.unit(275, "lb"),
  16809. name: "Front",
  16810. image: {
  16811. source: "./media/characters/hunter-misha-raven/front.svg"
  16812. }
  16813. },
  16814. },
  16815. [
  16816. {
  16817. name: "Mortal",
  16818. height: math.unit(6 + 1 / 12, "feet")
  16819. },
  16820. {
  16821. name: "Divine",
  16822. height: math.unit(1.12134e34, "parsecs"),
  16823. default: true
  16824. },
  16825. ]
  16826. ))
  16827. characterMakers.push(() => makeCharacter(
  16828. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16829. {
  16830. front: {
  16831. height: math.unit(6 + 3 / 12, "feet"),
  16832. weight: math.unit(220, "lb"),
  16833. name: "Front",
  16834. image: {
  16835. source: "./media/characters/max-calore/front.svg",
  16836. extra: 1700 / 1648,
  16837. bottom: 0.01
  16838. }
  16839. },
  16840. back: {
  16841. height: math.unit(6 + 3 / 12, "feet"),
  16842. weight: math.unit(220, "lb"),
  16843. name: "Back",
  16844. image: {
  16845. source: "./media/characters/max-calore/back.svg",
  16846. extra: 1700 / 1648,
  16847. bottom: 0.01
  16848. }
  16849. },
  16850. },
  16851. [
  16852. {
  16853. name: "Normal",
  16854. height: math.unit(6 + 3 / 12, "feet"),
  16855. default: true
  16856. },
  16857. ]
  16858. ))
  16859. characterMakers.push(() => makeCharacter(
  16860. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16861. {
  16862. side: {
  16863. height: math.unit(2 + 8 / 12, "feet"),
  16864. weight: math.unit(99, "lb"),
  16865. name: "Side",
  16866. image: {
  16867. source: "./media/characters/aspen/side.svg",
  16868. extra: 152 / 138,
  16869. bottom: 0.032
  16870. }
  16871. },
  16872. },
  16873. [
  16874. {
  16875. name: "Normal",
  16876. height: math.unit(2 + 8 / 12, "feet"),
  16877. default: true
  16878. },
  16879. ]
  16880. ))
  16881. characterMakers.push(() => makeCharacter(
  16882. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16883. {
  16884. side: {
  16885. height: math.unit(3 + 2 / 12, "feet"),
  16886. weight: math.unit(224, "lb"),
  16887. name: "Side",
  16888. image: {
  16889. source: "./media/characters/sheila-feral-wolf/side.svg",
  16890. extra: 179 / 166,
  16891. bottom: 0.03
  16892. }
  16893. },
  16894. },
  16895. [
  16896. {
  16897. name: "Normal",
  16898. height: math.unit(3 + 2 / 12, "feet"),
  16899. default: true
  16900. },
  16901. ]
  16902. ))
  16903. characterMakers.push(() => makeCharacter(
  16904. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16905. {
  16906. side: {
  16907. height: math.unit(1 + 9 / 12, "feet"),
  16908. weight: math.unit(38, "lb"),
  16909. name: "Side",
  16910. image: {
  16911. source: "./media/characters/michelle/side.svg",
  16912. extra: 147 / 136.7,
  16913. bottom: 0.03
  16914. }
  16915. },
  16916. },
  16917. [
  16918. {
  16919. name: "Normal",
  16920. height: math.unit(1 + 9 / 12, "feet"),
  16921. default: true
  16922. },
  16923. ]
  16924. ))
  16925. characterMakers.push(() => makeCharacter(
  16926. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16927. {
  16928. front: {
  16929. height: math.unit(1 + 1 / 12, "feet"),
  16930. weight: math.unit(18, "lb"),
  16931. name: "Front",
  16932. image: {
  16933. source: "./media/characters/nino/front.svg"
  16934. }
  16935. },
  16936. },
  16937. [
  16938. {
  16939. name: "Normal",
  16940. height: math.unit(1 + 1 / 12, "feet"),
  16941. default: true
  16942. },
  16943. ]
  16944. ))
  16945. characterMakers.push(() => makeCharacter(
  16946. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16947. {
  16948. front: {
  16949. height: math.unit(1, "feet"),
  16950. weight: math.unit(16, "lb"),
  16951. name: "Front",
  16952. image: {
  16953. source: "./media/characters/viola/front.svg"
  16954. }
  16955. },
  16956. },
  16957. [
  16958. {
  16959. name: "Normal",
  16960. height: math.unit(1, "feet"),
  16961. default: true
  16962. },
  16963. ]
  16964. ))
  16965. characterMakers.push(() => makeCharacter(
  16966. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16967. {
  16968. front: {
  16969. height: math.unit(6 + 5 / 12, "feet"),
  16970. weight: math.unit(580, "lb"),
  16971. name: "Front",
  16972. image: {
  16973. source: "./media/characters/atlas/front.svg",
  16974. extra: 298.5 / 290,
  16975. bottom: 0.015
  16976. }
  16977. },
  16978. },
  16979. [
  16980. {
  16981. name: "Normal",
  16982. height: math.unit(6 + 5 / 12, "feet"),
  16983. default: true
  16984. },
  16985. ]
  16986. ))
  16987. characterMakers.push(() => makeCharacter(
  16988. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16989. {
  16990. side: {
  16991. height: math.unit(1 + 10 / 12, "feet"),
  16992. weight: math.unit(25, "lb"),
  16993. name: "Side",
  16994. image: {
  16995. source: "./media/characters/davy/side.svg",
  16996. extra: 200 / 170,
  16997. bottom: 0.01
  16998. }
  16999. },
  17000. },
  17001. [
  17002. {
  17003. name: "Normal",
  17004. height: math.unit(1 + 10 / 12, "feet"),
  17005. default: true
  17006. },
  17007. ]
  17008. ))
  17009. characterMakers.push(() => makeCharacter(
  17010. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17011. {
  17012. side: {
  17013. height: math.unit(4 + 8 / 12, "feet"),
  17014. weight: math.unit(166, "lb"),
  17015. name: "Side",
  17016. image: {
  17017. source: "./media/characters/fiona/side.svg",
  17018. extra: 232 / 220,
  17019. bottom: 0.03
  17020. }
  17021. },
  17022. },
  17023. [
  17024. {
  17025. name: "Normal",
  17026. height: math.unit(4 + 8 / 12, "feet"),
  17027. default: true
  17028. },
  17029. ]
  17030. ))
  17031. characterMakers.push(() => makeCharacter(
  17032. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17033. {
  17034. front: {
  17035. height: math.unit(2, "feet"),
  17036. weight: math.unit(62, "lb"),
  17037. name: "Front",
  17038. image: {
  17039. source: "./media/characters/lyla/front.svg",
  17040. bottom: 0.1
  17041. }
  17042. },
  17043. },
  17044. [
  17045. {
  17046. name: "Normal",
  17047. height: math.unit(2, "feet"),
  17048. default: true
  17049. },
  17050. ]
  17051. ))
  17052. characterMakers.push(() => makeCharacter(
  17053. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17054. {
  17055. side: {
  17056. height: math.unit(1.8, "feet"),
  17057. weight: math.unit(44, "lb"),
  17058. name: "Side",
  17059. image: {
  17060. source: "./media/characters/perseus/side.svg",
  17061. bottom: 0.21
  17062. }
  17063. },
  17064. },
  17065. [
  17066. {
  17067. name: "Normal",
  17068. height: math.unit(1.8, "feet"),
  17069. default: true
  17070. },
  17071. ]
  17072. ))
  17073. characterMakers.push(() => makeCharacter(
  17074. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17075. {
  17076. side: {
  17077. height: math.unit(4 + 2 / 12, "feet"),
  17078. weight: math.unit(20, "lb"),
  17079. name: "Side",
  17080. image: {
  17081. source: "./media/characters/remus/side.svg"
  17082. }
  17083. },
  17084. },
  17085. [
  17086. {
  17087. name: "Normal",
  17088. height: math.unit(4 + 2 / 12, "feet"),
  17089. default: true
  17090. },
  17091. ]
  17092. ))
  17093. characterMakers.push(() => makeCharacter(
  17094. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17095. {
  17096. front: {
  17097. height: math.unit(4 + 11 / 12, "feet"),
  17098. weight: math.unit(114, "lb"),
  17099. name: "Front",
  17100. image: {
  17101. source: "./media/characters/raf/front.svg",
  17102. bottom: 20.5 / 1863
  17103. }
  17104. },
  17105. side: {
  17106. height: math.unit(4 + 11 / 12, "feet"),
  17107. weight: math.unit(114, "lb"),
  17108. name: "Side",
  17109. image: {
  17110. source: "./media/characters/raf/side.svg",
  17111. bottom: 22 / 1822
  17112. }
  17113. },
  17114. },
  17115. [
  17116. {
  17117. name: "Micro",
  17118. height: math.unit(2, "inches")
  17119. },
  17120. {
  17121. name: "Normal",
  17122. height: math.unit(4 + 11 / 12, "feet"),
  17123. default: true
  17124. },
  17125. {
  17126. name: "Macro",
  17127. height: math.unit(70, "feet")
  17128. },
  17129. ]
  17130. ))
  17131. characterMakers.push(() => makeCharacter(
  17132. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17133. {
  17134. front: {
  17135. height: math.unit(1.5, "meters"),
  17136. weight: math.unit(68, "kg"),
  17137. name: "Front",
  17138. image: {
  17139. source: "./media/characters/liam-einarr/front.svg",
  17140. extra: 2822 / 2666
  17141. }
  17142. },
  17143. back: {
  17144. height: math.unit(1.5, "meters"),
  17145. weight: math.unit(68, "kg"),
  17146. name: "Back",
  17147. image: {
  17148. source: "./media/characters/liam-einarr/back.svg",
  17149. extra: 2822 / 2666,
  17150. bottom: 0.015
  17151. }
  17152. },
  17153. },
  17154. [
  17155. {
  17156. name: "Normal",
  17157. height: math.unit(1.5, "meters"),
  17158. default: true
  17159. },
  17160. {
  17161. name: "Macro",
  17162. height: math.unit(150, "meters")
  17163. },
  17164. {
  17165. name: "Megamacro",
  17166. height: math.unit(35, "km")
  17167. },
  17168. ]
  17169. ))
  17170. characterMakers.push(() => makeCharacter(
  17171. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17172. {
  17173. front: {
  17174. height: math.unit(6, "feet"),
  17175. weight: math.unit(75, "kg"),
  17176. name: "Front",
  17177. image: {
  17178. source: "./media/characters/linda/front.svg",
  17179. extra: 930 / 874,
  17180. bottom: 0.004
  17181. }
  17182. },
  17183. },
  17184. [
  17185. {
  17186. name: "Normal",
  17187. height: math.unit(6, "feet"),
  17188. default: true
  17189. },
  17190. ]
  17191. ))
  17192. characterMakers.push(() => makeCharacter(
  17193. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17194. {
  17195. front: {
  17196. height: math.unit(6 + 8 / 12, "feet"),
  17197. weight: math.unit(220, "lb"),
  17198. name: "Front",
  17199. image: {
  17200. source: "./media/characters/caylex/front.svg",
  17201. extra: 821 / 772,
  17202. bottom: 0.07
  17203. }
  17204. },
  17205. back: {
  17206. height: math.unit(6 + 8 / 12, "feet"),
  17207. weight: math.unit(220, "lb"),
  17208. name: "Back",
  17209. image: {
  17210. source: "./media/characters/caylex/back.svg",
  17211. extra: 821 / 772,
  17212. bottom: 0.022
  17213. }
  17214. },
  17215. hand: {
  17216. height: math.unit(1.25, "feet"),
  17217. name: "Hand",
  17218. image: {
  17219. source: "./media/characters/caylex/hand.svg"
  17220. }
  17221. },
  17222. foot: {
  17223. height: math.unit(1.6, "feet"),
  17224. name: "Foot",
  17225. image: {
  17226. source: "./media/characters/caylex/foot.svg"
  17227. }
  17228. },
  17229. armored: {
  17230. height: math.unit(6 + 8 / 12, "feet"),
  17231. weight: math.unit(250, "lb"),
  17232. name: "Armored",
  17233. image: {
  17234. source: "./media/characters/caylex/armored.svg",
  17235. extra: 1420 / 1310,
  17236. bottom: 0.045
  17237. }
  17238. },
  17239. },
  17240. [
  17241. {
  17242. name: "Normal",
  17243. height: math.unit(6 + 8 / 12, "feet"),
  17244. default: true
  17245. },
  17246. {
  17247. name: "Normal+",
  17248. height: math.unit(12, "feet")
  17249. },
  17250. ]
  17251. ))
  17252. characterMakers.push(() => makeCharacter(
  17253. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17254. {
  17255. front: {
  17256. height: math.unit(7 + 6 / 12, "feet"),
  17257. weight: math.unit(288, "lb"),
  17258. name: "Front",
  17259. image: {
  17260. source: "./media/characters/alana/front.svg",
  17261. extra: 679 / 653,
  17262. bottom: 22.5 / 701
  17263. }
  17264. },
  17265. },
  17266. [
  17267. {
  17268. name: "Normal",
  17269. height: math.unit(7 + 6 / 12, "feet")
  17270. },
  17271. {
  17272. name: "Large",
  17273. height: math.unit(50, "feet")
  17274. },
  17275. {
  17276. name: "Macro",
  17277. height: math.unit(100, "feet"),
  17278. default: true
  17279. },
  17280. {
  17281. name: "Macro+",
  17282. height: math.unit(200, "feet")
  17283. },
  17284. ]
  17285. ))
  17286. characterMakers.push(() => makeCharacter(
  17287. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17288. {
  17289. front: {
  17290. height: math.unit(6 + 1 / 12, "feet"),
  17291. weight: math.unit(210, "lb"),
  17292. name: "Front",
  17293. image: {
  17294. source: "./media/characters/hasani/front.svg",
  17295. extra: 244 / 232,
  17296. bottom: 0.01
  17297. }
  17298. },
  17299. back: {
  17300. height: math.unit(6 + 1 / 12, "feet"),
  17301. weight: math.unit(210, "lb"),
  17302. name: "Back",
  17303. image: {
  17304. source: "./media/characters/hasani/back.svg",
  17305. extra: 244 / 232,
  17306. bottom: 0.01
  17307. }
  17308. },
  17309. },
  17310. [
  17311. {
  17312. name: "Normal",
  17313. height: math.unit(6 + 1 / 12, "feet")
  17314. },
  17315. {
  17316. name: "Macro",
  17317. height: math.unit(175, "feet"),
  17318. default: true
  17319. },
  17320. ]
  17321. ))
  17322. characterMakers.push(() => makeCharacter(
  17323. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17324. {
  17325. front: {
  17326. height: math.unit(1.82, "meters"),
  17327. weight: math.unit(140, "lb"),
  17328. name: "Front",
  17329. image: {
  17330. source: "./media/characters/nita/front.svg",
  17331. extra: 2473 / 2363,
  17332. bottom: 0.01
  17333. }
  17334. },
  17335. },
  17336. [
  17337. {
  17338. name: "Normal",
  17339. height: math.unit(1.82, "m")
  17340. },
  17341. {
  17342. name: "Macro",
  17343. height: math.unit(300, "m")
  17344. },
  17345. {
  17346. name: "Mistake Canon",
  17347. height: math.unit(0.5, "miles"),
  17348. default: true
  17349. },
  17350. {
  17351. name: "Big Mistake",
  17352. height: math.unit(13, "miles")
  17353. },
  17354. {
  17355. name: "Playing God",
  17356. height: math.unit(2450, "miles")
  17357. },
  17358. ]
  17359. ))
  17360. characterMakers.push(() => makeCharacter(
  17361. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17362. {
  17363. front: {
  17364. height: math.unit(4, "feet"),
  17365. weight: math.unit(120, "lb"),
  17366. name: "Front",
  17367. image: {
  17368. source: "./media/characters/shiriko/front.svg",
  17369. extra: 970/934,
  17370. bottom: 5/975
  17371. }
  17372. },
  17373. },
  17374. [
  17375. {
  17376. name: "Normal",
  17377. height: math.unit(4, "feet"),
  17378. default: true
  17379. },
  17380. ]
  17381. ))
  17382. characterMakers.push(() => makeCharacter(
  17383. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17384. {
  17385. front: {
  17386. height: math.unit(6, "feet"),
  17387. name: "front",
  17388. image: {
  17389. source: "./media/characters/deja/front.svg",
  17390. extra: 926 / 840,
  17391. bottom: 0.07
  17392. }
  17393. },
  17394. },
  17395. [
  17396. {
  17397. name: "Planck Length",
  17398. height: math.unit(1.6e-35, "meters")
  17399. },
  17400. {
  17401. name: "Normal",
  17402. height: math.unit(30.48, "meters"),
  17403. default: true
  17404. },
  17405. {
  17406. name: "Universal",
  17407. height: math.unit(8.8e26, "meters")
  17408. },
  17409. ]
  17410. ))
  17411. characterMakers.push(() => makeCharacter(
  17412. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17413. {
  17414. side: {
  17415. height: math.unit(8, "feet"),
  17416. weight: math.unit(6300, "lb"),
  17417. name: "Side",
  17418. image: {
  17419. source: "./media/characters/anima/side.svg",
  17420. bottom: 0.035
  17421. }
  17422. },
  17423. },
  17424. [
  17425. {
  17426. name: "Normal",
  17427. height: math.unit(8, "feet"),
  17428. default: true
  17429. },
  17430. ]
  17431. ))
  17432. characterMakers.push(() => makeCharacter(
  17433. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17434. {
  17435. front: {
  17436. height: math.unit(8, "feet"),
  17437. weight: math.unit(350, "lb"),
  17438. name: "Front",
  17439. image: {
  17440. source: "./media/characters/bianca/front.svg",
  17441. extra: 234 / 225,
  17442. bottom: 0.03
  17443. }
  17444. },
  17445. },
  17446. [
  17447. {
  17448. name: "Normal",
  17449. height: math.unit(8, "feet"),
  17450. default: true
  17451. },
  17452. ]
  17453. ))
  17454. characterMakers.push(() => makeCharacter(
  17455. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17456. {
  17457. front: {
  17458. height: math.unit(6, "feet"),
  17459. weight: math.unit(150, "lb"),
  17460. name: "Front",
  17461. image: {
  17462. source: "./media/characters/adinia/front.svg",
  17463. extra: 1845 / 1672,
  17464. bottom: 0.02
  17465. }
  17466. },
  17467. back: {
  17468. height: math.unit(6, "feet"),
  17469. weight: math.unit(150, "lb"),
  17470. name: "Back",
  17471. image: {
  17472. source: "./media/characters/adinia/back.svg",
  17473. extra: 1845 / 1672,
  17474. bottom: 0.002
  17475. }
  17476. },
  17477. },
  17478. [
  17479. {
  17480. name: "Normal",
  17481. height: math.unit(11 + 5 / 12, "feet"),
  17482. default: true
  17483. },
  17484. ]
  17485. ))
  17486. characterMakers.push(() => makeCharacter(
  17487. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17488. {
  17489. front: {
  17490. height: math.unit(3, "meters"),
  17491. weight: math.unit(200, "kg"),
  17492. name: "Front",
  17493. image: {
  17494. source: "./media/characters/lykasa/front.svg",
  17495. extra: 1076 / 976,
  17496. bottom: 0.06
  17497. }
  17498. },
  17499. },
  17500. [
  17501. {
  17502. name: "Normal",
  17503. height: math.unit(3, "meters")
  17504. },
  17505. {
  17506. name: "Kaiju",
  17507. height: math.unit(120, "meters"),
  17508. default: true
  17509. },
  17510. {
  17511. name: "Mega Kaiju",
  17512. height: math.unit(240, "km")
  17513. },
  17514. {
  17515. name: "Giga Kaiju",
  17516. height: math.unit(400, "megameters")
  17517. },
  17518. {
  17519. name: "Tera Kaiju",
  17520. height: math.unit(800, "gigameters")
  17521. },
  17522. {
  17523. name: "Kaiju Dragon Goddess",
  17524. height: math.unit(26, "zettaparsecs")
  17525. },
  17526. ]
  17527. ))
  17528. characterMakers.push(() => makeCharacter(
  17529. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17530. {
  17531. side: {
  17532. height: math.unit(283 / 124 * 6, "feet"),
  17533. weight: math.unit(35000, "lb"),
  17534. name: "Side",
  17535. image: {
  17536. source: "./media/characters/malfaren/side.svg",
  17537. extra: 2500 / 1010,
  17538. bottom: 0.01
  17539. }
  17540. },
  17541. front: {
  17542. height: math.unit(22.36, "feet"),
  17543. weight: math.unit(35000, "lb"),
  17544. name: "Front",
  17545. image: {
  17546. source: "./media/characters/malfaren/front.svg",
  17547. extra: 1631 / 1476,
  17548. bottom: 0.01
  17549. }
  17550. },
  17551. maw: {
  17552. height: math.unit(6.9, "feet"),
  17553. name: "Maw",
  17554. image: {
  17555. source: "./media/characters/malfaren/maw.svg"
  17556. }
  17557. },
  17558. },
  17559. [
  17560. {
  17561. name: "Big",
  17562. height: math.unit(283 / 162 * 6, "feet"),
  17563. },
  17564. {
  17565. name: "Bigger",
  17566. height: math.unit(283 / 124 * 6, "feet")
  17567. },
  17568. {
  17569. name: "Massive",
  17570. height: math.unit(283 / 92 * 6, "feet"),
  17571. default: true
  17572. },
  17573. {
  17574. name: "👀💦",
  17575. height: math.unit(283 / 73 * 6, "feet"),
  17576. },
  17577. ]
  17578. ))
  17579. characterMakers.push(() => makeCharacter(
  17580. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17581. {
  17582. front: {
  17583. height: math.unit(1.7, "m"),
  17584. weight: math.unit(70, "kg"),
  17585. name: "Front",
  17586. image: {
  17587. source: "./media/characters/kernel/front.svg",
  17588. extra: 222 / 210,
  17589. bottom: 0.007
  17590. }
  17591. },
  17592. },
  17593. [
  17594. {
  17595. name: "Nano",
  17596. height: math.unit(17, "micrometers")
  17597. },
  17598. {
  17599. name: "Micro",
  17600. height: math.unit(1.7, "mm")
  17601. },
  17602. {
  17603. name: "Small",
  17604. height: math.unit(1.7, "cm")
  17605. },
  17606. {
  17607. name: "Normal",
  17608. height: math.unit(1.7, "m"),
  17609. default: true
  17610. },
  17611. ]
  17612. ))
  17613. characterMakers.push(() => makeCharacter(
  17614. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17615. {
  17616. front: {
  17617. height: math.unit(1.75, "meters"),
  17618. weight: math.unit(65, "kg"),
  17619. name: "Front",
  17620. image: {
  17621. source: "./media/characters/jayne-folest/front.svg",
  17622. extra: 2115 / 2007,
  17623. bottom: 0.02
  17624. }
  17625. },
  17626. back: {
  17627. height: math.unit(1.75, "meters"),
  17628. weight: math.unit(65, "kg"),
  17629. name: "Back",
  17630. image: {
  17631. source: "./media/characters/jayne-folest/back.svg",
  17632. extra: 2115 / 2007,
  17633. bottom: 0.005
  17634. }
  17635. },
  17636. frontClothed: {
  17637. height: math.unit(1.75, "meters"),
  17638. weight: math.unit(65, "kg"),
  17639. name: "Front (Clothed)",
  17640. image: {
  17641. source: "./media/characters/jayne-folest/front-clothed.svg",
  17642. extra: 2115 / 2007,
  17643. bottom: 0.035
  17644. }
  17645. },
  17646. hand: {
  17647. height: math.unit(1 / 1.260, "feet"),
  17648. name: "Hand",
  17649. image: {
  17650. source: "./media/characters/jayne-folest/hand.svg"
  17651. }
  17652. },
  17653. foot: {
  17654. height: math.unit(1 / 0.918, "feet"),
  17655. name: "Foot",
  17656. image: {
  17657. source: "./media/characters/jayne-folest/foot.svg"
  17658. }
  17659. },
  17660. },
  17661. [
  17662. {
  17663. name: "Micro",
  17664. height: math.unit(4, "cm")
  17665. },
  17666. {
  17667. name: "Normal",
  17668. height: math.unit(1.75, "meters")
  17669. },
  17670. {
  17671. name: "Macro",
  17672. height: math.unit(47.5, "meters"),
  17673. default: true
  17674. },
  17675. ]
  17676. ))
  17677. characterMakers.push(() => makeCharacter(
  17678. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17679. {
  17680. front: {
  17681. height: math.unit(180, "cm"),
  17682. weight: math.unit(70, "kg"),
  17683. name: "Front",
  17684. image: {
  17685. source: "./media/characters/algier/front.svg",
  17686. extra: 596 / 572,
  17687. bottom: 0.04
  17688. }
  17689. },
  17690. back: {
  17691. height: math.unit(180, "cm"),
  17692. weight: math.unit(70, "kg"),
  17693. name: "Back",
  17694. image: {
  17695. source: "./media/characters/algier/back.svg",
  17696. extra: 596 / 572,
  17697. bottom: 0.025
  17698. }
  17699. },
  17700. frontdressed: {
  17701. height: math.unit(180, "cm"),
  17702. weight: math.unit(150, "kg"),
  17703. name: "Front-dressed",
  17704. image: {
  17705. source: "./media/characters/algier/front-dressed.svg",
  17706. extra: 596 / 572,
  17707. bottom: 0.038
  17708. }
  17709. },
  17710. },
  17711. [
  17712. {
  17713. name: "Micro",
  17714. height: math.unit(5, "cm")
  17715. },
  17716. {
  17717. name: "Normal",
  17718. height: math.unit(180, "cm"),
  17719. default: true
  17720. },
  17721. {
  17722. name: "Macro",
  17723. height: math.unit(64, "m")
  17724. },
  17725. ]
  17726. ))
  17727. characterMakers.push(() => makeCharacter(
  17728. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17729. {
  17730. upright: {
  17731. height: math.unit(7, "feet"),
  17732. weight: math.unit(300, "lb"),
  17733. name: "Upright",
  17734. image: {
  17735. source: "./media/characters/pretzel/upright.svg",
  17736. extra: 534 / 522,
  17737. bottom: 0.065
  17738. }
  17739. },
  17740. sprawling: {
  17741. height: math.unit(3.75, "feet"),
  17742. weight: math.unit(300, "lb"),
  17743. name: "Sprawling",
  17744. image: {
  17745. source: "./media/characters/pretzel/sprawling.svg",
  17746. extra: 314 / 281,
  17747. bottom: 0.1
  17748. }
  17749. },
  17750. tongue: {
  17751. height: math.unit(2, "feet"),
  17752. name: "Tongue",
  17753. image: {
  17754. source: "./media/characters/pretzel/tongue.svg"
  17755. }
  17756. },
  17757. },
  17758. [
  17759. {
  17760. name: "Normal",
  17761. height: math.unit(7, "feet"),
  17762. default: true
  17763. },
  17764. {
  17765. name: "Oversized",
  17766. height: math.unit(15, "feet")
  17767. },
  17768. {
  17769. name: "Huge",
  17770. height: math.unit(30, "feet")
  17771. },
  17772. {
  17773. name: "Macro",
  17774. height: math.unit(250, "feet")
  17775. },
  17776. ]
  17777. ))
  17778. characterMakers.push(() => makeCharacter(
  17779. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17780. {
  17781. sideFront: {
  17782. height: math.unit(5 + 2 / 12, "feet"),
  17783. weight: math.unit(120, "lb"),
  17784. name: "Front Side",
  17785. image: {
  17786. source: "./media/characters/roxi/side-front.svg",
  17787. extra: 2924 / 2717,
  17788. bottom: 0.08
  17789. }
  17790. },
  17791. sideBack: {
  17792. height: math.unit(5 + 2 / 12, "feet"),
  17793. weight: math.unit(120, "lb"),
  17794. name: "Back Side",
  17795. image: {
  17796. source: "./media/characters/roxi/side-back.svg",
  17797. extra: 2904 / 2693,
  17798. bottom: 0.06
  17799. }
  17800. },
  17801. front: {
  17802. height: math.unit(5 + 2 / 12, "feet"),
  17803. weight: math.unit(120, "lb"),
  17804. name: "Front",
  17805. image: {
  17806. source: "./media/characters/roxi/front.svg",
  17807. extra: 2028 / 1907,
  17808. bottom: 0.01
  17809. }
  17810. },
  17811. frontAlt: {
  17812. height: math.unit(5 + 2 / 12, "feet"),
  17813. weight: math.unit(120, "lb"),
  17814. name: "Front (Alt)",
  17815. image: {
  17816. source: "./media/characters/roxi/front-alt.svg",
  17817. extra: 1828 / 1798,
  17818. bottom: 0.01
  17819. }
  17820. },
  17821. sitting: {
  17822. height: math.unit(2.8, "feet"),
  17823. weight: math.unit(120, "lb"),
  17824. name: "Sitting",
  17825. image: {
  17826. source: "./media/characters/roxi/sitting.svg",
  17827. extra: 2660 / 2462,
  17828. bottom: 0.1
  17829. }
  17830. },
  17831. },
  17832. [
  17833. {
  17834. name: "Normal",
  17835. height: math.unit(5 + 2 / 12, "feet"),
  17836. default: true
  17837. },
  17838. ]
  17839. ))
  17840. characterMakers.push(() => makeCharacter(
  17841. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17842. {
  17843. side: {
  17844. height: math.unit(55, "feet"),
  17845. weight: math.unit(153, "tons"),
  17846. name: "Side",
  17847. image: {
  17848. source: "./media/characters/shadow/side.svg",
  17849. extra: 701 / 628,
  17850. bottom: 0.02
  17851. }
  17852. },
  17853. flying: {
  17854. height: math.unit(145, "feet"),
  17855. weight: math.unit(153, "tons"),
  17856. name: "Flying",
  17857. image: {
  17858. source: "./media/characters/shadow/flying.svg"
  17859. }
  17860. },
  17861. },
  17862. [
  17863. {
  17864. name: "Normal",
  17865. height: math.unit(55, "feet"),
  17866. default: true
  17867. },
  17868. ]
  17869. ))
  17870. characterMakers.push(() => makeCharacter(
  17871. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17872. {
  17873. front: {
  17874. height: math.unit(6, "feet"),
  17875. weight: math.unit(200, "lb"),
  17876. name: "Front",
  17877. image: {
  17878. source: "./media/characters/marcie/front.svg",
  17879. extra: 960 / 876,
  17880. bottom: 58 / 1017.87
  17881. }
  17882. },
  17883. },
  17884. [
  17885. {
  17886. name: "Macro",
  17887. height: math.unit(1, "mile"),
  17888. default: true
  17889. },
  17890. ]
  17891. ))
  17892. characterMakers.push(() => makeCharacter(
  17893. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17894. {
  17895. front: {
  17896. height: math.unit(7, "feet"),
  17897. weight: math.unit(200, "lb"),
  17898. name: "Front",
  17899. image: {
  17900. source: "./media/characters/kachina/front.svg",
  17901. extra: 1290.68 / 1119,
  17902. bottom: 36.5 / 1327.18
  17903. }
  17904. },
  17905. },
  17906. [
  17907. {
  17908. name: "Normal",
  17909. height: math.unit(7, "feet"),
  17910. default: true
  17911. },
  17912. ]
  17913. ))
  17914. characterMakers.push(() => makeCharacter(
  17915. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17916. {
  17917. looking: {
  17918. height: math.unit(2, "meters"),
  17919. weight: math.unit(300, "kg"),
  17920. name: "Looking",
  17921. image: {
  17922. source: "./media/characters/kash/looking.svg",
  17923. extra: 474 / 344,
  17924. bottom: 0.03
  17925. }
  17926. },
  17927. side: {
  17928. height: math.unit(2, "meters"),
  17929. weight: math.unit(300, "kg"),
  17930. name: "Side",
  17931. image: {
  17932. source: "./media/characters/kash/side.svg",
  17933. extra: 302 / 251,
  17934. bottom: 0.03
  17935. }
  17936. },
  17937. front: {
  17938. height: math.unit(2, "meters"),
  17939. weight: math.unit(300, "kg"),
  17940. name: "Front",
  17941. image: {
  17942. source: "./media/characters/kash/front.svg",
  17943. extra: 495 / 360,
  17944. bottom: 0.015
  17945. }
  17946. },
  17947. },
  17948. [
  17949. {
  17950. name: "Normal",
  17951. height: math.unit(2, "meters"),
  17952. default: true
  17953. },
  17954. {
  17955. name: "Big",
  17956. height: math.unit(3, "meters")
  17957. },
  17958. {
  17959. name: "Large",
  17960. height: math.unit(5, "meters")
  17961. },
  17962. ]
  17963. ))
  17964. characterMakers.push(() => makeCharacter(
  17965. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17966. {
  17967. feeding: {
  17968. height: math.unit(6.7, "feet"),
  17969. weight: math.unit(350, "lb"),
  17970. name: "Feeding",
  17971. image: {
  17972. source: "./media/characters/lalim/feeding.svg",
  17973. }
  17974. },
  17975. },
  17976. [
  17977. {
  17978. name: "Normal",
  17979. height: math.unit(6.7, "feet"),
  17980. default: true
  17981. },
  17982. ]
  17983. ))
  17984. characterMakers.push(() => makeCharacter(
  17985. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17986. {
  17987. front: {
  17988. height: math.unit(9.5, "feet"),
  17989. weight: math.unit(600, "lb"),
  17990. name: "Front",
  17991. image: {
  17992. source: "./media/characters/de'vout/front.svg",
  17993. extra: 1443 / 1328,
  17994. bottom: 0.025
  17995. }
  17996. },
  17997. back: {
  17998. height: math.unit(9.5, "feet"),
  17999. weight: math.unit(600, "lb"),
  18000. name: "Back",
  18001. image: {
  18002. source: "./media/characters/de'vout/back.svg",
  18003. extra: 1443 / 1328
  18004. }
  18005. },
  18006. frontDressed: {
  18007. height: math.unit(9.5, "feet"),
  18008. weight: math.unit(600, "lb"),
  18009. name: "Front (Dressed",
  18010. image: {
  18011. source: "./media/characters/de'vout/front-dressed.svg",
  18012. extra: 1443 / 1328,
  18013. bottom: 0.025
  18014. }
  18015. },
  18016. backDressed: {
  18017. height: math.unit(9.5, "feet"),
  18018. weight: math.unit(600, "lb"),
  18019. name: "Back (Dressed",
  18020. image: {
  18021. source: "./media/characters/de'vout/back-dressed.svg",
  18022. extra: 1443 / 1328
  18023. }
  18024. },
  18025. },
  18026. [
  18027. {
  18028. name: "Normal",
  18029. height: math.unit(9.5, "feet"),
  18030. default: true
  18031. },
  18032. ]
  18033. ))
  18034. characterMakers.push(() => makeCharacter(
  18035. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18036. {
  18037. front: {
  18038. height: math.unit(8, "feet"),
  18039. weight: math.unit(225, "lb"),
  18040. name: "Front",
  18041. image: {
  18042. source: "./media/characters/talana/front.svg",
  18043. extra: 1410 / 1300,
  18044. bottom: 0.015
  18045. }
  18046. },
  18047. frontDressed: {
  18048. height: math.unit(8, "feet"),
  18049. weight: math.unit(225, "lb"),
  18050. name: "Front (Dressed",
  18051. image: {
  18052. source: "./media/characters/talana/front-dressed.svg",
  18053. extra: 1410 / 1300,
  18054. bottom: 0.015
  18055. }
  18056. },
  18057. },
  18058. [
  18059. {
  18060. name: "Normal",
  18061. height: math.unit(8, "feet"),
  18062. default: true
  18063. },
  18064. ]
  18065. ))
  18066. characterMakers.push(() => makeCharacter(
  18067. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18068. {
  18069. side: {
  18070. height: math.unit(7.2, "feet"),
  18071. weight: math.unit(150, "lb"),
  18072. name: "Side",
  18073. image: {
  18074. source: "./media/characters/xeauvok/side.svg",
  18075. extra: 1975 / 1523,
  18076. bottom: 0.07
  18077. }
  18078. },
  18079. },
  18080. [
  18081. {
  18082. name: "Normal",
  18083. height: math.unit(7.2, "feet"),
  18084. default: true
  18085. },
  18086. ]
  18087. ))
  18088. characterMakers.push(() => makeCharacter(
  18089. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18090. {
  18091. side: {
  18092. height: math.unit(10, "feet"),
  18093. weight: math.unit(900, "kg"),
  18094. name: "Side",
  18095. image: {
  18096. source: "./media/characters/zara/side.svg",
  18097. extra: 504 / 498
  18098. }
  18099. },
  18100. },
  18101. [
  18102. {
  18103. name: "Normal",
  18104. height: math.unit(10, "feet"),
  18105. default: true
  18106. },
  18107. ]
  18108. ))
  18109. characterMakers.push(() => makeCharacter(
  18110. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18111. {
  18112. side: {
  18113. height: math.unit(6, "feet"),
  18114. weight: math.unit(150, "lb"),
  18115. name: "Side",
  18116. image: {
  18117. source: "./media/characters/richard-dragon/side.svg",
  18118. extra: 845 / 340,
  18119. bottom: 0.017
  18120. }
  18121. },
  18122. maw: {
  18123. height: math.unit(2.97, "feet"),
  18124. name: "Maw",
  18125. image: {
  18126. source: "./media/characters/richard-dragon/maw.svg"
  18127. }
  18128. },
  18129. },
  18130. [
  18131. ]
  18132. ))
  18133. characterMakers.push(() => makeCharacter(
  18134. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18135. {
  18136. front: {
  18137. height: math.unit(4, "feet"),
  18138. weight: math.unit(100, "lb"),
  18139. name: "Front",
  18140. image: {
  18141. source: "./media/characters/richard-smeargle/front.svg",
  18142. extra: 2952 / 2820,
  18143. bottom: 0.028
  18144. }
  18145. },
  18146. },
  18147. [
  18148. {
  18149. name: "Normal",
  18150. height: math.unit(4, "feet"),
  18151. default: true
  18152. },
  18153. {
  18154. name: "Dynamax",
  18155. height: math.unit(20, "meters")
  18156. },
  18157. ]
  18158. ))
  18159. characterMakers.push(() => makeCharacter(
  18160. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18161. {
  18162. front: {
  18163. height: math.unit(6, "feet"),
  18164. weight: math.unit(110, "lb"),
  18165. name: "Front",
  18166. image: {
  18167. source: "./media/characters/klay/front.svg",
  18168. extra: 962 / 883,
  18169. bottom: 0.04
  18170. }
  18171. },
  18172. back: {
  18173. height: math.unit(6, "feet"),
  18174. weight: math.unit(110, "lb"),
  18175. name: "Back",
  18176. image: {
  18177. source: "./media/characters/klay/back.svg",
  18178. extra: 962 / 883
  18179. }
  18180. },
  18181. beans: {
  18182. height: math.unit(1.15, "feet"),
  18183. name: "Beans",
  18184. image: {
  18185. source: "./media/characters/klay/beans.svg"
  18186. }
  18187. },
  18188. },
  18189. [
  18190. {
  18191. name: "Micro",
  18192. height: math.unit(6, "inches")
  18193. },
  18194. {
  18195. name: "Mini",
  18196. height: math.unit(3, "feet")
  18197. },
  18198. {
  18199. name: "Normal",
  18200. height: math.unit(6, "feet"),
  18201. default: true
  18202. },
  18203. {
  18204. name: "Big",
  18205. height: math.unit(25, "feet")
  18206. },
  18207. {
  18208. name: "Macro",
  18209. height: math.unit(100, "feet")
  18210. },
  18211. {
  18212. name: "Megamacro",
  18213. height: math.unit(400, "feet")
  18214. },
  18215. ]
  18216. ))
  18217. characterMakers.push(() => makeCharacter(
  18218. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18219. {
  18220. front: {
  18221. height: math.unit(6, "feet"),
  18222. weight: math.unit(160, "lb"),
  18223. name: "Front",
  18224. image: {
  18225. source: "./media/characters/marcus/front.svg",
  18226. extra: 734 / 676,
  18227. bottom: 0.03
  18228. }
  18229. },
  18230. },
  18231. [
  18232. {
  18233. name: "Little",
  18234. height: math.unit(6, "feet")
  18235. },
  18236. {
  18237. name: "Normal",
  18238. height: math.unit(110, "feet"),
  18239. default: true
  18240. },
  18241. {
  18242. name: "Macro",
  18243. height: math.unit(250, "feet")
  18244. },
  18245. {
  18246. name: "Megamacro",
  18247. height: math.unit(1000, "feet")
  18248. },
  18249. ]
  18250. ))
  18251. characterMakers.push(() => makeCharacter(
  18252. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18253. {
  18254. front: {
  18255. height: math.unit(7, "feet"),
  18256. weight: math.unit(275, "lb"),
  18257. name: "Front",
  18258. image: {
  18259. source: "./media/characters/claude-delroute/front.svg",
  18260. extra: 230 / 214,
  18261. bottom: 0.007
  18262. }
  18263. },
  18264. side: {
  18265. height: math.unit(7, "feet"),
  18266. weight: math.unit(275, "lb"),
  18267. name: "Side",
  18268. image: {
  18269. source: "./media/characters/claude-delroute/side.svg",
  18270. extra: 222 / 214,
  18271. bottom: 0.01
  18272. }
  18273. },
  18274. back: {
  18275. height: math.unit(7, "feet"),
  18276. weight: math.unit(275, "lb"),
  18277. name: "Back",
  18278. image: {
  18279. source: "./media/characters/claude-delroute/back.svg",
  18280. extra: 230 / 214,
  18281. bottom: 0.015
  18282. }
  18283. },
  18284. maw: {
  18285. height: math.unit(0.6407, "meters"),
  18286. name: "Maw",
  18287. image: {
  18288. source: "./media/characters/claude-delroute/maw.svg"
  18289. }
  18290. },
  18291. },
  18292. [
  18293. {
  18294. name: "Normal",
  18295. height: math.unit(7, "feet"),
  18296. default: true
  18297. },
  18298. {
  18299. name: "Lorge",
  18300. height: math.unit(20, "feet")
  18301. },
  18302. ]
  18303. ))
  18304. characterMakers.push(() => makeCharacter(
  18305. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18306. {
  18307. front: {
  18308. height: math.unit(8 + 4 / 12, "feet"),
  18309. weight: math.unit(600, "lb"),
  18310. name: "Front",
  18311. image: {
  18312. source: "./media/characters/dragonien/front.svg",
  18313. extra: 100 / 94,
  18314. bottom: 3.3 / 103.3445
  18315. }
  18316. },
  18317. back: {
  18318. height: math.unit(8 + 4 / 12, "feet"),
  18319. weight: math.unit(600, "lb"),
  18320. name: "Back",
  18321. image: {
  18322. source: "./media/characters/dragonien/back.svg",
  18323. extra: 776 / 746,
  18324. bottom: 6.4 / 782.0616
  18325. }
  18326. },
  18327. foot: {
  18328. height: math.unit(1.54, "feet"),
  18329. name: "Foot",
  18330. image: {
  18331. source: "./media/characters/dragonien/foot.svg",
  18332. }
  18333. },
  18334. },
  18335. [
  18336. {
  18337. name: "Normal",
  18338. height: math.unit(8 + 4 / 12, "feet"),
  18339. default: true
  18340. },
  18341. {
  18342. name: "Macro",
  18343. height: math.unit(200, "feet")
  18344. },
  18345. {
  18346. name: "Megamacro",
  18347. height: math.unit(1, "mile")
  18348. },
  18349. {
  18350. name: "Gigamacro",
  18351. height: math.unit(1000, "miles")
  18352. },
  18353. ]
  18354. ))
  18355. characterMakers.push(() => makeCharacter(
  18356. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18357. {
  18358. front: {
  18359. height: math.unit(5 + 2 / 12, "feet"),
  18360. weight: math.unit(110, "lb"),
  18361. name: "Front",
  18362. image: {
  18363. source: "./media/characters/desta/front.svg",
  18364. extra: 767 / 726,
  18365. bottom: 11.7 / 779
  18366. }
  18367. },
  18368. back: {
  18369. height: math.unit(5 + 2 / 12, "feet"),
  18370. weight: math.unit(110, "lb"),
  18371. name: "Back",
  18372. image: {
  18373. source: "./media/characters/desta/back.svg",
  18374. extra: 777 / 728,
  18375. bottom: 6 / 784
  18376. }
  18377. },
  18378. frontAlt: {
  18379. height: math.unit(5 + 2 / 12, "feet"),
  18380. weight: math.unit(110, "lb"),
  18381. name: "Front",
  18382. image: {
  18383. source: "./media/characters/desta/front-alt.svg",
  18384. extra: 1482 / 1417
  18385. }
  18386. },
  18387. side: {
  18388. height: math.unit(5 + 2 / 12, "feet"),
  18389. weight: math.unit(110, "lb"),
  18390. name: "Side",
  18391. image: {
  18392. source: "./media/characters/desta/side.svg",
  18393. extra: 2579 / 2491,
  18394. bottom: 0.053
  18395. }
  18396. },
  18397. },
  18398. [
  18399. {
  18400. name: "Micro",
  18401. height: math.unit(6, "inches")
  18402. },
  18403. {
  18404. name: "Normal",
  18405. height: math.unit(5 + 2 / 12, "feet"),
  18406. default: true
  18407. },
  18408. {
  18409. name: "Macro",
  18410. height: math.unit(62, "feet")
  18411. },
  18412. {
  18413. name: "Megamacro",
  18414. height: math.unit(1800, "feet")
  18415. },
  18416. ]
  18417. ))
  18418. characterMakers.push(() => makeCharacter(
  18419. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18420. {
  18421. front: {
  18422. height: math.unit(10, "feet"),
  18423. weight: math.unit(700, "lb"),
  18424. name: "Front",
  18425. image: {
  18426. source: "./media/characters/storm-alystar/front.svg",
  18427. extra: 2112 / 1898,
  18428. bottom: 0.034
  18429. }
  18430. },
  18431. },
  18432. [
  18433. {
  18434. name: "Micro",
  18435. height: math.unit(3.5, "inches")
  18436. },
  18437. {
  18438. name: "Normal",
  18439. height: math.unit(10, "feet"),
  18440. default: true
  18441. },
  18442. {
  18443. name: "Macro",
  18444. height: math.unit(400, "feet")
  18445. },
  18446. {
  18447. name: "Deific",
  18448. height: math.unit(60, "miles")
  18449. },
  18450. ]
  18451. ))
  18452. characterMakers.push(() => makeCharacter(
  18453. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18454. {
  18455. front: {
  18456. height: math.unit(2.35, "meters"),
  18457. weight: math.unit(119, "kg"),
  18458. name: "Front",
  18459. image: {
  18460. source: "./media/characters/ilia/front.svg",
  18461. extra: 1285 / 1255,
  18462. bottom: 0.06
  18463. }
  18464. },
  18465. },
  18466. [
  18467. {
  18468. name: "Normal",
  18469. height: math.unit(2.35, "meters")
  18470. },
  18471. {
  18472. name: "Macro",
  18473. height: math.unit(140, "meters"),
  18474. default: true
  18475. },
  18476. {
  18477. name: "Megamacro",
  18478. height: math.unit(100, "miles")
  18479. },
  18480. ]
  18481. ))
  18482. characterMakers.push(() => makeCharacter(
  18483. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18484. {
  18485. front: {
  18486. height: math.unit(6 + 5 / 12, "feet"),
  18487. weight: math.unit(190, "lb"),
  18488. name: "Front",
  18489. image: {
  18490. source: "./media/characters/kingdead/front.svg",
  18491. extra: 1228 / 1177
  18492. }
  18493. },
  18494. },
  18495. [
  18496. {
  18497. name: "Micro",
  18498. height: math.unit(7, "inches")
  18499. },
  18500. {
  18501. name: "Normal",
  18502. height: math.unit(6 + 5 / 12, "feet")
  18503. },
  18504. {
  18505. name: "Macro",
  18506. height: math.unit(150, "feet"),
  18507. default: true
  18508. },
  18509. {
  18510. name: "Megamacro",
  18511. height: math.unit(200, "miles")
  18512. },
  18513. ]
  18514. ))
  18515. characterMakers.push(() => makeCharacter(
  18516. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18517. {
  18518. front: {
  18519. height: math.unit(8, "feet"),
  18520. weight: math.unit(600, "lb"),
  18521. name: "Front",
  18522. image: {
  18523. source: "./media/characters/kyrehx/front.svg",
  18524. extra: 1195 / 1095,
  18525. bottom: 0.034
  18526. }
  18527. },
  18528. },
  18529. [
  18530. {
  18531. name: "Micro",
  18532. height: math.unit(2, "inches")
  18533. },
  18534. {
  18535. name: "Normal",
  18536. height: math.unit(8, "feet"),
  18537. default: true
  18538. },
  18539. {
  18540. name: "Macro",
  18541. height: math.unit(255, "feet")
  18542. },
  18543. ]
  18544. ))
  18545. characterMakers.push(() => makeCharacter(
  18546. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18547. {
  18548. front: {
  18549. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18550. weight: math.unit(184, "lb"),
  18551. name: "Front",
  18552. image: {
  18553. source: "./media/characters/xang/front.svg",
  18554. extra: 845 / 755
  18555. }
  18556. },
  18557. },
  18558. [
  18559. {
  18560. name: "Normal",
  18561. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18562. default: true
  18563. },
  18564. {
  18565. name: "Macro",
  18566. height: math.unit(0.935 * 146, "feet")
  18567. },
  18568. {
  18569. name: "Megamacro",
  18570. height: math.unit(0.935 * 3, "miles")
  18571. },
  18572. ]
  18573. ))
  18574. characterMakers.push(() => makeCharacter(
  18575. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18576. {
  18577. frontDressed: {
  18578. height: math.unit(5 + 7 / 12, "feet"),
  18579. weight: math.unit(140, "lb"),
  18580. name: "Front (Dressed)",
  18581. image: {
  18582. source: "./media/characters/doc-weardno/front-dressed.svg",
  18583. extra: 263 / 234
  18584. }
  18585. },
  18586. backDressed: {
  18587. height: math.unit(5 + 7 / 12, "feet"),
  18588. weight: math.unit(140, "lb"),
  18589. name: "Back (Dressed)",
  18590. image: {
  18591. source: "./media/characters/doc-weardno/back-dressed.svg",
  18592. extra: 266 / 238
  18593. }
  18594. },
  18595. front: {
  18596. height: math.unit(5 + 7 / 12, "feet"),
  18597. weight: math.unit(140, "lb"),
  18598. name: "Front",
  18599. image: {
  18600. source: "./media/characters/doc-weardno/front.svg",
  18601. extra: 254 / 233
  18602. }
  18603. },
  18604. },
  18605. [
  18606. {
  18607. name: "Micro",
  18608. height: math.unit(3, "inches")
  18609. },
  18610. {
  18611. name: "Normal",
  18612. height: math.unit(5 + 7 / 12, "feet"),
  18613. default: true
  18614. },
  18615. {
  18616. name: "Macro",
  18617. height: math.unit(25, "feet")
  18618. },
  18619. {
  18620. name: "Megamacro",
  18621. height: math.unit(2, "miles")
  18622. },
  18623. ]
  18624. ))
  18625. characterMakers.push(() => makeCharacter(
  18626. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18627. {
  18628. front: {
  18629. height: math.unit(6 + 2 / 12, "feet"),
  18630. weight: math.unit(153, "lb"),
  18631. name: "Front",
  18632. image: {
  18633. source: "./media/characters/seth-whilst/front.svg",
  18634. bottom: 0.07
  18635. }
  18636. },
  18637. },
  18638. [
  18639. {
  18640. name: "Micro",
  18641. height: math.unit(5, "inches")
  18642. },
  18643. {
  18644. name: "Normal",
  18645. height: math.unit(6 + 2 / 12, "feet"),
  18646. default: true
  18647. },
  18648. ]
  18649. ))
  18650. characterMakers.push(() => makeCharacter(
  18651. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18652. {
  18653. front: {
  18654. height: math.unit(3, "inches"),
  18655. weight: math.unit(8, "grams"),
  18656. name: "Front",
  18657. image: {
  18658. source: "./media/characters/pocket-jabari/front.svg",
  18659. extra: 1024 / 974,
  18660. bottom: 0.039
  18661. }
  18662. },
  18663. },
  18664. [
  18665. {
  18666. name: "Minimicro",
  18667. height: math.unit(8, "mm")
  18668. },
  18669. {
  18670. name: "Micro",
  18671. height: math.unit(3, "inches"),
  18672. default: true
  18673. },
  18674. {
  18675. name: "Normal",
  18676. height: math.unit(3, "feet")
  18677. },
  18678. ]
  18679. ))
  18680. characterMakers.push(() => makeCharacter(
  18681. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18682. {
  18683. front: {
  18684. height: math.unit(15, "feet"),
  18685. weight: math.unit(3280, "lb"),
  18686. name: "Front",
  18687. image: {
  18688. source: "./media/characters/sapphy/front.svg",
  18689. extra: 671 / 577,
  18690. bottom: 0.085
  18691. }
  18692. },
  18693. back: {
  18694. height: math.unit(15, "feet"),
  18695. weight: math.unit(3280, "lb"),
  18696. name: "Back",
  18697. image: {
  18698. source: "./media/characters/sapphy/back.svg",
  18699. extra: 631 / 607,
  18700. bottom: 0.045
  18701. }
  18702. },
  18703. },
  18704. [
  18705. {
  18706. name: "Normal",
  18707. height: math.unit(15, "feet")
  18708. },
  18709. {
  18710. name: "Casual Macro",
  18711. height: math.unit(120, "feet")
  18712. },
  18713. {
  18714. name: "Macro",
  18715. height: math.unit(2150, "feet"),
  18716. default: true
  18717. },
  18718. {
  18719. name: "Megamacro",
  18720. height: math.unit(8, "miles")
  18721. },
  18722. {
  18723. name: "Galaxy Mom",
  18724. height: math.unit(6, "megalightyears")
  18725. },
  18726. ]
  18727. ))
  18728. characterMakers.push(() => makeCharacter(
  18729. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18730. {
  18731. front: {
  18732. height: math.unit(6, "feet"),
  18733. weight: math.unit(170, "lb"),
  18734. name: "Front",
  18735. image: {
  18736. source: "./media/characters/kiro/front.svg",
  18737. extra: 1064 / 1012,
  18738. bottom: 0.052
  18739. }
  18740. },
  18741. },
  18742. [
  18743. {
  18744. name: "Micro",
  18745. height: math.unit(6, "inches")
  18746. },
  18747. {
  18748. name: "Normal",
  18749. height: math.unit(6, "feet"),
  18750. default: true
  18751. },
  18752. {
  18753. name: "Macro",
  18754. height: math.unit(72, "feet")
  18755. },
  18756. ]
  18757. ))
  18758. characterMakers.push(() => makeCharacter(
  18759. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18760. {
  18761. front: {
  18762. height: math.unit(5 + 9 / 12, "feet"),
  18763. weight: math.unit(175, "lb"),
  18764. name: "Front",
  18765. image: {
  18766. source: "./media/characters/irishfox/front.svg",
  18767. extra: 1912 / 1680,
  18768. bottom: 0.02
  18769. }
  18770. },
  18771. },
  18772. [
  18773. {
  18774. name: "Nano",
  18775. height: math.unit(1, "mm")
  18776. },
  18777. {
  18778. name: "Micro",
  18779. height: math.unit(2, "inches")
  18780. },
  18781. {
  18782. name: "Normal",
  18783. height: math.unit(5 + 9 / 12, "feet"),
  18784. default: true
  18785. },
  18786. {
  18787. name: "Macro",
  18788. height: math.unit(45, "feet")
  18789. },
  18790. ]
  18791. ))
  18792. characterMakers.push(() => makeCharacter(
  18793. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18794. {
  18795. front: {
  18796. height: math.unit(6 + 1 / 12, "feet"),
  18797. weight: math.unit(75, "lb"),
  18798. name: "Front",
  18799. image: {
  18800. source: "./media/characters/aronai-sieyes/front.svg",
  18801. extra: 1556 / 1480,
  18802. bottom: 0.015
  18803. }
  18804. },
  18805. side: {
  18806. height: math.unit(6 + 1 / 12, "feet"),
  18807. weight: math.unit(75, "lb"),
  18808. name: "Side",
  18809. image: {
  18810. source: "./media/characters/aronai-sieyes/side.svg",
  18811. extra: 1433 / 1390,
  18812. bottom: 0.0393
  18813. }
  18814. },
  18815. back: {
  18816. height: math.unit(6 + 1 / 12, "feet"),
  18817. weight: math.unit(75, "lb"),
  18818. name: "Back",
  18819. image: {
  18820. source: "./media/characters/aronai-sieyes/back.svg",
  18821. extra: 1544 / 1494,
  18822. bottom: 0.02
  18823. }
  18824. },
  18825. frontClothed: {
  18826. height: math.unit(6 + 1 / 12, "feet"),
  18827. weight: math.unit(75, "lb"),
  18828. name: "Front (Clothed)",
  18829. image: {
  18830. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18831. extra: 1582 / 1527
  18832. }
  18833. },
  18834. feral: {
  18835. height: math.unit(18, "feet"),
  18836. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18837. name: "Feral",
  18838. image: {
  18839. source: "./media/characters/aronai-sieyes/feral.svg",
  18840. extra: 1530 / 1240,
  18841. bottom: 0.035
  18842. }
  18843. },
  18844. },
  18845. [
  18846. {
  18847. name: "Micro",
  18848. height: math.unit(2, "inches")
  18849. },
  18850. {
  18851. name: "Normal",
  18852. height: math.unit(6 + 1 / 12, "feet"),
  18853. default: true
  18854. }
  18855. ]
  18856. ))
  18857. characterMakers.push(() => makeCharacter(
  18858. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18859. {
  18860. front: {
  18861. height: math.unit(12, "feet"),
  18862. weight: math.unit(410, "kg"),
  18863. name: "Front",
  18864. image: {
  18865. source: "./media/characters/xuna/front.svg",
  18866. extra: 2184 / 1980
  18867. }
  18868. },
  18869. side: {
  18870. height: math.unit(12, "feet"),
  18871. weight: math.unit(410, "kg"),
  18872. name: "Side",
  18873. image: {
  18874. source: "./media/characters/xuna/side.svg",
  18875. extra: 2184 / 1980
  18876. }
  18877. },
  18878. back: {
  18879. height: math.unit(12, "feet"),
  18880. weight: math.unit(410, "kg"),
  18881. name: "Back",
  18882. image: {
  18883. source: "./media/characters/xuna/back.svg",
  18884. extra: 2184 / 1980
  18885. }
  18886. },
  18887. },
  18888. [
  18889. {
  18890. name: "Nano glow",
  18891. height: math.unit(10, "nm")
  18892. },
  18893. {
  18894. name: "Micro floof",
  18895. height: math.unit(0.3, "m")
  18896. },
  18897. {
  18898. name: "Huggable softy boi",
  18899. height: math.unit(3.6576, "m"),
  18900. default: true
  18901. },
  18902. {
  18903. name: "Admirable floof",
  18904. height: math.unit(80, "meters")
  18905. },
  18906. {
  18907. name: "Gentle macro",
  18908. height: math.unit(300, "meters")
  18909. },
  18910. {
  18911. name: "Very careful floof",
  18912. height: math.unit(3200, "meters")
  18913. },
  18914. {
  18915. name: "The mega floof",
  18916. height: math.unit(36000, "meters")
  18917. },
  18918. {
  18919. name: "Giga-fur-Wicker",
  18920. height: math.unit(4800000, "meters")
  18921. },
  18922. {
  18923. name: "Licky world",
  18924. height: math.unit(20000000, "meters")
  18925. },
  18926. {
  18927. name: "Floofy cyan sun",
  18928. height: math.unit(1500000000, "meters")
  18929. },
  18930. {
  18931. name: "Milky Wicker",
  18932. height: math.unit(1000000000000000000000, "meters")
  18933. },
  18934. {
  18935. name: "The observing Wicker",
  18936. height: math.unit(999999999999999999999999999, "meters")
  18937. },
  18938. ]
  18939. ))
  18940. characterMakers.push(() => makeCharacter(
  18941. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18942. {
  18943. front: {
  18944. height: math.unit(5 + 9 / 12, "feet"),
  18945. weight: math.unit(150, "lb"),
  18946. name: "Front",
  18947. image: {
  18948. source: "./media/characters/arokha-sieyes/front.svg",
  18949. extra: 1425 / 1284,
  18950. bottom: 0.05
  18951. }
  18952. },
  18953. },
  18954. [
  18955. {
  18956. name: "Normal",
  18957. height: math.unit(5 + 9 / 12, "feet")
  18958. },
  18959. {
  18960. name: "Macro",
  18961. height: math.unit(30, "meters"),
  18962. default: true
  18963. },
  18964. ]
  18965. ))
  18966. characterMakers.push(() => makeCharacter(
  18967. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18968. {
  18969. front: {
  18970. height: math.unit(6, "feet"),
  18971. weight: math.unit(180, "lb"),
  18972. name: "Front",
  18973. image: {
  18974. source: "./media/characters/arokh-sieyes/front.svg",
  18975. extra: 1830 / 1769,
  18976. bottom: 0.01
  18977. }
  18978. },
  18979. },
  18980. [
  18981. {
  18982. name: "Normal",
  18983. height: math.unit(6, "feet")
  18984. },
  18985. {
  18986. name: "Macro",
  18987. height: math.unit(30, "meters"),
  18988. default: true
  18989. },
  18990. ]
  18991. ))
  18992. characterMakers.push(() => makeCharacter(
  18993. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18994. {
  18995. side: {
  18996. height: math.unit(13 + 1 / 12, "feet"),
  18997. weight: math.unit(8.5, "tonnes"),
  18998. name: "Side",
  18999. image: {
  19000. source: "./media/characters/goldeneye/side.svg",
  19001. extra: 1182 / 778,
  19002. bottom: 0.067
  19003. }
  19004. },
  19005. paw: {
  19006. height: math.unit(3.4, "feet"),
  19007. name: "Paw",
  19008. image: {
  19009. source: "./media/characters/goldeneye/paw.svg"
  19010. }
  19011. },
  19012. },
  19013. [
  19014. {
  19015. name: "Normal",
  19016. height: math.unit(13 + 1 / 12, "feet"),
  19017. default: true
  19018. },
  19019. ]
  19020. ))
  19021. characterMakers.push(() => makeCharacter(
  19022. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19023. {
  19024. front: {
  19025. height: math.unit(6 + 1 / 12, "feet"),
  19026. weight: math.unit(210, "lb"),
  19027. name: "Front",
  19028. image: {
  19029. source: "./media/characters/leonardo-lycheborne/front.svg",
  19030. extra: 390 / 365,
  19031. bottom: 0.032
  19032. }
  19033. },
  19034. side: {
  19035. height: math.unit(6 + 1 / 12, "feet"),
  19036. weight: math.unit(210, "lb"),
  19037. name: "Side",
  19038. image: {
  19039. source: "./media/characters/leonardo-lycheborne/side.svg",
  19040. extra: 390 / 365,
  19041. bottom: 0.005
  19042. }
  19043. },
  19044. back: {
  19045. height: math.unit(6 + 1 / 12, "feet"),
  19046. weight: math.unit(210, "lb"),
  19047. name: "Back",
  19048. image: {
  19049. source: "./media/characters/leonardo-lycheborne/back.svg",
  19050. extra: 392 / 366,
  19051. bottom: 0.01
  19052. }
  19053. },
  19054. hand: {
  19055. height: math.unit(1.08, "feet"),
  19056. name: "Hand",
  19057. image: {
  19058. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19059. }
  19060. },
  19061. foot: {
  19062. height: math.unit(1.32, "feet"),
  19063. name: "Foot",
  19064. image: {
  19065. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19066. }
  19067. },
  19068. were: {
  19069. height: math.unit(20, "feet"),
  19070. weight: math.unit(7800, "lb"),
  19071. name: "Were",
  19072. image: {
  19073. source: "./media/characters/leonardo-lycheborne/were.svg",
  19074. extra: 308 / 294,
  19075. bottom: 0.048
  19076. }
  19077. },
  19078. feral: {
  19079. height: math.unit(7.5, "feet"),
  19080. weight: math.unit(600, "lb"),
  19081. name: "Feral",
  19082. image: {
  19083. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19084. extra: 210 / 186,
  19085. bottom: 0.108
  19086. }
  19087. },
  19088. taur: {
  19089. height: math.unit(11, "feet"),
  19090. weight: math.unit(3300, "lb"),
  19091. name: "Taur",
  19092. image: {
  19093. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19094. extra: 320 / 303,
  19095. bottom: 0.025
  19096. }
  19097. },
  19098. barghest: {
  19099. height: math.unit(11, "feet"),
  19100. weight: math.unit(1300, "lb"),
  19101. name: "Barghest",
  19102. image: {
  19103. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19104. extra: 323 / 302,
  19105. bottom: 0.027
  19106. }
  19107. },
  19108. dick: {
  19109. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19110. name: "Dick",
  19111. image: {
  19112. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19113. }
  19114. },
  19115. dickWere: {
  19116. height: math.unit((20) / 3.8, "feet"),
  19117. name: "Dick (Were)",
  19118. image: {
  19119. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19120. }
  19121. },
  19122. },
  19123. [
  19124. {
  19125. name: "Normal",
  19126. height: math.unit(6 + 1 / 12, "feet"),
  19127. default: true
  19128. },
  19129. ]
  19130. ))
  19131. characterMakers.push(() => makeCharacter(
  19132. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19133. {
  19134. front: {
  19135. height: math.unit(10, "feet"),
  19136. weight: math.unit(350, "lb"),
  19137. name: "Front",
  19138. image: {
  19139. source: "./media/characters/jet/front.svg",
  19140. extra: 2050 / 1980,
  19141. bottom: 0.013
  19142. }
  19143. },
  19144. back: {
  19145. height: math.unit(10, "feet"),
  19146. weight: math.unit(350, "lb"),
  19147. name: "Back",
  19148. image: {
  19149. source: "./media/characters/jet/back.svg",
  19150. extra: 2050 / 1980,
  19151. bottom: 0.013
  19152. }
  19153. },
  19154. },
  19155. [
  19156. {
  19157. name: "Micro",
  19158. height: math.unit(6, "inches")
  19159. },
  19160. {
  19161. name: "Normal",
  19162. height: math.unit(10, "feet"),
  19163. default: true
  19164. },
  19165. {
  19166. name: "Macro",
  19167. height: math.unit(100, "feet")
  19168. },
  19169. ]
  19170. ))
  19171. characterMakers.push(() => makeCharacter(
  19172. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19173. {
  19174. front: {
  19175. height: math.unit(15, "feet"),
  19176. weight: math.unit(2800, "lb"),
  19177. name: "Front",
  19178. image: {
  19179. source: "./media/characters/tanarath/front.svg",
  19180. extra: 2392 / 2220,
  19181. bottom: 0.03
  19182. }
  19183. },
  19184. back: {
  19185. height: math.unit(15, "feet"),
  19186. weight: math.unit(2800, "lb"),
  19187. name: "Back",
  19188. image: {
  19189. source: "./media/characters/tanarath/back.svg",
  19190. extra: 2392 / 2220,
  19191. bottom: 0.03
  19192. }
  19193. },
  19194. },
  19195. [
  19196. {
  19197. name: "Normal",
  19198. height: math.unit(15, "feet"),
  19199. default: true
  19200. },
  19201. ]
  19202. ))
  19203. characterMakers.push(() => makeCharacter(
  19204. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19205. {
  19206. front: {
  19207. height: math.unit(7 + 1 / 12, "feet"),
  19208. weight: math.unit(175, "lb"),
  19209. name: "Front",
  19210. image: {
  19211. source: "./media/characters/patty-cattybatty/front.svg",
  19212. extra: 908 / 874,
  19213. bottom: 0.025
  19214. }
  19215. },
  19216. },
  19217. [
  19218. {
  19219. name: "Micro",
  19220. height: math.unit(1, "inch")
  19221. },
  19222. {
  19223. name: "Normal",
  19224. height: math.unit(7 + 1 / 12, "feet")
  19225. },
  19226. {
  19227. name: "Mini Macro",
  19228. height: math.unit(155, "feet")
  19229. },
  19230. {
  19231. name: "Macro",
  19232. height: math.unit(1077, "feet")
  19233. },
  19234. {
  19235. name: "Mega Macro",
  19236. height: math.unit(47650, "feet"),
  19237. default: true
  19238. },
  19239. {
  19240. name: "Giga Macro",
  19241. height: math.unit(440, "miles")
  19242. },
  19243. {
  19244. name: "Tera Macro",
  19245. height: math.unit(8700, "miles")
  19246. },
  19247. {
  19248. name: "Planetary Macro",
  19249. height: math.unit(32700, "miles")
  19250. },
  19251. {
  19252. name: "Solar Macro",
  19253. height: math.unit(550000, "miles")
  19254. },
  19255. {
  19256. name: "Celestial Macro",
  19257. height: math.unit(2.5, "AU")
  19258. },
  19259. ]
  19260. ))
  19261. characterMakers.push(() => makeCharacter(
  19262. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19263. {
  19264. front: {
  19265. height: math.unit(4 + 5 / 12, "feet"),
  19266. weight: math.unit(90, "lb"),
  19267. name: "Front",
  19268. image: {
  19269. source: "./media/characters/cappu/front.svg",
  19270. extra: 1247 / 1152,
  19271. bottom: 0.012
  19272. }
  19273. },
  19274. },
  19275. [
  19276. {
  19277. name: "Normal",
  19278. height: math.unit(4 + 5 / 12, "feet"),
  19279. default: true
  19280. },
  19281. ]
  19282. ))
  19283. characterMakers.push(() => makeCharacter(
  19284. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19285. {
  19286. frontDressed: {
  19287. height: math.unit(70, "cm"),
  19288. weight: math.unit(6, "kg"),
  19289. name: "Front (Dressed)",
  19290. image: {
  19291. source: "./media/characters/sebi/front-dressed.svg",
  19292. extra: 713.5 / 686.5,
  19293. bottom: 0.003
  19294. }
  19295. },
  19296. front: {
  19297. height: math.unit(70, "cm"),
  19298. weight: math.unit(5, "kg"),
  19299. name: "Front",
  19300. image: {
  19301. source: "./media/characters/sebi/front.svg",
  19302. extra: 713.5 / 686.5,
  19303. bottom: 0.003
  19304. }
  19305. }
  19306. },
  19307. [
  19308. {
  19309. name: "Normal",
  19310. height: math.unit(70, "cm"),
  19311. default: true
  19312. },
  19313. {
  19314. name: "Macro",
  19315. height: math.unit(8, "meters")
  19316. },
  19317. ]
  19318. ))
  19319. characterMakers.push(() => makeCharacter(
  19320. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19321. {
  19322. front: {
  19323. height: math.unit(6, "feet"),
  19324. weight: math.unit(150, "lb"),
  19325. name: "Front",
  19326. image: {
  19327. source: "./media/characters/typhek/front.svg",
  19328. extra: 1948 / 1929,
  19329. bottom: 0.025
  19330. }
  19331. },
  19332. side: {
  19333. height: math.unit(6, "feet"),
  19334. weight: math.unit(150, "lb"),
  19335. name: "Side",
  19336. image: {
  19337. source: "./media/characters/typhek/side.svg",
  19338. extra: 2034 / 2010,
  19339. bottom: 0.003
  19340. }
  19341. },
  19342. back: {
  19343. height: math.unit(6, "feet"),
  19344. weight: math.unit(150, "lb"),
  19345. name: "Back",
  19346. image: {
  19347. source: "./media/characters/typhek/back.svg",
  19348. extra: 2005 / 1978,
  19349. bottom: 0.004
  19350. }
  19351. },
  19352. palm: {
  19353. height: math.unit(1.2, "feet"),
  19354. name: "Palm",
  19355. image: {
  19356. source: "./media/characters/typhek/palm.svg"
  19357. }
  19358. },
  19359. fist: {
  19360. height: math.unit(1.1, "feet"),
  19361. name: "Fist",
  19362. image: {
  19363. source: "./media/characters/typhek/fist.svg"
  19364. }
  19365. },
  19366. foot: {
  19367. height: math.unit(1.57, "feet"),
  19368. name: "Foot",
  19369. image: {
  19370. source: "./media/characters/typhek/foot.svg"
  19371. }
  19372. },
  19373. sole: {
  19374. height: math.unit(2.05, "feet"),
  19375. name: "Sole",
  19376. image: {
  19377. source: "./media/characters/typhek/sole.svg"
  19378. }
  19379. },
  19380. },
  19381. [
  19382. {
  19383. name: "Macro",
  19384. height: math.unit(40, "stories"),
  19385. default: true
  19386. },
  19387. {
  19388. name: "Megamacro",
  19389. height: math.unit(1, "mile")
  19390. },
  19391. {
  19392. name: "Gigamacro",
  19393. height: math.unit(4000, "solarradii")
  19394. },
  19395. {
  19396. name: "Universal",
  19397. height: math.unit(1.1, "universes")
  19398. }
  19399. ]
  19400. ))
  19401. characterMakers.push(() => makeCharacter(
  19402. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19403. {
  19404. side: {
  19405. height: math.unit(5 + 7 / 12, "feet"),
  19406. weight: math.unit(150, "lb"),
  19407. name: "Side",
  19408. image: {
  19409. source: "./media/characters/kassy/side.svg",
  19410. extra: 1280 / 1225,
  19411. bottom: 0.002
  19412. }
  19413. },
  19414. front: {
  19415. height: math.unit(5 + 7 / 12, "feet"),
  19416. weight: math.unit(150, "lb"),
  19417. name: "Front",
  19418. image: {
  19419. source: "./media/characters/kassy/front.svg",
  19420. extra: 1280 / 1225,
  19421. bottom: 0.025
  19422. }
  19423. },
  19424. back: {
  19425. height: math.unit(5 + 7 / 12, "feet"),
  19426. weight: math.unit(150, "lb"),
  19427. name: "Back",
  19428. image: {
  19429. source: "./media/characters/kassy/back.svg",
  19430. extra: 1280 / 1225,
  19431. bottom: 0.002
  19432. }
  19433. },
  19434. foot: {
  19435. height: math.unit(1.266, "feet"),
  19436. name: "Foot",
  19437. image: {
  19438. source: "./media/characters/kassy/foot.svg"
  19439. }
  19440. },
  19441. },
  19442. [
  19443. {
  19444. name: "Normal",
  19445. height: math.unit(5 + 7 / 12, "feet")
  19446. },
  19447. {
  19448. name: "Macro",
  19449. height: math.unit(137, "feet"),
  19450. default: true
  19451. },
  19452. {
  19453. name: "Megamacro",
  19454. height: math.unit(1, "mile")
  19455. },
  19456. ]
  19457. ))
  19458. characterMakers.push(() => makeCharacter(
  19459. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19460. {
  19461. front: {
  19462. height: math.unit(6 + 1 / 12, "feet"),
  19463. weight: math.unit(200, "lb"),
  19464. name: "Front",
  19465. image: {
  19466. source: "./media/characters/neil/front.svg",
  19467. extra: 1326 / 1250,
  19468. bottom: 0.023
  19469. }
  19470. },
  19471. },
  19472. [
  19473. {
  19474. name: "Normal",
  19475. height: math.unit(6 + 1 / 12, "feet"),
  19476. default: true
  19477. },
  19478. {
  19479. name: "Macro",
  19480. height: math.unit(200, "feet")
  19481. },
  19482. ]
  19483. ))
  19484. characterMakers.push(() => makeCharacter(
  19485. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19486. {
  19487. front: {
  19488. height: math.unit(5 + 9 / 12, "feet"),
  19489. weight: math.unit(190, "lb"),
  19490. name: "Front",
  19491. image: {
  19492. source: "./media/characters/atticus/front.svg",
  19493. extra: 2934 / 2785,
  19494. bottom: 0.025
  19495. }
  19496. },
  19497. },
  19498. [
  19499. {
  19500. name: "Normal",
  19501. height: math.unit(5 + 9 / 12, "feet"),
  19502. default: true
  19503. },
  19504. {
  19505. name: "Macro",
  19506. height: math.unit(180, "feet")
  19507. },
  19508. ]
  19509. ))
  19510. characterMakers.push(() => makeCharacter(
  19511. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19512. {
  19513. side: {
  19514. height: math.unit(9, "feet"),
  19515. weight: math.unit(650, "lb"),
  19516. name: "Side",
  19517. image: {
  19518. source: "./media/characters/milo/side.svg",
  19519. extra: 2644 / 2310,
  19520. bottom: 0.032
  19521. }
  19522. },
  19523. },
  19524. [
  19525. {
  19526. name: "Normal",
  19527. height: math.unit(9, "feet"),
  19528. default: true
  19529. },
  19530. {
  19531. name: "Macro",
  19532. height: math.unit(300, "feet")
  19533. },
  19534. ]
  19535. ))
  19536. characterMakers.push(() => makeCharacter(
  19537. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19538. {
  19539. side: {
  19540. height: math.unit(8, "meters"),
  19541. weight: math.unit(90000, "kg"),
  19542. name: "Side",
  19543. image: {
  19544. source: "./media/characters/ijzer/side.svg",
  19545. extra: 2756 / 1600,
  19546. bottom: 0.01
  19547. }
  19548. },
  19549. },
  19550. [
  19551. {
  19552. name: "Small",
  19553. height: math.unit(3, "meters")
  19554. },
  19555. {
  19556. name: "Normal",
  19557. height: math.unit(8, "meters"),
  19558. default: true
  19559. },
  19560. {
  19561. name: "Normal+",
  19562. height: math.unit(10, "meters")
  19563. },
  19564. {
  19565. name: "Bigger",
  19566. height: math.unit(24, "meters")
  19567. },
  19568. {
  19569. name: "Huge",
  19570. height: math.unit(80, "meters")
  19571. },
  19572. ]
  19573. ))
  19574. characterMakers.push(() => makeCharacter(
  19575. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19576. {
  19577. front: {
  19578. height: math.unit(6 + 2 / 12, "feet"),
  19579. weight: math.unit(153, "lb"),
  19580. name: "Front",
  19581. image: {
  19582. source: "./media/characters/luca-cervicum/front.svg",
  19583. extra: 370 / 327,
  19584. bottom: 0.015
  19585. }
  19586. },
  19587. back: {
  19588. height: math.unit(6 + 2 / 12, "feet"),
  19589. weight: math.unit(153, "lb"),
  19590. name: "Back",
  19591. image: {
  19592. source: "./media/characters/luca-cervicum/back.svg",
  19593. extra: 367 / 333,
  19594. bottom: 0.005
  19595. }
  19596. },
  19597. frontGear: {
  19598. height: math.unit(6 + 2 / 12, "feet"),
  19599. weight: math.unit(173, "lb"),
  19600. name: "Front (Gear)",
  19601. image: {
  19602. source: "./media/characters/luca-cervicum/front-gear.svg",
  19603. extra: 377 / 333,
  19604. bottom: 0.006
  19605. }
  19606. },
  19607. },
  19608. [
  19609. {
  19610. name: "Normal",
  19611. height: math.unit(6 + 2 / 12, "feet"),
  19612. default: true
  19613. },
  19614. ]
  19615. ))
  19616. characterMakers.push(() => makeCharacter(
  19617. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19618. {
  19619. front: {
  19620. height: math.unit(6 + 1 / 12, "feet"),
  19621. weight: math.unit(304, "lb"),
  19622. name: "Front",
  19623. image: {
  19624. source: "./media/characters/oliver/front.svg",
  19625. extra: 157 / 143,
  19626. bottom: 0.08
  19627. }
  19628. },
  19629. },
  19630. [
  19631. {
  19632. name: "Normal",
  19633. height: math.unit(6 + 1 / 12, "feet"),
  19634. default: true
  19635. },
  19636. ]
  19637. ))
  19638. characterMakers.push(() => makeCharacter(
  19639. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19640. {
  19641. front: {
  19642. height: math.unit(5 + 7 / 12, "feet"),
  19643. weight: math.unit(140, "lb"),
  19644. name: "Front",
  19645. image: {
  19646. source: "./media/characters/shane/front.svg",
  19647. extra: 304 / 289,
  19648. bottom: 0.005
  19649. }
  19650. },
  19651. },
  19652. [
  19653. {
  19654. name: "Normal",
  19655. height: math.unit(5 + 7 / 12, "feet"),
  19656. default: true
  19657. },
  19658. ]
  19659. ))
  19660. characterMakers.push(() => makeCharacter(
  19661. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19662. {
  19663. front: {
  19664. height: math.unit(5 + 9 / 12, "feet"),
  19665. weight: math.unit(178, "lb"),
  19666. name: "Front",
  19667. image: {
  19668. source: "./media/characters/shin/front.svg",
  19669. extra: 159 / 151,
  19670. bottom: 0.015
  19671. }
  19672. },
  19673. },
  19674. [
  19675. {
  19676. name: "Normal",
  19677. height: math.unit(5 + 9 / 12, "feet"),
  19678. default: true
  19679. },
  19680. ]
  19681. ))
  19682. characterMakers.push(() => makeCharacter(
  19683. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19684. {
  19685. front: {
  19686. height: math.unit(5 + 10 / 12, "feet"),
  19687. weight: math.unit(168, "lb"),
  19688. name: "Front",
  19689. image: {
  19690. source: "./media/characters/xerxes/front.svg",
  19691. extra: 282 / 260,
  19692. bottom: 0.045
  19693. }
  19694. },
  19695. },
  19696. [
  19697. {
  19698. name: "Normal",
  19699. height: math.unit(5 + 10 / 12, "feet"),
  19700. default: true
  19701. },
  19702. ]
  19703. ))
  19704. characterMakers.push(() => makeCharacter(
  19705. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19706. {
  19707. front: {
  19708. height: math.unit(6 + 7 / 12, "feet"),
  19709. weight: math.unit(208, "lb"),
  19710. name: "Front",
  19711. image: {
  19712. source: "./media/characters/chaska/front.svg",
  19713. extra: 332 / 319,
  19714. bottom: 0.015
  19715. }
  19716. },
  19717. },
  19718. [
  19719. {
  19720. name: "Normal",
  19721. height: math.unit(6 + 7 / 12, "feet"),
  19722. default: true
  19723. },
  19724. ]
  19725. ))
  19726. characterMakers.push(() => makeCharacter(
  19727. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19728. {
  19729. front: {
  19730. height: math.unit(5 + 8 / 12, "feet"),
  19731. weight: math.unit(208, "lb"),
  19732. name: "Front",
  19733. image: {
  19734. source: "./media/characters/enuk/front.svg",
  19735. extra: 437 / 406,
  19736. bottom: 0.02
  19737. }
  19738. },
  19739. },
  19740. [
  19741. {
  19742. name: "Normal",
  19743. height: math.unit(5 + 8 / 12, "feet"),
  19744. default: true
  19745. },
  19746. ]
  19747. ))
  19748. characterMakers.push(() => makeCharacter(
  19749. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19750. {
  19751. front: {
  19752. height: math.unit(5 + 10 / 12, "feet"),
  19753. weight: math.unit(252, "lb"),
  19754. name: "Front",
  19755. image: {
  19756. source: "./media/characters/bruun/front.svg",
  19757. extra: 197 / 187,
  19758. bottom: 0.012
  19759. }
  19760. },
  19761. },
  19762. [
  19763. {
  19764. name: "Normal",
  19765. height: math.unit(5 + 10 / 12, "feet"),
  19766. default: true
  19767. },
  19768. ]
  19769. ))
  19770. characterMakers.push(() => makeCharacter(
  19771. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19772. {
  19773. front: {
  19774. height: math.unit(6 + 10 / 12, "feet"),
  19775. weight: math.unit(255, "lb"),
  19776. name: "Front",
  19777. image: {
  19778. source: "./media/characters/alexeev/front.svg",
  19779. extra: 213 / 200,
  19780. bottom: 0.05
  19781. }
  19782. },
  19783. },
  19784. [
  19785. {
  19786. name: "Normal",
  19787. height: math.unit(6 + 10 / 12, "feet"),
  19788. default: true
  19789. },
  19790. ]
  19791. ))
  19792. characterMakers.push(() => makeCharacter(
  19793. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19794. {
  19795. front: {
  19796. height: math.unit(2 + 8 / 12, "feet"),
  19797. weight: math.unit(22, "lb"),
  19798. name: "Front",
  19799. image: {
  19800. source: "./media/characters/evelyn/front.svg",
  19801. extra: 208 / 180
  19802. }
  19803. },
  19804. },
  19805. [
  19806. {
  19807. name: "Normal",
  19808. height: math.unit(2 + 8 / 12, "feet"),
  19809. default: true
  19810. },
  19811. ]
  19812. ))
  19813. characterMakers.push(() => makeCharacter(
  19814. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19815. {
  19816. front: {
  19817. height: math.unit(5 + 9 / 12, "feet"),
  19818. weight: math.unit(139, "lb"),
  19819. name: "Front",
  19820. image: {
  19821. source: "./media/characters/inca/front.svg",
  19822. extra: 294 / 291,
  19823. bottom: 0.03
  19824. }
  19825. },
  19826. },
  19827. [
  19828. {
  19829. name: "Normal",
  19830. height: math.unit(5 + 9 / 12, "feet"),
  19831. default: true
  19832. },
  19833. ]
  19834. ))
  19835. characterMakers.push(() => makeCharacter(
  19836. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19837. {
  19838. front: {
  19839. height: math.unit(5 + 1 / 12, "feet"),
  19840. weight: math.unit(84, "lb"),
  19841. name: "Front",
  19842. image: {
  19843. source: "./media/characters/magdalene/front.svg",
  19844. extra: 293 / 273
  19845. }
  19846. },
  19847. },
  19848. [
  19849. {
  19850. name: "Normal",
  19851. height: math.unit(5 + 1 / 12, "feet"),
  19852. default: true
  19853. },
  19854. ]
  19855. ))
  19856. characterMakers.push(() => makeCharacter(
  19857. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19858. {
  19859. front: {
  19860. height: math.unit(6 + 3 / 12, "feet"),
  19861. weight: math.unit(185, "lb"),
  19862. name: "Front",
  19863. image: {
  19864. source: "./media/characters/mera/front.svg",
  19865. extra: 291 / 277,
  19866. bottom: 0.03
  19867. }
  19868. },
  19869. },
  19870. [
  19871. {
  19872. name: "Normal",
  19873. height: math.unit(6 + 3 / 12, "feet"),
  19874. default: true
  19875. },
  19876. ]
  19877. ))
  19878. characterMakers.push(() => makeCharacter(
  19879. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19880. {
  19881. front: {
  19882. height: math.unit(6 + 7 / 12, "feet"),
  19883. weight: math.unit(160, "lb"),
  19884. name: "Front",
  19885. image: {
  19886. source: "./media/characters/ceres/front.svg",
  19887. extra: 1023 / 950,
  19888. bottom: 0.027
  19889. }
  19890. },
  19891. back: {
  19892. height: math.unit(6 + 7 / 12, "feet"),
  19893. weight: math.unit(160, "lb"),
  19894. name: "Back",
  19895. image: {
  19896. source: "./media/characters/ceres/back.svg",
  19897. extra: 1023 / 950
  19898. }
  19899. },
  19900. },
  19901. [
  19902. {
  19903. name: "Normal",
  19904. height: math.unit(6 + 7 / 12, "feet"),
  19905. default: true
  19906. },
  19907. ]
  19908. ))
  19909. characterMakers.push(() => makeCharacter(
  19910. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19911. {
  19912. front: {
  19913. height: math.unit(5 + 10 / 12, "feet"),
  19914. weight: math.unit(150, "lb"),
  19915. name: "Front",
  19916. image: {
  19917. source: "./media/characters/kris/front.svg",
  19918. extra: 885 / 803,
  19919. bottom: 0.03
  19920. }
  19921. },
  19922. },
  19923. [
  19924. {
  19925. name: "Normal",
  19926. height: math.unit(5 + 10 / 12, "feet"),
  19927. default: true
  19928. },
  19929. ]
  19930. ))
  19931. characterMakers.push(() => makeCharacter(
  19932. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19933. {
  19934. front: {
  19935. height: math.unit(7, "feet"),
  19936. weight: math.unit(120, "kg"),
  19937. name: "Front",
  19938. image: {
  19939. source: "./media/characters/taluthus/front.svg",
  19940. extra: 903 / 833,
  19941. bottom: 0.015
  19942. }
  19943. },
  19944. },
  19945. [
  19946. {
  19947. name: "Normal",
  19948. height: math.unit(7, "feet"),
  19949. default: true
  19950. },
  19951. {
  19952. name: "Macro",
  19953. height: math.unit(300, "feet")
  19954. },
  19955. ]
  19956. ))
  19957. characterMakers.push(() => makeCharacter(
  19958. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19959. {
  19960. front: {
  19961. height: math.unit(5 + 9 / 12, "feet"),
  19962. weight: math.unit(145, "lb"),
  19963. name: "Front",
  19964. image: {
  19965. source: "./media/characters/dawn/front.svg",
  19966. extra: 2094 / 2016,
  19967. bottom: 0.025
  19968. }
  19969. },
  19970. back: {
  19971. height: math.unit(5 + 9 / 12, "feet"),
  19972. weight: math.unit(160, "lb"),
  19973. name: "Back",
  19974. image: {
  19975. source: "./media/characters/dawn/back.svg",
  19976. extra: 2112 / 2080,
  19977. bottom: 0.005
  19978. }
  19979. },
  19980. },
  19981. [
  19982. {
  19983. name: "Normal",
  19984. height: math.unit(6 + 7 / 12, "feet"),
  19985. default: true
  19986. },
  19987. ]
  19988. ))
  19989. characterMakers.push(() => makeCharacter(
  19990. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19991. {
  19992. anthro: {
  19993. height: math.unit(8 + 3 / 12, "feet"),
  19994. weight: math.unit(450, "lb"),
  19995. name: "Anthro",
  19996. image: {
  19997. source: "./media/characters/arador/anthro.svg",
  19998. extra: 1835 / 1718,
  19999. bottom: 0.025
  20000. }
  20001. },
  20002. feral: {
  20003. height: math.unit(4, "feet"),
  20004. weight: math.unit(200, "lb"),
  20005. name: "Feral",
  20006. image: {
  20007. source: "./media/characters/arador/feral.svg",
  20008. extra: 1683 / 1514,
  20009. bottom: 0.07
  20010. }
  20011. },
  20012. },
  20013. [
  20014. {
  20015. name: "Normal",
  20016. height: math.unit(8 + 3 / 12, "feet")
  20017. },
  20018. {
  20019. name: "Macro",
  20020. height: math.unit(82.5, "feet"),
  20021. default: true
  20022. },
  20023. ]
  20024. ))
  20025. characterMakers.push(() => makeCharacter(
  20026. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20027. {
  20028. front: {
  20029. height: math.unit(5 + 10 / 12, "feet"),
  20030. weight: math.unit(125, "lb"),
  20031. name: "Front",
  20032. image: {
  20033. source: "./media/characters/dharsi/front.svg",
  20034. extra: 716 / 630,
  20035. bottom: 0.035
  20036. }
  20037. },
  20038. },
  20039. [
  20040. {
  20041. name: "Nano",
  20042. height: math.unit(100, "nm")
  20043. },
  20044. {
  20045. name: "Micro",
  20046. height: math.unit(2, "inches")
  20047. },
  20048. {
  20049. name: "Normal",
  20050. height: math.unit(5 + 10 / 12, "feet"),
  20051. default: true
  20052. },
  20053. {
  20054. name: "Macro",
  20055. height: math.unit(1000, "feet")
  20056. },
  20057. {
  20058. name: "Megamacro",
  20059. height: math.unit(10, "miles")
  20060. },
  20061. {
  20062. name: "Gigamacro",
  20063. height: math.unit(3000, "miles")
  20064. },
  20065. {
  20066. name: "Teramacro",
  20067. height: math.unit(500000, "miles")
  20068. },
  20069. {
  20070. name: "Teramacro+",
  20071. height: math.unit(30, "galaxies")
  20072. },
  20073. ]
  20074. ))
  20075. characterMakers.push(() => makeCharacter(
  20076. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20077. {
  20078. front: {
  20079. height: math.unit(6, "feet"),
  20080. weight: math.unit(150, "lb"),
  20081. name: "Front",
  20082. image: {
  20083. source: "./media/characters/deathy/front.svg",
  20084. extra: 1552 / 1463,
  20085. bottom: 0.025
  20086. }
  20087. },
  20088. side: {
  20089. height: math.unit(6, "feet"),
  20090. weight: math.unit(150, "lb"),
  20091. name: "Side",
  20092. image: {
  20093. source: "./media/characters/deathy/side.svg",
  20094. extra: 1604 / 1455,
  20095. bottom: 0.025
  20096. }
  20097. },
  20098. back: {
  20099. height: math.unit(6, "feet"),
  20100. weight: math.unit(150, "lb"),
  20101. name: "Back",
  20102. image: {
  20103. source: "./media/characters/deathy/back.svg",
  20104. extra: 1580 / 1463,
  20105. bottom: 0.005
  20106. }
  20107. },
  20108. },
  20109. [
  20110. {
  20111. name: "Micro",
  20112. height: math.unit(5, "millimeters")
  20113. },
  20114. {
  20115. name: "Normal",
  20116. height: math.unit(6 + 5 / 12, "feet"),
  20117. default: true
  20118. },
  20119. ]
  20120. ))
  20121. characterMakers.push(() => makeCharacter(
  20122. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20123. {
  20124. front: {
  20125. height: math.unit(16, "feet"),
  20126. weight: math.unit(4000, "lb"),
  20127. name: "Front",
  20128. image: {
  20129. source: "./media/characters/juniper/front.svg",
  20130. bottom: 0.04
  20131. }
  20132. },
  20133. },
  20134. [
  20135. {
  20136. name: "Normal",
  20137. height: math.unit(16, "feet"),
  20138. default: true
  20139. },
  20140. ]
  20141. ))
  20142. characterMakers.push(() => makeCharacter(
  20143. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20144. {
  20145. front: {
  20146. height: math.unit(6, "feet"),
  20147. weight: math.unit(150, "lb"),
  20148. name: "Front",
  20149. image: {
  20150. source: "./media/characters/hipster/front.svg",
  20151. extra: 1312 / 1209,
  20152. bottom: 0.025
  20153. }
  20154. },
  20155. back: {
  20156. height: math.unit(6, "feet"),
  20157. weight: math.unit(150, "lb"),
  20158. name: "Back",
  20159. image: {
  20160. source: "./media/characters/hipster/back.svg",
  20161. extra: 1281 / 1196,
  20162. bottom: 0.01
  20163. }
  20164. },
  20165. },
  20166. [
  20167. {
  20168. name: "Micro",
  20169. height: math.unit(1, "mm")
  20170. },
  20171. {
  20172. name: "Normal",
  20173. height: math.unit(4, "inches"),
  20174. default: true
  20175. },
  20176. {
  20177. name: "Macro",
  20178. height: math.unit(500, "feet")
  20179. },
  20180. {
  20181. name: "Megamacro",
  20182. height: math.unit(1000, "miles")
  20183. },
  20184. ]
  20185. ))
  20186. characterMakers.push(() => makeCharacter(
  20187. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20188. {
  20189. front: {
  20190. height: math.unit(6, "feet"),
  20191. weight: math.unit(150, "lb"),
  20192. name: "Front",
  20193. image: {
  20194. source: "./media/characters/tendirmuldr/front.svg",
  20195. extra: 1878 / 1772,
  20196. bottom: 0.015
  20197. }
  20198. },
  20199. },
  20200. [
  20201. {
  20202. name: "Megamacro",
  20203. height: math.unit(1500, "miles"),
  20204. default: true
  20205. },
  20206. ]
  20207. ))
  20208. characterMakers.push(() => makeCharacter(
  20209. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20210. {
  20211. front: {
  20212. height: math.unit(14, "feet"),
  20213. weight: math.unit(12000, "lb"),
  20214. name: "Front",
  20215. image: {
  20216. source: "./media/characters/mort/front.svg",
  20217. extra: 365 / 318,
  20218. bottom: 0.01
  20219. }
  20220. },
  20221. side: {
  20222. height: math.unit(14, "feet"),
  20223. weight: math.unit(12000, "lb"),
  20224. name: "Side",
  20225. image: {
  20226. source: "./media/characters/mort/side.svg",
  20227. extra: 365 / 318,
  20228. bottom: 0.052
  20229. },
  20230. default: true
  20231. },
  20232. back: {
  20233. height: math.unit(14, "feet"),
  20234. weight: math.unit(12000, "lb"),
  20235. name: "Back",
  20236. image: {
  20237. source: "./media/characters/mort/back.svg",
  20238. extra: 371 / 332,
  20239. bottom: 0.18
  20240. }
  20241. },
  20242. },
  20243. [
  20244. {
  20245. name: "Normal",
  20246. height: math.unit(14, "feet"),
  20247. default: true
  20248. },
  20249. ]
  20250. ))
  20251. characterMakers.push(() => makeCharacter(
  20252. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20253. {
  20254. front: {
  20255. height: math.unit(8, "feet"),
  20256. weight: math.unit(1, "ton"),
  20257. name: "Front",
  20258. image: {
  20259. source: "./media/characters/lycoa/front.svg",
  20260. extra: 1875 / 1789,
  20261. bottom: 0.022
  20262. }
  20263. },
  20264. back: {
  20265. height: math.unit(8, "feet"),
  20266. weight: math.unit(1, "ton"),
  20267. name: "Back",
  20268. image: {
  20269. source: "./media/characters/lycoa/back.svg",
  20270. extra: 1835 / 1781,
  20271. bottom: 0.03
  20272. }
  20273. },
  20274. head: {
  20275. height: math.unit(2.1, "feet"),
  20276. name: "Head",
  20277. image: {
  20278. source: "./media/characters/lycoa/head.svg"
  20279. }
  20280. },
  20281. tailmaw: {
  20282. height: math.unit(1.9, "feet"),
  20283. name: "Tailmaw",
  20284. image: {
  20285. source: "./media/characters/lycoa/tailmaw.svg"
  20286. }
  20287. },
  20288. tentacles: {
  20289. height: math.unit(2.1, "feet"),
  20290. name: "Tentacles",
  20291. image: {
  20292. source: "./media/characters/lycoa/tentacles.svg"
  20293. }
  20294. },
  20295. dick: {
  20296. height: math.unit(1.73, "feet"),
  20297. name: "Dick",
  20298. image: {
  20299. source: "./media/characters/lycoa/dick.svg"
  20300. }
  20301. },
  20302. },
  20303. [
  20304. {
  20305. name: "Normal",
  20306. height: math.unit(8, "feet"),
  20307. default: true
  20308. },
  20309. {
  20310. name: "Macro",
  20311. height: math.unit(30, "feet")
  20312. },
  20313. ]
  20314. ))
  20315. characterMakers.push(() => makeCharacter(
  20316. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20317. {
  20318. front: {
  20319. height: math.unit(4 + 2 / 12, "feet"),
  20320. weight: math.unit(70, "lb"),
  20321. name: "Front",
  20322. image: {
  20323. source: "./media/characters/naldara/front.svg",
  20324. extra: 841 / 720,
  20325. bottom: 0.04
  20326. }
  20327. },
  20328. naga: {
  20329. height: math.unit(23, "feet"),
  20330. weight: math.unit(15000, "kg"),
  20331. name: "Naga",
  20332. image: {
  20333. source: "./media/characters/naldara/naga.svg",
  20334. extra: 3290 / 2959,
  20335. bottom: 124 / 3432
  20336. }
  20337. },
  20338. },
  20339. [
  20340. {
  20341. name: "Normal",
  20342. height: math.unit(4 + 2 / 12, "feet"),
  20343. default: true
  20344. },
  20345. ]
  20346. ))
  20347. characterMakers.push(() => makeCharacter(
  20348. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20349. {
  20350. front: {
  20351. height: math.unit(13 + 7 / 12, "feet"),
  20352. weight: math.unit(1500, "lb"),
  20353. name: "Front",
  20354. image: {
  20355. source: "./media/characters/briar/front.svg",
  20356. extra: 626 / 596,
  20357. bottom: 0.08
  20358. }
  20359. },
  20360. },
  20361. [
  20362. {
  20363. name: "Normal",
  20364. height: math.unit(13 + 7 / 12, "feet"),
  20365. default: true
  20366. },
  20367. ]
  20368. ))
  20369. characterMakers.push(() => makeCharacter(
  20370. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20371. {
  20372. side: {
  20373. height: math.unit(10, "feet"),
  20374. weight: math.unit(500, "lb"),
  20375. name: "Side",
  20376. image: {
  20377. source: "./media/characters/vanguard/side.svg",
  20378. extra: 502 / 425,
  20379. bottom: 0.087
  20380. }
  20381. },
  20382. },
  20383. [
  20384. {
  20385. name: "Normal",
  20386. height: math.unit(10, "feet"),
  20387. default: true
  20388. },
  20389. ]
  20390. ))
  20391. characterMakers.push(() => makeCharacter(
  20392. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20393. {
  20394. front: {
  20395. height: math.unit(7.5, "feet"),
  20396. weight: math.unit(2, "lb"),
  20397. name: "Front",
  20398. image: {
  20399. source: "./media/characters/artemis/front.svg",
  20400. extra: 1192 / 1075,
  20401. bottom: 0.07
  20402. }
  20403. },
  20404. frontNsfw: {
  20405. height: math.unit(7.5, "feet"),
  20406. weight: math.unit(2, "lb"),
  20407. name: "Front (NSFW)",
  20408. image: {
  20409. source: "./media/characters/artemis/front-nsfw.svg",
  20410. extra: 1192 / 1075,
  20411. bottom: 0.07
  20412. }
  20413. },
  20414. frontNsfwer: {
  20415. height: math.unit(7.5, "feet"),
  20416. weight: math.unit(2, "lb"),
  20417. name: "Front (NSFW-er)",
  20418. image: {
  20419. source: "./media/characters/artemis/front-nsfwer.svg",
  20420. extra: 1192 / 1075,
  20421. bottom: 0.07
  20422. }
  20423. },
  20424. side: {
  20425. height: math.unit(7.5, "feet"),
  20426. weight: math.unit(2, "lb"),
  20427. name: "Side",
  20428. image: {
  20429. source: "./media/characters/artemis/side.svg",
  20430. extra: 1192 / 1075,
  20431. bottom: 0.07
  20432. }
  20433. },
  20434. sideNsfw: {
  20435. height: math.unit(7.5, "feet"),
  20436. weight: math.unit(2, "lb"),
  20437. name: "Side (NSFW)",
  20438. image: {
  20439. source: "./media/characters/artemis/side-nsfw.svg",
  20440. extra: 1192 / 1075,
  20441. bottom: 0.07
  20442. }
  20443. },
  20444. sideNsfwer: {
  20445. height: math.unit(7.5, "feet"),
  20446. weight: math.unit(2, "lb"),
  20447. name: "Side (NSFW-er)",
  20448. image: {
  20449. source: "./media/characters/artemis/side-nsfwer.svg",
  20450. extra: 1192 / 1075,
  20451. bottom: 0.07
  20452. }
  20453. },
  20454. maw: {
  20455. height: math.unit(1.1, "feet"),
  20456. name: "Maw",
  20457. image: {
  20458. source: "./media/characters/artemis/maw.svg"
  20459. }
  20460. },
  20461. stomach: {
  20462. height: math.unit(0.95, "feet"),
  20463. name: "Stomach",
  20464. image: {
  20465. source: "./media/characters/artemis/stomach.svg"
  20466. }
  20467. },
  20468. dickCanine: {
  20469. height: math.unit(1, "feet"),
  20470. name: "Dick (Canine)",
  20471. image: {
  20472. source: "./media/characters/artemis/dick-canine.svg"
  20473. }
  20474. },
  20475. dickEquine: {
  20476. height: math.unit(0.85, "feet"),
  20477. name: "Dick (Equine)",
  20478. image: {
  20479. source: "./media/characters/artemis/dick-equine.svg"
  20480. }
  20481. },
  20482. dickExotic: {
  20483. height: math.unit(0.85, "feet"),
  20484. name: "Dick (Exotic)",
  20485. image: {
  20486. source: "./media/characters/artemis/dick-exotic.svg"
  20487. }
  20488. },
  20489. },
  20490. [
  20491. {
  20492. name: "Normal",
  20493. height: math.unit(7.5, "feet"),
  20494. default: true
  20495. },
  20496. {
  20497. name: "Enlarged",
  20498. height: math.unit(12, "feet")
  20499. },
  20500. ]
  20501. ))
  20502. characterMakers.push(() => makeCharacter(
  20503. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20504. {
  20505. front: {
  20506. height: math.unit(5 + 3 / 12, "feet"),
  20507. weight: math.unit(160, "lb"),
  20508. name: "Front",
  20509. image: {
  20510. source: "./media/characters/kira/front.svg",
  20511. extra: 906 / 786,
  20512. bottom: 0.01
  20513. }
  20514. },
  20515. back: {
  20516. height: math.unit(5 + 3 / 12, "feet"),
  20517. weight: math.unit(160, "lb"),
  20518. name: "Back",
  20519. image: {
  20520. source: "./media/characters/kira/back.svg",
  20521. extra: 882 / 757,
  20522. bottom: 0.005
  20523. }
  20524. },
  20525. frontDressed: {
  20526. height: math.unit(5 + 3 / 12, "feet"),
  20527. weight: math.unit(160, "lb"),
  20528. name: "Front (Dressed)",
  20529. image: {
  20530. source: "./media/characters/kira/front-dressed.svg",
  20531. extra: 906 / 786,
  20532. bottom: 0.01
  20533. }
  20534. },
  20535. beans: {
  20536. height: math.unit(0.92, "feet"),
  20537. name: "Beans",
  20538. image: {
  20539. source: "./media/characters/kira/beans.svg"
  20540. }
  20541. },
  20542. },
  20543. [
  20544. {
  20545. name: "Normal",
  20546. height: math.unit(5 + 3 / 12, "feet"),
  20547. default: true
  20548. },
  20549. ]
  20550. ))
  20551. characterMakers.push(() => makeCharacter(
  20552. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20553. {
  20554. front: {
  20555. height: math.unit(5 + 4 / 12, "feet"),
  20556. weight: math.unit(145, "lb"),
  20557. name: "Front",
  20558. image: {
  20559. source: "./media/characters/scramble/front.svg",
  20560. extra: 763 / 727,
  20561. bottom: 0.05
  20562. }
  20563. },
  20564. back: {
  20565. height: math.unit(5 + 4 / 12, "feet"),
  20566. weight: math.unit(145, "lb"),
  20567. name: "Back",
  20568. image: {
  20569. source: "./media/characters/scramble/back.svg",
  20570. extra: 826 / 737,
  20571. bottom: 0.002
  20572. }
  20573. },
  20574. },
  20575. [
  20576. {
  20577. name: "Normal",
  20578. height: math.unit(5 + 4 / 12, "feet"),
  20579. default: true
  20580. },
  20581. ]
  20582. ))
  20583. characterMakers.push(() => makeCharacter(
  20584. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20585. {
  20586. side: {
  20587. height: math.unit(6 + 2 / 12, "feet"),
  20588. weight: math.unit(190, "lb"),
  20589. name: "Side",
  20590. image: {
  20591. source: "./media/characters/biscuit/side.svg",
  20592. extra: 858 / 791,
  20593. bottom: 0.044
  20594. }
  20595. },
  20596. },
  20597. [
  20598. {
  20599. name: "Normal",
  20600. height: math.unit(6 + 2 / 12, "feet"),
  20601. default: true
  20602. },
  20603. ]
  20604. ))
  20605. characterMakers.push(() => makeCharacter(
  20606. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20607. {
  20608. front: {
  20609. height: math.unit(5 + 2 / 12, "feet"),
  20610. weight: math.unit(120, "lb"),
  20611. name: "Front",
  20612. image: {
  20613. source: "./media/characters/poffin/front.svg",
  20614. extra: 786 / 680,
  20615. bottom: 0.005
  20616. }
  20617. },
  20618. },
  20619. [
  20620. {
  20621. name: "Normal",
  20622. height: math.unit(5 + 2 / 12, "feet"),
  20623. default: true
  20624. },
  20625. ]
  20626. ))
  20627. characterMakers.push(() => makeCharacter(
  20628. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20629. {
  20630. front: {
  20631. height: math.unit(6 + 3 / 12, "feet"),
  20632. weight: math.unit(519, "lb"),
  20633. name: "Front",
  20634. image: {
  20635. source: "./media/characters/dhari/front.svg",
  20636. extra: 1048 / 946,
  20637. bottom: 0.015
  20638. }
  20639. },
  20640. back: {
  20641. height: math.unit(6 + 3 / 12, "feet"),
  20642. weight: math.unit(519, "lb"),
  20643. name: "Back",
  20644. image: {
  20645. source: "./media/characters/dhari/back.svg",
  20646. extra: 1048 / 931,
  20647. bottom: 0.005
  20648. }
  20649. },
  20650. frontDressed: {
  20651. height: math.unit(6 + 3 / 12, "feet"),
  20652. weight: math.unit(519, "lb"),
  20653. name: "Front (Dressed)",
  20654. image: {
  20655. source: "./media/characters/dhari/front-dressed.svg",
  20656. extra: 1713 / 1546,
  20657. bottom: 0.02
  20658. }
  20659. },
  20660. backDressed: {
  20661. height: math.unit(6 + 3 / 12, "feet"),
  20662. weight: math.unit(519, "lb"),
  20663. name: "Back (Dressed)",
  20664. image: {
  20665. source: "./media/characters/dhari/back-dressed.svg",
  20666. extra: 1699 / 1537,
  20667. bottom: 0.01
  20668. }
  20669. },
  20670. maw: {
  20671. height: math.unit(0.95, "feet"),
  20672. name: "Maw",
  20673. image: {
  20674. source: "./media/characters/dhari/maw.svg"
  20675. }
  20676. },
  20677. wereFront: {
  20678. height: math.unit(12 + 8 / 12, "feet"),
  20679. weight: math.unit(4000, "lb"),
  20680. name: "Front (Were)",
  20681. image: {
  20682. source: "./media/characters/dhari/were-front.svg",
  20683. extra: 1065 / 969,
  20684. bottom: 0.015
  20685. }
  20686. },
  20687. wereBack: {
  20688. height: math.unit(12 + 8 / 12, "feet"),
  20689. weight: math.unit(4000, "lb"),
  20690. name: "Back (Were)",
  20691. image: {
  20692. source: "./media/characters/dhari/were-back.svg",
  20693. extra: 1065 / 969,
  20694. bottom: 0.012
  20695. }
  20696. },
  20697. wereMaw: {
  20698. height: math.unit(0.625, "meters"),
  20699. name: "Maw (Were)",
  20700. image: {
  20701. source: "./media/characters/dhari/were-maw.svg"
  20702. }
  20703. },
  20704. },
  20705. [
  20706. {
  20707. name: "Normal",
  20708. height: math.unit(6 + 3 / 12, "feet"),
  20709. default: true
  20710. },
  20711. ]
  20712. ))
  20713. characterMakers.push(() => makeCharacter(
  20714. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20715. {
  20716. anthro: {
  20717. height: math.unit(5 + 7 / 12, "feet"),
  20718. weight: math.unit(175, "lb"),
  20719. name: "Anthro",
  20720. image: {
  20721. source: "./media/characters/rena-dyne/anthro.svg",
  20722. extra: 1849 / 1785,
  20723. bottom: 0.005
  20724. }
  20725. },
  20726. taur: {
  20727. height: math.unit(15 + 6 / 12, "feet"),
  20728. weight: math.unit(8000, "lb"),
  20729. name: "Taur",
  20730. image: {
  20731. source: "./media/characters/rena-dyne/taur.svg",
  20732. extra: 2315 / 2234,
  20733. bottom: 0.033
  20734. }
  20735. },
  20736. },
  20737. [
  20738. {
  20739. name: "Normal",
  20740. height: math.unit(5 + 7 / 12, "feet"),
  20741. default: true
  20742. },
  20743. ]
  20744. ))
  20745. characterMakers.push(() => makeCharacter(
  20746. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20747. {
  20748. front: {
  20749. height: math.unit(8, "feet"),
  20750. weight: math.unit(600, "lb"),
  20751. name: "Front",
  20752. image: {
  20753. source: "./media/characters/weremeep/front.svg",
  20754. extra: 967 / 862,
  20755. bottom: 0.01
  20756. }
  20757. },
  20758. },
  20759. [
  20760. {
  20761. name: "Normal",
  20762. height: math.unit(8, "feet"),
  20763. default: true
  20764. },
  20765. {
  20766. name: "Lorg",
  20767. height: math.unit(12, "feet")
  20768. },
  20769. {
  20770. name: "Oh Lawd She Comin'",
  20771. height: math.unit(20, "feet")
  20772. },
  20773. ]
  20774. ))
  20775. characterMakers.push(() => makeCharacter(
  20776. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20777. {
  20778. front: {
  20779. height: math.unit(4, "feet"),
  20780. weight: math.unit(90, "lb"),
  20781. name: "Front",
  20782. image: {
  20783. source: "./media/characters/reza/front.svg",
  20784. extra: 1183 / 1111,
  20785. bottom: 0.017
  20786. }
  20787. },
  20788. back: {
  20789. height: math.unit(4, "feet"),
  20790. weight: math.unit(90, "lb"),
  20791. name: "Back",
  20792. image: {
  20793. source: "./media/characters/reza/back.svg",
  20794. extra: 1183 / 1111,
  20795. bottom: 0.01
  20796. }
  20797. },
  20798. drake: {
  20799. height: math.unit(30, "feet"),
  20800. weight: math.unit(246960, "lb"),
  20801. name: "Drake",
  20802. image: {
  20803. source: "./media/characters/reza/drake.svg",
  20804. extra: 2350 / 2024,
  20805. bottom: 60.7 / 2403
  20806. }
  20807. },
  20808. },
  20809. [
  20810. {
  20811. name: "Normal",
  20812. height: math.unit(4, "feet"),
  20813. default: true
  20814. },
  20815. ]
  20816. ))
  20817. characterMakers.push(() => makeCharacter(
  20818. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20819. {
  20820. side: {
  20821. height: math.unit(15, "feet"),
  20822. weight: math.unit(14, "tons"),
  20823. name: "Side",
  20824. image: {
  20825. source: "./media/characters/athea/side.svg",
  20826. extra: 960 / 540,
  20827. bottom: 0.003
  20828. }
  20829. },
  20830. sitting: {
  20831. height: math.unit(6 * 2.85, "feet"),
  20832. weight: math.unit(14, "tons"),
  20833. name: "Sitting",
  20834. image: {
  20835. source: "./media/characters/athea/sitting.svg",
  20836. extra: 621 / 581,
  20837. bottom: 0.075
  20838. }
  20839. },
  20840. maw: {
  20841. height: math.unit(7.59498031496063, "feet"),
  20842. name: "Maw",
  20843. image: {
  20844. source: "./media/characters/athea/maw.svg"
  20845. }
  20846. },
  20847. },
  20848. [
  20849. {
  20850. name: "Lap Cat",
  20851. height: math.unit(2.5, "feet")
  20852. },
  20853. {
  20854. name: "Minimacro",
  20855. height: math.unit(15, "feet"),
  20856. default: true
  20857. },
  20858. {
  20859. name: "Macro",
  20860. height: math.unit(120, "feet")
  20861. },
  20862. {
  20863. name: "Macro+",
  20864. height: math.unit(640, "feet")
  20865. },
  20866. {
  20867. name: "Colossus",
  20868. height: math.unit(2.2, "miles")
  20869. },
  20870. ]
  20871. ))
  20872. characterMakers.push(() => makeCharacter(
  20873. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20874. {
  20875. front: {
  20876. height: math.unit(8 + 8 / 12, "feet"),
  20877. weight: math.unit(130, "kg"),
  20878. name: "Front",
  20879. image: {
  20880. source: "./media/characters/seroko/front.svg",
  20881. extra: 1385 / 1280,
  20882. bottom: 0.025
  20883. }
  20884. },
  20885. back: {
  20886. height: math.unit(8 + 8 / 12, "feet"),
  20887. weight: math.unit(130, "kg"),
  20888. name: "Back",
  20889. image: {
  20890. source: "./media/characters/seroko/back.svg",
  20891. extra: 1369 / 1238,
  20892. bottom: 0.018
  20893. }
  20894. },
  20895. frontDressed: {
  20896. height: math.unit(8 + 8 / 12, "feet"),
  20897. weight: math.unit(130, "kg"),
  20898. name: "Front (Dressed)",
  20899. image: {
  20900. source: "./media/characters/seroko/front-dressed.svg",
  20901. extra: 1366 / 1275,
  20902. bottom: 0.03
  20903. }
  20904. },
  20905. },
  20906. [
  20907. {
  20908. name: "Normal",
  20909. height: math.unit(8 + 8 / 12, "feet"),
  20910. default: true
  20911. },
  20912. ]
  20913. ))
  20914. characterMakers.push(() => makeCharacter(
  20915. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20916. {
  20917. front: {
  20918. height: math.unit(5.5, "feet"),
  20919. weight: math.unit(160, "lb"),
  20920. name: "Front",
  20921. image: {
  20922. source: "./media/characters/quatzi/front.svg",
  20923. extra: 2346 / 2242,
  20924. bottom: 0.015
  20925. }
  20926. },
  20927. },
  20928. [
  20929. {
  20930. name: "Normal",
  20931. height: math.unit(5.5, "feet"),
  20932. default: true
  20933. },
  20934. {
  20935. name: "Big",
  20936. height: math.unit(7.7, "feet")
  20937. },
  20938. ]
  20939. ))
  20940. characterMakers.push(() => makeCharacter(
  20941. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20942. {
  20943. front: {
  20944. height: math.unit(5 + 11 / 12, "feet"),
  20945. weight: math.unit(180, "lb"),
  20946. name: "Front",
  20947. image: {
  20948. source: "./media/characters/sen/front.svg",
  20949. extra: 1321 / 1254,
  20950. bottom: 0.015
  20951. }
  20952. },
  20953. side: {
  20954. height: math.unit(5 + 11 / 12, "feet"),
  20955. weight: math.unit(180, "lb"),
  20956. name: "Side",
  20957. image: {
  20958. source: "./media/characters/sen/side.svg",
  20959. extra: 1321 / 1254,
  20960. bottom: 0.007
  20961. }
  20962. },
  20963. back: {
  20964. height: math.unit(5 + 11 / 12, "feet"),
  20965. weight: math.unit(180, "lb"),
  20966. name: "Back",
  20967. image: {
  20968. source: "./media/characters/sen/back.svg",
  20969. extra: 1321 / 1254
  20970. }
  20971. },
  20972. },
  20973. [
  20974. {
  20975. name: "Normal",
  20976. height: math.unit(5 + 11 / 12, "feet"),
  20977. default: true
  20978. },
  20979. ]
  20980. ))
  20981. characterMakers.push(() => makeCharacter(
  20982. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20983. {
  20984. front: {
  20985. height: math.unit(166.6, "cm"),
  20986. weight: math.unit(66.6, "kg"),
  20987. name: "Front",
  20988. image: {
  20989. source: "./media/characters/fruity/front.svg",
  20990. extra: 1510 / 1386,
  20991. bottom: 0.04
  20992. }
  20993. },
  20994. back: {
  20995. height: math.unit(166.6, "cm"),
  20996. weight: math.unit(66.6, "lb"),
  20997. name: "Back",
  20998. image: {
  20999. source: "./media/characters/fruity/back.svg",
  21000. extra: 1563 / 1435,
  21001. bottom: 0.005
  21002. }
  21003. },
  21004. },
  21005. [
  21006. {
  21007. name: "Normal",
  21008. height: math.unit(166.6, "cm"),
  21009. default: true
  21010. },
  21011. {
  21012. name: "Demonic",
  21013. height: math.unit(166.6, "feet")
  21014. },
  21015. ]
  21016. ))
  21017. characterMakers.push(() => makeCharacter(
  21018. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21019. {
  21020. side: {
  21021. height: math.unit(10, "feet"),
  21022. weight: math.unit(500, "lb"),
  21023. name: "Side",
  21024. image: {
  21025. source: "./media/characters/zost/side.svg",
  21026. extra: 966 / 880,
  21027. bottom: 0.075
  21028. }
  21029. },
  21030. mawFront: {
  21031. height: math.unit(1.08, "meters"),
  21032. name: "Maw (Front)",
  21033. image: {
  21034. source: "./media/characters/zost/maw-front.svg"
  21035. }
  21036. },
  21037. mawSide: {
  21038. height: math.unit(2.66, "feet"),
  21039. name: "Maw (Side)",
  21040. image: {
  21041. source: "./media/characters/zost/maw-side.svg"
  21042. }
  21043. },
  21044. },
  21045. [
  21046. {
  21047. name: "Normal",
  21048. height: math.unit(10, "feet"),
  21049. default: true
  21050. },
  21051. ]
  21052. ))
  21053. characterMakers.push(() => makeCharacter(
  21054. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21055. {
  21056. front: {
  21057. height: math.unit(5 + 4 / 12, "feet"),
  21058. weight: math.unit(120, "lb"),
  21059. name: "Front",
  21060. image: {
  21061. source: "./media/characters/luci/front.svg",
  21062. extra: 1985 / 1884,
  21063. bottom: 0.04
  21064. }
  21065. },
  21066. back: {
  21067. height: math.unit(5 + 4 / 12, "feet"),
  21068. weight: math.unit(120, "lb"),
  21069. name: "Back",
  21070. image: {
  21071. source: "./media/characters/luci/back.svg",
  21072. extra: 1892 / 1791,
  21073. bottom: 0.002
  21074. }
  21075. },
  21076. },
  21077. [
  21078. {
  21079. name: "Normal",
  21080. height: math.unit(5 + 4 / 12, "feet"),
  21081. default: true
  21082. },
  21083. ]
  21084. ))
  21085. characterMakers.push(() => makeCharacter(
  21086. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21087. {
  21088. front: {
  21089. height: math.unit(1500, "feet"),
  21090. weight: math.unit(3.8e6, "tons"),
  21091. name: "Front",
  21092. image: {
  21093. source: "./media/characters/2th/front.svg",
  21094. extra: 3489 / 3350,
  21095. bottom: 0.1
  21096. }
  21097. },
  21098. foot: {
  21099. height: math.unit(461, "feet"),
  21100. name: "Foot",
  21101. image: {
  21102. source: "./media/characters/2th/foot.svg"
  21103. }
  21104. },
  21105. },
  21106. [
  21107. {
  21108. name: "\"Micro\"",
  21109. height: math.unit(15 + 7 / 12, "feet")
  21110. },
  21111. {
  21112. name: "Normal",
  21113. height: math.unit(1500, "feet"),
  21114. default: true
  21115. },
  21116. {
  21117. name: "Macro",
  21118. height: math.unit(5000, "feet")
  21119. },
  21120. {
  21121. name: "Megamacro",
  21122. height: math.unit(15, "miles")
  21123. },
  21124. {
  21125. name: "Gigamacro",
  21126. height: math.unit(4000, "miles")
  21127. },
  21128. {
  21129. name: "Galactic",
  21130. height: math.unit(50, "AU")
  21131. },
  21132. ]
  21133. ))
  21134. characterMakers.push(() => makeCharacter(
  21135. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21136. {
  21137. front: {
  21138. height: math.unit(5 + 6 / 12, "feet"),
  21139. weight: math.unit(220, "lb"),
  21140. name: "Front",
  21141. image: {
  21142. source: "./media/characters/amethyst/front.svg",
  21143. extra: 2078 / 2040,
  21144. bottom: 0.045
  21145. }
  21146. },
  21147. back: {
  21148. height: math.unit(5 + 6 / 12, "feet"),
  21149. weight: math.unit(220, "lb"),
  21150. name: "Back",
  21151. image: {
  21152. source: "./media/characters/amethyst/back.svg",
  21153. extra: 2021 / 1989,
  21154. bottom: 0.02
  21155. }
  21156. },
  21157. },
  21158. [
  21159. {
  21160. name: "Normal",
  21161. height: math.unit(5 + 6 / 12, "feet"),
  21162. default: true
  21163. },
  21164. ]
  21165. ))
  21166. characterMakers.push(() => makeCharacter(
  21167. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21168. {
  21169. front: {
  21170. height: math.unit(4 + 11 / 12, "feet"),
  21171. weight: math.unit(120, "lb"),
  21172. name: "Front",
  21173. image: {
  21174. source: "./media/characters/yumi-akiyama/front.svg",
  21175. extra: 1327 / 1235,
  21176. bottom: 0.02
  21177. }
  21178. },
  21179. back: {
  21180. height: math.unit(4 + 11 / 12, "feet"),
  21181. weight: math.unit(120, "lb"),
  21182. name: "Back",
  21183. image: {
  21184. source: "./media/characters/yumi-akiyama/back.svg",
  21185. extra: 1287 / 1245,
  21186. bottom: 0.002
  21187. }
  21188. },
  21189. },
  21190. [
  21191. {
  21192. name: "Galactic",
  21193. height: math.unit(50, "galaxies"),
  21194. default: true
  21195. },
  21196. {
  21197. name: "Universal",
  21198. height: math.unit(100, "universes")
  21199. },
  21200. ]
  21201. ))
  21202. characterMakers.push(() => makeCharacter(
  21203. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21204. {
  21205. front: {
  21206. height: math.unit(8, "feet"),
  21207. weight: math.unit(500, "lb"),
  21208. name: "Front",
  21209. image: {
  21210. source: "./media/characters/rifter-yrmori/front.svg",
  21211. extra: 1180 / 1125,
  21212. bottom: 0.02
  21213. }
  21214. },
  21215. back: {
  21216. height: math.unit(8, "feet"),
  21217. weight: math.unit(500, "lb"),
  21218. name: "Back",
  21219. image: {
  21220. source: "./media/characters/rifter-yrmori/back.svg",
  21221. extra: 1190 / 1145,
  21222. bottom: 0.001
  21223. }
  21224. },
  21225. wings: {
  21226. height: math.unit(7.75, "feet"),
  21227. weight: math.unit(500, "lb"),
  21228. name: "Wings",
  21229. image: {
  21230. source: "./media/characters/rifter-yrmori/wings.svg",
  21231. extra: 1357 / 1285
  21232. }
  21233. },
  21234. maw: {
  21235. height: math.unit(0.8, "feet"),
  21236. name: "Maw",
  21237. image: {
  21238. source: "./media/characters/rifter-yrmori/maw.svg"
  21239. }
  21240. },
  21241. mawfront: {
  21242. height: math.unit(1.45, "feet"),
  21243. name: "Maw (Front)",
  21244. image: {
  21245. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21246. }
  21247. },
  21248. },
  21249. [
  21250. {
  21251. name: "Normal",
  21252. height: math.unit(8, "feet"),
  21253. default: true
  21254. },
  21255. {
  21256. name: "Macro",
  21257. height: math.unit(42, "meters")
  21258. },
  21259. ]
  21260. ))
  21261. characterMakers.push(() => makeCharacter(
  21262. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21263. {
  21264. were: {
  21265. height: math.unit(25 + 6 / 12, "feet"),
  21266. weight: math.unit(10000, "lb"),
  21267. name: "Were",
  21268. image: {
  21269. source: "./media/characters/tahajin/were.svg",
  21270. extra: 801 / 770,
  21271. bottom: 0.042
  21272. }
  21273. },
  21274. aquatic: {
  21275. height: math.unit(6 + 4 / 12, "feet"),
  21276. weight: math.unit(160, "lb"),
  21277. name: "Aquatic",
  21278. image: {
  21279. source: "./media/characters/tahajin/aquatic.svg",
  21280. extra: 572 / 542,
  21281. bottom: 0.04
  21282. }
  21283. },
  21284. chow: {
  21285. height: math.unit(8 + 11 / 12, "feet"),
  21286. weight: math.unit(450, "lb"),
  21287. name: "Chow",
  21288. image: {
  21289. source: "./media/characters/tahajin/chow.svg",
  21290. extra: 660 / 640,
  21291. bottom: 0.015
  21292. }
  21293. },
  21294. demiNaga: {
  21295. height: math.unit(6 + 8 / 12, "feet"),
  21296. weight: math.unit(300, "lb"),
  21297. name: "Demi Naga",
  21298. image: {
  21299. source: "./media/characters/tahajin/demi-naga.svg",
  21300. extra: 643 / 615,
  21301. bottom: 0.1
  21302. }
  21303. },
  21304. data: {
  21305. height: math.unit(5, "inches"),
  21306. weight: math.unit(0.1, "lb"),
  21307. name: "Data",
  21308. image: {
  21309. source: "./media/characters/tahajin/data.svg"
  21310. }
  21311. },
  21312. fluu: {
  21313. height: math.unit(5 + 7 / 12, "feet"),
  21314. weight: math.unit(140, "lb"),
  21315. name: "Fluu",
  21316. image: {
  21317. source: "./media/characters/tahajin/fluu.svg",
  21318. extra: 628 / 592,
  21319. bottom: 0.02
  21320. }
  21321. },
  21322. starWarrior: {
  21323. height: math.unit(4 + 5 / 12, "feet"),
  21324. weight: math.unit(50, "lb"),
  21325. name: "Star Warrior",
  21326. image: {
  21327. source: "./media/characters/tahajin/star-warrior.svg"
  21328. }
  21329. },
  21330. },
  21331. [
  21332. {
  21333. name: "Normal",
  21334. height: math.unit(25 + 6 / 12, "feet"),
  21335. default: true
  21336. },
  21337. ]
  21338. ))
  21339. characterMakers.push(() => makeCharacter(
  21340. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21341. {
  21342. front: {
  21343. height: math.unit(8, "feet"),
  21344. weight: math.unit(350, "lb"),
  21345. name: "Front",
  21346. image: {
  21347. source: "./media/characters/gabira/front.svg",
  21348. extra: 608 / 580,
  21349. bottom: 0.03
  21350. }
  21351. },
  21352. back: {
  21353. height: math.unit(8, "feet"),
  21354. weight: math.unit(350, "lb"),
  21355. name: "Back",
  21356. image: {
  21357. source: "./media/characters/gabira/back.svg",
  21358. extra: 608 / 580,
  21359. bottom: 0.03
  21360. }
  21361. },
  21362. },
  21363. [
  21364. {
  21365. name: "Normal",
  21366. height: math.unit(8, "feet"),
  21367. default: true
  21368. },
  21369. ]
  21370. ))
  21371. characterMakers.push(() => makeCharacter(
  21372. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21373. {
  21374. front: {
  21375. height: math.unit(5 + 3 / 12, "feet"),
  21376. weight: math.unit(137, "lb"),
  21377. name: "Front",
  21378. image: {
  21379. source: "./media/characters/sasha-katraine/front.svg",
  21380. bottom: 0.045
  21381. }
  21382. },
  21383. },
  21384. [
  21385. {
  21386. name: "Micro",
  21387. height: math.unit(5, "inches")
  21388. },
  21389. {
  21390. name: "Normal",
  21391. height: math.unit(5 + 3 / 12, "feet"),
  21392. default: true
  21393. },
  21394. ]
  21395. ))
  21396. characterMakers.push(() => makeCharacter(
  21397. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21398. {
  21399. side: {
  21400. height: math.unit(4, "inches"),
  21401. weight: math.unit(200, "grams"),
  21402. name: "Side",
  21403. image: {
  21404. source: "./media/characters/der/side.svg",
  21405. extra: 719 / 400,
  21406. bottom: 30.6 / 749.9187
  21407. }
  21408. },
  21409. },
  21410. [
  21411. {
  21412. name: "Micro",
  21413. height: math.unit(4, "inches"),
  21414. default: true
  21415. },
  21416. ]
  21417. ))
  21418. characterMakers.push(() => makeCharacter(
  21419. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21420. {
  21421. side: {
  21422. height: math.unit(30, "meters"),
  21423. weight: math.unit(700, "tonnes"),
  21424. name: "Side",
  21425. image: {
  21426. source: "./media/characters/fixerdragon/side.svg",
  21427. extra: (1293.0514 - 116.03) / 1106.86,
  21428. bottom: 116.03 / 1293.0514
  21429. }
  21430. },
  21431. },
  21432. [
  21433. {
  21434. name: "Planck",
  21435. height: math.unit(1.6e-35, "meters")
  21436. },
  21437. {
  21438. name: "Micro",
  21439. height: math.unit(0.4, "meters")
  21440. },
  21441. {
  21442. name: "Normal",
  21443. height: math.unit(30, "meters"),
  21444. default: true
  21445. },
  21446. {
  21447. name: "Megamacro",
  21448. height: math.unit(1.2, "megameters")
  21449. },
  21450. {
  21451. name: "Teramacro",
  21452. height: math.unit(130, "terameters")
  21453. },
  21454. {
  21455. name: "Yottamacro",
  21456. height: math.unit(6200, "yottameters")
  21457. },
  21458. ]
  21459. ));
  21460. characterMakers.push(() => makeCharacter(
  21461. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21462. {
  21463. front: {
  21464. height: math.unit(8, "feet"),
  21465. weight: math.unit(250, "lb"),
  21466. name: "Front",
  21467. image: {
  21468. source: "./media/characters/kite/front.svg",
  21469. extra: 2796 / 2659,
  21470. bottom: 0.002
  21471. }
  21472. },
  21473. },
  21474. [
  21475. {
  21476. name: "Normal",
  21477. height: math.unit(8, "feet"),
  21478. default: true
  21479. },
  21480. {
  21481. name: "Macro",
  21482. height: math.unit(360, "feet")
  21483. },
  21484. {
  21485. name: "Megamacro",
  21486. height: math.unit(1500, "feet")
  21487. },
  21488. ]
  21489. ))
  21490. characterMakers.push(() => makeCharacter(
  21491. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21492. {
  21493. front: {
  21494. height: math.unit(5 + 10 / 12, "feet"),
  21495. weight: math.unit(150, "lb"),
  21496. name: "Front",
  21497. image: {
  21498. source: "./media/characters/poojawa-vynar/front.svg",
  21499. extra: (1506.1547 - 55) / 1356.6,
  21500. bottom: 55 / 1506.1547
  21501. }
  21502. },
  21503. frontTailless: {
  21504. height: math.unit(5 + 10 / 12, "feet"),
  21505. weight: math.unit(150, "lb"),
  21506. name: "Front (Tailless)",
  21507. image: {
  21508. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21509. extra: (1506.1547 - 55) / 1356.6,
  21510. bottom: 55 / 1506.1547
  21511. }
  21512. },
  21513. },
  21514. [
  21515. {
  21516. name: "Normal",
  21517. height: math.unit(5 + 10 / 12, "feet"),
  21518. default: true
  21519. },
  21520. ]
  21521. ))
  21522. characterMakers.push(() => makeCharacter(
  21523. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21524. {
  21525. front: {
  21526. height: math.unit(293, "meters"),
  21527. weight: math.unit(70400, "tons"),
  21528. name: "Front",
  21529. image: {
  21530. source: "./media/characters/violette/front.svg",
  21531. extra: 1227 / 1180,
  21532. bottom: 0.005
  21533. }
  21534. },
  21535. back: {
  21536. height: math.unit(293, "meters"),
  21537. weight: math.unit(70400, "tons"),
  21538. name: "Back",
  21539. image: {
  21540. source: "./media/characters/violette/back.svg",
  21541. extra: 1227 / 1180,
  21542. bottom: 0.005
  21543. }
  21544. },
  21545. },
  21546. [
  21547. {
  21548. name: "Macro",
  21549. height: math.unit(293, "meters"),
  21550. default: true
  21551. },
  21552. ]
  21553. ))
  21554. characterMakers.push(() => makeCharacter(
  21555. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21556. {
  21557. front: {
  21558. height: math.unit(1050, "feet"),
  21559. weight: math.unit(200000, "tons"),
  21560. name: "Front",
  21561. image: {
  21562. source: "./media/characters/alessandra/front.svg",
  21563. extra: 960 / 912,
  21564. bottom: 0.06
  21565. }
  21566. },
  21567. },
  21568. [
  21569. {
  21570. name: "Macro",
  21571. height: math.unit(1050, "feet")
  21572. },
  21573. {
  21574. name: "Macro+",
  21575. height: math.unit(900, "meters"),
  21576. default: true
  21577. },
  21578. ]
  21579. ))
  21580. characterMakers.push(() => makeCharacter(
  21581. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21582. {
  21583. front: {
  21584. height: math.unit(5, "feet"),
  21585. weight: math.unit(187, "lb"),
  21586. name: "Front",
  21587. image: {
  21588. source: "./media/characters/person/front.svg",
  21589. extra: 3087 / 2945,
  21590. bottom: 91 / 3181
  21591. }
  21592. },
  21593. },
  21594. [
  21595. {
  21596. name: "Micro",
  21597. height: math.unit(3, "inches")
  21598. },
  21599. {
  21600. name: "Normal",
  21601. height: math.unit(5, "feet"),
  21602. default: true
  21603. },
  21604. {
  21605. name: "Macro",
  21606. height: math.unit(90, "feet")
  21607. },
  21608. {
  21609. name: "Max Size",
  21610. height: math.unit(280, "feet")
  21611. },
  21612. ]
  21613. ))
  21614. characterMakers.push(() => makeCharacter(
  21615. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21616. {
  21617. front: {
  21618. height: math.unit(4.5, "meters"),
  21619. weight: math.unit(3200, "lb"),
  21620. name: "Front",
  21621. image: {
  21622. source: "./media/characters/ty/front.svg",
  21623. extra: 1038 / 960,
  21624. bottom: 31.156 / 1068
  21625. }
  21626. },
  21627. back: {
  21628. height: math.unit(4.5, "meters"),
  21629. weight: math.unit(3200, "lb"),
  21630. name: "Back",
  21631. image: {
  21632. source: "./media/characters/ty/back.svg",
  21633. extra: 1044 / 966,
  21634. bottom: 7.48 / 1049
  21635. }
  21636. },
  21637. },
  21638. [
  21639. {
  21640. name: "Normal",
  21641. height: math.unit(4.5, "meters"),
  21642. default: true
  21643. },
  21644. ]
  21645. ))
  21646. characterMakers.push(() => makeCharacter(
  21647. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21648. {
  21649. front: {
  21650. height: math.unit(5 + 4 / 12, "feet"),
  21651. weight: math.unit(115, "lb"),
  21652. name: "Front",
  21653. image: {
  21654. source: "./media/characters/rocky/front.svg",
  21655. extra: 1012 / 975,
  21656. bottom: 54 / 1066
  21657. }
  21658. },
  21659. },
  21660. [
  21661. {
  21662. name: "Normal",
  21663. height: math.unit(5 + 4 / 12, "feet"),
  21664. default: true
  21665. },
  21666. ]
  21667. ))
  21668. characterMakers.push(() => makeCharacter(
  21669. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21670. {
  21671. upright: {
  21672. height: math.unit(6, "meters"),
  21673. weight: math.unit(4000, "kg"),
  21674. name: "Upright",
  21675. image: {
  21676. source: "./media/characters/ruin/upright.svg",
  21677. extra: 668 / 661,
  21678. bottom: 42 / 799.8396
  21679. }
  21680. },
  21681. },
  21682. [
  21683. {
  21684. name: "Normal",
  21685. height: math.unit(6, "meters"),
  21686. default: true
  21687. },
  21688. ]
  21689. ))
  21690. characterMakers.push(() => makeCharacter(
  21691. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21692. {
  21693. front: {
  21694. height: math.unit(5, "feet"),
  21695. weight: math.unit(106, "lb"),
  21696. name: "Front",
  21697. image: {
  21698. source: "./media/characters/robin/front.svg",
  21699. extra: 862 / 799,
  21700. bottom: 42.4 / 914.8856
  21701. }
  21702. },
  21703. },
  21704. [
  21705. {
  21706. name: "Normal",
  21707. height: math.unit(5, "feet"),
  21708. default: true
  21709. },
  21710. ]
  21711. ))
  21712. characterMakers.push(() => makeCharacter(
  21713. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21714. {
  21715. side: {
  21716. height: math.unit(3, "feet"),
  21717. weight: math.unit(225, "lb"),
  21718. name: "Side",
  21719. image: {
  21720. source: "./media/characters/saian/side.svg",
  21721. extra: 566 / 356,
  21722. bottom: 79.7 / 643
  21723. }
  21724. },
  21725. maw: {
  21726. height: math.unit(2.85, "feet"),
  21727. name: "Maw",
  21728. image: {
  21729. source: "./media/characters/saian/maw.svg"
  21730. }
  21731. },
  21732. },
  21733. [
  21734. {
  21735. name: "Normal",
  21736. height: math.unit(3, "feet"),
  21737. default: true
  21738. },
  21739. ]
  21740. ))
  21741. characterMakers.push(() => makeCharacter(
  21742. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21743. {
  21744. side: {
  21745. height: math.unit(8, "feet"),
  21746. weight: math.unit(300, "lb"),
  21747. name: "Side",
  21748. image: {
  21749. source: "./media/characters/equus-silvermane/side.svg",
  21750. extra: 2176 / 2050,
  21751. bottom: 65.7 / 2245
  21752. }
  21753. },
  21754. front: {
  21755. height: math.unit(8, "feet"),
  21756. weight: math.unit(300, "lb"),
  21757. name: "Front",
  21758. image: {
  21759. source: "./media/characters/equus-silvermane/front.svg",
  21760. extra: 4633 / 4400,
  21761. bottom: 71.3 / 4706.915
  21762. }
  21763. },
  21764. sideStepping: {
  21765. height: math.unit(8, "feet"),
  21766. weight: math.unit(300, "lb"),
  21767. name: "Side (Stepping)",
  21768. image: {
  21769. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21770. extra: 1968 / 1860,
  21771. bottom: 16.4 / 1989
  21772. }
  21773. },
  21774. },
  21775. [
  21776. {
  21777. name: "Normal",
  21778. height: math.unit(8, "feet")
  21779. },
  21780. {
  21781. name: "Minimacro",
  21782. height: math.unit(75, "feet"),
  21783. default: true
  21784. },
  21785. {
  21786. name: "Macro",
  21787. height: math.unit(150, "feet")
  21788. },
  21789. {
  21790. name: "Macro+",
  21791. height: math.unit(1000, "feet")
  21792. },
  21793. {
  21794. name: "Megamacro",
  21795. height: math.unit(1, "mile")
  21796. },
  21797. ]
  21798. ))
  21799. characterMakers.push(() => makeCharacter(
  21800. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21801. {
  21802. side: {
  21803. height: math.unit(20, "feet"),
  21804. weight: math.unit(30000, "kg"),
  21805. name: "Side",
  21806. image: {
  21807. source: "./media/characters/windar/side.svg",
  21808. extra: 1491 / 1248,
  21809. bottom: 82.56 / 1568
  21810. }
  21811. },
  21812. },
  21813. [
  21814. {
  21815. name: "Normal",
  21816. height: math.unit(20, "feet"),
  21817. default: true
  21818. },
  21819. ]
  21820. ))
  21821. characterMakers.push(() => makeCharacter(
  21822. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21823. {
  21824. side: {
  21825. height: math.unit(15.66, "feet"),
  21826. weight: math.unit(150, "lb"),
  21827. name: "Side",
  21828. image: {
  21829. source: "./media/characters/melody/side.svg",
  21830. extra: 1097 / 944,
  21831. bottom: 11.8 / 1109
  21832. }
  21833. },
  21834. sideOutfit: {
  21835. height: math.unit(15.66, "feet"),
  21836. weight: math.unit(150, "lb"),
  21837. name: "Side (Outfit)",
  21838. image: {
  21839. source: "./media/characters/melody/side-outfit.svg",
  21840. extra: 1097 / 944,
  21841. bottom: 11.8 / 1109
  21842. }
  21843. },
  21844. },
  21845. [
  21846. {
  21847. name: "Normal",
  21848. height: math.unit(15.66, "feet"),
  21849. default: true
  21850. },
  21851. ]
  21852. ))
  21853. characterMakers.push(() => makeCharacter(
  21854. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21855. {
  21856. front: {
  21857. height: math.unit(8, "feet"),
  21858. weight: math.unit(325, "lb"),
  21859. name: "Front",
  21860. image: {
  21861. source: "./media/characters/windera/front.svg",
  21862. extra: 3180 / 2845,
  21863. bottom: 178 / 3365
  21864. }
  21865. },
  21866. },
  21867. [
  21868. {
  21869. name: "Normal",
  21870. height: math.unit(8, "feet"),
  21871. default: true
  21872. },
  21873. ]
  21874. ))
  21875. characterMakers.push(() => makeCharacter(
  21876. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21877. {
  21878. front: {
  21879. height: math.unit(28.75, "feet"),
  21880. weight: math.unit(2000, "kg"),
  21881. name: "Front",
  21882. image: {
  21883. source: "./media/characters/sonear/front.svg",
  21884. extra: 1041.1 / 964.9,
  21885. bottom: 53.7 / 1096.6
  21886. }
  21887. },
  21888. },
  21889. [
  21890. {
  21891. name: "Normal",
  21892. height: math.unit(28.75, "feet"),
  21893. default: true
  21894. },
  21895. ]
  21896. ))
  21897. characterMakers.push(() => makeCharacter(
  21898. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21899. {
  21900. side: {
  21901. height: math.unit(25.5, "feet"),
  21902. weight: math.unit(23000, "kg"),
  21903. name: "Side",
  21904. image: {
  21905. source: "./media/characters/kanara/side.svg"
  21906. }
  21907. },
  21908. },
  21909. [
  21910. {
  21911. name: "Normal",
  21912. height: math.unit(25.5, "feet"),
  21913. default: true
  21914. },
  21915. ]
  21916. ))
  21917. characterMakers.push(() => makeCharacter(
  21918. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21919. {
  21920. side: {
  21921. height: math.unit(10, "feet"),
  21922. weight: math.unit(1000, "kg"),
  21923. name: "Side",
  21924. image: {
  21925. source: "./media/characters/ereus/side.svg",
  21926. extra: 1157 / 959,
  21927. bottom: 153 / 1312.5
  21928. }
  21929. },
  21930. },
  21931. [
  21932. {
  21933. name: "Normal",
  21934. height: math.unit(10, "feet"),
  21935. default: true
  21936. },
  21937. ]
  21938. ))
  21939. characterMakers.push(() => makeCharacter(
  21940. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21941. {
  21942. side: {
  21943. height: math.unit(4.5, "feet"),
  21944. weight: math.unit(500, "lb"),
  21945. name: "Side",
  21946. image: {
  21947. source: "./media/characters/e-ter/side.svg",
  21948. extra: 1550 / 1248,
  21949. bottom: 146 / 1694
  21950. }
  21951. },
  21952. },
  21953. [
  21954. {
  21955. name: "Normal",
  21956. height: math.unit(4.5, "feet"),
  21957. default: true
  21958. },
  21959. ]
  21960. ))
  21961. characterMakers.push(() => makeCharacter(
  21962. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21963. {
  21964. side: {
  21965. height: math.unit(9.7, "feet"),
  21966. weight: math.unit(4000, "kg"),
  21967. name: "Side",
  21968. image: {
  21969. source: "./media/characters/yamie/side.svg"
  21970. }
  21971. },
  21972. },
  21973. [
  21974. {
  21975. name: "Normal",
  21976. height: math.unit(9.7, "feet"),
  21977. default: true
  21978. },
  21979. ]
  21980. ))
  21981. characterMakers.push(() => makeCharacter(
  21982. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21983. {
  21984. front: {
  21985. height: math.unit(50, "feet"),
  21986. weight: math.unit(50000, "kg"),
  21987. name: "Front",
  21988. image: {
  21989. source: "./media/characters/anders/front.svg",
  21990. extra: 570 / 539,
  21991. bottom: 14.7 / 586.7
  21992. }
  21993. },
  21994. },
  21995. [
  21996. {
  21997. name: "Large",
  21998. height: math.unit(50, "feet")
  21999. },
  22000. {
  22001. name: "Macro",
  22002. height: math.unit(2000, "feet"),
  22003. default: true
  22004. },
  22005. {
  22006. name: "Megamacro",
  22007. height: math.unit(12, "miles")
  22008. },
  22009. ]
  22010. ))
  22011. characterMakers.push(() => makeCharacter(
  22012. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22013. {
  22014. front: {
  22015. height: math.unit(7 + 2 / 12, "feet"),
  22016. weight: math.unit(300, "lb"),
  22017. name: "Front",
  22018. image: {
  22019. source: "./media/characters/reban/front.svg",
  22020. extra: 516 / 487,
  22021. bottom: 42.82 / 558.356
  22022. }
  22023. },
  22024. dick: {
  22025. height: math.unit(7 / 5, "feet"),
  22026. name: "Dick",
  22027. image: {
  22028. source: "./media/characters/reban/dick.svg"
  22029. }
  22030. },
  22031. },
  22032. [
  22033. {
  22034. name: "Natural Height",
  22035. height: math.unit(7 + 2 / 12, "feet")
  22036. },
  22037. {
  22038. name: "Macro",
  22039. height: math.unit(500, "feet"),
  22040. default: true
  22041. },
  22042. {
  22043. name: "Canon Height",
  22044. height: math.unit(50, "AU")
  22045. },
  22046. ]
  22047. ))
  22048. characterMakers.push(() => makeCharacter(
  22049. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22050. {
  22051. front: {
  22052. height: math.unit(6, "feet"),
  22053. weight: math.unit(150, "lb"),
  22054. name: "Front",
  22055. image: {
  22056. source: "./media/characters/terrance-keayes/front.svg",
  22057. extra: 1.005,
  22058. bottom: 151 / 1615
  22059. }
  22060. },
  22061. side: {
  22062. height: math.unit(6, "feet"),
  22063. weight: math.unit(150, "lb"),
  22064. name: "Side",
  22065. image: {
  22066. source: "./media/characters/terrance-keayes/side.svg",
  22067. extra: 1.005,
  22068. bottom: 129.4 / 1544
  22069. }
  22070. },
  22071. back: {
  22072. height: math.unit(6, "feet"),
  22073. weight: math.unit(150, "lb"),
  22074. name: "Back",
  22075. image: {
  22076. source: "./media/characters/terrance-keayes/back.svg",
  22077. extra: 1.005,
  22078. bottom: 58.4 / 1557.3
  22079. }
  22080. },
  22081. dick: {
  22082. height: math.unit(6 * 0.208, "feet"),
  22083. name: "Dick",
  22084. image: {
  22085. source: "./media/characters/terrance-keayes/dick.svg"
  22086. }
  22087. },
  22088. },
  22089. [
  22090. {
  22091. name: "Canon Height",
  22092. height: math.unit(35, "miles"),
  22093. default: true
  22094. },
  22095. ]
  22096. ))
  22097. characterMakers.push(() => makeCharacter(
  22098. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22099. {
  22100. front: {
  22101. height: math.unit(6, "feet"),
  22102. weight: math.unit(150, "lb"),
  22103. name: "Front",
  22104. image: {
  22105. source: "./media/characters/ofelia/front.svg",
  22106. extra: 546 / 541,
  22107. bottom: 39 / 583
  22108. }
  22109. },
  22110. back: {
  22111. height: math.unit(6, "feet"),
  22112. weight: math.unit(150, "lb"),
  22113. name: "Back",
  22114. image: {
  22115. source: "./media/characters/ofelia/back.svg",
  22116. extra: 564 / 559.5,
  22117. bottom: 8.69 / 573.02
  22118. }
  22119. },
  22120. maw: {
  22121. height: math.unit(1, "feet"),
  22122. name: "Maw",
  22123. image: {
  22124. source: "./media/characters/ofelia/maw.svg"
  22125. }
  22126. },
  22127. foot: {
  22128. height: math.unit(1.949, "feet"),
  22129. name: "Foot",
  22130. image: {
  22131. source: "./media/characters/ofelia/foot.svg"
  22132. }
  22133. },
  22134. },
  22135. [
  22136. {
  22137. name: "Canon Height",
  22138. height: math.unit(2000, "miles"),
  22139. default: true
  22140. },
  22141. ]
  22142. ))
  22143. characterMakers.push(() => makeCharacter(
  22144. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22145. {
  22146. front: {
  22147. height: math.unit(6, "feet"),
  22148. weight: math.unit(150, "lb"),
  22149. name: "Front",
  22150. image: {
  22151. source: "./media/characters/samuel/front.svg",
  22152. extra: 265 / 258,
  22153. bottom: 2 / 266.1566
  22154. }
  22155. },
  22156. },
  22157. [
  22158. {
  22159. name: "Macro",
  22160. height: math.unit(100, "feet"),
  22161. default: true
  22162. },
  22163. {
  22164. name: "Full Size",
  22165. height: math.unit(1000, "miles")
  22166. },
  22167. ]
  22168. ))
  22169. characterMakers.push(() => makeCharacter(
  22170. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22171. {
  22172. front: {
  22173. height: math.unit(6, "feet"),
  22174. weight: math.unit(300, "lb"),
  22175. name: "Front",
  22176. image: {
  22177. source: "./media/characters/beishir-kiel/front.svg",
  22178. extra: 569 / 547,
  22179. bottom: 41.9 / 609
  22180. }
  22181. },
  22182. maw: {
  22183. height: math.unit(6 * 0.202, "feet"),
  22184. name: "Maw",
  22185. image: {
  22186. source: "./media/characters/beishir-kiel/maw.svg"
  22187. }
  22188. },
  22189. },
  22190. [
  22191. {
  22192. name: "Macro",
  22193. height: math.unit(300, "feet"),
  22194. default: true
  22195. },
  22196. ]
  22197. ))
  22198. characterMakers.push(() => makeCharacter(
  22199. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22200. {
  22201. front: {
  22202. height: math.unit(5 + 7/12, "feet"),
  22203. weight: math.unit(120, "lb"),
  22204. name: "Front",
  22205. image: {
  22206. source: "./media/characters/logan-grey/front.svg",
  22207. extra: 1836/1738,
  22208. bottom: 108/1944
  22209. }
  22210. },
  22211. back: {
  22212. height: math.unit(5 + 7/12, "feet"),
  22213. weight: math.unit(120, "lb"),
  22214. name: "Back",
  22215. image: {
  22216. source: "./media/characters/logan-grey/back.svg",
  22217. extra: 1880/1794,
  22218. bottom: 24/1904
  22219. }
  22220. },
  22221. frontSfw: {
  22222. height: math.unit(5 + 7/12, "feet"),
  22223. weight: math.unit(120, "lb"),
  22224. name: "Front (SFW)",
  22225. image: {
  22226. source: "./media/characters/logan-grey/front-sfw.svg",
  22227. extra: 1836/1738,
  22228. bottom: 108/1944
  22229. }
  22230. },
  22231. backSfw: {
  22232. height: math.unit(5 + 7/12, "feet"),
  22233. weight: math.unit(120, "lb"),
  22234. name: "Back (SFW)",
  22235. image: {
  22236. source: "./media/characters/logan-grey/back-sfw.svg",
  22237. extra: 1880/1794,
  22238. bottom: 24/1904
  22239. }
  22240. },
  22241. hands: {
  22242. height: math.unit(0.84, "feet"),
  22243. name: "Hands",
  22244. image: {
  22245. source: "./media/characters/logan-grey/hands.svg"
  22246. }
  22247. },
  22248. paws: {
  22249. height: math.unit(0.72, "feet"),
  22250. name: "Paws",
  22251. image: {
  22252. source: "./media/characters/logan-grey/paws.svg"
  22253. }
  22254. },
  22255. cock: {
  22256. height: math.unit(1.45, "feet"),
  22257. name: "Cock",
  22258. image: {
  22259. source: "./media/characters/logan-grey/cock.svg"
  22260. }
  22261. },
  22262. cockAlt: {
  22263. height: math.unit(1.437, "feet"),
  22264. name: "Cock (alt)",
  22265. image: {
  22266. source: "./media/characters/logan-grey/cock-alt.svg"
  22267. }
  22268. },
  22269. },
  22270. [
  22271. {
  22272. name: "Normal",
  22273. height: math.unit(5 + 8 / 12, "feet")
  22274. },
  22275. {
  22276. name: "The 500 Foot Femboy",
  22277. height: math.unit(500, "feet"),
  22278. default: true
  22279. },
  22280. {
  22281. name: "Megmacro",
  22282. height: math.unit(20, "miles")
  22283. },
  22284. ]
  22285. ))
  22286. characterMakers.push(() => makeCharacter(
  22287. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22288. {
  22289. front: {
  22290. height: math.unit(8 + 2 / 12, "feet"),
  22291. weight: math.unit(275, "lb"),
  22292. name: "Front",
  22293. image: {
  22294. source: "./media/characters/draganta/front.svg",
  22295. extra: 1177 / 1135,
  22296. bottom: 33.46 / 1212.1
  22297. }
  22298. },
  22299. },
  22300. [
  22301. {
  22302. name: "Normal",
  22303. height: math.unit(8 + 6 / 12, "feet"),
  22304. default: true
  22305. },
  22306. {
  22307. name: "Macro",
  22308. height: math.unit(150, "feet")
  22309. },
  22310. {
  22311. name: "Megamacro",
  22312. height: math.unit(1000, "miles")
  22313. },
  22314. ]
  22315. ))
  22316. characterMakers.push(() => makeCharacter(
  22317. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22318. {
  22319. front: {
  22320. height: math.unit(1.72, "m"),
  22321. weight: math.unit(80, "lb"),
  22322. name: "Front",
  22323. image: {
  22324. source: "./media/characters/voski/front.svg",
  22325. extra: 2076.22 / 2022.4,
  22326. bottom: 102.7 / 2177.3866
  22327. }
  22328. },
  22329. frontNsfw: {
  22330. height: math.unit(1.72, "m"),
  22331. weight: math.unit(80, "lb"),
  22332. name: "Front (NSFW)",
  22333. image: {
  22334. source: "./media/characters/voski/front-nsfw.svg",
  22335. extra: 2076.22 / 2022.4,
  22336. bottom: 102.7 / 2177.3866
  22337. }
  22338. },
  22339. back: {
  22340. height: math.unit(1.72, "m"),
  22341. weight: math.unit(80, "lb"),
  22342. name: "Back",
  22343. image: {
  22344. source: "./media/characters/voski/back.svg",
  22345. extra: 2104 / 2051,
  22346. bottom: 10.45 / 2113.63
  22347. }
  22348. },
  22349. },
  22350. [
  22351. {
  22352. name: "Normal",
  22353. height: math.unit(1.72, "m")
  22354. },
  22355. {
  22356. name: "Macro",
  22357. height: math.unit(55, "m"),
  22358. default: true
  22359. },
  22360. {
  22361. name: "Macro+",
  22362. height: math.unit(300, "m")
  22363. },
  22364. {
  22365. name: "Macro++",
  22366. height: math.unit(700, "m")
  22367. },
  22368. {
  22369. name: "Macro+++",
  22370. height: math.unit(4500, "m")
  22371. },
  22372. {
  22373. name: "Macro++++",
  22374. height: math.unit(45, "km")
  22375. },
  22376. {
  22377. name: "Macro+++++",
  22378. height: math.unit(1220, "km")
  22379. },
  22380. ]
  22381. ))
  22382. characterMakers.push(() => makeCharacter(
  22383. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22384. {
  22385. front: {
  22386. height: math.unit(2.3, "m"),
  22387. weight: math.unit(304, "kg"),
  22388. name: "Front",
  22389. image: {
  22390. source: "./media/characters/icowom-lee/front.svg",
  22391. extra: 985 / 955,
  22392. bottom: 25.4 / 1012
  22393. }
  22394. },
  22395. fronttentacles: {
  22396. height: math.unit(2.3, "m"),
  22397. weight: math.unit(304, "kg"),
  22398. name: "Front-tentacles",
  22399. image: {
  22400. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22401. extra: 985 / 955,
  22402. bottom: 25.4 / 1012
  22403. }
  22404. },
  22405. back: {
  22406. height: math.unit(2.3, "m"),
  22407. weight: math.unit(304, "kg"),
  22408. name: "Back",
  22409. image: {
  22410. source: "./media/characters/icowom-lee/back.svg",
  22411. extra: 975 / 954,
  22412. bottom: 9.5 / 985
  22413. }
  22414. },
  22415. backtentacles: {
  22416. height: math.unit(2.3, "m"),
  22417. weight: math.unit(304, "kg"),
  22418. name: "Back-tentacles",
  22419. image: {
  22420. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22421. extra: 975 / 954,
  22422. bottom: 9.5 / 985
  22423. }
  22424. },
  22425. frontDressed: {
  22426. height: math.unit(2.3, "m"),
  22427. weight: math.unit(304, "kg"),
  22428. name: "Front (Dressed)",
  22429. image: {
  22430. source: "./media/characters/icowom-lee/front-dressed.svg",
  22431. extra: 3076 / 2933,
  22432. bottom: 51.4 / 3125.1889
  22433. }
  22434. },
  22435. rump: {
  22436. height: math.unit(0.776, "meters"),
  22437. name: "Rump",
  22438. image: {
  22439. source: "./media/characters/icowom-lee/rump.svg"
  22440. }
  22441. },
  22442. genitals: {
  22443. height: math.unit(0.78, "meters"),
  22444. name: "Genitals",
  22445. image: {
  22446. source: "./media/characters/icowom-lee/genitals.svg"
  22447. }
  22448. },
  22449. },
  22450. [
  22451. {
  22452. name: "Normal",
  22453. height: math.unit(2.3, "meters"),
  22454. default: true
  22455. },
  22456. {
  22457. name: "Macro",
  22458. height: math.unit(94, "meters"),
  22459. default: true
  22460. },
  22461. ]
  22462. ))
  22463. characterMakers.push(() => makeCharacter(
  22464. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22465. {
  22466. front: {
  22467. height: math.unit(22, "meters"),
  22468. weight: math.unit(21000, "kg"),
  22469. name: "Front",
  22470. image: {
  22471. source: "./media/characters/shock-diamond/front.svg",
  22472. extra: 2204 / 2053,
  22473. bottom: 65 / 2239.47
  22474. }
  22475. },
  22476. frontNude: {
  22477. height: math.unit(22, "meters"),
  22478. weight: math.unit(21000, "kg"),
  22479. name: "Front (Nude)",
  22480. image: {
  22481. source: "./media/characters/shock-diamond/front-nude.svg",
  22482. extra: 2514 / 2285,
  22483. bottom: 13 / 2527.56
  22484. }
  22485. },
  22486. },
  22487. [
  22488. {
  22489. name: "Normal",
  22490. height: math.unit(3, "meters")
  22491. },
  22492. {
  22493. name: "Macro",
  22494. height: math.unit(22, "meters"),
  22495. default: true
  22496. },
  22497. ]
  22498. ))
  22499. characterMakers.push(() => makeCharacter(
  22500. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22501. {
  22502. front: {
  22503. height: math.unit(5 + 4 / 12, "feet"),
  22504. weight: math.unit(120, "lb"),
  22505. name: "Front",
  22506. image: {
  22507. source: "./media/characters/rory/front.svg",
  22508. extra: 1318/1241,
  22509. bottom: 42/1360
  22510. }
  22511. },
  22512. back: {
  22513. height: math.unit(5 + 4 / 12, "feet"),
  22514. weight: math.unit(120, "lb"),
  22515. name: "Back",
  22516. image: {
  22517. source: "./media/characters/rory/back.svg",
  22518. extra: 1318/1241,
  22519. bottom: 42/1360
  22520. }
  22521. },
  22522. butt: {
  22523. height: math.unit(1.74, "feet"),
  22524. name: "Butt",
  22525. image: {
  22526. source: "./media/characters/rory/butt.svg"
  22527. }
  22528. },
  22529. dick: {
  22530. height: math.unit(1.02, "feet"),
  22531. name: "Dick",
  22532. image: {
  22533. source: "./media/characters/rory/dick.svg"
  22534. }
  22535. },
  22536. paws: {
  22537. height: math.unit(1, "feet"),
  22538. name: "Paws",
  22539. image: {
  22540. source: "./media/characters/rory/paws.svg"
  22541. }
  22542. },
  22543. frontAlt: {
  22544. height: math.unit(5 + 4 / 12, "feet"),
  22545. weight: math.unit(120, "lb"),
  22546. name: "Front (Alt)",
  22547. image: {
  22548. source: "./media/characters/rory/front-alt.svg",
  22549. extra: 589 / 556,
  22550. bottom: 45.7 / 635.76
  22551. }
  22552. },
  22553. frontAltNude: {
  22554. height: math.unit(5 + 4 / 12, "feet"),
  22555. weight: math.unit(120, "lb"),
  22556. name: "Front (Alt, Nude)",
  22557. image: {
  22558. source: "./media/characters/rory/front-alt-nude.svg",
  22559. extra: 589 / 556,
  22560. bottom: 45.7 / 635.76
  22561. }
  22562. },
  22563. side: {
  22564. height: math.unit(5 + 4 / 12, "feet"),
  22565. weight: math.unit(120, "lb"),
  22566. name: "Side",
  22567. image: {
  22568. source: "./media/characters/rory/side.svg",
  22569. extra: 597 / 564,
  22570. bottom: 55 / 653
  22571. }
  22572. },
  22573. backAlt: {
  22574. height: math.unit(5 + 4 / 12, "feet"),
  22575. weight: math.unit(120, "lb"),
  22576. name: "Back (Alt)",
  22577. image: {
  22578. source: "./media/characters/rory/back-alt.svg",
  22579. extra: 620 / 585,
  22580. bottom: 8.86 / 630.43
  22581. }
  22582. },
  22583. dickAlt: {
  22584. height: math.unit(0.86, "feet"),
  22585. name: "Dick (Alt)",
  22586. image: {
  22587. source: "./media/characters/rory/dick-alt.svg"
  22588. }
  22589. },
  22590. },
  22591. [
  22592. {
  22593. name: "Normal",
  22594. height: math.unit(5 + 4 / 12, "feet"),
  22595. default: true
  22596. },
  22597. {
  22598. name: "Macro",
  22599. height: math.unit(100, "feet")
  22600. },
  22601. {
  22602. name: "Macro+",
  22603. height: math.unit(140, "feet")
  22604. },
  22605. {
  22606. name: "Macro++",
  22607. height: math.unit(300, "feet")
  22608. },
  22609. ]
  22610. ))
  22611. characterMakers.push(() => makeCharacter(
  22612. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22613. {
  22614. front: {
  22615. height: math.unit(5 + 9 / 12, "feet"),
  22616. weight: math.unit(190, "lb"),
  22617. name: "Front",
  22618. image: {
  22619. source: "./media/characters/sprisk/front.svg",
  22620. extra: 1225 / 1180,
  22621. bottom: 42.7 / 1266.4
  22622. }
  22623. },
  22624. frontNsfw: {
  22625. height: math.unit(5 + 9 / 12, "feet"),
  22626. weight: math.unit(190, "lb"),
  22627. name: "Front (NSFW)",
  22628. image: {
  22629. source: "./media/characters/sprisk/front-nsfw.svg",
  22630. extra: 1225 / 1180,
  22631. bottom: 42.7 / 1266.4
  22632. }
  22633. },
  22634. back: {
  22635. height: math.unit(5 + 9 / 12, "feet"),
  22636. weight: math.unit(190, "lb"),
  22637. name: "Back",
  22638. image: {
  22639. source: "./media/characters/sprisk/back.svg",
  22640. extra: 1247 / 1200,
  22641. bottom: 5.6 / 1253.04
  22642. }
  22643. },
  22644. },
  22645. [
  22646. {
  22647. name: "Tiny",
  22648. height: math.unit(2, "inches")
  22649. },
  22650. {
  22651. name: "Normal",
  22652. height: math.unit(5 + 9 / 12, "feet"),
  22653. default: true
  22654. },
  22655. {
  22656. name: "Mini Macro",
  22657. height: math.unit(18, "feet")
  22658. },
  22659. {
  22660. name: "Macro",
  22661. height: math.unit(100, "feet")
  22662. },
  22663. {
  22664. name: "MACRO",
  22665. height: math.unit(50, "miles")
  22666. },
  22667. {
  22668. name: "M A C R O",
  22669. height: math.unit(300, "miles")
  22670. },
  22671. ]
  22672. ))
  22673. characterMakers.push(() => makeCharacter(
  22674. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22675. {
  22676. side: {
  22677. height: math.unit(15.6, "meters"),
  22678. weight: math.unit(700000, "kg"),
  22679. name: "Side",
  22680. image: {
  22681. source: "./media/characters/bunsen/side.svg",
  22682. extra: 1644 / 358
  22683. }
  22684. },
  22685. foot: {
  22686. height: math.unit(1.611 * 1644 / 358, "meter"),
  22687. name: "Foot",
  22688. image: {
  22689. source: "./media/characters/bunsen/foot.svg"
  22690. }
  22691. },
  22692. },
  22693. [
  22694. {
  22695. name: "Small",
  22696. height: math.unit(10, "feet")
  22697. },
  22698. {
  22699. name: "Normal",
  22700. height: math.unit(15.6, "meters"),
  22701. default: true
  22702. },
  22703. ]
  22704. ))
  22705. characterMakers.push(() => makeCharacter(
  22706. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22707. {
  22708. front: {
  22709. height: math.unit(4 + 11 / 12, "feet"),
  22710. weight: math.unit(140, "lb"),
  22711. name: "Front",
  22712. image: {
  22713. source: "./media/characters/sesh/front.svg",
  22714. extra: 3420 / 3231,
  22715. bottom: 72 / 3949.5
  22716. }
  22717. },
  22718. },
  22719. [
  22720. {
  22721. name: "Normal",
  22722. height: math.unit(4 + 11 / 12, "feet")
  22723. },
  22724. {
  22725. name: "Grown",
  22726. height: math.unit(15, "feet"),
  22727. default: true
  22728. },
  22729. {
  22730. name: "Macro",
  22731. height: math.unit(1500, "feet")
  22732. },
  22733. {
  22734. name: "Megamacro",
  22735. height: math.unit(30, "miles")
  22736. },
  22737. {
  22738. name: "Continental",
  22739. height: math.unit(3000, "miles")
  22740. },
  22741. {
  22742. name: "Gravity Mass",
  22743. height: math.unit(300000, "miles")
  22744. },
  22745. {
  22746. name: "Planet Buster",
  22747. height: math.unit(30000000, "miles")
  22748. },
  22749. {
  22750. name: "Big",
  22751. height: math.unit(3000000000, "miles")
  22752. },
  22753. ]
  22754. ))
  22755. characterMakers.push(() => makeCharacter(
  22756. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22757. {
  22758. front: {
  22759. height: math.unit(9, "feet"),
  22760. weight: math.unit(350, "lb"),
  22761. name: "Front",
  22762. image: {
  22763. source: "./media/characters/pepper/front.svg",
  22764. extra: 1448 / 1312,
  22765. bottom: 9.4 / 1457.88
  22766. }
  22767. },
  22768. back: {
  22769. height: math.unit(9, "feet"),
  22770. weight: math.unit(350, "lb"),
  22771. name: "Back",
  22772. image: {
  22773. source: "./media/characters/pepper/back.svg",
  22774. extra: 1423 / 1300,
  22775. bottom: 4.6 / 1429
  22776. }
  22777. },
  22778. maw: {
  22779. height: math.unit(0.932, "feet"),
  22780. name: "Maw",
  22781. image: {
  22782. source: "./media/characters/pepper/maw.svg"
  22783. }
  22784. },
  22785. },
  22786. [
  22787. {
  22788. name: "Normal",
  22789. height: math.unit(9, "feet"),
  22790. default: true
  22791. },
  22792. ]
  22793. ))
  22794. characterMakers.push(() => makeCharacter(
  22795. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22796. {
  22797. front: {
  22798. height: math.unit(6, "feet"),
  22799. weight: math.unit(150, "lb"),
  22800. name: "Front",
  22801. image: {
  22802. source: "./media/characters/maelstrom/front.svg",
  22803. extra: 2100 / 1883,
  22804. bottom: 94 / 2196.7
  22805. }
  22806. },
  22807. },
  22808. [
  22809. {
  22810. name: "Less Kaiju",
  22811. height: math.unit(200, "feet")
  22812. },
  22813. {
  22814. name: "Kaiju",
  22815. height: math.unit(400, "feet"),
  22816. default: true
  22817. },
  22818. {
  22819. name: "Kaiju-er",
  22820. height: math.unit(600, "feet")
  22821. },
  22822. ]
  22823. ))
  22824. characterMakers.push(() => makeCharacter(
  22825. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22826. {
  22827. front: {
  22828. height: math.unit(6 + 5 / 12, "feet"),
  22829. weight: math.unit(180, "lb"),
  22830. name: "Front",
  22831. image: {
  22832. source: "./media/characters/lexir/front.svg",
  22833. extra: 180 / 172,
  22834. bottom: 12 / 192
  22835. }
  22836. },
  22837. back: {
  22838. height: math.unit(6 + 5 / 12, "feet"),
  22839. weight: math.unit(180, "lb"),
  22840. name: "Back",
  22841. image: {
  22842. source: "./media/characters/lexir/back.svg",
  22843. extra: 183.84 / 175.5,
  22844. bottom: 3.1 / 187
  22845. }
  22846. },
  22847. },
  22848. [
  22849. {
  22850. name: "Very Smal",
  22851. height: math.unit(1, "nm")
  22852. },
  22853. {
  22854. name: "Normal",
  22855. height: math.unit(6 + 5 / 12, "feet"),
  22856. default: true
  22857. },
  22858. {
  22859. name: "Macro",
  22860. height: math.unit(1, "mile")
  22861. },
  22862. {
  22863. name: "Megamacro",
  22864. height: math.unit(50, "miles")
  22865. },
  22866. ]
  22867. ))
  22868. characterMakers.push(() => makeCharacter(
  22869. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22870. {
  22871. front: {
  22872. height: math.unit(1.5, "meters"),
  22873. weight: math.unit(100, "lb"),
  22874. name: "Front",
  22875. image: {
  22876. source: "./media/characters/maksio/front.svg",
  22877. extra: 1549 / 1531,
  22878. bottom: 123.7 / 1674.5429
  22879. }
  22880. },
  22881. back: {
  22882. height: math.unit(1.5, "meters"),
  22883. weight: math.unit(100, "lb"),
  22884. name: "Back",
  22885. image: {
  22886. source: "./media/characters/maksio/back.svg",
  22887. extra: 1541 / 1509,
  22888. bottom: 97 / 1639
  22889. }
  22890. },
  22891. hand: {
  22892. height: math.unit(0.621, "feet"),
  22893. name: "Hand",
  22894. image: {
  22895. source: "./media/characters/maksio/hand.svg"
  22896. }
  22897. },
  22898. foot: {
  22899. height: math.unit(1.611, "feet"),
  22900. name: "Foot",
  22901. image: {
  22902. source: "./media/characters/maksio/foot.svg"
  22903. }
  22904. },
  22905. },
  22906. [
  22907. {
  22908. name: "Shrunken",
  22909. height: math.unit(10, "cm")
  22910. },
  22911. {
  22912. name: "Normal",
  22913. height: math.unit(150, "cm"),
  22914. default: true
  22915. },
  22916. ]
  22917. ))
  22918. characterMakers.push(() => makeCharacter(
  22919. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22920. {
  22921. front: {
  22922. height: math.unit(100, "feet"),
  22923. name: "Front",
  22924. image: {
  22925. source: "./media/characters/erza-bear/front.svg",
  22926. extra: 2449 / 2390,
  22927. bottom: 46 / 2494
  22928. }
  22929. },
  22930. back: {
  22931. height: math.unit(100, "feet"),
  22932. name: "Back",
  22933. image: {
  22934. source: "./media/characters/erza-bear/back.svg",
  22935. extra: 2489 / 2430,
  22936. bottom: 85.4 / 2480
  22937. }
  22938. },
  22939. tail: {
  22940. height: math.unit(42, "feet"),
  22941. name: "Tail",
  22942. image: {
  22943. source: "./media/characters/erza-bear/tail.svg"
  22944. }
  22945. },
  22946. tongue: {
  22947. height: math.unit(8, "feet"),
  22948. name: "Tongue",
  22949. image: {
  22950. source: "./media/characters/erza-bear/tongue.svg"
  22951. }
  22952. },
  22953. dick: {
  22954. height: math.unit(10.5, "feet"),
  22955. name: "Dick",
  22956. image: {
  22957. source: "./media/characters/erza-bear/dick.svg"
  22958. }
  22959. },
  22960. dickVertical: {
  22961. height: math.unit(16.9, "feet"),
  22962. name: "Dick (Vertical)",
  22963. image: {
  22964. source: "./media/characters/erza-bear/dick-vertical.svg"
  22965. }
  22966. },
  22967. },
  22968. [
  22969. {
  22970. name: "Macro",
  22971. height: math.unit(100, "feet"),
  22972. default: true
  22973. },
  22974. ]
  22975. ))
  22976. characterMakers.push(() => makeCharacter(
  22977. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22978. {
  22979. front: {
  22980. height: math.unit(172, "cm"),
  22981. weight: math.unit(73, "kg"),
  22982. name: "Front",
  22983. image: {
  22984. source: "./media/characters/violet-flor/front.svg",
  22985. extra: 1530 / 1442,
  22986. bottom: 61.9 / 1588.8
  22987. }
  22988. },
  22989. back: {
  22990. height: math.unit(180, "cm"),
  22991. weight: math.unit(73, "kg"),
  22992. name: "Back",
  22993. image: {
  22994. source: "./media/characters/violet-flor/back.svg",
  22995. extra: 1692 / 1630,
  22996. bottom: 20 / 1712
  22997. }
  22998. },
  22999. },
  23000. [
  23001. {
  23002. name: "Normal",
  23003. height: math.unit(172, "cm"),
  23004. default: true
  23005. },
  23006. ]
  23007. ))
  23008. characterMakers.push(() => makeCharacter(
  23009. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23010. {
  23011. front: {
  23012. height: math.unit(6, "feet"),
  23013. weight: math.unit(220, "lb"),
  23014. name: "Front",
  23015. image: {
  23016. source: "./media/characters/lynn-rhea/front.svg",
  23017. extra: 310 / 273
  23018. }
  23019. },
  23020. back: {
  23021. height: math.unit(6, "feet"),
  23022. weight: math.unit(220, "lb"),
  23023. name: "Back",
  23024. image: {
  23025. source: "./media/characters/lynn-rhea/back.svg",
  23026. extra: 310 / 273
  23027. }
  23028. },
  23029. dicks: {
  23030. height: math.unit(0.9, "feet"),
  23031. name: "Dicks",
  23032. image: {
  23033. source: "./media/characters/lynn-rhea/dicks.svg"
  23034. }
  23035. },
  23036. slit: {
  23037. height: math.unit(0.4, "feet"),
  23038. name: "Slit",
  23039. image: {
  23040. source: "./media/characters/lynn-rhea/slit.svg"
  23041. }
  23042. },
  23043. },
  23044. [
  23045. {
  23046. name: "Micro",
  23047. height: math.unit(1, "inch")
  23048. },
  23049. {
  23050. name: "Macro",
  23051. height: math.unit(60, "feet"),
  23052. default: true
  23053. },
  23054. {
  23055. name: "Megamacro",
  23056. height: math.unit(2, "miles")
  23057. },
  23058. {
  23059. name: "Gigamacro",
  23060. height: math.unit(3, "earths")
  23061. },
  23062. {
  23063. name: "Galactic",
  23064. height: math.unit(0.8, "galaxies")
  23065. },
  23066. ]
  23067. ))
  23068. characterMakers.push(() => makeCharacter(
  23069. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23070. {
  23071. front: {
  23072. height: math.unit(1600, "feet"),
  23073. weight: math.unit(85758785169, "kg"),
  23074. name: "Front",
  23075. image: {
  23076. source: "./media/characters/valathos/front.svg",
  23077. extra: 1451 / 1339
  23078. }
  23079. },
  23080. },
  23081. [
  23082. {
  23083. name: "Macro",
  23084. height: math.unit(1600, "feet"),
  23085. default: true
  23086. },
  23087. ]
  23088. ))
  23089. characterMakers.push(() => makeCharacter(
  23090. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23091. {
  23092. front: {
  23093. height: math.unit(7 + 5 / 12, "feet"),
  23094. weight: math.unit(300, "lb"),
  23095. name: "Front",
  23096. image: {
  23097. source: "./media/characters/azula/front.svg",
  23098. extra: 3208 / 2880,
  23099. bottom: 80.2 / 3277
  23100. }
  23101. },
  23102. back: {
  23103. height: math.unit(7 + 5 / 12, "feet"),
  23104. weight: math.unit(300, "lb"),
  23105. name: "Back",
  23106. image: {
  23107. source: "./media/characters/azula/back.svg",
  23108. extra: 3169 / 2822,
  23109. bottom: 150.6 / 3321
  23110. }
  23111. },
  23112. },
  23113. [
  23114. {
  23115. name: "Normal",
  23116. height: math.unit(7 + 5 / 12, "feet"),
  23117. default: true
  23118. },
  23119. {
  23120. name: "Big",
  23121. height: math.unit(20, "feet")
  23122. },
  23123. ]
  23124. ))
  23125. characterMakers.push(() => makeCharacter(
  23126. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23127. {
  23128. front: {
  23129. height: math.unit(5 + 1 / 12, "feet"),
  23130. weight: math.unit(110, "lb"),
  23131. name: "Front",
  23132. image: {
  23133. source: "./media/characters/rupert/front.svg",
  23134. extra: 1549 / 1495,
  23135. bottom: 54.2 / 1604.4
  23136. }
  23137. },
  23138. },
  23139. [
  23140. {
  23141. name: "Normal",
  23142. height: math.unit(5 + 1 / 12, "feet"),
  23143. default: true
  23144. },
  23145. ]
  23146. ))
  23147. characterMakers.push(() => makeCharacter(
  23148. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23149. {
  23150. front: {
  23151. height: math.unit(8 + 4 / 12, "feet"),
  23152. weight: math.unit(350, "lb"),
  23153. name: "Front",
  23154. image: {
  23155. source: "./media/characters/sheera-castellar/front.svg",
  23156. extra: 1957 / 1894,
  23157. bottom: 26.97 / 1975.017
  23158. }
  23159. },
  23160. side: {
  23161. height: math.unit(8 + 4 / 12, "feet"),
  23162. weight: math.unit(350, "lb"),
  23163. name: "Side",
  23164. image: {
  23165. source: "./media/characters/sheera-castellar/side.svg",
  23166. extra: 1957 / 1894
  23167. }
  23168. },
  23169. back: {
  23170. height: math.unit(8 + 4 / 12, "feet"),
  23171. weight: math.unit(350, "lb"),
  23172. name: "Back",
  23173. image: {
  23174. source: "./media/characters/sheera-castellar/back.svg",
  23175. extra: 1957 / 1894
  23176. }
  23177. },
  23178. angled: {
  23179. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23180. weight: math.unit(350, "lb"),
  23181. name: "Angled",
  23182. image: {
  23183. source: "./media/characters/sheera-castellar/angled.svg",
  23184. extra: 1807 / 1707,
  23185. bottom: 68 / 1875
  23186. }
  23187. },
  23188. genitals: {
  23189. height: math.unit(2.2, "feet"),
  23190. name: "Genitals",
  23191. image: {
  23192. source: "./media/characters/sheera-castellar/genitals.svg"
  23193. }
  23194. },
  23195. taur: {
  23196. height: math.unit(10 + 6/12, "feet"),
  23197. name: "Taur",
  23198. image: {
  23199. source: "./media/characters/sheera-castellar/taur.svg",
  23200. extra: 2017/1909,
  23201. bottom: 185/2202
  23202. }
  23203. },
  23204. },
  23205. [
  23206. {
  23207. name: "Normal",
  23208. height: math.unit(8 + 4 / 12, "feet")
  23209. },
  23210. {
  23211. name: "Macro",
  23212. height: math.unit(150, "feet"),
  23213. default: true
  23214. },
  23215. {
  23216. name: "Macro+",
  23217. height: math.unit(800, "feet")
  23218. },
  23219. ]
  23220. ))
  23221. characterMakers.push(() => makeCharacter(
  23222. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23223. {
  23224. front: {
  23225. height: math.unit(6, "feet"),
  23226. weight: math.unit(150, "lb"),
  23227. name: "Front",
  23228. image: {
  23229. source: "./media/characters/jaipur/front.svg",
  23230. extra: 3860 / 3731,
  23231. bottom: 287 / 4140
  23232. }
  23233. },
  23234. back: {
  23235. height: math.unit(6, "feet"),
  23236. weight: math.unit(150, "lb"),
  23237. name: "Back",
  23238. image: {
  23239. source: "./media/characters/jaipur/back.svg",
  23240. extra: 4060 / 3930,
  23241. bottom: 151 / 4200
  23242. }
  23243. },
  23244. },
  23245. [
  23246. {
  23247. name: "Normal",
  23248. height: math.unit(1.85, "meters"),
  23249. default: true
  23250. },
  23251. {
  23252. name: "Macro",
  23253. height: math.unit(150, "meters")
  23254. },
  23255. {
  23256. name: "Macro+",
  23257. height: math.unit(0.5, "miles")
  23258. },
  23259. {
  23260. name: "Macro++",
  23261. height: math.unit(2.5, "miles")
  23262. },
  23263. {
  23264. name: "Macro+++",
  23265. height: math.unit(12, "miles")
  23266. },
  23267. {
  23268. name: "Macro++++",
  23269. height: math.unit(120, "miles")
  23270. },
  23271. {
  23272. name: "Macro+++++",
  23273. height: math.unit(1200, "miles")
  23274. },
  23275. ]
  23276. ))
  23277. characterMakers.push(() => makeCharacter(
  23278. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23279. {
  23280. front: {
  23281. height: math.unit(6, "feet"),
  23282. weight: math.unit(150, "lb"),
  23283. name: "Front",
  23284. image: {
  23285. source: "./media/characters/sheila-wolf/front.svg",
  23286. extra: 1931 / 1808,
  23287. bottom: 29.5 / 1960
  23288. }
  23289. },
  23290. dick: {
  23291. height: math.unit(1.464, "feet"),
  23292. name: "Dick",
  23293. image: {
  23294. source: "./media/characters/sheila-wolf/dick.svg"
  23295. }
  23296. },
  23297. muzzle: {
  23298. height: math.unit(0.513, "feet"),
  23299. name: "Muzzle",
  23300. image: {
  23301. source: "./media/characters/sheila-wolf/muzzle.svg"
  23302. }
  23303. },
  23304. },
  23305. [
  23306. {
  23307. name: "Macro",
  23308. height: math.unit(70, "feet"),
  23309. default: true
  23310. },
  23311. ]
  23312. ))
  23313. characterMakers.push(() => makeCharacter(
  23314. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23315. {
  23316. front: {
  23317. height: math.unit(32, "meters"),
  23318. weight: math.unit(300000, "kg"),
  23319. name: "Front",
  23320. image: {
  23321. source: "./media/characters/almor/front.svg",
  23322. extra: 1408 / 1322,
  23323. bottom: 94.6 / 1506.5
  23324. }
  23325. },
  23326. },
  23327. [
  23328. {
  23329. name: "Macro",
  23330. height: math.unit(32, "meters"),
  23331. default: true
  23332. },
  23333. ]
  23334. ))
  23335. characterMakers.push(() => makeCharacter(
  23336. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23337. {
  23338. front: {
  23339. height: math.unit(7, "feet"),
  23340. weight: math.unit(200, "lb"),
  23341. name: "Front",
  23342. image: {
  23343. source: "./media/characters/silver/front.svg",
  23344. extra: 472.1 / 450.5,
  23345. bottom: 26.5 / 499.424
  23346. }
  23347. },
  23348. },
  23349. [
  23350. {
  23351. name: "Normal",
  23352. height: math.unit(7, "feet"),
  23353. default: true
  23354. },
  23355. {
  23356. name: "Macro",
  23357. height: math.unit(800, "feet")
  23358. },
  23359. {
  23360. name: "Megamacro",
  23361. height: math.unit(250, "miles")
  23362. },
  23363. ]
  23364. ))
  23365. characterMakers.push(() => makeCharacter(
  23366. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23367. {
  23368. front: {
  23369. height: math.unit(6, "feet"),
  23370. weight: math.unit(150, "lb"),
  23371. name: "Front",
  23372. image: {
  23373. source: "./media/characters/pliskin/front.svg",
  23374. extra: 1469 / 1359,
  23375. bottom: 70 / 1540
  23376. }
  23377. },
  23378. },
  23379. [
  23380. {
  23381. name: "Micro",
  23382. height: math.unit(3, "inches")
  23383. },
  23384. {
  23385. name: "Normal",
  23386. height: math.unit(5 + 11 / 12, "feet"),
  23387. default: true
  23388. },
  23389. {
  23390. name: "Macro",
  23391. height: math.unit(120, "feet")
  23392. },
  23393. ]
  23394. ))
  23395. characterMakers.push(() => makeCharacter(
  23396. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23397. {
  23398. front: {
  23399. height: math.unit(6, "feet"),
  23400. weight: math.unit(150, "lb"),
  23401. name: "Front",
  23402. image: {
  23403. source: "./media/characters/sammy/front.svg",
  23404. extra: 1193 / 1089,
  23405. bottom: 30.5 / 1226
  23406. }
  23407. },
  23408. },
  23409. [
  23410. {
  23411. name: "Macro",
  23412. height: math.unit(1700, "feet"),
  23413. default: true
  23414. },
  23415. {
  23416. name: "Examacro",
  23417. height: math.unit(2.5e9, "lightyears")
  23418. },
  23419. ]
  23420. ))
  23421. characterMakers.push(() => makeCharacter(
  23422. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23423. {
  23424. front: {
  23425. height: math.unit(21, "meters"),
  23426. weight: math.unit(12, "tonnes"),
  23427. name: "Front",
  23428. image: {
  23429. source: "./media/characters/kuru/front.svg",
  23430. extra: 4301 / 3785,
  23431. bottom: 371.3 / 4691
  23432. }
  23433. },
  23434. },
  23435. [
  23436. {
  23437. name: "Macro",
  23438. height: math.unit(21, "meters"),
  23439. default: true
  23440. },
  23441. ]
  23442. ))
  23443. characterMakers.push(() => makeCharacter(
  23444. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23445. {
  23446. front: {
  23447. height: math.unit(23, "meters"),
  23448. weight: math.unit(12.2, "tonnes"),
  23449. name: "Front",
  23450. image: {
  23451. source: "./media/characters/rakka/front.svg",
  23452. extra: 4670 / 4169,
  23453. bottom: 301 / 4968.7
  23454. }
  23455. },
  23456. },
  23457. [
  23458. {
  23459. name: "Macro",
  23460. height: math.unit(23, "meters"),
  23461. default: true
  23462. },
  23463. ]
  23464. ))
  23465. characterMakers.push(() => makeCharacter(
  23466. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23467. {
  23468. front: {
  23469. height: math.unit(6, "feet"),
  23470. weight: math.unit(150, "lb"),
  23471. name: "Front",
  23472. image: {
  23473. source: "./media/characters/rhys-feline/front.svg",
  23474. extra: 2488 / 2308,
  23475. bottom: 35.67 / 2519.19
  23476. }
  23477. },
  23478. },
  23479. [
  23480. {
  23481. name: "Really Small",
  23482. height: math.unit(1, "nm")
  23483. },
  23484. {
  23485. name: "Micro",
  23486. height: math.unit(4, "inches")
  23487. },
  23488. {
  23489. name: "Normal",
  23490. height: math.unit(4 + 10 / 12, "feet"),
  23491. default: true
  23492. },
  23493. {
  23494. name: "Macro",
  23495. height: math.unit(100, "feet")
  23496. },
  23497. {
  23498. name: "Megamacto",
  23499. height: math.unit(50, "miles")
  23500. },
  23501. ]
  23502. ))
  23503. characterMakers.push(() => makeCharacter(
  23504. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23505. {
  23506. side: {
  23507. height: math.unit(30, "feet"),
  23508. weight: math.unit(35000, "kg"),
  23509. name: "Side",
  23510. image: {
  23511. source: "./media/characters/alydar/side.svg",
  23512. extra: 234 / 222,
  23513. bottom: 6.5 / 241
  23514. }
  23515. },
  23516. front: {
  23517. height: math.unit(30, "feet"),
  23518. weight: math.unit(35000, "kg"),
  23519. name: "Front",
  23520. image: {
  23521. source: "./media/characters/alydar/front.svg",
  23522. extra: 223.37 / 210.2,
  23523. bottom: 22.3 / 246.76
  23524. }
  23525. },
  23526. top: {
  23527. height: math.unit(64.54, "feet"),
  23528. weight: math.unit(35000, "kg"),
  23529. name: "Top",
  23530. image: {
  23531. source: "./media/characters/alydar/top.svg"
  23532. }
  23533. },
  23534. anthro: {
  23535. height: math.unit(30, "feet"),
  23536. weight: math.unit(9000, "kg"),
  23537. name: "Anthro",
  23538. image: {
  23539. source: "./media/characters/alydar/anthro.svg",
  23540. extra: 432 / 421,
  23541. bottom: 7.18 / 440
  23542. }
  23543. },
  23544. maw: {
  23545. height: math.unit(11.693, "feet"),
  23546. name: "Maw",
  23547. image: {
  23548. source: "./media/characters/alydar/maw.svg"
  23549. }
  23550. },
  23551. head: {
  23552. height: math.unit(11.693, "feet"),
  23553. name: "Head",
  23554. image: {
  23555. source: "./media/characters/alydar/head.svg"
  23556. }
  23557. },
  23558. headAlt: {
  23559. height: math.unit(12.861, "feet"),
  23560. name: "Head (Alt)",
  23561. image: {
  23562. source: "./media/characters/alydar/head-alt.svg"
  23563. }
  23564. },
  23565. wing: {
  23566. height: math.unit(20.712, "feet"),
  23567. name: "Wing",
  23568. image: {
  23569. source: "./media/characters/alydar/wing.svg"
  23570. }
  23571. },
  23572. wingFeather: {
  23573. height: math.unit(9.662, "feet"),
  23574. name: "Wing Feather",
  23575. image: {
  23576. source: "./media/characters/alydar/wing-feather.svg"
  23577. }
  23578. },
  23579. countourFeather: {
  23580. height: math.unit(4.154, "feet"),
  23581. name: "Contour Feather",
  23582. image: {
  23583. source: "./media/characters/alydar/contour-feather.svg"
  23584. }
  23585. },
  23586. },
  23587. [
  23588. {
  23589. name: "Diplomatic",
  23590. height: math.unit(13, "feet"),
  23591. default: true
  23592. },
  23593. {
  23594. name: "Small",
  23595. height: math.unit(30, "feet")
  23596. },
  23597. {
  23598. name: "Normal",
  23599. height: math.unit(95, "feet"),
  23600. default: true
  23601. },
  23602. {
  23603. name: "Large",
  23604. height: math.unit(285, "feet")
  23605. },
  23606. {
  23607. name: "Incomprehensible",
  23608. height: math.unit(450, "megameters")
  23609. },
  23610. ]
  23611. ))
  23612. characterMakers.push(() => makeCharacter(
  23613. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23614. {
  23615. side: {
  23616. height: math.unit(11, "feet"),
  23617. weight: math.unit(1750, "kg"),
  23618. name: "Side",
  23619. image: {
  23620. source: "./media/characters/selicia/side.svg",
  23621. extra: 440 / 396,
  23622. bottom: 24.8 / 465.979
  23623. }
  23624. },
  23625. maw: {
  23626. height: math.unit(4.665, "feet"),
  23627. name: "Maw",
  23628. image: {
  23629. source: "./media/characters/selicia/maw.svg"
  23630. }
  23631. },
  23632. },
  23633. [
  23634. {
  23635. name: "Normal",
  23636. height: math.unit(11, "feet"),
  23637. default: true
  23638. },
  23639. ]
  23640. ))
  23641. characterMakers.push(() => makeCharacter(
  23642. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23643. {
  23644. side: {
  23645. height: math.unit(2 + 6 / 12, "feet"),
  23646. weight: math.unit(30, "lb"),
  23647. name: "Side",
  23648. image: {
  23649. source: "./media/characters/layla/side.svg",
  23650. extra: 244 / 188,
  23651. bottom: 18.2 / 262.1
  23652. }
  23653. },
  23654. back: {
  23655. height: math.unit(2 + 6 / 12, "feet"),
  23656. weight: math.unit(30, "lb"),
  23657. name: "Back",
  23658. image: {
  23659. source: "./media/characters/layla/back.svg",
  23660. extra: 308 / 241.5,
  23661. bottom: 8.9 / 316.8
  23662. }
  23663. },
  23664. cumming: {
  23665. height: math.unit(2 + 6 / 12, "feet"),
  23666. weight: math.unit(30, "lb"),
  23667. name: "Cumming",
  23668. image: {
  23669. source: "./media/characters/layla/cumming.svg",
  23670. extra: 342 / 279,
  23671. bottom: 595 / 938
  23672. }
  23673. },
  23674. dickFlaccid: {
  23675. height: math.unit(2.595, "feet"),
  23676. name: "Flaccid Genitals",
  23677. image: {
  23678. source: "./media/characters/layla/dick-flaccid.svg"
  23679. }
  23680. },
  23681. dickErect: {
  23682. height: math.unit(2.359, "feet"),
  23683. name: "Erect Genitals",
  23684. image: {
  23685. source: "./media/characters/layla/dick-erect.svg"
  23686. }
  23687. },
  23688. dragon: {
  23689. height: math.unit(40, "feet"),
  23690. name: "Dragon",
  23691. image: {
  23692. source: "./media/characters/layla/dragon.svg",
  23693. extra: 610/535,
  23694. bottom: 367/977
  23695. }
  23696. },
  23697. taur: {
  23698. height: math.unit(30, "feet"),
  23699. name: "Taur",
  23700. image: {
  23701. source: "./media/characters/layla/taur.svg",
  23702. extra: 1268/1199,
  23703. bottom: 112/1380
  23704. }
  23705. },
  23706. },
  23707. [
  23708. {
  23709. name: "Micro",
  23710. height: math.unit(1, "inch")
  23711. },
  23712. {
  23713. name: "Small",
  23714. height: math.unit(1, "foot")
  23715. },
  23716. {
  23717. name: "Normal",
  23718. height: math.unit(2 + 6 / 12, "feet"),
  23719. default: true
  23720. },
  23721. {
  23722. name: "Macro",
  23723. height: math.unit(200, "feet")
  23724. },
  23725. {
  23726. name: "Megamacro",
  23727. height: math.unit(1000, "miles")
  23728. },
  23729. {
  23730. name: "Planetary",
  23731. height: math.unit(8000, "miles")
  23732. },
  23733. {
  23734. name: "True Layla",
  23735. height: math.unit(200000 * 7, "multiverses")
  23736. },
  23737. ]
  23738. ))
  23739. characterMakers.push(() => makeCharacter(
  23740. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23741. {
  23742. back: {
  23743. height: math.unit(10.5, "feet"),
  23744. weight: math.unit(800, "lb"),
  23745. name: "Back",
  23746. image: {
  23747. source: "./media/characters/knox/back.svg",
  23748. extra: 1486 / 1089,
  23749. bottom: 107 / 1601.4
  23750. }
  23751. },
  23752. side: {
  23753. height: math.unit(10.5, "feet"),
  23754. weight: math.unit(800, "lb"),
  23755. name: "Side",
  23756. image: {
  23757. source: "./media/characters/knox/side.svg",
  23758. extra: 244 / 218,
  23759. bottom: 14 / 260
  23760. }
  23761. },
  23762. },
  23763. [
  23764. {
  23765. name: "Compact",
  23766. height: math.unit(10.5, "feet"),
  23767. default: true
  23768. },
  23769. {
  23770. name: "Dynamax",
  23771. height: math.unit(210, "feet")
  23772. },
  23773. {
  23774. name: "Full Macro",
  23775. height: math.unit(850, "feet")
  23776. },
  23777. ]
  23778. ))
  23779. characterMakers.push(() => makeCharacter(
  23780. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23781. {
  23782. front: {
  23783. height: math.unit(28, "feet"),
  23784. weight: math.unit(10500, "lb"),
  23785. name: "Front",
  23786. image: {
  23787. source: "./media/characters/kayda/front.svg",
  23788. extra: 1536 / 1428,
  23789. bottom: 68.7 / 1603
  23790. }
  23791. },
  23792. back: {
  23793. height: math.unit(28, "feet"),
  23794. weight: math.unit(10500, "lb"),
  23795. name: "Back",
  23796. image: {
  23797. source: "./media/characters/kayda/back.svg",
  23798. extra: 1557 / 1464,
  23799. bottom: 39.5 / 1597.49
  23800. }
  23801. },
  23802. dick: {
  23803. height: math.unit(3.858, "feet"),
  23804. name: "Dick",
  23805. image: {
  23806. source: "./media/characters/kayda/dick.svg"
  23807. }
  23808. },
  23809. },
  23810. [
  23811. {
  23812. name: "Macro",
  23813. height: math.unit(28, "feet"),
  23814. default: true
  23815. },
  23816. ]
  23817. ))
  23818. characterMakers.push(() => makeCharacter(
  23819. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23820. {
  23821. front: {
  23822. height: math.unit(10 + 11 / 12, "feet"),
  23823. weight: math.unit(1400, "lb"),
  23824. name: "Front",
  23825. image: {
  23826. source: "./media/characters/brian/front.svg",
  23827. extra: 737 / 692,
  23828. bottom: 55.4 / 785
  23829. }
  23830. },
  23831. },
  23832. [
  23833. {
  23834. name: "Normal",
  23835. height: math.unit(10 + 11 / 12, "feet"),
  23836. default: true
  23837. },
  23838. ]
  23839. ))
  23840. characterMakers.push(() => makeCharacter(
  23841. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23842. {
  23843. front: {
  23844. height: math.unit(5 + 8 / 12, "feet"),
  23845. weight: math.unit(140, "lb"),
  23846. name: "Front",
  23847. image: {
  23848. source: "./media/characters/khemri/front.svg",
  23849. extra: 4780 / 4059,
  23850. bottom: 80.1 / 4859.25
  23851. }
  23852. },
  23853. },
  23854. [
  23855. {
  23856. name: "Micro",
  23857. height: math.unit(6, "inches")
  23858. },
  23859. {
  23860. name: "Normal",
  23861. height: math.unit(5 + 8 / 12, "feet"),
  23862. default: true
  23863. },
  23864. ]
  23865. ))
  23866. characterMakers.push(() => makeCharacter(
  23867. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23868. {
  23869. front: {
  23870. height: math.unit(13, "feet"),
  23871. weight: math.unit(1700, "lb"),
  23872. name: "Front",
  23873. image: {
  23874. source: "./media/characters/felix-braveheart/front.svg",
  23875. extra: 1222 / 1157,
  23876. bottom: 53.2 / 1280
  23877. }
  23878. },
  23879. back: {
  23880. height: math.unit(13, "feet"),
  23881. weight: math.unit(1700, "lb"),
  23882. name: "Back",
  23883. image: {
  23884. source: "./media/characters/felix-braveheart/back.svg",
  23885. extra: 1277 / 1203,
  23886. bottom: 50.2 / 1327
  23887. }
  23888. },
  23889. feral: {
  23890. height: math.unit(6, "feet"),
  23891. weight: math.unit(400, "lb"),
  23892. name: "Feral",
  23893. image: {
  23894. source: "./media/characters/felix-braveheart/feral.svg",
  23895. extra: 682 / 625,
  23896. bottom: 6.9 / 688
  23897. }
  23898. },
  23899. },
  23900. [
  23901. {
  23902. name: "Normal",
  23903. height: math.unit(13, "feet"),
  23904. default: true
  23905. },
  23906. ]
  23907. ))
  23908. characterMakers.push(() => makeCharacter(
  23909. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23910. {
  23911. side: {
  23912. height: math.unit(5 + 11 / 12, "feet"),
  23913. weight: math.unit(1400, "lb"),
  23914. name: "Side",
  23915. image: {
  23916. source: "./media/characters/shadow-blade/side.svg",
  23917. extra: 1726 / 1267,
  23918. bottom: 58.4 / 1785
  23919. }
  23920. },
  23921. },
  23922. [
  23923. {
  23924. name: "Normal",
  23925. height: math.unit(5 + 11 / 12, "feet"),
  23926. default: true
  23927. },
  23928. ]
  23929. ))
  23930. characterMakers.push(() => makeCharacter(
  23931. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23932. {
  23933. front: {
  23934. height: math.unit(1 + 6 / 12, "feet"),
  23935. weight: math.unit(25, "lb"),
  23936. name: "Front",
  23937. image: {
  23938. source: "./media/characters/karla-halldor/front.svg",
  23939. extra: 1459 / 1383,
  23940. bottom: 12 / 1472
  23941. }
  23942. },
  23943. },
  23944. [
  23945. {
  23946. name: "Normal",
  23947. height: math.unit(1 + 6 / 12, "feet"),
  23948. default: true
  23949. },
  23950. ]
  23951. ))
  23952. characterMakers.push(() => makeCharacter(
  23953. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23954. {
  23955. front: {
  23956. height: math.unit(6 + 2 / 12, "feet"),
  23957. weight: math.unit(160, "lb"),
  23958. name: "Front",
  23959. image: {
  23960. source: "./media/characters/ariam/front.svg",
  23961. extra: 714 / 617,
  23962. bottom: 23.4 / 737,
  23963. }
  23964. },
  23965. squatting: {
  23966. height: math.unit(4.1, "feet"),
  23967. weight: math.unit(160, "lb"),
  23968. name: "Squatting",
  23969. image: {
  23970. source: "./media/characters/ariam/squatting.svg",
  23971. extra: 2617 / 2112,
  23972. bottom: 61.2 / 2681,
  23973. }
  23974. },
  23975. },
  23976. [
  23977. {
  23978. name: "Normal",
  23979. height: math.unit(6 + 2 / 12, "feet"),
  23980. default: true
  23981. },
  23982. {
  23983. name: "Normal+",
  23984. height: math.unit(4, "meters")
  23985. },
  23986. {
  23987. name: "Macro",
  23988. height: math.unit(50, "meters")
  23989. },
  23990. {
  23991. name: "Macro+",
  23992. height: math.unit(100, "meters")
  23993. },
  23994. {
  23995. name: "Megamacro",
  23996. height: math.unit(20, "km")
  23997. },
  23998. ]
  23999. ))
  24000. characterMakers.push(() => makeCharacter(
  24001. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24002. {
  24003. front: {
  24004. height: math.unit(1.67, "meters"),
  24005. weight: math.unit(140, "lb"),
  24006. name: "Front",
  24007. image: {
  24008. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24009. extra: 438 / 410,
  24010. bottom: 0.75 / 439
  24011. }
  24012. },
  24013. },
  24014. [
  24015. {
  24016. name: "Shrunken",
  24017. height: math.unit(7.6, "cm")
  24018. },
  24019. {
  24020. name: "Human Scale",
  24021. height: math.unit(1.67, "meters")
  24022. },
  24023. {
  24024. name: "Wolxi Scale",
  24025. height: math.unit(36.7, "meters"),
  24026. default: true
  24027. },
  24028. ]
  24029. ))
  24030. characterMakers.push(() => makeCharacter(
  24031. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24032. {
  24033. front: {
  24034. height: math.unit(1.73, "meters"),
  24035. weight: math.unit(240, "lb"),
  24036. name: "Front",
  24037. image: {
  24038. source: "./media/characters/izue-two-mothers/front.svg",
  24039. extra: 469 / 437,
  24040. bottom: 1.24 / 470.6
  24041. }
  24042. },
  24043. },
  24044. [
  24045. {
  24046. name: "Shrunken",
  24047. height: math.unit(7.86, "cm")
  24048. },
  24049. {
  24050. name: "Human Scale",
  24051. height: math.unit(1.73, "meters")
  24052. },
  24053. {
  24054. name: "Wolxi Scale",
  24055. height: math.unit(38, "meters"),
  24056. default: true
  24057. },
  24058. ]
  24059. ))
  24060. characterMakers.push(() => makeCharacter(
  24061. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24062. {
  24063. front: {
  24064. height: math.unit(1.55, "meters"),
  24065. weight: math.unit(120, "lb"),
  24066. name: "Front",
  24067. image: {
  24068. source: "./media/characters/teeku-love-shack/front.svg",
  24069. extra: 387 / 362,
  24070. bottom: 1.51 / 388
  24071. }
  24072. },
  24073. },
  24074. [
  24075. {
  24076. name: "Shrunken",
  24077. height: math.unit(7, "cm")
  24078. },
  24079. {
  24080. name: "Human Scale",
  24081. height: math.unit(1.55, "meters")
  24082. },
  24083. {
  24084. name: "Wolxi Scale",
  24085. height: math.unit(34.1, "meters"),
  24086. default: true
  24087. },
  24088. ]
  24089. ))
  24090. characterMakers.push(() => makeCharacter(
  24091. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24092. {
  24093. front: {
  24094. height: math.unit(1.83, "meters"),
  24095. weight: math.unit(135, "lb"),
  24096. name: "Front",
  24097. image: {
  24098. source: "./media/characters/dejma-the-red/front.svg",
  24099. extra: 480 / 458,
  24100. bottom: 1.8 / 482
  24101. }
  24102. },
  24103. },
  24104. [
  24105. {
  24106. name: "Shrunken",
  24107. height: math.unit(8.3, "cm")
  24108. },
  24109. {
  24110. name: "Human Scale",
  24111. height: math.unit(1.83, "meters")
  24112. },
  24113. {
  24114. name: "Wolxi Scale",
  24115. height: math.unit(40, "meters"),
  24116. default: true
  24117. },
  24118. ]
  24119. ))
  24120. characterMakers.push(() => makeCharacter(
  24121. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24122. {
  24123. front: {
  24124. height: math.unit(1.78, "meters"),
  24125. weight: math.unit(65, "kg"),
  24126. name: "Front",
  24127. image: {
  24128. source: "./media/characters/aki/front.svg",
  24129. extra: 452 / 415
  24130. }
  24131. },
  24132. frontNsfw: {
  24133. height: math.unit(1.78, "meters"),
  24134. weight: math.unit(65, "kg"),
  24135. name: "Front (NSFW)",
  24136. image: {
  24137. source: "./media/characters/aki/front-nsfw.svg",
  24138. extra: 452 / 415
  24139. }
  24140. },
  24141. back: {
  24142. height: math.unit(1.78, "meters"),
  24143. weight: math.unit(65, "kg"),
  24144. name: "Back",
  24145. image: {
  24146. source: "./media/characters/aki/back.svg",
  24147. extra: 452 / 415
  24148. }
  24149. },
  24150. rump: {
  24151. height: math.unit(2.05, "feet"),
  24152. name: "Rump",
  24153. image: {
  24154. source: "./media/characters/aki/rump.svg"
  24155. }
  24156. },
  24157. dick: {
  24158. height: math.unit(0.95, "feet"),
  24159. name: "Dick",
  24160. image: {
  24161. source: "./media/characters/aki/dick.svg"
  24162. }
  24163. },
  24164. },
  24165. [
  24166. {
  24167. name: "Micro",
  24168. height: math.unit(15, "cm")
  24169. },
  24170. {
  24171. name: "Normal",
  24172. height: math.unit(178, "cm"),
  24173. default: true
  24174. },
  24175. {
  24176. name: "Macro",
  24177. height: math.unit(214, "m")
  24178. },
  24179. {
  24180. name: "Macro+",
  24181. height: math.unit(534, "m")
  24182. },
  24183. ]
  24184. ))
  24185. characterMakers.push(() => makeCharacter(
  24186. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24187. {
  24188. front: {
  24189. height: math.unit(5 + 5 / 12, "feet"),
  24190. weight: math.unit(120, "lb"),
  24191. name: "Front",
  24192. image: {
  24193. source: "./media/characters/ari/front.svg",
  24194. extra: 714.5 / 682,
  24195. bottom: 8 / 722.5
  24196. }
  24197. },
  24198. },
  24199. [
  24200. {
  24201. name: "Normal",
  24202. height: math.unit(5 + 5 / 12, "feet")
  24203. },
  24204. {
  24205. name: "Macro",
  24206. height: math.unit(100, "feet"),
  24207. default: true
  24208. },
  24209. {
  24210. name: "Megamacro",
  24211. height: math.unit(100, "miles")
  24212. },
  24213. {
  24214. name: "Gigamacro",
  24215. height: math.unit(80000, "miles")
  24216. },
  24217. ]
  24218. ))
  24219. characterMakers.push(() => makeCharacter(
  24220. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24221. {
  24222. side: {
  24223. height: math.unit(9, "feet"),
  24224. weight: math.unit(400, "kg"),
  24225. name: "Side",
  24226. image: {
  24227. source: "./media/characters/bolt/side.svg",
  24228. extra: 1126 / 896,
  24229. bottom: 60 / 1187.3,
  24230. }
  24231. },
  24232. },
  24233. [
  24234. {
  24235. name: "Micro",
  24236. height: math.unit(5, "inches")
  24237. },
  24238. {
  24239. name: "Normal",
  24240. height: math.unit(9, "feet"),
  24241. default: true
  24242. },
  24243. {
  24244. name: "Macro",
  24245. height: math.unit(700, "feet")
  24246. },
  24247. {
  24248. name: "Max Size",
  24249. height: math.unit(1.52e22, "yottameters")
  24250. },
  24251. ]
  24252. ))
  24253. characterMakers.push(() => makeCharacter(
  24254. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24255. {
  24256. front: {
  24257. height: math.unit(4.53, "meters"),
  24258. weight: math.unit(3, "tons"),
  24259. name: "Front",
  24260. image: {
  24261. source: "./media/characters/draekon-sylviar/front.svg",
  24262. extra: 1228 / 1068,
  24263. bottom: 41 / 1270
  24264. }
  24265. },
  24266. tail: {
  24267. height: math.unit(1.772, "meter"),
  24268. name: "Tail",
  24269. image: {
  24270. source: "./media/characters/draekon-sylviar/tail.svg"
  24271. }
  24272. },
  24273. head: {
  24274. height: math.unit(1.331, "meter"),
  24275. name: "Head",
  24276. image: {
  24277. source: "./media/characters/draekon-sylviar/head.svg"
  24278. }
  24279. },
  24280. hand: {
  24281. height: math.unit(0.564, "meter"),
  24282. name: "Hand",
  24283. image: {
  24284. source: "./media/characters/draekon-sylviar/hand.svg"
  24285. }
  24286. },
  24287. foot: {
  24288. height: math.unit(0.621, "meter"),
  24289. name: "Foot",
  24290. image: {
  24291. source: "./media/characters/draekon-sylviar/foot.svg",
  24292. bottom: 32 / 324
  24293. }
  24294. },
  24295. dick: {
  24296. height: math.unit(61, "cm"),
  24297. name: "Dick",
  24298. image: {
  24299. source: "./media/characters/draekon-sylviar/dick.svg"
  24300. }
  24301. },
  24302. dickseparated: {
  24303. height: math.unit(61, "cm"),
  24304. name: "Dick-separated",
  24305. image: {
  24306. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24307. }
  24308. },
  24309. },
  24310. [
  24311. {
  24312. name: "Small",
  24313. height: math.unit(4.53 / 2, "meters"),
  24314. default: true
  24315. },
  24316. {
  24317. name: "Normal",
  24318. height: math.unit(4.53, "meters"),
  24319. default: true
  24320. },
  24321. {
  24322. name: "Large",
  24323. height: math.unit(4.53 * 2, "meters"),
  24324. },
  24325. ]
  24326. ))
  24327. characterMakers.push(() => makeCharacter(
  24328. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24329. {
  24330. front: {
  24331. height: math.unit(6 + 2 / 12, "feet"),
  24332. weight: math.unit(180, "lb"),
  24333. name: "Front",
  24334. image: {
  24335. source: "./media/characters/brawler/front.svg",
  24336. extra: 3301 / 3027,
  24337. bottom: 138 / 3439
  24338. }
  24339. },
  24340. },
  24341. [
  24342. {
  24343. name: "Normal",
  24344. height: math.unit(6 + 2 / 12, "feet"),
  24345. default: true
  24346. },
  24347. ]
  24348. ))
  24349. characterMakers.push(() => makeCharacter(
  24350. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24351. {
  24352. front: {
  24353. height: math.unit(11, "feet"),
  24354. weight: math.unit(1000, "lb"),
  24355. name: "Front",
  24356. image: {
  24357. source: "./media/characters/alex/front.svg",
  24358. bottom: 44.5 / 620
  24359. }
  24360. },
  24361. },
  24362. [
  24363. {
  24364. name: "Micro",
  24365. height: math.unit(5, "inches")
  24366. },
  24367. {
  24368. name: "Normal",
  24369. height: math.unit(11, "feet"),
  24370. default: true
  24371. },
  24372. {
  24373. name: "Macro",
  24374. height: math.unit(9.5e9, "feet")
  24375. },
  24376. {
  24377. name: "Max Size",
  24378. height: math.unit(1.4e283, "yottameters")
  24379. },
  24380. ]
  24381. ))
  24382. characterMakers.push(() => makeCharacter(
  24383. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24384. {
  24385. female: {
  24386. height: math.unit(29.9, "m"),
  24387. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24388. name: "Female",
  24389. image: {
  24390. source: "./media/characters/zenari/female.svg",
  24391. extra: 3281.6 / 3217,
  24392. bottom: 72.2 / 3353
  24393. }
  24394. },
  24395. male: {
  24396. height: math.unit(27.7, "m"),
  24397. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24398. name: "Male",
  24399. image: {
  24400. source: "./media/characters/zenari/male.svg",
  24401. extra: 3008 / 2991,
  24402. bottom: 54.6 / 3069
  24403. }
  24404. },
  24405. },
  24406. [
  24407. {
  24408. name: "Macro",
  24409. height: math.unit(29.7, "meters"),
  24410. default: true
  24411. },
  24412. ]
  24413. ))
  24414. characterMakers.push(() => makeCharacter(
  24415. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24416. {
  24417. female: {
  24418. height: math.unit(23.8, "m"),
  24419. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24420. name: "Female",
  24421. image: {
  24422. source: "./media/characters/mactarian/female.svg",
  24423. extra: 2662 / 2569,
  24424. bottom: 73 / 2736
  24425. }
  24426. },
  24427. male: {
  24428. height: math.unit(23.8, "m"),
  24429. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24430. name: "Male",
  24431. image: {
  24432. source: "./media/characters/mactarian/male.svg",
  24433. extra: 2673 / 2600,
  24434. bottom: 76 / 2750
  24435. }
  24436. },
  24437. },
  24438. [
  24439. {
  24440. name: "Macro",
  24441. height: math.unit(23.8, "meters"),
  24442. default: true
  24443. },
  24444. ]
  24445. ))
  24446. characterMakers.push(() => makeCharacter(
  24447. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24448. {
  24449. female: {
  24450. height: math.unit(19.3, "m"),
  24451. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24452. name: "Female",
  24453. image: {
  24454. source: "./media/characters/umok/female.svg",
  24455. extra: 2186 / 2078,
  24456. bottom: 87 / 2277
  24457. }
  24458. },
  24459. male: {
  24460. height: math.unit(19.5, "m"),
  24461. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24462. name: "Male",
  24463. image: {
  24464. source: "./media/characters/umok/male.svg",
  24465. extra: 2233 / 2140,
  24466. bottom: 24.4 / 2258
  24467. }
  24468. },
  24469. },
  24470. [
  24471. {
  24472. name: "Macro",
  24473. height: math.unit(19.3, "meters"),
  24474. default: true
  24475. },
  24476. ]
  24477. ))
  24478. characterMakers.push(() => makeCharacter(
  24479. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24480. {
  24481. female: {
  24482. height: math.unit(26.15, "m"),
  24483. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24484. name: "Female",
  24485. image: {
  24486. source: "./media/characters/joraxian/female.svg",
  24487. extra: 2912 / 2824,
  24488. bottom: 36 / 2956
  24489. }
  24490. },
  24491. male: {
  24492. height: math.unit(25.4, "m"),
  24493. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24494. name: "Male",
  24495. image: {
  24496. source: "./media/characters/joraxian/male.svg",
  24497. extra: 2877 / 2721,
  24498. bottom: 82 / 2967
  24499. }
  24500. },
  24501. },
  24502. [
  24503. {
  24504. name: "Macro",
  24505. height: math.unit(26.15, "meters"),
  24506. default: true
  24507. },
  24508. ]
  24509. ))
  24510. characterMakers.push(() => makeCharacter(
  24511. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24512. {
  24513. female: {
  24514. height: math.unit(21.6, "m"),
  24515. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24516. name: "Female",
  24517. image: {
  24518. source: "./media/characters/sthara/female.svg",
  24519. extra: 2516 / 2347,
  24520. bottom: 21.5 / 2537
  24521. }
  24522. },
  24523. male: {
  24524. height: math.unit(24, "m"),
  24525. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24526. name: "Male",
  24527. image: {
  24528. source: "./media/characters/sthara/male.svg",
  24529. extra: 2732 / 2607,
  24530. bottom: 23 / 2732
  24531. }
  24532. },
  24533. },
  24534. [
  24535. {
  24536. name: "Macro",
  24537. height: math.unit(21.6, "meters"),
  24538. default: true
  24539. },
  24540. ]
  24541. ))
  24542. characterMakers.push(() => makeCharacter(
  24543. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24544. {
  24545. front: {
  24546. height: math.unit(6 + 4 / 12, "feet"),
  24547. weight: math.unit(175, "lb"),
  24548. name: "Front",
  24549. image: {
  24550. source: "./media/characters/luka-bryzant/front.svg",
  24551. extra: 311 / 289,
  24552. bottom: 4 / 315
  24553. }
  24554. },
  24555. back: {
  24556. height: math.unit(6 + 4 / 12, "feet"),
  24557. weight: math.unit(175, "lb"),
  24558. name: "Back",
  24559. image: {
  24560. source: "./media/characters/luka-bryzant/back.svg",
  24561. extra: 311 / 289,
  24562. bottom: 3.8 / 313.7
  24563. }
  24564. },
  24565. },
  24566. [
  24567. {
  24568. name: "Micro",
  24569. height: math.unit(10, "inches")
  24570. },
  24571. {
  24572. name: "Normal",
  24573. height: math.unit(6 + 4 / 12, "feet"),
  24574. default: true
  24575. },
  24576. {
  24577. name: "Large",
  24578. height: math.unit(12, "feet")
  24579. },
  24580. ]
  24581. ))
  24582. characterMakers.push(() => makeCharacter(
  24583. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24584. {
  24585. front: {
  24586. height: math.unit(5 + 7 / 12, "feet"),
  24587. weight: math.unit(185, "lb"),
  24588. name: "Front",
  24589. image: {
  24590. source: "./media/characters/aman-aquila/front.svg",
  24591. extra: 1013 / 976,
  24592. bottom: 45.6 / 1057
  24593. }
  24594. },
  24595. side: {
  24596. height: math.unit(5 + 7 / 12, "feet"),
  24597. weight: math.unit(185, "lb"),
  24598. name: "Side",
  24599. image: {
  24600. source: "./media/characters/aman-aquila/side.svg",
  24601. extra: 1054 / 1011,
  24602. bottom: 15 / 1070
  24603. }
  24604. },
  24605. back: {
  24606. height: math.unit(5 + 7 / 12, "feet"),
  24607. weight: math.unit(185, "lb"),
  24608. name: "Back",
  24609. image: {
  24610. source: "./media/characters/aman-aquila/back.svg",
  24611. extra: 1026 / 970,
  24612. bottom: 12 / 1039
  24613. }
  24614. },
  24615. head: {
  24616. height: math.unit(1.211, "feet"),
  24617. name: "Head",
  24618. image: {
  24619. source: "./media/characters/aman-aquila/head.svg",
  24620. }
  24621. },
  24622. },
  24623. [
  24624. {
  24625. name: "Minimicro",
  24626. height: math.unit(0.057, "inches")
  24627. },
  24628. {
  24629. name: "Micro",
  24630. height: math.unit(7, "inches")
  24631. },
  24632. {
  24633. name: "Mini",
  24634. height: math.unit(3 + 7 / 12, "feet")
  24635. },
  24636. {
  24637. name: "Normal",
  24638. height: math.unit(5 + 7 / 12, "feet"),
  24639. default: true
  24640. },
  24641. {
  24642. name: "Macro",
  24643. height: math.unit(157 + 7 / 12, "feet")
  24644. },
  24645. {
  24646. name: "Megamacro",
  24647. height: math.unit(1557 + 7 / 12, "feet")
  24648. },
  24649. {
  24650. name: "Gigamacro",
  24651. height: math.unit(15557 + 7 / 12, "feet")
  24652. },
  24653. ]
  24654. ))
  24655. characterMakers.push(() => makeCharacter(
  24656. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24657. {
  24658. front: {
  24659. height: math.unit(3 + 2 / 12, "inches"),
  24660. weight: math.unit(0.3, "ounces"),
  24661. name: "Front",
  24662. image: {
  24663. source: "./media/characters/hiphae/front.svg",
  24664. extra: 1931 / 1683,
  24665. bottom: 24 / 1955
  24666. }
  24667. },
  24668. },
  24669. [
  24670. {
  24671. name: "Normal",
  24672. height: math.unit(3 + 1 / 2, "inches"),
  24673. default: true
  24674. },
  24675. ]
  24676. ))
  24677. characterMakers.push(() => makeCharacter(
  24678. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24679. {
  24680. front: {
  24681. height: math.unit(5 + 10 / 12, "feet"),
  24682. weight: math.unit(165, "lb"),
  24683. name: "Front",
  24684. image: {
  24685. source: "./media/characters/nicky/front.svg",
  24686. extra: 3144 / 2886,
  24687. bottom: 45.6 / 3192
  24688. }
  24689. },
  24690. back: {
  24691. height: math.unit(5 + 10 / 12, "feet"),
  24692. weight: math.unit(165, "lb"),
  24693. name: "Back",
  24694. image: {
  24695. source: "./media/characters/nicky/back.svg",
  24696. extra: 3055 / 2804,
  24697. bottom: 28.4 / 3087
  24698. }
  24699. },
  24700. frontclothed: {
  24701. height: math.unit(5 + 10 / 12, "feet"),
  24702. weight: math.unit(165, "lb"),
  24703. name: "Front-clothed",
  24704. image: {
  24705. source: "./media/characters/nicky/front-clothed.svg",
  24706. extra: 3184.9 / 2926.9,
  24707. bottom: 86.5 / 3239.9
  24708. }
  24709. },
  24710. foot: {
  24711. height: math.unit(1.16, "feet"),
  24712. name: "Foot",
  24713. image: {
  24714. source: "./media/characters/nicky/foot.svg"
  24715. }
  24716. },
  24717. feet: {
  24718. height: math.unit(1.34, "feet"),
  24719. name: "Feet",
  24720. image: {
  24721. source: "./media/characters/nicky/feet.svg"
  24722. }
  24723. },
  24724. maw: {
  24725. height: math.unit(0.9, "feet"),
  24726. name: "Maw",
  24727. image: {
  24728. source: "./media/characters/nicky/maw.svg"
  24729. }
  24730. },
  24731. },
  24732. [
  24733. {
  24734. name: "Normal",
  24735. height: math.unit(5 + 10 / 12, "feet"),
  24736. default: true
  24737. },
  24738. {
  24739. name: "Macro",
  24740. height: math.unit(60, "feet")
  24741. },
  24742. {
  24743. name: "Megamacro",
  24744. height: math.unit(1, "mile")
  24745. },
  24746. ]
  24747. ))
  24748. characterMakers.push(() => makeCharacter(
  24749. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24750. {
  24751. side: {
  24752. height: math.unit(10, "feet"),
  24753. weight: math.unit(600, "lb"),
  24754. name: "Side",
  24755. image: {
  24756. source: "./media/characters/blair/side.svg",
  24757. bottom: 16.6 / 475,
  24758. extra: 458 / 431
  24759. }
  24760. },
  24761. },
  24762. [
  24763. {
  24764. name: "Micro",
  24765. height: math.unit(8, "inches")
  24766. },
  24767. {
  24768. name: "Normal",
  24769. height: math.unit(10, "feet"),
  24770. default: true
  24771. },
  24772. {
  24773. name: "Macro",
  24774. height: math.unit(180, "feet")
  24775. },
  24776. ]
  24777. ))
  24778. characterMakers.push(() => makeCharacter(
  24779. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24780. {
  24781. front: {
  24782. height: math.unit(5 + 4 / 12, "feet"),
  24783. weight: math.unit(125, "lb"),
  24784. name: "Front",
  24785. image: {
  24786. source: "./media/characters/fisher/front.svg",
  24787. extra: 444 / 390,
  24788. bottom: 2 / 444.8
  24789. }
  24790. },
  24791. },
  24792. [
  24793. {
  24794. name: "Micro",
  24795. height: math.unit(4, "inches")
  24796. },
  24797. {
  24798. name: "Normal",
  24799. height: math.unit(5 + 4 / 12, "feet"),
  24800. default: true
  24801. },
  24802. {
  24803. name: "Macro",
  24804. height: math.unit(100, "feet")
  24805. },
  24806. ]
  24807. ))
  24808. characterMakers.push(() => makeCharacter(
  24809. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24810. {
  24811. front: {
  24812. height: math.unit(6.71, "feet"),
  24813. weight: math.unit(200, "lb"),
  24814. capacity: math.unit(1000000, "people"),
  24815. name: "Front",
  24816. image: {
  24817. source: "./media/characters/gliss/front.svg",
  24818. extra: 2347 / 2231,
  24819. bottom: 113 / 2462
  24820. }
  24821. },
  24822. hammerspaceSize: {
  24823. height: math.unit(6.71 * 717, "feet"),
  24824. weight: math.unit(200, "lb"),
  24825. capacity: math.unit(1000000, "people"),
  24826. name: "Hammerspace Size",
  24827. image: {
  24828. source: "./media/characters/gliss/front.svg",
  24829. extra: 2347 / 2231,
  24830. bottom: 113 / 2462
  24831. }
  24832. },
  24833. },
  24834. [
  24835. {
  24836. name: "Normal",
  24837. height: math.unit(6.71, "feet"),
  24838. default: true
  24839. },
  24840. ]
  24841. ))
  24842. characterMakers.push(() => makeCharacter(
  24843. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24844. {
  24845. side: {
  24846. height: math.unit(1.44, "m"),
  24847. weight: math.unit(80, "kg"),
  24848. name: "Side",
  24849. image: {
  24850. source: "./media/characters/dune-anderson/side.svg",
  24851. bottom: 49 / 1426
  24852. }
  24853. },
  24854. },
  24855. [
  24856. {
  24857. name: "Wolf-sized",
  24858. height: math.unit(1.44, "meters")
  24859. },
  24860. {
  24861. name: "Normal",
  24862. height: math.unit(5.05, "meters"),
  24863. default: true
  24864. },
  24865. {
  24866. name: "Big",
  24867. height: math.unit(14.4, "meters")
  24868. },
  24869. {
  24870. name: "Huge",
  24871. height: math.unit(144, "meters")
  24872. },
  24873. ]
  24874. ))
  24875. characterMakers.push(() => makeCharacter(
  24876. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24877. {
  24878. front: {
  24879. height: math.unit(7, "feet"),
  24880. weight: math.unit(425, "lb"),
  24881. name: "Front",
  24882. image: {
  24883. source: "./media/characters/hind/front.svg",
  24884. extra: 2091 / 1860,
  24885. bottom: 129 / 2220
  24886. }
  24887. },
  24888. back: {
  24889. height: math.unit(7, "feet"),
  24890. weight: math.unit(425, "lb"),
  24891. name: "Back",
  24892. image: {
  24893. source: "./media/characters/hind/back.svg",
  24894. extra: 2091 / 1860,
  24895. bottom: 24.6 / 2309
  24896. }
  24897. },
  24898. tail: {
  24899. height: math.unit(2.8, "feet"),
  24900. name: "Tail",
  24901. image: {
  24902. source: "./media/characters/hind/tail.svg"
  24903. }
  24904. },
  24905. head: {
  24906. height: math.unit(2.55, "feet"),
  24907. name: "Head",
  24908. image: {
  24909. source: "./media/characters/hind/head.svg"
  24910. }
  24911. },
  24912. },
  24913. [
  24914. {
  24915. name: "XS",
  24916. height: math.unit(0.7, "feet")
  24917. },
  24918. {
  24919. name: "Normal",
  24920. height: math.unit(7, "feet"),
  24921. default: true
  24922. },
  24923. {
  24924. name: "XL",
  24925. height: math.unit(70, "feet")
  24926. },
  24927. ]
  24928. ))
  24929. characterMakers.push(() => makeCharacter(
  24930. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  24931. {
  24932. front: {
  24933. height: math.unit(2.1, "meters"),
  24934. weight: math.unit(150, "lb"),
  24935. name: "Front",
  24936. image: {
  24937. source: "./media/characters/tharquench-sizestealer/front.svg",
  24938. extra: 1605/1470,
  24939. bottom: 36/1641
  24940. }
  24941. },
  24942. frontAlt: {
  24943. height: math.unit(2.1, "meters"),
  24944. weight: math.unit(150, "lb"),
  24945. name: "Front (Alt)",
  24946. image: {
  24947. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  24948. extra: 2318 / 2063,
  24949. bottom: 93.4 / 2410
  24950. }
  24951. },
  24952. },
  24953. [
  24954. {
  24955. name: "Nano",
  24956. height: math.unit(1, "mm")
  24957. },
  24958. {
  24959. name: "Micro",
  24960. height: math.unit(1, "cm")
  24961. },
  24962. {
  24963. name: "Normal",
  24964. height: math.unit(2.1, "meters"),
  24965. default: true
  24966. },
  24967. ]
  24968. ))
  24969. characterMakers.push(() => makeCharacter(
  24970. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24971. {
  24972. front: {
  24973. height: math.unit(7 + 5 / 12, "feet"),
  24974. weight: math.unit(357, "lb"),
  24975. name: "Front",
  24976. image: {
  24977. source: "./media/characters/solex-draconov/front.svg",
  24978. extra: 1993 / 1865,
  24979. bottom: 117 / 2111
  24980. }
  24981. },
  24982. },
  24983. [
  24984. {
  24985. name: "Natural Height",
  24986. height: math.unit(7 + 5 / 12, "feet"),
  24987. default: true
  24988. },
  24989. {
  24990. name: "Macro",
  24991. height: math.unit(350, "feet")
  24992. },
  24993. {
  24994. name: "Macro+",
  24995. height: math.unit(1000, "feet")
  24996. },
  24997. {
  24998. name: "Megamacro",
  24999. height: math.unit(20, "km")
  25000. },
  25001. {
  25002. name: "Megamacro+",
  25003. height: math.unit(1000, "km")
  25004. },
  25005. {
  25006. name: "Gigamacro",
  25007. height: math.unit(2.5, "Gm")
  25008. },
  25009. {
  25010. name: "Teramacro",
  25011. height: math.unit(15, "Tm")
  25012. },
  25013. {
  25014. name: "Galactic",
  25015. height: math.unit(30, "Zm")
  25016. },
  25017. {
  25018. name: "Universal",
  25019. height: math.unit(21000, "Ym")
  25020. },
  25021. {
  25022. name: "Omniversal",
  25023. height: math.unit(9.861e50, "Ym")
  25024. },
  25025. {
  25026. name: "Existential",
  25027. height: math.unit(1e300, "meters")
  25028. },
  25029. ]
  25030. ))
  25031. characterMakers.push(() => makeCharacter(
  25032. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25033. {
  25034. side: {
  25035. height: math.unit(25, "feet"),
  25036. weight: math.unit(90000, "lb"),
  25037. name: "Side",
  25038. image: {
  25039. source: "./media/characters/mandarax/side.svg",
  25040. extra: 614 / 332,
  25041. bottom: 55 / 630
  25042. }
  25043. },
  25044. head: {
  25045. height: math.unit(11.4, "feet"),
  25046. name: "Head",
  25047. image: {
  25048. source: "./media/characters/mandarax/head.svg"
  25049. }
  25050. },
  25051. belly: {
  25052. height: math.unit(33, "feet"),
  25053. name: "Belly",
  25054. capacity: math.unit(500, "people"),
  25055. image: {
  25056. source: "./media/characters/mandarax/belly.svg"
  25057. }
  25058. },
  25059. dick: {
  25060. height: math.unit(8.46, "feet"),
  25061. name: "Dick",
  25062. image: {
  25063. source: "./media/characters/mandarax/dick.svg"
  25064. }
  25065. },
  25066. top: {
  25067. height: math.unit(28, "meters"),
  25068. name: "Top",
  25069. image: {
  25070. source: "./media/characters/mandarax/top.svg"
  25071. }
  25072. },
  25073. },
  25074. [
  25075. {
  25076. name: "Normal",
  25077. height: math.unit(25, "feet"),
  25078. default: true
  25079. },
  25080. ]
  25081. ))
  25082. characterMakers.push(() => makeCharacter(
  25083. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25084. {
  25085. front: {
  25086. height: math.unit(5, "feet"),
  25087. weight: math.unit(90, "lb"),
  25088. name: "Front",
  25089. image: {
  25090. source: "./media/characters/pixil/front.svg",
  25091. extra: 2000 / 1618,
  25092. bottom: 12.3 / 2011
  25093. }
  25094. },
  25095. },
  25096. [
  25097. {
  25098. name: "Normal",
  25099. height: math.unit(5, "feet"),
  25100. default: true
  25101. },
  25102. {
  25103. name: "Megamacro",
  25104. height: math.unit(10, "miles"),
  25105. },
  25106. ]
  25107. ))
  25108. characterMakers.push(() => makeCharacter(
  25109. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25110. {
  25111. front: {
  25112. height: math.unit(7 + 2 / 12, "feet"),
  25113. weight: math.unit(200, "lb"),
  25114. name: "Front",
  25115. image: {
  25116. source: "./media/characters/angel/front.svg",
  25117. extra: 1830 / 1737,
  25118. bottom: 22.6 / 1854,
  25119. }
  25120. },
  25121. },
  25122. [
  25123. {
  25124. name: "Normal",
  25125. height: math.unit(7 + 2 / 12, "feet"),
  25126. default: true
  25127. },
  25128. {
  25129. name: "Macro",
  25130. height: math.unit(1000, "feet")
  25131. },
  25132. {
  25133. name: "Megamacro",
  25134. height: math.unit(2, "miles")
  25135. },
  25136. {
  25137. name: "Gigamacro",
  25138. height: math.unit(20, "earths")
  25139. },
  25140. ]
  25141. ))
  25142. characterMakers.push(() => makeCharacter(
  25143. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25144. {
  25145. front: {
  25146. height: math.unit(5, "feet"),
  25147. weight: math.unit(180, "lb"),
  25148. name: "Front",
  25149. image: {
  25150. source: "./media/characters/mekana/front.svg",
  25151. extra: 1671 / 1605,
  25152. bottom: 3.5 / 1691
  25153. }
  25154. },
  25155. side: {
  25156. height: math.unit(5, "feet"),
  25157. weight: math.unit(180, "lb"),
  25158. name: "Side",
  25159. image: {
  25160. source: "./media/characters/mekana/side.svg",
  25161. extra: 1671 / 1605,
  25162. bottom: 3.5 / 1691
  25163. }
  25164. },
  25165. back: {
  25166. height: math.unit(5, "feet"),
  25167. weight: math.unit(180, "lb"),
  25168. name: "Back",
  25169. image: {
  25170. source: "./media/characters/mekana/back.svg",
  25171. extra: 1671 / 1605,
  25172. bottom: 3.5 / 1691
  25173. }
  25174. },
  25175. },
  25176. [
  25177. {
  25178. name: "Normal",
  25179. height: math.unit(5, "feet"),
  25180. default: true
  25181. },
  25182. ]
  25183. ))
  25184. characterMakers.push(() => makeCharacter(
  25185. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25186. {
  25187. front: {
  25188. height: math.unit(4 + 6 / 12, "feet"),
  25189. weight: math.unit(80, "lb"),
  25190. name: "Front",
  25191. image: {
  25192. source: "./media/characters/pixie/front.svg",
  25193. extra: 1924 / 1825,
  25194. bottom: 22.4 / 1946
  25195. }
  25196. },
  25197. },
  25198. [
  25199. {
  25200. name: "Normal",
  25201. height: math.unit(4 + 6 / 12, "feet"),
  25202. default: true
  25203. },
  25204. {
  25205. name: "Macro",
  25206. height: math.unit(40, "feet")
  25207. },
  25208. ]
  25209. ))
  25210. characterMakers.push(() => makeCharacter(
  25211. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25212. {
  25213. front: {
  25214. height: math.unit(2.1, "meters"),
  25215. weight: math.unit(200, "lb"),
  25216. name: "Front",
  25217. image: {
  25218. source: "./media/characters/the-lascivious/front.svg",
  25219. extra: 1 / 0.893,
  25220. bottom: 3.5 / 573.7
  25221. }
  25222. },
  25223. },
  25224. [
  25225. {
  25226. name: "Human Scale",
  25227. height: math.unit(2.1, "meters")
  25228. },
  25229. {
  25230. name: "Wolxi Scale",
  25231. height: math.unit(46.2, "m"),
  25232. default: true
  25233. },
  25234. {
  25235. name: "Boinker of Buildings",
  25236. height: math.unit(10, "km")
  25237. },
  25238. {
  25239. name: "Shagger of Skyscrapers",
  25240. height: math.unit(40, "km")
  25241. },
  25242. {
  25243. name: "Banger of Boroughs",
  25244. height: math.unit(4000, "km")
  25245. },
  25246. {
  25247. name: "Screwer of States",
  25248. height: math.unit(100000, "km")
  25249. },
  25250. {
  25251. name: "Pounder of Planets",
  25252. height: math.unit(2000000, "km")
  25253. },
  25254. ]
  25255. ))
  25256. characterMakers.push(() => makeCharacter(
  25257. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25258. {
  25259. front: {
  25260. height: math.unit(6, "feet"),
  25261. weight: math.unit(150, "lb"),
  25262. name: "Front",
  25263. image: {
  25264. source: "./media/characters/aj/front.svg",
  25265. extra: 2039 / 1562,
  25266. bottom: 40 / 2079
  25267. }
  25268. },
  25269. },
  25270. [
  25271. {
  25272. name: "Normal",
  25273. height: math.unit(11 + 6 / 12, "feet"),
  25274. default: true
  25275. },
  25276. {
  25277. name: "Megamacro",
  25278. height: math.unit(60, "megameters")
  25279. },
  25280. ]
  25281. ))
  25282. characterMakers.push(() => makeCharacter(
  25283. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25284. {
  25285. side: {
  25286. height: math.unit(31 + 8 / 12, "feet"),
  25287. weight: math.unit(75000, "kg"),
  25288. name: "Side",
  25289. image: {
  25290. source: "./media/characters/koros/side.svg",
  25291. extra: 1442 / 1297,
  25292. bottom: 122.7 / 1562
  25293. }
  25294. },
  25295. dicksKingsCrown: {
  25296. height: math.unit(6, "feet"),
  25297. name: "Dicks (King's Crown)",
  25298. image: {
  25299. source: "./media/characters/koros/dicks-kings-crown.svg"
  25300. }
  25301. },
  25302. dicksTailSet: {
  25303. height: math.unit(3, "feet"),
  25304. name: "Dicks (Tail Set)",
  25305. image: {
  25306. source: "./media/characters/koros/dicks-tail-set.svg"
  25307. }
  25308. },
  25309. dickCumming: {
  25310. height: math.unit(7.98, "feet"),
  25311. name: "Dick (Cumming)",
  25312. image: {
  25313. source: "./media/characters/koros/dick-cumming.svg"
  25314. }
  25315. },
  25316. dicksBack: {
  25317. height: math.unit(5.9, "feet"),
  25318. name: "Dicks (Back)",
  25319. image: {
  25320. source: "./media/characters/koros/dicks-back.svg"
  25321. }
  25322. },
  25323. dicksFront: {
  25324. height: math.unit(3.72, "feet"),
  25325. name: "Dicks (Front)",
  25326. image: {
  25327. source: "./media/characters/koros/dicks-front.svg"
  25328. }
  25329. },
  25330. dicksPeeking: {
  25331. height: math.unit(3.0, "feet"),
  25332. name: "Dicks (Peeking)",
  25333. image: {
  25334. source: "./media/characters/koros/dicks-peeking.svg"
  25335. }
  25336. },
  25337. eye: {
  25338. height: math.unit(1.7, "feet"),
  25339. name: "Eye",
  25340. image: {
  25341. source: "./media/characters/koros/eye.svg"
  25342. }
  25343. },
  25344. headFront: {
  25345. height: math.unit(11.69, "feet"),
  25346. name: "Head (Front)",
  25347. image: {
  25348. source: "./media/characters/koros/head-front.svg"
  25349. }
  25350. },
  25351. headSide: {
  25352. height: math.unit(14, "feet"),
  25353. name: "Head (Side)",
  25354. image: {
  25355. source: "./media/characters/koros/head-side.svg"
  25356. }
  25357. },
  25358. leg: {
  25359. height: math.unit(17, "feet"),
  25360. name: "Leg",
  25361. image: {
  25362. source: "./media/characters/koros/leg.svg"
  25363. }
  25364. },
  25365. mawSide: {
  25366. height: math.unit(12.8, "feet"),
  25367. name: "Maw (Side)",
  25368. image: {
  25369. source: "./media/characters/koros/maw-side.svg"
  25370. }
  25371. },
  25372. mawSpitting: {
  25373. height: math.unit(17, "feet"),
  25374. name: "Maw (Spitting)",
  25375. image: {
  25376. source: "./media/characters/koros/maw-spitting.svg"
  25377. }
  25378. },
  25379. slit: {
  25380. height: math.unit(2.8, "feet"),
  25381. name: "Slit",
  25382. image: {
  25383. source: "./media/characters/koros/slit.svg"
  25384. }
  25385. },
  25386. stomach: {
  25387. height: math.unit(6.8, "feet"),
  25388. capacity: math.unit(20, "people"),
  25389. name: "Stomach",
  25390. image: {
  25391. source: "./media/characters/koros/stomach.svg"
  25392. }
  25393. },
  25394. wingspanBottom: {
  25395. height: math.unit(114, "feet"),
  25396. name: "Wingspan (Bottom)",
  25397. image: {
  25398. source: "./media/characters/koros/wingspan-bottom.svg"
  25399. }
  25400. },
  25401. wingspanTop: {
  25402. height: math.unit(104, "feet"),
  25403. name: "Wingspan (Top)",
  25404. image: {
  25405. source: "./media/characters/koros/wingspan-top.svg"
  25406. }
  25407. },
  25408. },
  25409. [
  25410. {
  25411. name: "Normal",
  25412. height: math.unit(31 + 8 / 12, "feet"),
  25413. default: true
  25414. },
  25415. ]
  25416. ))
  25417. characterMakers.push(() => makeCharacter(
  25418. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25419. {
  25420. front: {
  25421. height: math.unit(18 + 5 / 12, "feet"),
  25422. weight: math.unit(3750, "kg"),
  25423. name: "Front",
  25424. image: {
  25425. source: "./media/characters/vexx/front.svg",
  25426. extra: 426 / 396,
  25427. bottom: 31.5 / 458
  25428. }
  25429. },
  25430. maw: {
  25431. height: math.unit(6, "feet"),
  25432. name: "Maw",
  25433. image: {
  25434. source: "./media/characters/vexx/maw.svg"
  25435. }
  25436. },
  25437. },
  25438. [
  25439. {
  25440. name: "Normal",
  25441. height: math.unit(18 + 5 / 12, "feet"),
  25442. default: true
  25443. },
  25444. ]
  25445. ))
  25446. characterMakers.push(() => makeCharacter(
  25447. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25448. {
  25449. front: {
  25450. height: math.unit(17 + 6 / 12, "feet"),
  25451. weight: math.unit(150, "lb"),
  25452. name: "Front",
  25453. image: {
  25454. source: "./media/characters/baadra/front.svg",
  25455. extra: 3137 / 2890,
  25456. bottom: 168.4 / 3305
  25457. }
  25458. },
  25459. back: {
  25460. height: math.unit(17 + 6 / 12, "feet"),
  25461. weight: math.unit(150, "lb"),
  25462. name: "Back",
  25463. image: {
  25464. source: "./media/characters/baadra/back.svg",
  25465. extra: 3142 / 2890,
  25466. bottom: 220 / 3371
  25467. }
  25468. },
  25469. head: {
  25470. height: math.unit(5.45, "feet"),
  25471. name: "Head",
  25472. image: {
  25473. source: "./media/characters/baadra/head.svg"
  25474. }
  25475. },
  25476. headAngry: {
  25477. height: math.unit(4.95, "feet"),
  25478. name: "Head (Angry)",
  25479. image: {
  25480. source: "./media/characters/baadra/head-angry.svg"
  25481. }
  25482. },
  25483. headOpen: {
  25484. height: math.unit(6, "feet"),
  25485. name: "Head (Open)",
  25486. image: {
  25487. source: "./media/characters/baadra/head-open.svg"
  25488. }
  25489. },
  25490. },
  25491. [
  25492. {
  25493. name: "Normal",
  25494. height: math.unit(17 + 6 / 12, "feet"),
  25495. default: true
  25496. },
  25497. ]
  25498. ))
  25499. characterMakers.push(() => makeCharacter(
  25500. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25501. {
  25502. front: {
  25503. height: math.unit(7 + 3 / 12, "feet"),
  25504. weight: math.unit(180, "lb"),
  25505. name: "Front",
  25506. image: {
  25507. source: "./media/characters/juri/front.svg",
  25508. extra: 1401 / 1237,
  25509. bottom: 18.5 / 1418
  25510. }
  25511. },
  25512. side: {
  25513. height: math.unit(7 + 3 / 12, "feet"),
  25514. weight: math.unit(180, "lb"),
  25515. name: "Side",
  25516. image: {
  25517. source: "./media/characters/juri/side.svg",
  25518. extra: 1424 / 1242,
  25519. bottom: 18.5 / 1447
  25520. }
  25521. },
  25522. sitting: {
  25523. height: math.unit(6, "feet"),
  25524. weight: math.unit(180, "lb"),
  25525. name: "Sitting",
  25526. image: {
  25527. source: "./media/characters/juri/sitting.svg",
  25528. extra: 1270 / 1143,
  25529. bottom: 100 / 1343
  25530. }
  25531. },
  25532. back: {
  25533. height: math.unit(7 + 3 / 12, "feet"),
  25534. weight: math.unit(180, "lb"),
  25535. name: "Back",
  25536. image: {
  25537. source: "./media/characters/juri/back.svg",
  25538. extra: 1377 / 1240,
  25539. bottom: 23.7 / 1405
  25540. }
  25541. },
  25542. maw: {
  25543. height: math.unit(2.8, "feet"),
  25544. name: "Maw",
  25545. image: {
  25546. source: "./media/characters/juri/maw.svg"
  25547. }
  25548. },
  25549. stomach: {
  25550. height: math.unit(0.89, "feet"),
  25551. capacity: math.unit(4, "liters"),
  25552. name: "Stomach",
  25553. image: {
  25554. source: "./media/characters/juri/stomach.svg"
  25555. }
  25556. },
  25557. },
  25558. [
  25559. {
  25560. name: "Normal",
  25561. height: math.unit(7 + 3 / 12, "feet"),
  25562. default: true
  25563. },
  25564. ]
  25565. ))
  25566. characterMakers.push(() => makeCharacter(
  25567. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25568. {
  25569. fox: {
  25570. height: math.unit(5 + 6 / 12, "feet"),
  25571. weight: math.unit(140, "lb"),
  25572. name: "Fox",
  25573. image: {
  25574. source: "./media/characters/maxene-sita/fox.svg",
  25575. extra: 146 / 138,
  25576. bottom: 2.1 / 148.19
  25577. }
  25578. },
  25579. foxLaying: {
  25580. height: math.unit(1.70, "feet"),
  25581. weight: math.unit(140, "lb"),
  25582. name: "Fox (Laying)",
  25583. image: {
  25584. source: "./media/characters/maxene-sita/fox-laying.svg",
  25585. extra: 910 / 572,
  25586. bottom: 71 / 981
  25587. }
  25588. },
  25589. kitsune: {
  25590. height: math.unit(10, "feet"),
  25591. weight: math.unit(800, "lb"),
  25592. name: "Kitsune",
  25593. image: {
  25594. source: "./media/characters/maxene-sita/kitsune.svg",
  25595. extra: 185 / 176,
  25596. bottom: 4.7 / 189.9
  25597. }
  25598. },
  25599. hellhound: {
  25600. height: math.unit(10, "feet"),
  25601. weight: math.unit(700, "lb"),
  25602. name: "Hellhound",
  25603. image: {
  25604. source: "./media/characters/maxene-sita/hellhound.svg",
  25605. extra: 1600 / 1545,
  25606. bottom: 81 / 1681
  25607. }
  25608. },
  25609. },
  25610. [
  25611. {
  25612. name: "Normal",
  25613. height: math.unit(5 + 6 / 12, "feet"),
  25614. default: true
  25615. },
  25616. ]
  25617. ))
  25618. characterMakers.push(() => makeCharacter(
  25619. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25620. {
  25621. front: {
  25622. height: math.unit(3 + 4 / 12, "feet"),
  25623. weight: math.unit(70, "lb"),
  25624. name: "Front",
  25625. image: {
  25626. source: "./media/characters/maia/front.svg",
  25627. extra: 227 / 219.5,
  25628. bottom: 40 / 267
  25629. }
  25630. },
  25631. back: {
  25632. height: math.unit(3 + 4 / 12, "feet"),
  25633. weight: math.unit(70, "lb"),
  25634. name: "Back",
  25635. image: {
  25636. source: "./media/characters/maia/back.svg",
  25637. extra: 237 / 225
  25638. }
  25639. },
  25640. },
  25641. [
  25642. {
  25643. name: "Normal",
  25644. height: math.unit(3 + 4 / 12, "feet"),
  25645. default: true
  25646. },
  25647. ]
  25648. ))
  25649. characterMakers.push(() => makeCharacter(
  25650. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25651. {
  25652. front: {
  25653. height: math.unit(5 + 10 / 12, "feet"),
  25654. weight: math.unit(197, "lb"),
  25655. name: "Front",
  25656. image: {
  25657. source: "./media/characters/jabaro/front.svg",
  25658. extra: 225 / 216,
  25659. bottom: 5.06 / 230
  25660. }
  25661. },
  25662. back: {
  25663. height: math.unit(5 + 10 / 12, "feet"),
  25664. weight: math.unit(197, "lb"),
  25665. name: "Back",
  25666. image: {
  25667. source: "./media/characters/jabaro/back.svg",
  25668. extra: 225 / 219,
  25669. bottom: 1.9 / 227
  25670. }
  25671. },
  25672. },
  25673. [
  25674. {
  25675. name: "Normal",
  25676. height: math.unit(5 + 10 / 12, "feet"),
  25677. default: true
  25678. },
  25679. ]
  25680. ))
  25681. characterMakers.push(() => makeCharacter(
  25682. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25683. {
  25684. front: {
  25685. height: math.unit(5 + 8 / 12, "feet"),
  25686. weight: math.unit(139, "lb"),
  25687. name: "Front",
  25688. image: {
  25689. source: "./media/characters/risa/front.svg",
  25690. extra: 270 / 260,
  25691. bottom: 11.2 / 282
  25692. }
  25693. },
  25694. back: {
  25695. height: math.unit(5 + 8 / 12, "feet"),
  25696. weight: math.unit(139, "lb"),
  25697. name: "Back",
  25698. image: {
  25699. source: "./media/characters/risa/back.svg",
  25700. extra: 264 / 255,
  25701. bottom: 4 / 268
  25702. }
  25703. },
  25704. },
  25705. [
  25706. {
  25707. name: "Normal",
  25708. height: math.unit(5 + 8 / 12, "feet"),
  25709. default: true
  25710. },
  25711. ]
  25712. ))
  25713. characterMakers.push(() => makeCharacter(
  25714. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25715. {
  25716. front: {
  25717. height: math.unit(2 + 11 / 12, "feet"),
  25718. weight: math.unit(30, "lb"),
  25719. name: "Front",
  25720. image: {
  25721. source: "./media/characters/weatley/front.svg",
  25722. bottom: 10.7 / 414,
  25723. extra: 403.5 / 362
  25724. }
  25725. },
  25726. back: {
  25727. height: math.unit(2 + 11 / 12, "feet"),
  25728. weight: math.unit(30, "lb"),
  25729. name: "Back",
  25730. image: {
  25731. source: "./media/characters/weatley/back.svg",
  25732. bottom: 10.7 / 414,
  25733. extra: 403.5 / 362
  25734. }
  25735. },
  25736. },
  25737. [
  25738. {
  25739. name: "Normal",
  25740. height: math.unit(2 + 11 / 12, "feet"),
  25741. default: true
  25742. },
  25743. ]
  25744. ))
  25745. characterMakers.push(() => makeCharacter(
  25746. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25747. {
  25748. front: {
  25749. height: math.unit(5 + 2 / 12, "feet"),
  25750. weight: math.unit(50, "kg"),
  25751. name: "Front",
  25752. image: {
  25753. source: "./media/characters/mercury-crescent/front.svg",
  25754. extra: 1088 / 1033,
  25755. bottom: 18.9 / 1109
  25756. }
  25757. },
  25758. },
  25759. [
  25760. {
  25761. name: "Normal",
  25762. height: math.unit(5 + 2 / 12, "feet"),
  25763. default: true
  25764. },
  25765. ]
  25766. ))
  25767. characterMakers.push(() => makeCharacter(
  25768. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25769. {
  25770. front: {
  25771. height: math.unit(2, "feet"),
  25772. weight: math.unit(15, "kg"),
  25773. name: "Front",
  25774. image: {
  25775. source: "./media/characters/diamond-jones/front.svg",
  25776. extra: 727/723,
  25777. bottom: 46/773
  25778. }
  25779. },
  25780. },
  25781. [
  25782. {
  25783. name: "Normal",
  25784. height: math.unit(2, "feet"),
  25785. default: true
  25786. },
  25787. ]
  25788. ))
  25789. characterMakers.push(() => makeCharacter(
  25790. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25791. {
  25792. front: {
  25793. height: math.unit(3, "feet"),
  25794. weight: math.unit(30, "kg"),
  25795. name: "Front",
  25796. image: {
  25797. source: "./media/characters/sweet-bit/front.svg",
  25798. extra: 675 / 567,
  25799. bottom: 27.7 / 703
  25800. }
  25801. },
  25802. },
  25803. [
  25804. {
  25805. name: "Normal",
  25806. height: math.unit(3, "feet"),
  25807. default: true
  25808. },
  25809. ]
  25810. ))
  25811. characterMakers.push(() => makeCharacter(
  25812. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25813. {
  25814. side: {
  25815. height: math.unit(9.178, "feet"),
  25816. weight: math.unit(500, "lb"),
  25817. name: "Side",
  25818. image: {
  25819. source: "./media/characters/umbrazen/side.svg",
  25820. extra: 1730 / 1473,
  25821. bottom: 34.6 / 1765
  25822. }
  25823. },
  25824. },
  25825. [
  25826. {
  25827. name: "Normal",
  25828. height: math.unit(9.178, "feet"),
  25829. default: true
  25830. },
  25831. ]
  25832. ))
  25833. characterMakers.push(() => makeCharacter(
  25834. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25835. {
  25836. front: {
  25837. height: math.unit(10, "feet"),
  25838. weight: math.unit(750, "lb"),
  25839. name: "Front",
  25840. image: {
  25841. source: "./media/characters/arlist/front.svg",
  25842. extra: 961 / 778,
  25843. bottom: 6.2 / 986
  25844. }
  25845. },
  25846. },
  25847. [
  25848. {
  25849. name: "Normal",
  25850. height: math.unit(10, "feet"),
  25851. default: true
  25852. },
  25853. ]
  25854. ))
  25855. characterMakers.push(() => makeCharacter(
  25856. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25857. {
  25858. front: {
  25859. height: math.unit(5 + 1 / 12, "feet"),
  25860. weight: math.unit(110, "lb"),
  25861. name: "Front",
  25862. image: {
  25863. source: "./media/characters/aradel/front.svg",
  25864. extra: 324 / 303,
  25865. bottom: 3.6 / 329.4
  25866. }
  25867. },
  25868. },
  25869. [
  25870. {
  25871. name: "Normal",
  25872. height: math.unit(5 + 1 / 12, "feet"),
  25873. default: true
  25874. },
  25875. ]
  25876. ))
  25877. characterMakers.push(() => makeCharacter(
  25878. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25879. {
  25880. front: {
  25881. height: math.unit(3 + 8 / 12, "feet"),
  25882. weight: math.unit(50, "lb"),
  25883. name: "Front",
  25884. image: {
  25885. source: "./media/characters/serryn/front.svg",
  25886. extra: 1792 / 1656,
  25887. bottom: 43.5 / 1840
  25888. }
  25889. },
  25890. },
  25891. [
  25892. {
  25893. name: "Normal",
  25894. height: math.unit(3 + 8 / 12, "feet"),
  25895. default: true
  25896. },
  25897. ]
  25898. ))
  25899. characterMakers.push(() => makeCharacter(
  25900. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  25901. {
  25902. front: {
  25903. height: math.unit(7 + 10 / 12, "feet"),
  25904. weight: math.unit(255, "lb"),
  25905. name: "Front",
  25906. image: {
  25907. source: "./media/characters/xavier-thyme/front.svg",
  25908. extra: 3733 / 3642,
  25909. bottom: 131 / 3869
  25910. }
  25911. },
  25912. frontRaven: {
  25913. height: math.unit(7 + 10 / 12, "feet"),
  25914. weight: math.unit(255, "lb"),
  25915. name: "Front (Raven)",
  25916. image: {
  25917. source: "./media/characters/xavier-thyme/front-raven.svg",
  25918. extra: 4385 / 3642,
  25919. bottom: 131 / 4517
  25920. }
  25921. },
  25922. },
  25923. [
  25924. {
  25925. name: "Normal",
  25926. height: math.unit(7 + 10 / 12, "feet"),
  25927. default: true
  25928. },
  25929. ]
  25930. ))
  25931. characterMakers.push(() => makeCharacter(
  25932. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25933. {
  25934. front: {
  25935. height: math.unit(1.6, "m"),
  25936. weight: math.unit(50, "kg"),
  25937. name: "Front",
  25938. image: {
  25939. source: "./media/characters/kiki/front.svg",
  25940. extra: 4682 / 3610,
  25941. bottom: 115 / 4777
  25942. }
  25943. },
  25944. },
  25945. [
  25946. {
  25947. name: "Normal",
  25948. height: math.unit(1.6, "meters"),
  25949. default: true
  25950. },
  25951. ]
  25952. ))
  25953. characterMakers.push(() => makeCharacter(
  25954. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25955. {
  25956. front: {
  25957. height: math.unit(50, "m"),
  25958. weight: math.unit(500, "tonnes"),
  25959. name: "Front",
  25960. image: {
  25961. source: "./media/characters/ryoko/front.svg",
  25962. extra: 4632 / 3926,
  25963. bottom: 193 / 4823
  25964. }
  25965. },
  25966. },
  25967. [
  25968. {
  25969. name: "Normal",
  25970. height: math.unit(50, "meters"),
  25971. default: true
  25972. },
  25973. ]
  25974. ))
  25975. characterMakers.push(() => makeCharacter(
  25976. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25977. {
  25978. front: {
  25979. height: math.unit(30, "m"),
  25980. weight: math.unit(22, "tonnes"),
  25981. name: "Front",
  25982. image: {
  25983. source: "./media/characters/elio/front.svg",
  25984. extra: 4582 / 3720,
  25985. bottom: 236 / 4828
  25986. }
  25987. },
  25988. },
  25989. [
  25990. {
  25991. name: "Normal",
  25992. height: math.unit(30, "meters"),
  25993. default: true
  25994. },
  25995. ]
  25996. ))
  25997. characterMakers.push(() => makeCharacter(
  25998. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25999. {
  26000. front: {
  26001. height: math.unit(6 + 3 / 12, "feet"),
  26002. weight: math.unit(120, "lb"),
  26003. name: "Front",
  26004. image: {
  26005. source: "./media/characters/azura/front.svg",
  26006. extra: 1149 / 1135,
  26007. bottom: 45 / 1194
  26008. }
  26009. },
  26010. frontClothed: {
  26011. height: math.unit(6 + 3 / 12, "feet"),
  26012. weight: math.unit(120, "lb"),
  26013. name: "Front (Clothed)",
  26014. image: {
  26015. source: "./media/characters/azura/front-clothed.svg",
  26016. extra: 1149 / 1135,
  26017. bottom: 45 / 1194
  26018. }
  26019. },
  26020. },
  26021. [
  26022. {
  26023. name: "Normal",
  26024. height: math.unit(6 + 3 / 12, "feet"),
  26025. default: true
  26026. },
  26027. {
  26028. name: "Macro",
  26029. height: math.unit(20 + 6 / 12, "feet")
  26030. },
  26031. {
  26032. name: "Megamacro",
  26033. height: math.unit(12, "miles")
  26034. },
  26035. {
  26036. name: "Gigamacro",
  26037. height: math.unit(10000, "miles")
  26038. },
  26039. {
  26040. name: "Teramacro",
  26041. height: math.unit(900000, "miles")
  26042. },
  26043. ]
  26044. ))
  26045. characterMakers.push(() => makeCharacter(
  26046. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26047. {
  26048. front: {
  26049. height: math.unit(12, "feet"),
  26050. weight: math.unit(1, "ton"),
  26051. capacity: math.unit(660000, "gallons"),
  26052. name: "Front",
  26053. image: {
  26054. source: "./media/characters/zeus/front.svg",
  26055. extra: 5005 / 4717,
  26056. bottom: 363 / 5388
  26057. }
  26058. },
  26059. },
  26060. [
  26061. {
  26062. name: "Normal",
  26063. height: math.unit(12, "feet")
  26064. },
  26065. {
  26066. name: "Preferred Size",
  26067. height: math.unit(0.5, "miles"),
  26068. default: true
  26069. },
  26070. {
  26071. name: "Giga Horse",
  26072. height: math.unit(300, "miles")
  26073. },
  26074. {
  26075. name: "Riding Planets",
  26076. height: math.unit(30, "megameters")
  26077. },
  26078. {
  26079. name: "Cosmic Giant",
  26080. height: math.unit(3, "zettameters")
  26081. },
  26082. {
  26083. name: "Breeding God",
  26084. height: math.unit(9.92e22, "yottameters")
  26085. },
  26086. ]
  26087. ))
  26088. characterMakers.push(() => makeCharacter(
  26089. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26090. {
  26091. side: {
  26092. height: math.unit(9, "feet"),
  26093. weight: math.unit(1500, "kg"),
  26094. name: "Side",
  26095. image: {
  26096. source: "./media/characters/fang/side.svg",
  26097. extra: 924 / 866,
  26098. bottom: 47.5 / 972.3
  26099. }
  26100. },
  26101. },
  26102. [
  26103. {
  26104. name: "Normal",
  26105. height: math.unit(9, "feet"),
  26106. default: true
  26107. },
  26108. {
  26109. name: "Macro",
  26110. height: math.unit(75 + 6 / 12, "feet")
  26111. },
  26112. {
  26113. name: "Teramacro",
  26114. height: math.unit(50000, "miles")
  26115. },
  26116. ]
  26117. ))
  26118. characterMakers.push(() => makeCharacter(
  26119. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26120. {
  26121. front: {
  26122. height: math.unit(10, "feet"),
  26123. weight: math.unit(2, "tons"),
  26124. name: "Front",
  26125. image: {
  26126. source: "./media/characters/rekhit/front.svg",
  26127. extra: 2796 / 2590,
  26128. bottom: 225 / 3022
  26129. }
  26130. },
  26131. },
  26132. [
  26133. {
  26134. name: "Normal",
  26135. height: math.unit(10, "feet"),
  26136. default: true
  26137. },
  26138. {
  26139. name: "Macro",
  26140. height: math.unit(500, "feet")
  26141. },
  26142. ]
  26143. ))
  26144. characterMakers.push(() => makeCharacter(
  26145. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26146. {
  26147. front: {
  26148. height: math.unit(7 + 6.451 / 12, "feet"),
  26149. weight: math.unit(310, "lb"),
  26150. name: "Front",
  26151. image: {
  26152. source: "./media/characters/dahlia-verrick/front.svg",
  26153. extra: 1488 / 1365,
  26154. bottom: 6.2 / 1495
  26155. }
  26156. },
  26157. back: {
  26158. height: math.unit(7 + 6.451 / 12, "feet"),
  26159. weight: math.unit(310, "lb"),
  26160. name: "Back",
  26161. image: {
  26162. source: "./media/characters/dahlia-verrick/back.svg",
  26163. extra: 1472 / 1351,
  26164. bottom: 5.28 / 1477
  26165. }
  26166. },
  26167. frontBusiness: {
  26168. height: math.unit(7 + 6.451 / 12, "feet"),
  26169. weight: math.unit(200, "lb"),
  26170. name: "Front (Business)",
  26171. image: {
  26172. source: "./media/characters/dahlia-verrick/front-business.svg",
  26173. extra: 1478 / 1381,
  26174. bottom: 5.5 / 1484
  26175. }
  26176. },
  26177. frontCasual: {
  26178. height: math.unit(7 + 6.451 / 12, "feet"),
  26179. weight: math.unit(200, "lb"),
  26180. name: "Front (Casual)",
  26181. image: {
  26182. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26183. extra: 1478 / 1381,
  26184. bottom: 5.5 / 1484
  26185. }
  26186. },
  26187. },
  26188. [
  26189. {
  26190. name: "Travel-Sized",
  26191. height: math.unit(7.45, "inches")
  26192. },
  26193. {
  26194. name: "Normal",
  26195. height: math.unit(7 + 6.451 / 12, "feet"),
  26196. default: true
  26197. },
  26198. {
  26199. name: "Hitting the Town",
  26200. height: math.unit(37 + 8 / 12, "feet")
  26201. },
  26202. {
  26203. name: "Stomp in the Suburbs",
  26204. height: math.unit(964 + 9.728 / 12, "feet")
  26205. },
  26206. {
  26207. name: "Sit on the City",
  26208. height: math.unit(61747 + 10.592 / 12, "feet")
  26209. },
  26210. {
  26211. name: "Glomp the Globe",
  26212. height: math.unit(252919327 + 4.832 / 12, "feet")
  26213. },
  26214. ]
  26215. ))
  26216. characterMakers.push(() => makeCharacter(
  26217. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26218. {
  26219. front: {
  26220. height: math.unit(6 + 4 / 12, "feet"),
  26221. weight: math.unit(320, "lb"),
  26222. name: "Front",
  26223. image: {
  26224. source: "./media/characters/balina-mahigan/front.svg",
  26225. extra: 447 / 428,
  26226. bottom: 18 / 466
  26227. }
  26228. },
  26229. back: {
  26230. height: math.unit(6 + 4 / 12, "feet"),
  26231. weight: math.unit(320, "lb"),
  26232. name: "Back",
  26233. image: {
  26234. source: "./media/characters/balina-mahigan/back.svg",
  26235. extra: 445 / 428,
  26236. bottom: 4.07 / 448
  26237. }
  26238. },
  26239. arm: {
  26240. height: math.unit(1.88, "feet"),
  26241. name: "Arm",
  26242. image: {
  26243. source: "./media/characters/balina-mahigan/arm.svg"
  26244. }
  26245. },
  26246. backPort: {
  26247. height: math.unit(0.685, "feet"),
  26248. name: "Back Port",
  26249. image: {
  26250. source: "./media/characters/balina-mahigan/back-port.svg"
  26251. }
  26252. },
  26253. hoofpaw: {
  26254. height: math.unit(1.41, "feet"),
  26255. name: "Hoofpaw",
  26256. image: {
  26257. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26258. }
  26259. },
  26260. leftHandBack: {
  26261. height: math.unit(0.938, "feet"),
  26262. name: "Left Hand (Back)",
  26263. image: {
  26264. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26265. }
  26266. },
  26267. leftHandFront: {
  26268. height: math.unit(0.938, "feet"),
  26269. name: "Left Hand (Front)",
  26270. image: {
  26271. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26272. }
  26273. },
  26274. rightHandBack: {
  26275. height: math.unit(0.95, "feet"),
  26276. name: "Right Hand (Back)",
  26277. image: {
  26278. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26279. }
  26280. },
  26281. rightHandFront: {
  26282. height: math.unit(0.95, "feet"),
  26283. name: "Right Hand (Front)",
  26284. image: {
  26285. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26286. }
  26287. },
  26288. },
  26289. [
  26290. {
  26291. name: "Normal",
  26292. height: math.unit(6 + 4 / 12, "feet"),
  26293. default: true
  26294. },
  26295. ]
  26296. ))
  26297. characterMakers.push(() => makeCharacter(
  26298. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26299. {
  26300. front: {
  26301. height: math.unit(6, "feet"),
  26302. weight: math.unit(320, "lb"),
  26303. name: "Front",
  26304. image: {
  26305. source: "./media/characters/balina-mejeri/front.svg",
  26306. extra: 517 / 488,
  26307. bottom: 44.2 / 561
  26308. }
  26309. },
  26310. },
  26311. [
  26312. {
  26313. name: "Normal",
  26314. height: math.unit(6 + 4 / 12, "feet")
  26315. },
  26316. {
  26317. name: "Business",
  26318. height: math.unit(155, "feet"),
  26319. default: true
  26320. },
  26321. ]
  26322. ))
  26323. characterMakers.push(() => makeCharacter(
  26324. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26325. {
  26326. kneeling: {
  26327. height: math.unit(6 + 4 / 12, "feet"),
  26328. weight: math.unit(300 * 20, "lb"),
  26329. name: "Kneeling",
  26330. image: {
  26331. source: "./media/characters/balbarian/kneeling.svg",
  26332. extra: 922 / 862,
  26333. bottom: 42.4 / 965
  26334. }
  26335. },
  26336. },
  26337. [
  26338. {
  26339. name: "Normal",
  26340. height: math.unit(6 + 4 / 12, "feet")
  26341. },
  26342. {
  26343. name: "Treasured",
  26344. height: math.unit(18 + 9 / 12, "feet"),
  26345. default: true
  26346. },
  26347. {
  26348. name: "Macro",
  26349. height: math.unit(900, "feet")
  26350. },
  26351. ]
  26352. ))
  26353. characterMakers.push(() => makeCharacter(
  26354. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26355. {
  26356. front: {
  26357. height: math.unit(6 + 4 / 12, "feet"),
  26358. weight: math.unit(325, "lb"),
  26359. name: "Front",
  26360. image: {
  26361. source: "./media/characters/balina-amarini/front.svg",
  26362. extra: 415 / 403,
  26363. bottom: 19 / 433.4
  26364. }
  26365. },
  26366. back: {
  26367. height: math.unit(6 + 4 / 12, "feet"),
  26368. weight: math.unit(325, "lb"),
  26369. name: "Back",
  26370. image: {
  26371. source: "./media/characters/balina-amarini/back.svg",
  26372. extra: 415 / 403,
  26373. bottom: 13.5 / 432
  26374. }
  26375. },
  26376. overdrive: {
  26377. height: math.unit(6 + 4 / 12, "feet"),
  26378. weight: math.unit(400, "lb"),
  26379. name: "Overdrive",
  26380. image: {
  26381. source: "./media/characters/balina-amarini/overdrive.svg",
  26382. extra: 269 / 259,
  26383. bottom: 12 / 282
  26384. }
  26385. },
  26386. },
  26387. [
  26388. {
  26389. name: "Boom",
  26390. height: math.unit(9 + 10 / 12, "feet"),
  26391. default: true
  26392. },
  26393. {
  26394. name: "Macro",
  26395. height: math.unit(280, "feet")
  26396. },
  26397. ]
  26398. ))
  26399. characterMakers.push(() => makeCharacter(
  26400. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26401. {
  26402. goddess: {
  26403. height: math.unit(600, "feet"),
  26404. weight: math.unit(2000000, "tons"),
  26405. name: "Goddess",
  26406. image: {
  26407. source: "./media/characters/lady-kubwa/goddess.svg",
  26408. extra: 1240.5 / 1223,
  26409. bottom: 22 / 1263
  26410. }
  26411. },
  26412. goddesser: {
  26413. height: math.unit(900, "feet"),
  26414. weight: math.unit(20000000, "lb"),
  26415. name: "Goddess-er",
  26416. image: {
  26417. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26418. extra: 899 / 888,
  26419. bottom: 12.6 / 912
  26420. }
  26421. },
  26422. },
  26423. [
  26424. {
  26425. name: "Macro",
  26426. height: math.unit(600, "feet"),
  26427. default: true
  26428. },
  26429. {
  26430. name: "Megamacro",
  26431. height: math.unit(250, "miles")
  26432. },
  26433. ]
  26434. ))
  26435. characterMakers.push(() => makeCharacter(
  26436. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26437. {
  26438. front: {
  26439. height: math.unit(7 + 7 / 12, "feet"),
  26440. weight: math.unit(250, "lb"),
  26441. name: "Front",
  26442. image: {
  26443. source: "./media/characters/tala-grovehorn/front.svg",
  26444. extra: 2636 / 2525,
  26445. bottom: 147 / 2781
  26446. }
  26447. },
  26448. back: {
  26449. height: math.unit(7 + 7 / 12, "feet"),
  26450. weight: math.unit(250, "lb"),
  26451. name: "Back",
  26452. image: {
  26453. source: "./media/characters/tala-grovehorn/back.svg",
  26454. extra: 2635 / 2539,
  26455. bottom: 100 / 2732.8
  26456. }
  26457. },
  26458. mouth: {
  26459. height: math.unit(1.15, "feet"),
  26460. name: "Mouth",
  26461. image: {
  26462. source: "./media/characters/tala-grovehorn/mouth.svg"
  26463. }
  26464. },
  26465. dick: {
  26466. height: math.unit(2.36, "feet"),
  26467. name: "Dick",
  26468. image: {
  26469. source: "./media/characters/tala-grovehorn/dick.svg"
  26470. }
  26471. },
  26472. slit: {
  26473. height: math.unit(0.61, "feet"),
  26474. name: "Slit",
  26475. image: {
  26476. source: "./media/characters/tala-grovehorn/slit.svg"
  26477. }
  26478. },
  26479. },
  26480. [
  26481. ]
  26482. ))
  26483. characterMakers.push(() => makeCharacter(
  26484. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26485. {
  26486. front: {
  26487. height: math.unit(7 + 7 / 12, "feet"),
  26488. weight: math.unit(225, "lb"),
  26489. name: "Front",
  26490. image: {
  26491. source: "./media/characters/epona/front.svg",
  26492. extra: 2445 / 2290,
  26493. bottom: 251 / 2696
  26494. }
  26495. },
  26496. back: {
  26497. height: math.unit(7 + 7 / 12, "feet"),
  26498. weight: math.unit(225, "lb"),
  26499. name: "Back",
  26500. image: {
  26501. source: "./media/characters/epona/back.svg",
  26502. extra: 2546 / 2408,
  26503. bottom: 44 / 2589
  26504. }
  26505. },
  26506. genitals: {
  26507. height: math.unit(1.5, "feet"),
  26508. name: "Genitals",
  26509. image: {
  26510. source: "./media/characters/epona/genitals.svg"
  26511. }
  26512. },
  26513. },
  26514. [
  26515. {
  26516. name: "Normal",
  26517. height: math.unit(7 + 7 / 12, "feet"),
  26518. default: true
  26519. },
  26520. ]
  26521. ))
  26522. characterMakers.push(() => makeCharacter(
  26523. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26524. {
  26525. front: {
  26526. height: math.unit(7, "feet"),
  26527. weight: math.unit(518, "lb"),
  26528. name: "Front",
  26529. image: {
  26530. source: "./media/characters/avia-bloodbourn/front.svg",
  26531. extra: 1466 / 1350,
  26532. bottom: 65 / 1527
  26533. }
  26534. },
  26535. },
  26536. [
  26537. ]
  26538. ))
  26539. characterMakers.push(() => makeCharacter(
  26540. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26541. {
  26542. front: {
  26543. height: math.unit(9.35, "feet"),
  26544. weight: math.unit(600, "lb"),
  26545. name: "Front",
  26546. image: {
  26547. source: "./media/characters/amera/front.svg",
  26548. extra: 891 / 818,
  26549. bottom: 30 / 922.7
  26550. }
  26551. },
  26552. back: {
  26553. height: math.unit(9.35, "feet"),
  26554. weight: math.unit(600, "lb"),
  26555. name: "Back",
  26556. image: {
  26557. source: "./media/characters/amera/back.svg",
  26558. extra: 876 / 824,
  26559. bottom: 6.8 / 884
  26560. }
  26561. },
  26562. dick: {
  26563. height: math.unit(2.14, "feet"),
  26564. name: "Dick",
  26565. image: {
  26566. source: "./media/characters/amera/dick.svg"
  26567. }
  26568. },
  26569. },
  26570. [
  26571. {
  26572. name: "Normal",
  26573. height: math.unit(9.35, "feet"),
  26574. default: true
  26575. },
  26576. ]
  26577. ))
  26578. characterMakers.push(() => makeCharacter(
  26579. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26580. {
  26581. kneeling: {
  26582. height: math.unit(3 + 4 / 12, "feet"),
  26583. weight: math.unit(90, "lb"),
  26584. name: "Kneeling",
  26585. image: {
  26586. source: "./media/characters/rosewen/kneeling.svg",
  26587. extra: 1835 / 1571,
  26588. bottom: 27.7 / 1862
  26589. }
  26590. },
  26591. },
  26592. [
  26593. {
  26594. name: "Normal",
  26595. height: math.unit(3 + 4 / 12, "feet"),
  26596. default: true
  26597. },
  26598. ]
  26599. ))
  26600. characterMakers.push(() => makeCharacter(
  26601. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26602. {
  26603. front: {
  26604. height: math.unit(5 + 10 / 12, "feet"),
  26605. weight: math.unit(200, "lb"),
  26606. name: "Front",
  26607. image: {
  26608. source: "./media/characters/sabah/front.svg",
  26609. extra: 849 / 763,
  26610. bottom: 33.9 / 881
  26611. }
  26612. },
  26613. },
  26614. [
  26615. {
  26616. name: "Normal",
  26617. height: math.unit(5 + 10 / 12, "feet"),
  26618. default: true
  26619. },
  26620. ]
  26621. ))
  26622. characterMakers.push(() => makeCharacter(
  26623. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26624. {
  26625. front: {
  26626. height: math.unit(3 + 5 / 12, "feet"),
  26627. weight: math.unit(40, "kg"),
  26628. name: "Front",
  26629. image: {
  26630. source: "./media/characters/purple-flame/front.svg",
  26631. extra: 1577 / 1412,
  26632. bottom: 97 / 1694
  26633. }
  26634. },
  26635. frontDressed: {
  26636. height: math.unit(3 + 5 / 12, "feet"),
  26637. weight: math.unit(40, "kg"),
  26638. name: "Front (Dressed)",
  26639. image: {
  26640. source: "./media/characters/purple-flame/front-dressed.svg",
  26641. extra: 1577 / 1412,
  26642. bottom: 97 / 1694
  26643. }
  26644. },
  26645. headphones: {
  26646. height: math.unit(0.85, "feet"),
  26647. name: "Headphones",
  26648. image: {
  26649. source: "./media/characters/purple-flame/headphones.svg"
  26650. }
  26651. },
  26652. },
  26653. [
  26654. {
  26655. name: "Really Small",
  26656. height: math.unit(5, "cm")
  26657. },
  26658. {
  26659. name: "Micro",
  26660. height: math.unit(1 + 5 / 12, "feet")
  26661. },
  26662. {
  26663. name: "Normal",
  26664. height: math.unit(3 + 5 / 12, "feet"),
  26665. default: true
  26666. },
  26667. {
  26668. name: "Minimacro",
  26669. height: math.unit(125, "feet")
  26670. },
  26671. {
  26672. name: "Macro",
  26673. height: math.unit(0.5, "miles")
  26674. },
  26675. {
  26676. name: "Megamacro",
  26677. height: math.unit(50, "miles")
  26678. },
  26679. {
  26680. name: "Gigantic",
  26681. height: math.unit(750, "miles")
  26682. },
  26683. {
  26684. name: "Planetary",
  26685. height: math.unit(15000, "miles")
  26686. },
  26687. ]
  26688. ))
  26689. characterMakers.push(() => makeCharacter(
  26690. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26691. {
  26692. front: {
  26693. height: math.unit(14, "feet"),
  26694. weight: math.unit(959, "lb"),
  26695. name: "Front",
  26696. image: {
  26697. source: "./media/characters/arsenal/front.svg",
  26698. extra: 2357 / 2157,
  26699. bottom: 93 / 2458
  26700. }
  26701. },
  26702. },
  26703. [
  26704. {
  26705. name: "Normal",
  26706. height: math.unit(14, "feet"),
  26707. default: true
  26708. },
  26709. ]
  26710. ))
  26711. characterMakers.push(() => makeCharacter(
  26712. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26713. {
  26714. front: {
  26715. height: math.unit(6, "feet"),
  26716. weight: math.unit(150, "lb"),
  26717. name: "Front",
  26718. image: {
  26719. source: "./media/characters/adira/front.svg",
  26720. extra: 1078 / 1029,
  26721. bottom: 87 / 1166
  26722. }
  26723. },
  26724. },
  26725. [
  26726. {
  26727. name: "Micro",
  26728. height: math.unit(4, "inches"),
  26729. default: true
  26730. },
  26731. {
  26732. name: "Macro",
  26733. height: math.unit(50, "feet")
  26734. },
  26735. ]
  26736. ))
  26737. characterMakers.push(() => makeCharacter(
  26738. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26739. {
  26740. front: {
  26741. height: math.unit(16, "feet"),
  26742. weight: math.unit(1000, "lb"),
  26743. name: "Front",
  26744. image: {
  26745. source: "./media/characters/grim/front.svg",
  26746. extra: 622 / 614,
  26747. bottom: 18.1 / 642
  26748. }
  26749. },
  26750. back: {
  26751. height: math.unit(16, "feet"),
  26752. weight: math.unit(1000, "lb"),
  26753. name: "Back",
  26754. image: {
  26755. source: "./media/characters/grim/back.svg",
  26756. extra: 610.6 / 602,
  26757. bottom: 40.8 / 652
  26758. }
  26759. },
  26760. hunched: {
  26761. height: math.unit(9.75, "feet"),
  26762. weight: math.unit(1000, "lb"),
  26763. name: "Hunched",
  26764. image: {
  26765. source: "./media/characters/grim/hunched.svg",
  26766. extra: 304 / 297,
  26767. bottom: 35.4 / 394
  26768. }
  26769. },
  26770. },
  26771. [
  26772. {
  26773. name: "Normal",
  26774. height: math.unit(16, "feet"),
  26775. default: true
  26776. },
  26777. ]
  26778. ))
  26779. characterMakers.push(() => makeCharacter(
  26780. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26781. {
  26782. front: {
  26783. height: math.unit(2.3, "meters"),
  26784. weight: math.unit(300, "lb"),
  26785. name: "Front",
  26786. image: {
  26787. source: "./media/characters/sinja/front-sfw.svg",
  26788. extra: 1393 / 1294,
  26789. bottom: 70 / 1463
  26790. }
  26791. },
  26792. frontNsfw: {
  26793. height: math.unit(2.3, "meters"),
  26794. weight: math.unit(300, "lb"),
  26795. name: "Front (NSFW)",
  26796. image: {
  26797. source: "./media/characters/sinja/front-nsfw.svg",
  26798. extra: 1393 / 1294,
  26799. bottom: 70 / 1463
  26800. }
  26801. },
  26802. back: {
  26803. height: math.unit(2.3, "meters"),
  26804. weight: math.unit(300, "lb"),
  26805. name: "Back",
  26806. image: {
  26807. source: "./media/characters/sinja/back.svg",
  26808. extra: 1393 / 1294,
  26809. bottom: 70 / 1463
  26810. }
  26811. },
  26812. head: {
  26813. height: math.unit(1.771, "feet"),
  26814. name: "Head",
  26815. image: {
  26816. source: "./media/characters/sinja/head.svg"
  26817. }
  26818. },
  26819. slit: {
  26820. height: math.unit(0.8, "feet"),
  26821. name: "Slit",
  26822. image: {
  26823. source: "./media/characters/sinja/slit.svg"
  26824. }
  26825. },
  26826. },
  26827. [
  26828. {
  26829. name: "Normal",
  26830. height: math.unit(2.3, "meters")
  26831. },
  26832. {
  26833. name: "Macro",
  26834. height: math.unit(91, "meters"),
  26835. default: true
  26836. },
  26837. {
  26838. name: "Megamacro",
  26839. height: math.unit(91440, "meters")
  26840. },
  26841. {
  26842. name: "Gigamacro",
  26843. height: math.unit(60960000, "meters")
  26844. },
  26845. {
  26846. name: "Teramacro",
  26847. height: math.unit(9144000000, "meters")
  26848. },
  26849. ]
  26850. ))
  26851. characterMakers.push(() => makeCharacter(
  26852. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26853. {
  26854. front: {
  26855. height: math.unit(1.7, "meters"),
  26856. weight: math.unit(130, "lb"),
  26857. name: "Front",
  26858. image: {
  26859. source: "./media/characters/kyu/front.svg",
  26860. extra: 415 / 395,
  26861. bottom: 5 / 420
  26862. }
  26863. },
  26864. head: {
  26865. height: math.unit(1.75, "feet"),
  26866. name: "Head",
  26867. image: {
  26868. source: "./media/characters/kyu/head.svg"
  26869. }
  26870. },
  26871. foot: {
  26872. height: math.unit(0.81, "feet"),
  26873. name: "Foot",
  26874. image: {
  26875. source: "./media/characters/kyu/foot.svg"
  26876. }
  26877. },
  26878. },
  26879. [
  26880. {
  26881. name: "Normal",
  26882. height: math.unit(1.7, "meters")
  26883. },
  26884. {
  26885. name: "Macro",
  26886. height: math.unit(131, "feet"),
  26887. default: true
  26888. },
  26889. {
  26890. name: "Megamacro",
  26891. height: math.unit(91440, "meters")
  26892. },
  26893. {
  26894. name: "Gigamacro",
  26895. height: math.unit(60960000, "meters")
  26896. },
  26897. {
  26898. name: "Teramacro",
  26899. height: math.unit(9144000000, "meters")
  26900. },
  26901. ]
  26902. ))
  26903. characterMakers.push(() => makeCharacter(
  26904. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26905. {
  26906. front: {
  26907. height: math.unit(7 + 1 / 12, "feet"),
  26908. weight: math.unit(250, "lb"),
  26909. name: "Front",
  26910. image: {
  26911. source: "./media/characters/joey/front.svg",
  26912. extra: 1791 / 1537,
  26913. bottom: 28 / 1816
  26914. }
  26915. },
  26916. },
  26917. [
  26918. {
  26919. name: "Micro",
  26920. height: math.unit(3, "inches")
  26921. },
  26922. {
  26923. name: "Normal",
  26924. height: math.unit(7 + 1 / 12, "feet"),
  26925. default: true
  26926. },
  26927. ]
  26928. ))
  26929. characterMakers.push(() => makeCharacter(
  26930. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26931. {
  26932. front: {
  26933. height: math.unit(165, "cm"),
  26934. weight: math.unit(140, "lb"),
  26935. name: "Front",
  26936. image: {
  26937. source: "./media/characters/sam-evans/front.svg",
  26938. extra: 3417 / 3230,
  26939. bottom: 41.3 / 3417
  26940. }
  26941. },
  26942. frontSixTails: {
  26943. height: math.unit(165, "cm"),
  26944. weight: math.unit(140, "lb"),
  26945. name: "Front-six-tails",
  26946. image: {
  26947. source: "./media/characters/sam-evans/front-six-tails.svg",
  26948. extra: 3417 / 3230,
  26949. bottom: 41.3 / 3417
  26950. }
  26951. },
  26952. back: {
  26953. height: math.unit(165, "cm"),
  26954. weight: math.unit(140, "lb"),
  26955. name: "Back",
  26956. image: {
  26957. source: "./media/characters/sam-evans/back.svg",
  26958. extra: 3227 / 3032,
  26959. bottom: 6.8 / 3234
  26960. }
  26961. },
  26962. face: {
  26963. height: math.unit(0.68, "feet"),
  26964. name: "Face",
  26965. image: {
  26966. source: "./media/characters/sam-evans/face.svg"
  26967. }
  26968. },
  26969. },
  26970. [
  26971. {
  26972. name: "Normal",
  26973. height: math.unit(165, "cm"),
  26974. default: true
  26975. },
  26976. {
  26977. name: "Macro",
  26978. height: math.unit(100, "meters")
  26979. },
  26980. {
  26981. name: "Macro+",
  26982. height: math.unit(800, "meters")
  26983. },
  26984. {
  26985. name: "Macro++",
  26986. height: math.unit(3, "km")
  26987. },
  26988. {
  26989. name: "Macro+++",
  26990. height: math.unit(30, "km")
  26991. },
  26992. ]
  26993. ))
  26994. characterMakers.push(() => makeCharacter(
  26995. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26996. {
  26997. front: {
  26998. height: math.unit(10, "feet"),
  26999. weight: math.unit(750, "lb"),
  27000. name: "Front",
  27001. image: {
  27002. source: "./media/characters/juliet-a/front.svg",
  27003. extra: 1766 / 1720,
  27004. bottom: 43 / 1809
  27005. }
  27006. },
  27007. back: {
  27008. height: math.unit(10, "feet"),
  27009. weight: math.unit(750, "lb"),
  27010. name: "Back",
  27011. image: {
  27012. source: "./media/characters/juliet-a/back.svg",
  27013. extra: 1781 / 1734,
  27014. bottom: 35 / 1810,
  27015. }
  27016. },
  27017. },
  27018. [
  27019. {
  27020. name: "Normal",
  27021. height: math.unit(10, "feet"),
  27022. default: true
  27023. },
  27024. {
  27025. name: "Dragon Form",
  27026. height: math.unit(250, "feet")
  27027. },
  27028. {
  27029. name: "Macro",
  27030. height: math.unit(1000, "feet")
  27031. },
  27032. {
  27033. name: "Megamacro",
  27034. height: math.unit(10000, "feet")
  27035. }
  27036. ]
  27037. ))
  27038. characterMakers.push(() => makeCharacter(
  27039. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27040. {
  27041. regular: {
  27042. height: math.unit(7 + 3 / 12, "feet"),
  27043. weight: math.unit(260, "lb"),
  27044. name: "Regular",
  27045. image: {
  27046. source: "./media/characters/wild/regular.svg",
  27047. extra: 97.45 / 92,
  27048. bottom: 6.8 / 104.3
  27049. }
  27050. },
  27051. biggums: {
  27052. height: math.unit(8 + 6 / 12, "feet"),
  27053. weight: math.unit(425, "lb"),
  27054. name: "Biggums",
  27055. image: {
  27056. source: "./media/characters/wild/biggums.svg",
  27057. extra: 97.45 / 92,
  27058. bottom: 7.5 / 132.34
  27059. }
  27060. },
  27061. mawRegular: {
  27062. height: math.unit(1.24, "feet"),
  27063. name: "Maw (Regular)",
  27064. image: {
  27065. source: "./media/characters/wild/maw.svg"
  27066. }
  27067. },
  27068. mawBiggums: {
  27069. height: math.unit(1.47, "feet"),
  27070. name: "Maw (Biggums)",
  27071. image: {
  27072. source: "./media/characters/wild/maw.svg"
  27073. }
  27074. },
  27075. },
  27076. [
  27077. {
  27078. name: "Normal",
  27079. height: math.unit(7 + 3 / 12, "feet"),
  27080. default: true
  27081. },
  27082. ]
  27083. ))
  27084. characterMakers.push(() => makeCharacter(
  27085. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27086. {
  27087. front: {
  27088. height: math.unit(2.5, "meters"),
  27089. weight: math.unit(200, "kg"),
  27090. name: "Front",
  27091. image: {
  27092. source: "./media/characters/vidar/front.svg",
  27093. extra: 2994 / 2795,
  27094. bottom: 56 / 3061
  27095. }
  27096. },
  27097. back: {
  27098. height: math.unit(2.5, "meters"),
  27099. weight: math.unit(200, "kg"),
  27100. name: "Back",
  27101. image: {
  27102. source: "./media/characters/vidar/back.svg",
  27103. extra: 3131 / 2928,
  27104. bottom: 13.5 / 3141.5
  27105. }
  27106. },
  27107. feral: {
  27108. height: math.unit(2.5, "meters"),
  27109. weight: math.unit(2000, "kg"),
  27110. name: "Feral",
  27111. image: {
  27112. source: "./media/characters/vidar/feral.svg",
  27113. extra: 2790 / 1765,
  27114. bottom: 6 / 2796
  27115. }
  27116. },
  27117. },
  27118. [
  27119. {
  27120. name: "Normal",
  27121. height: math.unit(2.5, "meters"),
  27122. default: true
  27123. },
  27124. {
  27125. name: "Macro",
  27126. height: math.unit(100, "meters")
  27127. },
  27128. ]
  27129. ))
  27130. characterMakers.push(() => makeCharacter(
  27131. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27132. {
  27133. front: {
  27134. height: math.unit(5 + 9 / 12, "feet"),
  27135. weight: math.unit(120, "lb"),
  27136. name: "Front",
  27137. image: {
  27138. source: "./media/characters/ash/front.svg",
  27139. extra: 2189 / 1961,
  27140. bottom: 5.2 / 2194
  27141. }
  27142. },
  27143. },
  27144. [
  27145. {
  27146. name: "Normal",
  27147. height: math.unit(5 + 9 / 12, "feet"),
  27148. default: true
  27149. },
  27150. ]
  27151. ))
  27152. characterMakers.push(() => makeCharacter(
  27153. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27154. {
  27155. front: {
  27156. height: math.unit(9, "feet"),
  27157. weight: math.unit(10000, "lb"),
  27158. name: "Front",
  27159. image: {
  27160. source: "./media/characters/gygabite/front.svg",
  27161. bottom: 31.7 / 537.8,
  27162. extra: 505 / 370
  27163. }
  27164. },
  27165. },
  27166. [
  27167. {
  27168. name: "Normal",
  27169. height: math.unit(9, "feet"),
  27170. default: true
  27171. },
  27172. ]
  27173. ))
  27174. characterMakers.push(() => makeCharacter(
  27175. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27176. {
  27177. front: {
  27178. height: math.unit(12, "feet"),
  27179. weight: math.unit(35000, "lb"),
  27180. name: "Front",
  27181. image: {
  27182. source: "./media/characters/p0tat0/front.svg",
  27183. extra: 1065 / 921,
  27184. bottom: 55.7 / 1121.25
  27185. }
  27186. },
  27187. },
  27188. [
  27189. {
  27190. name: "Normal",
  27191. height: math.unit(12, "feet"),
  27192. default: true
  27193. },
  27194. ]
  27195. ))
  27196. characterMakers.push(() => makeCharacter(
  27197. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27198. {
  27199. side: {
  27200. height: math.unit(6.5, "feet"),
  27201. weight: math.unit(800, "lb"),
  27202. name: "Side",
  27203. image: {
  27204. source: "./media/characters/dusk/side.svg",
  27205. extra: 615 / 373,
  27206. bottom: 53 / 664
  27207. }
  27208. },
  27209. sitting: {
  27210. height: math.unit(7, "feet"),
  27211. weight: math.unit(800, "lb"),
  27212. name: "Sitting",
  27213. image: {
  27214. source: "./media/characters/dusk/sitting.svg",
  27215. extra: 753 / 425,
  27216. bottom: 33 / 774
  27217. }
  27218. },
  27219. head: {
  27220. height: math.unit(6.1, "feet"),
  27221. name: "Head",
  27222. image: {
  27223. source: "./media/characters/dusk/head.svg"
  27224. }
  27225. },
  27226. },
  27227. [
  27228. {
  27229. name: "Normal",
  27230. height: math.unit(7, "feet"),
  27231. default: true
  27232. },
  27233. ]
  27234. ))
  27235. characterMakers.push(() => makeCharacter(
  27236. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27237. {
  27238. front: {
  27239. height: math.unit(15, "feet"),
  27240. weight: math.unit(7000, "lb"),
  27241. name: "Front",
  27242. image: {
  27243. source: "./media/characters/jay-direwolf/front.svg",
  27244. extra: 1810 / 1732,
  27245. bottom: 66 / 1892
  27246. }
  27247. },
  27248. },
  27249. [
  27250. {
  27251. name: "Normal",
  27252. height: math.unit(15, "feet"),
  27253. default: true
  27254. },
  27255. ]
  27256. ))
  27257. characterMakers.push(() => makeCharacter(
  27258. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27259. {
  27260. front: {
  27261. height: math.unit(4 + 9 / 12, "feet"),
  27262. weight: math.unit(130, "lb"),
  27263. name: "Front",
  27264. image: {
  27265. source: "./media/characters/anchovie/front.svg",
  27266. extra: 382 / 350,
  27267. bottom: 25 / 409
  27268. }
  27269. },
  27270. back: {
  27271. height: math.unit(4 + 9 / 12, "feet"),
  27272. weight: math.unit(130, "lb"),
  27273. name: "Back",
  27274. image: {
  27275. source: "./media/characters/anchovie/back.svg",
  27276. extra: 385 / 352,
  27277. bottom: 16.6 / 402
  27278. }
  27279. },
  27280. frontDressed: {
  27281. height: math.unit(4 + 9 / 12, "feet"),
  27282. weight: math.unit(130, "lb"),
  27283. name: "Front (Dressed)",
  27284. image: {
  27285. source: "./media/characters/anchovie/front-dressed.svg",
  27286. extra: 382 / 350,
  27287. bottom: 25 / 409
  27288. }
  27289. },
  27290. backDressed: {
  27291. height: math.unit(4 + 9 / 12, "feet"),
  27292. weight: math.unit(130, "lb"),
  27293. name: "Back (Dressed)",
  27294. image: {
  27295. source: "./media/characters/anchovie/back-dressed.svg",
  27296. extra: 385 / 352,
  27297. bottom: 16.6 / 402
  27298. }
  27299. },
  27300. },
  27301. [
  27302. {
  27303. name: "Micro",
  27304. height: math.unit(6.4, "inches")
  27305. },
  27306. {
  27307. name: "Normal",
  27308. height: math.unit(4 + 9 / 12, "feet"),
  27309. default: true
  27310. },
  27311. ]
  27312. ))
  27313. characterMakers.push(() => makeCharacter(
  27314. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27315. {
  27316. front: {
  27317. height: math.unit(2, "meters"),
  27318. weight: math.unit(180, "lb"),
  27319. name: "Front",
  27320. image: {
  27321. source: "./media/characters/acidrenamon/front.svg",
  27322. extra: 987 / 890,
  27323. bottom: 22.8 / 1009
  27324. }
  27325. },
  27326. back: {
  27327. height: math.unit(2, "meters"),
  27328. weight: math.unit(180, "lb"),
  27329. name: "Back",
  27330. image: {
  27331. source: "./media/characters/acidrenamon/back.svg",
  27332. extra: 983 / 891,
  27333. bottom: 8.4 / 992
  27334. }
  27335. },
  27336. head: {
  27337. height: math.unit(1.92, "feet"),
  27338. name: "Head",
  27339. image: {
  27340. source: "./media/characters/acidrenamon/head.svg"
  27341. }
  27342. },
  27343. rump: {
  27344. height: math.unit(1.72, "feet"),
  27345. name: "Rump",
  27346. image: {
  27347. source: "./media/characters/acidrenamon/rump.svg"
  27348. }
  27349. },
  27350. tail: {
  27351. height: math.unit(4.2, "feet"),
  27352. name: "Tail",
  27353. image: {
  27354. source: "./media/characters/acidrenamon/tail.svg"
  27355. }
  27356. },
  27357. },
  27358. [
  27359. {
  27360. name: "Normal",
  27361. height: math.unit(2, "meters"),
  27362. default: true
  27363. },
  27364. {
  27365. name: "Minimacro",
  27366. height: math.unit(7, "meters")
  27367. },
  27368. {
  27369. name: "Macro",
  27370. height: math.unit(200, "meters")
  27371. },
  27372. {
  27373. name: "Gigamacro",
  27374. height: math.unit(0.2, "earths")
  27375. },
  27376. ]
  27377. ))
  27378. characterMakers.push(() => makeCharacter(
  27379. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27380. {
  27381. front: {
  27382. height: math.unit(6, "feet"),
  27383. weight: math.unit(150, "lb"),
  27384. name: "Front",
  27385. image: {
  27386. source: "./media/characters/kenzie-lee/front.svg",
  27387. extra: 1525 / 1465,
  27388. bottom: 45 / 1570
  27389. }
  27390. },
  27391. side: {
  27392. height: math.unit(6, "feet"),
  27393. weight: math.unit(150, "lb"),
  27394. name: "Side",
  27395. image: {
  27396. source: "./media/characters/kenzie-lee/side.svg",
  27397. extra: 5505 / 5383,
  27398. bottom: 60 / 5573
  27399. }
  27400. },
  27401. paw: {
  27402. height: math.unit(0.57, "feet"),
  27403. name: "Paw",
  27404. image: {
  27405. source: "./media/characters/kenzie-lee/paw.svg"
  27406. }
  27407. },
  27408. },
  27409. [
  27410. {
  27411. name: "Normal",
  27412. height: math.unit(152, "feet"),
  27413. default: true
  27414. },
  27415. {
  27416. name: "Megamacro",
  27417. height: math.unit(7, "miles")
  27418. },
  27419. {
  27420. name: "Gigamacro",
  27421. height: math.unit(8000, "miles")
  27422. },
  27423. ]
  27424. ))
  27425. characterMakers.push(() => makeCharacter(
  27426. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27427. {
  27428. side: {
  27429. height: math.unit(6, "feet"),
  27430. weight: math.unit(150, "lb"),
  27431. name: "Side",
  27432. image: {
  27433. source: "./media/characters/withers/side.svg",
  27434. extra: 1830 / 1728,
  27435. bottom: 96 / 1927
  27436. }
  27437. },
  27438. front: {
  27439. height: math.unit(6, "feet"),
  27440. weight: math.unit(150, "lb"),
  27441. name: "Front",
  27442. image: {
  27443. source: "./media/characters/withers/front.svg",
  27444. extra: 1514 / 1438,
  27445. bottom: 118 / 1632
  27446. }
  27447. },
  27448. },
  27449. [
  27450. {
  27451. name: "Macro",
  27452. height: math.unit(168, "feet"),
  27453. default: true
  27454. },
  27455. {
  27456. name: "Megamacro",
  27457. height: math.unit(15, "miles")
  27458. }
  27459. ]
  27460. ))
  27461. characterMakers.push(() => makeCharacter(
  27462. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27463. {
  27464. front: {
  27465. height: math.unit(6 + 7 / 12, "feet"),
  27466. weight: math.unit(250, "lb"),
  27467. name: "Front",
  27468. image: {
  27469. source: "./media/characters/nemoskii/front.svg",
  27470. extra: 2270 / 1734,
  27471. bottom: 86 / 2354
  27472. }
  27473. },
  27474. back: {
  27475. height: math.unit(6 + 7 / 12, "feet"),
  27476. weight: math.unit(250, "lb"),
  27477. name: "Back",
  27478. image: {
  27479. source: "./media/characters/nemoskii/back.svg",
  27480. extra: 1845 / 1788,
  27481. bottom: 10.5 / 1852
  27482. }
  27483. },
  27484. head: {
  27485. height: math.unit(1.31, "feet"),
  27486. name: "Head",
  27487. image: {
  27488. source: "./media/characters/nemoskii/head.svg"
  27489. }
  27490. },
  27491. },
  27492. [
  27493. {
  27494. name: "Micro",
  27495. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27496. },
  27497. {
  27498. name: "Normal",
  27499. height: math.unit(6 + 7 / 12, "feet"),
  27500. default: true
  27501. },
  27502. {
  27503. name: "Macro",
  27504. height: math.unit((6 + 7 / 12) * 150, "feet")
  27505. },
  27506. {
  27507. name: "Macro+",
  27508. height: math.unit((6 + 7 / 12) * 500, "feet")
  27509. },
  27510. {
  27511. name: "Megamacro",
  27512. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27513. },
  27514. ]
  27515. ))
  27516. characterMakers.push(() => makeCharacter(
  27517. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27518. {
  27519. front: {
  27520. height: math.unit(1, "mile"),
  27521. weight: math.unit(265261.9, "lb"),
  27522. name: "Front",
  27523. image: {
  27524. source: "./media/characters/shui/front.svg",
  27525. extra: 1633 / 1564,
  27526. bottom: 91.5 / 1726
  27527. }
  27528. },
  27529. },
  27530. [
  27531. {
  27532. name: "Macro",
  27533. height: math.unit(1, "mile"),
  27534. default: true
  27535. },
  27536. ]
  27537. ))
  27538. characterMakers.push(() => makeCharacter(
  27539. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27540. {
  27541. front: {
  27542. height: math.unit(12 + 6 / 12, "feet"),
  27543. weight: math.unit(1342, "lb"),
  27544. name: "Front",
  27545. image: {
  27546. source: "./media/characters/arokh-takakura/front.svg",
  27547. extra: 1089 / 1043,
  27548. bottom: 77.4 / 1176.7
  27549. }
  27550. },
  27551. back: {
  27552. height: math.unit(12 + 6 / 12, "feet"),
  27553. weight: math.unit(1342, "lb"),
  27554. name: "Back",
  27555. image: {
  27556. source: "./media/characters/arokh-takakura/back.svg",
  27557. extra: 1046 / 1019,
  27558. bottom: 102 / 1150
  27559. }
  27560. },
  27561. },
  27562. [
  27563. {
  27564. name: "Big",
  27565. height: math.unit(12 + 6 / 12, "feet"),
  27566. default: true
  27567. },
  27568. ]
  27569. ))
  27570. characterMakers.push(() => makeCharacter(
  27571. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27572. {
  27573. front: {
  27574. height: math.unit(5 + 6 / 12, "feet"),
  27575. weight: math.unit(150, "lb"),
  27576. name: "Front",
  27577. image: {
  27578. source: "./media/characters/theo/front.svg",
  27579. extra: 1184 / 1131,
  27580. bottom: 7.4 / 1191
  27581. }
  27582. },
  27583. },
  27584. [
  27585. {
  27586. name: "Micro",
  27587. height: math.unit(5, "inches")
  27588. },
  27589. {
  27590. name: "Normal",
  27591. height: math.unit(5 + 6 / 12, "feet"),
  27592. default: true
  27593. },
  27594. ]
  27595. ))
  27596. characterMakers.push(() => makeCharacter(
  27597. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27598. {
  27599. front: {
  27600. height: math.unit(5 + 9 / 12, "feet"),
  27601. weight: math.unit(130, "lb"),
  27602. name: "Front",
  27603. image: {
  27604. source: "./media/characters/cecelia-swift/front.svg",
  27605. extra: 502 / 484,
  27606. bottom: 23 / 523
  27607. }
  27608. },
  27609. back: {
  27610. height: math.unit(5 + 9 / 12, "feet"),
  27611. weight: math.unit(130, "lb"),
  27612. name: "Back",
  27613. image: {
  27614. source: "./media/characters/cecelia-swift/back.svg",
  27615. extra: 499 / 485,
  27616. bottom: 12 / 511
  27617. }
  27618. },
  27619. head: {
  27620. height: math.unit(0.90, "feet"),
  27621. name: "Head",
  27622. image: {
  27623. source: "./media/characters/cecelia-swift/head.svg"
  27624. }
  27625. },
  27626. rump: {
  27627. height: math.unit(1.75, "feet"),
  27628. name: "Rump",
  27629. image: {
  27630. source: "./media/characters/cecelia-swift/rump.svg"
  27631. }
  27632. },
  27633. },
  27634. [
  27635. {
  27636. name: "Normal",
  27637. height: math.unit(5 + 9 / 12, "feet"),
  27638. default: true
  27639. },
  27640. {
  27641. name: "Big",
  27642. height: math.unit(50, "feet")
  27643. },
  27644. {
  27645. name: "Macro",
  27646. height: math.unit(100, "feet")
  27647. },
  27648. {
  27649. name: "Macro+",
  27650. height: math.unit(500, "feet")
  27651. },
  27652. {
  27653. name: "Macro++",
  27654. height: math.unit(1000, "feet")
  27655. },
  27656. ]
  27657. ))
  27658. characterMakers.push(() => makeCharacter(
  27659. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27660. {
  27661. front: {
  27662. height: math.unit(6, "feet"),
  27663. weight: math.unit(150, "lb"),
  27664. name: "Front",
  27665. image: {
  27666. source: "./media/characters/kaunan/front.svg",
  27667. extra: 2890 / 2523,
  27668. bottom: 49 / 2939
  27669. }
  27670. },
  27671. },
  27672. [
  27673. {
  27674. name: "Macro",
  27675. height: math.unit(150, "feet"),
  27676. default: true
  27677. },
  27678. ]
  27679. ))
  27680. characterMakers.push(() => makeCharacter(
  27681. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27682. {
  27683. front: {
  27684. height: math.unit(175, "cm"),
  27685. weight: math.unit(60, "kg"),
  27686. name: "Front",
  27687. image: {
  27688. source: "./media/characters/fei/front.svg",
  27689. extra: 1873/1723,
  27690. bottom: 53/1926
  27691. }
  27692. },
  27693. },
  27694. [
  27695. {
  27696. name: "Mortal",
  27697. height: math.unit(175, "cm")
  27698. },
  27699. {
  27700. name: "Normal",
  27701. height: math.unit(3500, "m"),
  27702. default: true
  27703. },
  27704. {
  27705. name: "Stroll",
  27706. height: math.unit(17.5, "km")
  27707. },
  27708. {
  27709. name: "Showoff",
  27710. height: math.unit(175, "km")
  27711. },
  27712. ]
  27713. ))
  27714. characterMakers.push(() => makeCharacter(
  27715. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27716. {
  27717. front: {
  27718. height: math.unit(7, "feet"),
  27719. weight: math.unit(1000, "kg"),
  27720. name: "Front",
  27721. image: {
  27722. source: "./media/characters/edrax/front.svg",
  27723. extra: 2838 / 2550,
  27724. bottom: 130 / 2968
  27725. }
  27726. },
  27727. },
  27728. [
  27729. {
  27730. name: "Small",
  27731. height: math.unit(7, "feet")
  27732. },
  27733. {
  27734. name: "Normal",
  27735. height: math.unit(1500, "meters")
  27736. },
  27737. {
  27738. name: "Mega",
  27739. height: math.unit(12000000, "km"),
  27740. default: true
  27741. },
  27742. {
  27743. name: "Megamacro",
  27744. height: math.unit(10600000, "lightyears")
  27745. },
  27746. {
  27747. name: "Hypermacro",
  27748. height: math.unit(256, "yottameters")
  27749. },
  27750. ]
  27751. ))
  27752. characterMakers.push(() => makeCharacter(
  27753. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27754. {
  27755. front: {
  27756. height: math.unit(10, "feet"),
  27757. weight: math.unit(750, "lb"),
  27758. name: "Front",
  27759. image: {
  27760. source: "./media/characters/clove/front.svg",
  27761. extra: 2031 / 1860,
  27762. bottom: 47.8 / 2080
  27763. }
  27764. },
  27765. back: {
  27766. height: math.unit(10, "feet"),
  27767. weight: math.unit(750, "lb"),
  27768. name: "Back",
  27769. image: {
  27770. source: "./media/characters/clove/back.svg",
  27771. extra: 2025 / 1859,
  27772. bottom: 46 / 2071
  27773. }
  27774. },
  27775. },
  27776. [
  27777. {
  27778. name: "Normal",
  27779. height: math.unit(10, "feet"),
  27780. default: true
  27781. },
  27782. ]
  27783. ))
  27784. characterMakers.push(() => makeCharacter(
  27785. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27786. {
  27787. front: {
  27788. height: math.unit(4, "feet"),
  27789. weight: math.unit(50, "lb"),
  27790. name: "Front",
  27791. image: {
  27792. source: "./media/characters/alex-rabbit/front.svg",
  27793. extra: 507 / 458,
  27794. bottom: 18.5 / 527
  27795. }
  27796. },
  27797. back: {
  27798. height: math.unit(4, "feet"),
  27799. weight: math.unit(50, "lb"),
  27800. name: "Back",
  27801. image: {
  27802. source: "./media/characters/alex-rabbit/back.svg",
  27803. extra: 502 / 460,
  27804. bottom: 18.9 / 521
  27805. }
  27806. },
  27807. },
  27808. [
  27809. {
  27810. name: "Normal",
  27811. height: math.unit(4, "feet"),
  27812. default: true
  27813. },
  27814. ]
  27815. ))
  27816. characterMakers.push(() => makeCharacter(
  27817. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27818. {
  27819. front: {
  27820. height: math.unit(1 + 3 / 12, "feet"),
  27821. weight: math.unit(80, "lb"),
  27822. name: "Front",
  27823. image: {
  27824. source: "./media/characters/zander-rose/front.svg",
  27825. extra: 916 / 797,
  27826. bottom: 17 / 933
  27827. }
  27828. },
  27829. back: {
  27830. height: math.unit(1 + 3 / 12, "feet"),
  27831. weight: math.unit(80, "lb"),
  27832. name: "Back",
  27833. image: {
  27834. source: "./media/characters/zander-rose/back.svg",
  27835. extra: 903 / 779,
  27836. bottom: 31 / 934
  27837. }
  27838. },
  27839. },
  27840. [
  27841. {
  27842. name: "Normal",
  27843. height: math.unit(1 + 3 / 12, "feet"),
  27844. default: true
  27845. },
  27846. ]
  27847. ))
  27848. characterMakers.push(() => makeCharacter(
  27849. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27850. {
  27851. anthro: {
  27852. height: math.unit(6, "feet"),
  27853. weight: math.unit(150, "lb"),
  27854. name: "Anthro",
  27855. image: {
  27856. source: "./media/characters/razz/anthro.svg",
  27857. extra: 1437 / 1343,
  27858. bottom: 48 / 1485
  27859. }
  27860. },
  27861. feral: {
  27862. height: math.unit(6, "feet"),
  27863. weight: math.unit(150, "lb"),
  27864. name: "Feral",
  27865. image: {
  27866. source: "./media/characters/razz/feral.svg",
  27867. extra: 2569 / 1385,
  27868. bottom: 95 / 2664
  27869. }
  27870. },
  27871. },
  27872. [
  27873. {
  27874. name: "Normal",
  27875. height: math.unit(6, "feet"),
  27876. default: true
  27877. },
  27878. ]
  27879. ))
  27880. characterMakers.push(() => makeCharacter(
  27881. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27882. {
  27883. front: {
  27884. height: math.unit(9 + 4 / 12, "feet"),
  27885. weight: math.unit(500, "lb"),
  27886. name: "Front",
  27887. image: {
  27888. source: "./media/characters/morrigan/front.svg",
  27889. extra: 2707 / 2579,
  27890. bottom: 156 / 2863
  27891. }
  27892. },
  27893. },
  27894. [
  27895. {
  27896. name: "Normal",
  27897. height: math.unit(9 + 4 / 12, "feet"),
  27898. default: true
  27899. },
  27900. ]
  27901. ))
  27902. characterMakers.push(() => makeCharacter(
  27903. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27904. {
  27905. front: {
  27906. height: math.unit(5, "stories"),
  27907. weight: math.unit(4000, "lb"),
  27908. name: "Front",
  27909. image: {
  27910. source: "./media/characters/jenene/front.svg",
  27911. extra: 1780 / 1710,
  27912. bottom: 57 / 1837
  27913. }
  27914. },
  27915. },
  27916. [
  27917. {
  27918. name: "Normal",
  27919. height: math.unit(5, "stories"),
  27920. default: true
  27921. },
  27922. ]
  27923. ))
  27924. characterMakers.push(() => makeCharacter(
  27925. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27926. {
  27927. taurSfw: {
  27928. height: math.unit(10, "meters"),
  27929. weight: math.unit(17500, "kg"),
  27930. name: "Taur",
  27931. image: {
  27932. source: "./media/characters/faey/taur-sfw.svg",
  27933. extra: 1200 / 968,
  27934. bottom: 41 / 1241
  27935. }
  27936. },
  27937. chestmaw: {
  27938. height: math.unit(2.01, "meters"),
  27939. name: "Chestmaw",
  27940. image: {
  27941. source: "./media/characters/faey/chestmaw.svg"
  27942. }
  27943. },
  27944. foot: {
  27945. height: math.unit(2.43, "meters"),
  27946. name: "Foot",
  27947. image: {
  27948. source: "./media/characters/faey/foot.svg"
  27949. }
  27950. },
  27951. jaws: {
  27952. height: math.unit(1.66, "meters"),
  27953. name: "Jaws",
  27954. image: {
  27955. source: "./media/characters/faey/jaws.svg"
  27956. }
  27957. },
  27958. tongues: {
  27959. height: math.unit(2.01, "meters"),
  27960. name: "Tongues",
  27961. image: {
  27962. source: "./media/characters/faey/tongues.svg"
  27963. }
  27964. },
  27965. },
  27966. [
  27967. {
  27968. name: "Small",
  27969. height: math.unit(10, "meters"),
  27970. default: true
  27971. },
  27972. {
  27973. name: "Big",
  27974. height: math.unit(500000, "km")
  27975. },
  27976. ]
  27977. ))
  27978. characterMakers.push(() => makeCharacter(
  27979. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27980. {
  27981. front: {
  27982. height: math.unit(7, "feet"),
  27983. weight: math.unit(275, "lb"),
  27984. name: "Front",
  27985. image: {
  27986. source: "./media/characters/roku/front.svg",
  27987. extra: 903 / 878,
  27988. bottom: 37 / 940
  27989. }
  27990. },
  27991. },
  27992. [
  27993. {
  27994. name: "Normal",
  27995. height: math.unit(7, "feet"),
  27996. default: true
  27997. },
  27998. {
  27999. name: "Macro",
  28000. height: math.unit(500, "feet")
  28001. },
  28002. {
  28003. name: "Megamacro",
  28004. height: math.unit(200, "miles")
  28005. },
  28006. ]
  28007. ))
  28008. characterMakers.push(() => makeCharacter(
  28009. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28010. {
  28011. front: {
  28012. height: math.unit(6 + 2 / 12, "feet"),
  28013. weight: math.unit(150, "lb"),
  28014. name: "Front",
  28015. image: {
  28016. source: "./media/characters/lira/front.svg",
  28017. extra: 1727 / 1605,
  28018. bottom: 26 / 1753
  28019. }
  28020. },
  28021. back: {
  28022. height: math.unit(6 + 2 / 12, "feet"),
  28023. weight: math.unit(150, "lb"),
  28024. name: "Back",
  28025. image: {
  28026. source: "./media/characters/lira/back.svg",
  28027. extra: 1713/1621,
  28028. bottom: 20/1733
  28029. }
  28030. },
  28031. hand: {
  28032. height: math.unit(0.75, "feet"),
  28033. name: "Hand",
  28034. image: {
  28035. source: "./media/characters/lira/hand.svg"
  28036. }
  28037. },
  28038. maw: {
  28039. height: math.unit(0.65, "feet"),
  28040. name: "Maw",
  28041. image: {
  28042. source: "./media/characters/lira/maw.svg"
  28043. }
  28044. },
  28045. pawDigi: {
  28046. height: math.unit(1.6, "feet"),
  28047. name: "Paw Digi",
  28048. image: {
  28049. source: "./media/characters/lira/paw-digi.svg"
  28050. }
  28051. },
  28052. pawPlanti: {
  28053. height: math.unit(1.4, "feet"),
  28054. name: "Paw Planti",
  28055. image: {
  28056. source: "./media/characters/lira/paw-planti.svg"
  28057. }
  28058. },
  28059. },
  28060. [
  28061. {
  28062. name: "Normal",
  28063. height: math.unit(6 + 2 / 12, "feet"),
  28064. default: true
  28065. },
  28066. {
  28067. name: "Macro",
  28068. height: math.unit(100, "feet")
  28069. },
  28070. {
  28071. name: "Macro²",
  28072. height: math.unit(1600, "feet")
  28073. },
  28074. {
  28075. name: "Planetary",
  28076. height: math.unit(20, "earths")
  28077. },
  28078. ]
  28079. ))
  28080. characterMakers.push(() => makeCharacter(
  28081. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28082. {
  28083. front: {
  28084. height: math.unit(6, "feet"),
  28085. weight: math.unit(150, "lb"),
  28086. name: "Front",
  28087. image: {
  28088. source: "./media/characters/hadjet/front.svg",
  28089. extra: 1480 / 1346,
  28090. bottom: 26 / 1506
  28091. }
  28092. },
  28093. frontNsfw: {
  28094. height: math.unit(6, "feet"),
  28095. weight: math.unit(150, "lb"),
  28096. name: "Front (NSFW)",
  28097. image: {
  28098. source: "./media/characters/hadjet/front-nsfw.svg",
  28099. extra: 1440 / 1358,
  28100. bottom: 52 / 1492
  28101. }
  28102. },
  28103. },
  28104. [
  28105. {
  28106. name: "Macro",
  28107. height: math.unit(10, "stories"),
  28108. default: true
  28109. },
  28110. {
  28111. name: "Megamacro",
  28112. height: math.unit(1.5, "miles")
  28113. },
  28114. {
  28115. name: "Megamacro+",
  28116. height: math.unit(5, "miles")
  28117. },
  28118. ]
  28119. ))
  28120. characterMakers.push(() => makeCharacter(
  28121. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28122. {
  28123. side: {
  28124. height: math.unit(106, "feet"),
  28125. weight: math.unit(500, "tonnes"),
  28126. name: "Side",
  28127. image: {
  28128. source: "./media/characters/kodran/side.svg",
  28129. extra: 553 / 480,
  28130. bottom: 33 / 586
  28131. }
  28132. },
  28133. front: {
  28134. height: math.unit(132, "feet"),
  28135. weight: math.unit(500, "tonnes"),
  28136. name: "Front",
  28137. image: {
  28138. source: "./media/characters/kodran/front.svg",
  28139. extra: 667 / 643,
  28140. bottom: 42 / 709
  28141. }
  28142. },
  28143. flying: {
  28144. height: math.unit(350, "feet"),
  28145. weight: math.unit(500, "tonnes"),
  28146. name: "Flying",
  28147. image: {
  28148. source: "./media/characters/kodran/flying.svg"
  28149. }
  28150. },
  28151. foot: {
  28152. height: math.unit(33, "feet"),
  28153. name: "Foot",
  28154. image: {
  28155. source: "./media/characters/kodran/foot.svg"
  28156. }
  28157. },
  28158. footFront: {
  28159. height: math.unit(19, "feet"),
  28160. name: "Foot (Front)",
  28161. image: {
  28162. source: "./media/characters/kodran/foot-front.svg",
  28163. extra: 261 / 261,
  28164. bottom: 91 / 352
  28165. }
  28166. },
  28167. headFront: {
  28168. height: math.unit(53, "feet"),
  28169. name: "Head (Front)",
  28170. image: {
  28171. source: "./media/characters/kodran/head-front.svg"
  28172. }
  28173. },
  28174. headSide: {
  28175. height: math.unit(65, "feet"),
  28176. name: "Head (Side)",
  28177. image: {
  28178. source: "./media/characters/kodran/head-side.svg"
  28179. }
  28180. },
  28181. throat: {
  28182. height: math.unit(79, "feet"),
  28183. name: "Throat",
  28184. image: {
  28185. source: "./media/characters/kodran/throat.svg"
  28186. }
  28187. },
  28188. },
  28189. [
  28190. {
  28191. name: "Large",
  28192. height: math.unit(106, "feet"),
  28193. default: true
  28194. },
  28195. ]
  28196. ))
  28197. characterMakers.push(() => makeCharacter(
  28198. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28199. {
  28200. side: {
  28201. height: math.unit(11, "feet"),
  28202. weight: math.unit(150, "lb"),
  28203. name: "Side",
  28204. image: {
  28205. source: "./media/characters/pyxaron/side.svg",
  28206. extra: 305 / 195,
  28207. bottom: 17 / 322
  28208. }
  28209. },
  28210. },
  28211. [
  28212. {
  28213. name: "Normal",
  28214. height: math.unit(11, "feet"),
  28215. default: true
  28216. },
  28217. ]
  28218. ))
  28219. characterMakers.push(() => makeCharacter(
  28220. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28221. {
  28222. front: {
  28223. height: math.unit(6, "feet"),
  28224. weight: math.unit(150, "lb"),
  28225. name: "Front",
  28226. image: {
  28227. source: "./media/characters/meep/front.svg",
  28228. extra: 88 / 80,
  28229. bottom: 6 / 94
  28230. }
  28231. },
  28232. },
  28233. [
  28234. {
  28235. name: "Fun Sized",
  28236. height: math.unit(2, "inches"),
  28237. default: true
  28238. },
  28239. {
  28240. name: "Friend Sized",
  28241. height: math.unit(8, "inches")
  28242. },
  28243. ]
  28244. ))
  28245. characterMakers.push(() => makeCharacter(
  28246. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28247. {
  28248. front: {
  28249. height: math.unit(15, "feet"),
  28250. weight: math.unit(2500, "lb"),
  28251. name: "Front",
  28252. image: {
  28253. source: "./media/characters/holly-rabbit/front.svg",
  28254. extra: 1433 / 1233,
  28255. bottom: 125 / 1558
  28256. }
  28257. },
  28258. dick: {
  28259. height: math.unit(4.6, "feet"),
  28260. name: "Dick",
  28261. image: {
  28262. source: "./media/characters/holly-rabbit/dick.svg"
  28263. }
  28264. },
  28265. },
  28266. [
  28267. {
  28268. name: "Normal",
  28269. height: math.unit(15, "feet"),
  28270. default: true
  28271. },
  28272. {
  28273. name: "Macro",
  28274. height: math.unit(250, "feet")
  28275. },
  28276. {
  28277. name: "Macro+",
  28278. height: math.unit(2500, "feet")
  28279. },
  28280. ]
  28281. ))
  28282. characterMakers.push(() => makeCharacter(
  28283. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28284. {
  28285. front: {
  28286. height: math.unit(3.02, "meters"),
  28287. weight: math.unit(500, "kg"),
  28288. name: "Front",
  28289. image: {
  28290. source: "./media/characters/drena/front.svg",
  28291. extra: 282 / 243,
  28292. bottom: 8 / 290
  28293. }
  28294. },
  28295. side: {
  28296. height: math.unit(3.02, "meters"),
  28297. weight: math.unit(500, "kg"),
  28298. name: "Side",
  28299. image: {
  28300. source: "./media/characters/drena/side.svg",
  28301. extra: 280 / 245,
  28302. bottom: 10 / 290
  28303. }
  28304. },
  28305. back: {
  28306. height: math.unit(3.02, "meters"),
  28307. weight: math.unit(500, "kg"),
  28308. name: "Back",
  28309. image: {
  28310. source: "./media/characters/drena/back.svg",
  28311. extra: 278 / 243,
  28312. bottom: 2 / 280
  28313. }
  28314. },
  28315. foot: {
  28316. height: math.unit(0.75, "meters"),
  28317. name: "Foot",
  28318. image: {
  28319. source: "./media/characters/drena/foot.svg"
  28320. }
  28321. },
  28322. maw: {
  28323. height: math.unit(0.82, "meters"),
  28324. name: "Maw",
  28325. image: {
  28326. source: "./media/characters/drena/maw.svg"
  28327. }
  28328. },
  28329. rump: {
  28330. height: math.unit(0.93, "meters"),
  28331. name: "Rump",
  28332. image: {
  28333. source: "./media/characters/drena/rump.svg"
  28334. }
  28335. },
  28336. },
  28337. [
  28338. {
  28339. name: "Normal",
  28340. height: math.unit(3.02, "meters"),
  28341. default: true
  28342. },
  28343. ]
  28344. ))
  28345. characterMakers.push(() => makeCharacter(
  28346. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28347. {
  28348. front: {
  28349. height: math.unit(6 + 4 / 12, "feet"),
  28350. weight: math.unit(250, "lb"),
  28351. name: "Front",
  28352. image: {
  28353. source: "./media/characters/remmyzilla/front.svg",
  28354. extra: 4033 / 3588,
  28355. bottom: 123 / 4156
  28356. }
  28357. },
  28358. back: {
  28359. height: math.unit(6 + 4 / 12, "feet"),
  28360. weight: math.unit(250, "lb"),
  28361. name: "Back",
  28362. image: {
  28363. source: "./media/characters/remmyzilla/back.svg",
  28364. extra: 2687 / 2555,
  28365. bottom: 48 / 2735
  28366. }
  28367. },
  28368. paw: {
  28369. height: math.unit(1.73, "feet"),
  28370. name: "Paw",
  28371. image: {
  28372. source: "./media/characters/remmyzilla/paw.svg"
  28373. }
  28374. },
  28375. maw: {
  28376. height: math.unit(1.73, "feet"),
  28377. name: "Maw",
  28378. image: {
  28379. source: "./media/characters/remmyzilla/maw.svg"
  28380. }
  28381. },
  28382. },
  28383. [
  28384. {
  28385. name: "Normal",
  28386. height: math.unit(6 + 4 / 12, "feet")
  28387. },
  28388. {
  28389. name: "Minimacro",
  28390. height: math.unit(12 + 8 / 12, "feet")
  28391. },
  28392. {
  28393. name: "Normal",
  28394. height: math.unit(640, "feet"),
  28395. default: true
  28396. },
  28397. {
  28398. name: "Megamacro",
  28399. height: math.unit(6400, "feet")
  28400. },
  28401. {
  28402. name: "Gigamacro",
  28403. height: math.unit(64000, "miles")
  28404. },
  28405. ]
  28406. ))
  28407. characterMakers.push(() => makeCharacter(
  28408. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28409. {
  28410. front: {
  28411. height: math.unit(2.5, "meters"),
  28412. weight: math.unit(300, "lb"),
  28413. name: "Front",
  28414. image: {
  28415. source: "./media/characters/lawrence/front.svg",
  28416. extra: 357 / 335,
  28417. bottom: 30 / 387
  28418. }
  28419. },
  28420. back: {
  28421. height: math.unit(2.5, "meters"),
  28422. weight: math.unit(300, "lb"),
  28423. name: "Back",
  28424. image: {
  28425. source: "./media/characters/lawrence/back.svg",
  28426. extra: 357 / 338,
  28427. bottom: 16 / 373
  28428. }
  28429. },
  28430. head: {
  28431. height: math.unit(0.9, "meter"),
  28432. name: "Head",
  28433. image: {
  28434. source: "./media/characters/lawrence/head.svg"
  28435. }
  28436. },
  28437. maw: {
  28438. height: math.unit(0.7, "meter"),
  28439. name: "Maw",
  28440. image: {
  28441. source: "./media/characters/lawrence/maw.svg"
  28442. }
  28443. },
  28444. footBottom: {
  28445. height: math.unit(0.5, "meter"),
  28446. name: "Foot (Bottom)",
  28447. image: {
  28448. source: "./media/characters/lawrence/foot-bottom.svg"
  28449. }
  28450. },
  28451. footTop: {
  28452. height: math.unit(0.5, "meter"),
  28453. name: "Foot (Top)",
  28454. image: {
  28455. source: "./media/characters/lawrence/foot-top.svg"
  28456. }
  28457. },
  28458. },
  28459. [
  28460. {
  28461. name: "Normal",
  28462. height: math.unit(2.5, "meters"),
  28463. default: true
  28464. },
  28465. {
  28466. name: "Macro",
  28467. height: math.unit(95, "meters")
  28468. },
  28469. {
  28470. name: "Megamacro",
  28471. height: math.unit(150, "km")
  28472. },
  28473. ]
  28474. ))
  28475. characterMakers.push(() => makeCharacter(
  28476. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28477. {
  28478. front: {
  28479. height: math.unit(4.2, "meters"),
  28480. name: "Front",
  28481. image: {
  28482. source: "./media/characters/sydney/front.svg",
  28483. extra: 1323 / 1277,
  28484. bottom: 111 / 1434
  28485. }
  28486. },
  28487. },
  28488. [
  28489. {
  28490. name: "Normal",
  28491. height: math.unit(4.2, "meters"),
  28492. default: true
  28493. },
  28494. ]
  28495. ))
  28496. characterMakers.push(() => makeCharacter(
  28497. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28498. {
  28499. back: {
  28500. height: math.unit(201, "feet"),
  28501. name: "Back",
  28502. image: {
  28503. source: "./media/characters/jessica/back.svg",
  28504. extra: 273 / 259,
  28505. bottom: 7 / 280
  28506. }
  28507. },
  28508. },
  28509. [
  28510. {
  28511. name: "Normal",
  28512. height: math.unit(201, "feet"),
  28513. default: true
  28514. },
  28515. {
  28516. name: "Megamacro",
  28517. height: math.unit(8, "miles")
  28518. },
  28519. ]
  28520. ))
  28521. characterMakers.push(() => makeCharacter(
  28522. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28523. {
  28524. side: {
  28525. height: math.unit(320, "cm"),
  28526. name: "Side",
  28527. image: {
  28528. source: "./media/characters/victoria/side.svg",
  28529. extra: 778 / 346,
  28530. bottom: 56 / 834
  28531. }
  28532. },
  28533. maw: {
  28534. height: math.unit(5.9, "feet"),
  28535. name: "Maw",
  28536. image: {
  28537. source: "./media/characters/victoria/maw.svg"
  28538. }
  28539. },
  28540. },
  28541. [
  28542. {
  28543. name: "Normal",
  28544. height: math.unit(320, "cm"),
  28545. default: true
  28546. },
  28547. ]
  28548. ))
  28549. characterMakers.push(() => makeCharacter(
  28550. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28551. {
  28552. front: {
  28553. height: math.unit(5 + 6 / 12, "feet"),
  28554. name: "Front",
  28555. image: {
  28556. source: "./media/characters/cat/front.svg",
  28557. extra: 1449/1295,
  28558. bottom: 34/1483
  28559. }
  28560. },
  28561. back: {
  28562. height: math.unit(5 + 6 / 12, "feet"),
  28563. name: "Back",
  28564. image: {
  28565. source: "./media/characters/cat/back.svg",
  28566. extra: 1466/1301,
  28567. bottom: 19/1485
  28568. }
  28569. },
  28570. taur: {
  28571. height: math.unit(7, "feet"),
  28572. name: "Taur",
  28573. image: {
  28574. source: "./media/characters/cat/taur.svg",
  28575. extra: 1389/1233,
  28576. bottom: 83/1472
  28577. }
  28578. },
  28579. lucarioFront: {
  28580. height: math.unit(4, "feet"),
  28581. name: "Lucario (Front)",
  28582. image: {
  28583. source: "./media/characters/cat/lucario-front.svg",
  28584. extra: 1149/1019,
  28585. bottom: 84/1233
  28586. }
  28587. },
  28588. lucarioBack: {
  28589. height: math.unit(4, "feet"),
  28590. name: "Lucario (Back)",
  28591. image: {
  28592. source: "./media/characters/cat/lucario-back.svg",
  28593. extra: 1190/1059,
  28594. bottom: 33/1223
  28595. }
  28596. },
  28597. megaLucario: {
  28598. height: math.unit(4, "feet"),
  28599. name: "Mega Lucario",
  28600. image: {
  28601. source: "./media/characters/cat/mega-lucario.svg",
  28602. extra: 1515 / 1319,
  28603. bottom: 63 / 1578
  28604. }
  28605. },
  28606. nickit: {
  28607. height: math.unit(2, "feet"),
  28608. name: "Nickit",
  28609. image: {
  28610. source: "./media/characters/cat/nickit.svg",
  28611. extra: 1980 / 1585,
  28612. bottom: 102 / 2082
  28613. }
  28614. },
  28615. lopunnyFront: {
  28616. height: math.unit(5, "feet"),
  28617. name: "Lopunny (Front)",
  28618. image: {
  28619. source: "./media/characters/cat/lopunny-front.svg",
  28620. extra: 1782 / 1469,
  28621. bottom: 38 / 1820
  28622. }
  28623. },
  28624. lopunnyBack: {
  28625. height: math.unit(5, "feet"),
  28626. name: "Lopunny (Back)",
  28627. image: {
  28628. source: "./media/characters/cat/lopunny-back.svg",
  28629. extra: 1660 / 1490,
  28630. bottom: 25 / 1685
  28631. }
  28632. },
  28633. },
  28634. [
  28635. {
  28636. name: "Really small",
  28637. height: math.unit(1, "nm")
  28638. },
  28639. {
  28640. name: "Micro",
  28641. height: math.unit(5, "inches")
  28642. },
  28643. {
  28644. name: "Normal",
  28645. height: math.unit(5 + 6 / 12, "feet"),
  28646. default: true
  28647. },
  28648. {
  28649. name: "Macro",
  28650. height: math.unit(50, "feet")
  28651. },
  28652. {
  28653. name: "Macro+",
  28654. height: math.unit(150, "feet")
  28655. },
  28656. {
  28657. name: "Megamacro",
  28658. height: math.unit(100, "miles")
  28659. },
  28660. ]
  28661. ))
  28662. characterMakers.push(() => makeCharacter(
  28663. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28664. {
  28665. front: {
  28666. height: math.unit(63.4, "meters"),
  28667. weight: math.unit(3.28349e+6, "kilograms"),
  28668. name: "Front",
  28669. image: {
  28670. source: "./media/characters/kirina-violet/front.svg",
  28671. extra: 2812 / 2725,
  28672. bottom: 0 / 2812
  28673. }
  28674. },
  28675. back: {
  28676. height: math.unit(63.4, "meters"),
  28677. weight: math.unit(3.28349e+6, "kilograms"),
  28678. name: "Back",
  28679. image: {
  28680. source: "./media/characters/kirina-violet/back.svg",
  28681. extra: 2812 / 2725,
  28682. bottom: 0 / 2812
  28683. }
  28684. },
  28685. mouth: {
  28686. height: math.unit(4.35, "meters"),
  28687. name: "Mouth",
  28688. image: {
  28689. source: "./media/characters/kirina-violet/mouth.svg"
  28690. }
  28691. },
  28692. paw: {
  28693. height: math.unit(5.6, "meters"),
  28694. name: "Paw",
  28695. image: {
  28696. source: "./media/characters/kirina-violet/paw.svg"
  28697. }
  28698. },
  28699. tail: {
  28700. height: math.unit(18, "meters"),
  28701. name: "Tail",
  28702. image: {
  28703. source: "./media/characters/kirina-violet/tail.svg"
  28704. }
  28705. },
  28706. },
  28707. [
  28708. {
  28709. name: "Macro",
  28710. height: math.unit(63.4, "meters"),
  28711. default: true
  28712. },
  28713. ]
  28714. ))
  28715. characterMakers.push(() => makeCharacter(
  28716. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28717. {
  28718. front: {
  28719. height: math.unit(75, "feet"),
  28720. name: "Front",
  28721. image: {
  28722. source: "./media/characters/cat-gigachu/front.svg",
  28723. extra: 1239/1027,
  28724. bottom: 32/1271
  28725. }
  28726. },
  28727. back: {
  28728. height: math.unit(75, "feet"),
  28729. name: "Back",
  28730. image: {
  28731. source: "./media/characters/cat-gigachu/back.svg",
  28732. extra: 1229/1030,
  28733. bottom: 9/1238
  28734. }
  28735. },
  28736. },
  28737. [
  28738. {
  28739. name: "Dynamax",
  28740. height: math.unit(75, "feet"),
  28741. default: true
  28742. },
  28743. ]
  28744. ))
  28745. characterMakers.push(() => makeCharacter(
  28746. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28747. {
  28748. front: {
  28749. height: math.unit(6, "feet"),
  28750. weight: math.unit(150, "lb"),
  28751. name: "Front",
  28752. image: {
  28753. source: "./media/characters/sfaiyan/front.svg",
  28754. extra: 999 / 978,
  28755. bottom: 5 / 1004
  28756. }
  28757. },
  28758. },
  28759. [
  28760. {
  28761. name: "Normal",
  28762. height: math.unit(1.82, "meters")
  28763. },
  28764. {
  28765. name: "Giant",
  28766. height: math.unit(2.27, "km"),
  28767. default: true
  28768. },
  28769. ]
  28770. ))
  28771. characterMakers.push(() => makeCharacter(
  28772. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28773. {
  28774. front: {
  28775. height: math.unit(179, "cm"),
  28776. weight: math.unit(100, "kg"),
  28777. name: "Front",
  28778. image: {
  28779. source: "./media/characters/raunehkeli/front.svg",
  28780. extra: 1934 / 1926,
  28781. bottom: 0 / 1934
  28782. }
  28783. },
  28784. },
  28785. [
  28786. {
  28787. name: "Normal",
  28788. height: math.unit(179, "cm")
  28789. },
  28790. {
  28791. name: "Maximum",
  28792. height: math.unit(575, "meters"),
  28793. default: true
  28794. },
  28795. ]
  28796. ))
  28797. characterMakers.push(() => makeCharacter(
  28798. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28799. {
  28800. front: {
  28801. height: math.unit(6, "feet"),
  28802. weight: math.unit(150, "lb"),
  28803. name: "Front",
  28804. image: {
  28805. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28806. extra: 2625 / 2518,
  28807. bottom: 60 / 2685
  28808. }
  28809. },
  28810. },
  28811. [
  28812. {
  28813. name: "Normal",
  28814. height: math.unit(6 + 2 / 12, "feet")
  28815. },
  28816. {
  28817. name: "Macro",
  28818. height: math.unit(1180, "feet"),
  28819. default: true
  28820. },
  28821. ]
  28822. ))
  28823. characterMakers.push(() => makeCharacter(
  28824. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28825. {
  28826. front: {
  28827. height: math.unit(5 + 6 / 12, "feet"),
  28828. weight: math.unit(108, "lb"),
  28829. name: "Front",
  28830. image: {
  28831. source: "./media/characters/lilith-zott/front.svg",
  28832. extra: 2510 / 2238,
  28833. bottom: 100 / 2610
  28834. }
  28835. },
  28836. frontDressed: {
  28837. height: math.unit(5 + 6 / 12, "feet"),
  28838. weight: math.unit(108, "lb"),
  28839. name: "Front (Dressed)",
  28840. image: {
  28841. source: "./media/characters/lilith-zott/front-dressed.svg",
  28842. extra: 2510 / 2238,
  28843. bottom: 100 / 2610
  28844. }
  28845. },
  28846. },
  28847. [
  28848. {
  28849. name: "Normal",
  28850. height: math.unit(5 + 6 / 12, "feet")
  28851. },
  28852. {
  28853. name: "Macro",
  28854. height: math.unit(1030, "feet"),
  28855. default: true
  28856. },
  28857. ]
  28858. ))
  28859. characterMakers.push(() => makeCharacter(
  28860. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28861. {
  28862. front: {
  28863. height: math.unit(6, "feet"),
  28864. weight: math.unit(150, "lb"),
  28865. name: "Front",
  28866. image: {
  28867. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28868. extra: 2567 / 2435,
  28869. bottom: 39 / 2606
  28870. }
  28871. },
  28872. frontSuper: {
  28873. height: math.unit(6, "feet"),
  28874. name: "Front (Super)",
  28875. image: {
  28876. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28877. extra: 2567 / 2435,
  28878. bottom: 39 / 2606
  28879. }
  28880. },
  28881. },
  28882. [
  28883. {
  28884. name: "Normal",
  28885. height: math.unit(5 + 10 / 12, "feet")
  28886. },
  28887. {
  28888. name: "Macro",
  28889. height: math.unit(1100, "feet"),
  28890. default: true
  28891. },
  28892. ]
  28893. ))
  28894. characterMakers.push(() => makeCharacter(
  28895. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28896. {
  28897. front: {
  28898. height: math.unit(100, "miles"),
  28899. name: "Front",
  28900. image: {
  28901. source: "./media/characters/sona/front.svg",
  28902. extra: 2433 / 2201,
  28903. bottom: 53 / 2486
  28904. }
  28905. },
  28906. foot: {
  28907. height: math.unit(16.1, "miles"),
  28908. name: "Foot",
  28909. image: {
  28910. source: "./media/characters/sona/foot.svg"
  28911. }
  28912. },
  28913. },
  28914. [
  28915. {
  28916. name: "Macro",
  28917. height: math.unit(100, "miles"),
  28918. default: true
  28919. },
  28920. ]
  28921. ))
  28922. characterMakers.push(() => makeCharacter(
  28923. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28924. {
  28925. front: {
  28926. height: math.unit(6, "feet"),
  28927. weight: math.unit(150, "lb"),
  28928. name: "Front",
  28929. image: {
  28930. source: "./media/characters/bailey/front.svg",
  28931. extra: 1778 / 1724,
  28932. bottom: 30 / 1808
  28933. }
  28934. },
  28935. },
  28936. [
  28937. {
  28938. name: "Micro",
  28939. height: math.unit(4, "inches")
  28940. },
  28941. {
  28942. name: "Normal",
  28943. height: math.unit(5 + 5 / 12, "feet"),
  28944. default: true
  28945. },
  28946. {
  28947. name: "Macro",
  28948. height: math.unit(250, "feet")
  28949. },
  28950. {
  28951. name: "Megamacro",
  28952. height: math.unit(100, "miles")
  28953. },
  28954. ]
  28955. ))
  28956. characterMakers.push(() => makeCharacter(
  28957. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28958. {
  28959. front: {
  28960. height: math.unit(5 + 2 / 12, "feet"),
  28961. weight: math.unit(120, "lb"),
  28962. name: "Front",
  28963. image: {
  28964. source: "./media/characters/snaps/front.svg",
  28965. extra: 2370 / 2177,
  28966. bottom: 48 / 2418
  28967. }
  28968. },
  28969. back: {
  28970. height: math.unit(5 + 2 / 12, "feet"),
  28971. weight: math.unit(120, "lb"),
  28972. name: "Back",
  28973. image: {
  28974. source: "./media/characters/snaps/back.svg",
  28975. extra: 2408 / 2258,
  28976. bottom: 15 / 2423
  28977. }
  28978. },
  28979. },
  28980. [
  28981. {
  28982. name: "Micro",
  28983. height: math.unit(9, "inches")
  28984. },
  28985. {
  28986. name: "Normal",
  28987. height: math.unit(5 + 2 / 12, "feet"),
  28988. default: true
  28989. },
  28990. {
  28991. name: "Mini Macro",
  28992. height: math.unit(10, "feet")
  28993. },
  28994. ]
  28995. ))
  28996. characterMakers.push(() => makeCharacter(
  28997. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28998. {
  28999. front: {
  29000. height: math.unit(1.8, "meters"),
  29001. weight: math.unit(85, "kg"),
  29002. name: "Front",
  29003. image: {
  29004. source: "./media/characters/azteck/front.svg",
  29005. extra: 2815 / 2625,
  29006. bottom: 89 / 2904
  29007. }
  29008. },
  29009. back: {
  29010. height: math.unit(1.8, "meters"),
  29011. weight: math.unit(85, "kg"),
  29012. name: "Back",
  29013. image: {
  29014. source: "./media/characters/azteck/back.svg",
  29015. extra: 2856 / 2648,
  29016. bottom: 85 / 2941
  29017. }
  29018. },
  29019. frontDressed: {
  29020. height: math.unit(1.8, "meters"),
  29021. weight: math.unit(85, "kg"),
  29022. name: "Front (Dressed)",
  29023. image: {
  29024. source: "./media/characters/azteck/front-dressed.svg",
  29025. extra: 2147 / 2003,
  29026. bottom: 68 / 2215
  29027. }
  29028. },
  29029. head: {
  29030. height: math.unit(0.47, "meters"),
  29031. weight: math.unit(85, "kg"),
  29032. name: "Head",
  29033. image: {
  29034. source: "./media/characters/azteck/head.svg"
  29035. }
  29036. },
  29037. },
  29038. [
  29039. {
  29040. name: "Bite sized",
  29041. height: math.unit(16, "cm")
  29042. },
  29043. {
  29044. name: "Normal",
  29045. height: math.unit(1.8, "meters"),
  29046. default: true
  29047. },
  29048. ]
  29049. ))
  29050. characterMakers.push(() => makeCharacter(
  29051. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29052. {
  29053. front: {
  29054. height: math.unit(6, "feet"),
  29055. weight: math.unit(150, "lb"),
  29056. name: "Front",
  29057. image: {
  29058. source: "./media/characters/pidge/front.svg",
  29059. extra: 620 / 588,
  29060. bottom: 9 / 629
  29061. }
  29062. },
  29063. back: {
  29064. height: math.unit(6, "feet"),
  29065. weight: math.unit(150, "lb"),
  29066. name: "Back",
  29067. image: {
  29068. source: "./media/characters/pidge/back.svg",
  29069. extra: 620 / 588,
  29070. bottom: 9 / 629
  29071. }
  29072. },
  29073. },
  29074. [
  29075. {
  29076. name: "Macro",
  29077. height: math.unit(1, "mile"),
  29078. default: true
  29079. },
  29080. ]
  29081. ))
  29082. characterMakers.push(() => makeCharacter(
  29083. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29084. {
  29085. front: {
  29086. height: math.unit(6, "feet"),
  29087. weight: math.unit(150, "lb"),
  29088. name: "Front",
  29089. image: {
  29090. source: "./media/characters/en/front.svg",
  29091. extra: 1697 / 1563,
  29092. bottom: 103 / 1800
  29093. }
  29094. },
  29095. back: {
  29096. height: math.unit(6, "feet"),
  29097. weight: math.unit(150, "lb"),
  29098. name: "Back",
  29099. image: {
  29100. source: "./media/characters/en/back.svg",
  29101. extra: 1700 / 1570,
  29102. bottom: 51 / 1751
  29103. }
  29104. },
  29105. frontDressed: {
  29106. height: math.unit(6, "feet"),
  29107. weight: math.unit(150, "lb"),
  29108. name: "Front (Dressed)",
  29109. image: {
  29110. source: "./media/characters/en/front-dressed.svg",
  29111. extra: 1697 / 1563,
  29112. bottom: 103 / 1800
  29113. }
  29114. },
  29115. backDressed: {
  29116. height: math.unit(6, "feet"),
  29117. weight: math.unit(150, "lb"),
  29118. name: "Back (Dressed)",
  29119. image: {
  29120. source: "./media/characters/en/back-dressed.svg",
  29121. extra: 1700 / 1570,
  29122. bottom: 51 / 1751
  29123. }
  29124. },
  29125. },
  29126. [
  29127. {
  29128. name: "Macro",
  29129. height: math.unit(210, "feet"),
  29130. default: true
  29131. },
  29132. ]
  29133. ))
  29134. characterMakers.push(() => makeCharacter(
  29135. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29136. {
  29137. front: {
  29138. height: math.unit(6, "feet"),
  29139. weight: math.unit(150, "lb"),
  29140. name: "Front",
  29141. image: {
  29142. source: "./media/characters/haze-orris/front.svg",
  29143. extra: 3975 / 3525,
  29144. bottom: 137 / 4112
  29145. }
  29146. },
  29147. },
  29148. [
  29149. {
  29150. name: "Micro",
  29151. height: math.unit(150, "mm"),
  29152. default: true
  29153. },
  29154. ]
  29155. ))
  29156. characterMakers.push(() => makeCharacter(
  29157. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29158. {
  29159. front: {
  29160. height: math.unit(6, "feet"),
  29161. weight: math.unit(150, "lb"),
  29162. name: "Front",
  29163. image: {
  29164. source: "./media/characters/casselene-yaro/front.svg",
  29165. extra: 4721 / 4541,
  29166. bottom: 82 / 4803
  29167. }
  29168. },
  29169. back: {
  29170. height: math.unit(6, "feet"),
  29171. weight: math.unit(150, "lb"),
  29172. name: "Back",
  29173. image: {
  29174. source: "./media/characters/casselene-yaro/back.svg",
  29175. extra: 4569 / 4377,
  29176. bottom: 69 / 4638
  29177. }
  29178. },
  29179. frontDressed: {
  29180. height: math.unit(6, "feet"),
  29181. weight: math.unit(150, "lb"),
  29182. name: "Front-dressed",
  29183. image: {
  29184. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29185. extra: 4721 / 4541,
  29186. bottom: 82 / 4803
  29187. }
  29188. },
  29189. },
  29190. [
  29191. {
  29192. name: "Macro",
  29193. height: math.unit(190, "feet"),
  29194. default: true
  29195. },
  29196. ]
  29197. ))
  29198. characterMakers.push(() => makeCharacter(
  29199. { name: "Myra Rue Delore", species: ["monster"], 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/myra-rue-delore/front.svg",
  29207. extra: 1340 / 1308,
  29208. bottom: 67 / 1407
  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/myra-rue-delore/back.svg",
  29217. extra: 1341 / 1310,
  29218. bottom: 40 / 1381
  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/myra-rue-delore/front-dressed.svg",
  29227. extra: 1340 / 1308,
  29228. bottom: 67 / 1407
  29229. }
  29230. },
  29231. },
  29232. [
  29233. {
  29234. name: "Macro",
  29235. height: math.unit(150, "feet"),
  29236. default: true
  29237. },
  29238. ]
  29239. ))
  29240. characterMakers.push(() => makeCharacter(
  29241. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29242. {
  29243. front: {
  29244. height: math.unit(10, "feet"),
  29245. weight: math.unit(15015, "lb"),
  29246. name: "Front",
  29247. image: {
  29248. source: "./media/characters/fem!plat/front.svg",
  29249. extra: 2799 / 2604,
  29250. bottom: 149 / 2948
  29251. }
  29252. },
  29253. },
  29254. [
  29255. {
  29256. name: "Normal",
  29257. height: math.unit(10, "feet"),
  29258. default: true
  29259. },
  29260. {
  29261. name: "Macro",
  29262. height: math.unit(100, "feet")
  29263. },
  29264. {
  29265. name: "Megamacro",
  29266. height: math.unit(1000, "feet")
  29267. },
  29268. ]
  29269. ))
  29270. characterMakers.push(() => makeCharacter(
  29271. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29272. {
  29273. front: {
  29274. height: math.unit(15 + 5 / 12, "feet"),
  29275. weight: math.unit(4600, "lb"),
  29276. name: "Front",
  29277. image: {
  29278. source: "./media/characters/neapolitan-ananassa/front.svg",
  29279. extra: 2903 / 2736,
  29280. bottom: 0 / 2903
  29281. }
  29282. },
  29283. side: {
  29284. height: math.unit(15 + 5 / 12, "feet"),
  29285. weight: math.unit(4600, "lb"),
  29286. name: "Side",
  29287. image: {
  29288. source: "./media/characters/neapolitan-ananassa/side.svg",
  29289. extra: 2925 / 2719,
  29290. bottom: 0 / 2925
  29291. }
  29292. },
  29293. back: {
  29294. height: math.unit(15 + 5 / 12, "feet"),
  29295. weight: math.unit(4600, "lb"),
  29296. name: "Back",
  29297. image: {
  29298. source: "./media/characters/neapolitan-ananassa/back.svg",
  29299. extra: 2903 / 2736,
  29300. bottom: 0 / 2903
  29301. }
  29302. },
  29303. },
  29304. [
  29305. {
  29306. name: "Normal",
  29307. height: math.unit(15 + 5 / 12, "feet"),
  29308. default: true
  29309. },
  29310. {
  29311. name: "Post-Millenium",
  29312. height: math.unit(35 + 5 / 12, "feet")
  29313. },
  29314. {
  29315. name: "Post-Era",
  29316. height: math.unit(450 + 5 / 12, "feet")
  29317. },
  29318. ]
  29319. ))
  29320. characterMakers.push(() => makeCharacter(
  29321. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29322. {
  29323. front: {
  29324. height: math.unit(300, "meters"),
  29325. weight: math.unit(125000, "tonnes"),
  29326. name: "Front",
  29327. image: {
  29328. source: "./media/characters/pazuzu/front.svg",
  29329. extra: 877 / 794,
  29330. bottom: 47 / 924
  29331. }
  29332. },
  29333. },
  29334. [
  29335. {
  29336. name: "Macro",
  29337. height: math.unit(300, "meters"),
  29338. default: true
  29339. },
  29340. ]
  29341. ))
  29342. characterMakers.push(() => makeCharacter(
  29343. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29344. {
  29345. side: {
  29346. height: math.unit(10 + 7 / 12, "feet"),
  29347. weight: math.unit(2.5, "tons"),
  29348. name: "Side",
  29349. image: {
  29350. source: "./media/characters/aasha/side.svg",
  29351. extra: 1345 / 1245,
  29352. bottom: 111 / 1456
  29353. }
  29354. },
  29355. back: {
  29356. height: math.unit(10 + 7 / 12, "feet"),
  29357. weight: math.unit(2.5, "tons"),
  29358. name: "Back",
  29359. image: {
  29360. source: "./media/characters/aasha/back.svg",
  29361. extra: 1133 / 1057,
  29362. bottom: 257 / 1390
  29363. }
  29364. },
  29365. },
  29366. [
  29367. {
  29368. name: "Normal",
  29369. height: math.unit(10 + 7 / 12, "feet"),
  29370. default: true
  29371. },
  29372. ]
  29373. ))
  29374. characterMakers.push(() => makeCharacter(
  29375. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29376. {
  29377. front: {
  29378. height: math.unit(6 + 3 / 12, "feet"),
  29379. name: "Front",
  29380. image: {
  29381. source: "./media/characters/nevan/front.svg",
  29382. extra: 704 / 704,
  29383. bottom: 28 / 732
  29384. }
  29385. },
  29386. back: {
  29387. height: math.unit(6 + 3 / 12, "feet"),
  29388. name: "Back",
  29389. image: {
  29390. source: "./media/characters/nevan/back.svg",
  29391. extra: 714 / 714,
  29392. bottom: 21 / 735
  29393. }
  29394. },
  29395. frontFlaccid: {
  29396. height: math.unit(6 + 3 / 12, "feet"),
  29397. name: "Front (Flaccid)",
  29398. image: {
  29399. source: "./media/characters/nevan/front-flaccid.svg",
  29400. extra: 704 / 704,
  29401. bottom: 28 / 732
  29402. }
  29403. },
  29404. frontErect: {
  29405. height: math.unit(6 + 3 / 12, "feet"),
  29406. name: "Front (Erect)",
  29407. image: {
  29408. source: "./media/characters/nevan/front-erect.svg",
  29409. extra: 704 / 704,
  29410. bottom: 28 / 732
  29411. }
  29412. },
  29413. backFlaccid: {
  29414. height: math.unit(6 + 3 / 12, "feet"),
  29415. name: "Back (Flaccid)",
  29416. image: {
  29417. source: "./media/characters/nevan/back-flaccid.svg",
  29418. extra: 714 / 714,
  29419. bottom: 21 / 735
  29420. }
  29421. },
  29422. },
  29423. [
  29424. {
  29425. name: "Normal",
  29426. height: math.unit(6 + 3 / 12, "feet"),
  29427. default: true
  29428. },
  29429. ]
  29430. ))
  29431. characterMakers.push(() => makeCharacter(
  29432. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29433. {
  29434. front: {
  29435. height: math.unit(4, "feet"),
  29436. name: "Front",
  29437. image: {
  29438. source: "./media/characters/arhan/front.svg",
  29439. extra: 3368 / 3133,
  29440. bottom: 0 / 3368
  29441. }
  29442. },
  29443. side: {
  29444. height: math.unit(4, "feet"),
  29445. name: "Side",
  29446. image: {
  29447. source: "./media/characters/arhan/side.svg",
  29448. extra: 3347 / 3105,
  29449. bottom: 0 / 3347
  29450. }
  29451. },
  29452. tongue: {
  29453. height: math.unit(1.42, "feet"),
  29454. name: "Tongue",
  29455. image: {
  29456. source: "./media/characters/arhan/tongue.svg"
  29457. }
  29458. },
  29459. head: {
  29460. height: math.unit(0.85, "feet"),
  29461. name: "Head",
  29462. image: {
  29463. source: "./media/characters/arhan/head.svg"
  29464. }
  29465. },
  29466. },
  29467. [
  29468. {
  29469. name: "Normal",
  29470. height: math.unit(4, "feet"),
  29471. default: true
  29472. },
  29473. ]
  29474. ))
  29475. characterMakers.push(() => makeCharacter(
  29476. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29477. {
  29478. front: {
  29479. height: math.unit(5 + 7.5 / 12, "feet"),
  29480. weight: math.unit(120, "lb"),
  29481. name: "Front",
  29482. image: {
  29483. source: "./media/characters/digi-duncan/front.svg",
  29484. extra: 330 / 326,
  29485. bottom: 16 / 346
  29486. }
  29487. },
  29488. side: {
  29489. height: math.unit(5 + 7.5 / 12, "feet"),
  29490. weight: math.unit(120, "lb"),
  29491. name: "Side",
  29492. image: {
  29493. source: "./media/characters/digi-duncan/side.svg",
  29494. extra: 341 / 337,
  29495. bottom: 1 / 342
  29496. }
  29497. },
  29498. back: {
  29499. height: math.unit(5 + 7.5 / 12, "feet"),
  29500. weight: math.unit(120, "lb"),
  29501. name: "Back",
  29502. image: {
  29503. source: "./media/characters/digi-duncan/back.svg",
  29504. extra: 330 / 326,
  29505. bottom: 12 / 342
  29506. }
  29507. },
  29508. },
  29509. [
  29510. {
  29511. name: "Speck",
  29512. height: math.unit(0.25, "mm")
  29513. },
  29514. {
  29515. name: "Micro",
  29516. height: math.unit(5, "mm")
  29517. },
  29518. {
  29519. name: "Tiny",
  29520. height: math.unit(0.5, "inches"),
  29521. default: true
  29522. },
  29523. {
  29524. name: "Human",
  29525. height: math.unit(5 + 7.5 / 12, "feet")
  29526. },
  29527. {
  29528. name: "Minigiant",
  29529. height: math.unit(8 + 5.25, "feet")
  29530. },
  29531. {
  29532. name: "Giant",
  29533. height: math.unit(2000, "feet")
  29534. },
  29535. {
  29536. name: "Mega",
  29537. height: math.unit(371.1, "miles")
  29538. },
  29539. ]
  29540. ))
  29541. characterMakers.push(() => makeCharacter(
  29542. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29543. {
  29544. front: {
  29545. height: math.unit(2, "meters"),
  29546. weight: math.unit(350, "kg"),
  29547. name: "Front",
  29548. image: {
  29549. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29550. extra: 898 / 838,
  29551. bottom: 9 / 907
  29552. }
  29553. },
  29554. },
  29555. [
  29556. {
  29557. name: "Micro",
  29558. height: math.unit(8, "meters")
  29559. },
  29560. {
  29561. name: "Normal",
  29562. height: math.unit(50, "meters"),
  29563. default: true
  29564. },
  29565. {
  29566. name: "Macro",
  29567. height: math.unit(500, "meters")
  29568. },
  29569. ]
  29570. ))
  29571. characterMakers.push(() => makeCharacter(
  29572. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29573. {
  29574. front: {
  29575. height: math.unit(6 + 6 / 12, "feet"),
  29576. name: "Front",
  29577. image: {
  29578. source: "./media/characters/khardesh/front.svg",
  29579. extra: 888 / 797,
  29580. bottom: 25 / 913
  29581. }
  29582. },
  29583. },
  29584. [
  29585. {
  29586. name: "Normal",
  29587. height: math.unit(6 + 6 / 12, "feet"),
  29588. default: true
  29589. },
  29590. {
  29591. name: "Normal+",
  29592. height: math.unit(4, "meters")
  29593. },
  29594. {
  29595. name: "Macro",
  29596. height: math.unit(50, "meters")
  29597. },
  29598. {
  29599. name: "Macro+",
  29600. height: math.unit(100, "meters")
  29601. },
  29602. {
  29603. name: "Megamacro",
  29604. height: math.unit(20, "km")
  29605. },
  29606. ]
  29607. ))
  29608. characterMakers.push(() => makeCharacter(
  29609. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29610. {
  29611. front: {
  29612. height: math.unit(6, "feet"),
  29613. weight: math.unit(150, "lb"),
  29614. name: "Front",
  29615. image: {
  29616. source: "./media/characters/kosho/front.svg",
  29617. extra: 1847 / 1847,
  29618. bottom: 86 / 1933
  29619. }
  29620. },
  29621. },
  29622. [
  29623. {
  29624. name: "Second-stage micro",
  29625. height: math.unit(0.5, "inches")
  29626. },
  29627. {
  29628. name: "First-stage micro",
  29629. height: math.unit(6, "inches")
  29630. },
  29631. {
  29632. name: "Normal",
  29633. height: math.unit(6, "feet"),
  29634. default: true
  29635. },
  29636. {
  29637. name: "First-stage macro",
  29638. height: math.unit(72, "feet")
  29639. },
  29640. {
  29641. name: "Second-stage macro",
  29642. height: math.unit(864, "feet")
  29643. },
  29644. ]
  29645. ))
  29646. characterMakers.push(() => makeCharacter(
  29647. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29648. {
  29649. normal: {
  29650. height: math.unit(4 + 6 / 12, "feet"),
  29651. name: "Normal",
  29652. image: {
  29653. source: "./media/characters/hydra/normal.svg",
  29654. extra: 2833 / 2634,
  29655. bottom: 68 / 2901
  29656. }
  29657. },
  29658. smol: {
  29659. height: math.unit(0.705, "inches"),
  29660. name: "Smol",
  29661. image: {
  29662. source: "./media/characters/hydra/smol.svg",
  29663. extra: 2715 / 2540,
  29664. bottom: 0 / 2715
  29665. }
  29666. },
  29667. },
  29668. [
  29669. {
  29670. name: "Normal",
  29671. height: math.unit(4 + 6 / 12, "feet"),
  29672. default: true
  29673. }
  29674. ]
  29675. ))
  29676. characterMakers.push(() => makeCharacter(
  29677. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29678. {
  29679. front: {
  29680. height: math.unit(0.6, "cm"),
  29681. name: "Front",
  29682. image: {
  29683. source: "./media/characters/daz/front.svg",
  29684. extra: 1682 / 1164,
  29685. bottom: 42 / 1724
  29686. }
  29687. },
  29688. },
  29689. [
  29690. {
  29691. name: "Normal",
  29692. height: math.unit(0.6, "cm"),
  29693. default: true
  29694. },
  29695. ]
  29696. ))
  29697. characterMakers.push(() => makeCharacter(
  29698. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29699. {
  29700. front: {
  29701. height: math.unit(6, "feet"),
  29702. weight: math.unit(235, "lb"),
  29703. name: "Front",
  29704. image: {
  29705. source: "./media/characters/theo-pangolin/front.svg",
  29706. extra: 1996 / 1969,
  29707. bottom: 115 / 2111
  29708. }
  29709. },
  29710. back: {
  29711. height: math.unit(6, "feet"),
  29712. weight: math.unit(235, "lb"),
  29713. name: "Back",
  29714. image: {
  29715. source: "./media/characters/theo-pangolin/back.svg",
  29716. extra: 1979 / 1979,
  29717. bottom: 40 / 2019
  29718. }
  29719. },
  29720. feral: {
  29721. height: math.unit(2, "feet"),
  29722. weight: math.unit(30, "lb"),
  29723. name: "Feral",
  29724. image: {
  29725. source: "./media/characters/theo-pangolin/feral.svg",
  29726. extra: 803 / 791,
  29727. bottom: 181 / 984
  29728. }
  29729. },
  29730. footFive: {
  29731. height: math.unit(1.43, "feet"),
  29732. name: "Foot (Five Toes)",
  29733. image: {
  29734. source: "./media/characters/theo-pangolin/foot-five.svg"
  29735. }
  29736. },
  29737. footFour: {
  29738. height: math.unit(1.43, "feet"),
  29739. name: "Foot (Four Toes)",
  29740. image: {
  29741. source: "./media/characters/theo-pangolin/foot-four.svg"
  29742. }
  29743. },
  29744. handFour: {
  29745. height: math.unit(0.81, "feet"),
  29746. name: "Hand (Four Fingers)",
  29747. image: {
  29748. source: "./media/characters/theo-pangolin/hand-four.svg"
  29749. }
  29750. },
  29751. handThree: {
  29752. height: math.unit(0.81, "feet"),
  29753. name: "Hand (Three Fingers)",
  29754. image: {
  29755. source: "./media/characters/theo-pangolin/hand-three.svg"
  29756. }
  29757. },
  29758. headFront: {
  29759. height: math.unit(1.37, "feet"),
  29760. name: "Head (Front)",
  29761. image: {
  29762. source: "./media/characters/theo-pangolin/head-front.svg"
  29763. }
  29764. },
  29765. headSide: {
  29766. height: math.unit(1.43, "feet"),
  29767. name: "Head (Side)",
  29768. image: {
  29769. source: "./media/characters/theo-pangolin/head-side.svg"
  29770. }
  29771. },
  29772. tongue: {
  29773. height: math.unit(2.29, "feet"),
  29774. name: "Tongue",
  29775. image: {
  29776. source: "./media/characters/theo-pangolin/tongue.svg"
  29777. }
  29778. },
  29779. },
  29780. [
  29781. {
  29782. name: "Normal",
  29783. height: math.unit(6, "feet")
  29784. },
  29785. {
  29786. name: "Macro",
  29787. height: math.unit(400, "feet"),
  29788. default: true
  29789. },
  29790. ]
  29791. ))
  29792. characterMakers.push(() => makeCharacter(
  29793. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29794. {
  29795. front: {
  29796. height: math.unit(6, "inches"),
  29797. weight: math.unit(0.036, "kg"),
  29798. name: "Front",
  29799. image: {
  29800. source: "./media/characters/renée/front.svg",
  29801. extra: 900 / 886,
  29802. bottom: 8 / 908
  29803. }
  29804. },
  29805. },
  29806. [
  29807. {
  29808. name: "Nano",
  29809. height: math.unit(1, "nm")
  29810. },
  29811. {
  29812. name: "Micro",
  29813. height: math.unit(1, "mm")
  29814. },
  29815. {
  29816. name: "Normal",
  29817. height: math.unit(6, "inches")
  29818. },
  29819. {
  29820. name: "Macro",
  29821. height: math.unit(2000, "feet"),
  29822. default: true
  29823. },
  29824. {
  29825. name: "Megamacro",
  29826. height: math.unit(2, "km")
  29827. },
  29828. {
  29829. name: "Gigamacro",
  29830. height: math.unit(2000, "km")
  29831. },
  29832. {
  29833. name: "Teramacro",
  29834. height: math.unit(250000, "km")
  29835. },
  29836. ]
  29837. ))
  29838. characterMakers.push(() => makeCharacter(
  29839. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29840. {
  29841. front: {
  29842. height: math.unit(4, "meters"),
  29843. weight: math.unit(150, "kg"),
  29844. name: "Front",
  29845. image: {
  29846. source: "./media/characters/caledvwlch/front.svg",
  29847. extra: 1760 / 1551,
  29848. bottom: 28 / 1788
  29849. }
  29850. },
  29851. side: {
  29852. height: math.unit(4, "meters"),
  29853. weight: math.unit(150, "kg"),
  29854. name: "Side",
  29855. image: {
  29856. source: "./media/characters/caledvwlch/side.svg",
  29857. extra: 1605 / 1536,
  29858. bottom: 31 / 1636
  29859. }
  29860. },
  29861. back: {
  29862. height: math.unit(4, "meters"),
  29863. weight: math.unit(150, "kg"),
  29864. name: "Back",
  29865. image: {
  29866. source: "./media/characters/caledvwlch/back.svg",
  29867. extra: 1635 / 1565,
  29868. bottom: 27 / 1662
  29869. }
  29870. },
  29871. },
  29872. [
  29873. {
  29874. name: "\"Incognito\"",
  29875. height: math.unit(4, "meters")
  29876. },
  29877. {
  29878. name: "Small rampage",
  29879. height: math.unit(600, "meters")
  29880. },
  29881. {
  29882. name: "Mega",
  29883. height: math.unit(30, "km")
  29884. },
  29885. {
  29886. name: "Home-size",
  29887. height: math.unit(50, "km"),
  29888. default: true
  29889. },
  29890. {
  29891. name: "Giga",
  29892. height: math.unit(300, "km")
  29893. },
  29894. {
  29895. name: "Lounging",
  29896. height: math.unit(11000, "km")
  29897. },
  29898. {
  29899. name: "Planet snacking",
  29900. height: math.unit(2000000, "km")
  29901. },
  29902. ]
  29903. ))
  29904. characterMakers.push(() => makeCharacter(
  29905. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29906. {
  29907. front: {
  29908. height: math.unit(6, "feet"),
  29909. weight: math.unit(215, "lb"),
  29910. name: "Front",
  29911. image: {
  29912. source: "./media/characters/sapphire-svell/front.svg",
  29913. extra: 495 / 455,
  29914. bottom: 20 / 515
  29915. }
  29916. },
  29917. back: {
  29918. height: math.unit(6, "feet"),
  29919. weight: math.unit(216, "lb"),
  29920. name: "Back",
  29921. image: {
  29922. source: "./media/characters/sapphire-svell/back.svg",
  29923. extra: 497 / 477,
  29924. bottom: 7 / 504
  29925. }
  29926. },
  29927. maw: {
  29928. height: math.unit(1.57, "feet"),
  29929. name: "Maw",
  29930. image: {
  29931. source: "./media/characters/sapphire-svell/maw.svg"
  29932. }
  29933. },
  29934. foot: {
  29935. height: math.unit(1.07, "feet"),
  29936. name: "Foot",
  29937. image: {
  29938. source: "./media/characters/sapphire-svell/foot.svg"
  29939. }
  29940. },
  29941. toering: {
  29942. height: math.unit(1.7, "inch"),
  29943. name: "Toering",
  29944. image: {
  29945. source: "./media/characters/sapphire-svell/toering.svg"
  29946. }
  29947. },
  29948. },
  29949. [
  29950. {
  29951. name: "Normal",
  29952. height: math.unit(300, "feet"),
  29953. default: true
  29954. },
  29955. {
  29956. name: "Augmented",
  29957. height: math.unit(1250, "feet")
  29958. },
  29959. {
  29960. name: "Unleashed",
  29961. height: math.unit(3000, "feet")
  29962. },
  29963. ]
  29964. ))
  29965. characterMakers.push(() => makeCharacter(
  29966. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29967. {
  29968. side: {
  29969. height: math.unit(2 + 3 / 12, "feet"),
  29970. weight: math.unit(110, "lb"),
  29971. name: "Side",
  29972. image: {
  29973. source: "./media/characters/glitch-flux/side.svg",
  29974. extra: 997 / 805,
  29975. bottom: 20 / 1017
  29976. }
  29977. },
  29978. },
  29979. [
  29980. {
  29981. name: "Normal",
  29982. height: math.unit(2 + 3 / 12, "feet"),
  29983. default: true
  29984. },
  29985. ]
  29986. ))
  29987. characterMakers.push(() => makeCharacter(
  29988. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29989. {
  29990. front: {
  29991. height: math.unit(4, "meters"),
  29992. name: "Front",
  29993. image: {
  29994. source: "./media/characters/mid/front.svg",
  29995. extra: 507 / 476,
  29996. bottom: 17 / 524
  29997. }
  29998. },
  29999. back: {
  30000. height: math.unit(4, "meters"),
  30001. name: "Back",
  30002. image: {
  30003. source: "./media/characters/mid/back.svg",
  30004. extra: 519 / 487,
  30005. bottom: 7 / 526
  30006. }
  30007. },
  30008. stuck: {
  30009. height: math.unit(2.2, "meters"),
  30010. name: "Stuck",
  30011. image: {
  30012. source: "./media/characters/mid/stuck.svg",
  30013. extra: 1951 / 1869,
  30014. bottom: 88 / 2039
  30015. }
  30016. }
  30017. },
  30018. [
  30019. {
  30020. name: "Normal",
  30021. height: math.unit(4, "meters"),
  30022. default: true
  30023. },
  30024. {
  30025. name: "Big",
  30026. height: math.unit(10, "meters")
  30027. },
  30028. {
  30029. name: "Macro",
  30030. height: math.unit(800, "meters")
  30031. },
  30032. {
  30033. name: "Megamacro",
  30034. height: math.unit(100, "km")
  30035. },
  30036. {
  30037. name: "Overgrown",
  30038. height: math.unit(1, "parsec")
  30039. },
  30040. ]
  30041. ))
  30042. characterMakers.push(() => makeCharacter(
  30043. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30044. {
  30045. front: {
  30046. height: math.unit(2.5, "meters"),
  30047. weight: math.unit(225, "kg"),
  30048. name: "Front",
  30049. image: {
  30050. source: "./media/characters/iris/front.svg",
  30051. extra: 3348 / 3251,
  30052. bottom: 205 / 3553
  30053. }
  30054. },
  30055. maw: {
  30056. height: math.unit(0.56, "meter"),
  30057. name: "Maw",
  30058. image: {
  30059. source: "./media/characters/iris/maw.svg"
  30060. }
  30061. },
  30062. },
  30063. [
  30064. {
  30065. name: "Mewter cat",
  30066. height: math.unit(1.2, "meters")
  30067. },
  30068. {
  30069. name: "Minimacro",
  30070. height: math.unit(2.5, "meters"),
  30071. default: true
  30072. },
  30073. {
  30074. name: "Macro",
  30075. height: math.unit(180, "meters")
  30076. },
  30077. {
  30078. name: "Megamacro",
  30079. height: math.unit(2746, "meters")
  30080. },
  30081. ]
  30082. ))
  30083. characterMakers.push(() => makeCharacter(
  30084. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30085. {
  30086. front: {
  30087. height: math.unit(6, "feet"),
  30088. weight: math.unit(135, "lb"),
  30089. name: "Front",
  30090. image: {
  30091. source: "./media/characters/axel/front.svg",
  30092. extra: 908 / 908,
  30093. bottom: 58 / 966
  30094. }
  30095. },
  30096. side: {
  30097. height: math.unit(6, "feet"),
  30098. weight: math.unit(135, "lb"),
  30099. name: "Side",
  30100. image: {
  30101. source: "./media/characters/axel/side.svg",
  30102. extra: 958 / 958,
  30103. bottom: 11 / 969
  30104. }
  30105. },
  30106. back: {
  30107. height: math.unit(6, "feet"),
  30108. weight: math.unit(135, "lb"),
  30109. name: "Back",
  30110. image: {
  30111. source: "./media/characters/axel/back.svg",
  30112. extra: 887 / 887,
  30113. bottom: 34 / 921
  30114. }
  30115. },
  30116. head: {
  30117. height: math.unit(1.07, "feet"),
  30118. name: "Head",
  30119. image: {
  30120. source: "./media/characters/axel/head.svg"
  30121. }
  30122. },
  30123. beak: {
  30124. height: math.unit(1.4, "feet"),
  30125. name: "Beak",
  30126. image: {
  30127. source: "./media/characters/axel/beak.svg"
  30128. }
  30129. },
  30130. beakSide: {
  30131. height: math.unit(1.4, "feet"),
  30132. name: "Beak Side",
  30133. image: {
  30134. source: "./media/characters/axel/beak-side.svg"
  30135. }
  30136. },
  30137. sheath: {
  30138. height: math.unit(0.5, "feet"),
  30139. name: "Sheath",
  30140. image: {
  30141. source: "./media/characters/axel/sheath.svg"
  30142. }
  30143. },
  30144. dick: {
  30145. height: math.unit(0.98, "feet"),
  30146. name: "Dick",
  30147. image: {
  30148. source: "./media/characters/axel/dick.svg"
  30149. }
  30150. },
  30151. },
  30152. [
  30153. {
  30154. name: "Macro",
  30155. height: math.unit(68, "meters"),
  30156. default: true
  30157. },
  30158. ]
  30159. ))
  30160. characterMakers.push(() => makeCharacter(
  30161. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30162. {
  30163. front: {
  30164. height: math.unit(3.5, "meters"),
  30165. weight: math.unit(1200, "kg"),
  30166. name: "Front",
  30167. image: {
  30168. source: "./media/characters/joanna/front.svg",
  30169. extra: 1596 / 1488,
  30170. bottom: 29 / 1625
  30171. }
  30172. },
  30173. back: {
  30174. height: math.unit(3.5, "meters"),
  30175. weight: math.unit(1200, "kg"),
  30176. name: "Back",
  30177. image: {
  30178. source: "./media/characters/joanna/back.svg",
  30179. extra: 1594 / 1495,
  30180. bottom: 26 / 1620
  30181. }
  30182. },
  30183. frontShorts: {
  30184. height: math.unit(3.5, "meters"),
  30185. weight: math.unit(1200, "kg"),
  30186. name: "Front (Shorts)",
  30187. image: {
  30188. source: "./media/characters/joanna/front-shorts.svg",
  30189. extra: 1596 / 1488,
  30190. bottom: 29 / 1625
  30191. }
  30192. },
  30193. frontBiker: {
  30194. height: math.unit(3.5, "meters"),
  30195. weight: math.unit(1200, "kg"),
  30196. name: "Front (Biker)",
  30197. image: {
  30198. source: "./media/characters/joanna/front-biker.svg",
  30199. extra: 1596 / 1488,
  30200. bottom: 29 / 1625
  30201. }
  30202. },
  30203. backBiker: {
  30204. height: math.unit(3.5, "meters"),
  30205. weight: math.unit(1200, "kg"),
  30206. name: "Back (Biker)",
  30207. image: {
  30208. source: "./media/characters/joanna/back-biker.svg",
  30209. extra: 1594 / 1495,
  30210. bottom: 88 / 1682
  30211. }
  30212. },
  30213. bikeLeft: {
  30214. height: math.unit(2.4, "meters"),
  30215. weight: math.unit(1600, "kg"),
  30216. name: "Bike (Left)",
  30217. image: {
  30218. source: "./media/characters/joanna/bike-left.svg",
  30219. extra: 720 / 720,
  30220. bottom: 8 / 728
  30221. }
  30222. },
  30223. bikeRight: {
  30224. height: math.unit(2.4, "meters"),
  30225. weight: math.unit(1600, "kg"),
  30226. name: "Bike (Right)",
  30227. image: {
  30228. source: "./media/characters/joanna/bike-right.svg",
  30229. extra: 720 / 720,
  30230. bottom: 8 / 728
  30231. }
  30232. },
  30233. },
  30234. [
  30235. {
  30236. name: "Incognito",
  30237. height: math.unit(3.5, "meters")
  30238. },
  30239. {
  30240. name: "Casual Big",
  30241. height: math.unit(200, "meters")
  30242. },
  30243. {
  30244. name: "Macro",
  30245. height: math.unit(600, "meters")
  30246. },
  30247. {
  30248. name: "Original",
  30249. height: math.unit(20, "km"),
  30250. default: true
  30251. },
  30252. {
  30253. name: "Giga",
  30254. height: math.unit(400, "km")
  30255. },
  30256. {
  30257. name: "Lounging",
  30258. height: math.unit(1500, "km")
  30259. },
  30260. {
  30261. name: "Planetary",
  30262. height: math.unit(200000, "km")
  30263. },
  30264. ]
  30265. ))
  30266. characterMakers.push(() => makeCharacter(
  30267. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30268. {
  30269. front: {
  30270. height: math.unit(6, "feet"),
  30271. weight: math.unit(150, "lb"),
  30272. name: "Front",
  30273. image: {
  30274. source: "./media/characters/hugo-sigil/front.svg",
  30275. extra: 522 / 500,
  30276. bottom: 2 / 524
  30277. }
  30278. },
  30279. back: {
  30280. height: math.unit(6, "feet"),
  30281. weight: math.unit(150, "lb"),
  30282. name: "Back",
  30283. image: {
  30284. source: "./media/characters/hugo-sigil/back.svg",
  30285. extra: 519 / 495,
  30286. bottom: 5 / 524
  30287. }
  30288. },
  30289. maw: {
  30290. height: math.unit(1.4, "feet"),
  30291. weight: math.unit(150, "lb"),
  30292. name: "Maw",
  30293. image: {
  30294. source: "./media/characters/hugo-sigil/maw.svg"
  30295. }
  30296. },
  30297. feet: {
  30298. height: math.unit(1.56, "feet"),
  30299. weight: math.unit(150, "lb"),
  30300. name: "Feet",
  30301. image: {
  30302. source: "./media/characters/hugo-sigil/feet.svg",
  30303. extra: 177 / 177,
  30304. bottom: 12 / 189
  30305. }
  30306. },
  30307. },
  30308. [
  30309. {
  30310. name: "Normal",
  30311. height: math.unit(6, "feet")
  30312. },
  30313. {
  30314. name: "Macro",
  30315. height: math.unit(200, "feet"),
  30316. default: true
  30317. },
  30318. ]
  30319. ))
  30320. characterMakers.push(() => makeCharacter(
  30321. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30322. {
  30323. front: {
  30324. height: math.unit(6, "feet"),
  30325. weight: math.unit(150, "lb"),
  30326. name: "Front",
  30327. image: {
  30328. source: "./media/characters/peri/front.svg",
  30329. extra: 2354 / 2233,
  30330. bottom: 49 / 2403
  30331. }
  30332. },
  30333. },
  30334. [
  30335. {
  30336. name: "Really Small",
  30337. height: math.unit(1, "nm")
  30338. },
  30339. {
  30340. name: "Micro",
  30341. height: math.unit(4, "inches")
  30342. },
  30343. {
  30344. name: "Normal",
  30345. height: math.unit(7, "inches"),
  30346. default: true
  30347. },
  30348. {
  30349. name: "Macro",
  30350. height: math.unit(400, "feet")
  30351. },
  30352. {
  30353. name: "Megamacro",
  30354. height: math.unit(100, "miles")
  30355. },
  30356. ]
  30357. ))
  30358. characterMakers.push(() => makeCharacter(
  30359. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30360. {
  30361. frontSlim: {
  30362. height: math.unit(7, "feet"),
  30363. name: "Front (Slim)",
  30364. image: {
  30365. source: "./media/characters/issilora/front-slim.svg",
  30366. extra: 529 / 449,
  30367. bottom: 53 / 582
  30368. }
  30369. },
  30370. sideSlim: {
  30371. height: math.unit(7, "feet"),
  30372. name: "Side (Slim)",
  30373. image: {
  30374. source: "./media/characters/issilora/side-slim.svg",
  30375. extra: 570 / 480,
  30376. bottom: 30 / 600
  30377. }
  30378. },
  30379. backSlim: {
  30380. height: math.unit(7, "feet"),
  30381. name: "Back (Slim)",
  30382. image: {
  30383. source: "./media/characters/issilora/back-slim.svg",
  30384. extra: 537 / 455,
  30385. bottom: 46 / 583
  30386. }
  30387. },
  30388. frontBuff: {
  30389. height: math.unit(7, "feet"),
  30390. name: "Front (Buff)",
  30391. image: {
  30392. source: "./media/characters/issilora/front-buff.svg",
  30393. extra: 2310 / 2035,
  30394. bottom: 335 / 2645
  30395. }
  30396. },
  30397. head: {
  30398. height: math.unit(1.94, "feet"),
  30399. name: "Head",
  30400. image: {
  30401. source: "./media/characters/issilora/head.svg"
  30402. }
  30403. },
  30404. },
  30405. [
  30406. {
  30407. name: "Minimum",
  30408. height: math.unit(7, "feet")
  30409. },
  30410. {
  30411. name: "Comfortable",
  30412. height: math.unit(17, "feet")
  30413. },
  30414. {
  30415. name: "Fun Size",
  30416. height: math.unit(47, "feet")
  30417. },
  30418. {
  30419. name: "Natural Macro",
  30420. height: math.unit(137, "feet"),
  30421. default: true
  30422. },
  30423. {
  30424. name: "Maximum Kaiju",
  30425. height: math.unit(397, "feet")
  30426. },
  30427. ]
  30428. ))
  30429. characterMakers.push(() => makeCharacter(
  30430. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30431. {
  30432. front: {
  30433. height: math.unit(50 + 9/12, "feet"),
  30434. weight: math.unit(32.8, "tons"),
  30435. name: "Front",
  30436. image: {
  30437. source: "./media/characters/irb'iiritaahn/front.svg",
  30438. extra: 1878/1826,
  30439. bottom: 326/2204
  30440. }
  30441. },
  30442. back: {
  30443. height: math.unit(50 + 9/12, "feet"),
  30444. weight: math.unit(32.8, "tons"),
  30445. name: "Back",
  30446. image: {
  30447. source: "./media/characters/irb'iiritaahn/back.svg",
  30448. extra: 2052/2018,
  30449. bottom: 152/2204
  30450. }
  30451. },
  30452. head: {
  30453. height: math.unit(12.86, "feet"),
  30454. name: "Head",
  30455. image: {
  30456. source: "./media/characters/irb'iiritaahn/head.svg"
  30457. }
  30458. },
  30459. maw: {
  30460. height: math.unit(9.66, "feet"),
  30461. name: "Maw",
  30462. image: {
  30463. source: "./media/characters/irb'iiritaahn/maw.svg"
  30464. }
  30465. },
  30466. frontDick: {
  30467. height: math.unit(8.78461, "feet"),
  30468. name: "Front Dick",
  30469. image: {
  30470. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30471. }
  30472. },
  30473. rearDick: {
  30474. height: math.unit(8.78461, "feet"),
  30475. name: "Rear Dick",
  30476. image: {
  30477. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30478. }
  30479. },
  30480. rearDickUnfolded: {
  30481. height: math.unit(8.78, "feet"),
  30482. name: "Rear Dick (Unfolded)",
  30483. image: {
  30484. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30485. }
  30486. },
  30487. wings: {
  30488. height: math.unit(43, "feet"),
  30489. name: "Wings",
  30490. image: {
  30491. source: "./media/characters/irb'iiritaahn/wings.svg"
  30492. }
  30493. },
  30494. },
  30495. [
  30496. {
  30497. name: "Macro",
  30498. height: math.unit(50 + 9/12, "feet"),
  30499. default: true
  30500. },
  30501. ]
  30502. ))
  30503. characterMakers.push(() => makeCharacter(
  30504. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30505. {
  30506. front: {
  30507. height: math.unit(205, "cm"),
  30508. weight: math.unit(102, "kg"),
  30509. name: "Front",
  30510. image: {
  30511. source: "./media/characters/irbisgreif/front.svg",
  30512. extra: 785/706,
  30513. bottom: 13/798
  30514. }
  30515. },
  30516. back: {
  30517. height: math.unit(205, "cm"),
  30518. weight: math.unit(102, "kg"),
  30519. name: "Back",
  30520. image: {
  30521. source: "./media/characters/irbisgreif/back.svg",
  30522. extra: 713/701,
  30523. bottom: 26/739
  30524. }
  30525. },
  30526. frontDressed: {
  30527. height: math.unit(216, "cm"),
  30528. weight: math.unit(102, "kg"),
  30529. name: "Front-dressed",
  30530. image: {
  30531. source: "./media/characters/irbisgreif/front-dressed.svg",
  30532. extra: 902/776,
  30533. bottom: 14/916
  30534. }
  30535. },
  30536. sideDressed: {
  30537. height: math.unit(195, "cm"),
  30538. weight: math.unit(102, "kg"),
  30539. name: "Side-dressed",
  30540. image: {
  30541. source: "./media/characters/irbisgreif/side-dressed.svg",
  30542. extra: 788/688,
  30543. bottom: 21/809
  30544. }
  30545. },
  30546. backDressed: {
  30547. height: math.unit(216, "cm"),
  30548. weight: math.unit(102, "kg"),
  30549. name: "Back-dressed",
  30550. image: {
  30551. source: "./media/characters/irbisgreif/back-dressed.svg",
  30552. extra: 901/783,
  30553. bottom: 10/911
  30554. }
  30555. },
  30556. dick: {
  30557. height: math.unit(0.49, "feet"),
  30558. name: "Dick",
  30559. image: {
  30560. source: "./media/characters/irbisgreif/dick.svg"
  30561. }
  30562. },
  30563. wingTop: {
  30564. height: math.unit(1.93 , "feet"),
  30565. name: "Wing-top",
  30566. image: {
  30567. source: "./media/characters/irbisgreif/wing-top.svg"
  30568. }
  30569. },
  30570. wingBottom: {
  30571. height: math.unit(1.93 , "feet"),
  30572. name: "Wing-bottom",
  30573. image: {
  30574. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30575. }
  30576. },
  30577. },
  30578. [
  30579. {
  30580. name: "Normal",
  30581. height: math.unit(216, "cm"),
  30582. default: true
  30583. },
  30584. ]
  30585. ))
  30586. characterMakers.push(() => makeCharacter(
  30587. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30588. {
  30589. front: {
  30590. height: math.unit(6, "feet"),
  30591. weight: math.unit(150, "lb"),
  30592. name: "Front",
  30593. image: {
  30594. source: "./media/characters/pride/front.svg",
  30595. extra: 1299/1230,
  30596. bottom: 18/1317
  30597. }
  30598. },
  30599. },
  30600. [
  30601. {
  30602. name: "Normal",
  30603. height: math.unit(7, "feet")
  30604. },
  30605. {
  30606. name: "Mini-macro",
  30607. height: math.unit(11, "feet")
  30608. },
  30609. {
  30610. name: "Macro",
  30611. height: math.unit(15, "meters"),
  30612. default: true
  30613. },
  30614. {
  30615. name: "Macro+",
  30616. height: math.unit(40, "meters")
  30617. },
  30618. ]
  30619. ))
  30620. characterMakers.push(() => makeCharacter(
  30621. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30622. {
  30623. front: {
  30624. height: math.unit(4 + 2 / 12, "feet"),
  30625. weight: math.unit(95, "lb"),
  30626. name: "Front",
  30627. image: {
  30628. source: "./media/characters/vaelophis-nyx/front.svg",
  30629. extra: 2532/2330,
  30630. bottom: 0/2532
  30631. }
  30632. },
  30633. back: {
  30634. height: math.unit(4 + 2 / 12, "feet"),
  30635. weight: math.unit(95, "lb"),
  30636. name: "Back",
  30637. image: {
  30638. source: "./media/characters/vaelophis-nyx/back.svg",
  30639. extra: 2484/2361,
  30640. bottom: 0/2484
  30641. }
  30642. },
  30643. feralSide: {
  30644. height: math.unit(2 + 1/12, "feet"),
  30645. weight: math.unit(20, "lb"),
  30646. name: "Feral (Side)",
  30647. image: {
  30648. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30649. extra: 1721/1581,
  30650. bottom: 70/1791
  30651. }
  30652. },
  30653. feralLazing: {
  30654. height: math.unit(1.08, "feet"),
  30655. weight: math.unit(20, "lb"),
  30656. name: "Feral (Lazing)",
  30657. image: {
  30658. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30659. extra: 822/822,
  30660. bottom: 248/1070
  30661. }
  30662. },
  30663. ear: {
  30664. height: math.unit(0.416, "feet"),
  30665. name: "Ear",
  30666. image: {
  30667. source: "./media/characters/vaelophis-nyx/ear.svg"
  30668. }
  30669. },
  30670. eye: {
  30671. height: math.unit(0.0748, "feet"),
  30672. name: "Eye",
  30673. image: {
  30674. source: "./media/characters/vaelophis-nyx/eye.svg"
  30675. }
  30676. },
  30677. mouth: {
  30678. height: math.unit(0.378, "feet"),
  30679. name: "Mouth",
  30680. image: {
  30681. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30682. }
  30683. },
  30684. spade: {
  30685. height: math.unit(0.55, "feet"),
  30686. name: "Spade",
  30687. image: {
  30688. source: "./media/characters/vaelophis-nyx/spade.svg"
  30689. }
  30690. },
  30691. },
  30692. [
  30693. {
  30694. name: "Normal",
  30695. height: math.unit(4 + 2/12, "feet"),
  30696. default: true
  30697. },
  30698. ]
  30699. ))
  30700. characterMakers.push(() => makeCharacter(
  30701. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30702. {
  30703. front: {
  30704. height: math.unit(7, "feet"),
  30705. weight: math.unit(231, "lb"),
  30706. name: "Front",
  30707. image: {
  30708. source: "./media/characters/flux/front.svg",
  30709. extra: 919/871,
  30710. bottom: 0/919
  30711. }
  30712. },
  30713. back: {
  30714. height: math.unit(7, "feet"),
  30715. weight: math.unit(231, "lb"),
  30716. name: "Back",
  30717. image: {
  30718. source: "./media/characters/flux/back.svg",
  30719. extra: 1040/992,
  30720. bottom: 0/1040
  30721. }
  30722. },
  30723. frontDressed: {
  30724. height: math.unit(7, "feet"),
  30725. weight: math.unit(231, "lb"),
  30726. name: "Front (Dressed)",
  30727. image: {
  30728. source: "./media/characters/flux/front-dressed.svg",
  30729. extra: 919/871,
  30730. bottom: 0/919
  30731. }
  30732. },
  30733. feralSide: {
  30734. height: math.unit(5, "feet"),
  30735. weight: math.unit(150, "lb"),
  30736. name: "Feral (Side)",
  30737. image: {
  30738. source: "./media/characters/flux/feral-side.svg",
  30739. extra: 598/528,
  30740. bottom: 28/626
  30741. }
  30742. },
  30743. head: {
  30744. height: math.unit(1.585, "feet"),
  30745. name: "Head",
  30746. image: {
  30747. source: "./media/characters/flux/head.svg"
  30748. }
  30749. },
  30750. headSide: {
  30751. height: math.unit(1.74, "feet"),
  30752. name: "Head (Side)",
  30753. image: {
  30754. source: "./media/characters/flux/head-side.svg"
  30755. }
  30756. },
  30757. headSideFire: {
  30758. height: math.unit(1.76, "feet"),
  30759. name: "Head (Side, Fire)",
  30760. image: {
  30761. source: "./media/characters/flux/head-side-fire.svg"
  30762. }
  30763. },
  30764. },
  30765. [
  30766. {
  30767. name: "Normal",
  30768. height: math.unit(7, "feet"),
  30769. default: true
  30770. },
  30771. ]
  30772. ))
  30773. characterMakers.push(() => makeCharacter(
  30774. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30775. {
  30776. front: {
  30777. height: math.unit(9, "feet"),
  30778. weight: math.unit(1012, "lb"),
  30779. name: "Front",
  30780. image: {
  30781. source: "./media/characters/ulfra-lupae/front.svg",
  30782. extra: 1083/1011,
  30783. bottom: 67/1150
  30784. }
  30785. },
  30786. },
  30787. [
  30788. {
  30789. name: "Micro",
  30790. height: math.unit(6, "inches")
  30791. },
  30792. {
  30793. name: "Socializing",
  30794. height: math.unit(6 + 5/12, "feet")
  30795. },
  30796. {
  30797. name: "Normal",
  30798. height: math.unit(9, "feet"),
  30799. default: true
  30800. },
  30801. {
  30802. name: "Macro",
  30803. height: math.unit(150, "feet")
  30804. },
  30805. ]
  30806. ))
  30807. characterMakers.push(() => makeCharacter(
  30808. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30809. {
  30810. front: {
  30811. height: math.unit(5 + 2/12, "feet"),
  30812. weight: math.unit(120, "lb"),
  30813. name: "Front",
  30814. image: {
  30815. source: "./media/characters/timber/front.svg",
  30816. extra: 2814/2705,
  30817. bottom: 181/2995
  30818. }
  30819. },
  30820. },
  30821. [
  30822. {
  30823. name: "Normal",
  30824. height: math.unit(5 + 2/12, "feet"),
  30825. default: true
  30826. },
  30827. ]
  30828. ))
  30829. characterMakers.push(() => makeCharacter(
  30830. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30831. {
  30832. front: {
  30833. height: math.unit(5 + 7/12, "feet"),
  30834. weight: math.unit(220, "lb"),
  30835. name: "Front",
  30836. image: {
  30837. source: "./media/characters/nicki/front.svg",
  30838. extra: 453/419,
  30839. bottom: 7/460
  30840. }
  30841. },
  30842. frontAlt: {
  30843. height: math.unit(5 + 7/12, "feet"),
  30844. weight: math.unit(220, "lb"),
  30845. name: "Front-alt",
  30846. image: {
  30847. source: "./media/characters/nicki/front-alt.svg",
  30848. extra: 435/411,
  30849. bottom: 12/447
  30850. }
  30851. },
  30852. back: {
  30853. height: math.unit(5 + 7/12, "feet"),
  30854. weight: math.unit(220, "lb"),
  30855. name: "Back",
  30856. image: {
  30857. source: "./media/characters/nicki/back.svg",
  30858. extra: 440/413,
  30859. bottom: 19/459
  30860. }
  30861. },
  30862. taur: {
  30863. height: math.unit(7 + 6/12, "feet"),
  30864. weight: math.unit(700, "lb"),
  30865. name: "Taur",
  30866. image: {
  30867. source: "./media/characters/nicki/taur.svg",
  30868. extra: 975/773,
  30869. bottom: 0/975
  30870. }
  30871. },
  30872. frontNsfw: {
  30873. height: math.unit(5 + 7/12, "feet"),
  30874. weight: math.unit(220, "lb"),
  30875. name: "Front (NSFW)",
  30876. image: {
  30877. source: "./media/characters/nicki/front-nsfw.svg",
  30878. extra: 453/419,
  30879. bottom: 7/460
  30880. }
  30881. },
  30882. frontNsfwAlt: {
  30883. height: math.unit(5 + 7/12, "feet"),
  30884. weight: math.unit(220, "lb"),
  30885. name: "Front (Alt, NSFW)",
  30886. image: {
  30887. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30888. extra: 435/411,
  30889. bottom: 12/447
  30890. }
  30891. },
  30892. backNsfw: {
  30893. height: math.unit(5 + 7/12, "feet"),
  30894. weight: math.unit(220, "lb"),
  30895. name: "Back (NSFW)",
  30896. image: {
  30897. source: "./media/characters/nicki/back-nsfw.svg",
  30898. extra: 440/413,
  30899. bottom: 19/459
  30900. }
  30901. },
  30902. head: {
  30903. height: math.unit(2.1, "feet"),
  30904. name: "Head",
  30905. image: {
  30906. source: "./media/characters/nicki/head.svg"
  30907. }
  30908. },
  30909. paw: {
  30910. height: math.unit(1.88, "feet"),
  30911. name: "Paw",
  30912. image: {
  30913. source: "./media/characters/nicki/paw.svg"
  30914. }
  30915. },
  30916. },
  30917. [
  30918. {
  30919. name: "Normal",
  30920. height: math.unit(5 + 7/12, "feet"),
  30921. default: true
  30922. },
  30923. ]
  30924. ))
  30925. characterMakers.push(() => makeCharacter(
  30926. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30927. {
  30928. front: {
  30929. height: math.unit(7 + 10/12, "feet"),
  30930. weight: math.unit(3.5, "tons"),
  30931. name: "Front",
  30932. image: {
  30933. source: "./media/characters/lee/front.svg",
  30934. extra: 1773/1615,
  30935. bottom: 86/1859
  30936. }
  30937. },
  30938. hand: {
  30939. height: math.unit(1.78, "feet"),
  30940. name: "Hand",
  30941. image: {
  30942. source: "./media/characters/lee/hand.svg"
  30943. }
  30944. },
  30945. maw: {
  30946. height: math.unit(1.18, "feet"),
  30947. name: "Maw",
  30948. image: {
  30949. source: "./media/characters/lee/maw.svg"
  30950. }
  30951. },
  30952. },
  30953. [
  30954. {
  30955. name: "Normal",
  30956. height: math.unit(7 + 10/12, "feet"),
  30957. default: true
  30958. },
  30959. ]
  30960. ))
  30961. characterMakers.push(() => makeCharacter(
  30962. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30963. {
  30964. front: {
  30965. height: math.unit(9, "feet"),
  30966. name: "Front",
  30967. image: {
  30968. source: "./media/characters/guti/front.svg",
  30969. extra: 4551/4355,
  30970. bottom: 123/4674
  30971. }
  30972. },
  30973. tongue: {
  30974. height: math.unit(1, "feet"),
  30975. name: "Tongue",
  30976. image: {
  30977. source: "./media/characters/guti/tongue.svg"
  30978. }
  30979. },
  30980. paw: {
  30981. height: math.unit(1.18, "feet"),
  30982. name: "Paw",
  30983. image: {
  30984. source: "./media/characters/guti/paw.svg"
  30985. }
  30986. },
  30987. },
  30988. [
  30989. {
  30990. name: "Normal",
  30991. height: math.unit(9, "feet"),
  30992. default: true
  30993. },
  30994. ]
  30995. ))
  30996. characterMakers.push(() => makeCharacter(
  30997. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30998. {
  30999. side: {
  31000. height: math.unit(5, "meters"),
  31001. name: "Side",
  31002. image: {
  31003. source: "./media/characters/vesper/side.svg",
  31004. extra: 1605/1518,
  31005. bottom: 0/1605
  31006. }
  31007. },
  31008. },
  31009. [
  31010. {
  31011. name: "Small",
  31012. height: math.unit(5, "meters")
  31013. },
  31014. {
  31015. name: "Sage",
  31016. height: math.unit(100, "meters"),
  31017. default: true
  31018. },
  31019. {
  31020. name: "Fun Size",
  31021. height: math.unit(600, "meters")
  31022. },
  31023. {
  31024. name: "Goddess",
  31025. height: math.unit(20000, "km")
  31026. },
  31027. {
  31028. name: "Maximum",
  31029. height: math.unit(5, "galaxies")
  31030. },
  31031. ]
  31032. ))
  31033. characterMakers.push(() => makeCharacter(
  31034. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31035. {
  31036. front: {
  31037. height: math.unit(6 + 3/12, "feet"),
  31038. weight: math.unit(190, "lb"),
  31039. name: "Front",
  31040. image: {
  31041. source: "./media/characters/gawain/front.svg",
  31042. extra: 2222/2139,
  31043. bottom: 90/2312
  31044. }
  31045. },
  31046. back: {
  31047. height: math.unit(6 + 3/12, "feet"),
  31048. weight: math.unit(190, "lb"),
  31049. name: "Back",
  31050. image: {
  31051. source: "./media/characters/gawain/back.svg",
  31052. extra: 2199/2111,
  31053. bottom: 73/2272
  31054. }
  31055. },
  31056. },
  31057. [
  31058. {
  31059. name: "Normal",
  31060. height: math.unit(6 + 3/12, "feet"),
  31061. default: true
  31062. },
  31063. ]
  31064. ))
  31065. characterMakers.push(() => makeCharacter(
  31066. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31067. {
  31068. side: {
  31069. height: math.unit(3.5, "meters"),
  31070. weight: math.unit(16000, "lb"),
  31071. name: "Side",
  31072. image: {
  31073. source: "./media/characters/dascalti/side.svg",
  31074. extra: 392/273,
  31075. bottom: 47/439
  31076. }
  31077. },
  31078. breath: {
  31079. height: math.unit(7.4, "feet"),
  31080. name: "Breath",
  31081. image: {
  31082. source: "./media/characters/dascalti/breath.svg"
  31083. }
  31084. },
  31085. fed: {
  31086. height: math.unit(3.6, "meters"),
  31087. weight: math.unit(16000, "lb"),
  31088. name: "Fed",
  31089. image: {
  31090. source: "./media/characters/dascalti/fed.svg",
  31091. extra: 1419/820,
  31092. bottom: 95/1514
  31093. }
  31094. },
  31095. },
  31096. [
  31097. {
  31098. name: "Normal",
  31099. height: math.unit(3.5, "meters"),
  31100. default: true
  31101. },
  31102. ]
  31103. ))
  31104. characterMakers.push(() => makeCharacter(
  31105. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31106. {
  31107. front: {
  31108. height: math.unit(3 + 5/12, "feet"),
  31109. name: "Front",
  31110. image: {
  31111. source: "./media/characters/mauve/front.svg",
  31112. extra: 1126/1033,
  31113. bottom: 65/1191
  31114. }
  31115. },
  31116. side: {
  31117. height: math.unit(3 + 5/12, "feet"),
  31118. name: "Side",
  31119. image: {
  31120. source: "./media/characters/mauve/side.svg",
  31121. extra: 1089/1001,
  31122. bottom: 29/1118
  31123. }
  31124. },
  31125. back: {
  31126. height: math.unit(3 + 5/12, "feet"),
  31127. name: "Back",
  31128. image: {
  31129. source: "./media/characters/mauve/back.svg",
  31130. extra: 1173/1053,
  31131. bottom: 109/1282
  31132. }
  31133. },
  31134. },
  31135. [
  31136. {
  31137. name: "Normal",
  31138. height: math.unit(3 + 5/12, "feet"),
  31139. default: true
  31140. },
  31141. ]
  31142. ))
  31143. characterMakers.push(() => makeCharacter(
  31144. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31145. {
  31146. front: {
  31147. height: math.unit(6 + 3/12, "feet"),
  31148. weight: math.unit(430, "lb"),
  31149. name: "Front",
  31150. image: {
  31151. source: "./media/characters/carlos/front.svg",
  31152. extra: 1964/1913,
  31153. bottom: 70/2034
  31154. }
  31155. },
  31156. },
  31157. [
  31158. {
  31159. name: "Normal",
  31160. height: math.unit(6 + 3/12, "feet"),
  31161. default: true
  31162. },
  31163. ]
  31164. ))
  31165. characterMakers.push(() => makeCharacter(
  31166. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31167. {
  31168. back: {
  31169. height: math.unit(5 + 10/12, "feet"),
  31170. weight: math.unit(200, "lb"),
  31171. name: "Back",
  31172. image: {
  31173. source: "./media/characters/jax/back.svg",
  31174. extra: 764/739,
  31175. bottom: 25/789
  31176. }
  31177. },
  31178. },
  31179. [
  31180. {
  31181. name: "Normal",
  31182. height: math.unit(5 + 10/12, "feet"),
  31183. default: true
  31184. },
  31185. ]
  31186. ))
  31187. characterMakers.push(() => makeCharacter(
  31188. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31189. {
  31190. front: {
  31191. height: math.unit(8, "feet"),
  31192. weight: math.unit(250, "lb"),
  31193. name: "Front",
  31194. image: {
  31195. source: "./media/characters/eikthynir/front.svg",
  31196. extra: 1332/1166,
  31197. bottom: 82/1414
  31198. }
  31199. },
  31200. back: {
  31201. height: math.unit(8, "feet"),
  31202. weight: math.unit(250, "lb"),
  31203. name: "Back",
  31204. image: {
  31205. source: "./media/characters/eikthynir/back.svg",
  31206. extra: 1342/1190,
  31207. bottom: 19/1361
  31208. }
  31209. },
  31210. dick: {
  31211. height: math.unit(2.35, "feet"),
  31212. name: "Dick",
  31213. image: {
  31214. source: "./media/characters/eikthynir/dick.svg"
  31215. }
  31216. },
  31217. },
  31218. [
  31219. {
  31220. name: "Normal",
  31221. height: math.unit(8, "feet"),
  31222. default: true
  31223. },
  31224. ]
  31225. ))
  31226. characterMakers.push(() => makeCharacter(
  31227. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31228. {
  31229. front: {
  31230. height: math.unit(99, "meters"),
  31231. weight: math.unit(13000, "tons"),
  31232. name: "Front",
  31233. image: {
  31234. source: "./media/characters/zlmos/front.svg",
  31235. extra: 2202/1992,
  31236. bottom: 315/2517
  31237. }
  31238. },
  31239. },
  31240. [
  31241. {
  31242. name: "Macro",
  31243. height: math.unit(99, "meters"),
  31244. default: true
  31245. },
  31246. ]
  31247. ))
  31248. characterMakers.push(() => makeCharacter(
  31249. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31250. {
  31251. front: {
  31252. height: math.unit(6 + 5/12, "feet"),
  31253. name: "Front",
  31254. image: {
  31255. source: "./media/characters/purri/front.svg",
  31256. extra: 1698/1610,
  31257. bottom: 32/1730
  31258. }
  31259. },
  31260. frontAlt: {
  31261. height: math.unit(6 + 5/12, "feet"),
  31262. name: "Front (Alt)",
  31263. image: {
  31264. source: "./media/characters/purri/front-alt.svg",
  31265. extra: 450/420,
  31266. bottom: 26/476
  31267. }
  31268. },
  31269. boots: {
  31270. height: math.unit(5.5, "feet"),
  31271. name: "Boots",
  31272. image: {
  31273. source: "./media/characters/purri/boots.svg",
  31274. extra: 905/853,
  31275. bottom: 18/923
  31276. }
  31277. },
  31278. lying: {
  31279. height: math.unit(2, "feet"),
  31280. name: "Lying",
  31281. image: {
  31282. source: "./media/characters/purri/lying.svg",
  31283. extra: 940/843,
  31284. bottom: 146/1086
  31285. }
  31286. },
  31287. devious: {
  31288. height: math.unit(1.77, "feet"),
  31289. name: "Devious",
  31290. image: {
  31291. source: "./media/characters/purri/devious.svg",
  31292. extra: 1440/1155,
  31293. bottom: 147/1587
  31294. }
  31295. },
  31296. bean: {
  31297. height: math.unit(1.94, "feet"),
  31298. name: "Bean",
  31299. image: {
  31300. source: "./media/characters/purri/bean.svg"
  31301. }
  31302. },
  31303. },
  31304. [
  31305. {
  31306. name: "Micro",
  31307. height: math.unit(1, "mm")
  31308. },
  31309. {
  31310. name: "Normal",
  31311. height: math.unit(6 + 5/12, "feet"),
  31312. default: true
  31313. },
  31314. {
  31315. name: "Macro :3c",
  31316. height: math.unit(2, "miles")
  31317. },
  31318. ]
  31319. ))
  31320. characterMakers.push(() => makeCharacter(
  31321. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31322. {
  31323. front: {
  31324. height: math.unit(6 + 2/12, "feet"),
  31325. weight: math.unit(250, "lb"),
  31326. name: "Front",
  31327. image: {
  31328. source: "./media/characters/moonlight/front.svg",
  31329. extra: 1044/908,
  31330. bottom: 56/1100
  31331. }
  31332. },
  31333. feral: {
  31334. height: math.unit(3 + 1/12, "feet"),
  31335. weight: math.unit(50, "kg"),
  31336. name: "Feral",
  31337. image: {
  31338. source: "./media/characters/moonlight/feral.svg",
  31339. extra: 3705/2791,
  31340. bottom: 145/3850
  31341. }
  31342. },
  31343. paw: {
  31344. height: math.unit(1, "feet"),
  31345. name: "Paw",
  31346. image: {
  31347. source: "./media/characters/moonlight/paw.svg"
  31348. }
  31349. },
  31350. paws: {
  31351. height: math.unit(0.98, "feet"),
  31352. name: "Paws",
  31353. image: {
  31354. source: "./media/characters/moonlight/paws.svg",
  31355. extra: 939/939,
  31356. bottom: 50/989
  31357. }
  31358. },
  31359. mouth: {
  31360. height: math.unit(0.48, "feet"),
  31361. name: "Mouth",
  31362. image: {
  31363. source: "./media/characters/moonlight/mouth.svg"
  31364. }
  31365. },
  31366. dick: {
  31367. height: math.unit(1.46, "feet"),
  31368. name: "Dick",
  31369. image: {
  31370. source: "./media/characters/moonlight/dick.svg"
  31371. }
  31372. },
  31373. },
  31374. [
  31375. {
  31376. name: "Normal",
  31377. height: math.unit(6 + 2/12, "feet"),
  31378. default: true
  31379. },
  31380. {
  31381. name: "Macro",
  31382. height: math.unit(300, "feet")
  31383. },
  31384. {
  31385. name: "Macro+",
  31386. height: math.unit(1, "mile")
  31387. },
  31388. {
  31389. name: "Mt. Moon",
  31390. height: math.unit(5, "miles")
  31391. },
  31392. {
  31393. name: "Megamacro",
  31394. height: math.unit(15, "miles")
  31395. },
  31396. ]
  31397. ))
  31398. characterMakers.push(() => makeCharacter(
  31399. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31400. {
  31401. back: {
  31402. height: math.unit(6, "feet"),
  31403. weight: math.unit(150, "lb"),
  31404. name: "Back",
  31405. image: {
  31406. source: "./media/characters/sylen/back.svg",
  31407. extra: 1335/1273,
  31408. bottom: 107/1442
  31409. }
  31410. },
  31411. },
  31412. [
  31413. {
  31414. name: "Normal",
  31415. height: math.unit(5 + 5/12, "feet")
  31416. },
  31417. {
  31418. name: "Megamacro",
  31419. height: math.unit(3, "miles"),
  31420. default: true
  31421. },
  31422. ]
  31423. ))
  31424. characterMakers.push(() => makeCharacter(
  31425. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31426. {
  31427. front: {
  31428. height: math.unit(6, "feet"),
  31429. weight: math.unit(190, "lb"),
  31430. name: "Front",
  31431. image: {
  31432. source: "./media/characters/huttser/front.svg",
  31433. extra: 1152/1058,
  31434. bottom: 23/1175
  31435. }
  31436. },
  31437. side: {
  31438. height: math.unit(6, "feet"),
  31439. weight: math.unit(190, "lb"),
  31440. name: "Side",
  31441. image: {
  31442. source: "./media/characters/huttser/side.svg",
  31443. extra: 1174/1065,
  31444. bottom: 18/1192
  31445. }
  31446. },
  31447. back: {
  31448. height: math.unit(6, "feet"),
  31449. weight: math.unit(190, "lb"),
  31450. name: "Back",
  31451. image: {
  31452. source: "./media/characters/huttser/back.svg",
  31453. extra: 1158/1056,
  31454. bottom: 12/1170
  31455. }
  31456. },
  31457. },
  31458. [
  31459. ]
  31460. ))
  31461. characterMakers.push(() => makeCharacter(
  31462. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31463. {
  31464. side: {
  31465. height: math.unit(12 + 9/12, "feet"),
  31466. weight: math.unit(15000, "lb"),
  31467. name: "Side",
  31468. image: {
  31469. source: "./media/characters/faan/side.svg",
  31470. extra: 2747/2697,
  31471. bottom: 0/2747
  31472. }
  31473. },
  31474. front: {
  31475. height: math.unit(12 + 9/12, "feet"),
  31476. weight: math.unit(15000, "lb"),
  31477. name: "Front",
  31478. image: {
  31479. source: "./media/characters/faan/front.svg",
  31480. extra: 607/571,
  31481. bottom: 24/631
  31482. }
  31483. },
  31484. head: {
  31485. height: math.unit(2.85, "feet"),
  31486. name: "Head",
  31487. image: {
  31488. source: "./media/characters/faan/head.svg"
  31489. }
  31490. },
  31491. headAlt: {
  31492. height: math.unit(3.13, "feet"),
  31493. name: "Head-alt",
  31494. image: {
  31495. source: "./media/characters/faan/head-alt.svg"
  31496. }
  31497. },
  31498. },
  31499. [
  31500. {
  31501. name: "Normal",
  31502. height: math.unit(12 + 9/12, "feet"),
  31503. default: true
  31504. },
  31505. ]
  31506. ))
  31507. characterMakers.push(() => makeCharacter(
  31508. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31509. {
  31510. front: {
  31511. height: math.unit(6, "feet"),
  31512. weight: math.unit(300, "lb"),
  31513. name: "Front",
  31514. image: {
  31515. source: "./media/characters/tanio/front.svg",
  31516. extra: 711/673,
  31517. bottom: 25/736
  31518. }
  31519. },
  31520. },
  31521. [
  31522. {
  31523. name: "Normal",
  31524. height: math.unit(6, "feet"),
  31525. default: true
  31526. },
  31527. ]
  31528. ))
  31529. characterMakers.push(() => makeCharacter(
  31530. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31531. {
  31532. front: {
  31533. height: math.unit(3, "inches"),
  31534. name: "Front",
  31535. image: {
  31536. source: "./media/characters/noboru/front.svg",
  31537. extra: 1039/932,
  31538. bottom: 18/1057
  31539. }
  31540. },
  31541. },
  31542. [
  31543. {
  31544. name: "Micro",
  31545. height: math.unit(3, "inches"),
  31546. default: true
  31547. },
  31548. ]
  31549. ))
  31550. characterMakers.push(() => makeCharacter(
  31551. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31552. {
  31553. front: {
  31554. height: math.unit(1.85, "meters"),
  31555. weight: math.unit(80, "kg"),
  31556. name: "Front",
  31557. image: {
  31558. source: "./media/characters/daniel-barrett/front.svg",
  31559. extra: 355/337,
  31560. bottom: 9/364
  31561. }
  31562. },
  31563. },
  31564. [
  31565. {
  31566. name: "Pico",
  31567. height: math.unit(0.0433, "mm")
  31568. },
  31569. {
  31570. name: "Nano",
  31571. height: math.unit(1.5, "mm")
  31572. },
  31573. {
  31574. name: "Micro",
  31575. height: math.unit(5.3, "cm"),
  31576. default: true
  31577. },
  31578. {
  31579. name: "Normal",
  31580. height: math.unit(1.85, "meters")
  31581. },
  31582. {
  31583. name: "Macro",
  31584. height: math.unit(64.7, "meters")
  31585. },
  31586. {
  31587. name: "Megamacro",
  31588. height: math.unit(2.26, "km")
  31589. },
  31590. {
  31591. name: "Gigamacro",
  31592. height: math.unit(79, "km")
  31593. },
  31594. {
  31595. name: "Teramacro",
  31596. height: math.unit(2765, "km")
  31597. },
  31598. {
  31599. name: "Petamacro",
  31600. height: math.unit(96678, "km")
  31601. },
  31602. ]
  31603. ))
  31604. characterMakers.push(() => makeCharacter(
  31605. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31606. {
  31607. front: {
  31608. height: math.unit(30, "meters"),
  31609. weight: math.unit(400, "tons"),
  31610. name: "Front",
  31611. image: {
  31612. source: "./media/characters/zeel/front.svg",
  31613. extra: 2599/2599,
  31614. bottom: 226/2825
  31615. }
  31616. },
  31617. },
  31618. [
  31619. {
  31620. name: "Macro",
  31621. height: math.unit(30, "meters"),
  31622. default: true
  31623. },
  31624. ]
  31625. ))
  31626. characterMakers.push(() => makeCharacter(
  31627. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31628. {
  31629. front: {
  31630. height: math.unit(6 + 7/12, "feet"),
  31631. weight: math.unit(210, "lb"),
  31632. name: "Front",
  31633. image: {
  31634. source: "./media/characters/tarn/front.svg",
  31635. extra: 3517/3220,
  31636. bottom: 91/3608
  31637. }
  31638. },
  31639. back: {
  31640. height: math.unit(6 + 7/12, "feet"),
  31641. weight: math.unit(210, "lb"),
  31642. name: "Back",
  31643. image: {
  31644. source: "./media/characters/tarn/back.svg",
  31645. extra: 3566/3241,
  31646. bottom: 34/3600
  31647. }
  31648. },
  31649. dick: {
  31650. height: math.unit(1.65, "feet"),
  31651. name: "Dick",
  31652. image: {
  31653. source: "./media/characters/tarn/dick.svg"
  31654. }
  31655. },
  31656. paw: {
  31657. height: math.unit(1.80, "feet"),
  31658. name: "Paw",
  31659. image: {
  31660. source: "./media/characters/tarn/paw.svg"
  31661. }
  31662. },
  31663. tongue: {
  31664. height: math.unit(0.97, "feet"),
  31665. name: "Tongue",
  31666. image: {
  31667. source: "./media/characters/tarn/tongue.svg"
  31668. }
  31669. },
  31670. },
  31671. [
  31672. {
  31673. name: "Micro",
  31674. height: math.unit(4, "inches")
  31675. },
  31676. {
  31677. name: "Normal",
  31678. height: math.unit(6 + 7/12, "feet"),
  31679. default: true
  31680. },
  31681. {
  31682. name: "Macro",
  31683. height: math.unit(300, "feet")
  31684. },
  31685. ]
  31686. ))
  31687. characterMakers.push(() => makeCharacter(
  31688. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31689. {
  31690. front: {
  31691. height: math.unit(5 + 7/12, "feet"),
  31692. weight: math.unit(80, "kg"),
  31693. name: "Front",
  31694. image: {
  31695. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31696. extra: 3023/2865,
  31697. bottom: 33/3056
  31698. }
  31699. },
  31700. back: {
  31701. height: math.unit(5 + 7/12, "feet"),
  31702. weight: math.unit(80, "kg"),
  31703. name: "Back",
  31704. image: {
  31705. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31706. extra: 3020/2886,
  31707. bottom: 30/3050
  31708. }
  31709. },
  31710. dick: {
  31711. height: math.unit(0.98, "feet"),
  31712. name: "Dick",
  31713. image: {
  31714. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31715. }
  31716. },
  31717. anatomy: {
  31718. height: math.unit(2.86, "feet"),
  31719. name: "Anatomy",
  31720. image: {
  31721. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31722. }
  31723. },
  31724. },
  31725. [
  31726. {
  31727. name: "Really Small",
  31728. height: math.unit(2, "inches")
  31729. },
  31730. {
  31731. name: "Micro",
  31732. height: math.unit(5.583, "inches")
  31733. },
  31734. {
  31735. name: "Normal",
  31736. height: math.unit(5 + 7/12, "feet"),
  31737. default: true
  31738. },
  31739. {
  31740. name: "Macro",
  31741. height: math.unit(67, "feet")
  31742. },
  31743. {
  31744. name: "Megamacro",
  31745. height: math.unit(134, "feet")
  31746. },
  31747. ]
  31748. ))
  31749. characterMakers.push(() => makeCharacter(
  31750. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31751. {
  31752. front: {
  31753. height: math.unit(9, "feet"),
  31754. weight: math.unit(120, "lb"),
  31755. name: "Front",
  31756. image: {
  31757. source: "./media/characters/sally/front.svg",
  31758. extra: 1506/1349,
  31759. bottom: 66/1572
  31760. }
  31761. },
  31762. },
  31763. [
  31764. {
  31765. name: "Normal",
  31766. height: math.unit(9, "feet"),
  31767. default: true
  31768. },
  31769. ]
  31770. ))
  31771. characterMakers.push(() => makeCharacter(
  31772. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31773. {
  31774. front: {
  31775. height: math.unit(8, "feet"),
  31776. weight: math.unit(900, "lb"),
  31777. name: "Front",
  31778. image: {
  31779. source: "./media/characters/owen/front.svg",
  31780. extra: 1761/1657,
  31781. bottom: 74/1835
  31782. }
  31783. },
  31784. side: {
  31785. height: math.unit(8, "feet"),
  31786. weight: math.unit(900, "lb"),
  31787. name: "Side",
  31788. image: {
  31789. source: "./media/characters/owen/side.svg",
  31790. extra: 1797/1734,
  31791. bottom: 30/1827
  31792. }
  31793. },
  31794. back: {
  31795. height: math.unit(8, "feet"),
  31796. weight: math.unit(900, "lb"),
  31797. name: "Back",
  31798. image: {
  31799. source: "./media/characters/owen/back.svg",
  31800. extra: 1796/1706,
  31801. bottom: 59/1855
  31802. }
  31803. },
  31804. maw: {
  31805. height: math.unit(1.76, "feet"),
  31806. name: "Maw",
  31807. image: {
  31808. source: "./media/characters/owen/maw.svg"
  31809. }
  31810. },
  31811. },
  31812. [
  31813. {
  31814. name: "Normal",
  31815. height: math.unit(8, "feet"),
  31816. default: true
  31817. },
  31818. ]
  31819. ))
  31820. characterMakers.push(() => makeCharacter(
  31821. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31822. {
  31823. front: {
  31824. height: math.unit(4, "feet"),
  31825. weight: math.unit(400, "lb"),
  31826. name: "Front",
  31827. image: {
  31828. source: "./media/characters/ryth/front.svg",
  31829. extra: 1920/1748,
  31830. bottom: 42/1962
  31831. }
  31832. },
  31833. back: {
  31834. height: math.unit(4, "feet"),
  31835. weight: math.unit(400, "lb"),
  31836. name: "Back",
  31837. image: {
  31838. source: "./media/characters/ryth/back.svg",
  31839. extra: 1897/1690,
  31840. bottom: 89/1986
  31841. }
  31842. },
  31843. mouth: {
  31844. height: math.unit(1.39, "feet"),
  31845. name: "Mouth",
  31846. image: {
  31847. source: "./media/characters/ryth/mouth.svg"
  31848. }
  31849. },
  31850. tailmaw: {
  31851. height: math.unit(1.23, "feet"),
  31852. name: "Tailmaw",
  31853. image: {
  31854. source: "./media/characters/ryth/tailmaw.svg"
  31855. }
  31856. },
  31857. goia: {
  31858. height: math.unit(12, "feet"),
  31859. weight: math.unit(10800, "lb"),
  31860. name: "Goia",
  31861. image: {
  31862. source: "./media/characters/ryth/goia.svg",
  31863. extra: 3450/3198,
  31864. bottom: 61/3511
  31865. }
  31866. },
  31867. },
  31868. [
  31869. {
  31870. name: "Normal",
  31871. height: math.unit(4, "feet"),
  31872. default: true
  31873. },
  31874. ]
  31875. ))
  31876. characterMakers.push(() => makeCharacter(
  31877. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31878. {
  31879. front: {
  31880. height: math.unit(7, "feet"),
  31881. weight: math.unit(180, "lb"),
  31882. name: "Front",
  31883. image: {
  31884. source: "./media/characters/necrolance/front.svg",
  31885. extra: 1062/947,
  31886. bottom: 41/1103
  31887. }
  31888. },
  31889. back: {
  31890. height: math.unit(7, "feet"),
  31891. weight: math.unit(180, "lb"),
  31892. name: "Back",
  31893. image: {
  31894. source: "./media/characters/necrolance/back.svg",
  31895. extra: 1045/984,
  31896. bottom: 14/1059
  31897. }
  31898. },
  31899. wing: {
  31900. height: math.unit(2.67, "feet"),
  31901. name: "Wing",
  31902. image: {
  31903. source: "./media/characters/necrolance/wing.svg"
  31904. }
  31905. },
  31906. },
  31907. [
  31908. {
  31909. name: "Normal",
  31910. height: math.unit(7, "feet"),
  31911. default: true
  31912. },
  31913. ]
  31914. ))
  31915. characterMakers.push(() => makeCharacter(
  31916. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31917. {
  31918. front: {
  31919. height: math.unit(76, "meters"),
  31920. weight: math.unit(30000, "tons"),
  31921. name: "Front",
  31922. image: {
  31923. source: "./media/characters/tyler/front.svg",
  31924. extra: 1640/1640,
  31925. bottom: 114/1754
  31926. }
  31927. },
  31928. },
  31929. [
  31930. {
  31931. name: "Macro",
  31932. height: math.unit(76, "meters"),
  31933. default: true
  31934. },
  31935. ]
  31936. ))
  31937. characterMakers.push(() => makeCharacter(
  31938. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31939. {
  31940. front: {
  31941. height: math.unit(4 + 11/12, "feet"),
  31942. weight: math.unit(132, "lb"),
  31943. name: "Front",
  31944. image: {
  31945. source: "./media/characters/icey/front.svg",
  31946. extra: 2750/2550,
  31947. bottom: 33/2783
  31948. }
  31949. },
  31950. back: {
  31951. height: math.unit(4 + 11/12, "feet"),
  31952. weight: math.unit(132, "lb"),
  31953. name: "Back",
  31954. image: {
  31955. source: "./media/characters/icey/back.svg",
  31956. extra: 2624/2481,
  31957. bottom: 35/2659
  31958. }
  31959. },
  31960. },
  31961. [
  31962. {
  31963. name: "Normal",
  31964. height: math.unit(4 + 11/12, "feet"),
  31965. default: true
  31966. },
  31967. ]
  31968. ))
  31969. characterMakers.push(() => makeCharacter(
  31970. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31971. {
  31972. front: {
  31973. height: math.unit(100, "feet"),
  31974. weight: math.unit(0, "lb"),
  31975. name: "Front",
  31976. image: {
  31977. source: "./media/characters/smile/front.svg",
  31978. extra: 2983/2912,
  31979. bottom: 162/3145
  31980. }
  31981. },
  31982. back: {
  31983. height: math.unit(100, "feet"),
  31984. weight: math.unit(0, "lb"),
  31985. name: "Back",
  31986. image: {
  31987. source: "./media/characters/smile/back.svg",
  31988. extra: 3143/3031,
  31989. bottom: 91/3234
  31990. }
  31991. },
  31992. head: {
  31993. height: math.unit(26.3, "feet"),
  31994. weight: math.unit(0, "lb"),
  31995. name: "Head",
  31996. image: {
  31997. source: "./media/characters/smile/head.svg"
  31998. }
  31999. },
  32000. collar: {
  32001. height: math.unit(5.3, "feet"),
  32002. weight: math.unit(0, "lb"),
  32003. name: "Collar",
  32004. image: {
  32005. source: "./media/characters/smile/collar.svg"
  32006. }
  32007. },
  32008. },
  32009. [
  32010. {
  32011. name: "Macro",
  32012. height: math.unit(100, "feet"),
  32013. default: true
  32014. },
  32015. ]
  32016. ))
  32017. characterMakers.push(() => makeCharacter(
  32018. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32019. {
  32020. dragon: {
  32021. height: math.unit(26, "feet"),
  32022. weight: math.unit(36, "tons"),
  32023. name: "Dragon",
  32024. image: {
  32025. source: "./media/characters/arimphae/dragon.svg",
  32026. extra: 1574/983,
  32027. bottom: 357/1931
  32028. }
  32029. },
  32030. drake: {
  32031. height: math.unit(9, "feet"),
  32032. weight: math.unit(1.5, "tons"),
  32033. name: "Drake",
  32034. image: {
  32035. source: "./media/characters/arimphae/drake.svg",
  32036. extra: 1120/925,
  32037. bottom: 435/1555
  32038. }
  32039. },
  32040. },
  32041. [
  32042. {
  32043. name: "Small",
  32044. height: math.unit(26*5/9, "feet")
  32045. },
  32046. {
  32047. name: "Normal",
  32048. height: math.unit(26, "feet"),
  32049. default: true
  32050. },
  32051. ]
  32052. ))
  32053. characterMakers.push(() => makeCharacter(
  32054. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32055. {
  32056. front: {
  32057. height: math.unit(8 + 9/12, "feet"),
  32058. name: "Front",
  32059. image: {
  32060. source: "./media/characters/xander/front.svg",
  32061. extra: 848/673,
  32062. bottom: 62/910
  32063. }
  32064. },
  32065. },
  32066. [
  32067. {
  32068. name: "Normal",
  32069. height: math.unit(8 + 9/12, "feet"),
  32070. default: true
  32071. },
  32072. {
  32073. name: "Gaze Grabber",
  32074. height: math.unit(13 + 8/12, "feet")
  32075. },
  32076. {
  32077. name: "Jaw Dropper",
  32078. height: math.unit(27, "feet")
  32079. },
  32080. {
  32081. name: "Show Stopper",
  32082. height: math.unit(136, "feet")
  32083. },
  32084. {
  32085. name: "Superstar",
  32086. height: math.unit(1.9e6, "miles")
  32087. },
  32088. ]
  32089. ))
  32090. characterMakers.push(() => makeCharacter(
  32091. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32092. {
  32093. side: {
  32094. height: math.unit(2100, "feet"),
  32095. name: "Side",
  32096. image: {
  32097. source: "./media/characters/osiris/side.svg",
  32098. extra: 1105/939,
  32099. bottom: 167/1272
  32100. }
  32101. },
  32102. },
  32103. [
  32104. {
  32105. name: "Macro",
  32106. height: math.unit(2100, "feet"),
  32107. default: true
  32108. },
  32109. ]
  32110. ))
  32111. characterMakers.push(() => makeCharacter(
  32112. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32113. {
  32114. front: {
  32115. height: math.unit(6 + 8/12, "feet"),
  32116. weight: math.unit(225, "lb"),
  32117. name: "Front",
  32118. image: {
  32119. source: "./media/characters/rhys-londe/front.svg",
  32120. extra: 2258/2141,
  32121. bottom: 188/2446
  32122. }
  32123. },
  32124. back: {
  32125. height: math.unit(6 + 8/12, "feet"),
  32126. weight: math.unit(225, "lb"),
  32127. name: "Back",
  32128. image: {
  32129. source: "./media/characters/rhys-londe/back.svg",
  32130. extra: 2237/2137,
  32131. bottom: 63/2300
  32132. }
  32133. },
  32134. frontNsfw: {
  32135. height: math.unit(6 + 8/12, "feet"),
  32136. weight: math.unit(225, "lb"),
  32137. name: "Front (NSFW)",
  32138. image: {
  32139. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32140. extra: 2258/2141,
  32141. bottom: 188/2446
  32142. }
  32143. },
  32144. backNsfw: {
  32145. height: math.unit(6 + 8/12, "feet"),
  32146. weight: math.unit(225, "lb"),
  32147. name: "Back (NSFW)",
  32148. image: {
  32149. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32150. extra: 2237/2137,
  32151. bottom: 63/2300
  32152. }
  32153. },
  32154. dick: {
  32155. height: math.unit(30, "inches"),
  32156. name: "Dick",
  32157. image: {
  32158. source: "./media/characters/rhys-londe/dick.svg"
  32159. }
  32160. },
  32161. maw: {
  32162. height: math.unit(1.6, "feet"),
  32163. name: "Maw",
  32164. image: {
  32165. source: "./media/characters/rhys-londe/maw.svg"
  32166. }
  32167. },
  32168. },
  32169. [
  32170. {
  32171. name: "Normal",
  32172. height: math.unit(6 + 8/12, "feet"),
  32173. default: true
  32174. },
  32175. ]
  32176. ))
  32177. characterMakers.push(() => makeCharacter(
  32178. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32179. {
  32180. front: {
  32181. height: math.unit(3 + 10/12, "feet"),
  32182. weight: math.unit(90, "lb"),
  32183. name: "Front",
  32184. image: {
  32185. source: "./media/characters/taivas-ensim/front.svg",
  32186. extra: 1327/1216,
  32187. bottom: 96/1423
  32188. }
  32189. },
  32190. back: {
  32191. height: math.unit(3 + 10/12, "feet"),
  32192. weight: math.unit(90, "lb"),
  32193. name: "Back",
  32194. image: {
  32195. source: "./media/characters/taivas-ensim/back.svg",
  32196. extra: 1355/1247,
  32197. bottom: 11/1366
  32198. }
  32199. },
  32200. frontNsfw: {
  32201. height: math.unit(3 + 10/12, "feet"),
  32202. weight: math.unit(90, "lb"),
  32203. name: "Front (NSFW)",
  32204. image: {
  32205. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32206. extra: 1327/1216,
  32207. bottom: 96/1423
  32208. }
  32209. },
  32210. backNsfw: {
  32211. height: math.unit(3 + 10/12, "feet"),
  32212. weight: math.unit(90, "lb"),
  32213. name: "Back (NSFW)",
  32214. image: {
  32215. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32216. extra: 1355/1247,
  32217. bottom: 11/1366
  32218. }
  32219. },
  32220. },
  32221. [
  32222. {
  32223. name: "Normal",
  32224. height: math.unit(3 + 10/12, "feet"),
  32225. default: true
  32226. },
  32227. ]
  32228. ))
  32229. characterMakers.push(() => makeCharacter(
  32230. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32231. {
  32232. front: {
  32233. height: math.unit(9 + 6/12, "feet"),
  32234. weight: math.unit(940, "lb"),
  32235. name: "Front",
  32236. image: {
  32237. source: "./media/characters/byliss/front.svg",
  32238. extra: 1327/1290,
  32239. bottom: 82/1409
  32240. }
  32241. },
  32242. back: {
  32243. height: math.unit(9 + 6/12, "feet"),
  32244. weight: math.unit(940, "lb"),
  32245. name: "Back",
  32246. image: {
  32247. source: "./media/characters/byliss/back.svg",
  32248. extra: 1376/1349,
  32249. bottom: 9/1385
  32250. }
  32251. },
  32252. frontNsfw: {
  32253. height: math.unit(9 + 6/12, "feet"),
  32254. weight: math.unit(940, "lb"),
  32255. name: "Front (NSFW)",
  32256. image: {
  32257. source: "./media/characters/byliss/front-nsfw.svg",
  32258. extra: 1327/1290,
  32259. bottom: 82/1409
  32260. }
  32261. },
  32262. backNsfw: {
  32263. height: math.unit(9 + 6/12, "feet"),
  32264. weight: math.unit(940, "lb"),
  32265. name: "Back (NSFW)",
  32266. image: {
  32267. source: "./media/characters/byliss/back-nsfw.svg",
  32268. extra: 1376/1349,
  32269. bottom: 9/1385
  32270. }
  32271. },
  32272. },
  32273. [
  32274. {
  32275. name: "Normal",
  32276. height: math.unit(9 + 6/12, "feet"),
  32277. default: true
  32278. },
  32279. ]
  32280. ))
  32281. characterMakers.push(() => makeCharacter(
  32282. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32283. {
  32284. front: {
  32285. height: math.unit(5 + 2/12, "feet"),
  32286. weight: math.unit(200, "lb"),
  32287. name: "Front",
  32288. image: {
  32289. source: "./media/characters/noraly/front.svg",
  32290. extra: 4985/4773,
  32291. bottom: 150/5135
  32292. }
  32293. },
  32294. full: {
  32295. height: math.unit(5 + 2/12, "feet"),
  32296. weight: math.unit(164, "lb"),
  32297. name: "Full",
  32298. image: {
  32299. source: "./media/characters/noraly/full.svg",
  32300. extra: 1114/1059,
  32301. bottom: 35/1149
  32302. }
  32303. },
  32304. fuller: {
  32305. height: math.unit(5 + 2/12, "feet"),
  32306. weight: math.unit(230, "lb"),
  32307. name: "Fuller",
  32308. image: {
  32309. source: "./media/characters/noraly/fuller.svg",
  32310. extra: 1114/1059,
  32311. bottom: 35/1149
  32312. }
  32313. },
  32314. fullest: {
  32315. height: math.unit(5 + 2/12, "feet"),
  32316. weight: math.unit(300, "lb"),
  32317. name: "Fullest",
  32318. image: {
  32319. source: "./media/characters/noraly/fullest.svg",
  32320. extra: 1114/1059,
  32321. bottom: 35/1149
  32322. }
  32323. },
  32324. },
  32325. [
  32326. {
  32327. name: "Normal",
  32328. height: math.unit(5 + 2/12, "feet"),
  32329. default: true
  32330. },
  32331. ]
  32332. ))
  32333. characterMakers.push(() => makeCharacter(
  32334. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32335. {
  32336. front: {
  32337. height: math.unit(5 + 2/12, "feet"),
  32338. weight: math.unit(210, "lb"),
  32339. name: "Front",
  32340. image: {
  32341. source: "./media/characters/pera/front.svg",
  32342. extra: 1560/1531,
  32343. bottom: 165/1725
  32344. }
  32345. },
  32346. back: {
  32347. height: math.unit(5 + 2/12, "feet"),
  32348. weight: math.unit(210, "lb"),
  32349. name: "Back",
  32350. image: {
  32351. source: "./media/characters/pera/back.svg",
  32352. extra: 1523/1493,
  32353. bottom: 152/1675
  32354. }
  32355. },
  32356. dick: {
  32357. height: math.unit(2.4, "feet"),
  32358. name: "Dick",
  32359. image: {
  32360. source: "./media/characters/pera/dick.svg"
  32361. }
  32362. },
  32363. },
  32364. [
  32365. {
  32366. name: "Normal",
  32367. height: math.unit(5 + 2/12, "feet"),
  32368. default: true
  32369. },
  32370. ]
  32371. ))
  32372. characterMakers.push(() => makeCharacter(
  32373. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32374. {
  32375. front: {
  32376. height: math.unit(12, "feet"),
  32377. weight: math.unit(3200, "lb"),
  32378. name: "Front",
  32379. image: {
  32380. source: "./media/characters/julian/front.svg",
  32381. extra: 2962/2701,
  32382. bottom: 184/3146
  32383. }
  32384. },
  32385. maw: {
  32386. height: math.unit(5.35, "feet"),
  32387. name: "Maw",
  32388. image: {
  32389. source: "./media/characters/julian/maw.svg"
  32390. }
  32391. },
  32392. paw: {
  32393. height: math.unit(3.07, "feet"),
  32394. name: "Paw",
  32395. image: {
  32396. source: "./media/characters/julian/paw.svg"
  32397. }
  32398. },
  32399. },
  32400. [
  32401. {
  32402. name: "Default",
  32403. height: math.unit(12, "feet"),
  32404. default: true
  32405. },
  32406. {
  32407. name: "Big",
  32408. height: math.unit(50, "feet")
  32409. },
  32410. {
  32411. name: "Really Big",
  32412. height: math.unit(1, "mile")
  32413. },
  32414. {
  32415. name: "Extremely Big",
  32416. height: math.unit(100, "miles")
  32417. },
  32418. {
  32419. name: "Planet Hugger",
  32420. height: math.unit(200, "megameters")
  32421. },
  32422. {
  32423. name: "Unreasonably Big",
  32424. height: math.unit(1e300, "meters")
  32425. },
  32426. ]
  32427. ))
  32428. characterMakers.push(() => makeCharacter(
  32429. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32430. {
  32431. solgooleo: {
  32432. height: math.unit(4, "meters"),
  32433. weight: math.unit(6000*1.5, "kg"),
  32434. volume: math.unit(6000, "liters"),
  32435. name: "Solgooleo",
  32436. image: {
  32437. source: "./media/characters/pi/solgooleo.svg",
  32438. extra: 388/331,
  32439. bottom: 29/417
  32440. }
  32441. },
  32442. },
  32443. [
  32444. {
  32445. name: "Normal",
  32446. height: math.unit(4, "meters"),
  32447. default: true
  32448. },
  32449. ]
  32450. ))
  32451. characterMakers.push(() => makeCharacter(
  32452. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32453. {
  32454. front: {
  32455. height: math.unit(8 + 2/12, "feet"),
  32456. weight: math.unit(4, "tons"),
  32457. name: "Front",
  32458. image: {
  32459. source: "./media/characters/shaun/front.svg",
  32460. extra: 1550/1505,
  32461. bottom: 353/1903
  32462. }
  32463. },
  32464. },
  32465. [
  32466. {
  32467. name: "Lorg",
  32468. height: math.unit(8 + 2/12, "feet"),
  32469. default: true
  32470. },
  32471. ]
  32472. ))
  32473. characterMakers.push(() => makeCharacter(
  32474. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32475. {
  32476. front: {
  32477. height: math.unit(7, "feet"),
  32478. name: "Front",
  32479. image: {
  32480. source: "./media/characters/sini/front.svg",
  32481. extra: 726/678,
  32482. bottom: 35/761
  32483. }
  32484. },
  32485. back: {
  32486. height: math.unit(7, "feet"),
  32487. name: "Back",
  32488. image: {
  32489. source: "./media/characters/sini/back.svg",
  32490. extra: 743/701,
  32491. bottom: 12/755
  32492. }
  32493. },
  32494. mawAnthro: {
  32495. height: math.unit(2.14, "feet"),
  32496. name: "Maw (Anthro)",
  32497. image: {
  32498. source: "./media/characters/sini/maw-anthro.svg"
  32499. }
  32500. },
  32501. dick: {
  32502. height: math.unit(1.45, "feet"),
  32503. name: "Dick (Anthro)",
  32504. image: {
  32505. source: "./media/characters/sini/dick-anthro.svg"
  32506. }
  32507. },
  32508. feral: {
  32509. height: math.unit(16, "feet"),
  32510. name: "Feral",
  32511. image: {
  32512. source: "./media/characters/sini/feral.svg",
  32513. extra: 814/605,
  32514. bottom: 11/825
  32515. }
  32516. },
  32517. mawFeral: {
  32518. height: math.unit(5.66, "feet"),
  32519. name: "Maw-feral",
  32520. image: {
  32521. source: "./media/characters/sini/maw-feral.svg"
  32522. }
  32523. },
  32524. footFeral: {
  32525. height: math.unit(5.17, "feet"),
  32526. name: "Foot-feral",
  32527. image: {
  32528. source: "./media/characters/sini/foot-feral.svg"
  32529. }
  32530. },
  32531. },
  32532. [
  32533. {
  32534. name: "Normal",
  32535. height: math.unit(7, "feet"),
  32536. default: true
  32537. },
  32538. ]
  32539. ))
  32540. characterMakers.push(() => makeCharacter(
  32541. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32542. {
  32543. side: {
  32544. height: math.unit(13, "meters"),
  32545. weight: math.unit(9072, "kg"),
  32546. name: "Side",
  32547. image: {
  32548. source: "./media/characters/raylldo/side.svg",
  32549. extra: 403/344,
  32550. bottom: 42/445
  32551. }
  32552. },
  32553. leaping: {
  32554. height: math.unit(12.3, "meters"),
  32555. weight: math.unit(9072, "kg"),
  32556. name: "Leaping",
  32557. image: {
  32558. source: "./media/characters/raylldo/leaping.svg",
  32559. extra: 470/249,
  32560. bottom: 13/483
  32561. }
  32562. },
  32563. flying: {
  32564. height: math.unit(18, "meters"),
  32565. weight: math.unit(9072, "kg"),
  32566. name: "Flying",
  32567. image: {
  32568. source: "./media/characters/raylldo/flying.svg"
  32569. }
  32570. },
  32571. head: {
  32572. height: math.unit(5.85, "meters"),
  32573. name: "Head",
  32574. image: {
  32575. source: "./media/characters/raylldo/head.svg"
  32576. }
  32577. },
  32578. maw: {
  32579. height: math.unit(5.32, "meters"),
  32580. name: "Maw",
  32581. image: {
  32582. source: "./media/characters/raylldo/maw.svg"
  32583. }
  32584. },
  32585. eye: {
  32586. height: math.unit(0.54, "meters"),
  32587. name: "Eye",
  32588. image: {
  32589. source: "./media/characters/raylldo/eye.svg"
  32590. }
  32591. },
  32592. },
  32593. [
  32594. {
  32595. name: "Normal",
  32596. height: math.unit(13, "meters"),
  32597. default: true
  32598. },
  32599. ]
  32600. ))
  32601. characterMakers.push(() => makeCharacter(
  32602. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32603. {
  32604. anthroFront: {
  32605. height: math.unit(9, "feet"),
  32606. weight: math.unit(600, "lb"),
  32607. name: "Anthro (Front)",
  32608. image: {
  32609. source: "./media/characters/glint/anthro-front.svg",
  32610. extra: 1097/1018,
  32611. bottom: 28/1125
  32612. }
  32613. },
  32614. anthroBack: {
  32615. height: math.unit(9, "feet"),
  32616. weight: math.unit(600, "lb"),
  32617. name: "Anthro (Back)",
  32618. image: {
  32619. source: "./media/characters/glint/anthro-back.svg",
  32620. extra: 1154/997,
  32621. bottom: 36/1190
  32622. }
  32623. },
  32624. feral: {
  32625. height: math.unit(11, "feet"),
  32626. weight: math.unit(50000, "lb"),
  32627. name: "Feral",
  32628. image: {
  32629. source: "./media/characters/glint/feral.svg",
  32630. extra: 3035/1585,
  32631. bottom: 1169/4204
  32632. }
  32633. },
  32634. dickAnthro: {
  32635. height: math.unit(0.7, "meters"),
  32636. name: "Dick (Anthro)",
  32637. image: {
  32638. source: "./media/characters/glint/dick-anthro.svg"
  32639. }
  32640. },
  32641. dickFeral: {
  32642. height: math.unit(2.65, "meters"),
  32643. name: "Dick (Feral)",
  32644. image: {
  32645. source: "./media/characters/glint/dick-feral.svg"
  32646. }
  32647. },
  32648. slitHidden: {
  32649. height: math.unit(5.85, "meters"),
  32650. name: "Slit (Hidden)",
  32651. image: {
  32652. source: "./media/characters/glint/slit-hidden.svg"
  32653. }
  32654. },
  32655. slitErect: {
  32656. height: math.unit(5.85, "meters"),
  32657. name: "Slit (Erect)",
  32658. image: {
  32659. source: "./media/characters/glint/slit-erect.svg"
  32660. }
  32661. },
  32662. mawAnthro: {
  32663. height: math.unit(0.63, "meters"),
  32664. name: "Maw (Anthro)",
  32665. image: {
  32666. source: "./media/characters/glint/maw.svg"
  32667. }
  32668. },
  32669. mawFeral: {
  32670. height: math.unit(2.89, "meters"),
  32671. name: "Maw (Feral)",
  32672. image: {
  32673. source: "./media/characters/glint/maw.svg"
  32674. }
  32675. },
  32676. },
  32677. [
  32678. {
  32679. name: "Normal",
  32680. height: math.unit(9, "feet"),
  32681. default: true
  32682. },
  32683. ]
  32684. ))
  32685. characterMakers.push(() => makeCharacter(
  32686. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32687. {
  32688. side: {
  32689. height: math.unit(15, "feet"),
  32690. weight: math.unit(5000, "kg"),
  32691. name: "Side",
  32692. image: {
  32693. source: "./media/characters/kairne/side.svg",
  32694. extra: 979/811,
  32695. bottom: 13/992
  32696. }
  32697. },
  32698. front: {
  32699. height: math.unit(15, "feet"),
  32700. weight: math.unit(5000, "kg"),
  32701. name: "Front",
  32702. image: {
  32703. source: "./media/characters/kairne/front.svg",
  32704. extra: 908/814,
  32705. bottom: 26/934
  32706. }
  32707. },
  32708. sideNsfw: {
  32709. height: math.unit(15, "feet"),
  32710. weight: math.unit(5000, "kg"),
  32711. name: "Side (NSFW)",
  32712. image: {
  32713. source: "./media/characters/kairne/side-nsfw.svg",
  32714. extra: 979/811,
  32715. bottom: 13/992
  32716. }
  32717. },
  32718. frontNsfw: {
  32719. height: math.unit(15, "feet"),
  32720. weight: math.unit(5000, "kg"),
  32721. name: "Front (NSFW)",
  32722. image: {
  32723. source: "./media/characters/kairne/front-nsfw.svg",
  32724. extra: 908/814,
  32725. bottom: 26/934
  32726. }
  32727. },
  32728. dickCaged: {
  32729. height: math.unit(0.65, "meters"),
  32730. name: "Dick-caged",
  32731. image: {
  32732. source: "./media/characters/kairne/dick-caged.svg"
  32733. }
  32734. },
  32735. dick: {
  32736. height: math.unit(0.79, "meters"),
  32737. name: "Dick",
  32738. image: {
  32739. source: "./media/characters/kairne/dick.svg"
  32740. }
  32741. },
  32742. genitals: {
  32743. height: math.unit(1.29, "meters"),
  32744. name: "Genitals",
  32745. image: {
  32746. source: "./media/characters/kairne/genitals.svg"
  32747. }
  32748. },
  32749. maw: {
  32750. height: math.unit(1.73, "meters"),
  32751. name: "Maw",
  32752. image: {
  32753. source: "./media/characters/kairne/maw.svg"
  32754. }
  32755. },
  32756. },
  32757. [
  32758. {
  32759. name: "Normal",
  32760. height: math.unit(15, "feet"),
  32761. default: true
  32762. },
  32763. ]
  32764. ))
  32765. characterMakers.push(() => makeCharacter(
  32766. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32767. {
  32768. front: {
  32769. height: math.unit(5 + 8/12, "feet"),
  32770. weight: math.unit(139, "lb"),
  32771. name: "Front",
  32772. image: {
  32773. source: "./media/characters/biscuit-jackal/front.svg",
  32774. extra: 2106/1961,
  32775. bottom: 58/2164
  32776. }
  32777. },
  32778. back: {
  32779. height: math.unit(5 + 8/12, "feet"),
  32780. weight: math.unit(139, "lb"),
  32781. name: "Back",
  32782. image: {
  32783. source: "./media/characters/biscuit-jackal/back.svg",
  32784. extra: 2132/1976,
  32785. bottom: 57/2189
  32786. }
  32787. },
  32788. werejackal: {
  32789. height: math.unit(6 + 3/12, "feet"),
  32790. weight: math.unit(188, "lb"),
  32791. name: "Werejackal",
  32792. image: {
  32793. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32794. extra: 2373/2178,
  32795. bottom: 53/2426
  32796. }
  32797. },
  32798. },
  32799. [
  32800. {
  32801. name: "Normal",
  32802. height: math.unit(5 + 8/12, "feet"),
  32803. default: true
  32804. },
  32805. ]
  32806. ))
  32807. characterMakers.push(() => makeCharacter(
  32808. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32809. {
  32810. front: {
  32811. height: math.unit(140, "cm"),
  32812. weight: math.unit(45, "kg"),
  32813. name: "Front",
  32814. image: {
  32815. source: "./media/characters/tayra-white/front.svg",
  32816. extra: 2229/2192,
  32817. bottom: 75/2304
  32818. }
  32819. },
  32820. },
  32821. [
  32822. {
  32823. name: "Normal",
  32824. height: math.unit(140, "cm"),
  32825. default: true
  32826. },
  32827. ]
  32828. ))
  32829. characterMakers.push(() => makeCharacter(
  32830. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32831. {
  32832. front: {
  32833. height: math.unit(4 + 5/12, "feet"),
  32834. name: "Front",
  32835. image: {
  32836. source: "./media/characters/scoop/front.svg",
  32837. extra: 1257/1136,
  32838. bottom: 69/1326
  32839. }
  32840. },
  32841. back: {
  32842. height: math.unit(4 + 5/12, "feet"),
  32843. name: "Back",
  32844. image: {
  32845. source: "./media/characters/scoop/back.svg",
  32846. extra: 1321/1152,
  32847. bottom: 32/1353
  32848. }
  32849. },
  32850. maw: {
  32851. height: math.unit(0.68, "feet"),
  32852. name: "Maw",
  32853. image: {
  32854. source: "./media/characters/scoop/maw.svg"
  32855. }
  32856. },
  32857. },
  32858. [
  32859. {
  32860. name: "Really Small",
  32861. height: math.unit(1, "mm")
  32862. },
  32863. {
  32864. name: "Micro",
  32865. height: math.unit(1, "inch")
  32866. },
  32867. {
  32868. name: "Normal",
  32869. height: math.unit(4 + 5/12, "feet"),
  32870. default: true
  32871. },
  32872. {
  32873. name: "Macro",
  32874. height: math.unit(200, "feet")
  32875. },
  32876. {
  32877. name: "Megamacro",
  32878. height: math.unit(3240, "feet")
  32879. },
  32880. {
  32881. name: "Teramacro",
  32882. height: math.unit(2500, "miles")
  32883. },
  32884. ]
  32885. ))
  32886. characterMakers.push(() => makeCharacter(
  32887. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32888. {
  32889. front: {
  32890. height: math.unit(15 + 7/12, "feet"),
  32891. name: "Front",
  32892. image: {
  32893. source: "./media/characters/saphinara/front.svg",
  32894. extra: 604/546,
  32895. bottom: 19/623
  32896. }
  32897. },
  32898. side: {
  32899. height: math.unit(15 + 7/12, "feet"),
  32900. name: "Side",
  32901. image: {
  32902. source: "./media/characters/saphinara/side.svg",
  32903. extra: 605/547,
  32904. bottom: 6/611
  32905. }
  32906. },
  32907. back: {
  32908. height: math.unit(15 + 7/12, "feet"),
  32909. name: "Back",
  32910. image: {
  32911. source: "./media/characters/saphinara/back.svg",
  32912. extra: 591/531,
  32913. bottom: 13/604
  32914. }
  32915. },
  32916. frontTail: {
  32917. height: math.unit(15 + 7/12, "feet"),
  32918. name: "Front (Full Tail)",
  32919. image: {
  32920. source: "./media/characters/saphinara/front-tail.svg",
  32921. extra: 748/547,
  32922. bottom: 66/814
  32923. }
  32924. },
  32925. },
  32926. [
  32927. {
  32928. name: "Normal",
  32929. height: math.unit(15 + 7/12, "feet"),
  32930. default: true
  32931. },
  32932. {
  32933. name: "Angry",
  32934. height: math.unit(30 + 6/12, "feet")
  32935. },
  32936. {
  32937. name: "Enraged",
  32938. height: math.unit(102 + 1/12, "feet")
  32939. },
  32940. ]
  32941. ))
  32942. characterMakers.push(() => makeCharacter(
  32943. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32944. {
  32945. front: {
  32946. height: math.unit(6 + 8/12, "feet"),
  32947. weight: math.unit(300, "lb"),
  32948. name: "Front",
  32949. image: {
  32950. source: "./media/characters/jrain/front.svg",
  32951. extra: 3039/2865,
  32952. bottom: 399/3438
  32953. }
  32954. },
  32955. back: {
  32956. height: math.unit(6 + 8/12, "feet"),
  32957. weight: math.unit(300, "lb"),
  32958. name: "Back",
  32959. image: {
  32960. source: "./media/characters/jrain/back.svg",
  32961. extra: 3089/2938,
  32962. bottom: 172/3261
  32963. }
  32964. },
  32965. head: {
  32966. height: math.unit(2.14, "feet"),
  32967. name: "Head",
  32968. image: {
  32969. source: "./media/characters/jrain/head.svg"
  32970. }
  32971. },
  32972. maw: {
  32973. height: math.unit(1.77, "feet"),
  32974. name: "Maw",
  32975. image: {
  32976. source: "./media/characters/jrain/maw.svg"
  32977. }
  32978. },
  32979. leftHand: {
  32980. height: math.unit(1.1, "feet"),
  32981. name: "Left Hand",
  32982. image: {
  32983. source: "./media/characters/jrain/left-hand.svg"
  32984. }
  32985. },
  32986. rightHand: {
  32987. height: math.unit(1.1, "feet"),
  32988. name: "Right Hand",
  32989. image: {
  32990. source: "./media/characters/jrain/right-hand.svg"
  32991. }
  32992. },
  32993. eye: {
  32994. height: math.unit(0.35, "feet"),
  32995. name: "Eye",
  32996. image: {
  32997. source: "./media/characters/jrain/eye.svg"
  32998. }
  32999. },
  33000. },
  33001. [
  33002. {
  33003. name: "Normal",
  33004. height: math.unit(6 + 8/12, "feet"),
  33005. default: true
  33006. },
  33007. {
  33008. name: "Casually Large",
  33009. height: math.unit(25, "feet")
  33010. },
  33011. {
  33012. name: "Giant",
  33013. height: math.unit(100, "feet")
  33014. },
  33015. {
  33016. name: "Kaiju",
  33017. height: math.unit(300, "feet")
  33018. },
  33019. ]
  33020. ))
  33021. characterMakers.push(() => makeCharacter(
  33022. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33023. {
  33024. dragon: {
  33025. height: math.unit(5, "meters"),
  33026. name: "Dragon",
  33027. image: {
  33028. source: "./media/characters/sabrina/dragon.svg",
  33029. extra: 3670 / 2365,
  33030. bottom: 333 / 4003
  33031. }
  33032. },
  33033. gryphon: {
  33034. height: math.unit(3, "meters"),
  33035. name: "Gryphon",
  33036. image: {
  33037. source: "./media/characters/sabrina/gryphon.svg",
  33038. extra: 1576 / 945,
  33039. bottom: 71 / 1647
  33040. }
  33041. },
  33042. snake: {
  33043. height: math.unit(12, "meters"),
  33044. name: "Snake",
  33045. image: {
  33046. source: "./media/characters/sabrina/snake.svg",
  33047. extra: 1758 / 1320,
  33048. bottom: 186 / 1944
  33049. }
  33050. },
  33051. collar: {
  33052. height: math.unit(1.86, "meters"),
  33053. name: "Collar",
  33054. image: {
  33055. source: "./media/characters/sabrina/collar.svg"
  33056. }
  33057. },
  33058. eye: {
  33059. height: math.unit(0.53, "meters"),
  33060. name: "Eye",
  33061. image: {
  33062. source: "./media/characters/sabrina/eye.svg"
  33063. }
  33064. },
  33065. foot: {
  33066. height: math.unit(1.86, "meters"),
  33067. name: "Foot",
  33068. image: {
  33069. source: "./media/characters/sabrina/foot.svg"
  33070. }
  33071. },
  33072. hand: {
  33073. height: math.unit(1.32, "meters"),
  33074. name: "Hand",
  33075. image: {
  33076. source: "./media/characters/sabrina/hand.svg"
  33077. }
  33078. },
  33079. head: {
  33080. height: math.unit(2.44, "meters"),
  33081. name: "Head",
  33082. image: {
  33083. source: "./media/characters/sabrina/head.svg"
  33084. }
  33085. },
  33086. headAngry: {
  33087. height: math.unit(2.44, "meters"),
  33088. name: "Head (Angry))",
  33089. image: {
  33090. source: "./media/characters/sabrina/head-angry.svg"
  33091. }
  33092. },
  33093. maw: {
  33094. height: math.unit(1.65, "meters"),
  33095. name: "Maw",
  33096. image: {
  33097. source: "./media/characters/sabrina/maw.svg"
  33098. }
  33099. },
  33100. spikes: {
  33101. height: math.unit(1.69, "meters"),
  33102. name: "Spikes",
  33103. image: {
  33104. source: "./media/characters/sabrina/spikes.svg"
  33105. }
  33106. },
  33107. stomach: {
  33108. height: math.unit(1.15, "meters"),
  33109. name: "Stomach",
  33110. image: {
  33111. source: "./media/characters/sabrina/stomach.svg"
  33112. }
  33113. },
  33114. tongue: {
  33115. height: math.unit(1.27, "meters"),
  33116. name: "Tongue",
  33117. image: {
  33118. source: "./media/characters/sabrina/tongue.svg"
  33119. }
  33120. },
  33121. wingDorsal: {
  33122. height: math.unit(4.85, "meters"),
  33123. name: "Wing (Dorsal)",
  33124. image: {
  33125. source: "./media/characters/sabrina/wing-dorsal.svg"
  33126. }
  33127. },
  33128. wingVentral: {
  33129. height: math.unit(4.85, "meters"),
  33130. name: "Wing (Ventral)",
  33131. image: {
  33132. source: "./media/characters/sabrina/wing-ventral.svg"
  33133. }
  33134. },
  33135. },
  33136. [
  33137. {
  33138. name: "Normal",
  33139. height: math.unit(5, "meters"),
  33140. default: true
  33141. },
  33142. ]
  33143. ))
  33144. characterMakers.push(() => makeCharacter(
  33145. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33146. {
  33147. frontMaid: {
  33148. height: math.unit(5 + 5/12, "feet"),
  33149. weight: math.unit(130, "lb"),
  33150. name: "Front (Maid)",
  33151. image: {
  33152. source: "./media/characters/midnight-tales/front-maid.svg",
  33153. extra: 489/454,
  33154. bottom: 61/550
  33155. }
  33156. },
  33157. frontFormal: {
  33158. height: math.unit(5 + 5/12, "feet"),
  33159. weight: math.unit(130, "lb"),
  33160. name: "Front (Formal)",
  33161. image: {
  33162. source: "./media/characters/midnight-tales/front-formal.svg",
  33163. extra: 489/454,
  33164. bottom: 61/550
  33165. }
  33166. },
  33167. back: {
  33168. height: math.unit(5 + 5/12, "feet"),
  33169. weight: math.unit(130, "lb"),
  33170. name: "Back",
  33171. image: {
  33172. source: "./media/characters/midnight-tales/back.svg",
  33173. extra: 498/456,
  33174. bottom: 33/531
  33175. }
  33176. },
  33177. frontBeast: {
  33178. height: math.unit(40, "feet"),
  33179. weight: math.unit(64000, "lb"),
  33180. name: "Front (Beast)",
  33181. image: {
  33182. source: "./media/characters/midnight-tales/front-beast.svg",
  33183. extra: 927/860,
  33184. bottom: 53/980
  33185. }
  33186. },
  33187. backBeast: {
  33188. height: math.unit(40, "feet"),
  33189. weight: math.unit(64000, "lb"),
  33190. name: "Back (Beast)",
  33191. image: {
  33192. source: "./media/characters/midnight-tales/back-beast.svg",
  33193. extra: 929/855,
  33194. bottom: 16/945
  33195. }
  33196. },
  33197. footBeast: {
  33198. height: math.unit(6.7, "feet"),
  33199. name: "Foot (Beast)",
  33200. image: {
  33201. source: "./media/characters/midnight-tales/foot-beast.svg"
  33202. }
  33203. },
  33204. headBeast: {
  33205. height: math.unit(8, "feet"),
  33206. name: "Head (Beast)",
  33207. image: {
  33208. source: "./media/characters/midnight-tales/head-beast.svg"
  33209. }
  33210. },
  33211. },
  33212. [
  33213. {
  33214. name: "Normal",
  33215. height: math.unit(5 + 5 / 12, "feet"),
  33216. default: true
  33217. },
  33218. {
  33219. name: "Macro",
  33220. height: math.unit(25, "feet")
  33221. },
  33222. ]
  33223. ))
  33224. characterMakers.push(() => makeCharacter(
  33225. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33226. {
  33227. front: {
  33228. height: math.unit(5 + 10/12, "feet"),
  33229. name: "Front",
  33230. image: {
  33231. source: "./media/characters/argon/front.svg",
  33232. extra: 2009/1935,
  33233. bottom: 118/2127
  33234. }
  33235. },
  33236. back: {
  33237. height: math.unit(5 + 10/12, "feet"),
  33238. name: "Back",
  33239. image: {
  33240. source: "./media/characters/argon/back.svg",
  33241. extra: 2047/1992,
  33242. bottom: 20/2067
  33243. }
  33244. },
  33245. frontDressed: {
  33246. height: math.unit(5 + 10/12, "feet"),
  33247. name: "Front (Dressed)",
  33248. image: {
  33249. source: "./media/characters/argon/front-dressed.svg",
  33250. extra: 2009/1935,
  33251. bottom: 118/2127
  33252. }
  33253. },
  33254. },
  33255. [
  33256. {
  33257. name: "Normal",
  33258. height: math.unit(5 + 10/12, "feet"),
  33259. default: true
  33260. },
  33261. ]
  33262. ))
  33263. characterMakers.push(() => makeCharacter(
  33264. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33265. {
  33266. front: {
  33267. height: math.unit(8 + 6/12, "feet"),
  33268. weight: math.unit(1150, "lb"),
  33269. name: "Front",
  33270. image: {
  33271. source: "./media/characters/kichi/front.svg",
  33272. extra: 1267/1164,
  33273. bottom: 61/1328
  33274. }
  33275. },
  33276. back: {
  33277. height: math.unit(8 + 6/12, "feet"),
  33278. weight: math.unit(1150, "lb"),
  33279. name: "Back",
  33280. image: {
  33281. source: "./media/characters/kichi/back.svg",
  33282. extra: 1273/1166,
  33283. bottom: 33/1306
  33284. }
  33285. },
  33286. },
  33287. [
  33288. {
  33289. name: "Normal",
  33290. height: math.unit(8 + 6/12, "feet"),
  33291. default: true
  33292. },
  33293. ]
  33294. ))
  33295. characterMakers.push(() => makeCharacter(
  33296. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33297. {
  33298. front: {
  33299. height: math.unit(6, "feet"),
  33300. weight: math.unit(210, "lb"),
  33301. name: "Front",
  33302. image: {
  33303. source: "./media/characters/manetel-greyscale/front.svg",
  33304. extra: 350/312,
  33305. bottom: 8/358
  33306. }
  33307. },
  33308. },
  33309. [
  33310. {
  33311. name: "Micro",
  33312. height: math.unit(2, "inches")
  33313. },
  33314. {
  33315. name: "Normal",
  33316. height: math.unit(6, "feet"),
  33317. default: true
  33318. },
  33319. {
  33320. name: "Minimacro",
  33321. height: math.unit(17, "feet")
  33322. },
  33323. {
  33324. name: "Macro",
  33325. height: math.unit(117, "feet")
  33326. },
  33327. ]
  33328. ))
  33329. characterMakers.push(() => makeCharacter(
  33330. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33331. {
  33332. side: {
  33333. height: math.unit(5 + 1/12, "feet"),
  33334. weight: math.unit(418, "lb"),
  33335. name: "Side",
  33336. image: {
  33337. source: "./media/characters/softpurr/side.svg",
  33338. extra: 1993/1945,
  33339. bottom: 134/2127
  33340. }
  33341. },
  33342. front: {
  33343. height: math.unit(5 + 1/12, "feet"),
  33344. weight: math.unit(418, "lb"),
  33345. name: "Front",
  33346. image: {
  33347. source: "./media/characters/softpurr/front.svg",
  33348. extra: 1950/1856,
  33349. bottom: 174/2124
  33350. }
  33351. },
  33352. paw: {
  33353. height: math.unit(1, "feet"),
  33354. name: "Paw",
  33355. image: {
  33356. source: "./media/characters/softpurr/paw.svg"
  33357. }
  33358. },
  33359. },
  33360. [
  33361. {
  33362. name: "Normal",
  33363. height: math.unit(5 + 1/12, "feet"),
  33364. default: true
  33365. },
  33366. ]
  33367. ))
  33368. characterMakers.push(() => makeCharacter(
  33369. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33370. {
  33371. front: {
  33372. height: math.unit(260, "meters"),
  33373. name: "Front",
  33374. image: {
  33375. source: "./media/characters/anahita/front.svg",
  33376. extra: 665/635,
  33377. bottom: 89/754
  33378. }
  33379. },
  33380. },
  33381. [
  33382. {
  33383. name: "Macro",
  33384. height: math.unit(260, "meters"),
  33385. default: true
  33386. },
  33387. ]
  33388. ))
  33389. characterMakers.push(() => makeCharacter(
  33390. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33391. {
  33392. front: {
  33393. height: math.unit(4 + 10/12, "feet"),
  33394. weight: math.unit(160, "lb"),
  33395. name: "Front",
  33396. image: {
  33397. source: "./media/characters/chip-mouse/front.svg",
  33398. extra: 3528/3408,
  33399. bottom: 0/3528
  33400. }
  33401. },
  33402. frontNsfw: {
  33403. height: math.unit(4 + 10/12, "feet"),
  33404. weight: math.unit(160, "lb"),
  33405. name: "Front (NSFW)",
  33406. image: {
  33407. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33408. extra: 3528/3408,
  33409. bottom: 0/3528
  33410. }
  33411. },
  33412. },
  33413. [
  33414. {
  33415. name: "Normal",
  33416. height: math.unit(4 + 10/12, "feet"),
  33417. default: true
  33418. },
  33419. ]
  33420. ))
  33421. characterMakers.push(() => makeCharacter(
  33422. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33423. {
  33424. side: {
  33425. height: math.unit(10, "feet"),
  33426. weight: math.unit(14000, "lb"),
  33427. name: "Side",
  33428. image: {
  33429. source: "./media/characters/kremm/side.svg",
  33430. extra: 1390/1053,
  33431. bottom: 90/1480
  33432. }
  33433. },
  33434. gut: {
  33435. height: math.unit(5.8, "feet"),
  33436. name: "Gut",
  33437. image: {
  33438. source: "./media/characters/kremm/gut.svg"
  33439. }
  33440. },
  33441. ass: {
  33442. height: math.unit(6.1, "feet"),
  33443. name: "Ass",
  33444. image: {
  33445. source: "./media/characters/kremm/ass.svg"
  33446. }
  33447. },
  33448. jaws: {
  33449. height: math.unit(2.2, "feet"),
  33450. name: "Jaws",
  33451. image: {
  33452. source: "./media/characters/kremm/jaws.svg"
  33453. }
  33454. },
  33455. dick: {
  33456. height: math.unit(4.26, "feet"),
  33457. name: "Dick",
  33458. image: {
  33459. source: "./media/characters/kremm/dick.svg"
  33460. }
  33461. },
  33462. },
  33463. [
  33464. {
  33465. name: "Normal",
  33466. height: math.unit(10, "feet"),
  33467. default: true
  33468. },
  33469. ]
  33470. ))
  33471. characterMakers.push(() => makeCharacter(
  33472. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33473. {
  33474. front: {
  33475. height: math.unit(30, "stories"),
  33476. name: "Front",
  33477. image: {
  33478. source: "./media/characters/kai/front.svg",
  33479. extra: 1892/1718,
  33480. bottom: 162/2054
  33481. }
  33482. },
  33483. },
  33484. [
  33485. {
  33486. name: "Macro",
  33487. height: math.unit(30, "stories"),
  33488. default: true
  33489. },
  33490. ]
  33491. ))
  33492. characterMakers.push(() => makeCharacter(
  33493. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33494. {
  33495. front: {
  33496. height: math.unit(6 + 4/12, "feet"),
  33497. weight: math.unit(145, "lb"),
  33498. name: "Front",
  33499. image: {
  33500. source: "./media/characters/sykes/front.svg",
  33501. extra: 1321 / 1187,
  33502. bottom: 66 / 1387
  33503. }
  33504. },
  33505. back: {
  33506. height: math.unit(6 + 4/12, "feet"),
  33507. weight: math.unit(145, "lb"),
  33508. name: "Back",
  33509. image: {
  33510. source: "./media/characters/sykes/back.svg",
  33511. extra: 1326/1181,
  33512. bottom: 31/1357
  33513. }
  33514. },
  33515. handBack: {
  33516. height: math.unit(0.9, "feet"),
  33517. name: "Hand (Back)",
  33518. image: {
  33519. source: "./media/characters/sykes/hand-back.svg"
  33520. }
  33521. },
  33522. handFront: {
  33523. height: math.unit(0.839, "feet"),
  33524. name: "Hand (Front)",
  33525. image: {
  33526. source: "./media/characters/sykes/hand-front.svg"
  33527. }
  33528. },
  33529. leftFoot: {
  33530. height: math.unit(1.2, "feet"),
  33531. name: "Foot (Left)",
  33532. image: {
  33533. source: "./media/characters/sykes/foot-left.svg"
  33534. }
  33535. },
  33536. rightFoot: {
  33537. height: math.unit(1.2, "feet"),
  33538. name: "Foot (Right)",
  33539. image: {
  33540. source: "./media/characters/sykes/foot-right.svg"
  33541. }
  33542. },
  33543. maw: {
  33544. height: math.unit(1.93, "feet"),
  33545. name: "Maw",
  33546. image: {
  33547. source: "./media/characters/sykes/maw.svg"
  33548. }
  33549. },
  33550. teeth: {
  33551. height: math.unit(0.51, "feet"),
  33552. name: "Teeth",
  33553. image: {
  33554. source: "./media/characters/sykes/teeth.svg"
  33555. }
  33556. },
  33557. tongue: {
  33558. height: math.unit(2.13, "feet"),
  33559. name: "Tongue",
  33560. image: {
  33561. source: "./media/characters/sykes/tongue.svg"
  33562. }
  33563. },
  33564. uvula: {
  33565. height: math.unit(0.16, "feet"),
  33566. name: "Uvula",
  33567. image: {
  33568. source: "./media/characters/sykes/uvula.svg"
  33569. }
  33570. },
  33571. collar: {
  33572. height: math.unit(0.287, "feet"),
  33573. name: "Collar",
  33574. image: {
  33575. source: "./media/characters/sykes/collar.svg"
  33576. }
  33577. },
  33578. },
  33579. [
  33580. {
  33581. name: "Shrunken",
  33582. height: math.unit(5, "inches")
  33583. },
  33584. {
  33585. name: "Normal",
  33586. height: math.unit(6 + 4 / 12, "feet"),
  33587. default: true
  33588. },
  33589. {
  33590. name: "Big",
  33591. height: math.unit(15, "feet")
  33592. },
  33593. ]
  33594. ))
  33595. characterMakers.push(() => makeCharacter(
  33596. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33597. {
  33598. front: {
  33599. height: math.unit(5 + 8/12, "feet"),
  33600. weight: math.unit(190, "lb"),
  33601. name: "Front",
  33602. image: {
  33603. source: "./media/characters/oven-otter/front.svg",
  33604. extra: 1809/1740,
  33605. bottom: 181/1990
  33606. }
  33607. },
  33608. back: {
  33609. height: math.unit(5 + 8/12, "feet"),
  33610. weight: math.unit(190, "lb"),
  33611. name: "Back",
  33612. image: {
  33613. source: "./media/characters/oven-otter/back.svg",
  33614. extra: 1709/1635,
  33615. bottom: 118/1827
  33616. }
  33617. },
  33618. hand: {
  33619. height: math.unit(1.07, "feet"),
  33620. name: "Hand",
  33621. image: {
  33622. source: "./media/characters/oven-otter/hand.svg"
  33623. }
  33624. },
  33625. beans: {
  33626. height: math.unit(1.74, "feet"),
  33627. name: "Beans",
  33628. image: {
  33629. source: "./media/characters/oven-otter/beans.svg"
  33630. }
  33631. },
  33632. },
  33633. [
  33634. {
  33635. name: "Micro",
  33636. height: math.unit(0.5, "inches")
  33637. },
  33638. {
  33639. name: "Normal",
  33640. height: math.unit(5 + 8/12, "feet"),
  33641. default: true
  33642. },
  33643. {
  33644. name: "Macro",
  33645. height: math.unit(250, "feet")
  33646. },
  33647. {
  33648. name: "Really High",
  33649. height: math.unit(420, "feet")
  33650. },
  33651. ]
  33652. ))
  33653. characterMakers.push(() => makeCharacter(
  33654. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33655. {
  33656. front: {
  33657. height: math.unit(5, "meters"),
  33658. weight: math.unit(292000000000000, "kg"),
  33659. name: "Front",
  33660. image: {
  33661. source: "./media/characters/devourer/front.svg",
  33662. extra: 1800/1733,
  33663. bottom: 211/2011
  33664. }
  33665. },
  33666. maw: {
  33667. height: math.unit(1.1, "meter"),
  33668. name: "Maw",
  33669. image: {
  33670. source: "./media/characters/devourer/maw.svg"
  33671. }
  33672. },
  33673. },
  33674. [
  33675. {
  33676. name: "Small",
  33677. height: math.unit(3, "meters")
  33678. },
  33679. {
  33680. name: "Large",
  33681. height: math.unit(5, "meters"),
  33682. default: true
  33683. },
  33684. ]
  33685. ))
  33686. characterMakers.push(() => makeCharacter(
  33687. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33688. {
  33689. front: {
  33690. height: math.unit(6, "feet"),
  33691. weight: math.unit(400, "lb"),
  33692. name: "Front",
  33693. image: {
  33694. source: "./media/characters/ellarby/front.svg",
  33695. extra: 1909/1763,
  33696. bottom: 80/1989
  33697. }
  33698. },
  33699. back: {
  33700. height: math.unit(6, "feet"),
  33701. weight: math.unit(400, "lb"),
  33702. name: "Back",
  33703. image: {
  33704. source: "./media/characters/ellarby/back.svg",
  33705. extra: 1914/1784,
  33706. bottom: 172/2086
  33707. }
  33708. },
  33709. },
  33710. [
  33711. {
  33712. name: "Mischief",
  33713. height: math.unit(18, "inches")
  33714. },
  33715. {
  33716. name: "Trouble",
  33717. height: math.unit(12, "feet")
  33718. },
  33719. {
  33720. name: "Havoc",
  33721. height: math.unit(200, "feet"),
  33722. default: true
  33723. },
  33724. {
  33725. name: "Pandemonium",
  33726. height: math.unit(1, "mile")
  33727. },
  33728. {
  33729. name: "Catastrophe",
  33730. height: math.unit(100, "miles")
  33731. },
  33732. ]
  33733. ))
  33734. characterMakers.push(() => makeCharacter(
  33735. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33736. {
  33737. front: {
  33738. height: math.unit(4.7, "meters"),
  33739. weight: math.unit(6500, "kg"),
  33740. name: "Front",
  33741. image: {
  33742. source: "./media/characters/vex/front.svg",
  33743. extra: 1288/1140,
  33744. bottom: 100/1388
  33745. }
  33746. },
  33747. },
  33748. [
  33749. {
  33750. name: "Normal",
  33751. height: math.unit(4.7, "meters"),
  33752. default: true
  33753. },
  33754. ]
  33755. ))
  33756. characterMakers.push(() => makeCharacter(
  33757. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33758. {
  33759. normal: {
  33760. height: math.unit(6, "feet"),
  33761. weight: math.unit(350, "lb"),
  33762. name: "Normal",
  33763. image: {
  33764. source: "./media/characters/teshy/normal.svg",
  33765. extra: 1795/1735,
  33766. bottom: 16/1811
  33767. }
  33768. },
  33769. monsterFront: {
  33770. height: math.unit(12, "feet"),
  33771. weight: math.unit(4700, "lb"),
  33772. name: "Monster (Front)",
  33773. image: {
  33774. source: "./media/characters/teshy/monster-front.svg",
  33775. extra: 2042/2034,
  33776. bottom: 128/2170
  33777. }
  33778. },
  33779. monsterSide: {
  33780. height: math.unit(12, "feet"),
  33781. weight: math.unit(4700, "lb"),
  33782. name: "Monster (Side)",
  33783. image: {
  33784. source: "./media/characters/teshy/monster-side.svg",
  33785. extra: 2067/2056,
  33786. bottom: 70/2137
  33787. }
  33788. },
  33789. monsterBack: {
  33790. height: math.unit(12, "feet"),
  33791. weight: math.unit(4700, "lb"),
  33792. name: "Monster (Back)",
  33793. image: {
  33794. source: "./media/characters/teshy/monster-back.svg",
  33795. extra: 1921/1914,
  33796. bottom: 171/2092
  33797. }
  33798. },
  33799. },
  33800. [
  33801. {
  33802. name: "Normal",
  33803. height: math.unit(6, "feet"),
  33804. default: true
  33805. },
  33806. ]
  33807. ))
  33808. characterMakers.push(() => makeCharacter(
  33809. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33810. {
  33811. front: {
  33812. height: math.unit(6, "feet"),
  33813. name: "Front",
  33814. image: {
  33815. source: "./media/characters/ramey/front.svg",
  33816. extra: 790/787,
  33817. bottom: 27/817
  33818. }
  33819. },
  33820. },
  33821. [
  33822. {
  33823. name: "Normal",
  33824. height: math.unit(6, "feet"),
  33825. default: true
  33826. },
  33827. ]
  33828. ))
  33829. characterMakers.push(() => makeCharacter(
  33830. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33831. {
  33832. front: {
  33833. height: math.unit(5 + 5/12, "feet"),
  33834. weight: math.unit(120, "lb"),
  33835. name: "Front",
  33836. image: {
  33837. source: "./media/characters/phirae/front.svg",
  33838. extra: 2491/2436,
  33839. bottom: 38/2529
  33840. }
  33841. },
  33842. },
  33843. [
  33844. {
  33845. name: "Normal",
  33846. height: math.unit(5 + 5/12, "feet"),
  33847. default: true
  33848. },
  33849. ]
  33850. ))
  33851. characterMakers.push(() => makeCharacter(
  33852. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  33853. {
  33854. front: {
  33855. height: math.unit(5 + 3/12, "feet"),
  33856. name: "Front",
  33857. image: {
  33858. source: "./media/characters/stagglas/front.svg",
  33859. extra: 962/882,
  33860. bottom: 53/1015
  33861. }
  33862. },
  33863. feral: {
  33864. height: math.unit(335, "cm"),
  33865. name: "Feral",
  33866. image: {
  33867. source: "./media/characters/stagglas/feral.svg",
  33868. extra: 1732/1090,
  33869. bottom: 48/1780
  33870. }
  33871. },
  33872. },
  33873. [
  33874. {
  33875. name: "Normal",
  33876. height: math.unit(5 + 3/12, "feet"),
  33877. default: true
  33878. },
  33879. ]
  33880. ))
  33881. characterMakers.push(() => makeCharacter(
  33882. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33883. {
  33884. front: {
  33885. height: math.unit(5 + 4/12, "feet"),
  33886. weight: math.unit(145, "lb"),
  33887. name: "Front",
  33888. image: {
  33889. source: "./media/characters/starra/front.svg",
  33890. extra: 1790/1691,
  33891. bottom: 91/1881
  33892. }
  33893. },
  33894. },
  33895. [
  33896. {
  33897. name: "Normal",
  33898. height: math.unit(5 + 4/12, "feet"),
  33899. default: true
  33900. },
  33901. ]
  33902. ))
  33903. characterMakers.push(() => makeCharacter(
  33904. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33905. {
  33906. front: {
  33907. height: math.unit(2.2, "meters"),
  33908. name: "Front",
  33909. image: {
  33910. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33911. extra: 1194/1005,
  33912. bottom: 25/1219
  33913. }
  33914. },
  33915. },
  33916. [
  33917. {
  33918. name: "Normal",
  33919. height: math.unit(2.2, "meters"),
  33920. default: true
  33921. },
  33922. ]
  33923. ))
  33924. characterMakers.push(() => makeCharacter(
  33925. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33926. {
  33927. side: {
  33928. height: math.unit(8 + 2/12, "feet"),
  33929. weight: math.unit(1240, "lb"),
  33930. name: "Side",
  33931. image: {
  33932. source: "./media/characters/mika-valentine/side.svg",
  33933. extra: 2670/2501,
  33934. bottom: 250/2920
  33935. }
  33936. },
  33937. },
  33938. [
  33939. {
  33940. name: "Normal",
  33941. height: math.unit(8 + 2/12, "feet"),
  33942. default: true
  33943. },
  33944. ]
  33945. ))
  33946. characterMakers.push(() => makeCharacter(
  33947. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33948. {
  33949. front: {
  33950. height: math.unit(7 + 2/12, "feet"),
  33951. name: "Front",
  33952. image: {
  33953. source: "./media/characters/xoltol/front.svg",
  33954. extra: 2212/2124,
  33955. bottom: 84/2296
  33956. }
  33957. },
  33958. side: {
  33959. height: math.unit(7 + 2/12, "feet"),
  33960. name: "Side",
  33961. image: {
  33962. source: "./media/characters/xoltol/side.svg",
  33963. extra: 2273/2197,
  33964. bottom: 26/2299
  33965. }
  33966. },
  33967. hand: {
  33968. height: math.unit(2.5, "feet"),
  33969. name: "Hand",
  33970. image: {
  33971. source: "./media/characters/xoltol/hand.svg"
  33972. }
  33973. },
  33974. },
  33975. [
  33976. {
  33977. name: "Small-ish",
  33978. height: math.unit(5 + 11/12, "feet")
  33979. },
  33980. {
  33981. name: "Normal",
  33982. height: math.unit(7 + 2/12, "feet")
  33983. },
  33984. {
  33985. name: "\"Macro\"",
  33986. height: math.unit(14 + 9/12, "feet"),
  33987. default: true
  33988. },
  33989. {
  33990. name: "Alternate Height",
  33991. height: math.unit(20, "feet")
  33992. },
  33993. {
  33994. name: "Actually Macro",
  33995. height: math.unit(100, "feet")
  33996. },
  33997. ]
  33998. ))
  33999. characterMakers.push(() => makeCharacter(
  34000. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34001. {
  34002. front: {
  34003. height: math.unit(5 + 2/12, "feet"),
  34004. name: "Front",
  34005. image: {
  34006. source: "./media/characters/kotetsu-redwood/front.svg",
  34007. extra: 1053/942,
  34008. bottom: 60/1113
  34009. }
  34010. },
  34011. },
  34012. [
  34013. {
  34014. name: "Normal",
  34015. height: math.unit(5 + 2/12, "feet"),
  34016. default: true
  34017. },
  34018. ]
  34019. ))
  34020. characterMakers.push(() => makeCharacter(
  34021. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34022. {
  34023. front: {
  34024. height: math.unit(2.4, "meters"),
  34025. weight: math.unit(125, "kg"),
  34026. name: "Front",
  34027. image: {
  34028. source: "./media/characters/lilith/front.svg",
  34029. extra: 1590/1513,
  34030. bottom: 203/1793
  34031. }
  34032. },
  34033. },
  34034. [
  34035. {
  34036. name: "Humanoid",
  34037. height: math.unit(2.4, "meters")
  34038. },
  34039. {
  34040. name: "Normal",
  34041. height: math.unit(6, "meters"),
  34042. default: true
  34043. },
  34044. {
  34045. name: "Largest",
  34046. height: math.unit(55, "meters")
  34047. },
  34048. ]
  34049. ))
  34050. characterMakers.push(() => makeCharacter(
  34051. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34052. {
  34053. front: {
  34054. height: math.unit(8 + 4/12, "feet"),
  34055. weight: math.unit(535, "lb"),
  34056. name: "Front",
  34057. image: {
  34058. source: "./media/characters/beh'kah-bolger/front.svg",
  34059. extra: 1660/1603,
  34060. bottom: 37/1697
  34061. }
  34062. },
  34063. },
  34064. [
  34065. {
  34066. name: "Normal",
  34067. height: math.unit(8 + 4/12, "feet"),
  34068. default: true
  34069. },
  34070. {
  34071. name: "Kaiju",
  34072. height: math.unit(250, "feet")
  34073. },
  34074. {
  34075. name: "Still Growing",
  34076. height: math.unit(10, "miles")
  34077. },
  34078. {
  34079. name: "Continental",
  34080. height: math.unit(5000, "miles")
  34081. },
  34082. {
  34083. name: "Final Form",
  34084. height: math.unit(2500000, "miles")
  34085. },
  34086. ]
  34087. ))
  34088. characterMakers.push(() => makeCharacter(
  34089. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34090. {
  34091. front: {
  34092. height: math.unit(7 + 2/12, "feet"),
  34093. weight: math.unit(230, "kg"),
  34094. name: "Front",
  34095. image: {
  34096. source: "./media/characters/tatyana-milewska/front.svg",
  34097. extra: 1199/1150,
  34098. bottom: 86/1285
  34099. }
  34100. },
  34101. },
  34102. [
  34103. {
  34104. name: "Normal",
  34105. height: math.unit(7 + 2/12, "feet"),
  34106. default: true
  34107. },
  34108. {
  34109. name: "Big",
  34110. height: math.unit(12, "feet")
  34111. },
  34112. {
  34113. name: "Minimacro",
  34114. height: math.unit(20, "feet")
  34115. },
  34116. {
  34117. name: "Macro",
  34118. height: math.unit(120, "feet")
  34119. },
  34120. ]
  34121. ))
  34122. characterMakers.push(() => makeCharacter(
  34123. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34124. {
  34125. front: {
  34126. height: math.unit(7 + 8/12, "feet"),
  34127. weight: math.unit(152, "kg"),
  34128. name: "Front",
  34129. image: {
  34130. source: "./media/characters/helen-arri/front.svg",
  34131. extra: 440/423,
  34132. bottom: 14/454
  34133. }
  34134. },
  34135. back: {
  34136. height: math.unit(7 + 8/12, "feet"),
  34137. weight: math.unit(152, "kg"),
  34138. name: "Back",
  34139. image: {
  34140. source: "./media/characters/helen-arri/back.svg",
  34141. extra: 443/426,
  34142. bottom: 8/451
  34143. }
  34144. },
  34145. },
  34146. [
  34147. {
  34148. name: "Normal",
  34149. height: math.unit(7 + 8/12, "feet"),
  34150. default: true
  34151. },
  34152. {
  34153. name: "Big",
  34154. height: math.unit(14, "feet")
  34155. },
  34156. {
  34157. name: "Minimacro",
  34158. height: math.unit(24, "feet")
  34159. },
  34160. {
  34161. name: "Macro",
  34162. height: math.unit(140, "feet")
  34163. },
  34164. ]
  34165. ))
  34166. characterMakers.push(() => makeCharacter(
  34167. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34168. {
  34169. front: {
  34170. height: math.unit(6, "meters"),
  34171. name: "Front",
  34172. image: {
  34173. source: "./media/characters/ehanu-rehu/front.svg",
  34174. extra: 1800/1800,
  34175. bottom: 59/1859
  34176. }
  34177. },
  34178. },
  34179. [
  34180. {
  34181. name: "Normal",
  34182. height: math.unit(6, "meters"),
  34183. default: true
  34184. },
  34185. ]
  34186. ))
  34187. characterMakers.push(() => makeCharacter(
  34188. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34189. {
  34190. front: {
  34191. height: math.unit(7 + 3/12, "feet"),
  34192. name: "Front",
  34193. image: {
  34194. source: "./media/characters/renholder/front.svg",
  34195. extra: 3096/2960,
  34196. bottom: 250/3346
  34197. }
  34198. },
  34199. },
  34200. [
  34201. {
  34202. name: "Normal Bat",
  34203. height: math.unit(7 + 3/12, "feet"),
  34204. default: true
  34205. },
  34206. {
  34207. name: "Slightly Tall Bat",
  34208. height: math.unit(100, "feet")
  34209. },
  34210. {
  34211. name: "Big Bat",
  34212. height: math.unit(1000, "feet")
  34213. },
  34214. {
  34215. name: "City-Sized Bat",
  34216. height: math.unit(200000, "feet")
  34217. },
  34218. {
  34219. name: "Bigger Bat",
  34220. height: math.unit(10000, "miles")
  34221. },
  34222. {
  34223. name: "Solar Sized Bat",
  34224. height: math.unit(100, "AU")
  34225. },
  34226. {
  34227. name: "Galactic Bat",
  34228. height: math.unit(200000, "lightyears")
  34229. },
  34230. {
  34231. name: "Universally Known Bat",
  34232. height: math.unit(1, "universe")
  34233. },
  34234. ]
  34235. ))
  34236. characterMakers.push(() => makeCharacter(
  34237. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34238. {
  34239. front: {
  34240. height: math.unit(6 + 11/12, "feet"),
  34241. weight: math.unit(250, "lb"),
  34242. name: "Front",
  34243. image: {
  34244. source: "./media/characters/cookiecat/front.svg",
  34245. extra: 893/827,
  34246. bottom: 14/907
  34247. }
  34248. },
  34249. },
  34250. [
  34251. {
  34252. name: "Micro",
  34253. height: math.unit(3, "inches")
  34254. },
  34255. {
  34256. name: "Normal",
  34257. height: math.unit(6 + 11/12, "feet"),
  34258. default: true
  34259. },
  34260. {
  34261. name: "Macro",
  34262. height: math.unit(100, "feet")
  34263. },
  34264. {
  34265. name: "Macro+",
  34266. height: math.unit(404, "feet")
  34267. },
  34268. {
  34269. name: "Megamacro",
  34270. height: math.unit(165, "miles")
  34271. },
  34272. {
  34273. name: "Planetary",
  34274. height: math.unit(4600, "miles")
  34275. },
  34276. ]
  34277. ))
  34278. characterMakers.push(() => makeCharacter(
  34279. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34280. {
  34281. front: {
  34282. height: math.unit(10 + 3/12, "feet"),
  34283. weight: math.unit(1500, "lb"),
  34284. name: "Front",
  34285. image: {
  34286. source: "./media/characters/tux-kusanagi/front.svg",
  34287. extra: 944/840,
  34288. bottom: 39/983
  34289. }
  34290. },
  34291. back: {
  34292. height: math.unit(10 + 3/12, "feet"),
  34293. weight: math.unit(1500, "lb"),
  34294. name: "Back",
  34295. image: {
  34296. source: "./media/characters/tux-kusanagi/back.svg",
  34297. extra: 941/842,
  34298. bottom: 28/969
  34299. }
  34300. },
  34301. rump: {
  34302. height: math.unit(5.25, "feet"),
  34303. name: "Rump",
  34304. image: {
  34305. source: "./media/characters/tux-kusanagi/rump.svg"
  34306. }
  34307. },
  34308. beak: {
  34309. height: math.unit(1.54, "feet"),
  34310. name: "Beak",
  34311. image: {
  34312. source: "./media/characters/tux-kusanagi/beak.svg"
  34313. }
  34314. },
  34315. },
  34316. [
  34317. {
  34318. name: "Normal",
  34319. height: math.unit(10 + 3/12, "feet"),
  34320. default: true
  34321. },
  34322. ]
  34323. ))
  34324. characterMakers.push(() => makeCharacter(
  34325. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34326. {
  34327. front: {
  34328. height: math.unit(58, "feet"),
  34329. weight: math.unit(200, "tons"),
  34330. name: "Front",
  34331. image: {
  34332. source: "./media/characters/uzarmazari/front.svg",
  34333. extra: 1575/1455,
  34334. bottom: 152/1727
  34335. }
  34336. },
  34337. back: {
  34338. height: math.unit(58, "feet"),
  34339. weight: math.unit(200, "tons"),
  34340. name: "Back",
  34341. image: {
  34342. source: "./media/characters/uzarmazari/back.svg",
  34343. extra: 1585/1510,
  34344. bottom: 157/1742
  34345. }
  34346. },
  34347. head: {
  34348. height: math.unit(26, "feet"),
  34349. name: "Head",
  34350. image: {
  34351. source: "./media/characters/uzarmazari/head.svg"
  34352. }
  34353. },
  34354. },
  34355. [
  34356. {
  34357. name: "Normal",
  34358. height: math.unit(58, "feet"),
  34359. default: true
  34360. },
  34361. ]
  34362. ))
  34363. characterMakers.push(() => makeCharacter(
  34364. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34365. {
  34366. side: {
  34367. height: math.unit(15, "feet"),
  34368. name: "Side",
  34369. image: {
  34370. source: "./media/characters/akitu/side.svg",
  34371. extra: 1421/1321,
  34372. bottom: 157/1578
  34373. }
  34374. },
  34375. front: {
  34376. height: math.unit(15, "feet"),
  34377. name: "Front",
  34378. image: {
  34379. source: "./media/characters/akitu/front.svg",
  34380. extra: 1435/1326,
  34381. bottom: 232/1667
  34382. }
  34383. },
  34384. },
  34385. [
  34386. {
  34387. name: "Normal",
  34388. height: math.unit(15, "feet"),
  34389. default: true
  34390. },
  34391. ]
  34392. ))
  34393. characterMakers.push(() => makeCharacter(
  34394. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34395. {
  34396. front: {
  34397. height: math.unit(10 + 8/12, "feet"),
  34398. name: "Front",
  34399. image: {
  34400. source: "./media/characters/azalie-croixland/front.svg",
  34401. extra: 1972/1856,
  34402. bottom: 31/2003
  34403. }
  34404. },
  34405. },
  34406. [
  34407. {
  34408. name: "Original Height",
  34409. height: math.unit(5 + 4/12, "feet")
  34410. },
  34411. {
  34412. name: "Normal Height",
  34413. height: math.unit(10 + 8/12, "feet"),
  34414. default: true
  34415. },
  34416. ]
  34417. ))
  34418. characterMakers.push(() => makeCharacter(
  34419. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34420. {
  34421. side: {
  34422. height: math.unit(7 + 1/12, "feet"),
  34423. weight: math.unit(245, "lb"),
  34424. name: "Side",
  34425. image: {
  34426. source: "./media/characters/kavus-kazian/side.svg",
  34427. extra: 349/342,
  34428. bottom: 15/364
  34429. }
  34430. },
  34431. },
  34432. [
  34433. {
  34434. name: "Normal",
  34435. height: math.unit(7 + 1/12, "feet"),
  34436. default: true
  34437. },
  34438. ]
  34439. ))
  34440. characterMakers.push(() => makeCharacter(
  34441. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34442. {
  34443. normal: {
  34444. height: math.unit(5 + 11/12, "feet"),
  34445. name: "Normal",
  34446. image: {
  34447. source: "./media/characters/moonlight-rose/normal.svg",
  34448. extra: 1979/1835,
  34449. bottom: 14/1993
  34450. }
  34451. },
  34452. demon: {
  34453. height: math.unit(5, "km"),
  34454. name: "Demon",
  34455. image: {
  34456. source: "./media/characters/moonlight-rose/demon.svg",
  34457. extra: 986/916,
  34458. bottom: 28/1014
  34459. }
  34460. },
  34461. },
  34462. [
  34463. {
  34464. name: "\"Natural\" height",
  34465. height: math.unit(5 + 11/12, "feet")
  34466. },
  34467. {
  34468. name: "Comfortable Size",
  34469. height: math.unit(40, "meters")
  34470. },
  34471. {
  34472. name: "Common Size",
  34473. height: math.unit(50, "km"),
  34474. default: true
  34475. },
  34476. {
  34477. name: "Demonic",
  34478. height: math.unit(1.24415e+21, "meters")
  34479. },
  34480. ]
  34481. ))
  34482. characterMakers.push(() => makeCharacter(
  34483. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34484. {
  34485. front: {
  34486. height: math.unit(16, "feet"),
  34487. weight: math.unit(610, "kg"),
  34488. name: "Front",
  34489. image: {
  34490. source: "./media/characters/huckle/front.svg",
  34491. extra: 1731/1625,
  34492. bottom: 33/1764
  34493. }
  34494. },
  34495. back: {
  34496. height: math.unit(16, "feet"),
  34497. weight: math.unit(610, "kg"),
  34498. name: "Back",
  34499. image: {
  34500. source: "./media/characters/huckle/back.svg",
  34501. extra: 1738/1651,
  34502. bottom: 37/1775
  34503. }
  34504. },
  34505. laughing: {
  34506. height: math.unit(3.75, "feet"),
  34507. name: "Laughing",
  34508. image: {
  34509. source: "./media/characters/huckle/laughing.svg"
  34510. }
  34511. },
  34512. angry: {
  34513. height: math.unit(4.15, "feet"),
  34514. name: "Angry",
  34515. image: {
  34516. source: "./media/characters/huckle/angry.svg"
  34517. }
  34518. },
  34519. },
  34520. [
  34521. {
  34522. name: "Normal",
  34523. height: math.unit(16, "feet"),
  34524. default: true
  34525. },
  34526. {
  34527. name: "Mini Macro",
  34528. height: math.unit(463, "feet")
  34529. },
  34530. {
  34531. name: "Macro",
  34532. height: math.unit(1680, "meters")
  34533. },
  34534. {
  34535. name: "Mega Macro",
  34536. height: math.unit(175, "km")
  34537. },
  34538. {
  34539. name: "Terra Macro",
  34540. height: math.unit(32, "gigameters")
  34541. },
  34542. {
  34543. name: "Multiverse+",
  34544. height: math.unit(2.56e23, "yottameters")
  34545. },
  34546. ]
  34547. ))
  34548. characterMakers.push(() => makeCharacter(
  34549. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34550. {
  34551. front: {
  34552. height: math.unit(6 + 9/12, "feet"),
  34553. weight: math.unit(280, "lb"),
  34554. name: "Front",
  34555. image: {
  34556. source: "./media/characters/candy/front.svg",
  34557. extra: 234/217,
  34558. bottom: 11/245
  34559. }
  34560. },
  34561. },
  34562. [
  34563. {
  34564. name: "Really Small",
  34565. height: math.unit(0.1, "nm")
  34566. },
  34567. {
  34568. name: "Micro",
  34569. height: math.unit(2, "inches")
  34570. },
  34571. {
  34572. name: "Normal",
  34573. height: math.unit(6 + 9/12, "feet"),
  34574. default: true
  34575. },
  34576. {
  34577. name: "Small Macro",
  34578. height: math.unit(69, "feet")
  34579. },
  34580. {
  34581. name: "Macro",
  34582. height: math.unit(160, "feet")
  34583. },
  34584. {
  34585. name: "Megamacro",
  34586. height: math.unit(22000, "miles")
  34587. },
  34588. {
  34589. name: "Gigamacro",
  34590. height: math.unit(50000, "miles")
  34591. },
  34592. ]
  34593. ))
  34594. characterMakers.push(() => makeCharacter(
  34595. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  34596. {
  34597. front: {
  34598. height: math.unit(4, "feet"),
  34599. weight: math.unit(90, "lb"),
  34600. name: "Front",
  34601. image: {
  34602. source: "./media/characters/joey-mcdonald/front.svg",
  34603. extra: 1059/852,
  34604. bottom: 33/1092
  34605. }
  34606. },
  34607. back: {
  34608. height: math.unit(4, "feet"),
  34609. weight: math.unit(90, "lb"),
  34610. name: "Back",
  34611. image: {
  34612. source: "./media/characters/joey-mcdonald/back.svg",
  34613. extra: 1077/879,
  34614. bottom: 5/1082
  34615. }
  34616. },
  34617. frontKobold: {
  34618. height: math.unit(4, "feet"),
  34619. weight: math.unit(100, "lb"),
  34620. name: "Front-kobold",
  34621. image: {
  34622. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  34623. extra: 1480/1367,
  34624. bottom: 0/1480
  34625. }
  34626. },
  34627. backKobold: {
  34628. height: math.unit(4, "feet"),
  34629. weight: math.unit(100, "lb"),
  34630. name: "Back-kobold",
  34631. image: {
  34632. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  34633. extra: 1449/1361,
  34634. bottom: 0/1449
  34635. }
  34636. },
  34637. },
  34638. [
  34639. {
  34640. name: "Normal",
  34641. height: math.unit(4, "feet"),
  34642. default: true
  34643. },
  34644. ]
  34645. ))
  34646. characterMakers.push(() => makeCharacter(
  34647. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34648. {
  34649. front: {
  34650. height: math.unit(12 + 6/12, "feet"),
  34651. name: "Front",
  34652. image: {
  34653. source: "./media/characters/kass-lockheed/front.svg",
  34654. extra: 354/343,
  34655. bottom: 9/363
  34656. }
  34657. },
  34658. back: {
  34659. height: math.unit(12 + 6/12, "feet"),
  34660. name: "Back",
  34661. image: {
  34662. source: "./media/characters/kass-lockheed/back.svg",
  34663. extra: 364/352,
  34664. bottom: 3/367
  34665. }
  34666. },
  34667. dick: {
  34668. height: math.unit(3.12, "feet"),
  34669. name: "Dick",
  34670. image: {
  34671. source: "./media/characters/kass-lockheed/dick.svg"
  34672. }
  34673. },
  34674. head: {
  34675. height: math.unit(2.6, "feet"),
  34676. name: "Head",
  34677. image: {
  34678. source: "./media/characters/kass-lockheed/head.svg"
  34679. }
  34680. },
  34681. bleh: {
  34682. height: math.unit(2.85, "feet"),
  34683. name: "Bleh",
  34684. image: {
  34685. source: "./media/characters/kass-lockheed/bleh.svg"
  34686. }
  34687. },
  34688. smug: {
  34689. height: math.unit(2.85, "feet"),
  34690. name: "Smug",
  34691. image: {
  34692. source: "./media/characters/kass-lockheed/smug.svg"
  34693. }
  34694. },
  34695. },
  34696. [
  34697. {
  34698. name: "Normal",
  34699. height: math.unit(12 + 6/12, "feet"),
  34700. default: true
  34701. },
  34702. ]
  34703. ))
  34704. characterMakers.push(() => makeCharacter(
  34705. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34706. {
  34707. front: {
  34708. height: math.unit(6 + 2/12, "feet"),
  34709. name: "Front",
  34710. image: {
  34711. source: "./media/characters/taylor/front.svg",
  34712. extra: 639/495,
  34713. bottom: 12/651
  34714. }
  34715. },
  34716. },
  34717. [
  34718. {
  34719. name: "Normal",
  34720. height: math.unit(6 + 2/12, "feet"),
  34721. default: true
  34722. },
  34723. {
  34724. name: "Big",
  34725. height: math.unit(15, "feet")
  34726. },
  34727. {
  34728. name: "Lorg",
  34729. height: math.unit(80, "feet")
  34730. },
  34731. {
  34732. name: "Too Lorg",
  34733. height: math.unit(120, "feet")
  34734. },
  34735. ]
  34736. ))
  34737. characterMakers.push(() => makeCharacter(
  34738. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34739. {
  34740. front: {
  34741. height: math.unit(15, "feet"),
  34742. name: "Front",
  34743. image: {
  34744. source: "./media/characters/kaizer/front.svg",
  34745. extra: 1612/1436,
  34746. bottom: 43/1655
  34747. }
  34748. },
  34749. },
  34750. [
  34751. {
  34752. name: "Normal",
  34753. height: math.unit(15, "feet"),
  34754. default: true
  34755. },
  34756. ]
  34757. ))
  34758. characterMakers.push(() => makeCharacter(
  34759. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34760. {
  34761. front: {
  34762. height: math.unit(2, "feet"),
  34763. weight: math.unit(30, "lb"),
  34764. name: "Front",
  34765. image: {
  34766. source: "./media/characters/sandy/front.svg",
  34767. extra: 1439/1307,
  34768. bottom: 194/1633
  34769. }
  34770. },
  34771. },
  34772. [
  34773. {
  34774. name: "Normal",
  34775. height: math.unit(2, "feet"),
  34776. default: true
  34777. },
  34778. ]
  34779. ))
  34780. characterMakers.push(() => makeCharacter(
  34781. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34782. {
  34783. front: {
  34784. height: math.unit(3, "feet"),
  34785. name: "Front",
  34786. image: {
  34787. source: "./media/characters/mellvi/front.svg",
  34788. extra: 1831/1630,
  34789. bottom: 58/1889
  34790. }
  34791. },
  34792. },
  34793. [
  34794. {
  34795. name: "Normal",
  34796. height: math.unit(3, "feet"),
  34797. default: true
  34798. },
  34799. ]
  34800. ))
  34801. characterMakers.push(() => makeCharacter(
  34802. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34803. {
  34804. front: {
  34805. height: math.unit(5 + 11/12, "feet"),
  34806. weight: math.unit(200, "lb"),
  34807. name: "Front",
  34808. image: {
  34809. source: "./media/characters/shirou/front.svg",
  34810. extra: 2491/2383,
  34811. bottom: 189/2680
  34812. }
  34813. },
  34814. back: {
  34815. height: math.unit(5 + 11/12, "feet"),
  34816. weight: math.unit(200, "lb"),
  34817. name: "Back",
  34818. image: {
  34819. source: "./media/characters/shirou/back.svg",
  34820. extra: 2554/2450,
  34821. bottom: 76/2630
  34822. }
  34823. },
  34824. },
  34825. [
  34826. {
  34827. name: "Normal",
  34828. height: math.unit(5 + 11/12, "feet"),
  34829. default: true
  34830. },
  34831. ]
  34832. ))
  34833. characterMakers.push(() => makeCharacter(
  34834. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34835. {
  34836. front: {
  34837. height: math.unit(6 + 3/12, "feet"),
  34838. weight: math.unit(177, "lb"),
  34839. name: "Front",
  34840. image: {
  34841. source: "./media/characters/noryu/front.svg",
  34842. extra: 973/885,
  34843. bottom: 10/983
  34844. }
  34845. },
  34846. },
  34847. [
  34848. {
  34849. name: "Normal",
  34850. height: math.unit(6 + 3/12, "feet"),
  34851. default: true
  34852. },
  34853. ]
  34854. ))
  34855. characterMakers.push(() => makeCharacter(
  34856. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34857. {
  34858. front: {
  34859. height: math.unit(5 + 6/12, "feet"),
  34860. weight: math.unit(170, "lb"),
  34861. name: "Front",
  34862. image: {
  34863. source: "./media/characters/mevolas-rubenido/front.svg",
  34864. extra: 2109/1901,
  34865. bottom: 96/2205
  34866. }
  34867. },
  34868. },
  34869. [
  34870. {
  34871. name: "Normal",
  34872. height: math.unit(5 + 6/12, "feet"),
  34873. default: true
  34874. },
  34875. ]
  34876. ))
  34877. characterMakers.push(() => makeCharacter(
  34878. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34879. {
  34880. front: {
  34881. height: math.unit(100, "feet"),
  34882. name: "Front",
  34883. image: {
  34884. source: "./media/characters/dee/front.svg",
  34885. extra: 2153/2036,
  34886. bottom: 59/2212
  34887. }
  34888. },
  34889. back: {
  34890. height: math.unit(100, "feet"),
  34891. name: "Back",
  34892. image: {
  34893. source: "./media/characters/dee/back.svg",
  34894. extra: 2183/2058,
  34895. bottom: 75/2258
  34896. }
  34897. },
  34898. foot: {
  34899. height: math.unit(19.43, "feet"),
  34900. name: "Foot",
  34901. image: {
  34902. source: "./media/characters/dee/foot.svg"
  34903. }
  34904. },
  34905. hoof: {
  34906. height: math.unit(20.6, "feet"),
  34907. name: "Hoof",
  34908. image: {
  34909. source: "./media/characters/dee/hoof.svg"
  34910. }
  34911. },
  34912. },
  34913. [
  34914. {
  34915. name: "Macro",
  34916. height: math.unit(100, "feet"),
  34917. default: true
  34918. },
  34919. ]
  34920. ))
  34921. characterMakers.push(() => makeCharacter(
  34922. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34923. {
  34924. front: {
  34925. height: math.unit(5 + 6/12, "feet"),
  34926. name: "Front",
  34927. image: {
  34928. source: "./media/characters/teh/front.svg",
  34929. extra: 1002/847,
  34930. bottom: 62/1064
  34931. }
  34932. },
  34933. },
  34934. [
  34935. {
  34936. name: "Normal",
  34937. height: math.unit(5 + 6/12, "feet"),
  34938. default: true
  34939. },
  34940. ]
  34941. ))
  34942. characterMakers.push(() => makeCharacter(
  34943. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34944. {
  34945. side: {
  34946. height: math.unit(6 + 1/12, "feet"),
  34947. weight: math.unit(204, "lb"),
  34948. name: "Side",
  34949. image: {
  34950. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34951. extra: 974/775,
  34952. bottom: 169/1143
  34953. }
  34954. },
  34955. sitting: {
  34956. height: math.unit(6 + 2/12, "feet"),
  34957. weight: math.unit(204, "lb"),
  34958. name: "Sitting",
  34959. image: {
  34960. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34961. extra: 1175/964,
  34962. bottom: 378/1553
  34963. }
  34964. },
  34965. },
  34966. [
  34967. {
  34968. name: "Normal",
  34969. height: math.unit(6 + 1/12, "feet"),
  34970. default: true
  34971. },
  34972. ]
  34973. ))
  34974. characterMakers.push(() => makeCharacter(
  34975. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34976. {
  34977. front: {
  34978. height: math.unit(6, "inches"),
  34979. name: "Front",
  34980. image: {
  34981. source: "./media/characters/tululi/front.svg",
  34982. extra: 1997/1876,
  34983. bottom: 20/2017
  34984. }
  34985. },
  34986. },
  34987. [
  34988. {
  34989. name: "Normal",
  34990. height: math.unit(6, "inches"),
  34991. default: true
  34992. },
  34993. ]
  34994. ))
  34995. characterMakers.push(() => makeCharacter(
  34996. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34997. {
  34998. front: {
  34999. height: math.unit(4 + 1/12, "feet"),
  35000. name: "Front",
  35001. image: {
  35002. source: "./media/characters/star/front.svg",
  35003. extra: 1493/1189,
  35004. bottom: 48/1541
  35005. }
  35006. },
  35007. },
  35008. [
  35009. {
  35010. name: "Normal",
  35011. height: math.unit(4 + 1/12, "feet"),
  35012. default: true
  35013. },
  35014. ]
  35015. ))
  35016. characterMakers.push(() => makeCharacter(
  35017. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35018. {
  35019. front: {
  35020. height: math.unit(6 + 3/12, "feet"),
  35021. name: "Front",
  35022. image: {
  35023. source: "./media/characters/comet/front.svg",
  35024. extra: 1681/1462,
  35025. bottom: 26/1707
  35026. }
  35027. },
  35028. },
  35029. [
  35030. {
  35031. name: "Normal",
  35032. height: math.unit(6 + 3/12, "feet"),
  35033. default: true
  35034. },
  35035. ]
  35036. ))
  35037. characterMakers.push(() => makeCharacter(
  35038. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35039. {
  35040. front: {
  35041. height: math.unit(950, "feet"),
  35042. name: "Front",
  35043. image: {
  35044. source: "./media/characters/vortex/front.svg",
  35045. extra: 1497/1434,
  35046. bottom: 56/1553
  35047. }
  35048. },
  35049. maw: {
  35050. height: math.unit(285, "feet"),
  35051. name: "Maw",
  35052. image: {
  35053. source: "./media/characters/vortex/maw.svg"
  35054. }
  35055. },
  35056. },
  35057. [
  35058. {
  35059. name: "Macro",
  35060. height: math.unit(950, "feet"),
  35061. default: true
  35062. },
  35063. ]
  35064. ))
  35065. characterMakers.push(() => makeCharacter(
  35066. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35067. {
  35068. front: {
  35069. height: math.unit(600, "feet"),
  35070. weight: math.unit(0.02, "grams"),
  35071. name: "Front",
  35072. image: {
  35073. source: "./media/characters/doodle/front.svg",
  35074. extra: 1578/1413,
  35075. bottom: 37/1615
  35076. }
  35077. },
  35078. },
  35079. [
  35080. {
  35081. name: "Macro",
  35082. height: math.unit(600, "feet"),
  35083. default: true
  35084. },
  35085. ]
  35086. ))
  35087. characterMakers.push(() => makeCharacter(
  35088. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35089. {
  35090. front: {
  35091. height: math.unit(6 + 6/12, "feet"),
  35092. name: "Front",
  35093. image: {
  35094. source: "./media/characters/jai/front.svg",
  35095. extra: 1645/1534,
  35096. bottom: 115/1760
  35097. }
  35098. },
  35099. },
  35100. [
  35101. {
  35102. name: "Normal",
  35103. height: math.unit(6 + 6/12, "feet"),
  35104. default: true
  35105. },
  35106. ]
  35107. ))
  35108. characterMakers.push(() => makeCharacter(
  35109. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35110. {
  35111. front: {
  35112. height: math.unit(6 + 8/12, "feet"),
  35113. name: "Front",
  35114. image: {
  35115. source: "./media/characters/pixel/front.svg",
  35116. extra: 1900/1735,
  35117. bottom: 63/1963
  35118. }
  35119. },
  35120. },
  35121. [
  35122. {
  35123. name: "Normal",
  35124. height: math.unit(6 + 8/12, "feet"),
  35125. default: true
  35126. },
  35127. ]
  35128. ))
  35129. characterMakers.push(() => makeCharacter(
  35130. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35131. {
  35132. front: {
  35133. height: math.unit(4 + 11/12, "feet"),
  35134. weight: math.unit(111, "lb"),
  35135. name: "Front",
  35136. image: {
  35137. source: "./media/characters/rhett/front.svg",
  35138. extra: 1682/1586,
  35139. bottom: 92/1774
  35140. }
  35141. },
  35142. },
  35143. [
  35144. {
  35145. name: "Mini",
  35146. height: math.unit(1 + 1/12, "feet")
  35147. },
  35148. {
  35149. name: "Normal",
  35150. height: math.unit(4 + 11/12, "feet"),
  35151. default: true
  35152. },
  35153. ]
  35154. ))
  35155. characterMakers.push(() => makeCharacter(
  35156. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35157. {
  35158. front: {
  35159. height: math.unit(3 + 3/12, "feet"),
  35160. name: "Front",
  35161. image: {
  35162. source: "./media/characters/penny/front.svg",
  35163. extra: 1406/1311,
  35164. bottom: 26/1432
  35165. }
  35166. },
  35167. },
  35168. [
  35169. {
  35170. name: "Normal",
  35171. height: math.unit(3 + 3/12, "feet"),
  35172. default: true
  35173. },
  35174. ]
  35175. ))
  35176. characterMakers.push(() => makeCharacter(
  35177. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35178. {
  35179. front: {
  35180. height: math.unit(4 + 11/12, "feet"),
  35181. name: "Front",
  35182. image: {
  35183. source: "./media/characters/monty/front.svg",
  35184. extra: 1479/1209,
  35185. bottom: 0/1479
  35186. }
  35187. },
  35188. },
  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: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35199. {
  35200. front: {
  35201. height: math.unit(8 + 4/12, "feet"),
  35202. name: "Front",
  35203. image: {
  35204. source: "./media/characters/sterling/front.svg",
  35205. extra: 1420/1236,
  35206. bottom: 27/1447
  35207. }
  35208. },
  35209. },
  35210. [
  35211. {
  35212. name: "Normal",
  35213. height: math.unit(8 + 4/12, "feet"),
  35214. default: true
  35215. },
  35216. ]
  35217. ))
  35218. characterMakers.push(() => makeCharacter(
  35219. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35220. {
  35221. front: {
  35222. height: math.unit(15, "feet"),
  35223. name: "Front",
  35224. image: {
  35225. source: "./media/characters/marble/front.svg",
  35226. extra: 973/937,
  35227. bottom: 32/1005
  35228. }
  35229. },
  35230. },
  35231. [
  35232. {
  35233. name: "Normal",
  35234. height: math.unit(15, "feet"),
  35235. default: true
  35236. },
  35237. ]
  35238. ))
  35239. characterMakers.push(() => makeCharacter(
  35240. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35241. {
  35242. front: {
  35243. height: math.unit(3, "inches"),
  35244. name: "Front",
  35245. image: {
  35246. source: "./media/characters/powder/front.svg",
  35247. extra: 1504/1334,
  35248. bottom: 518/2022
  35249. }
  35250. },
  35251. },
  35252. [
  35253. {
  35254. name: "Normal",
  35255. height: math.unit(3, "inches"),
  35256. default: true
  35257. },
  35258. ]
  35259. ))
  35260. characterMakers.push(() => makeCharacter(
  35261. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35262. {
  35263. front: {
  35264. height: math.unit(4 + 5/12, "feet"),
  35265. name: "Front",
  35266. image: {
  35267. source: "./media/characters/joey-raccoon/front.svg",
  35268. extra: 1273/1197,
  35269. bottom: 0/1273
  35270. }
  35271. },
  35272. },
  35273. [
  35274. {
  35275. name: "Normal",
  35276. height: math.unit(4 + 5/12, "feet"),
  35277. default: true
  35278. },
  35279. ]
  35280. ))
  35281. characterMakers.push(() => makeCharacter(
  35282. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35283. {
  35284. front: {
  35285. height: math.unit(8 + 4/12, "feet"),
  35286. name: "Front",
  35287. image: {
  35288. source: "./media/characters/vick/front.svg",
  35289. extra: 2187/2118,
  35290. bottom: 47/2234
  35291. }
  35292. },
  35293. },
  35294. [
  35295. {
  35296. name: "Normal",
  35297. height: math.unit(8 + 4/12, "feet"),
  35298. default: true
  35299. },
  35300. ]
  35301. ))
  35302. characterMakers.push(() => makeCharacter(
  35303. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35304. {
  35305. front: {
  35306. height: math.unit(5 + 5/12, "feet"),
  35307. name: "Front",
  35308. image: {
  35309. source: "./media/characters/mitsy/front.svg",
  35310. extra: 1842/1695,
  35311. bottom: 0/1842
  35312. }
  35313. },
  35314. },
  35315. [
  35316. {
  35317. name: "Normal",
  35318. height: math.unit(5 + 5/12, "feet"),
  35319. default: true
  35320. },
  35321. ]
  35322. ))
  35323. characterMakers.push(() => makeCharacter(
  35324. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35325. {
  35326. front: {
  35327. height: math.unit(6 + 3/12, "feet"),
  35328. name: "Front",
  35329. image: {
  35330. source: "./media/characters/silvy/front.svg",
  35331. extra: 1995/1836,
  35332. bottom: 225/2220
  35333. }
  35334. },
  35335. },
  35336. [
  35337. {
  35338. name: "Normal",
  35339. height: math.unit(6 + 3/12, "feet"),
  35340. default: true
  35341. },
  35342. ]
  35343. ))
  35344. characterMakers.push(() => makeCharacter(
  35345. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35346. {
  35347. front: {
  35348. height: math.unit(3 + 8/12, "feet"),
  35349. name: "Front",
  35350. image: {
  35351. source: "./media/characters/rodney/front.svg",
  35352. extra: 1956/1747,
  35353. bottom: 31/1987
  35354. }
  35355. },
  35356. frontDressed: {
  35357. height: math.unit(2.9, "feet"),
  35358. name: "Front (Dressed)",
  35359. image: {
  35360. source: "./media/characters/rodney/front-dressed.svg",
  35361. extra: 1382/1241,
  35362. bottom: 385/1767
  35363. }
  35364. },
  35365. },
  35366. [
  35367. {
  35368. name: "Normal",
  35369. height: math.unit(3 + 8/12, "feet"),
  35370. default: true
  35371. },
  35372. ]
  35373. ))
  35374. characterMakers.push(() => makeCharacter(
  35375. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35376. {
  35377. front: {
  35378. height: math.unit(5 + 9/12, "feet"),
  35379. weight: math.unit(194, "lbs"),
  35380. name: "Front",
  35381. image: {
  35382. source: "./media/characters/zakail-sudekai/front.svg",
  35383. extra: 2696/2533,
  35384. bottom: 248/2944
  35385. }
  35386. },
  35387. maw: {
  35388. height: math.unit(1.35, "feet"),
  35389. name: "Maw",
  35390. image: {
  35391. source: "./media/characters/zakail-sudekai/maw.svg"
  35392. }
  35393. },
  35394. },
  35395. [
  35396. {
  35397. name: "Normal",
  35398. height: math.unit(5 + 9/12, "feet"),
  35399. default: true
  35400. },
  35401. ]
  35402. ))
  35403. characterMakers.push(() => makeCharacter(
  35404. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35405. {
  35406. front: {
  35407. height: math.unit(8 + 4/12, "feet"),
  35408. weight: math.unit(1200, "lb"),
  35409. name: "Front",
  35410. image: {
  35411. source: "./media/characters/eleanor/front.svg",
  35412. extra: 1226/1192,
  35413. bottom: 52/1278
  35414. }
  35415. },
  35416. back: {
  35417. height: math.unit(8 + 4/12, "feet"),
  35418. weight: math.unit(1200, "lb"),
  35419. name: "Back",
  35420. image: {
  35421. source: "./media/characters/eleanor/back.svg",
  35422. extra: 1242/1184,
  35423. bottom: 60/1302
  35424. }
  35425. },
  35426. head: {
  35427. height: math.unit(2.62, "feet"),
  35428. name: "Head",
  35429. image: {
  35430. source: "./media/characters/eleanor/head.svg"
  35431. }
  35432. },
  35433. },
  35434. [
  35435. {
  35436. name: "Normal",
  35437. height: math.unit(8 + 4/12, "feet"),
  35438. default: true
  35439. },
  35440. ]
  35441. ))
  35442. characterMakers.push(() => makeCharacter(
  35443. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35444. {
  35445. front: {
  35446. height: math.unit(8 + 4/12, "feet"),
  35447. weight: math.unit(750, "lb"),
  35448. name: "Front",
  35449. image: {
  35450. source: "./media/characters/tanya/front.svg",
  35451. extra: 1749/1615,
  35452. bottom: 33/1782
  35453. }
  35454. },
  35455. },
  35456. [
  35457. {
  35458. name: "Normal",
  35459. height: math.unit(8 + 4/12, "feet"),
  35460. default: true
  35461. },
  35462. ]
  35463. ))
  35464. characterMakers.push(() => makeCharacter(
  35465. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35466. {
  35467. front: {
  35468. height: math.unit(5, "feet"),
  35469. weight: math.unit(225, "lb"),
  35470. name: "Front",
  35471. image: {
  35472. source: "./media/characters/cindy/front.svg",
  35473. extra: 1320/1250,
  35474. bottom: 42/1362
  35475. }
  35476. },
  35477. frontDressed: {
  35478. height: math.unit(5, "feet"),
  35479. weight: math.unit(225, "lb"),
  35480. name: "Front (Dressed)",
  35481. image: {
  35482. source: "./media/characters/cindy/front-dressed.svg",
  35483. extra: 1320/1250,
  35484. bottom: 42/1362
  35485. }
  35486. },
  35487. back: {
  35488. height: math.unit(5, "feet"),
  35489. weight: math.unit(225, "lb"),
  35490. name: "Back",
  35491. image: {
  35492. source: "./media/characters/cindy/back.svg",
  35493. extra: 1384/1346,
  35494. bottom: 14/1398
  35495. }
  35496. },
  35497. },
  35498. [
  35499. {
  35500. name: "Normal",
  35501. height: math.unit(5, "feet"),
  35502. default: true
  35503. },
  35504. ]
  35505. ))
  35506. characterMakers.push(() => makeCharacter(
  35507. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35508. {
  35509. front: {
  35510. height: math.unit(6 + 9/12, "feet"),
  35511. weight: math.unit(440, "lb"),
  35512. name: "Front",
  35513. image: {
  35514. source: "./media/characters/wilbur-owen/front.svg",
  35515. extra: 1575/1448,
  35516. bottom: 72/1647
  35517. }
  35518. },
  35519. back: {
  35520. height: math.unit(6 + 9/12, "feet"),
  35521. weight: math.unit(440, "lb"),
  35522. name: "Back",
  35523. image: {
  35524. source: "./media/characters/wilbur-owen/back.svg",
  35525. extra: 1578/1445,
  35526. bottom: 36/1614
  35527. }
  35528. },
  35529. },
  35530. [
  35531. {
  35532. name: "Normal",
  35533. height: math.unit(6 + 9/12, "feet"),
  35534. default: true
  35535. },
  35536. ]
  35537. ))
  35538. characterMakers.push(() => makeCharacter(
  35539. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35540. {
  35541. front: {
  35542. height: math.unit(6 + 5/12, "feet"),
  35543. weight: math.unit(650, "lb"),
  35544. name: "Front",
  35545. image: {
  35546. source: "./media/characters/keegan/front.svg",
  35547. extra: 2387/2198,
  35548. bottom: 33/2420
  35549. }
  35550. },
  35551. side: {
  35552. height: math.unit(6 + 5/12, "feet"),
  35553. weight: math.unit(650, "lb"),
  35554. name: "Side",
  35555. image: {
  35556. source: "./media/characters/keegan/side.svg",
  35557. extra: 2390/2202,
  35558. bottom: 47/2437
  35559. }
  35560. },
  35561. back: {
  35562. height: math.unit(6 + 5/12, "feet"),
  35563. weight: math.unit(650, "lb"),
  35564. name: "Back",
  35565. image: {
  35566. source: "./media/characters/keegan/back.svg",
  35567. extra: 2418/2268,
  35568. bottom: 15/2433
  35569. }
  35570. },
  35571. frontSfw: {
  35572. height: math.unit(6 + 5/12, "feet"),
  35573. weight: math.unit(650, "lb"),
  35574. name: "Front (SFW)",
  35575. image: {
  35576. source: "./media/characters/keegan/front-sfw.svg",
  35577. extra: 2387/2198,
  35578. bottom: 33/2420
  35579. }
  35580. },
  35581. beans: {
  35582. height: math.unit(1.85, "feet"),
  35583. name: "Beans",
  35584. image: {
  35585. source: "./media/characters/keegan/beans.svg"
  35586. }
  35587. },
  35588. },
  35589. [
  35590. {
  35591. name: "Normal",
  35592. height: math.unit(6 + 5/12, "feet"),
  35593. default: true
  35594. },
  35595. ]
  35596. ))
  35597. characterMakers.push(() => makeCharacter(
  35598. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35599. {
  35600. front: {
  35601. height: math.unit(9, "feet"),
  35602. name: "Front",
  35603. image: {
  35604. source: "./media/characters/colton/front.svg",
  35605. extra: 1589/1326,
  35606. bottom: 139/1728
  35607. }
  35608. },
  35609. },
  35610. [
  35611. {
  35612. name: "Normal",
  35613. height: math.unit(9, "feet"),
  35614. default: true
  35615. },
  35616. ]
  35617. ))
  35618. characterMakers.push(() => makeCharacter(
  35619. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35620. {
  35621. front: {
  35622. height: math.unit(2 + 9/12, "feet"),
  35623. name: "Front",
  35624. image: {
  35625. source: "./media/characters/bora/front.svg",
  35626. extra: 1265/1250,
  35627. bottom: 24/1289
  35628. }
  35629. },
  35630. },
  35631. [
  35632. {
  35633. name: "Normal",
  35634. height: math.unit(2 + 9/12, "feet"),
  35635. default: true
  35636. },
  35637. ]
  35638. ))
  35639. characterMakers.push(() => makeCharacter(
  35640. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35641. {
  35642. front: {
  35643. height: math.unit(8, "feet"),
  35644. name: "Front",
  35645. image: {
  35646. source: "./media/characters/myu-myu/front.svg",
  35647. extra: 1949/1857,
  35648. bottom: 90/2039
  35649. }
  35650. },
  35651. },
  35652. [
  35653. {
  35654. name: "Normal",
  35655. height: math.unit(8, "feet"),
  35656. default: true
  35657. },
  35658. {
  35659. name: "Big",
  35660. height: math.unit(15, "feet")
  35661. },
  35662. {
  35663. name: "BIG",
  35664. height: math.unit(25, "feet")
  35665. },
  35666. ]
  35667. ))
  35668. characterMakers.push(() => makeCharacter(
  35669. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35670. {
  35671. side: {
  35672. height: math.unit(7 + 5/12, "feet"),
  35673. weight: math.unit(2800, "lb"),
  35674. name: "Side",
  35675. image: {
  35676. source: "./media/characters/haloren/side.svg",
  35677. extra: 1793/409,
  35678. bottom: 59/1852
  35679. }
  35680. },
  35681. frontPaw: {
  35682. height: math.unit(2.36, "feet"),
  35683. name: "Front paw",
  35684. image: {
  35685. source: "./media/characters/haloren/front-paw.svg"
  35686. }
  35687. },
  35688. hindPaw: {
  35689. height: math.unit(3.18, "feet"),
  35690. name: "Hind paw",
  35691. image: {
  35692. source: "./media/characters/haloren/hind-paw.svg"
  35693. }
  35694. },
  35695. maw: {
  35696. height: math.unit(5.05, "feet"),
  35697. name: "Maw",
  35698. image: {
  35699. source: "./media/characters/haloren/maw.svg"
  35700. }
  35701. },
  35702. dick: {
  35703. height: math.unit(2.90, "feet"),
  35704. name: "Dick",
  35705. image: {
  35706. source: "./media/characters/haloren/dick.svg"
  35707. }
  35708. },
  35709. },
  35710. [
  35711. {
  35712. name: "Normal",
  35713. height: math.unit(7 + 5/12, "feet"),
  35714. default: true
  35715. },
  35716. {
  35717. name: "Enhanced",
  35718. height: math.unit(14 + 3/12, "feet")
  35719. },
  35720. ]
  35721. ))
  35722. characterMakers.push(() => makeCharacter(
  35723. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35724. {
  35725. front: {
  35726. height: math.unit(171, "cm"),
  35727. name: "Front",
  35728. image: {
  35729. source: "./media/characters/kimmy/front.svg",
  35730. extra: 1491/1435,
  35731. bottom: 53/1544
  35732. }
  35733. },
  35734. },
  35735. [
  35736. {
  35737. name: "Small",
  35738. height: math.unit(9, "cm")
  35739. },
  35740. {
  35741. name: "Normal",
  35742. height: math.unit(171, "cm"),
  35743. default: true
  35744. },
  35745. ]
  35746. ))
  35747. characterMakers.push(() => makeCharacter(
  35748. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35749. {
  35750. front: {
  35751. height: math.unit(8, "feet"),
  35752. weight: math.unit(300, "lb"),
  35753. name: "Front",
  35754. image: {
  35755. source: "./media/characters/galeboomer/front.svg",
  35756. extra: 4651/4415,
  35757. bottom: 162/4813
  35758. }
  35759. },
  35760. back: {
  35761. height: math.unit(8, "feet"),
  35762. weight: math.unit(300, "lb"),
  35763. name: "Back",
  35764. image: {
  35765. source: "./media/characters/galeboomer/back.svg",
  35766. extra: 4544/4314,
  35767. bottom: 16/4560
  35768. }
  35769. },
  35770. frontAlt: {
  35771. height: math.unit(8, "feet"),
  35772. weight: math.unit(300, "lb"),
  35773. name: "Front (Alt)",
  35774. image: {
  35775. source: "./media/characters/galeboomer/front-alt.svg",
  35776. extra: 4458/4228,
  35777. bottom: 68/4526
  35778. }
  35779. },
  35780. maw: {
  35781. height: math.unit(1.2, "feet"),
  35782. name: "Maw",
  35783. image: {
  35784. source: "./media/characters/galeboomer/maw.svg"
  35785. }
  35786. },
  35787. },
  35788. [
  35789. {
  35790. name: "Normal",
  35791. height: math.unit(8, "feet"),
  35792. default: true
  35793. },
  35794. ]
  35795. ))
  35796. characterMakers.push(() => makeCharacter(
  35797. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35798. {
  35799. front: {
  35800. height: math.unit(5 + 9/12, "feet"),
  35801. weight: math.unit(120, "lb"),
  35802. name: "Front",
  35803. image: {
  35804. source: "./media/characters/chyr/front.svg",
  35805. extra: 1323/1254,
  35806. bottom: 63/1386
  35807. }
  35808. },
  35809. back: {
  35810. height: math.unit(5 + 9/12, "feet"),
  35811. weight: math.unit(120, "lb"),
  35812. name: "Back",
  35813. image: {
  35814. source: "./media/characters/chyr/back.svg",
  35815. extra: 1323/1252,
  35816. bottom: 48/1371
  35817. }
  35818. },
  35819. },
  35820. [
  35821. {
  35822. name: "Normal",
  35823. height: math.unit(5 + 9/12, "feet"),
  35824. default: true
  35825. },
  35826. ]
  35827. ))
  35828. characterMakers.push(() => makeCharacter(
  35829. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35830. {
  35831. front: {
  35832. height: math.unit(7, "feet"),
  35833. weight: math.unit(310, "lb"),
  35834. name: "Front",
  35835. image: {
  35836. source: "./media/characters/solarus/front.svg",
  35837. extra: 2415/2021,
  35838. bottom: 103/2518
  35839. }
  35840. },
  35841. back: {
  35842. height: math.unit(7, "feet"),
  35843. weight: math.unit(310, "lb"),
  35844. name: "Back",
  35845. image: {
  35846. source: "./media/characters/solarus/back.svg",
  35847. extra: 2463/2089,
  35848. bottom: 79/2542
  35849. }
  35850. },
  35851. },
  35852. [
  35853. {
  35854. name: "Normal",
  35855. height: math.unit(7, "feet"),
  35856. default: true
  35857. },
  35858. ]
  35859. ))
  35860. characterMakers.push(() => makeCharacter(
  35861. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35862. {
  35863. front: {
  35864. height: math.unit(16, "feet"),
  35865. name: "Front",
  35866. image: {
  35867. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35868. extra: 1844/1780,
  35869. bottom: 58/1902
  35870. }
  35871. },
  35872. winterCoat: {
  35873. height: math.unit(16, "feet"),
  35874. name: "Winter Coat",
  35875. image: {
  35876. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  35877. extra: 1807/1775,
  35878. bottom: 69/1876
  35879. }
  35880. },
  35881. },
  35882. [
  35883. {
  35884. name: "Normal",
  35885. height: math.unit(16, "feet"),
  35886. default: true
  35887. },
  35888. {
  35889. name: "Chicago Size",
  35890. height: math.unit(560, "feet")
  35891. },
  35892. ]
  35893. ))
  35894. characterMakers.push(() => makeCharacter(
  35895. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35896. {
  35897. front: {
  35898. height: math.unit(11 + 6/12, "feet"),
  35899. weight: math.unit(1366, "lb"),
  35900. name: "Front",
  35901. image: {
  35902. source: "./media/characters/lexor/front.svg",
  35903. extra: 1560/1481,
  35904. bottom: 211/1771
  35905. }
  35906. },
  35907. back: {
  35908. height: math.unit(11 + 6/12, "feet"),
  35909. weight: math.unit(1366, "lb"),
  35910. name: "Back",
  35911. image: {
  35912. source: "./media/characters/lexor/back.svg",
  35913. extra: 1614/1533,
  35914. bottom: 76/1690
  35915. }
  35916. },
  35917. maw: {
  35918. height: math.unit(3, "feet"),
  35919. name: "Maw",
  35920. image: {
  35921. source: "./media/characters/lexor/maw.svg"
  35922. }
  35923. },
  35924. dick: {
  35925. height: math.unit(2.59, "feet"),
  35926. name: "Dick",
  35927. image: {
  35928. source: "./media/characters/lexor/dick.svg"
  35929. }
  35930. },
  35931. },
  35932. [
  35933. {
  35934. name: "Normal",
  35935. height: math.unit(11 + 6/12, "feet"),
  35936. default: true
  35937. },
  35938. ]
  35939. ))
  35940. characterMakers.push(() => makeCharacter(
  35941. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35942. {
  35943. front: {
  35944. height: math.unit(5 + 8/12, "feet"),
  35945. name: "Front",
  35946. image: {
  35947. source: "./media/characters/magnum/front.svg",
  35948. extra: 942/855,
  35949. bottom: 26/968
  35950. }
  35951. },
  35952. },
  35953. [
  35954. {
  35955. name: "Normal",
  35956. height: math.unit(5 + 8/12, "feet"),
  35957. default: true
  35958. },
  35959. ]
  35960. ))
  35961. characterMakers.push(() => makeCharacter(
  35962. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35963. {
  35964. front: {
  35965. height: math.unit(18 + 4/12, "feet"),
  35966. weight: math.unit(1500, "kg"),
  35967. name: "Front",
  35968. image: {
  35969. source: "./media/characters/solas-sharpsman/front.svg",
  35970. extra: 1698/1589,
  35971. bottom: 0/1698
  35972. }
  35973. },
  35974. },
  35975. [
  35976. {
  35977. name: "Normal",
  35978. height: math.unit(18 + 4/12, "feet"),
  35979. default: true
  35980. },
  35981. ]
  35982. ))
  35983. characterMakers.push(() => makeCharacter(
  35984. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35985. {
  35986. front: {
  35987. height: math.unit(5 + 5/12, "feet"),
  35988. weight: math.unit(180, "lb"),
  35989. name: "Front",
  35990. image: {
  35991. source: "./media/characters/october/front.svg",
  35992. extra: 1800/1650,
  35993. bottom: 0/1800
  35994. }
  35995. },
  35996. frontNsfw: {
  35997. height: math.unit(5 + 5/12, "feet"),
  35998. weight: math.unit(180, "lb"),
  35999. name: "Front (NSFW)",
  36000. image: {
  36001. source: "./media/characters/october/front-nsfw.svg",
  36002. extra: 1392/1307,
  36003. bottom: 42/1434
  36004. }
  36005. },
  36006. },
  36007. [
  36008. {
  36009. name: "Normal",
  36010. height: math.unit(5 + 5/12, "feet"),
  36011. default: true
  36012. },
  36013. ]
  36014. ))
  36015. characterMakers.push(() => makeCharacter(
  36016. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36017. {
  36018. front: {
  36019. height: math.unit(8 + 6/12, "feet"),
  36020. name: "Front",
  36021. image: {
  36022. source: "./media/characters/essynkardi/front.svg",
  36023. extra: 1914/1846,
  36024. bottom: 22/1936
  36025. }
  36026. },
  36027. },
  36028. [
  36029. {
  36030. name: "Normal",
  36031. height: math.unit(8 + 6/12, "feet"),
  36032. default: true
  36033. },
  36034. ]
  36035. ))
  36036. characterMakers.push(() => makeCharacter(
  36037. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36038. {
  36039. front: {
  36040. height: math.unit(6 + 6/12, "feet"),
  36041. weight: math.unit(7, "lb"),
  36042. name: "Front",
  36043. image: {
  36044. source: "./media/characters/icky/front.svg",
  36045. extra: 813/782,
  36046. bottom: 66/879
  36047. }
  36048. },
  36049. back: {
  36050. height: math.unit(6 + 6/12, "feet"),
  36051. weight: math.unit(7, "lb"),
  36052. name: "Back",
  36053. image: {
  36054. source: "./media/characters/icky/back.svg",
  36055. extra: 754/735,
  36056. bottom: 56/810
  36057. }
  36058. },
  36059. },
  36060. [
  36061. {
  36062. name: "Normal",
  36063. height: math.unit(6 + 6/12, "feet"),
  36064. default: true
  36065. },
  36066. ]
  36067. ))
  36068. characterMakers.push(() => makeCharacter(
  36069. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36070. {
  36071. front: {
  36072. height: math.unit(15, "feet"),
  36073. name: "Front",
  36074. image: {
  36075. source: "./media/characters/rojas/front.svg",
  36076. extra: 1462/1408,
  36077. bottom: 95/1557
  36078. }
  36079. },
  36080. back: {
  36081. height: math.unit(15, "feet"),
  36082. name: "Back",
  36083. image: {
  36084. source: "./media/characters/rojas/back.svg",
  36085. extra: 1023/954,
  36086. bottom: 28/1051
  36087. }
  36088. },
  36089. },
  36090. [
  36091. {
  36092. name: "Normal",
  36093. height: math.unit(15, "feet"),
  36094. default: true
  36095. },
  36096. ]
  36097. ))
  36098. characterMakers.push(() => makeCharacter(
  36099. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36100. {
  36101. frontHuman: {
  36102. height: math.unit(5 + 7/12, "feet"),
  36103. name: "Front (Human)",
  36104. image: {
  36105. source: "./media/characters/alek-dryagan/front-human.svg",
  36106. extra: 1687/1667,
  36107. bottom: 69/1756
  36108. }
  36109. },
  36110. backHuman: {
  36111. height: math.unit(5 + 7/12, "feet"),
  36112. name: "Back (Human)",
  36113. image: {
  36114. source: "./media/characters/alek-dryagan/back-human.svg",
  36115. extra: 1670/1649,
  36116. bottom: 65/1735
  36117. }
  36118. },
  36119. frontDemi: {
  36120. height: math.unit(65, "feet"),
  36121. name: "Front (Demi)",
  36122. image: {
  36123. source: "./media/characters/alek-dryagan/front-demi.svg",
  36124. extra: 1669/1642,
  36125. bottom: 49/1718
  36126. }
  36127. },
  36128. backDemi: {
  36129. height: math.unit(65, "feet"),
  36130. name: "Back (Demi)",
  36131. image: {
  36132. source: "./media/characters/alek-dryagan/back-demi.svg",
  36133. extra: 1658/1637,
  36134. bottom: 40/1698
  36135. }
  36136. },
  36137. mawHuman: {
  36138. height: math.unit(0.3, "feet"),
  36139. name: "Maw (Human)",
  36140. image: {
  36141. source: "./media/characters/alek-dryagan/maw-human.svg"
  36142. }
  36143. },
  36144. mawDemi: {
  36145. height: math.unit(3.8, "feet"),
  36146. name: "Maw (Demi)",
  36147. image: {
  36148. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36149. }
  36150. },
  36151. },
  36152. [
  36153. {
  36154. name: "Normal",
  36155. height: math.unit(5 + 7/12, "feet"),
  36156. default: true
  36157. },
  36158. ]
  36159. ))
  36160. characterMakers.push(() => makeCharacter(
  36161. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36162. {
  36163. frontHuman: {
  36164. height: math.unit(5 + 2/12, "feet"),
  36165. name: "Front (Human)",
  36166. image: {
  36167. source: "./media/characters/gen/front-human.svg",
  36168. extra: 1627/1538,
  36169. bottom: 71/1698
  36170. }
  36171. },
  36172. backHuman: {
  36173. height: math.unit(5 + 2/12, "feet"),
  36174. name: "Back (Human)",
  36175. image: {
  36176. source: "./media/characters/gen/back-human.svg",
  36177. extra: 1638/1548,
  36178. bottom: 69/1707
  36179. }
  36180. },
  36181. frontDemi: {
  36182. height: math.unit(5 + 2/12, "feet"),
  36183. name: "Front (Demi)",
  36184. image: {
  36185. source: "./media/characters/gen/front-demi.svg",
  36186. extra: 1627/1538,
  36187. bottom: 71/1698
  36188. }
  36189. },
  36190. backDemi: {
  36191. height: math.unit(5 + 2/12, "feet"),
  36192. name: "Back (Demi)",
  36193. image: {
  36194. source: "./media/characters/gen/back-demi.svg",
  36195. extra: 1638/1548,
  36196. bottom: 69/1707
  36197. }
  36198. },
  36199. },
  36200. [
  36201. {
  36202. name: "Normal",
  36203. height: math.unit(5 + 2/12, "feet"),
  36204. default: true
  36205. },
  36206. ]
  36207. ))
  36208. characterMakers.push(() => makeCharacter(
  36209. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36210. {
  36211. frontImp: {
  36212. height: math.unit(1 + 11/12, "feet"),
  36213. name: "Front (Imp)",
  36214. image: {
  36215. source: "./media/characters/max-kobold/front-imp.svg",
  36216. extra: 1238/1134,
  36217. bottom: 81/1319
  36218. }
  36219. },
  36220. backImp: {
  36221. height: math.unit(1 + 11/12, "feet"),
  36222. name: "Back (Imp)",
  36223. image: {
  36224. source: "./media/characters/max-kobold/back-imp.svg",
  36225. extra: 1334/1175,
  36226. bottom: 34/1368
  36227. }
  36228. },
  36229. frontDemi: {
  36230. height: math.unit(5 + 9/12, "feet"),
  36231. name: "Front (Demi)",
  36232. image: {
  36233. source: "./media/characters/max-kobold/front-demi.svg",
  36234. extra: 1715/1685,
  36235. bottom: 54/1769
  36236. }
  36237. },
  36238. backDemi: {
  36239. height: math.unit(5 + 9/12, "feet"),
  36240. name: "Back (Demi)",
  36241. image: {
  36242. source: "./media/characters/max-kobold/back-demi.svg",
  36243. extra: 1752/1729,
  36244. bottom: 41/1793
  36245. }
  36246. },
  36247. handImp: {
  36248. height: math.unit(0.45, "feet"),
  36249. name: "Hand (Imp)",
  36250. image: {
  36251. source: "./media/characters/max-kobold/hand.svg"
  36252. }
  36253. },
  36254. pawImp: {
  36255. height: math.unit(0.46, "feet"),
  36256. name: "Paw (Imp)",
  36257. image: {
  36258. source: "./media/characters/max-kobold/paw.svg"
  36259. }
  36260. },
  36261. handDemi: {
  36262. height: math.unit(0.80, "feet"),
  36263. name: "Hand (Demi)",
  36264. image: {
  36265. source: "./media/characters/max-kobold/hand.svg"
  36266. }
  36267. },
  36268. pawDemi: {
  36269. height: math.unit(1.1, "feet"),
  36270. name: "Paw (Demi)",
  36271. image: {
  36272. source: "./media/characters/max-kobold/paw.svg"
  36273. }
  36274. },
  36275. headImp: {
  36276. height: math.unit(1.33, "feet"),
  36277. name: "Head (Imp)",
  36278. image: {
  36279. source: "./media/characters/max-kobold/head-imp.svg"
  36280. }
  36281. },
  36282. mawImp: {
  36283. height: math.unit(0.75, "feet"),
  36284. name: "Maw (Imp)",
  36285. image: {
  36286. source: "./media/characters/max-kobold/maw-imp.svg"
  36287. }
  36288. },
  36289. mawDemi: {
  36290. height: math.unit(0.42, "feet"),
  36291. name: "Maw (Demi)",
  36292. image: {
  36293. source: "./media/characters/max-kobold/maw-demi.svg"
  36294. }
  36295. },
  36296. },
  36297. [
  36298. {
  36299. name: "Normal",
  36300. height: math.unit(1 + 11/12, "feet"),
  36301. default: true
  36302. },
  36303. ]
  36304. ))
  36305. characterMakers.push(() => makeCharacter(
  36306. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36307. {
  36308. front: {
  36309. height: math.unit(7 + 5/12, "feet"),
  36310. name: "Front",
  36311. image: {
  36312. source: "./media/characters/carbon/front.svg",
  36313. extra: 1754/1689,
  36314. bottom: 65/1819
  36315. }
  36316. },
  36317. back: {
  36318. height: math.unit(7 + 5/12, "feet"),
  36319. name: "Back",
  36320. image: {
  36321. source: "./media/characters/carbon/back.svg",
  36322. extra: 1762/1695,
  36323. bottom: 24/1786
  36324. }
  36325. },
  36326. frontGigantamax: {
  36327. height: math.unit(150, "feet"),
  36328. name: "Front (Gigantamax)",
  36329. image: {
  36330. source: "./media/characters/carbon/front-gigantamax.svg",
  36331. extra: 1826/1669,
  36332. bottom: 59/1885
  36333. }
  36334. },
  36335. backGigantamax: {
  36336. height: math.unit(150, "feet"),
  36337. name: "Back (Gigantamax)",
  36338. image: {
  36339. source: "./media/characters/carbon/back-gigantamax.svg",
  36340. extra: 1796/1653,
  36341. bottom: 53/1849
  36342. }
  36343. },
  36344. maw: {
  36345. height: math.unit(0.48, "feet"),
  36346. name: "Maw",
  36347. image: {
  36348. source: "./media/characters/carbon/maw.svg"
  36349. }
  36350. },
  36351. mawGigantamax: {
  36352. height: math.unit(7.5, "feet"),
  36353. name: "Maw (Gigantamax)",
  36354. image: {
  36355. source: "./media/characters/carbon/maw-gigantamax.svg"
  36356. }
  36357. },
  36358. },
  36359. [
  36360. {
  36361. name: "Normal",
  36362. height: math.unit(7 + 5/12, "feet"),
  36363. default: true
  36364. },
  36365. ]
  36366. ))
  36367. characterMakers.push(() => makeCharacter(
  36368. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36369. {
  36370. front: {
  36371. height: math.unit(6, "feet"),
  36372. name: "Front",
  36373. image: {
  36374. source: "./media/characters/maverick/front.svg",
  36375. extra: 1672/1661,
  36376. bottom: 85/1757
  36377. }
  36378. },
  36379. back: {
  36380. height: math.unit(6, "feet"),
  36381. name: "Back",
  36382. image: {
  36383. source: "./media/characters/maverick/back.svg",
  36384. extra: 1642/1631,
  36385. bottom: 38/1680
  36386. }
  36387. },
  36388. },
  36389. [
  36390. {
  36391. name: "Normal",
  36392. height: math.unit(6, "feet"),
  36393. default: true
  36394. },
  36395. ]
  36396. ))
  36397. characterMakers.push(() => makeCharacter(
  36398. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36399. {
  36400. front: {
  36401. height: math.unit(15, "feet"),
  36402. weight: math.unit(615, "lb"),
  36403. name: "Front",
  36404. image: {
  36405. source: "./media/characters/grockle/front.svg",
  36406. extra: 1535/1427,
  36407. bottom: 56/1591
  36408. }
  36409. },
  36410. },
  36411. [
  36412. {
  36413. name: "Normal",
  36414. height: math.unit(15, "feet"),
  36415. default: true
  36416. },
  36417. {
  36418. name: "Large",
  36419. height: math.unit(150, "feet")
  36420. },
  36421. {
  36422. name: "Macro",
  36423. height: math.unit(1876, "feet")
  36424. },
  36425. {
  36426. name: "Mega Macro",
  36427. height: math.unit(121940, "feet")
  36428. },
  36429. {
  36430. name: "Giga Macro",
  36431. height: math.unit(750, "km")
  36432. },
  36433. {
  36434. name: "Tera Macro",
  36435. height: math.unit(750000, "km")
  36436. },
  36437. {
  36438. name: "Galactic",
  36439. height: math.unit(1.4e5, "km")
  36440. },
  36441. {
  36442. name: "Godlike",
  36443. height: math.unit(9.8e280, "galaxies")
  36444. },
  36445. ]
  36446. ))
  36447. characterMakers.push(() => makeCharacter(
  36448. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36449. {
  36450. front: {
  36451. height: math.unit(11, "meters"),
  36452. weight: math.unit(20, "tonnes"),
  36453. name: "Front",
  36454. image: {
  36455. source: "./media/characters/alistair/front.svg",
  36456. extra: 1265/1009,
  36457. bottom: 93/1358
  36458. }
  36459. },
  36460. },
  36461. [
  36462. {
  36463. name: "Normal",
  36464. height: math.unit(11, "meters"),
  36465. default: true
  36466. },
  36467. ]
  36468. ))
  36469. characterMakers.push(() => makeCharacter(
  36470. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36471. {
  36472. front: {
  36473. height: math.unit(5 + 8/12, "feet"),
  36474. name: "Front",
  36475. image: {
  36476. source: "./media/characters/haruka/front.svg",
  36477. extra: 2012/1952,
  36478. bottom: 0/2012
  36479. }
  36480. },
  36481. },
  36482. [
  36483. {
  36484. name: "Normal",
  36485. height: math.unit(5 + 8/12, "feet"),
  36486. default: true
  36487. },
  36488. ]
  36489. ))
  36490. characterMakers.push(() => makeCharacter(
  36491. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36492. {
  36493. back: {
  36494. height: math.unit(9, "feet"),
  36495. name: "Back",
  36496. image: {
  36497. source: "./media/characters/vivian-sylveon/back.svg",
  36498. extra: 1853/1714,
  36499. bottom: 0/1853
  36500. }
  36501. },
  36502. },
  36503. [
  36504. {
  36505. name: "Normal",
  36506. height: math.unit(9, "feet"),
  36507. default: true
  36508. },
  36509. {
  36510. name: "Macro",
  36511. height: math.unit(500, "feet")
  36512. },
  36513. {
  36514. name: "Megamacro",
  36515. height: math.unit(600, "miles")
  36516. },
  36517. {
  36518. name: "Gigamacro",
  36519. height: math.unit(30000, "miles")
  36520. },
  36521. ]
  36522. ))
  36523. characterMakers.push(() => makeCharacter(
  36524. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36525. {
  36526. anthro: {
  36527. height: math.unit(5 + 10/12, "feet"),
  36528. weight: math.unit(100, "lb"),
  36529. name: "Anthro",
  36530. image: {
  36531. source: "./media/characters/daiki/anthro.svg",
  36532. extra: 1115/1027,
  36533. bottom: 69/1184
  36534. }
  36535. },
  36536. feral: {
  36537. height: math.unit(200, "feet"),
  36538. name: "Feral",
  36539. image: {
  36540. source: "./media/characters/daiki/feral.svg",
  36541. extra: 1256/313,
  36542. bottom: 39/1295
  36543. }
  36544. },
  36545. feralHead: {
  36546. height: math.unit(171, "feet"),
  36547. name: "Feral Head",
  36548. image: {
  36549. source: "./media/characters/daiki/feral-head.svg"
  36550. }
  36551. },
  36552. manaDragon: {
  36553. height: math.unit(170, "meters"),
  36554. name: "Mana-dragon",
  36555. image: {
  36556. source: "./media/characters/daiki/mana-dragon.svg",
  36557. extra: 763/420,
  36558. bottom: 97/860
  36559. }
  36560. },
  36561. },
  36562. [
  36563. {
  36564. name: "Normal",
  36565. height: math.unit(5 + 10/12, "feet"),
  36566. default: true
  36567. },
  36568. ]
  36569. ))
  36570. characterMakers.push(() => makeCharacter(
  36571. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36572. {
  36573. fullyEquippedFront: {
  36574. height: math.unit(3 + 1/12, "feet"),
  36575. weight: math.unit(24, "lb"),
  36576. name: "Fully Equipped (Front)",
  36577. image: {
  36578. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36579. extra: 687/605,
  36580. bottom: 18/705
  36581. }
  36582. },
  36583. fullyEquippedBack: {
  36584. height: math.unit(3 + 1/12, "feet"),
  36585. weight: math.unit(24, "lb"),
  36586. name: "Fully Equipped (Back)",
  36587. image: {
  36588. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36589. extra: 689/590,
  36590. bottom: 18/707
  36591. }
  36592. },
  36593. dailyWear: {
  36594. height: math.unit(3 + 1/12, "feet"),
  36595. weight: math.unit(24, "lb"),
  36596. name: "Daily Wear",
  36597. image: {
  36598. source: "./media/characters/tea-spot/daily-wear.svg",
  36599. extra: 701/620,
  36600. bottom: 21/722
  36601. }
  36602. },
  36603. maidWork: {
  36604. height: math.unit(3 + 1/12, "feet"),
  36605. weight: math.unit(24, "lb"),
  36606. name: "Maid Work",
  36607. image: {
  36608. source: "./media/characters/tea-spot/maid-work.svg",
  36609. extra: 693/609,
  36610. bottom: 15/708
  36611. }
  36612. },
  36613. },
  36614. [
  36615. {
  36616. name: "Normal",
  36617. height: math.unit(3 + 1/12, "feet"),
  36618. default: true
  36619. },
  36620. ]
  36621. ))
  36622. characterMakers.push(() => makeCharacter(
  36623. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36624. {
  36625. front: {
  36626. height: math.unit(175, "cm"),
  36627. weight: math.unit(75, "kg"),
  36628. name: "Front",
  36629. image: {
  36630. source: "./media/characters/chee/front.svg",
  36631. extra: 1796/1740,
  36632. bottom: 40/1836
  36633. }
  36634. },
  36635. },
  36636. [
  36637. {
  36638. name: "Micro-Micro",
  36639. height: math.unit(1, "nm")
  36640. },
  36641. {
  36642. name: "Micro-erst",
  36643. height: math.unit(1, "micrometer")
  36644. },
  36645. {
  36646. name: "Micro-er",
  36647. height: math.unit(1, "cm")
  36648. },
  36649. {
  36650. name: "Normal",
  36651. height: math.unit(175, "cm"),
  36652. default: true
  36653. },
  36654. {
  36655. name: "Macro",
  36656. height: math.unit(100, "m")
  36657. },
  36658. {
  36659. name: "Macro-er",
  36660. height: math.unit(1, "km")
  36661. },
  36662. {
  36663. name: "Macro-erst",
  36664. height: math.unit(10, "km")
  36665. },
  36666. {
  36667. name: "Macro-Macro",
  36668. height: math.unit(100, "km")
  36669. },
  36670. ]
  36671. ))
  36672. characterMakers.push(() => makeCharacter(
  36673. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36674. {
  36675. front: {
  36676. height: math.unit(11 + 9/12, "feet"),
  36677. weight: math.unit(935, "lb"),
  36678. name: "Front",
  36679. image: {
  36680. source: "./media/characters/kingsley/front.svg",
  36681. extra: 1803/1674,
  36682. bottom: 127/1930
  36683. }
  36684. },
  36685. frontNude: {
  36686. height: math.unit(11 + 9/12, "feet"),
  36687. weight: math.unit(935, "lb"),
  36688. name: "Front (Nude)",
  36689. image: {
  36690. source: "./media/characters/kingsley/front-nude.svg",
  36691. extra: 1803/1674,
  36692. bottom: 127/1930
  36693. }
  36694. },
  36695. },
  36696. [
  36697. {
  36698. name: "Normal",
  36699. height: math.unit(11 + 9/12, "feet"),
  36700. default: true
  36701. },
  36702. ]
  36703. ))
  36704. characterMakers.push(() => makeCharacter(
  36705. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36706. {
  36707. side: {
  36708. height: math.unit(9, "feet"),
  36709. name: "Side",
  36710. image: {
  36711. source: "./media/characters/rymel/side.svg",
  36712. extra: 792/469,
  36713. bottom: 121/913
  36714. }
  36715. },
  36716. maw: {
  36717. height: math.unit(2.4, "meters"),
  36718. name: "Maw",
  36719. image: {
  36720. source: "./media/characters/rymel/maw.svg"
  36721. }
  36722. },
  36723. },
  36724. [
  36725. {
  36726. name: "House Drake",
  36727. height: math.unit(2, "feet")
  36728. },
  36729. {
  36730. name: "Reduced",
  36731. height: math.unit(4.5, "feet")
  36732. },
  36733. {
  36734. name: "Normal",
  36735. height: math.unit(9, "feet"),
  36736. default: true
  36737. },
  36738. ]
  36739. ))
  36740. characterMakers.push(() => makeCharacter(
  36741. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36742. {
  36743. front: {
  36744. height: math.unit(1.74, "meters"),
  36745. weight: math.unit(55, "kg"),
  36746. name: "Front",
  36747. image: {
  36748. source: "./media/characters/rubus/front.svg",
  36749. extra: 1894/1742,
  36750. bottom: 44/1938
  36751. }
  36752. },
  36753. },
  36754. [
  36755. {
  36756. name: "Normal",
  36757. height: math.unit(1.74, "meters"),
  36758. default: true
  36759. },
  36760. ]
  36761. ))
  36762. characterMakers.push(() => makeCharacter(
  36763. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36764. {
  36765. front: {
  36766. height: math.unit(5 + 2/12, "feet"),
  36767. weight: math.unit(112, "lb"),
  36768. name: "Front",
  36769. image: {
  36770. source: "./media/characters/cassie-kingston/front.svg",
  36771. extra: 1438/1390,
  36772. bottom: 47/1485
  36773. }
  36774. },
  36775. },
  36776. [
  36777. {
  36778. name: "Normal",
  36779. height: math.unit(5 + 2/12, "feet"),
  36780. default: true
  36781. },
  36782. {
  36783. name: "Macro",
  36784. height: math.unit(128, "feet")
  36785. },
  36786. {
  36787. name: "Megamacro",
  36788. height: math.unit(2.56, "miles")
  36789. },
  36790. ]
  36791. ))
  36792. characterMakers.push(() => makeCharacter(
  36793. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36794. {
  36795. front: {
  36796. height: math.unit(7, "feet"),
  36797. name: "Front",
  36798. image: {
  36799. source: "./media/characters/fox/front.svg",
  36800. extra: 1798/1703,
  36801. bottom: 55/1853
  36802. }
  36803. },
  36804. back: {
  36805. height: math.unit(7, "feet"),
  36806. name: "Back",
  36807. image: {
  36808. source: "./media/characters/fox/back.svg",
  36809. extra: 1748/1649,
  36810. bottom: 32/1780
  36811. }
  36812. },
  36813. head: {
  36814. height: math.unit(1.95, "feet"),
  36815. name: "Head",
  36816. image: {
  36817. source: "./media/characters/fox/head.svg"
  36818. }
  36819. },
  36820. dick: {
  36821. height: math.unit(1.33, "feet"),
  36822. name: "Dick",
  36823. image: {
  36824. source: "./media/characters/fox/dick.svg"
  36825. }
  36826. },
  36827. foot: {
  36828. height: math.unit(1, "feet"),
  36829. name: "Foot",
  36830. image: {
  36831. source: "./media/characters/fox/foot.svg"
  36832. }
  36833. },
  36834. paw: {
  36835. height: math.unit(0.92, "feet"),
  36836. name: "Paw",
  36837. image: {
  36838. source: "./media/characters/fox/paw.svg"
  36839. }
  36840. },
  36841. },
  36842. [
  36843. {
  36844. name: "Small",
  36845. height: math.unit(3, "inches")
  36846. },
  36847. {
  36848. name: "\"Realistic\"",
  36849. height: math.unit(7, "feet")
  36850. },
  36851. {
  36852. name: "Normal",
  36853. height: math.unit(150, "feet"),
  36854. default: true
  36855. },
  36856. {
  36857. name: "BIG",
  36858. height: math.unit(1200, "feet")
  36859. },
  36860. {
  36861. name: "👀",
  36862. height: math.unit(5, "miles")
  36863. },
  36864. {
  36865. name: "👀👀👀",
  36866. height: math.unit(64, "miles")
  36867. },
  36868. ]
  36869. ))
  36870. characterMakers.push(() => makeCharacter(
  36871. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36872. {
  36873. front: {
  36874. height: math.unit(625, "feet"),
  36875. name: "Front",
  36876. image: {
  36877. source: "./media/characters/asonja-rossa/front.svg",
  36878. extra: 1833/1686,
  36879. bottom: 24/1857
  36880. }
  36881. },
  36882. back: {
  36883. height: math.unit(625, "feet"),
  36884. name: "Back",
  36885. image: {
  36886. source: "./media/characters/asonja-rossa/back.svg",
  36887. extra: 1852/1753,
  36888. bottom: 26/1878
  36889. }
  36890. },
  36891. },
  36892. [
  36893. {
  36894. name: "Macro",
  36895. height: math.unit(625, "feet"),
  36896. default: true
  36897. },
  36898. ]
  36899. ))
  36900. characterMakers.push(() => makeCharacter(
  36901. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36902. {
  36903. side: {
  36904. height: math.unit(8, "feet"),
  36905. name: "Side",
  36906. image: {
  36907. source: "./media/characters/rezukii/side.svg",
  36908. extra: 979/542,
  36909. bottom: 87/1066
  36910. }
  36911. },
  36912. sitting: {
  36913. height: math.unit(14.6, "feet"),
  36914. name: "Sitting",
  36915. image: {
  36916. source: "./media/characters/rezukii/sitting.svg",
  36917. extra: 1023/813,
  36918. bottom: 45/1068
  36919. }
  36920. },
  36921. },
  36922. [
  36923. {
  36924. name: "Tiny",
  36925. height: math.unit(2, "feet")
  36926. },
  36927. {
  36928. name: "Smol",
  36929. height: math.unit(4, "feet")
  36930. },
  36931. {
  36932. name: "Normal",
  36933. height: math.unit(8, "feet"),
  36934. default: true
  36935. },
  36936. {
  36937. name: "Big",
  36938. height: math.unit(12, "feet")
  36939. },
  36940. {
  36941. name: "Macro",
  36942. height: math.unit(30, "feet")
  36943. },
  36944. ]
  36945. ))
  36946. characterMakers.push(() => makeCharacter(
  36947. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36948. {
  36949. front: {
  36950. height: math.unit(14, "feet"),
  36951. weight: math.unit(9.5, "tonnes"),
  36952. name: "Front",
  36953. image: {
  36954. source: "./media/characters/dawnheart/front.svg",
  36955. extra: 2792/2675,
  36956. bottom: 64/2856
  36957. }
  36958. },
  36959. },
  36960. [
  36961. {
  36962. name: "Normal",
  36963. height: math.unit(14, "feet"),
  36964. default: true
  36965. },
  36966. ]
  36967. ))
  36968. characterMakers.push(() => makeCharacter(
  36969. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  36970. {
  36971. front: {
  36972. height: math.unit(1.7, "m"),
  36973. name: "Front",
  36974. image: {
  36975. source: "./media/characters/gladi/front.svg",
  36976. extra: 1460/1362,
  36977. bottom: 19/1479
  36978. }
  36979. },
  36980. back: {
  36981. height: math.unit(1.7, "m"),
  36982. name: "Back",
  36983. image: {
  36984. source: "./media/characters/gladi/back.svg",
  36985. extra: 1459/1357,
  36986. bottom: 12/1471
  36987. }
  36988. },
  36989. feral: {
  36990. height: math.unit(2.05, "m"),
  36991. name: "Feral",
  36992. image: {
  36993. source: "./media/characters/gladi/feral.svg",
  36994. extra: 821/557,
  36995. bottom: 91/912
  36996. }
  36997. },
  36998. },
  36999. [
  37000. {
  37001. name: "Shortest",
  37002. height: math.unit(70, "cm")
  37003. },
  37004. {
  37005. name: "Normal",
  37006. height: math.unit(1.7, "m")
  37007. },
  37008. {
  37009. name: "Macro",
  37010. height: math.unit(10, "m"),
  37011. default: true
  37012. },
  37013. {
  37014. name: "Tallest",
  37015. height: math.unit(200, "m")
  37016. },
  37017. ]
  37018. ))
  37019. characterMakers.push(() => makeCharacter(
  37020. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37021. {
  37022. front: {
  37023. height: math.unit(5 + 7/12, "feet"),
  37024. weight: math.unit(2, "tons"),
  37025. name: "Front",
  37026. image: {
  37027. source: "./media/characters/erdno/front.svg",
  37028. extra: 1234/1129,
  37029. bottom: 35/1269
  37030. }
  37031. },
  37032. angled: {
  37033. height: math.unit(5 + 7/12, "feet"),
  37034. weight: math.unit(2, "tons"),
  37035. name: "Angled",
  37036. image: {
  37037. source: "./media/characters/erdno/angled.svg",
  37038. extra: 1185/1139,
  37039. bottom: 36/1221
  37040. }
  37041. },
  37042. side: {
  37043. height: math.unit(5 + 7/12, "feet"),
  37044. weight: math.unit(2, "tons"),
  37045. name: "Side",
  37046. image: {
  37047. source: "./media/characters/erdno/side.svg",
  37048. extra: 1191/1144,
  37049. bottom: 40/1231
  37050. }
  37051. },
  37052. back: {
  37053. height: math.unit(5 + 7/12, "feet"),
  37054. weight: math.unit(2, "tons"),
  37055. name: "Back",
  37056. image: {
  37057. source: "./media/characters/erdno/back.svg",
  37058. extra: 1202/1146,
  37059. bottom: 17/1219
  37060. }
  37061. },
  37062. frontNsfw: {
  37063. height: math.unit(5 + 7/12, "feet"),
  37064. weight: math.unit(2, "tons"),
  37065. name: "Front (NSFW)",
  37066. image: {
  37067. source: "./media/characters/erdno/front-nsfw.svg",
  37068. extra: 1234/1129,
  37069. bottom: 35/1269
  37070. }
  37071. },
  37072. angledNsfw: {
  37073. height: math.unit(5 + 7/12, "feet"),
  37074. weight: math.unit(2, "tons"),
  37075. name: "Angled (NSFW)",
  37076. image: {
  37077. source: "./media/characters/erdno/angled-nsfw.svg",
  37078. extra: 1185/1139,
  37079. bottom: 36/1221
  37080. }
  37081. },
  37082. sideNsfw: {
  37083. height: math.unit(5 + 7/12, "feet"),
  37084. weight: math.unit(2, "tons"),
  37085. name: "Side (NSFW)",
  37086. image: {
  37087. source: "./media/characters/erdno/side-nsfw.svg",
  37088. extra: 1191/1144,
  37089. bottom: 40/1231
  37090. }
  37091. },
  37092. backNsfw: {
  37093. height: math.unit(5 + 7/12, "feet"),
  37094. weight: math.unit(2, "tons"),
  37095. name: "Back (NSFW)",
  37096. image: {
  37097. source: "./media/characters/erdno/back-nsfw.svg",
  37098. extra: 1202/1146,
  37099. bottom: 17/1219
  37100. }
  37101. },
  37102. frontHyper: {
  37103. height: math.unit(5 + 7/12, "feet"),
  37104. weight: math.unit(2, "tons"),
  37105. name: "Front (Hyper)",
  37106. image: {
  37107. source: "./media/characters/erdno/front-hyper.svg",
  37108. extra: 1298/1136,
  37109. bottom: 35/1333
  37110. }
  37111. },
  37112. },
  37113. [
  37114. {
  37115. name: "Normal",
  37116. height: math.unit(5 + 7/12, "feet"),
  37117. default: true
  37118. },
  37119. {
  37120. name: "Big",
  37121. height: math.unit(5.7, "meters")
  37122. },
  37123. {
  37124. name: "Macro",
  37125. height: math.unit(5.7, "kilometers")
  37126. },
  37127. {
  37128. name: "Megamacro",
  37129. height: math.unit(5.7, "earths")
  37130. },
  37131. ]
  37132. ))
  37133. characterMakers.push(() => makeCharacter(
  37134. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37135. {
  37136. front: {
  37137. height: math.unit(5 + 10/12, "feet"),
  37138. weight: math.unit(150, "lb"),
  37139. name: "Front",
  37140. image: {
  37141. source: "./media/characters/jamie/front.svg",
  37142. extra: 1908/1768,
  37143. bottom: 19/1927
  37144. }
  37145. },
  37146. },
  37147. [
  37148. {
  37149. name: "Minimum",
  37150. height: math.unit(2, "cm")
  37151. },
  37152. {
  37153. name: "Micro",
  37154. height: math.unit(3, "inches")
  37155. },
  37156. {
  37157. name: "Normal",
  37158. height: math.unit(5 + 10/12, "feet"),
  37159. default: true
  37160. },
  37161. {
  37162. name: "Macro",
  37163. height: math.unit(150, "feet")
  37164. },
  37165. {
  37166. name: "Megamacro",
  37167. height: math.unit(10000, "m")
  37168. },
  37169. ]
  37170. ))
  37171. characterMakers.push(() => makeCharacter(
  37172. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37173. {
  37174. front: {
  37175. height: math.unit(2, "meters"),
  37176. weight: math.unit(100, "kg"),
  37177. name: "Front",
  37178. image: {
  37179. source: "./media/characters/shiron/front.svg",
  37180. extra: 2103/1985,
  37181. bottom: 98/2201
  37182. }
  37183. },
  37184. back: {
  37185. height: math.unit(2, "meters"),
  37186. weight: math.unit(100, "kg"),
  37187. name: "Back",
  37188. image: {
  37189. source: "./media/characters/shiron/back.svg",
  37190. extra: 2110/2015,
  37191. bottom: 89/2199
  37192. }
  37193. },
  37194. hand: {
  37195. height: math.unit(0.96, "feet"),
  37196. name: "Hand",
  37197. image: {
  37198. source: "./media/characters/shiron/hand.svg"
  37199. }
  37200. },
  37201. foot: {
  37202. height: math.unit(1.464, "feet"),
  37203. name: "Foot",
  37204. image: {
  37205. source: "./media/characters/shiron/foot.svg"
  37206. }
  37207. },
  37208. },
  37209. [
  37210. {
  37211. name: "Normal",
  37212. height: math.unit(2, "meters")
  37213. },
  37214. {
  37215. name: "Macro",
  37216. height: math.unit(500, "meters"),
  37217. default: true
  37218. },
  37219. {
  37220. name: "Megamacro",
  37221. height: math.unit(20, "km")
  37222. },
  37223. ]
  37224. ))
  37225. characterMakers.push(() => makeCharacter(
  37226. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37227. {
  37228. front: {
  37229. height: math.unit(6, "feet"),
  37230. name: "Front",
  37231. image: {
  37232. source: "./media/characters/sam/front.svg",
  37233. extra: 849/826,
  37234. bottom: 19/868
  37235. }
  37236. },
  37237. },
  37238. [
  37239. {
  37240. name: "Normal",
  37241. height: math.unit(6, "feet"),
  37242. default: true
  37243. },
  37244. ]
  37245. ))
  37246. characterMakers.push(() => makeCharacter(
  37247. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37248. {
  37249. front: {
  37250. height: math.unit(8 + 4/12, "feet"),
  37251. weight: math.unit(122, "kg"),
  37252. name: "Front",
  37253. image: {
  37254. source: "./media/characters/namori-kurogawa/front.svg",
  37255. extra: 1894/1576,
  37256. bottom: 34/1928
  37257. }
  37258. },
  37259. },
  37260. [
  37261. {
  37262. name: "Normal",
  37263. height: math.unit(8 + 4/12, "feet"),
  37264. default: true
  37265. },
  37266. ]
  37267. ))
  37268. characterMakers.push(() => makeCharacter(
  37269. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37270. {
  37271. front: {
  37272. height: math.unit(9, "feet"),
  37273. weight: math.unit(621, "lb"),
  37274. name: "Front",
  37275. image: {
  37276. source: "./media/characters/unmru/front.svg",
  37277. extra: 1853/1747,
  37278. bottom: 73/1926
  37279. }
  37280. },
  37281. side: {
  37282. height: math.unit(9, "feet"),
  37283. weight: math.unit(621, "lb"),
  37284. name: "Side",
  37285. image: {
  37286. source: "./media/characters/unmru/side.svg",
  37287. extra: 1781/1671,
  37288. bottom: 127/1908
  37289. }
  37290. },
  37291. back: {
  37292. height: math.unit(9, "feet"),
  37293. weight: math.unit(621, "lb"),
  37294. name: "Back",
  37295. image: {
  37296. source: "./media/characters/unmru/back.svg",
  37297. extra: 1894/1765,
  37298. bottom: 75/1969
  37299. }
  37300. },
  37301. dick: {
  37302. height: math.unit(3, "feet"),
  37303. weight: math.unit(35, "lb"),
  37304. name: "Dick",
  37305. image: {
  37306. source: "./media/characters/unmru/dick.svg"
  37307. }
  37308. },
  37309. },
  37310. [
  37311. {
  37312. name: "Normal",
  37313. height: math.unit(9, "feet")
  37314. },
  37315. {
  37316. name: "Natural",
  37317. height: math.unit(27, "feet"),
  37318. default: true
  37319. },
  37320. {
  37321. name: "Giant",
  37322. height: math.unit(90, "feet")
  37323. },
  37324. {
  37325. name: "Kaiju",
  37326. height: math.unit(270, "feet")
  37327. },
  37328. {
  37329. name: "Macro",
  37330. height: math.unit(900, "feet")
  37331. },
  37332. {
  37333. name: "Macro+",
  37334. height: math.unit(2700, "feet")
  37335. },
  37336. {
  37337. name: "Megamacro",
  37338. height: math.unit(9000, "feet")
  37339. },
  37340. {
  37341. name: "City-Crushing",
  37342. height: math.unit(27000, "feet")
  37343. },
  37344. {
  37345. name: "Mountain-Mashing",
  37346. height: math.unit(90000, "feet")
  37347. },
  37348. {
  37349. name: "Earth-Eclipsing",
  37350. height: math.unit(2.7e8, "feet")
  37351. },
  37352. {
  37353. name: "Sol-Swallowing",
  37354. height: math.unit(9e10, "feet")
  37355. },
  37356. {
  37357. name: "Majoris-Munching",
  37358. height: math.unit(2.7e13, "feet")
  37359. },
  37360. ]
  37361. ))
  37362. characterMakers.push(() => makeCharacter(
  37363. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37364. {
  37365. front: {
  37366. height: math.unit(1, "inch"),
  37367. name: "Front",
  37368. image: {
  37369. source: "./media/characters/squeaks-mouse/front.svg",
  37370. extra: 352/308,
  37371. bottom: 25/377
  37372. }
  37373. },
  37374. },
  37375. [
  37376. {
  37377. name: "Micro",
  37378. height: math.unit(1, "inch"),
  37379. default: true
  37380. },
  37381. ]
  37382. ))
  37383. characterMakers.push(() => makeCharacter(
  37384. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37385. {
  37386. side: {
  37387. height: math.unit(35, "feet"),
  37388. name: "Side",
  37389. image: {
  37390. source: "./media/characters/sayko/side.svg",
  37391. extra: 1697/1021,
  37392. bottom: 82/1779
  37393. }
  37394. },
  37395. head: {
  37396. height: math.unit(16, "feet"),
  37397. name: "Head",
  37398. image: {
  37399. source: "./media/characters/sayko/head.svg"
  37400. }
  37401. },
  37402. forepaw: {
  37403. height: math.unit(7.85, "feet"),
  37404. name: "Forepaw",
  37405. image: {
  37406. source: "./media/characters/sayko/forepaw.svg"
  37407. }
  37408. },
  37409. hindpaw: {
  37410. height: math.unit(8.8, "feet"),
  37411. name: "Hindpaw",
  37412. image: {
  37413. source: "./media/characters/sayko/hindpaw.svg"
  37414. }
  37415. },
  37416. },
  37417. [
  37418. {
  37419. name: "Normal",
  37420. height: math.unit(35, "feet"),
  37421. default: true
  37422. },
  37423. {
  37424. name: "Colossus",
  37425. height: math.unit(100, "meters")
  37426. },
  37427. {
  37428. name: "\"Small\" Deity",
  37429. height: math.unit(1, "km")
  37430. },
  37431. {
  37432. name: "\"Large\" Deity",
  37433. height: math.unit(15, "km")
  37434. },
  37435. ]
  37436. ))
  37437. characterMakers.push(() => makeCharacter(
  37438. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37439. {
  37440. front: {
  37441. height: math.unit(6, "feet"),
  37442. weight: math.unit(250, "lb"),
  37443. name: "Front",
  37444. image: {
  37445. source: "./media/characters/mukiro/front.svg",
  37446. extra: 1368/1310,
  37447. bottom: 34/1402
  37448. }
  37449. },
  37450. },
  37451. [
  37452. {
  37453. name: "Normal",
  37454. height: math.unit(6, "feet"),
  37455. default: true
  37456. },
  37457. ]
  37458. ))
  37459. characterMakers.push(() => makeCharacter(
  37460. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37461. {
  37462. front: {
  37463. height: math.unit(12 + 4/12, "feet"),
  37464. name: "Front",
  37465. image: {
  37466. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37467. extra: 1346/1311,
  37468. bottom: 65/1411
  37469. }
  37470. },
  37471. },
  37472. [
  37473. {
  37474. name: "Base",
  37475. height: math.unit(12 + 4/12, "feet"),
  37476. default: true
  37477. },
  37478. {
  37479. name: "Macro",
  37480. height: math.unit(150, "feet")
  37481. },
  37482. {
  37483. name: "Mega",
  37484. height: math.unit(2, "miles")
  37485. },
  37486. {
  37487. name: "Demi God",
  37488. height: math.unit(4, "AU")
  37489. },
  37490. {
  37491. name: "God Size",
  37492. height: math.unit(1, "universe")
  37493. },
  37494. ]
  37495. ))
  37496. characterMakers.push(() => makeCharacter(
  37497. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37498. {
  37499. front: {
  37500. height: math.unit(3 + 3/12, "feet"),
  37501. weight: math.unit(88, "lb"),
  37502. name: "Front",
  37503. image: {
  37504. source: "./media/characters/trey/front.svg",
  37505. extra: 1815/1509,
  37506. bottom: 60/1875
  37507. }
  37508. },
  37509. },
  37510. [
  37511. {
  37512. name: "Normal",
  37513. height: math.unit(3 + 3/12, "feet"),
  37514. default: true
  37515. },
  37516. ]
  37517. ))
  37518. characterMakers.push(() => makeCharacter(
  37519. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37520. {
  37521. front: {
  37522. height: math.unit(4, "meters"),
  37523. name: "Front",
  37524. image: {
  37525. source: "./media/characters/adelonda/front.svg",
  37526. extra: 1077/982,
  37527. bottom: 39/1116
  37528. }
  37529. },
  37530. back: {
  37531. height: math.unit(4, "meters"),
  37532. name: "Back",
  37533. image: {
  37534. source: "./media/characters/adelonda/back.svg",
  37535. extra: 1105/1003,
  37536. bottom: 25/1130
  37537. }
  37538. },
  37539. },
  37540. [
  37541. {
  37542. name: "Normal",
  37543. height: math.unit(4, "meters"),
  37544. default: true
  37545. },
  37546. ]
  37547. ))
  37548. characterMakers.push(() => makeCharacter(
  37549. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37550. {
  37551. front: {
  37552. height: math.unit(8 + 4/12, "feet"),
  37553. weight: math.unit(670, "lb"),
  37554. name: "Front",
  37555. image: {
  37556. source: "./media/characters/acadiel/front.svg",
  37557. extra: 1901/1595,
  37558. bottom: 142/2043
  37559. }
  37560. },
  37561. },
  37562. [
  37563. {
  37564. name: "Normal",
  37565. height: math.unit(8 + 4/12, "feet"),
  37566. default: true
  37567. },
  37568. {
  37569. name: "Macro",
  37570. height: math.unit(200, "feet")
  37571. },
  37572. ]
  37573. ))
  37574. characterMakers.push(() => makeCharacter(
  37575. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37576. {
  37577. front: {
  37578. height: math.unit(6 + 2/12, "feet"),
  37579. weight: math.unit(185, "lb"),
  37580. name: "Front",
  37581. image: {
  37582. source: "./media/characters/kayne-ein/front.svg",
  37583. extra: 1780/1560,
  37584. bottom: 81/1861
  37585. }
  37586. },
  37587. },
  37588. [
  37589. {
  37590. name: "Normal",
  37591. height: math.unit(6 + 2/12, "feet"),
  37592. default: true
  37593. },
  37594. {
  37595. name: "Transformation Stage",
  37596. height: math.unit(15, "feet")
  37597. },
  37598. {
  37599. name: "Macro",
  37600. height: math.unit(150, "feet")
  37601. },
  37602. {
  37603. name: "Earth's Shadow",
  37604. height: math.unit(6200, "miles")
  37605. },
  37606. {
  37607. name: "Universal Demon",
  37608. height: math.unit(28e9, "parsecs")
  37609. },
  37610. {
  37611. name: "Multiverse God",
  37612. height: math.unit(3, "multiverses")
  37613. },
  37614. ]
  37615. ))
  37616. characterMakers.push(() => makeCharacter(
  37617. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37618. {
  37619. front: {
  37620. height: math.unit(5 + 5/12, "feet"),
  37621. name: "Front",
  37622. image: {
  37623. source: "./media/characters/fawn/front.svg",
  37624. extra: 1873/1731,
  37625. bottom: 95/1968
  37626. }
  37627. },
  37628. back: {
  37629. height: math.unit(5 + 5/12, "feet"),
  37630. name: "Back",
  37631. image: {
  37632. source: "./media/characters/fawn/back.svg",
  37633. extra: 1813/1700,
  37634. bottom: 14/1827
  37635. }
  37636. },
  37637. hoof: {
  37638. height: math.unit(1.45, "feet"),
  37639. name: "Hoof",
  37640. image: {
  37641. source: "./media/characters/fawn/hoof.svg"
  37642. }
  37643. },
  37644. },
  37645. [
  37646. {
  37647. name: "Normal",
  37648. height: math.unit(5 + 5/12, "feet"),
  37649. default: true
  37650. },
  37651. ]
  37652. ))
  37653. characterMakers.push(() => makeCharacter(
  37654. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37655. {
  37656. front: {
  37657. height: math.unit(2 + 5/12, "feet"),
  37658. name: "Front",
  37659. image: {
  37660. source: "./media/characters/orion/front.svg",
  37661. extra: 1366/1304,
  37662. bottom: 43/1409
  37663. }
  37664. },
  37665. paw: {
  37666. height: math.unit(0.52, "feet"),
  37667. name: "Paw",
  37668. image: {
  37669. source: "./media/characters/orion/paw.svg"
  37670. }
  37671. },
  37672. },
  37673. [
  37674. {
  37675. name: "Normal",
  37676. height: math.unit(2 + 5/12, "feet"),
  37677. default: true
  37678. },
  37679. ]
  37680. ))
  37681. characterMakers.push(() => makeCharacter(
  37682. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37683. {
  37684. front: {
  37685. height: math.unit(5 + 10/12, "feet"),
  37686. name: "Front",
  37687. image: {
  37688. source: "./media/characters/vera/front.svg",
  37689. extra: 1680/1575,
  37690. bottom: 49/1729
  37691. }
  37692. },
  37693. back: {
  37694. height: math.unit(5 + 10/12, "feet"),
  37695. name: "Back",
  37696. image: {
  37697. source: "./media/characters/vera/back.svg",
  37698. extra: 1700/1588,
  37699. bottom: 18/1718
  37700. }
  37701. },
  37702. arcanine: {
  37703. height: math.unit(6 + 8/12, "feet"),
  37704. name: "Arcanine",
  37705. image: {
  37706. source: "./media/characters/vera/arcanine.svg",
  37707. extra: 1590/1511,
  37708. bottom: 71/1661
  37709. }
  37710. },
  37711. maw: {
  37712. height: math.unit(0.82, "feet"),
  37713. name: "Maw",
  37714. image: {
  37715. source: "./media/characters/vera/maw.svg"
  37716. }
  37717. },
  37718. mawArcanine: {
  37719. height: math.unit(0.97, "feet"),
  37720. name: "Maw (Arcanine)",
  37721. image: {
  37722. source: "./media/characters/vera/maw-arcanine.svg"
  37723. }
  37724. },
  37725. paw: {
  37726. height: math.unit(0.75, "feet"),
  37727. name: "Paw",
  37728. image: {
  37729. source: "./media/characters/vera/paw.svg"
  37730. }
  37731. },
  37732. pawprint: {
  37733. height: math.unit(0.52, "feet"),
  37734. name: "Pawprint",
  37735. image: {
  37736. source: "./media/characters/vera/pawprint.svg"
  37737. }
  37738. },
  37739. },
  37740. [
  37741. {
  37742. name: "Normal",
  37743. height: math.unit(5 + 10/12, "feet"),
  37744. default: true
  37745. },
  37746. {
  37747. name: "Macro",
  37748. height: math.unit(75, "feet")
  37749. },
  37750. ]
  37751. ))
  37752. characterMakers.push(() => makeCharacter(
  37753. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37754. {
  37755. front: {
  37756. height: math.unit(4, "feet"),
  37757. weight: math.unit(40, "lb"),
  37758. name: "Front",
  37759. image: {
  37760. source: "./media/characters/orvan-rabbit/front.svg",
  37761. extra: 1896/1642,
  37762. bottom: 29/1925
  37763. }
  37764. },
  37765. },
  37766. [
  37767. {
  37768. name: "Normal",
  37769. height: math.unit(4, "feet"),
  37770. default: true
  37771. },
  37772. ]
  37773. ))
  37774. characterMakers.push(() => makeCharacter(
  37775. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37776. {
  37777. front: {
  37778. height: math.unit(6, "feet"),
  37779. weight: math.unit(168, "lb"),
  37780. name: "Front",
  37781. image: {
  37782. source: "./media/characters/lisa/front.svg",
  37783. extra: 2065/1867,
  37784. bottom: 46/2111
  37785. }
  37786. },
  37787. back: {
  37788. height: math.unit(6, "feet"),
  37789. weight: math.unit(168, "lb"),
  37790. name: "Back",
  37791. image: {
  37792. source: "./media/characters/lisa/back.svg",
  37793. extra: 1982/1838,
  37794. bottom: 29/2011
  37795. }
  37796. },
  37797. maw: {
  37798. height: math.unit(0.81, "feet"),
  37799. name: "Maw",
  37800. image: {
  37801. source: "./media/characters/lisa/maw.svg"
  37802. }
  37803. },
  37804. paw: {
  37805. height: math.unit(0.9, "feet"),
  37806. name: "Paw",
  37807. image: {
  37808. source: "./media/characters/lisa/paw.svg"
  37809. }
  37810. },
  37811. caribousune: {
  37812. height: math.unit(7 + 2/12, "feet"),
  37813. weight: math.unit(268, "lb"),
  37814. name: "Caribousune",
  37815. image: {
  37816. source: "./media/characters/lisa/caribousune.svg",
  37817. extra: 1843/1633,
  37818. bottom: 29/1872
  37819. }
  37820. },
  37821. frontCaribousune: {
  37822. height: math.unit(7 + 2/12, "feet"),
  37823. weight: math.unit(268, "lb"),
  37824. name: "Front (Caribousune)",
  37825. image: {
  37826. source: "./media/characters/lisa/front-caribousune.svg",
  37827. extra: 1818/1638,
  37828. bottom: 52/1870
  37829. }
  37830. },
  37831. sideCaribousune: {
  37832. height: math.unit(7 + 2/12, "feet"),
  37833. weight: math.unit(268, "lb"),
  37834. name: "Side (Caribousune)",
  37835. image: {
  37836. source: "./media/characters/lisa/side-caribousune.svg",
  37837. extra: 1851/1635,
  37838. bottom: 16/1867
  37839. }
  37840. },
  37841. backCaribousune: {
  37842. height: math.unit(7 + 2/12, "feet"),
  37843. weight: math.unit(268, "lb"),
  37844. name: "Back (Caribousune)",
  37845. image: {
  37846. source: "./media/characters/lisa/back-caribousune.svg",
  37847. extra: 1801/1604,
  37848. bottom: 44/1845
  37849. }
  37850. },
  37851. caribou: {
  37852. height: math.unit(7 + 2/12, "feet"),
  37853. weight: math.unit(268, "lb"),
  37854. name: "Caribou",
  37855. image: {
  37856. source: "./media/characters/lisa/caribou.svg",
  37857. extra: 1843/1633,
  37858. bottom: 29/1872
  37859. }
  37860. },
  37861. frontCaribou: {
  37862. height: math.unit(7 + 2/12, "feet"),
  37863. weight: math.unit(268, "lb"),
  37864. name: "Front (Caribou)",
  37865. image: {
  37866. source: "./media/characters/lisa/front-caribou.svg",
  37867. extra: 1818/1638,
  37868. bottom: 52/1870
  37869. }
  37870. },
  37871. sideCaribou: {
  37872. height: math.unit(7 + 2/12, "feet"),
  37873. weight: math.unit(268, "lb"),
  37874. name: "Side (Caribou)",
  37875. image: {
  37876. source: "./media/characters/lisa/side-caribou.svg",
  37877. extra: 1851/1635,
  37878. bottom: 16/1867
  37879. }
  37880. },
  37881. backCaribou: {
  37882. height: math.unit(7 + 2/12, "feet"),
  37883. weight: math.unit(268, "lb"),
  37884. name: "Back (Caribou)",
  37885. image: {
  37886. source: "./media/characters/lisa/back-caribou.svg",
  37887. extra: 1801/1604,
  37888. bottom: 44/1845
  37889. }
  37890. },
  37891. mawCaribou: {
  37892. height: math.unit(1.45, "feet"),
  37893. name: "Maw (Caribou)",
  37894. image: {
  37895. source: "./media/characters/lisa/maw-caribou.svg"
  37896. }
  37897. },
  37898. mawCaribousune: {
  37899. height: math.unit(1.45, "feet"),
  37900. name: "Maw (Caribousune)",
  37901. image: {
  37902. source: "./media/characters/lisa/maw-caribousune.svg"
  37903. }
  37904. },
  37905. pawCaribousune: {
  37906. height: math.unit(1.61, "feet"),
  37907. name: "Paw (Caribou)",
  37908. image: {
  37909. source: "./media/characters/lisa/paw-caribousune.svg"
  37910. }
  37911. },
  37912. },
  37913. [
  37914. {
  37915. name: "Normal",
  37916. height: math.unit(6, "feet")
  37917. },
  37918. {
  37919. name: "God Size",
  37920. height: math.unit(72, "feet"),
  37921. default: true
  37922. },
  37923. {
  37924. name: "Towering",
  37925. height: math.unit(288, "feet")
  37926. },
  37927. {
  37928. name: "City Size",
  37929. height: math.unit(48384, "feet")
  37930. },
  37931. {
  37932. name: "Continental",
  37933. height: math.unit(4200, "miles")
  37934. },
  37935. {
  37936. name: "Planet Eater",
  37937. height: math.unit(42, "earths")
  37938. },
  37939. {
  37940. name: "Star Swallower",
  37941. height: math.unit(42, "solarradii")
  37942. },
  37943. {
  37944. name: "System Swallower",
  37945. height: math.unit(84000, "AU")
  37946. },
  37947. {
  37948. name: "Galaxy Gobbler",
  37949. height: math.unit(42, "galaxies")
  37950. },
  37951. {
  37952. name: "Universe Devourer",
  37953. height: math.unit(42, "universes")
  37954. },
  37955. {
  37956. name: "Multiverse Muncher",
  37957. height: math.unit(42, "multiverses")
  37958. },
  37959. ]
  37960. ))
  37961. characterMakers.push(() => makeCharacter(
  37962. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  37963. {
  37964. front: {
  37965. height: math.unit(36, "feet"),
  37966. name: "Front",
  37967. image: {
  37968. source: "./media/characters/shadow-rat/front.svg",
  37969. extra: 1845/1758,
  37970. bottom: 83/1928
  37971. }
  37972. },
  37973. },
  37974. [
  37975. {
  37976. name: "Macro",
  37977. height: math.unit(36, "feet"),
  37978. default: true
  37979. },
  37980. ]
  37981. ))
  37982. characterMakers.push(() => makeCharacter(
  37983. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  37984. {
  37985. side: {
  37986. height: math.unit(8, "feet"),
  37987. weight: math.unit(2630, "lb"),
  37988. name: "Side",
  37989. image: {
  37990. source: "./media/characters/torallia/side.svg",
  37991. extra: 2164/2021,
  37992. bottom: 371/2535
  37993. }
  37994. },
  37995. },
  37996. [
  37997. {
  37998. name: "Mortal Interaction",
  37999. height: math.unit(8, "feet")
  38000. },
  38001. {
  38002. name: "Natural",
  38003. height: math.unit(24, "feet"),
  38004. default: true
  38005. },
  38006. {
  38007. name: "Giant",
  38008. height: math.unit(80, "feet")
  38009. },
  38010. {
  38011. name: "Kaiju",
  38012. height: math.unit(240, "feet")
  38013. },
  38014. {
  38015. name: "Macro",
  38016. height: math.unit(800, "feet")
  38017. },
  38018. {
  38019. name: "Macro+",
  38020. height: math.unit(2400, "feet")
  38021. },
  38022. {
  38023. name: "Macro++",
  38024. height: math.unit(8000, "feet")
  38025. },
  38026. {
  38027. name: "City-Crushing",
  38028. height: math.unit(24000, "feet")
  38029. },
  38030. {
  38031. name: "Mountain-Mashing",
  38032. height: math.unit(80000, "feet")
  38033. },
  38034. {
  38035. name: "District Demolisher",
  38036. height: math.unit(240000, "feet")
  38037. },
  38038. {
  38039. name: "Tri-County Terror",
  38040. height: math.unit(800000, "feet")
  38041. },
  38042. {
  38043. name: "State Smasher",
  38044. height: math.unit(2.4e6, "feet")
  38045. },
  38046. {
  38047. name: "Nation Nemesis",
  38048. height: math.unit(8e6, "feet")
  38049. },
  38050. {
  38051. name: "Continent Cracker",
  38052. height: math.unit(2.4e7, "feet")
  38053. },
  38054. {
  38055. name: "Planet-Pillaging",
  38056. height: math.unit(8e7, "feet")
  38057. },
  38058. {
  38059. name: "Earth-Eclipsing",
  38060. height: math.unit(2.4e8, "feet")
  38061. },
  38062. {
  38063. name: "Jovian-Jostling",
  38064. height: math.unit(8e8, "feet")
  38065. },
  38066. {
  38067. name: "Gas Giant Gulper",
  38068. height: math.unit(2.4e9, "feet")
  38069. },
  38070. {
  38071. name: "Astral Annihilator",
  38072. height: math.unit(8e9, "feet")
  38073. },
  38074. {
  38075. name: "Celestial Conqueror",
  38076. height: math.unit(2.4e10, "feet")
  38077. },
  38078. {
  38079. name: "Sol-Swallowing",
  38080. height: math.unit(8e10, "feet")
  38081. },
  38082. {
  38083. name: "Hunter of the Heavens",
  38084. height: math.unit(2.4e13, "feet")
  38085. },
  38086. ]
  38087. ))
  38088. characterMakers.push(() => makeCharacter(
  38089. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38090. {
  38091. front: {
  38092. height: math.unit(6 + 8/12, "feet"),
  38093. name: "Front",
  38094. image: {
  38095. source: "./media/characters/rebecca-pawlson/front.svg",
  38096. extra: 1737/1596,
  38097. bottom: 107/1844
  38098. }
  38099. },
  38100. back: {
  38101. height: math.unit(6 + 8/12, "feet"),
  38102. name: "Back",
  38103. image: {
  38104. source: "./media/characters/rebecca-pawlson/back.svg",
  38105. extra: 1702/1523,
  38106. bottom: 86/1788
  38107. }
  38108. },
  38109. },
  38110. [
  38111. {
  38112. name: "Normal",
  38113. height: math.unit(6 + 8/12, "feet")
  38114. },
  38115. {
  38116. name: "Mini Macro",
  38117. height: math.unit(10, "feet"),
  38118. default: true
  38119. },
  38120. {
  38121. name: "Macro",
  38122. height: math.unit(100, "feet")
  38123. },
  38124. {
  38125. name: "Mega Macro",
  38126. height: math.unit(2500, "feet")
  38127. },
  38128. {
  38129. name: "Giga Macro",
  38130. height: math.unit(50, "miles")
  38131. },
  38132. ]
  38133. ))
  38134. characterMakers.push(() => makeCharacter(
  38135. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38136. {
  38137. front: {
  38138. height: math.unit(7 + 6/12, "feet"),
  38139. weight: math.unit(600, "lb"),
  38140. name: "Front",
  38141. image: {
  38142. source: "./media/characters/moxie-nova/front.svg",
  38143. extra: 1734/1652,
  38144. bottom: 41/1775
  38145. }
  38146. },
  38147. },
  38148. [
  38149. {
  38150. name: "Normal",
  38151. height: math.unit(7 + 6/12, "feet"),
  38152. default: true
  38153. },
  38154. ]
  38155. ))
  38156. characterMakers.push(() => makeCharacter(
  38157. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38158. {
  38159. goat: {
  38160. height: math.unit(4, "feet"),
  38161. weight: math.unit(180, "lb"),
  38162. name: "Goat",
  38163. image: {
  38164. source: "./media/characters/tiffany/goat.svg",
  38165. extra: 1845/1595,
  38166. bottom: 106/1951
  38167. }
  38168. },
  38169. front: {
  38170. height: math.unit(5, "feet"),
  38171. weight: math.unit(150, "lb"),
  38172. name: "Foxcoon",
  38173. image: {
  38174. source: "./media/characters/tiffany/foxcoon.svg",
  38175. extra: 1941/1845,
  38176. bottom: 58/1999
  38177. }
  38178. },
  38179. },
  38180. [
  38181. {
  38182. name: "Normal",
  38183. height: math.unit(5, "feet"),
  38184. default: true
  38185. },
  38186. ]
  38187. ))
  38188. characterMakers.push(() => makeCharacter(
  38189. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38190. {
  38191. front: {
  38192. height: math.unit(8, "feet"),
  38193. weight: math.unit(300, "lb"),
  38194. name: "Front",
  38195. image: {
  38196. source: "./media/characters/raxinath/front.svg",
  38197. extra: 1407/1309,
  38198. bottom: 39/1446
  38199. }
  38200. },
  38201. back: {
  38202. height: math.unit(8, "feet"),
  38203. weight: math.unit(300, "lb"),
  38204. name: "Back",
  38205. image: {
  38206. source: "./media/characters/raxinath/back.svg",
  38207. extra: 1405/1315,
  38208. bottom: 9/1414
  38209. }
  38210. },
  38211. },
  38212. [
  38213. {
  38214. name: "Speck",
  38215. height: math.unit(0.5, "nm")
  38216. },
  38217. {
  38218. name: "Micro",
  38219. height: math.unit(3, "inches")
  38220. },
  38221. {
  38222. name: "Kobold",
  38223. height: math.unit(3, "feet")
  38224. },
  38225. {
  38226. name: "Normal",
  38227. height: math.unit(8, "feet"),
  38228. default: true
  38229. },
  38230. {
  38231. name: "Giant",
  38232. height: math.unit(50, "feet")
  38233. },
  38234. {
  38235. name: "Macro",
  38236. height: math.unit(1000, "feet")
  38237. },
  38238. {
  38239. name: "Megamacro",
  38240. height: math.unit(1, "mile")
  38241. },
  38242. ]
  38243. ))
  38244. characterMakers.push(() => makeCharacter(
  38245. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38246. {
  38247. front: {
  38248. height: math.unit(10, "feet"),
  38249. weight: math.unit(1442, "lb"),
  38250. name: "Front",
  38251. image: {
  38252. source: "./media/characters/mal-dragon/front.svg",
  38253. extra: 1515/1444,
  38254. bottom: 113/1628
  38255. }
  38256. },
  38257. back: {
  38258. height: math.unit(10, "feet"),
  38259. weight: math.unit(1442, "lb"),
  38260. name: "Back",
  38261. image: {
  38262. source: "./media/characters/mal-dragon/back.svg",
  38263. extra: 1527/1434,
  38264. bottom: 25/1552
  38265. }
  38266. },
  38267. },
  38268. [
  38269. {
  38270. name: "Mortal Interaction",
  38271. height: math.unit(10, "feet"),
  38272. default: true
  38273. },
  38274. {
  38275. name: "Large",
  38276. height: math.unit(30, "feet")
  38277. },
  38278. {
  38279. name: "Kaiju",
  38280. height: math.unit(300, "feet")
  38281. },
  38282. {
  38283. name: "Megamacro",
  38284. height: math.unit(10000, "feet")
  38285. },
  38286. {
  38287. name: "Continent Cracker",
  38288. height: math.unit(30000000, "feet")
  38289. },
  38290. {
  38291. name: "Sol-Swallowing",
  38292. height: math.unit(1e11, "feet")
  38293. },
  38294. {
  38295. name: "Light Universal",
  38296. height: math.unit(5, "universes")
  38297. },
  38298. {
  38299. name: "Universe Atoms",
  38300. height: math.unit(1.829e9, "universes")
  38301. },
  38302. {
  38303. name: "Light Multiversal",
  38304. height: math.unit(5, "multiverses")
  38305. },
  38306. {
  38307. name: "Multiverse Atoms",
  38308. height: math.unit(1.829e9, "multiverses")
  38309. },
  38310. {
  38311. name: "Fabric of Time",
  38312. height: math.unit(1e262, "multiverses")
  38313. },
  38314. ]
  38315. ))
  38316. characterMakers.push(() => makeCharacter(
  38317. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38318. {
  38319. front: {
  38320. height: math.unit(9, "feet"),
  38321. weight: math.unit(1050, "lb"),
  38322. name: "Front",
  38323. image: {
  38324. source: "./media/characters/tabitha/front.svg",
  38325. extra: 2083/1994,
  38326. bottom: 68/2151
  38327. }
  38328. },
  38329. },
  38330. [
  38331. {
  38332. name: "Baseline",
  38333. height: math.unit(9, "feet"),
  38334. default: true
  38335. },
  38336. {
  38337. name: "Giant",
  38338. height: math.unit(90, "feet")
  38339. },
  38340. {
  38341. name: "Macro",
  38342. height: math.unit(900, "feet")
  38343. },
  38344. {
  38345. name: "Megamacro",
  38346. height: math.unit(9000, "feet")
  38347. },
  38348. {
  38349. name: "City-Crushing",
  38350. height: math.unit(27000, "feet")
  38351. },
  38352. {
  38353. name: "Mountain-Mashing",
  38354. height: math.unit(90000, "feet")
  38355. },
  38356. {
  38357. name: "Nation Nemesis",
  38358. height: math.unit(9e6, "feet")
  38359. },
  38360. {
  38361. name: "Continent Cracker",
  38362. height: math.unit(27e6, "feet")
  38363. },
  38364. {
  38365. name: "Earth-Eclipsing",
  38366. height: math.unit(2.7e8, "feet")
  38367. },
  38368. {
  38369. name: "Gas Giant Gulper",
  38370. height: math.unit(2.7e9, "feet")
  38371. },
  38372. {
  38373. name: "Sol-Swallowing",
  38374. height: math.unit(9e10, "feet")
  38375. },
  38376. {
  38377. name: "Galaxy Gulper",
  38378. height: math.unit(9, "galaxies")
  38379. },
  38380. {
  38381. name: "Cosmos Churner",
  38382. height: math.unit(9, "universes")
  38383. },
  38384. ]
  38385. ))
  38386. characterMakers.push(() => makeCharacter(
  38387. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38388. {
  38389. front: {
  38390. height: math.unit(160, "cm"),
  38391. weight: math.unit(55, "kg"),
  38392. name: "Front",
  38393. image: {
  38394. source: "./media/characters/tow/front.svg",
  38395. extra: 1751/1722,
  38396. bottom: 74/1825
  38397. }
  38398. },
  38399. },
  38400. [
  38401. {
  38402. name: "Norm",
  38403. height: math.unit(160, "cm")
  38404. },
  38405. {
  38406. name: "Casual",
  38407. height: math.unit(3200, "m"),
  38408. default: true
  38409. },
  38410. {
  38411. name: "Show-Off",
  38412. height: math.unit(160, "km")
  38413. },
  38414. ]
  38415. ))
  38416. characterMakers.push(() => makeCharacter(
  38417. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38418. {
  38419. front: {
  38420. height: math.unit(7 + 11/12, "feet"),
  38421. weight: math.unit(342.8, "lb"),
  38422. name: "Front",
  38423. image: {
  38424. source: "./media/characters/vivian-orca-dragon/front.svg",
  38425. extra: 1890/1865,
  38426. bottom: 28/1918
  38427. }
  38428. },
  38429. },
  38430. [
  38431. {
  38432. name: "Micro",
  38433. height: math.unit(5, "inches")
  38434. },
  38435. {
  38436. name: "Normal",
  38437. height: math.unit(7 + 11/12, "feet"),
  38438. default: true
  38439. },
  38440. {
  38441. name: "Macro",
  38442. height: math.unit(395 + 7/12, "feet")
  38443. },
  38444. ]
  38445. ))
  38446. characterMakers.push(() => makeCharacter(
  38447. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38448. {
  38449. side: {
  38450. height: math.unit(10, "feet"),
  38451. weight: math.unit(1442, "lb"),
  38452. name: "Side",
  38453. image: {
  38454. source: "./media/characters/lotherakon/side.svg",
  38455. extra: 1604/1497,
  38456. bottom: 89/1693
  38457. }
  38458. },
  38459. },
  38460. [
  38461. {
  38462. name: "Mortal Interaction",
  38463. height: math.unit(10, "feet")
  38464. },
  38465. {
  38466. name: "Large",
  38467. height: math.unit(30, "feet"),
  38468. default: true
  38469. },
  38470. {
  38471. name: "Giant",
  38472. height: math.unit(100, "feet")
  38473. },
  38474. {
  38475. name: "Kaiju",
  38476. height: math.unit(300, "feet")
  38477. },
  38478. {
  38479. name: "Macro",
  38480. height: math.unit(1000, "feet")
  38481. },
  38482. {
  38483. name: "Macro+",
  38484. height: math.unit(3000, "feet")
  38485. },
  38486. {
  38487. name: "Megamacro",
  38488. height: math.unit(10000, "feet")
  38489. },
  38490. {
  38491. name: "City-Crushing",
  38492. height: math.unit(30000, "feet")
  38493. },
  38494. {
  38495. name: "Continent Cracker",
  38496. height: math.unit(30e6, "feet")
  38497. },
  38498. {
  38499. name: "Earth Eclipsing",
  38500. height: math.unit(3e8, "feet")
  38501. },
  38502. {
  38503. name: "Gas Giant Gulper",
  38504. height: math.unit(3e9, "feet")
  38505. },
  38506. {
  38507. name: "Sol-Swallowing",
  38508. height: math.unit(1e11, "feet")
  38509. },
  38510. {
  38511. name: "System Swallower",
  38512. height: math.unit(3e14, "feet")
  38513. },
  38514. {
  38515. name: "Galaxy Gulper",
  38516. height: math.unit(10, "galaxies")
  38517. },
  38518. {
  38519. name: "Light Universal",
  38520. height: math.unit(5, "universes")
  38521. },
  38522. {
  38523. name: "Universe Palm",
  38524. height: math.unit(20, "universes")
  38525. },
  38526. {
  38527. name: "Light Multiversal",
  38528. height: math.unit(5, "multiverses")
  38529. },
  38530. {
  38531. name: "Multiverse Palm",
  38532. height: math.unit(20, "multiverses")
  38533. },
  38534. {
  38535. name: "Inferno Incarnate",
  38536. height: math.unit(1e7, "multiverses")
  38537. },
  38538. ]
  38539. ))
  38540. characterMakers.push(() => makeCharacter(
  38541. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38542. {
  38543. front: {
  38544. height: math.unit(8, "feet"),
  38545. weight: math.unit(1200, "lb"),
  38546. name: "Front",
  38547. image: {
  38548. source: "./media/characters/malithee/front.svg",
  38549. extra: 1675/1640,
  38550. bottom: 162/1837
  38551. }
  38552. },
  38553. },
  38554. [
  38555. {
  38556. name: "Mortal Interaction",
  38557. height: math.unit(8, "feet"),
  38558. default: true
  38559. },
  38560. {
  38561. name: "Large",
  38562. height: math.unit(24, "feet")
  38563. },
  38564. {
  38565. name: "Kaiju",
  38566. height: math.unit(240, "feet")
  38567. },
  38568. {
  38569. name: "Megamacro",
  38570. height: math.unit(8000, "feet")
  38571. },
  38572. {
  38573. name: "Continent Cracker",
  38574. height: math.unit(24e6, "feet")
  38575. },
  38576. {
  38577. name: "Earth-Eclipsing",
  38578. height: math.unit(2.4e8, "feet")
  38579. },
  38580. {
  38581. name: "Sol-Swallowing",
  38582. height: math.unit(8e10, "feet")
  38583. },
  38584. {
  38585. name: "Galaxy Gulper",
  38586. height: math.unit(8, "galaxies")
  38587. },
  38588. {
  38589. name: "Light Universal",
  38590. height: math.unit(4, "universes")
  38591. },
  38592. {
  38593. name: "Universe Atoms",
  38594. height: math.unit(1.829e9, "universes")
  38595. },
  38596. {
  38597. name: "Light Multiversal",
  38598. height: math.unit(4, "multiverses")
  38599. },
  38600. {
  38601. name: "Multiverse Atoms",
  38602. height: math.unit(1.829e9, "multiverses")
  38603. },
  38604. {
  38605. name: "Nigh-Omnipresence",
  38606. height: math.unit(8e261, "multiverses")
  38607. },
  38608. ]
  38609. ))
  38610. characterMakers.push(() => makeCharacter(
  38611. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38612. {
  38613. front: {
  38614. height: math.unit(10, "feet"),
  38615. weight: math.unit(1500, "lb"),
  38616. name: "Front",
  38617. image: {
  38618. source: "./media/characters/miles-thestia/front.svg",
  38619. extra: 1812/1727,
  38620. bottom: 86/1898
  38621. }
  38622. },
  38623. back: {
  38624. height: math.unit(10, "feet"),
  38625. weight: math.unit(1500, "lb"),
  38626. name: "Back",
  38627. image: {
  38628. source: "./media/characters/miles-thestia/back.svg",
  38629. extra: 1799/1690,
  38630. bottom: 47/1846
  38631. }
  38632. },
  38633. frontNsfw: {
  38634. height: math.unit(10, "feet"),
  38635. weight: math.unit(1500, "lb"),
  38636. name: "Front (NSFW)",
  38637. image: {
  38638. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38639. extra: 1812/1727,
  38640. bottom: 86/1898
  38641. }
  38642. },
  38643. },
  38644. [
  38645. {
  38646. name: "Mini-Macro",
  38647. height: math.unit(10, "feet"),
  38648. default: true
  38649. },
  38650. ]
  38651. ))
  38652. characterMakers.push(() => makeCharacter(
  38653. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38654. {
  38655. front: {
  38656. height: math.unit(25, "feet"),
  38657. name: "Front",
  38658. image: {
  38659. source: "./media/characters/titan-s-wulf/front.svg",
  38660. extra: 1560/1484,
  38661. bottom: 76/1636
  38662. }
  38663. },
  38664. },
  38665. [
  38666. {
  38667. name: "Smallest",
  38668. height: math.unit(25, "feet"),
  38669. default: true
  38670. },
  38671. {
  38672. name: "Normal",
  38673. height: math.unit(200, "feet")
  38674. },
  38675. {
  38676. name: "Macro",
  38677. height: math.unit(200000, "feet")
  38678. },
  38679. {
  38680. name: "Multiversal Original",
  38681. height: math.unit(10000, "multiverses")
  38682. },
  38683. ]
  38684. ))
  38685. characterMakers.push(() => makeCharacter(
  38686. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38687. {
  38688. front: {
  38689. height: math.unit(8, "feet"),
  38690. weight: math.unit(553, "lb"),
  38691. name: "Front",
  38692. image: {
  38693. source: "./media/characters/tawendeh/front.svg",
  38694. extra: 2365/2268,
  38695. bottom: 83/2448
  38696. }
  38697. },
  38698. frontClothed: {
  38699. height: math.unit(8, "feet"),
  38700. weight: math.unit(553, "lb"),
  38701. name: "Front (Clothed)",
  38702. image: {
  38703. source: "./media/characters/tawendeh/front-clothed.svg",
  38704. extra: 2365/2268,
  38705. bottom: 83/2448
  38706. }
  38707. },
  38708. back: {
  38709. height: math.unit(8, "feet"),
  38710. weight: math.unit(553, "lb"),
  38711. name: "Back",
  38712. image: {
  38713. source: "./media/characters/tawendeh/back.svg",
  38714. extra: 2397/2294,
  38715. bottom: 42/2439
  38716. }
  38717. },
  38718. },
  38719. [
  38720. {
  38721. name: "Mortal Interaction",
  38722. height: math.unit(8, "feet"),
  38723. default: true
  38724. },
  38725. {
  38726. name: "Giant",
  38727. height: math.unit(80, "feet")
  38728. },
  38729. {
  38730. name: "Macro",
  38731. height: math.unit(800, "feet")
  38732. },
  38733. {
  38734. name: "Megamacro",
  38735. height: math.unit(8000, "feet")
  38736. },
  38737. {
  38738. name: "City-Crushing",
  38739. height: math.unit(24000, "feet")
  38740. },
  38741. {
  38742. name: "Mountain-Mashing",
  38743. height: math.unit(80000, "feet")
  38744. },
  38745. {
  38746. name: "Nation Nemesis",
  38747. height: math.unit(8e6, "feet")
  38748. },
  38749. {
  38750. name: "Continent Cracker",
  38751. height: math.unit(24e6, "feet")
  38752. },
  38753. {
  38754. name: "Earth-Eclipsing",
  38755. height: math.unit(2.4e8, "feet")
  38756. },
  38757. {
  38758. name: "Gas Giant Gulper",
  38759. height: math.unit(2.4e9, "feet")
  38760. },
  38761. {
  38762. name: "Sol-Swallowing",
  38763. height: math.unit(8e10, "feet")
  38764. },
  38765. {
  38766. name: "Galaxy Gulper",
  38767. height: math.unit(8, "galaxies")
  38768. },
  38769. {
  38770. name: "Cosmos Churner",
  38771. height: math.unit(8, "universes")
  38772. },
  38773. {
  38774. name: "Omnipotent Otter",
  38775. height: math.unit(80, "universes")
  38776. },
  38777. ]
  38778. ))
  38779. characterMakers.push(() => makeCharacter(
  38780. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38781. {
  38782. front: {
  38783. height: math.unit(2.6, "meters"),
  38784. weight: math.unit(900, "kg"),
  38785. name: "Front",
  38786. image: {
  38787. source: "./media/characters/neesha/front.svg",
  38788. extra: 1803/1653,
  38789. bottom: 128/1931
  38790. }
  38791. },
  38792. },
  38793. [
  38794. {
  38795. name: "Normal",
  38796. height: math.unit(2.6, "meters"),
  38797. default: true
  38798. },
  38799. {
  38800. name: "Macro",
  38801. height: math.unit(50, "meters")
  38802. },
  38803. ]
  38804. ))
  38805. characterMakers.push(() => makeCharacter(
  38806. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38807. {
  38808. front: {
  38809. height: math.unit(5, "feet"),
  38810. weight: math.unit(185, "lb"),
  38811. name: "Front",
  38812. image: {
  38813. source: "./media/characters/kyera/front.svg",
  38814. extra: 1875/1790,
  38815. bottom: 96/1971
  38816. }
  38817. },
  38818. },
  38819. [
  38820. {
  38821. name: "Normal",
  38822. height: math.unit(5, "feet"),
  38823. default: true
  38824. },
  38825. ]
  38826. ))
  38827. characterMakers.push(() => makeCharacter(
  38828. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38829. {
  38830. front: {
  38831. height: math.unit(7 + 6/12, "feet"),
  38832. weight: math.unit(540, "lb"),
  38833. name: "Front",
  38834. image: {
  38835. source: "./media/characters/yuko/front.svg",
  38836. extra: 1282/1222,
  38837. bottom: 101/1383
  38838. }
  38839. },
  38840. frontClothed: {
  38841. height: math.unit(7 + 6/12, "feet"),
  38842. weight: math.unit(540, "lb"),
  38843. name: "Front (Clothed)",
  38844. image: {
  38845. source: "./media/characters/yuko/front-clothed.svg",
  38846. extra: 1282/1222,
  38847. bottom: 101/1383
  38848. }
  38849. },
  38850. },
  38851. [
  38852. {
  38853. name: "Normal",
  38854. height: math.unit(7 + 6/12, "feet"),
  38855. default: true
  38856. },
  38857. {
  38858. name: "Macro",
  38859. height: math.unit(26 + 9/12, "feet")
  38860. },
  38861. {
  38862. name: "Megamacro",
  38863. height: math.unit(300, "feet")
  38864. },
  38865. {
  38866. name: "Gigamacro",
  38867. height: math.unit(5000, "feet")
  38868. },
  38869. {
  38870. name: "Planetary",
  38871. height: math.unit(10000, "miles")
  38872. },
  38873. ]
  38874. ))
  38875. characterMakers.push(() => makeCharacter(
  38876. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38877. {
  38878. front: {
  38879. height: math.unit(8 + 2/12, "feet"),
  38880. weight: math.unit(600, "lb"),
  38881. name: "Front",
  38882. image: {
  38883. source: "./media/characters/deam-nitrel/front.svg",
  38884. extra: 1308/1234,
  38885. bottom: 125/1433
  38886. }
  38887. },
  38888. },
  38889. [
  38890. {
  38891. name: "Normal",
  38892. height: math.unit(8 + 2/12, "feet"),
  38893. default: true
  38894. },
  38895. ]
  38896. ))
  38897. characterMakers.push(() => makeCharacter(
  38898. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  38899. {
  38900. front: {
  38901. height: math.unit(6.1, "feet"),
  38902. weight: math.unit(180, "lb"),
  38903. name: "Front",
  38904. image: {
  38905. source: "./media/characters/skyress/front.svg",
  38906. extra: 1045/915,
  38907. bottom: 28/1073
  38908. }
  38909. },
  38910. maw: {
  38911. height: math.unit(1, "feet"),
  38912. name: "Maw",
  38913. image: {
  38914. source: "./media/characters/skyress/maw.svg"
  38915. }
  38916. },
  38917. },
  38918. [
  38919. {
  38920. name: "Normal",
  38921. height: math.unit(6.1, "feet"),
  38922. default: true
  38923. },
  38924. {
  38925. name: "Macro",
  38926. height: math.unit(200, "feet")
  38927. },
  38928. ]
  38929. ))
  38930. characterMakers.push(() => makeCharacter(
  38931. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  38932. {
  38933. front: {
  38934. height: math.unit(4 + 2/12, "feet"),
  38935. weight: math.unit(40, "kg"),
  38936. name: "Front",
  38937. image: {
  38938. source: "./media/characters/amethyst-jones/front.svg",
  38939. extra: 1220/1150,
  38940. bottom: 101/1321
  38941. }
  38942. },
  38943. },
  38944. [
  38945. {
  38946. name: "Normal",
  38947. height: math.unit(4 + 2/12, "feet"),
  38948. default: true
  38949. },
  38950. ]
  38951. ))
  38952. characterMakers.push(() => makeCharacter(
  38953. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  38954. {
  38955. front: {
  38956. height: math.unit(1.7, "m"),
  38957. weight: math.unit(135, "lb"),
  38958. name: "Front",
  38959. image: {
  38960. source: "./media/characters/jade/front.svg",
  38961. extra: 1818/1767,
  38962. bottom: 32/1850
  38963. }
  38964. },
  38965. back: {
  38966. height: math.unit(1.7, "m"),
  38967. weight: math.unit(135, "lb"),
  38968. name: "Back",
  38969. image: {
  38970. source: "./media/characters/jade/back.svg",
  38971. extra: 1869/1809,
  38972. bottom: 35/1904
  38973. }
  38974. },
  38975. hand: {
  38976. height: math.unit(0.24, "m"),
  38977. name: "Hand",
  38978. image: {
  38979. source: "./media/characters/jade/hand.svg"
  38980. }
  38981. },
  38982. foot: {
  38983. height: math.unit(0.263, "m"),
  38984. name: "Foot",
  38985. image: {
  38986. source: "./media/characters/jade/foot.svg"
  38987. }
  38988. },
  38989. dick: {
  38990. height: math.unit(0.47, "m"),
  38991. name: "Dick",
  38992. image: {
  38993. source: "./media/characters/jade/dick.svg"
  38994. }
  38995. },
  38996. },
  38997. [
  38998. {
  38999. name: "Micro",
  39000. height: math.unit(22, "cm")
  39001. },
  39002. {
  39003. name: "Normal",
  39004. height: math.unit(1.7, "m"),
  39005. default: true
  39006. },
  39007. {
  39008. name: "Macro",
  39009. height: math.unit(152, "m")
  39010. },
  39011. ]
  39012. ))
  39013. characterMakers.push(() => makeCharacter(
  39014. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39015. {
  39016. front: {
  39017. height: math.unit(100, "miles"),
  39018. weight: math.unit(20000, "tons"),
  39019. name: "Front",
  39020. image: {
  39021. source: "./media/characters/cookie/front.svg",
  39022. extra: 1125/1070,
  39023. bottom: 30/1155
  39024. }
  39025. },
  39026. },
  39027. [
  39028. {
  39029. name: "Big",
  39030. height: math.unit(50, "feet")
  39031. },
  39032. {
  39033. name: "Macro",
  39034. height: math.unit(100, "miles"),
  39035. default: true
  39036. },
  39037. {
  39038. name: "Megamacro",
  39039. height: math.unit(90000, "miles")
  39040. },
  39041. ]
  39042. ))
  39043. characterMakers.push(() => makeCharacter(
  39044. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39045. {
  39046. front: {
  39047. height: math.unit(6, "feet"),
  39048. weight: math.unit(145, "lb"),
  39049. name: "Front",
  39050. image: {
  39051. source: "./media/characters/farzian/front.svg",
  39052. extra: 1902/1693,
  39053. bottom: 108/2010
  39054. }
  39055. },
  39056. },
  39057. [
  39058. {
  39059. name: "Macro",
  39060. height: math.unit(500, "feet"),
  39061. default: true
  39062. },
  39063. ]
  39064. ))
  39065. characterMakers.push(() => makeCharacter(
  39066. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39067. {
  39068. front: {
  39069. height: math.unit(3 + 6/12, "feet"),
  39070. weight: math.unit(50, "lb"),
  39071. name: "Front",
  39072. image: {
  39073. source: "./media/characters/kimberly-tilson/front.svg",
  39074. extra: 1400/1322,
  39075. bottom: 36/1436
  39076. }
  39077. },
  39078. back: {
  39079. height: math.unit(3 + 6/12, "feet"),
  39080. weight: math.unit(50, "lb"),
  39081. name: "Back",
  39082. image: {
  39083. source: "./media/characters/kimberly-tilson/back.svg",
  39084. extra: 1370/1307,
  39085. bottom: 20/1390
  39086. }
  39087. },
  39088. },
  39089. [
  39090. {
  39091. name: "Normal",
  39092. height: math.unit(3 + 6/12, "feet"),
  39093. default: true
  39094. },
  39095. ]
  39096. ))
  39097. characterMakers.push(() => makeCharacter(
  39098. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39099. {
  39100. front: {
  39101. height: math.unit(1148, "feet"),
  39102. weight: math.unit(34057, "lb"),
  39103. name: "Front",
  39104. image: {
  39105. source: "./media/characters/harthos/front.svg",
  39106. extra: 1391/1339,
  39107. bottom: 13/1404
  39108. }
  39109. },
  39110. },
  39111. [
  39112. {
  39113. name: "Macro",
  39114. height: math.unit(1148, "feet"),
  39115. default: true
  39116. },
  39117. ]
  39118. ))
  39119. characterMakers.push(() => makeCharacter(
  39120. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39121. {
  39122. front: {
  39123. height: math.unit(15, "feet"),
  39124. name: "Front",
  39125. image: {
  39126. source: "./media/characters/hypatia/front.svg",
  39127. extra: 1653/1591,
  39128. bottom: 79/1732
  39129. }
  39130. },
  39131. },
  39132. [
  39133. {
  39134. name: "Normal",
  39135. height: math.unit(15, "feet")
  39136. },
  39137. {
  39138. name: "Small",
  39139. height: math.unit(300, "feet")
  39140. },
  39141. {
  39142. name: "Macro",
  39143. height: math.unit(2500, "feet"),
  39144. default: true
  39145. },
  39146. {
  39147. name: "Mega Macro",
  39148. height: math.unit(1500, "miles")
  39149. },
  39150. {
  39151. name: "Giga Macro",
  39152. height: math.unit(1.5e6, "miles")
  39153. },
  39154. ]
  39155. ))
  39156. characterMakers.push(() => makeCharacter(
  39157. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39158. {
  39159. front: {
  39160. height: math.unit(6, "feet"),
  39161. weight: math.unit(200, "lb"),
  39162. name: "Front",
  39163. image: {
  39164. source: "./media/characters/wulver/front.svg",
  39165. extra: 1724/1632,
  39166. bottom: 130/1854
  39167. }
  39168. },
  39169. frontNsfw: {
  39170. height: math.unit(6, "feet"),
  39171. weight: math.unit(200, "lb"),
  39172. name: "Front (NSFW)",
  39173. image: {
  39174. source: "./media/characters/wulver/front-nsfw.svg",
  39175. extra: 1724/1632,
  39176. bottom: 130/1854
  39177. }
  39178. },
  39179. },
  39180. [
  39181. {
  39182. name: "Human-Sized",
  39183. height: math.unit(6, "feet")
  39184. },
  39185. {
  39186. name: "Normal",
  39187. height: math.unit(4, "meters"),
  39188. default: true
  39189. },
  39190. {
  39191. name: "Large",
  39192. height: math.unit(6, "m")
  39193. },
  39194. ]
  39195. ))
  39196. characterMakers.push(() => makeCharacter(
  39197. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39198. {
  39199. front: {
  39200. height: math.unit(7, "feet"),
  39201. name: "Front",
  39202. image: {
  39203. source: "./media/characters/maru/front.svg",
  39204. extra: 1595/1570,
  39205. bottom: 0/1595
  39206. }
  39207. },
  39208. },
  39209. [
  39210. {
  39211. name: "Normal",
  39212. height: math.unit(7, "feet"),
  39213. default: true
  39214. },
  39215. {
  39216. name: "Macro",
  39217. height: math.unit(700, "feet")
  39218. },
  39219. {
  39220. name: "Mega Macro",
  39221. height: math.unit(25, "miles")
  39222. },
  39223. ]
  39224. ))
  39225. characterMakers.push(() => makeCharacter(
  39226. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39227. {
  39228. front: {
  39229. height: math.unit(6, "feet"),
  39230. weight: math.unit(170, "lb"),
  39231. name: "Front",
  39232. image: {
  39233. source: "./media/characters/xenon/front.svg",
  39234. extra: 1376/1305,
  39235. bottom: 56/1432
  39236. }
  39237. },
  39238. back: {
  39239. height: math.unit(6, "feet"),
  39240. weight: math.unit(170, "lb"),
  39241. name: "Back",
  39242. image: {
  39243. source: "./media/characters/xenon/back.svg",
  39244. extra: 1328/1259,
  39245. bottom: 95/1423
  39246. }
  39247. },
  39248. maw: {
  39249. height: math.unit(0.52, "feet"),
  39250. name: "Maw",
  39251. image: {
  39252. source: "./media/characters/xenon/maw.svg"
  39253. }
  39254. },
  39255. hand: {
  39256. height: math.unit(0.82, "feet"),
  39257. name: "Hand",
  39258. image: {
  39259. source: "./media/characters/xenon/hand.svg"
  39260. }
  39261. },
  39262. foot: {
  39263. height: math.unit(1.13, "feet"),
  39264. name: "Foot",
  39265. image: {
  39266. source: "./media/characters/xenon/foot.svg"
  39267. }
  39268. },
  39269. },
  39270. [
  39271. {
  39272. name: "Micro",
  39273. height: math.unit(0.8, "inches")
  39274. },
  39275. {
  39276. name: "Normal",
  39277. height: math.unit(6, "feet")
  39278. },
  39279. {
  39280. name: "Macro",
  39281. height: math.unit(50, "feet"),
  39282. default: true
  39283. },
  39284. {
  39285. name: "Macro+",
  39286. height: math.unit(250, "feet")
  39287. },
  39288. {
  39289. name: "Megamacro",
  39290. height: math.unit(1500, "feet")
  39291. },
  39292. ]
  39293. ))
  39294. characterMakers.push(() => makeCharacter(
  39295. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39296. {
  39297. front: {
  39298. height: math.unit(7 + 5/12, "feet"),
  39299. name: "Front",
  39300. image: {
  39301. source: "./media/characters/zane/front.svg",
  39302. extra: 1260/1203,
  39303. bottom: 94/1354
  39304. }
  39305. },
  39306. back: {
  39307. height: math.unit(5.05, "feet"),
  39308. name: "Back",
  39309. image: {
  39310. source: "./media/characters/zane/back.svg",
  39311. extra: 893/829,
  39312. bottom: 30/923
  39313. }
  39314. },
  39315. werewolf: {
  39316. height: math.unit(11, "feet"),
  39317. name: "Werewolf",
  39318. image: {
  39319. source: "./media/characters/zane/werewolf.svg",
  39320. extra: 1383/1323,
  39321. bottom: 89/1472
  39322. }
  39323. },
  39324. foot: {
  39325. height: math.unit(1.46, "feet"),
  39326. name: "Foot",
  39327. image: {
  39328. source: "./media/characters/zane/foot.svg"
  39329. }
  39330. },
  39331. footFront: {
  39332. height: math.unit(0.784, "feet"),
  39333. name: "Foot (Front)",
  39334. image: {
  39335. source: "./media/characters/zane/foot-front.svg"
  39336. }
  39337. },
  39338. dick: {
  39339. height: math.unit(1.95, "feet"),
  39340. name: "Dick",
  39341. image: {
  39342. source: "./media/characters/zane/dick.svg"
  39343. }
  39344. },
  39345. dickWerewolf: {
  39346. height: math.unit(3.77, "feet"),
  39347. name: "Dick (Werewolf)",
  39348. image: {
  39349. source: "./media/characters/zane/dick.svg"
  39350. }
  39351. },
  39352. },
  39353. [
  39354. {
  39355. name: "Normal",
  39356. height: math.unit(7 + 5/12, "feet"),
  39357. default: true
  39358. },
  39359. ]
  39360. ))
  39361. characterMakers.push(() => makeCharacter(
  39362. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39363. {
  39364. front: {
  39365. height: math.unit(6 + 2/12, "feet"),
  39366. weight: math.unit(284, "lb"),
  39367. name: "Front",
  39368. image: {
  39369. source: "./media/characters/benni-desparque/front.svg",
  39370. extra: 1353/1126,
  39371. bottom: 69/1422
  39372. }
  39373. },
  39374. },
  39375. [
  39376. {
  39377. name: "Civilian",
  39378. height: math.unit(6 + 2/12, "feet")
  39379. },
  39380. {
  39381. name: "Normal",
  39382. height: math.unit(98, "feet"),
  39383. default: true
  39384. },
  39385. {
  39386. name: "Kaiju Fighter",
  39387. height: math.unit(268, "feet")
  39388. },
  39389. ]
  39390. ))
  39391. characterMakers.push(() => makeCharacter(
  39392. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39393. {
  39394. front: {
  39395. height: math.unit(5, "feet"),
  39396. weight: math.unit(105, "lb"),
  39397. name: "Front",
  39398. image: {
  39399. source: "./media/characters/maxine/front.svg",
  39400. extra: 1386/1250,
  39401. bottom: 71/1457
  39402. }
  39403. },
  39404. },
  39405. [
  39406. {
  39407. name: "Normal",
  39408. height: math.unit(5, "feet"),
  39409. default: true
  39410. },
  39411. ]
  39412. ))
  39413. characterMakers.push(() => makeCharacter(
  39414. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39415. {
  39416. front: {
  39417. height: math.unit(11 + 7/12, "feet"),
  39418. weight: math.unit(9576, "lb"),
  39419. name: "Front",
  39420. image: {
  39421. source: "./media/characters/scaly/front.svg",
  39422. extra: 888/867,
  39423. bottom: 36/924
  39424. }
  39425. },
  39426. },
  39427. [
  39428. {
  39429. name: "Normal",
  39430. height: math.unit(11 + 7/12, "feet"),
  39431. default: true
  39432. },
  39433. ]
  39434. ))
  39435. characterMakers.push(() => makeCharacter(
  39436. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39437. {
  39438. front: {
  39439. height: math.unit(9, "inches"),
  39440. name: "Front",
  39441. image: {
  39442. source: "./media/characters/saelria/front.svg",
  39443. extra: 662/621,
  39444. bottom: 12/674
  39445. }
  39446. },
  39447. },
  39448. [
  39449. {
  39450. name: "Tiny",
  39451. height: math.unit(9, "inches"),
  39452. default: true
  39453. },
  39454. ]
  39455. ))
  39456. characterMakers.push(() => makeCharacter(
  39457. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39458. {
  39459. front: {
  39460. height: math.unit(80, "meters"),
  39461. weight: math.unit(7000, "tonnes"),
  39462. name: "Front",
  39463. image: {
  39464. source: "./media/characters/tef/front.svg",
  39465. extra: 2036/1991,
  39466. bottom: 54/2090
  39467. }
  39468. },
  39469. back: {
  39470. height: math.unit(80, "meters"),
  39471. weight: math.unit(7000, "tonnes"),
  39472. name: "Back",
  39473. image: {
  39474. source: "./media/characters/tef/back.svg",
  39475. extra: 2036/1991,
  39476. bottom: 54/2090
  39477. }
  39478. },
  39479. },
  39480. [
  39481. {
  39482. name: "Macro",
  39483. height: math.unit(80, "meters"),
  39484. default: true
  39485. },
  39486. ]
  39487. ))
  39488. characterMakers.push(() => makeCharacter(
  39489. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39490. {
  39491. front: {
  39492. height: math.unit(13, "feet"),
  39493. weight: math.unit(6, "tons"),
  39494. name: "Front",
  39495. image: {
  39496. source: "./media/characters/rover/front.svg",
  39497. extra: 1233/1156,
  39498. bottom: 50/1283
  39499. }
  39500. },
  39501. back: {
  39502. height: math.unit(13, "feet"),
  39503. weight: math.unit(6, "tons"),
  39504. name: "Back",
  39505. image: {
  39506. source: "./media/characters/rover/back.svg",
  39507. extra: 1327/1258,
  39508. bottom: 39/1366
  39509. }
  39510. },
  39511. },
  39512. [
  39513. {
  39514. name: "Normal",
  39515. height: math.unit(13, "feet"),
  39516. default: true
  39517. },
  39518. {
  39519. name: "Macro",
  39520. height: math.unit(1300, "feet")
  39521. },
  39522. {
  39523. name: "Megamacro",
  39524. height: math.unit(1300, "miles")
  39525. },
  39526. {
  39527. name: "Gigamacro",
  39528. height: math.unit(1300000, "miles")
  39529. },
  39530. ]
  39531. ))
  39532. characterMakers.push(() => makeCharacter(
  39533. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39534. {
  39535. front: {
  39536. height: math.unit(6, "feet"),
  39537. weight: math.unit(150, "lb"),
  39538. name: "Front",
  39539. image: {
  39540. source: "./media/characters/ariz/front.svg",
  39541. extra: 1401/1346,
  39542. bottom: 5/1406
  39543. }
  39544. },
  39545. },
  39546. [
  39547. {
  39548. name: "Normal",
  39549. height: math.unit(10, "feet"),
  39550. default: true
  39551. },
  39552. ]
  39553. ))
  39554. characterMakers.push(() => makeCharacter(
  39555. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39556. {
  39557. front: {
  39558. height: math.unit(6, "feet"),
  39559. weight: math.unit(140, "lb"),
  39560. name: "Front",
  39561. image: {
  39562. source: "./media/characters/sigrun/front.svg",
  39563. extra: 1418/1359,
  39564. bottom: 27/1445
  39565. }
  39566. },
  39567. },
  39568. [
  39569. {
  39570. name: "Macro",
  39571. height: math.unit(35, "feet"),
  39572. default: true
  39573. },
  39574. ]
  39575. ))
  39576. characterMakers.push(() => makeCharacter(
  39577. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39578. {
  39579. front: {
  39580. height: math.unit(6, "feet"),
  39581. weight: math.unit(150, "lb"),
  39582. name: "Front",
  39583. image: {
  39584. source: "./media/characters/numin/front.svg",
  39585. extra: 1433/1388,
  39586. bottom: 12/1445
  39587. }
  39588. },
  39589. },
  39590. [
  39591. {
  39592. name: "Macro",
  39593. height: math.unit(21.5, "km"),
  39594. default: true
  39595. },
  39596. ]
  39597. ))
  39598. characterMakers.push(() => makeCharacter(
  39599. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39600. {
  39601. front: {
  39602. height: math.unit(6, "feet"),
  39603. weight: math.unit(463, "lb"),
  39604. name: "Front",
  39605. image: {
  39606. source: "./media/characters/melwa/front.svg",
  39607. extra: 1307/1248,
  39608. bottom: 93/1400
  39609. }
  39610. },
  39611. },
  39612. [
  39613. {
  39614. name: "Macro",
  39615. height: math.unit(50, "meters"),
  39616. default: true
  39617. },
  39618. ]
  39619. ))
  39620. characterMakers.push(() => makeCharacter(
  39621. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39622. {
  39623. front: {
  39624. height: math.unit(325, "feet"),
  39625. name: "Front",
  39626. image: {
  39627. source: "./media/characters/zorkaiju/front.svg",
  39628. extra: 1955/1814,
  39629. bottom: 40/1995
  39630. }
  39631. },
  39632. frontExtended: {
  39633. height: math.unit(325, "feet"),
  39634. name: "Front (Extended)",
  39635. image: {
  39636. source: "./media/characters/zorkaiju/front-extended.svg",
  39637. extra: 1955/1814,
  39638. bottom: 40/1995
  39639. }
  39640. },
  39641. side: {
  39642. height: math.unit(325, "feet"),
  39643. name: "Side",
  39644. image: {
  39645. source: "./media/characters/zorkaiju/side.svg",
  39646. extra: 1495/1396,
  39647. bottom: 17/1512
  39648. }
  39649. },
  39650. sideExtended: {
  39651. height: math.unit(325, "feet"),
  39652. name: "Side (Extended)",
  39653. image: {
  39654. source: "./media/characters/zorkaiju/side-extended.svg",
  39655. extra: 1495/1396,
  39656. bottom: 17/1512
  39657. }
  39658. },
  39659. back: {
  39660. height: math.unit(325, "feet"),
  39661. name: "Back",
  39662. image: {
  39663. source: "./media/characters/zorkaiju/back.svg",
  39664. extra: 1959/1821,
  39665. bottom: 31/1990
  39666. }
  39667. },
  39668. backExtended: {
  39669. height: math.unit(325, "feet"),
  39670. name: "Back (Extended)",
  39671. image: {
  39672. source: "./media/characters/zorkaiju/back-extended.svg",
  39673. extra: 1959/1821,
  39674. bottom: 31/1990
  39675. }
  39676. },
  39677. hand: {
  39678. height: math.unit(58.4, "feet"),
  39679. name: "Hand",
  39680. image: {
  39681. source: "./media/characters/zorkaiju/hand.svg"
  39682. }
  39683. },
  39684. handExtended: {
  39685. height: math.unit(61.4, "feet"),
  39686. name: "Hand (Extended)",
  39687. image: {
  39688. source: "./media/characters/zorkaiju/hand-extended.svg"
  39689. }
  39690. },
  39691. foot: {
  39692. height: math.unit(95, "feet"),
  39693. name: "Foot",
  39694. image: {
  39695. source: "./media/characters/zorkaiju/foot.svg"
  39696. }
  39697. },
  39698. leftArm: {
  39699. height: math.unit(59, "feet"),
  39700. name: "Left Arm",
  39701. image: {
  39702. source: "./media/characters/zorkaiju/left-arm.svg"
  39703. }
  39704. },
  39705. rightArm: {
  39706. height: math.unit(59, "feet"),
  39707. name: "Right Arm",
  39708. image: {
  39709. source: "./media/characters/zorkaiju/right-arm.svg"
  39710. }
  39711. },
  39712. tail: {
  39713. height: math.unit(104, "feet"),
  39714. name: "Tail",
  39715. image: {
  39716. source: "./media/characters/zorkaiju/tail.svg"
  39717. }
  39718. },
  39719. tailExtended: {
  39720. height: math.unit(104, "feet"),
  39721. name: "Tail (Extended)",
  39722. image: {
  39723. source: "./media/characters/zorkaiju/tail-extended.svg"
  39724. }
  39725. },
  39726. tailBottom: {
  39727. height: math.unit(104, "feet"),
  39728. name: "Tail Bottom",
  39729. image: {
  39730. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39731. }
  39732. },
  39733. crystal: {
  39734. height: math.unit(27.54, "feet"),
  39735. name: "Crystal",
  39736. image: {
  39737. source: "./media/characters/zorkaiju/crystal.svg"
  39738. }
  39739. },
  39740. },
  39741. [
  39742. {
  39743. name: "Kaiju",
  39744. height: math.unit(325, "feet"),
  39745. default: true
  39746. },
  39747. ]
  39748. ))
  39749. characterMakers.push(() => makeCharacter(
  39750. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  39751. {
  39752. front: {
  39753. height: math.unit(6 + 1/12, "feet"),
  39754. weight: math.unit(115, "lb"),
  39755. name: "Front",
  39756. image: {
  39757. source: "./media/characters/bailey-belfry/front.svg",
  39758. extra: 1240/1121,
  39759. bottom: 101/1341
  39760. }
  39761. },
  39762. },
  39763. [
  39764. {
  39765. name: "Normal",
  39766. height: math.unit(6 + 1/12, "feet"),
  39767. default: true
  39768. },
  39769. ]
  39770. ))
  39771. characterMakers.push(() => makeCharacter(
  39772. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  39773. {
  39774. side: {
  39775. height: math.unit(4, "meters"),
  39776. weight: math.unit(250, "kg"),
  39777. name: "Side",
  39778. image: {
  39779. source: "./media/characters/blacky/side.svg",
  39780. extra: 1027/919,
  39781. bottom: 43/1070
  39782. }
  39783. },
  39784. maw: {
  39785. height: math.unit(1, "meters"),
  39786. name: "Maw",
  39787. image: {
  39788. source: "./media/characters/blacky/maw.svg"
  39789. }
  39790. },
  39791. paw: {
  39792. height: math.unit(1, "meters"),
  39793. name: "Paw",
  39794. image: {
  39795. source: "./media/characters/blacky/paw.svg"
  39796. }
  39797. },
  39798. },
  39799. [
  39800. {
  39801. name: "Normal",
  39802. height: math.unit(4, "meters"),
  39803. default: true
  39804. },
  39805. ]
  39806. ))
  39807. characterMakers.push(() => makeCharacter(
  39808. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  39809. {
  39810. front: {
  39811. height: math.unit(170, "cm"),
  39812. weight: math.unit(66, "kg"),
  39813. name: "Front",
  39814. image: {
  39815. source: "./media/characters/thux-ei/front.svg",
  39816. extra: 1109/1011,
  39817. bottom: 8/1117
  39818. }
  39819. },
  39820. },
  39821. [
  39822. {
  39823. name: "Normal",
  39824. height: math.unit(170, "cm"),
  39825. default: true
  39826. },
  39827. ]
  39828. ))
  39829. characterMakers.push(() => makeCharacter(
  39830. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  39831. {
  39832. front: {
  39833. height: math.unit(5, "feet"),
  39834. weight: math.unit(120, "lb"),
  39835. name: "Front",
  39836. image: {
  39837. source: "./media/characters/roxanne-voltaire/front.svg",
  39838. extra: 1901/1779,
  39839. bottom: 53/1954
  39840. }
  39841. },
  39842. },
  39843. [
  39844. {
  39845. name: "Normal",
  39846. height: math.unit(5, "feet"),
  39847. default: true
  39848. },
  39849. {
  39850. name: "Giant",
  39851. height: math.unit(50, "feet")
  39852. },
  39853. {
  39854. name: "Titan",
  39855. height: math.unit(500, "feet")
  39856. },
  39857. {
  39858. name: "Macro",
  39859. height: math.unit(5000, "feet")
  39860. },
  39861. {
  39862. name: "Megamacro",
  39863. height: math.unit(50000, "feet")
  39864. },
  39865. {
  39866. name: "Gigamacro",
  39867. height: math.unit(500000, "feet")
  39868. },
  39869. {
  39870. name: "Teramacro",
  39871. height: math.unit(5e6, "feet")
  39872. },
  39873. ]
  39874. ))
  39875. characterMakers.push(() => makeCharacter(
  39876. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  39877. {
  39878. front: {
  39879. height: math.unit(6 + 2/12, "feet"),
  39880. name: "Front",
  39881. image: {
  39882. source: "./media/characters/squeaks/front.svg",
  39883. extra: 1823/1768,
  39884. bottom: 138/1961
  39885. }
  39886. },
  39887. },
  39888. [
  39889. {
  39890. name: "Micro",
  39891. height: math.unit(0.5, "inches")
  39892. },
  39893. {
  39894. name: "Normal",
  39895. height: math.unit(6 + 2/12, "feet"),
  39896. default: true
  39897. },
  39898. {
  39899. name: "Macro",
  39900. height: math.unit(600, "feet")
  39901. },
  39902. ]
  39903. ))
  39904. characterMakers.push(() => makeCharacter(
  39905. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  39906. {
  39907. front: {
  39908. height: math.unit(1.72, "meters"),
  39909. name: "Front",
  39910. image: {
  39911. source: "./media/characters/archinger/front.svg",
  39912. extra: 1861/1675,
  39913. bottom: 125/1986
  39914. }
  39915. },
  39916. back: {
  39917. height: math.unit(1.72, "meters"),
  39918. name: "Back",
  39919. image: {
  39920. source: "./media/characters/archinger/back.svg",
  39921. extra: 1844/1701,
  39922. bottom: 104/1948
  39923. }
  39924. },
  39925. cock: {
  39926. height: math.unit(0.59, "feet"),
  39927. name: "Cock",
  39928. image: {
  39929. source: "./media/characters/archinger/cock.svg"
  39930. }
  39931. },
  39932. },
  39933. [
  39934. {
  39935. name: "Normal",
  39936. height: math.unit(1.72, "meters"),
  39937. default: true
  39938. },
  39939. {
  39940. name: "Macro",
  39941. height: math.unit(84, "meters")
  39942. },
  39943. {
  39944. name: "Macro+",
  39945. height: math.unit(112, "meters")
  39946. },
  39947. {
  39948. name: "Macro++",
  39949. height: math.unit(960, "meters")
  39950. },
  39951. {
  39952. name: "Macro+++",
  39953. height: math.unit(4, "km")
  39954. },
  39955. {
  39956. name: "Macro++++",
  39957. height: math.unit(48, "km")
  39958. },
  39959. {
  39960. name: "Macro+++++",
  39961. height: math.unit(4500, "km")
  39962. },
  39963. ]
  39964. ))
  39965. characterMakers.push(() => makeCharacter(
  39966. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  39967. {
  39968. front: {
  39969. height: math.unit(5 + 5/12, "feet"),
  39970. name: "Front",
  39971. image: {
  39972. source: "./media/characters/alsnapz/front.svg",
  39973. extra: 1157/1065,
  39974. bottom: 42/1199
  39975. }
  39976. },
  39977. },
  39978. [
  39979. {
  39980. name: "Normal",
  39981. height: math.unit(5 + 5/12, "feet"),
  39982. default: true
  39983. },
  39984. ]
  39985. ))
  39986. characterMakers.push(() => makeCharacter(
  39987. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  39988. {
  39989. side: {
  39990. height: math.unit(3.2, "earths"),
  39991. name: "Side",
  39992. image: {
  39993. source: "./media/characters/mag/side.svg",
  39994. extra: 1331/1008,
  39995. bottom: 52/1383
  39996. }
  39997. },
  39998. wing: {
  39999. height: math.unit(1.94, "earths"),
  40000. name: "Wing",
  40001. image: {
  40002. source: "./media/characters/mag/wing.svg"
  40003. }
  40004. },
  40005. dick: {
  40006. height: math.unit(1.8, "earths"),
  40007. name: "Dick",
  40008. image: {
  40009. source: "./media/characters/mag/dick.svg"
  40010. }
  40011. },
  40012. ass: {
  40013. height: math.unit(1.33, "earths"),
  40014. name: "Ass",
  40015. image: {
  40016. source: "./media/characters/mag/ass.svg"
  40017. }
  40018. },
  40019. head: {
  40020. height: math.unit(1.1, "earths"),
  40021. name: "Head",
  40022. image: {
  40023. source: "./media/characters/mag/head.svg"
  40024. }
  40025. },
  40026. maw: {
  40027. height: math.unit(1.62, "earths"),
  40028. name: "Maw",
  40029. image: {
  40030. source: "./media/characters/mag/maw.svg"
  40031. }
  40032. },
  40033. },
  40034. [
  40035. {
  40036. name: "Small",
  40037. height: math.unit(162, "feet")
  40038. },
  40039. {
  40040. name: "Normal",
  40041. height: math.unit(3.2, "earths"),
  40042. default: true
  40043. },
  40044. ]
  40045. ))
  40046. characterMakers.push(() => makeCharacter(
  40047. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40048. {
  40049. front: {
  40050. height: math.unit(512, "feet"),
  40051. weight: math.unit(63509, "tonnes"),
  40052. name: "Front",
  40053. image: {
  40054. source: "./media/characters/vorrel-harroc/front.svg",
  40055. extra: 1075/1063,
  40056. bottom: 62/1137
  40057. }
  40058. },
  40059. },
  40060. [
  40061. {
  40062. name: "Normal",
  40063. height: math.unit(10, "feet")
  40064. },
  40065. {
  40066. name: "Macro",
  40067. height: math.unit(512, "feet"),
  40068. default: true
  40069. },
  40070. {
  40071. name: "Megamacro",
  40072. height: math.unit(256, "miles")
  40073. },
  40074. {
  40075. name: "Gigamacro",
  40076. height: math.unit(4096, "miles")
  40077. },
  40078. ]
  40079. ))
  40080. characterMakers.push(() => makeCharacter(
  40081. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40082. {
  40083. side: {
  40084. height: math.unit(50, "feet"),
  40085. name: "Side",
  40086. image: {
  40087. source: "./media/characters/froimar/side.svg",
  40088. extra: 855/638,
  40089. bottom: 99/954
  40090. }
  40091. },
  40092. },
  40093. [
  40094. {
  40095. name: "Macro",
  40096. height: math.unit(50, "feet"),
  40097. default: true
  40098. },
  40099. ]
  40100. ))
  40101. characterMakers.push(() => makeCharacter(
  40102. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40103. {
  40104. front: {
  40105. height: math.unit(210, "miles"),
  40106. name: "Front",
  40107. image: {
  40108. source: "./media/characters/timothy/front.svg",
  40109. extra: 1007/943,
  40110. bottom: 62/1069
  40111. }
  40112. },
  40113. frontSkirt: {
  40114. height: math.unit(210, "miles"),
  40115. name: "Front (Skirt)",
  40116. image: {
  40117. source: "./media/characters/timothy/front-skirt.svg",
  40118. extra: 1007/943,
  40119. bottom: 62/1069
  40120. }
  40121. },
  40122. frontCoat: {
  40123. height: math.unit(210, "miles"),
  40124. name: "Front (Coat)",
  40125. image: {
  40126. source: "./media/characters/timothy/front-coat.svg",
  40127. extra: 1007/943,
  40128. bottom: 62/1069
  40129. }
  40130. },
  40131. },
  40132. [
  40133. {
  40134. name: "Macro",
  40135. height: math.unit(210, "miles"),
  40136. default: true
  40137. },
  40138. {
  40139. name: "Megamacro",
  40140. height: math.unit(210000, "miles")
  40141. },
  40142. ]
  40143. ))
  40144. characterMakers.push(() => makeCharacter(
  40145. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40146. {
  40147. front: {
  40148. height: math.unit(188, "feet"),
  40149. name: "Front",
  40150. image: {
  40151. source: "./media/characters/pyotr/front.svg",
  40152. extra: 1912/1826,
  40153. bottom: 18/1930
  40154. }
  40155. },
  40156. },
  40157. [
  40158. {
  40159. name: "Macro",
  40160. height: math.unit(188, "feet"),
  40161. default: true
  40162. },
  40163. {
  40164. name: "Megamacro",
  40165. height: math.unit(8, "miles")
  40166. },
  40167. ]
  40168. ))
  40169. characterMakers.push(() => makeCharacter(
  40170. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40171. {
  40172. side: {
  40173. height: math.unit(10, "feet"),
  40174. weight: math.unit(4500, "lb"),
  40175. name: "Side",
  40176. image: {
  40177. source: "./media/characters/ackart/side.svg",
  40178. extra: 1776/1668,
  40179. bottom: 116/1892
  40180. }
  40181. },
  40182. },
  40183. [
  40184. {
  40185. name: "Normal",
  40186. height: math.unit(10, "feet"),
  40187. default: true
  40188. },
  40189. ]
  40190. ))
  40191. characterMakers.push(() => makeCharacter(
  40192. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40193. {
  40194. side: {
  40195. height: math.unit(21, "feet"),
  40196. name: "Side",
  40197. image: {
  40198. source: "./media/characters/nolow/side.svg",
  40199. extra: 1484/1434,
  40200. bottom: 85/1569
  40201. }
  40202. },
  40203. sideErect: {
  40204. height: math.unit(21, "feet"),
  40205. name: "Side-erect",
  40206. image: {
  40207. source: "./media/characters/nolow/side-erect.svg",
  40208. extra: 1484/1434,
  40209. bottom: 85/1569
  40210. }
  40211. },
  40212. },
  40213. [
  40214. {
  40215. name: "Regular",
  40216. height: math.unit(12, "feet")
  40217. },
  40218. {
  40219. name: "Big Chee",
  40220. height: math.unit(21, "feet"),
  40221. default: true
  40222. },
  40223. ]
  40224. ))
  40225. characterMakers.push(() => makeCharacter(
  40226. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40227. {
  40228. front: {
  40229. height: math.unit(7, "feet"),
  40230. weight: math.unit(250, "lb"),
  40231. name: "Front",
  40232. image: {
  40233. source: "./media/characters/nines/front.svg",
  40234. extra: 1741/1607,
  40235. bottom: 41/1782
  40236. }
  40237. },
  40238. side: {
  40239. height: math.unit(7, "feet"),
  40240. weight: math.unit(250, "lb"),
  40241. name: "Side",
  40242. image: {
  40243. source: "./media/characters/nines/side.svg",
  40244. extra: 1854/1735,
  40245. bottom: 93/1947
  40246. }
  40247. },
  40248. back: {
  40249. height: math.unit(7, "feet"),
  40250. weight: math.unit(250, "lb"),
  40251. name: "Back",
  40252. image: {
  40253. source: "./media/characters/nines/back.svg",
  40254. extra: 1748/1615,
  40255. bottom: 20/1768
  40256. }
  40257. },
  40258. },
  40259. [
  40260. {
  40261. name: "Megamacro",
  40262. height: math.unit(99, "km"),
  40263. default: true
  40264. },
  40265. ]
  40266. ))
  40267. characterMakers.push(() => makeCharacter(
  40268. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40269. {
  40270. front: {
  40271. height: math.unit(5 + 10/12, "feet"),
  40272. weight: math.unit(210, "lb"),
  40273. name: "Front",
  40274. image: {
  40275. source: "./media/characters/zenith/front.svg",
  40276. extra: 1531/1452,
  40277. bottom: 198/1729
  40278. }
  40279. },
  40280. back: {
  40281. height: math.unit(5 + 10/12, "feet"),
  40282. weight: math.unit(210, "lb"),
  40283. name: "Back",
  40284. image: {
  40285. source: "./media/characters/zenith/back.svg",
  40286. extra: 1571/1487,
  40287. bottom: 75/1646
  40288. }
  40289. },
  40290. },
  40291. [
  40292. {
  40293. name: "Normal",
  40294. height: math.unit(5 + 10/12, "feet"),
  40295. default: true
  40296. }
  40297. ]
  40298. ))
  40299. characterMakers.push(() => makeCharacter(
  40300. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40301. {
  40302. front: {
  40303. height: math.unit(4, "feet"),
  40304. weight: math.unit(60, "lb"),
  40305. name: "Front",
  40306. image: {
  40307. source: "./media/characters/jasper/front.svg",
  40308. extra: 1450/1379,
  40309. bottom: 19/1469
  40310. }
  40311. },
  40312. },
  40313. [
  40314. {
  40315. name: "Normal",
  40316. height: math.unit(4, "feet"),
  40317. default: true
  40318. },
  40319. ]
  40320. ))
  40321. characterMakers.push(() => makeCharacter(
  40322. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40323. {
  40324. front: {
  40325. height: math.unit(6 + 5/12, "feet"),
  40326. weight: math.unit(290, "lb"),
  40327. name: "Front",
  40328. image: {
  40329. source: "./media/characters/tiberius-thyben/front.svg",
  40330. extra: 757/739,
  40331. bottom: 39/796
  40332. }
  40333. },
  40334. },
  40335. [
  40336. {
  40337. name: "Micro",
  40338. height: math.unit(1.5, "inches")
  40339. },
  40340. {
  40341. name: "Normal",
  40342. height: math.unit(6 + 5/12, "feet"),
  40343. default: true
  40344. },
  40345. {
  40346. name: "Macro",
  40347. height: math.unit(300, "feet")
  40348. },
  40349. ]
  40350. ))
  40351. characterMakers.push(() => makeCharacter(
  40352. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40353. {
  40354. front: {
  40355. height: math.unit(5 + 6/12, "feet"),
  40356. weight: math.unit(60, "kg"),
  40357. name: "Front",
  40358. image: {
  40359. source: "./media/characters/sabre/front.svg",
  40360. extra: 738/671,
  40361. bottom: 27/765
  40362. }
  40363. },
  40364. },
  40365. [
  40366. {
  40367. name: "Teeny",
  40368. height: math.unit(2, "inches")
  40369. },
  40370. {
  40371. name: "Smol",
  40372. height: math.unit(8, "inches")
  40373. },
  40374. {
  40375. name: "Normal",
  40376. height: math.unit(5 + 6/12, "feet"),
  40377. default: true
  40378. },
  40379. {
  40380. name: "Mini-Macro",
  40381. height: math.unit(15, "feet")
  40382. },
  40383. {
  40384. name: "Macro",
  40385. height: math.unit(50, "feet")
  40386. },
  40387. ]
  40388. ))
  40389. characterMakers.push(() => makeCharacter(
  40390. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40391. {
  40392. front: {
  40393. height: math.unit(6 + 4/12, "feet"),
  40394. weight: math.unit(170, "lb"),
  40395. name: "Front",
  40396. image: {
  40397. source: "./media/characters/charlie/front.svg",
  40398. extra: 1348/1228,
  40399. bottom: 15/1363
  40400. }
  40401. },
  40402. },
  40403. [
  40404. {
  40405. name: "Macro",
  40406. height: math.unit(1700, "meters"),
  40407. default: true
  40408. },
  40409. {
  40410. name: "MegaMacro",
  40411. height: math.unit(20400, "meters")
  40412. },
  40413. ]
  40414. ))
  40415. characterMakers.push(() => makeCharacter(
  40416. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40417. {
  40418. front: {
  40419. height: math.unit(6 + 3/12, "feet"),
  40420. weight: math.unit(185, "lb"),
  40421. name: "Front",
  40422. image: {
  40423. source: "./media/characters/susan-grant/front.svg",
  40424. extra: 1351/1327,
  40425. bottom: 26/1377
  40426. }
  40427. },
  40428. },
  40429. [
  40430. {
  40431. name: "Normal",
  40432. height: math.unit(6 + 3/12, "feet"),
  40433. default: true
  40434. },
  40435. {
  40436. name: "Macro",
  40437. height: math.unit(225, "feet")
  40438. },
  40439. {
  40440. name: "Macro+",
  40441. height: math.unit(900, "feet")
  40442. },
  40443. {
  40444. name: "MegaMacro",
  40445. height: math.unit(14400, "feet")
  40446. },
  40447. ]
  40448. ))
  40449. characterMakers.push(() => makeCharacter(
  40450. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40451. {
  40452. front: {
  40453. height: math.unit(5 + 4/12, "feet"),
  40454. weight: math.unit(110, "lb"),
  40455. name: "Front",
  40456. image: {
  40457. source: "./media/characters/axel-isanov/front.svg",
  40458. extra: 1096/1065,
  40459. bottom: 13/1109
  40460. }
  40461. },
  40462. },
  40463. [
  40464. {
  40465. name: "Normal",
  40466. height: math.unit(5 + 4/12, "feet"),
  40467. default: true
  40468. },
  40469. ]
  40470. ))
  40471. characterMakers.push(() => makeCharacter(
  40472. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40473. {
  40474. front: {
  40475. height: math.unit(9, "feet"),
  40476. weight: math.unit(467, "lb"),
  40477. name: "Front",
  40478. image: {
  40479. source: "./media/characters/necahual/front.svg",
  40480. extra: 920/873,
  40481. bottom: 26/946
  40482. }
  40483. },
  40484. back: {
  40485. height: math.unit(9, "feet"),
  40486. weight: math.unit(467, "lb"),
  40487. name: "Back",
  40488. image: {
  40489. source: "./media/characters/necahual/back.svg",
  40490. extra: 930/884,
  40491. bottom: 16/946
  40492. }
  40493. },
  40494. frontUnderwear: {
  40495. height: math.unit(9, "feet"),
  40496. weight: math.unit(467, "lb"),
  40497. name: "Front (Underwear)",
  40498. image: {
  40499. source: "./media/characters/necahual/front-underwear.svg",
  40500. extra: 920/873,
  40501. bottom: 26/946
  40502. }
  40503. },
  40504. frontDressed: {
  40505. height: math.unit(9, "feet"),
  40506. weight: math.unit(467, "lb"),
  40507. name: "Front (Dressed)",
  40508. image: {
  40509. source: "./media/characters/necahual/front-dressed.svg",
  40510. extra: 920/873,
  40511. bottom: 26/946
  40512. }
  40513. },
  40514. },
  40515. [
  40516. {
  40517. name: "Comprsesed",
  40518. height: math.unit(9, "feet")
  40519. },
  40520. {
  40521. name: "Natural",
  40522. height: math.unit(15, "feet"),
  40523. default: true
  40524. },
  40525. {
  40526. name: "Boosted",
  40527. height: math.unit(50, "feet")
  40528. },
  40529. {
  40530. name: "Boosted+",
  40531. height: math.unit(150, "feet")
  40532. },
  40533. {
  40534. name: "Max",
  40535. height: math.unit(500, "feet")
  40536. },
  40537. ]
  40538. ))
  40539. characterMakers.push(() => makeCharacter(
  40540. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40541. {
  40542. front: {
  40543. height: math.unit(22 + 1/12, "feet"),
  40544. weight: math.unit(3200, "lb"),
  40545. name: "Front",
  40546. image: {
  40547. source: "./media/characters/theo-acacia/front.svg",
  40548. extra: 1796/1741,
  40549. bottom: 83/1879
  40550. }
  40551. },
  40552. frontUnderwear: {
  40553. height: math.unit(22 + 1/12, "feet"),
  40554. weight: math.unit(3200, "lb"),
  40555. name: "Front (Underwear)",
  40556. image: {
  40557. source: "./media/characters/theo-acacia/front-underwear.svg",
  40558. extra: 1796/1741,
  40559. bottom: 83/1879
  40560. }
  40561. },
  40562. frontNude: {
  40563. height: math.unit(22 + 1/12, "feet"),
  40564. weight: math.unit(3200, "lb"),
  40565. name: "Front (Nude)",
  40566. image: {
  40567. source: "./media/characters/theo-acacia/front-nude.svg",
  40568. extra: 1796/1741,
  40569. bottom: 83/1879
  40570. }
  40571. },
  40572. },
  40573. [
  40574. {
  40575. name: "Normal",
  40576. height: math.unit(22 + 1/12, "feet"),
  40577. default: true
  40578. },
  40579. ]
  40580. ))
  40581. characterMakers.push(() => makeCharacter(
  40582. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40583. {
  40584. front: {
  40585. height: math.unit(20, "feet"),
  40586. name: "Front",
  40587. image: {
  40588. source: "./media/characters/astra/front.svg",
  40589. extra: 1850/1714,
  40590. bottom: 106/1956
  40591. }
  40592. },
  40593. frontUndressed: {
  40594. height: math.unit(20, "feet"),
  40595. name: "Front (Undressed)",
  40596. image: {
  40597. source: "./media/characters/astra/front-undressed.svg",
  40598. extra: 1926/1749,
  40599. bottom: 0/1926
  40600. }
  40601. },
  40602. hand: {
  40603. height: math.unit(1.53, "feet"),
  40604. name: "Hand",
  40605. image: {
  40606. source: "./media/characters/astra/hand.svg"
  40607. }
  40608. },
  40609. paw: {
  40610. height: math.unit(1.53, "feet"),
  40611. name: "Paw",
  40612. image: {
  40613. source: "./media/characters/astra/paw.svg"
  40614. }
  40615. },
  40616. },
  40617. [
  40618. {
  40619. name: "Smallest",
  40620. height: math.unit(20, "feet")
  40621. },
  40622. {
  40623. name: "Normal",
  40624. height: math.unit(1e9, "miles"),
  40625. default: true
  40626. },
  40627. {
  40628. name: "Larger",
  40629. height: math.unit(5, "multiverses")
  40630. },
  40631. {
  40632. name: "Largest",
  40633. height: math.unit(1e9, "multiverses")
  40634. },
  40635. ]
  40636. ))
  40637. characterMakers.push(() => makeCharacter(
  40638. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40639. {
  40640. front: {
  40641. height: math.unit(8, "feet"),
  40642. name: "Front",
  40643. image: {
  40644. source: "./media/characters/breanna/front.svg",
  40645. extra: 1912/1632,
  40646. bottom: 33/1945
  40647. }
  40648. },
  40649. },
  40650. [
  40651. {
  40652. name: "Smallest",
  40653. height: math.unit(8, "feet")
  40654. },
  40655. {
  40656. name: "Normal",
  40657. height: math.unit(1, "mile"),
  40658. default: true
  40659. },
  40660. {
  40661. name: "Maximum",
  40662. height: math.unit(1500000000000, "lightyears")
  40663. },
  40664. ]
  40665. ))
  40666. characterMakers.push(() => makeCharacter(
  40667. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  40668. {
  40669. front: {
  40670. height: math.unit(5 + 11/12, "feet"),
  40671. weight: math.unit(155, "lb"),
  40672. name: "Front",
  40673. image: {
  40674. source: "./media/characters/cai/front.svg",
  40675. extra: 1823/1702,
  40676. bottom: 32/1855
  40677. }
  40678. },
  40679. back: {
  40680. height: math.unit(5 + 11/12, "feet"),
  40681. weight: math.unit(155, "lb"),
  40682. name: "Back",
  40683. image: {
  40684. source: "./media/characters/cai/back.svg",
  40685. extra: 1809/1708,
  40686. bottom: 31/1840
  40687. }
  40688. },
  40689. },
  40690. [
  40691. {
  40692. name: "Normal",
  40693. height: math.unit(5 + 11/12, "feet"),
  40694. default: true
  40695. },
  40696. {
  40697. name: "Big",
  40698. height: math.unit(15, "feet")
  40699. },
  40700. {
  40701. name: "Macro",
  40702. height: math.unit(200, "feet")
  40703. },
  40704. ]
  40705. ))
  40706. characterMakers.push(() => makeCharacter(
  40707. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  40708. {
  40709. front: {
  40710. height: math.unit(5 + 6/12, "feet"),
  40711. weight: math.unit(160, "lb"),
  40712. name: "Front",
  40713. image: {
  40714. source: "./media/characters/zanna-virtuedòttir/front.svg",
  40715. extra: 1227/1174,
  40716. bottom: 37/1264
  40717. }
  40718. },
  40719. },
  40720. [
  40721. {
  40722. name: "Macro",
  40723. height: math.unit(444, "meters"),
  40724. default: true
  40725. },
  40726. ]
  40727. ))
  40728. characterMakers.push(() => makeCharacter(
  40729. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  40730. {
  40731. front: {
  40732. height: math.unit(18 + 7/12, "feet"),
  40733. name: "Front",
  40734. image: {
  40735. source: "./media/characters/rex/front.svg",
  40736. extra: 1941/1807,
  40737. bottom: 66/2007
  40738. }
  40739. },
  40740. back: {
  40741. height: math.unit(18 + 7/12, "feet"),
  40742. name: "Back",
  40743. image: {
  40744. source: "./media/characters/rex/back.svg",
  40745. extra: 1937/1822,
  40746. bottom: 42/1979
  40747. }
  40748. },
  40749. boot: {
  40750. height: math.unit(3.45, "feet"),
  40751. name: "Boot",
  40752. image: {
  40753. source: "./media/characters/rex/boot.svg"
  40754. }
  40755. },
  40756. paw: {
  40757. height: math.unit(4.17, "feet"),
  40758. name: "Paw",
  40759. image: {
  40760. source: "./media/characters/rex/paw.svg"
  40761. }
  40762. },
  40763. head: {
  40764. height: math.unit(6.728, "feet"),
  40765. name: "Head",
  40766. image: {
  40767. source: "./media/characters/rex/head.svg"
  40768. }
  40769. },
  40770. },
  40771. [
  40772. {
  40773. name: "Nano",
  40774. height: math.unit(18 + 7/12, "feet")
  40775. },
  40776. {
  40777. name: "Micro",
  40778. height: math.unit(1.5, "megameters")
  40779. },
  40780. {
  40781. name: "Normal",
  40782. height: math.unit(440, "megameters"),
  40783. default: true
  40784. },
  40785. {
  40786. name: "Macro",
  40787. height: math.unit(2.5, "gigameters")
  40788. },
  40789. {
  40790. name: "Gigamacro",
  40791. height: math.unit(2, "galaxies")
  40792. },
  40793. ]
  40794. ))
  40795. characterMakers.push(() => makeCharacter(
  40796. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  40797. {
  40798. side: {
  40799. height: math.unit(32, "feet"),
  40800. weight: math.unit(250000, "lb"),
  40801. name: "Side",
  40802. image: {
  40803. source: "./media/characters/silverwing/side.svg",
  40804. extra: 1100/1019,
  40805. bottom: 204/1304
  40806. }
  40807. },
  40808. },
  40809. [
  40810. {
  40811. name: "Normal",
  40812. height: math.unit(32, "feet"),
  40813. default: true
  40814. },
  40815. ]
  40816. ))
  40817. characterMakers.push(() => makeCharacter(
  40818. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  40819. {
  40820. front: {
  40821. height: math.unit(6 + 6/12, "feet"),
  40822. weight: math.unit(350, "lb"),
  40823. name: "Front",
  40824. image: {
  40825. source: "./media/characters/tristan-hawthorne/front.svg",
  40826. extra: 1159/1124,
  40827. bottom: 37/1196
  40828. }
  40829. },
  40830. },
  40831. [
  40832. {
  40833. name: "Normal",
  40834. height: math.unit(6 + 6/12, "feet"),
  40835. default: true
  40836. },
  40837. ]
  40838. ))
  40839. characterMakers.push(() => makeCharacter(
  40840. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  40841. {
  40842. front: {
  40843. height: math.unit(5 + 11/12, "feet"),
  40844. weight: math.unit(190, "lb"),
  40845. name: "Front",
  40846. image: {
  40847. source: "./media/characters/mizu/front.svg",
  40848. extra: 1988/1788,
  40849. bottom: 14/2002
  40850. }
  40851. },
  40852. },
  40853. [
  40854. {
  40855. name: "Normal",
  40856. height: math.unit(5 + 11/12, "feet"),
  40857. default: true
  40858. },
  40859. ]
  40860. ))
  40861. characterMakers.push(() => makeCharacter(
  40862. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  40863. {
  40864. front: {
  40865. height: math.unit(6, "feet"),
  40866. name: "Front",
  40867. image: {
  40868. source: "./media/characters/moonlight-rose-terra/front.svg",
  40869. extra: 1434/1252,
  40870. bottom: 48/1482
  40871. }
  40872. },
  40873. },
  40874. [
  40875. {
  40876. name: "TRAPPIST-1D",
  40877. height: math.unit(4992*2, "km")
  40878. },
  40879. {
  40880. name: "Earth",
  40881. height: math.unit(6367*2, "km"),
  40882. default: true
  40883. },
  40884. {
  40885. name: "Kepler-22b",
  40886. height: math.unit(15282*2, "km")
  40887. },
  40888. ]
  40889. ))
  40890. characterMakers.push(() => makeCharacter(
  40891. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  40892. {
  40893. front: {
  40894. height: math.unit(6, "feet"),
  40895. name: "Front",
  40896. image: {
  40897. source: "./media/characters/moonlight-rose-neptune/front.svg",
  40898. extra: 1851/1712,
  40899. bottom: 0/1851
  40900. }
  40901. },
  40902. },
  40903. [
  40904. {
  40905. name: "Enceladus",
  40906. height: math.unit(513*2, "km")
  40907. },
  40908. {
  40909. name: "Europe",
  40910. height: math.unit(1560*2, "km")
  40911. },
  40912. {
  40913. name: "Neptune",
  40914. height: math.unit(24622*2, "km"),
  40915. default: true
  40916. },
  40917. {
  40918. name: "CoRoT-9b",
  40919. height: math.unit(75067*2, "km")
  40920. },
  40921. ]
  40922. ))
  40923. characterMakers.push(() => makeCharacter(
  40924. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  40925. {
  40926. front: {
  40927. height: math.unit(6, "feet"),
  40928. name: "Front",
  40929. image: {
  40930. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  40931. extra: 1367/1286,
  40932. bottom: 55/1422
  40933. }
  40934. },
  40935. },
  40936. [
  40937. {
  40938. name: "Saturn",
  40939. height: math.unit(58232*2, "km")
  40940. },
  40941. {
  40942. name: "Jupiter",
  40943. height: math.unit(69911*2, "km"),
  40944. default: true
  40945. },
  40946. {
  40947. name: "HD 100546 b",
  40948. height: math.unit(482938, "km")
  40949. },
  40950. ]
  40951. ))
  40952. characterMakers.push(() => makeCharacter(
  40953. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  40954. {
  40955. front: {
  40956. height: math.unit(1.7, "feet"),
  40957. weight: math.unit(50, "lb"),
  40958. name: "Front",
  40959. image: {
  40960. source: "./media/characters/dechroma/front.svg",
  40961. extra: 1095/859,
  40962. bottom: 64/1159
  40963. }
  40964. },
  40965. },
  40966. [
  40967. {
  40968. name: "Normal",
  40969. height: math.unit(1.7, "feet"),
  40970. default: true
  40971. },
  40972. ]
  40973. ))
  40974. characterMakers.push(() => makeCharacter(
  40975. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  40976. {
  40977. side: {
  40978. height: math.unit(30, "feet"),
  40979. name: "Side",
  40980. image: {
  40981. source: "./media/characters/veluren-thanazel/side.svg",
  40982. extra: 1611/633,
  40983. bottom: 118/1729
  40984. }
  40985. },
  40986. front: {
  40987. height: math.unit(30, "feet"),
  40988. name: "Front",
  40989. image: {
  40990. source: "./media/characters/veluren-thanazel/front.svg",
  40991. extra: 1486/636,
  40992. bottom: 238/1724
  40993. }
  40994. },
  40995. head: {
  40996. height: math.unit(21.4, "feet"),
  40997. name: "Head",
  40998. image: {
  40999. source: "./media/characters/veluren-thanazel/head.svg"
  41000. }
  41001. },
  41002. genitals: {
  41003. height: math.unit(19.4, "feet"),
  41004. name: "Genitals",
  41005. image: {
  41006. source: "./media/characters/veluren-thanazel/genitals.svg"
  41007. }
  41008. },
  41009. },
  41010. [
  41011. {
  41012. name: "Social",
  41013. height: math.unit(6, "feet")
  41014. },
  41015. {
  41016. name: "Play",
  41017. height: math.unit(12, "feet")
  41018. },
  41019. {
  41020. name: "True",
  41021. height: math.unit(30, "feet"),
  41022. default: true
  41023. },
  41024. ]
  41025. ))
  41026. characterMakers.push(() => makeCharacter(
  41027. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41028. {
  41029. front: {
  41030. height: math.unit(7 + 6/12, "feet"),
  41031. weight: math.unit(500, "kg"),
  41032. name: "Front",
  41033. image: {
  41034. source: "./media/characters/arcturas/front.svg",
  41035. extra: 1700/1500,
  41036. bottom: 145/1845
  41037. }
  41038. },
  41039. },
  41040. [
  41041. {
  41042. name: "Normal",
  41043. height: math.unit(7 + 6/12, "feet"),
  41044. default: true
  41045. },
  41046. ]
  41047. ))
  41048. characterMakers.push(() => makeCharacter(
  41049. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41050. {
  41051. side: {
  41052. height: math.unit(6, "feet"),
  41053. weight: math.unit(2, "tons"),
  41054. name: "Side",
  41055. image: {
  41056. source: "./media/characters/vitaen/side.svg",
  41057. extra: 1157/617,
  41058. bottom: 122/1279
  41059. }
  41060. },
  41061. },
  41062. [
  41063. {
  41064. name: "Normal",
  41065. height: math.unit(6, "feet"),
  41066. default: true
  41067. },
  41068. ]
  41069. ))
  41070. characterMakers.push(() => makeCharacter(
  41071. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41072. {
  41073. front: {
  41074. height: math.unit(19, "feet"),
  41075. name: "Front",
  41076. image: {
  41077. source: "./media/characters/fia-dreamweaver/front.svg",
  41078. extra: 1630/1504,
  41079. bottom: 25/1655
  41080. }
  41081. },
  41082. },
  41083. [
  41084. {
  41085. name: "Normal",
  41086. height: math.unit(19, "feet"),
  41087. default: true
  41088. },
  41089. ]
  41090. ))
  41091. characterMakers.push(() => makeCharacter(
  41092. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41093. {
  41094. front: {
  41095. height: math.unit(5 + 4/12, "feet"),
  41096. name: "Front",
  41097. image: {
  41098. source: "./media/characters/artan/front.svg",
  41099. extra: 1618/1535,
  41100. bottom: 46/1664
  41101. }
  41102. },
  41103. back: {
  41104. height: math.unit(5 + 4/12, "feet"),
  41105. name: "Back",
  41106. image: {
  41107. source: "./media/characters/artan/back.svg",
  41108. extra: 1618/1543,
  41109. bottom: 31/1649
  41110. }
  41111. },
  41112. },
  41113. [
  41114. {
  41115. name: "Normal",
  41116. height: math.unit(5 + 4/12, "feet"),
  41117. default: true
  41118. },
  41119. ]
  41120. ))
  41121. characterMakers.push(() => makeCharacter(
  41122. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41123. {
  41124. side: {
  41125. height: math.unit(182, "cm"),
  41126. weight: math.unit(1000, "lb"),
  41127. name: "Side",
  41128. image: {
  41129. source: "./media/characters/silver-dragon/side.svg",
  41130. extra: 710/287,
  41131. bottom: 88/798
  41132. }
  41133. },
  41134. },
  41135. [
  41136. {
  41137. name: "Normal",
  41138. height: math.unit(182, "cm"),
  41139. default: true
  41140. },
  41141. ]
  41142. ))
  41143. characterMakers.push(() => makeCharacter(
  41144. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41145. {
  41146. side: {
  41147. height: math.unit(6 + 6/12, "feet"),
  41148. weight: math.unit(1.5, "tons"),
  41149. name: "Side",
  41150. image: {
  41151. source: "./media/characters/zephyr/side.svg",
  41152. extra: 1433/586,
  41153. bottom: 109/1542
  41154. }
  41155. },
  41156. },
  41157. [
  41158. {
  41159. name: "Normal",
  41160. height: math.unit(6 + 6/12, "feet"),
  41161. default: true
  41162. },
  41163. ]
  41164. ))
  41165. characterMakers.push(() => makeCharacter(
  41166. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41167. {
  41168. side: {
  41169. height: math.unit(1, "feet"),
  41170. name: "Side",
  41171. image: {
  41172. source: "./media/characters/vixye/side.svg",
  41173. extra: 632/541,
  41174. bottom: 0/632
  41175. }
  41176. },
  41177. },
  41178. [
  41179. {
  41180. name: "Normal",
  41181. height: math.unit(1, "feet"),
  41182. default: true
  41183. },
  41184. {
  41185. name: "True",
  41186. height: math.unit(1e15, "multiverses")
  41187. },
  41188. ]
  41189. ))
  41190. characterMakers.push(() => makeCharacter(
  41191. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41192. {
  41193. front: {
  41194. height: math.unit(8 + 2/12, "feet"),
  41195. weight: math.unit(650, "lb"),
  41196. name: "Front",
  41197. image: {
  41198. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41199. extra: 1174/1137,
  41200. bottom: 82/1256
  41201. }
  41202. },
  41203. back: {
  41204. height: math.unit(8 + 2/12, "feet"),
  41205. weight: math.unit(650, "lb"),
  41206. name: "Back",
  41207. image: {
  41208. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41209. extra: 1204/1157,
  41210. bottom: 46/1250
  41211. }
  41212. },
  41213. },
  41214. [
  41215. {
  41216. name: "Wildform",
  41217. height: math.unit(8 + 2/12, "feet"),
  41218. default: true
  41219. },
  41220. ]
  41221. ))
  41222. characterMakers.push(() => makeCharacter(
  41223. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41224. {
  41225. front: {
  41226. height: math.unit(18, "feet"),
  41227. name: "Front",
  41228. image: {
  41229. source: "./media/characters/cyphin/front.svg",
  41230. extra: 970/886,
  41231. bottom: 42/1012
  41232. }
  41233. },
  41234. back: {
  41235. height: math.unit(18, "feet"),
  41236. name: "Back",
  41237. image: {
  41238. source: "./media/characters/cyphin/back.svg",
  41239. extra: 1009/894,
  41240. bottom: 24/1033
  41241. }
  41242. },
  41243. head: {
  41244. height: math.unit(5.05, "feet"),
  41245. name: "Head",
  41246. image: {
  41247. source: "./media/characters/cyphin/head.svg"
  41248. }
  41249. },
  41250. tailbud: {
  41251. height: math.unit(5, "feet"),
  41252. name: "Tailbud",
  41253. image: {
  41254. source: "./media/characters/cyphin/tailbud.svg"
  41255. }
  41256. },
  41257. },
  41258. [
  41259. ]
  41260. ))
  41261. characterMakers.push(() => makeCharacter(
  41262. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41263. {
  41264. side: {
  41265. height: math.unit(10, "feet"),
  41266. weight: math.unit(6, "tons"),
  41267. name: "Side",
  41268. image: {
  41269. source: "./media/characters/raijin/side.svg",
  41270. extra: 1529/613,
  41271. bottom: 337/1866
  41272. }
  41273. },
  41274. },
  41275. [
  41276. {
  41277. name: "Normal",
  41278. height: math.unit(10, "feet"),
  41279. default: true
  41280. },
  41281. ]
  41282. ))
  41283. characterMakers.push(() => makeCharacter(
  41284. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41285. {
  41286. side: {
  41287. height: math.unit(9, "feet"),
  41288. name: "Side",
  41289. image: {
  41290. source: "./media/characters/nilghais/side.svg",
  41291. extra: 1047/744,
  41292. bottom: 91/1138
  41293. }
  41294. },
  41295. head: {
  41296. height: math.unit(3.14, "feet"),
  41297. name: "Head",
  41298. image: {
  41299. source: "./media/characters/nilghais/head.svg"
  41300. }
  41301. },
  41302. mouth: {
  41303. height: math.unit(4.6, "feet"),
  41304. name: "Mouth",
  41305. image: {
  41306. source: "./media/characters/nilghais/mouth.svg"
  41307. }
  41308. },
  41309. wings: {
  41310. height: math.unit(24, "feet"),
  41311. name: "Wings",
  41312. image: {
  41313. source: "./media/characters/nilghais/wings.svg"
  41314. }
  41315. },
  41316. ass: {
  41317. height: math.unit(6.12, "feet"),
  41318. name: "Ass",
  41319. image: {
  41320. source: "./media/characters/nilghais/ass.svg"
  41321. }
  41322. },
  41323. },
  41324. [
  41325. {
  41326. name: "Normal",
  41327. height: math.unit(9, "feet"),
  41328. default: true
  41329. },
  41330. ]
  41331. ))
  41332. characterMakers.push(() => makeCharacter(
  41333. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41334. {
  41335. regular: {
  41336. height: math.unit(16 + 2/12, "feet"),
  41337. weight: math.unit(2300, "lb"),
  41338. name: "Regular",
  41339. image: {
  41340. source: "./media/characters/zolgar/regular.svg",
  41341. extra: 1246/1004,
  41342. bottom: 124/1370
  41343. }
  41344. },
  41345. boxers: {
  41346. height: math.unit(16 + 2/12, "feet"),
  41347. weight: math.unit(2300, "lb"),
  41348. name: "Boxers",
  41349. image: {
  41350. source: "./media/characters/zolgar/boxers.svg",
  41351. extra: 1246/1004,
  41352. bottom: 124/1370
  41353. }
  41354. },
  41355. armored: {
  41356. height: math.unit(16 + 2/12, "feet"),
  41357. weight: math.unit(2300, "lb"),
  41358. name: "Armored",
  41359. image: {
  41360. source: "./media/characters/zolgar/armored.svg",
  41361. extra: 1246/1004,
  41362. bottom: 124/1370
  41363. }
  41364. },
  41365. goth: {
  41366. height: math.unit(16 + 2/12, "feet"),
  41367. weight: math.unit(2300, "lb"),
  41368. name: "Goth",
  41369. image: {
  41370. source: "./media/characters/zolgar/goth.svg",
  41371. extra: 1246/1004,
  41372. bottom: 124/1370
  41373. }
  41374. },
  41375. },
  41376. [
  41377. {
  41378. name: "Shrunken Down",
  41379. height: math.unit(9 + 2/12, "feet")
  41380. },
  41381. {
  41382. name: "Normal",
  41383. height: math.unit(16 + 2/12, "feet"),
  41384. default: true
  41385. },
  41386. ]
  41387. ))
  41388. characterMakers.push(() => makeCharacter(
  41389. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41390. {
  41391. front: {
  41392. height: math.unit(6, "feet"),
  41393. weight: math.unit(168, "lb"),
  41394. name: "Front",
  41395. image: {
  41396. source: "./media/characters/luca/front.svg",
  41397. extra: 841/667,
  41398. bottom: 102/943
  41399. }
  41400. },
  41401. },
  41402. [
  41403. {
  41404. name: "Normal",
  41405. height: math.unit(6, "feet"),
  41406. default: true
  41407. },
  41408. ]
  41409. ))
  41410. characterMakers.push(() => makeCharacter(
  41411. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41412. {
  41413. side: {
  41414. height: math.unit(7 + 3/12, "feet"),
  41415. weight: math.unit(312, "lb"),
  41416. name: "Side",
  41417. image: {
  41418. source: "./media/characters/zezo/side.svg",
  41419. extra: 1192/1067,
  41420. bottom: 63/1255
  41421. }
  41422. },
  41423. },
  41424. [
  41425. {
  41426. name: "Normal",
  41427. height: math.unit(7 + 3/12, "feet"),
  41428. default: true
  41429. },
  41430. ]
  41431. ))
  41432. characterMakers.push(() => makeCharacter(
  41433. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41434. {
  41435. front: {
  41436. height: math.unit(5 + 5/12, "feet"),
  41437. weight: math.unit(170, "lb"),
  41438. name: "Front",
  41439. image: {
  41440. source: "./media/characters/mayso/front.svg",
  41441. extra: 1215/1108,
  41442. bottom: 16/1231
  41443. }
  41444. },
  41445. },
  41446. [
  41447. {
  41448. name: "Normal",
  41449. height: math.unit(5 + 5/12, "feet"),
  41450. default: true
  41451. },
  41452. ]
  41453. ))
  41454. characterMakers.push(() => makeCharacter(
  41455. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41456. {
  41457. front: {
  41458. height: math.unit(4 + 3/12, "feet"),
  41459. weight: math.unit(80, "lb"),
  41460. name: "Front",
  41461. image: {
  41462. source: "./media/characters/hess/front.svg",
  41463. extra: 1200/1123,
  41464. bottom: 16/1216
  41465. }
  41466. },
  41467. },
  41468. [
  41469. {
  41470. name: "Normal",
  41471. height: math.unit(4 + 3/12, "feet"),
  41472. default: true
  41473. },
  41474. ]
  41475. ))
  41476. characterMakers.push(() => makeCharacter(
  41477. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41478. {
  41479. front: {
  41480. height: math.unit(1.9, "meters"),
  41481. name: "Front",
  41482. image: {
  41483. source: "./media/characters/ashgar/front.svg",
  41484. extra: 1177/1146,
  41485. bottom: 99/1276
  41486. }
  41487. },
  41488. back: {
  41489. height: math.unit(1.9, "meters"),
  41490. name: "Back",
  41491. image: {
  41492. source: "./media/characters/ashgar/back.svg",
  41493. extra: 1201/1183,
  41494. bottom: 53/1254
  41495. }
  41496. },
  41497. feral: {
  41498. height: math.unit(1.4, "meters"),
  41499. name: "Feral",
  41500. image: {
  41501. source: "./media/characters/ashgar/feral.svg",
  41502. extra: 370/345,
  41503. bottom: 45/415
  41504. }
  41505. },
  41506. },
  41507. [
  41508. {
  41509. name: "Normal",
  41510. height: math.unit(1.9, "meters"),
  41511. default: true
  41512. },
  41513. ]
  41514. ))
  41515. characterMakers.push(() => makeCharacter(
  41516. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  41517. {
  41518. regular: {
  41519. height: math.unit(6, "feet"),
  41520. weight: math.unit(220, "lb"),
  41521. name: "Regular",
  41522. image: {
  41523. source: "./media/characters/phillip/regular.svg",
  41524. extra: 1373/1277,
  41525. bottom: 75/1448
  41526. }
  41527. },
  41528. dressed: {
  41529. height: math.unit(6, "feet"),
  41530. weight: math.unit(220, "lb"),
  41531. name: "Dressed",
  41532. image: {
  41533. source: "./media/characters/phillip/dressed.svg",
  41534. extra: 1373/1277,
  41535. bottom: 75/1448
  41536. }
  41537. },
  41538. paw: {
  41539. height: math.unit(1.44, "feet"),
  41540. name: "Paw",
  41541. image: {
  41542. source: "./media/characters/phillip/paw.svg"
  41543. }
  41544. },
  41545. },
  41546. [
  41547. {
  41548. name: "Normal",
  41549. height: math.unit(6, "feet"),
  41550. default: true
  41551. },
  41552. ]
  41553. ))
  41554. characterMakers.push(() => makeCharacter(
  41555. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  41556. {
  41557. side: {
  41558. height: math.unit(42, "feet"),
  41559. name: "Side",
  41560. image: {
  41561. source: "./media/characters/uvula/side.svg",
  41562. extra: 683/586,
  41563. bottom: 60/743
  41564. }
  41565. },
  41566. front: {
  41567. height: math.unit(42, "feet"),
  41568. name: "Front",
  41569. image: {
  41570. source: "./media/characters/uvula/front.svg",
  41571. extra: 705/613,
  41572. bottom: 54/759
  41573. }
  41574. },
  41575. maw: {
  41576. height: math.unit(23.5, "feet"),
  41577. name: "Maw",
  41578. image: {
  41579. source: "./media/characters/uvula/maw.svg"
  41580. }
  41581. },
  41582. },
  41583. [
  41584. {
  41585. name: "Original Size",
  41586. height: math.unit(14, "inches")
  41587. },
  41588. {
  41589. name: "Human Size",
  41590. height: math.unit(6, "feet")
  41591. },
  41592. {
  41593. name: "Big",
  41594. height: math.unit(42, "feet"),
  41595. default: true
  41596. },
  41597. {
  41598. name: "Bigger",
  41599. height: math.unit(100, "feet")
  41600. },
  41601. ]
  41602. ))
  41603. characterMakers.push(() => makeCharacter(
  41604. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  41605. {
  41606. front: {
  41607. height: math.unit(5 + 11/12, "feet"),
  41608. name: "Front",
  41609. image: {
  41610. source: "./media/characters/lannah/front.svg",
  41611. extra: 1208/1113,
  41612. bottom: 97/1305
  41613. }
  41614. },
  41615. },
  41616. [
  41617. {
  41618. name: "Normal",
  41619. height: math.unit(5 + 11/12, "feet"),
  41620. default: true
  41621. },
  41622. ]
  41623. ))
  41624. characterMakers.push(() => makeCharacter(
  41625. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  41626. {
  41627. front: {
  41628. height: math.unit(6 + 3/12, "feet"),
  41629. weight: math.unit(3.5, "tons"),
  41630. name: "Front",
  41631. image: {
  41632. source: "./media/characters/emberflame/front.svg",
  41633. extra: 1198/672,
  41634. bottom: 82/1280
  41635. }
  41636. },
  41637. side: {
  41638. height: math.unit(6 + 3/12, "feet"),
  41639. weight: math.unit(3.5, "tons"),
  41640. name: "Side",
  41641. image: {
  41642. source: "./media/characters/emberflame/side.svg",
  41643. extra: 938/527,
  41644. bottom: 56/994
  41645. }
  41646. },
  41647. },
  41648. [
  41649. {
  41650. name: "Normal",
  41651. height: math.unit(6 + 3/12, "feet"),
  41652. default: true
  41653. },
  41654. ]
  41655. ))
  41656. characterMakers.push(() => makeCharacter(
  41657. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  41658. {
  41659. side: {
  41660. height: math.unit(17.5, "feet"),
  41661. weight: math.unit(35, "tons"),
  41662. name: "Side",
  41663. image: {
  41664. source: "./media/characters/sophie-ambrose/side.svg",
  41665. extra: 1573/1242,
  41666. bottom: 71/1644
  41667. }
  41668. },
  41669. maw: {
  41670. height: math.unit(7.4, "feet"),
  41671. name: "Maw",
  41672. image: {
  41673. source: "./media/characters/sophie-ambrose/maw.svg"
  41674. }
  41675. },
  41676. },
  41677. [
  41678. {
  41679. name: "Normal",
  41680. height: math.unit(17.5, "feet"),
  41681. default: true
  41682. },
  41683. ]
  41684. ))
  41685. characterMakers.push(() => makeCharacter(
  41686. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  41687. {
  41688. front: {
  41689. height: math.unit(280, "feet"),
  41690. weight: math.unit(550, "tons"),
  41691. name: "Front",
  41692. image: {
  41693. source: "./media/characters/king-mugi/front.svg",
  41694. extra: 1102/947,
  41695. bottom: 104/1206
  41696. }
  41697. },
  41698. },
  41699. [
  41700. {
  41701. name: "King Mugi",
  41702. height: math.unit(280, "feet"),
  41703. default: true
  41704. },
  41705. ]
  41706. ))
  41707. characterMakers.push(() => makeCharacter(
  41708. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  41709. {
  41710. front: {
  41711. height: math.unit(64, "meters"),
  41712. name: "Front",
  41713. image: {
  41714. source: "./media/characters/nova-fox/front.svg",
  41715. extra: 1310/1246,
  41716. bottom: 65/1375
  41717. }
  41718. },
  41719. },
  41720. [
  41721. {
  41722. name: "Macro",
  41723. height: math.unit(64, "meters"),
  41724. default: true
  41725. },
  41726. ]
  41727. ))
  41728. characterMakers.push(() => makeCharacter(
  41729. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  41730. {
  41731. front: {
  41732. height: math.unit(6 + 3/12, "feet"),
  41733. weight: math.unit(170, "lb"),
  41734. name: "Front",
  41735. image: {
  41736. source: "./media/characters/sam-bat/front.svg",
  41737. extra: 1601/1411,
  41738. bottom: 125/1726
  41739. }
  41740. },
  41741. back: {
  41742. height: math.unit(6 + 3/12, "feet"),
  41743. weight: math.unit(170, "lb"),
  41744. name: "Back",
  41745. image: {
  41746. source: "./media/characters/sam-bat/back.svg",
  41747. extra: 1577/1405,
  41748. bottom: 58/1635
  41749. }
  41750. },
  41751. },
  41752. [
  41753. {
  41754. name: "Normal",
  41755. height: math.unit(6 + 3/12, "feet"),
  41756. default: true
  41757. },
  41758. ]
  41759. ))
  41760. characterMakers.push(() => makeCharacter(
  41761. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  41762. {
  41763. front: {
  41764. height: math.unit(59, "feet"),
  41765. weight: math.unit(40000, "lb"),
  41766. name: "Front",
  41767. image: {
  41768. source: "./media/characters/inari/front.svg",
  41769. extra: 1884/1350,
  41770. bottom: 95/1979
  41771. }
  41772. },
  41773. },
  41774. [
  41775. {
  41776. name: "Gigantamax",
  41777. height: math.unit(59, "feet"),
  41778. default: true
  41779. },
  41780. ]
  41781. ))
  41782. characterMakers.push(() => makeCharacter(
  41783. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  41784. {
  41785. front: {
  41786. height: math.unit(5 + 8/12, "feet"),
  41787. name: "Front",
  41788. image: {
  41789. source: "./media/characters/elizabeth/front.svg",
  41790. extra: 1395/1298,
  41791. bottom: 54/1449
  41792. }
  41793. },
  41794. mouth: {
  41795. height: math.unit(1.97, "feet"),
  41796. name: "Mouth",
  41797. image: {
  41798. source: "./media/characters/elizabeth/mouth.svg"
  41799. }
  41800. },
  41801. foot: {
  41802. height: math.unit(1.17, "feet"),
  41803. name: "Foot",
  41804. image: {
  41805. source: "./media/characters/elizabeth/foot.svg"
  41806. }
  41807. },
  41808. },
  41809. [
  41810. {
  41811. name: "Normal",
  41812. height: math.unit(5 + 8/12, "feet"),
  41813. default: true
  41814. },
  41815. {
  41816. name: "Minimacro",
  41817. height: math.unit(18, "feet")
  41818. },
  41819. {
  41820. name: "Macro",
  41821. height: math.unit(180, "feet")
  41822. },
  41823. ]
  41824. ))
  41825. characterMakers.push(() => makeCharacter(
  41826. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  41827. {
  41828. front: {
  41829. height: math.unit(5 + 2/12, "feet"),
  41830. name: "Front",
  41831. image: {
  41832. source: "./media/characters/october-gossamer/front.svg",
  41833. extra: 505/454,
  41834. bottom: 7/512
  41835. }
  41836. },
  41837. back: {
  41838. height: math.unit(5 + 2/12, "feet"),
  41839. name: "Back",
  41840. image: {
  41841. source: "./media/characters/october-gossamer/back.svg",
  41842. extra: 501/454,
  41843. bottom: 11/512
  41844. }
  41845. },
  41846. },
  41847. [
  41848. {
  41849. name: "Normal",
  41850. height: math.unit(5 + 2/12, "feet"),
  41851. default: true
  41852. },
  41853. ]
  41854. ))
  41855. characterMakers.push(() => makeCharacter(
  41856. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  41857. {
  41858. front: {
  41859. height: math.unit(5, "feet"),
  41860. name: "Front",
  41861. image: {
  41862. source: "./media/characters/epiglottis/front.svg",
  41863. extra: 923/849,
  41864. bottom: 17/940
  41865. }
  41866. },
  41867. },
  41868. [
  41869. {
  41870. name: "Original Size",
  41871. height: math.unit(10, "inches")
  41872. },
  41873. {
  41874. name: "Human Size",
  41875. height: math.unit(5, "feet"),
  41876. default: true
  41877. },
  41878. {
  41879. name: "Big",
  41880. height: math.unit(25, "feet")
  41881. },
  41882. {
  41883. name: "Bigger",
  41884. height: math.unit(50, "feet")
  41885. },
  41886. {
  41887. name: "oh lawd",
  41888. height: math.unit(75, "feet")
  41889. },
  41890. ]
  41891. ))
  41892. characterMakers.push(() => makeCharacter(
  41893. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  41894. {
  41895. front: {
  41896. height: math.unit(2 + 4/12, "feet"),
  41897. weight: math.unit(60, "lb"),
  41898. name: "Front",
  41899. image: {
  41900. source: "./media/characters/lerm/front.svg",
  41901. extra: 796/790,
  41902. bottom: 79/875
  41903. }
  41904. },
  41905. },
  41906. [
  41907. {
  41908. name: "Normal",
  41909. height: math.unit(2 + 4/12, "feet"),
  41910. default: true
  41911. },
  41912. ]
  41913. ))
  41914. characterMakers.push(() => makeCharacter(
  41915. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  41916. {
  41917. front: {
  41918. height: math.unit(5.5, "feet"),
  41919. weight: math.unit(130, "lb"),
  41920. name: "Front",
  41921. image: {
  41922. source: "./media/characters/xena-nebadon/front.svg",
  41923. extra: 1828/1730,
  41924. bottom: 79/1907
  41925. }
  41926. },
  41927. },
  41928. [
  41929. {
  41930. name: "Tiny Puppy",
  41931. height: math.unit(3, "inches")
  41932. },
  41933. {
  41934. name: "Normal",
  41935. height: math.unit(5.5, "feet"),
  41936. default: true
  41937. },
  41938. {
  41939. name: "Lotta Lady",
  41940. height: math.unit(12, "feet")
  41941. },
  41942. {
  41943. name: "Pretty Big",
  41944. height: math.unit(100, "feet")
  41945. },
  41946. {
  41947. name: "Big",
  41948. height: math.unit(500, "feet")
  41949. },
  41950. {
  41951. name: "Skyscraper Toys",
  41952. height: math.unit(2500, "feet")
  41953. },
  41954. {
  41955. name: "Plane Catcher",
  41956. height: math.unit(8, "miles")
  41957. },
  41958. {
  41959. name: "Planet Toys",
  41960. height: math.unit(15, "earths")
  41961. },
  41962. {
  41963. name: "Stardust",
  41964. height: math.unit(0.25, "galaxies")
  41965. },
  41966. {
  41967. name: "Snacks",
  41968. height: math.unit(70, "universes")
  41969. },
  41970. ]
  41971. ))
  41972. characterMakers.push(() => makeCharacter(
  41973. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  41974. {
  41975. front: {
  41976. height: math.unit(1.6, "meters"),
  41977. weight: math.unit(60, "kg"),
  41978. name: "Front",
  41979. image: {
  41980. source: "./media/characters/bounty/front.svg",
  41981. extra: 1426/1308,
  41982. bottom: 15/1441
  41983. }
  41984. },
  41985. },
  41986. [
  41987. {
  41988. name: "Normal",
  41989. height: math.unit(1.6, "meters"),
  41990. default: true
  41991. },
  41992. {
  41993. name: "Macro",
  41994. height: math.unit(300, "meters")
  41995. },
  41996. ]
  41997. ))
  41998. characterMakers.push(() => makeCharacter(
  41999. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42000. {
  42001. front: {
  42002. height: math.unit(2 + 8/12, "feet"),
  42003. weight: math.unit(15, "lb"),
  42004. name: "Front",
  42005. image: {
  42006. source: "./media/characters/mochi/front.svg",
  42007. extra: 1022/852,
  42008. bottom: 435/1457
  42009. }
  42010. },
  42011. back: {
  42012. height: math.unit(2 + 8/12, "feet"),
  42013. weight: math.unit(15, "lb"),
  42014. name: "Back",
  42015. image: {
  42016. source: "./media/characters/mochi/back.svg",
  42017. extra: 1335/1119,
  42018. bottom: 39/1374
  42019. }
  42020. },
  42021. bird: {
  42022. height: math.unit(2 + 8/12, "feet"),
  42023. weight: math.unit(15, "lb"),
  42024. name: "Bird",
  42025. image: {
  42026. source: "./media/characters/mochi/bird.svg",
  42027. extra: 1251/1113,
  42028. bottom: 178/1429
  42029. }
  42030. },
  42031. kaiju: {
  42032. height: math.unit(154, "feet"),
  42033. weight: math.unit(1e7, "lb"),
  42034. name: "Kaiju",
  42035. image: {
  42036. source: "./media/characters/mochi/kaiju.svg",
  42037. extra: 460/324,
  42038. bottom: 40/500
  42039. }
  42040. },
  42041. head: {
  42042. height: math.unit(1.21, "feet"),
  42043. name: "Head",
  42044. image: {
  42045. source: "./media/characters/mochi/head.svg"
  42046. }
  42047. },
  42048. alternateTail: {
  42049. height: math.unit(2 + 8/12, "feet"),
  42050. weight: math.unit(45, "lb"),
  42051. name: "Alternate Tail",
  42052. image: {
  42053. source: "./media/characters/mochi/alternate-tail.svg",
  42054. extra: 139/76,
  42055. bottom: 45/184
  42056. }
  42057. },
  42058. },
  42059. [
  42060. {
  42061. name: "Micro",
  42062. height: math.unit(2, "inches")
  42063. },
  42064. {
  42065. name: "Normal",
  42066. height: math.unit(2 + 8/12, "feet"),
  42067. default: true
  42068. },
  42069. {
  42070. name: "Macro",
  42071. height: math.unit(106, "feet")
  42072. },
  42073. ]
  42074. ))
  42075. characterMakers.push(() => makeCharacter(
  42076. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42077. {
  42078. front: {
  42079. height: math.unit(5.67, "feet"),
  42080. weight: math.unit(135, "lb"),
  42081. name: "Front",
  42082. image: {
  42083. source: "./media/characters/sarel/front.svg",
  42084. extra: 865/788,
  42085. bottom: 97/962
  42086. }
  42087. },
  42088. back: {
  42089. height: math.unit(5.67, "feet"),
  42090. weight: math.unit(135, "lb"),
  42091. name: "Back",
  42092. image: {
  42093. source: "./media/characters/sarel/back.svg",
  42094. extra: 857/777,
  42095. bottom: 32/889
  42096. }
  42097. },
  42098. chozoan: {
  42099. height: math.unit(5.67, "feet"),
  42100. weight: math.unit(135, "lb"),
  42101. name: "Chozoan",
  42102. image: {
  42103. source: "./media/characters/sarel/chozoan.svg",
  42104. extra: 865/788,
  42105. bottom: 97/962
  42106. }
  42107. },
  42108. current: {
  42109. height: math.unit(5.67, "feet"),
  42110. weight: math.unit(135, "lb"),
  42111. name: "Current",
  42112. image: {
  42113. source: "./media/characters/sarel/current.svg",
  42114. extra: 865/788,
  42115. bottom: 97/962
  42116. }
  42117. },
  42118. head: {
  42119. height: math.unit(1.77, "feet"),
  42120. name: "Head",
  42121. image: {
  42122. source: "./media/characters/sarel/head.svg"
  42123. }
  42124. },
  42125. claws: {
  42126. height: math.unit(1.8, "feet"),
  42127. name: "Claws",
  42128. image: {
  42129. source: "./media/characters/sarel/claws.svg"
  42130. }
  42131. },
  42132. clawsAlt: {
  42133. height: math.unit(1.8, "feet"),
  42134. name: "Claws-alt",
  42135. image: {
  42136. source: "./media/characters/sarel/claws-alt.svg"
  42137. }
  42138. },
  42139. },
  42140. [
  42141. {
  42142. name: "Normal",
  42143. height: math.unit(5.67, "feet"),
  42144. default: true
  42145. },
  42146. ]
  42147. ))
  42148. characterMakers.push(() => makeCharacter(
  42149. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42150. {
  42151. front: {
  42152. height: math.unit(5500, "feet"),
  42153. name: "Front",
  42154. image: {
  42155. source: "./media/characters/alyonia/front.svg",
  42156. extra: 1200/1135,
  42157. bottom: 29/1229
  42158. }
  42159. },
  42160. back: {
  42161. height: math.unit(5500, "feet"),
  42162. name: "Back",
  42163. image: {
  42164. source: "./media/characters/alyonia/back.svg",
  42165. extra: 1205/1138,
  42166. bottom: 10/1215
  42167. }
  42168. },
  42169. },
  42170. [
  42171. {
  42172. name: "Small",
  42173. height: math.unit(10, "feet")
  42174. },
  42175. {
  42176. name: "Macro",
  42177. height: math.unit(500, "feet")
  42178. },
  42179. {
  42180. name: "Mega Macro",
  42181. height: math.unit(5500, "feet"),
  42182. default: true
  42183. },
  42184. {
  42185. name: "Mega Macro+",
  42186. height: math.unit(500000, "feet")
  42187. },
  42188. {
  42189. name: "Giga Macro",
  42190. height: math.unit(3000, "miles")
  42191. },
  42192. {
  42193. name: "Tera Macro",
  42194. height: math.unit(2.8e6, "miles")
  42195. },
  42196. {
  42197. name: "Galactic",
  42198. height: math.unit(120000, "lightyears")
  42199. },
  42200. ]
  42201. ))
  42202. characterMakers.push(() => makeCharacter(
  42203. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42204. {
  42205. werewolf: {
  42206. height: math.unit(8, "feet"),
  42207. weight: math.unit(425, "lb"),
  42208. name: "Werewolf",
  42209. image: {
  42210. source: "./media/characters/autumn/werewolf.svg",
  42211. extra: 2154/2031,
  42212. bottom: 160/2314
  42213. }
  42214. },
  42215. human: {
  42216. height: math.unit(5 + 8/12, "feet"),
  42217. weight: math.unit(150, "lb"),
  42218. name: "Human",
  42219. image: {
  42220. source: "./media/characters/autumn/human.svg",
  42221. extra: 1200/1149,
  42222. bottom: 30/1230
  42223. }
  42224. },
  42225. },
  42226. [
  42227. {
  42228. name: "Normal",
  42229. height: math.unit(8, "feet"),
  42230. default: true
  42231. },
  42232. ]
  42233. ))
  42234. characterMakers.push(() => makeCharacter(
  42235. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42236. {
  42237. front: {
  42238. height: math.unit(8 + 5/12, "feet"),
  42239. weight: math.unit(825, "lb"),
  42240. name: "Front",
  42241. image: {
  42242. source: "./media/characters/cobalt-charizard/front.svg",
  42243. extra: 1268/1155,
  42244. bottom: 122/1390
  42245. }
  42246. },
  42247. side: {
  42248. height: math.unit(8 + 5/12, "feet"),
  42249. weight: math.unit(825, "lb"),
  42250. name: "Side",
  42251. image: {
  42252. source: "./media/characters/cobalt-charizard/side.svg",
  42253. extra: 1348/1257,
  42254. bottom: 58/1406
  42255. }
  42256. },
  42257. gMax: {
  42258. height: math.unit(134 + 11/12, "feet"),
  42259. name: "G-Max",
  42260. image: {
  42261. source: "./media/characters/cobalt-charizard/g-max.svg",
  42262. extra: 1835/1541,
  42263. bottom: 151/1986
  42264. }
  42265. },
  42266. },
  42267. [
  42268. {
  42269. name: "Normal",
  42270. height: math.unit(8 + 5/12, "feet"),
  42271. default: true
  42272. },
  42273. ]
  42274. ))
  42275. characterMakers.push(() => makeCharacter(
  42276. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42277. {
  42278. front: {
  42279. height: math.unit(6 + 3/12, "feet"),
  42280. weight: math.unit(210, "lb"),
  42281. name: "Front",
  42282. image: {
  42283. source: "./media/characters/stella/front.svg",
  42284. extra: 3549/3335,
  42285. bottom: 51/3600
  42286. }
  42287. },
  42288. },
  42289. [
  42290. {
  42291. name: "Normal",
  42292. height: math.unit(6 + 3/12, "feet"),
  42293. default: true
  42294. },
  42295. ]
  42296. ))
  42297. characterMakers.push(() => makeCharacter(
  42298. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42299. {
  42300. front: {
  42301. height: math.unit(5, "feet"),
  42302. weight: math.unit(90, "lb"),
  42303. name: "Front",
  42304. image: {
  42305. source: "./media/characters/riley-bishop/front.svg",
  42306. extra: 1450/1428,
  42307. bottom: 152/1602
  42308. }
  42309. },
  42310. },
  42311. [
  42312. {
  42313. name: "Normal",
  42314. height: math.unit(5, "feet"),
  42315. default: true
  42316. },
  42317. ]
  42318. ))
  42319. characterMakers.push(() => makeCharacter(
  42320. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42321. {
  42322. side: {
  42323. height: math.unit(8 + 2/12, "feet"),
  42324. weight: math.unit(500, "kg"),
  42325. name: "Side",
  42326. image: {
  42327. source: "./media/characters/theo-arcanine/side.svg",
  42328. extra: 1342/1074,
  42329. bottom: 111/1453
  42330. }
  42331. },
  42332. },
  42333. [
  42334. {
  42335. name: "Normal",
  42336. height: math.unit(8 + 2/12, "feet"),
  42337. default: true
  42338. },
  42339. ]
  42340. ))
  42341. characterMakers.push(() => makeCharacter(
  42342. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  42343. {
  42344. front: {
  42345. height: math.unit(4, "feet"),
  42346. name: "Front",
  42347. image: {
  42348. source: "./media/characters/kali/front.svg",
  42349. extra: 1921/1357,
  42350. bottom: 70/1991
  42351. }
  42352. },
  42353. },
  42354. [
  42355. {
  42356. name: "Normal",
  42357. height: math.unit(4, "feet"),
  42358. default: true
  42359. },
  42360. {
  42361. name: "Macro",
  42362. height: math.unit(32, "meters")
  42363. },
  42364. {
  42365. name: "Macro+",
  42366. height: math.unit(150, "meters")
  42367. },
  42368. {
  42369. name: "Megamacro",
  42370. height: math.unit(7500, "meters")
  42371. },
  42372. {
  42373. name: "Megamacro+",
  42374. height: math.unit(80, "kilometers")
  42375. },
  42376. ]
  42377. ))
  42378. characterMakers.push(() => makeCharacter(
  42379. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  42380. {
  42381. side: {
  42382. height: math.unit(5 + 11/12, "feet"),
  42383. weight: math.unit(236, "lb"),
  42384. name: "Side",
  42385. image: {
  42386. source: "./media/characters/gapp/side.svg",
  42387. extra: 775/340,
  42388. bottom: 58/833
  42389. }
  42390. },
  42391. mouth: {
  42392. height: math.unit(2.98, "feet"),
  42393. name: "Mouth",
  42394. image: {
  42395. source: "./media/characters/gapp/mouth.svg"
  42396. }
  42397. },
  42398. },
  42399. [
  42400. {
  42401. name: "Normal",
  42402. height: math.unit(5 + 1/12, "feet"),
  42403. default: true
  42404. },
  42405. ]
  42406. ))
  42407. characterMakers.push(() => makeCharacter(
  42408. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  42409. {
  42410. front: {
  42411. height: math.unit(6, "feet"),
  42412. name: "Front",
  42413. image: {
  42414. source: "./media/characters/persephone/front.svg",
  42415. extra: 1895/1717,
  42416. bottom: 96/1991
  42417. }
  42418. },
  42419. back: {
  42420. height: math.unit(6, "feet"),
  42421. name: "Back",
  42422. image: {
  42423. source: "./media/characters/persephone/back.svg",
  42424. extra: 1868/1679,
  42425. bottom: 26/1894
  42426. }
  42427. },
  42428. casual: {
  42429. height: math.unit(6, "feet"),
  42430. name: "Casual",
  42431. image: {
  42432. source: "./media/characters/persephone/casual.svg",
  42433. extra: 1713/1541,
  42434. bottom: 76/1789
  42435. }
  42436. },
  42437. },
  42438. [
  42439. {
  42440. name: "Human Size",
  42441. height: math.unit(6, "feet"),
  42442. default: true
  42443. },
  42444. {
  42445. name: "Galaxy Brain",
  42446. height: math.unit(1, "zettameter")
  42447. },
  42448. ]
  42449. ))
  42450. characterMakers.push(() => makeCharacter(
  42451. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  42452. {
  42453. front: {
  42454. height: math.unit(1.85, "meters"),
  42455. name: "Front",
  42456. image: {
  42457. source: "./media/characters/riley-foxthing/front.svg",
  42458. extra: 1495/1354,
  42459. bottom: 122/1617
  42460. }
  42461. },
  42462. frontAlt: {
  42463. height: math.unit(1.85, "meters"),
  42464. name: "Front (Alt)",
  42465. image: {
  42466. source: "./media/characters/riley-foxthing/front-alt.svg",
  42467. extra: 1572/1389,
  42468. bottom: 116/1688
  42469. }
  42470. },
  42471. },
  42472. [
  42473. {
  42474. name: "Normal Sized",
  42475. height: math.unit(1.85, "meters"),
  42476. default: true
  42477. },
  42478. {
  42479. name: "Quite Sizable",
  42480. height: math.unit(5, "meters")
  42481. },
  42482. {
  42483. name: "Rather Large",
  42484. height: math.unit(20, "meters")
  42485. },
  42486. {
  42487. name: "Macro",
  42488. height: math.unit(450, "meters")
  42489. },
  42490. {
  42491. name: "Giga",
  42492. height: math.unit(5, "km")
  42493. },
  42494. ]
  42495. ))
  42496. characterMakers.push(() => makeCharacter(
  42497. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  42498. {
  42499. front: {
  42500. height: math.unit(6, "feet"),
  42501. weight: math.unit(200, "lb"),
  42502. name: "Front",
  42503. image: {
  42504. source: "./media/characters/blizzard/front.svg",
  42505. extra: 1136/990,
  42506. bottom: 136/1272
  42507. }
  42508. },
  42509. back: {
  42510. height: math.unit(6, "feet"),
  42511. weight: math.unit(200, "lb"),
  42512. name: "Back",
  42513. image: {
  42514. source: "./media/characters/blizzard/back.svg",
  42515. extra: 1175/1034,
  42516. bottom: 97/1272
  42517. }
  42518. },
  42519. sitting: {
  42520. height: math.unit(3.725, "feet"),
  42521. weight: math.unit(200, "lb"),
  42522. name: "Sitting",
  42523. image: {
  42524. source: "./media/characters/blizzard/sitting.svg",
  42525. extra: 581/485,
  42526. bottom: 90/671
  42527. }
  42528. },
  42529. frontWizard: {
  42530. height: math.unit(7.9, "feet"),
  42531. weight: math.unit(200, "lb"),
  42532. name: "Front (Wizard)",
  42533. image: {
  42534. source: "./media/characters/blizzard/front-wizard.svg"
  42535. }
  42536. },
  42537. backWizard: {
  42538. height: math.unit(7.9, "feet"),
  42539. weight: math.unit(200, "lb"),
  42540. name: "Back (Wizard)",
  42541. image: {
  42542. source: "./media/characters/blizzard/back-wizard.svg"
  42543. }
  42544. },
  42545. frontNsfw: {
  42546. height: math.unit(6, "feet"),
  42547. weight: math.unit(200, "lb"),
  42548. name: "Front (NSFW)",
  42549. image: {
  42550. source: "./media/characters/blizzard/front-nsfw.svg",
  42551. extra: 1136/990,
  42552. bottom: 136/1272
  42553. }
  42554. },
  42555. backNsfw: {
  42556. height: math.unit(6, "feet"),
  42557. weight: math.unit(200, "lb"),
  42558. name: "Back (NSFW)",
  42559. image: {
  42560. source: "./media/characters/blizzard/back-nsfw.svg",
  42561. extra: 1175/1034,
  42562. bottom: 97/1272
  42563. }
  42564. },
  42565. sittingNsfw: {
  42566. height: math.unit(3.725, "feet"),
  42567. weight: math.unit(200, "lb"),
  42568. name: "Sitting (NSFW)",
  42569. image: {
  42570. source: "./media/characters/blizzard/sitting-nsfw.svg",
  42571. extra: 581/485,
  42572. bottom: 90/671
  42573. }
  42574. },
  42575. wizardFrontNsfw: {
  42576. height: math.unit(7.9, "feet"),
  42577. weight: math.unit(200, "lb"),
  42578. name: "Wizard (Front, NSFW)",
  42579. image: {
  42580. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  42581. }
  42582. },
  42583. },
  42584. [
  42585. {
  42586. name: "Normal",
  42587. height: math.unit(6, "feet"),
  42588. default: true
  42589. },
  42590. ]
  42591. ))
  42592. characterMakers.push(() => makeCharacter(
  42593. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  42594. {
  42595. front: {
  42596. height: math.unit(5 + 2/12, "feet"),
  42597. name: "Front",
  42598. image: {
  42599. source: "./media/characters/lumi/front.svg",
  42600. extra: 1328/1268,
  42601. bottom: 103/1431
  42602. }
  42603. },
  42604. back: {
  42605. height: math.unit(5 + 2/12, "feet"),
  42606. name: "Back",
  42607. image: {
  42608. source: "./media/characters/lumi/back.svg",
  42609. extra: 1381/1327,
  42610. bottom: 43/1424
  42611. }
  42612. },
  42613. },
  42614. [
  42615. {
  42616. name: "Normal",
  42617. height: math.unit(5 + 2/12, "feet"),
  42618. default: true
  42619. },
  42620. ]
  42621. ))
  42622. characterMakers.push(() => makeCharacter(
  42623. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  42624. {
  42625. front: {
  42626. height: math.unit(5 + 9/12, "feet"),
  42627. name: "Front",
  42628. image: {
  42629. source: "./media/characters/aliya-cotton/front.svg",
  42630. extra: 577/564,
  42631. bottom: 29/606
  42632. }
  42633. },
  42634. },
  42635. [
  42636. {
  42637. name: "Normal",
  42638. height: math.unit(5 + 9/12, "feet"),
  42639. default: true
  42640. },
  42641. ]
  42642. ))
  42643. characterMakers.push(() => makeCharacter(
  42644. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  42645. {
  42646. front: {
  42647. height: math.unit(2.7, "meters"),
  42648. weight: math.unit(25000, "lb"),
  42649. name: "Front",
  42650. image: {
  42651. source: "./media/characters/noah-luxray/front.svg",
  42652. extra: 1644/825,
  42653. bottom: 339/1983
  42654. }
  42655. },
  42656. side: {
  42657. height: math.unit(2.97, "meters"),
  42658. weight: math.unit(25000, "lb"),
  42659. name: "Side",
  42660. image: {
  42661. source: "./media/characters/noah-luxray/side.svg",
  42662. extra: 1319/650,
  42663. bottom: 163/1482
  42664. }
  42665. },
  42666. dick: {
  42667. height: math.unit(7.4, "feet"),
  42668. weight: math.unit(2500, "lb"),
  42669. name: "Dick",
  42670. image: {
  42671. source: "./media/characters/noah-luxray/dick.svg"
  42672. }
  42673. },
  42674. dickAlt: {
  42675. height: math.unit(10.83, "feet"),
  42676. weight: math.unit(2500, "lb"),
  42677. name: "Dick-alt",
  42678. image: {
  42679. source: "./media/characters/noah-luxray/dick-alt.svg"
  42680. }
  42681. },
  42682. },
  42683. [
  42684. {
  42685. name: "BIG",
  42686. height: math.unit(2.7, "meters"),
  42687. default: true
  42688. },
  42689. ]
  42690. ))
  42691. characterMakers.push(() => makeCharacter(
  42692. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  42693. {
  42694. standing: {
  42695. height: math.unit(183, "cm"),
  42696. weight: math.unit(68, "kg"),
  42697. name: "Standing",
  42698. image: {
  42699. source: "./media/characters/arion/standing.svg",
  42700. extra: 1869/1807,
  42701. bottom: 93/1962
  42702. }
  42703. },
  42704. reclining: {
  42705. height: math.unit(70.5, "cm"),
  42706. weight: math.unit(68, "lb"),
  42707. name: "Reclining",
  42708. image: {
  42709. source: "./media/characters/arion/reclining.svg",
  42710. extra: 937/870,
  42711. bottom: 63/1000
  42712. }
  42713. },
  42714. },
  42715. [
  42716. {
  42717. name: "Colossus Size, Low",
  42718. height: math.unit(33, "meters"),
  42719. default: true
  42720. },
  42721. {
  42722. name: "Colossus Size, Mid",
  42723. height: math.unit(52, "meters")
  42724. },
  42725. {
  42726. name: "Colossus Size, High",
  42727. height: math.unit(60, "meters")
  42728. },
  42729. {
  42730. name: "Titan Size, Low",
  42731. height: math.unit(91, "meters"),
  42732. },
  42733. {
  42734. name: "Titan Size, Mid",
  42735. height: math.unit(122, "meters")
  42736. },
  42737. {
  42738. name: "Titan Size, High",
  42739. height: math.unit(162, "meters")
  42740. },
  42741. ]
  42742. ))
  42743. characterMakers.push(() => makeCharacter(
  42744. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  42745. {
  42746. front: {
  42747. height: math.unit(53, "meters"),
  42748. name: "Front",
  42749. image: {
  42750. source: "./media/characters/stellar-marbey/front.svg",
  42751. extra: 1913/1805,
  42752. bottom: 92/2005
  42753. }
  42754. },
  42755. back: {
  42756. height: math.unit(53, "meters"),
  42757. name: "Back",
  42758. image: {
  42759. source: "./media/characters/stellar-marbey/back.svg",
  42760. extra: 1960/1851,
  42761. bottom: 28/1988
  42762. }
  42763. },
  42764. mouth: {
  42765. height: math.unit(3.5, "meters"),
  42766. name: "Mouth",
  42767. image: {
  42768. source: "./media/characters/stellar-marbey/mouth.svg"
  42769. }
  42770. },
  42771. },
  42772. [
  42773. {
  42774. name: "Macro",
  42775. height: math.unit(53, "meters"),
  42776. default: true
  42777. },
  42778. ]
  42779. ))
  42780. characterMakers.push(() => makeCharacter(
  42781. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  42782. {
  42783. front: {
  42784. height: math.unit(8 + 1/12, "feet"),
  42785. weight: math.unit(233, "lb"),
  42786. name: "Front",
  42787. image: {
  42788. source: "./media/characters/matsu/front.svg",
  42789. extra: 832/772,
  42790. bottom: 40/872
  42791. }
  42792. },
  42793. back: {
  42794. height: math.unit(8 + 1/12, "feet"),
  42795. weight: math.unit(233, "lb"),
  42796. name: "Back",
  42797. image: {
  42798. source: "./media/characters/matsu/back.svg",
  42799. extra: 839/780,
  42800. bottom: 47/886
  42801. }
  42802. },
  42803. },
  42804. [
  42805. {
  42806. name: "Normal",
  42807. height: math.unit(8 + 1/12, "feet"),
  42808. default: true
  42809. },
  42810. ]
  42811. ))
  42812. characterMakers.push(() => makeCharacter(
  42813. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  42814. {
  42815. front: {
  42816. height: math.unit(4, "feet"),
  42817. weight: math.unit(148, "lb"),
  42818. name: "Front",
  42819. image: {
  42820. source: "./media/characters/thiz/front.svg",
  42821. extra: 1913/1748,
  42822. bottom: 62/1975
  42823. }
  42824. },
  42825. },
  42826. [
  42827. {
  42828. name: "Normal",
  42829. height: math.unit(4, "feet"),
  42830. default: true
  42831. },
  42832. ]
  42833. ))
  42834. characterMakers.push(() => makeCharacter(
  42835. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  42836. {
  42837. front: {
  42838. height: math.unit(7 + 6/12, "feet"),
  42839. weight: math.unit(267, "lb"),
  42840. name: "Front",
  42841. image: {
  42842. source: "./media/characters/marcel/front.svg",
  42843. extra: 1221/1096,
  42844. bottom: 76/1297
  42845. }
  42846. },
  42847. },
  42848. [
  42849. {
  42850. name: "Normal",
  42851. height: math.unit(7 + 6/12, "feet"),
  42852. default: true
  42853. },
  42854. ]
  42855. ))
  42856. characterMakers.push(() => makeCharacter(
  42857. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  42858. {
  42859. side: {
  42860. height: math.unit(42, "meters"),
  42861. name: "Side",
  42862. image: {
  42863. source: "./media/characters/flake/side.svg",
  42864. extra: 1525/1306,
  42865. bottom: 209/1734
  42866. }
  42867. },
  42868. },
  42869. [
  42870. {
  42871. name: "Normal",
  42872. height: math.unit(42, "meters"),
  42873. default: true
  42874. },
  42875. ]
  42876. ))
  42877. characterMakers.push(() => makeCharacter(
  42878. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  42879. {
  42880. dressed: {
  42881. height: math.unit(6 + 4/12, "feet"),
  42882. weight: math.unit(520, "lb"),
  42883. name: "Dressed",
  42884. image: {
  42885. source: "./media/characters/someonne/dressed.svg",
  42886. extra: 1020/1010,
  42887. bottom: 178/1198
  42888. }
  42889. },
  42890. undressed: {
  42891. height: math.unit(6 + 4/12, "feet"),
  42892. weight: math.unit(520, "lb"),
  42893. name: "Undressed",
  42894. image: {
  42895. source: "./media/characters/someonne/undressed.svg",
  42896. extra: 1019/1014,
  42897. bottom: 169/1188
  42898. }
  42899. },
  42900. },
  42901. [
  42902. {
  42903. name: "Normal",
  42904. height: math.unit(6 + 4/12, "feet"),
  42905. default: true
  42906. },
  42907. ]
  42908. ))
  42909. characterMakers.push(() => makeCharacter(
  42910. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  42911. {
  42912. front: {
  42913. height: math.unit(3, "feet"),
  42914. weight: math.unit(30, "lb"),
  42915. name: "Front",
  42916. image: {
  42917. source: "./media/characters/till/front.svg",
  42918. extra: 892/823,
  42919. bottom: 55/947
  42920. }
  42921. },
  42922. },
  42923. [
  42924. {
  42925. name: "Normal",
  42926. height: math.unit(3, "feet"),
  42927. default: true
  42928. },
  42929. ]
  42930. ))
  42931. characterMakers.push(() => makeCharacter(
  42932. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  42933. {
  42934. front: {
  42935. height: math.unit(9 + 8/12, "feet"),
  42936. weight: math.unit(800, "lb"),
  42937. name: "Front",
  42938. image: {
  42939. source: "./media/characters/sydney-heki/front.svg",
  42940. extra: 1360/1300,
  42941. bottom: 22/1382
  42942. }
  42943. },
  42944. back: {
  42945. height: math.unit(9 + 8/12, "feet"),
  42946. weight: math.unit(800, "lb"),
  42947. name: "Back",
  42948. image: {
  42949. source: "./media/characters/sydney-heki/back.svg",
  42950. extra: 1356/1293,
  42951. bottom: 12/1368
  42952. }
  42953. },
  42954. frontDressed: {
  42955. height: math.unit(9 + 8/12, "feet"),
  42956. weight: math.unit(800, "lb"),
  42957. name: "Front-dressed",
  42958. image: {
  42959. source: "./media/characters/sydney-heki/front-dressed.svg",
  42960. extra: 1360/1300,
  42961. bottom: 22/1382
  42962. }
  42963. },
  42964. },
  42965. [
  42966. {
  42967. name: "Normal",
  42968. height: math.unit(9 + 8/12, "feet"),
  42969. default: true
  42970. },
  42971. {
  42972. name: "Macro",
  42973. height: math.unit(500, "feet")
  42974. },
  42975. {
  42976. name: "Megamacro",
  42977. height: math.unit(3.6, "miles")
  42978. },
  42979. ]
  42980. ))
  42981. characterMakers.push(() => makeCharacter(
  42982. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  42983. {
  42984. front: {
  42985. height: math.unit(200, "cm"),
  42986. weight: math.unit(250, "lb"),
  42987. name: "Front",
  42988. image: {
  42989. source: "./media/characters/fowler-karlsson/front.svg",
  42990. extra: 897/845,
  42991. bottom: 123/1020
  42992. }
  42993. },
  42994. back: {
  42995. height: math.unit(200, "cm"),
  42996. weight: math.unit(250, "lb"),
  42997. name: "Back",
  42998. image: {
  42999. source: "./media/characters/fowler-karlsson/back.svg",
  43000. extra: 999/944,
  43001. bottom: 26/1025
  43002. }
  43003. },
  43004. dick: {
  43005. height: math.unit(1.92, "feet"),
  43006. weight: math.unit(150, "lb"),
  43007. name: "Dick",
  43008. image: {
  43009. source: "./media/characters/fowler-karlsson/dick.svg"
  43010. }
  43011. },
  43012. },
  43013. [
  43014. {
  43015. name: "Normal",
  43016. height: math.unit(200, "cm"),
  43017. default: true
  43018. },
  43019. {
  43020. name: "Smaller Macro",
  43021. height: math.unit(90, "m")
  43022. },
  43023. {
  43024. name: "Macro",
  43025. height: math.unit(150, "m")
  43026. },
  43027. {
  43028. name: "Bigger Macro",
  43029. height: math.unit(300, "m")
  43030. },
  43031. ]
  43032. ))
  43033. characterMakers.push(() => makeCharacter(
  43034. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43035. {
  43036. side: {
  43037. height: math.unit(8 + 2/12, "feet"),
  43038. weight: math.unit(1, "tonne"),
  43039. name: "Side",
  43040. image: {
  43041. source: "./media/characters/rylide/side.svg",
  43042. extra: 1318/1034,
  43043. bottom: 106/1424
  43044. }
  43045. },
  43046. sitting: {
  43047. height: math.unit(303, "cm"),
  43048. weight: math.unit(1, "tonne"),
  43049. name: "Sitting",
  43050. image: {
  43051. source: "./media/characters/rylide/sitting.svg",
  43052. extra: 1303/1103,
  43053. bottom: 36/1339
  43054. }
  43055. },
  43056. },
  43057. [
  43058. {
  43059. name: "Normal",
  43060. height: math.unit(8 + 2/12, "feet"),
  43061. default: true
  43062. },
  43063. ]
  43064. ))
  43065. characterMakers.push(() => makeCharacter(
  43066. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43067. {
  43068. front: {
  43069. height: math.unit(5 + 10/12, "feet"),
  43070. weight: math.unit(160, "lb"),
  43071. name: "Front",
  43072. image: {
  43073. source: "./media/characters/pudask/front.svg",
  43074. extra: 1616/1590,
  43075. bottom: 161/1777
  43076. }
  43077. },
  43078. },
  43079. [
  43080. {
  43081. name: "Ferret Height",
  43082. height: math.unit(2 + 5/12, "feet")
  43083. },
  43084. {
  43085. name: "Canon Height",
  43086. height: math.unit(5 + 10/12, "feet"),
  43087. default: true
  43088. },
  43089. ]
  43090. ))
  43091. characterMakers.push(() => makeCharacter(
  43092. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43093. {
  43094. front: {
  43095. height: math.unit(3 + 6/12, "feet"),
  43096. weight: math.unit(60, "lb"),
  43097. name: "Front",
  43098. image: {
  43099. source: "./media/characters/ramita/front.svg",
  43100. extra: 1402/1232,
  43101. bottom: 62/1464
  43102. }
  43103. },
  43104. dressed: {
  43105. height: math.unit(3 + 6/12, "feet"),
  43106. weight: math.unit(60, "lb"),
  43107. name: "Dressed",
  43108. image: {
  43109. source: "./media/characters/ramita/dressed.svg",
  43110. extra: 1534/1249,
  43111. bottom: 50/1584
  43112. }
  43113. },
  43114. },
  43115. [
  43116. {
  43117. name: "Normal",
  43118. height: math.unit(3 + 6/12, "feet"),
  43119. default: true
  43120. },
  43121. ]
  43122. ))
  43123. characterMakers.push(() => makeCharacter(
  43124. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43125. {
  43126. front: {
  43127. height: math.unit(8, "feet"),
  43128. name: "Front",
  43129. image: {
  43130. source: "./media/characters/ark/front.svg",
  43131. extra: 772/693,
  43132. bottom: 45/817
  43133. }
  43134. },
  43135. },
  43136. [
  43137. {
  43138. name: "Normal",
  43139. height: math.unit(8, "feet"),
  43140. default: true
  43141. },
  43142. ]
  43143. ))
  43144. characterMakers.push(() => makeCharacter(
  43145. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43146. {
  43147. front: {
  43148. height: math.unit(6, "feet"),
  43149. weight: math.unit(250, "lb"),
  43150. volume: math.unit(5/8, "gallons"),
  43151. name: "Front",
  43152. image: {
  43153. source: "./media/characters/ludwig-horn/front.svg",
  43154. extra: 1782/1635,
  43155. bottom: 96/1878
  43156. }
  43157. },
  43158. back: {
  43159. height: math.unit(6, "feet"),
  43160. weight: math.unit(250, "lb"),
  43161. volume: math.unit(5/8, "gallons"),
  43162. name: "Back",
  43163. image: {
  43164. source: "./media/characters/ludwig-horn/back.svg",
  43165. extra: 1874/1729,
  43166. bottom: 27/1901
  43167. }
  43168. },
  43169. dick: {
  43170. height: math.unit(1.05, "feet"),
  43171. weight: math.unit(15, "lb"),
  43172. volume: math.unit(5/8, "gallons"),
  43173. name: "Dick",
  43174. image: {
  43175. source: "./media/characters/ludwig-horn/dick.svg"
  43176. }
  43177. },
  43178. },
  43179. [
  43180. {
  43181. name: "Small",
  43182. height: math.unit(6, "feet")
  43183. },
  43184. {
  43185. name: "Typical",
  43186. height: math.unit(12, "feet"),
  43187. default: true
  43188. },
  43189. {
  43190. name: "Building",
  43191. height: math.unit(80, "feet")
  43192. },
  43193. {
  43194. name: "Town",
  43195. height: math.unit(800, "feet")
  43196. },
  43197. {
  43198. name: "Kingdom",
  43199. height: math.unit(80000, "feet")
  43200. },
  43201. {
  43202. name: "Planet",
  43203. height: math.unit(8000000, "feet")
  43204. },
  43205. {
  43206. name: "Universe",
  43207. height: math.unit(8000000000, "feet")
  43208. },
  43209. {
  43210. name: "Transcended",
  43211. height: math.unit(8e27, "feet")
  43212. },
  43213. ]
  43214. ))
  43215. //characters
  43216. function makeCharacters() {
  43217. const results = [];
  43218. characterMakers.forEach(character => {
  43219. results.push(character());
  43220. });
  43221. return results;
  43222. }