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

45120 строки
1.1 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. if (value.energyNeed) {
  45. views[key].attributes.capacity = {
  46. name: "Food Intake",
  47. power: 3,
  48. type: "energy",
  49. base: value.energyNeed
  50. }
  51. }
  52. });
  53. return createEntityMaker(info, views, defaultSizes);
  54. }
  55. const speciesData = {
  56. animal: {
  57. name: "Animal"
  58. },
  59. dog: {
  60. name: "Dog",
  61. parents: [
  62. "canine"
  63. ]
  64. },
  65. canine: {
  66. name: "Canine",
  67. parents: [
  68. "mammal"
  69. ]
  70. },
  71. crux: {
  72. name: "Crux",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. mammal: {
  78. name: "Mammal",
  79. parents: [
  80. "animal"
  81. ]
  82. },
  83. "rough-collie": {
  84. name: "Rough Collie",
  85. parents: [
  86. "dog"
  87. ]
  88. },
  89. dragon: {
  90. name: "Dragon",
  91. parents: [
  92. "reptile"
  93. ]
  94. },
  95. reptile: {
  96. name: "Reptile",
  97. parents: [
  98. "animal"
  99. ]
  100. },
  101. woodpecker: {
  102. name: "Woodpecker",
  103. parents: [
  104. "avian"
  105. ]
  106. },
  107. avian: {
  108. name: "Avian",
  109. parents: [
  110. "animal"
  111. ]
  112. },
  113. kitsune: {
  114. name: "Kitsune",
  115. parents: [
  116. "fox"
  117. ]
  118. },
  119. fox: {
  120. name: "Fox",
  121. parents: [
  122. "mammal"
  123. ]
  124. },
  125. pokemon: {
  126. name: "Pokemon"
  127. },
  128. tiger: {
  129. name: "Tiger",
  130. parents: [
  131. "cat"
  132. ]
  133. },
  134. cat: {
  135. name: "Cat",
  136. parents: [
  137. "feliform"
  138. ]
  139. },
  140. "blue-jay": {
  141. name: "Blue Jay",
  142. parents: [
  143. "avian"
  144. ]
  145. },
  146. wolf: {
  147. name: "Wolf",
  148. parents: [
  149. "mammal"
  150. ]
  151. },
  152. coyote: {
  153. name: "Coyote",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. raccoon: {
  159. name: "Raccoon",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. weasel: {
  165. name: "Weasel",
  166. parents: [
  167. "mustelid"
  168. ]
  169. },
  170. "red-panda": {
  171. name: "Red Panda",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. dolphin: {
  177. name: "Dolphin",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. "african-wild-dog": {
  183. name: "African Wild Dog",
  184. parents: [
  185. "canine"
  186. ]
  187. },
  188. "hyena": {
  189. name: "Hyena",
  190. parents: [
  191. "feliform"
  192. ]
  193. },
  194. "carbuncle": {
  195. name: "Carbuncle",
  196. parents: [
  197. "animal"
  198. ]
  199. },
  200. bat: {
  201. name: "Bat",
  202. parents: [
  203. "mammal"
  204. ]
  205. },
  206. "leaf-nosed-bat": {
  207. name: "Leaf-Nosed Bat",
  208. parents: [
  209. "bat"
  210. ]
  211. },
  212. "fish": {
  213. name: "Fish",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. "ram": {
  219. name: "Ram",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "demon": {
  225. name: "Demon",
  226. parents: [
  227. "supernatural"
  228. ]
  229. },
  230. "cougar": {
  231. name: "Cougar",
  232. parents: [
  233. "cat"
  234. ]
  235. },
  236. "goat": {
  237. name: "Goat",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "lion": {
  243. name: "Lion",
  244. parents: [
  245. "cat"
  246. ]
  247. },
  248. "harpy-eager": {
  249. name: "Harpy Eagle",
  250. parents: [
  251. "avian"
  252. ]
  253. },
  254. "deer": {
  255. name: "Deer",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "phoenix": {
  261. name: "Phoenix",
  262. parents: [
  263. "avian"
  264. ]
  265. },
  266. "aeromorph": {
  267. name: "Aeromorph",
  268. parents: [
  269. "machine"
  270. ]
  271. },
  272. "machine": {
  273. name: "Machine",
  274. },
  275. "android": {
  276. name: "Android",
  277. parents: [
  278. "machine"
  279. ]
  280. },
  281. "jackal": {
  282. name: "Jackal",
  283. parents: [
  284. "canine"
  285. ]
  286. },
  287. "corvid": {
  288. name: "Corvid",
  289. parents: [
  290. "avian"
  291. ]
  292. },
  293. "pharaoh-hound": {
  294. name: "Pharaoh Hound",
  295. parents: [
  296. "dog"
  297. ]
  298. },
  299. "skunk": {
  300. name: "Skunk",
  301. parents: [
  302. "mammal"
  303. ]
  304. },
  305. "shark": {
  306. name: "Shark",
  307. parents: [
  308. "fish"
  309. ]
  310. },
  311. "black-panther": {
  312. name: "Black Panther",
  313. parents: [
  314. "cat"
  315. ]
  316. },
  317. "umbra": {
  318. name: "Umbra",
  319. parents: [
  320. "animal"
  321. ]
  322. },
  323. "raven": {
  324. name: "Raven",
  325. parents: [
  326. "corvid"
  327. ]
  328. },
  329. "snow-leopard": {
  330. name: "Snow Leopard",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "barbary-lion": {
  336. name: "Barbary Lion",
  337. parents: [
  338. "lion"
  339. ]
  340. },
  341. "dra'gal": {
  342. name: "Dra'Gal",
  343. parents: [
  344. "mammal"
  345. ]
  346. },
  347. "german-shepherd": {
  348. name: "German Shepherd",
  349. parents: [
  350. "dog"
  351. ]
  352. },
  353. "bayleef": {
  354. name: "Bayleef",
  355. parents: [
  356. "pokemon"
  357. ]
  358. },
  359. "mouse": {
  360. name: "Mouse",
  361. parents: [
  362. "rodent"
  363. ]
  364. },
  365. "rat": {
  366. name: "Rat",
  367. parents: [
  368. "mammal"
  369. ]
  370. },
  371. "hoshiko-beast": {
  372. name: "Hoshiko Beast",
  373. parents: ["animal"]
  374. },
  375. "snow-jugani": {
  376. name: "Snow Jugani",
  377. parents: ["cat"]
  378. },
  379. "patamon": {
  380. name: "Patamon",
  381. parents: ["digimon"]
  382. },
  383. "digimon": {
  384. name: "Digimon",
  385. },
  386. "jugani": {
  387. name: "Jugani",
  388. parents: ["cat"]
  389. },
  390. "luxray": {
  391. name: "Luxray",
  392. parents: ["pokemon"]
  393. },
  394. "mech": {
  395. name: "Mech",
  396. parents: ["machine"]
  397. },
  398. "zoid": {
  399. name: "Zoid",
  400. parents: ["mech"]
  401. },
  402. "monster": {
  403. name: "Monster",
  404. parents: ["animal"]
  405. },
  406. "foo-dog": {
  407. name: "Foo Dog",
  408. parents: ["mammal"]
  409. },
  410. "elephant": {
  411. name: "Elephant",
  412. parents: ["mammal"]
  413. },
  414. "eagle": {
  415. name: "Eagle",
  416. parents: ["avian"]
  417. },
  418. "cow": {
  419. name: "Cow",
  420. parents: ["mammal"]
  421. },
  422. "crocodile": {
  423. name: "Crocodile",
  424. parents: ["reptile"]
  425. },
  426. "borzoi": {
  427. name: "Borzoi",
  428. parents: ["dog"]
  429. },
  430. "snake": {
  431. name: "Snake",
  432. parents: ["reptile"]
  433. },
  434. "horned-bush-viper": {
  435. name: "Horned Bush Viper",
  436. parents: ["snake"]
  437. },
  438. "cobra": {
  439. name: "Cobra",
  440. parents: ["snake"]
  441. },
  442. "harpy-eagle": {
  443. name: "Harpy Eagle",
  444. parents: ["eagle"]
  445. },
  446. "raptor": {
  447. name: "Raptor",
  448. parents: ["dinosaur"]
  449. },
  450. "dinosaur": {
  451. name: "Dinosaur",
  452. parents: ["reptile"]
  453. },
  454. "veilhound": {
  455. name: "Veilhound",
  456. parents: ["hellhound"]
  457. },
  458. "hellhound": {
  459. name: "Hellhound",
  460. parents: ["canine", "demon"]
  461. },
  462. "insect": {
  463. name: "Insect",
  464. parents: ["animal"]
  465. },
  466. "beetle": {
  467. name: "Beetle",
  468. parents: ["insect"]
  469. },
  470. "moth": {
  471. name: "Moth",
  472. parents: ["insect"]
  473. },
  474. "eastern-dragon": {
  475. name: "Eastern Dragon",
  476. parents: ["dragon"]
  477. },
  478. "jaguar": {
  479. name: "Jaguar",
  480. parents: ["cat"]
  481. },
  482. "horse": {
  483. name: "Horse",
  484. parents: ["mammal"]
  485. },
  486. "sergal": {
  487. name: "Sergal",
  488. parents: ["mammal"]
  489. },
  490. "gryphon": {
  491. name: "Gryphon",
  492. parents: ["lion", "eagle"]
  493. },
  494. "robot": {
  495. name: "Robot",
  496. parents: ["machine"]
  497. },
  498. "medihound": {
  499. name: "Medihound",
  500. parents: ["robot", "dog"]
  501. },
  502. "sylveon": {
  503. name: "Sylveon",
  504. parents: ["pokemon"]
  505. },
  506. "catgirl": {
  507. name: "Catgirl",
  508. parents: ["mammal"]
  509. },
  510. "cowgirl": {
  511. name: "Cowgirl",
  512. parents: ["mammal"]
  513. },
  514. "pony": {
  515. name: "Pony",
  516. parents: ["horse"]
  517. },
  518. "rabbit": {
  519. name: "Rabbit",
  520. parents: ["mammal"]
  521. },
  522. "fennec-fox": {
  523. name: "Fennec Fox",
  524. parents: ["fox"]
  525. },
  526. "azodian": {
  527. name: "Azodian",
  528. parents: ["mouse"]
  529. },
  530. "shiba-inu": {
  531. name: "Shiba Inu",
  532. parents: ["dog"]
  533. },
  534. "changeling": {
  535. name: "Changeling",
  536. parents: ["insect"]
  537. },
  538. "cheetah": {
  539. name: "Cheetah",
  540. parents: ["cat"]
  541. },
  542. "golden-jackal": {
  543. name: "Golden Jackal",
  544. parents: ["jackal"]
  545. },
  546. "manectric": {
  547. name: "Manectric",
  548. parents: ["pokemon"]
  549. },
  550. "rat": {
  551. name: "Rat",
  552. parents: ["rodent"]
  553. },
  554. "rodent": {
  555. name: "Rodent",
  556. parents: ["mammal"]
  557. },
  558. "octocoon": {
  559. name: "Octocoon",
  560. parents: ["raccoon", "octopus"]
  561. },
  562. "octopus": {
  563. name: "Octopus",
  564. parents: ["fish"]
  565. },
  566. "werewolf": {
  567. name: "Werewolf",
  568. parents: ["wolf", "werebeast"]
  569. },
  570. "werebeast": {
  571. name: "Werebeast",
  572. parents: ["monster"]
  573. },
  574. "meerkat": {
  575. name: "Meerkat",
  576. parents: ["mammal"]
  577. },
  578. "human": {
  579. name: "Human",
  580. parents: ["mammal"]
  581. },
  582. "geth": {
  583. name: "Geth",
  584. parents: ["android"]
  585. },
  586. "husky": {
  587. name: "Husky",
  588. parents: ["dog"]
  589. },
  590. "long-eared-bat": {
  591. name: "Long Eared Bat",
  592. parents: ["bat"]
  593. },
  594. "lizard": {
  595. name: "Lizard",
  596. parents: ["reptile"]
  597. },
  598. "salamander": {
  599. name: "Salamander",
  600. parents: ["lizard"]
  601. },
  602. "chameleon": {
  603. name: "Chameleon",
  604. parents: ["lizard"]
  605. },
  606. "gecko": {
  607. name: "Gecko",
  608. parents: ["lizard"]
  609. },
  610. "kobold": {
  611. name: "Kobold",
  612. parents: ["reptile"]
  613. },
  614. "charizard": {
  615. name: "Charizard",
  616. parents: ["pokemon"]
  617. },
  618. "lugia": {
  619. name: "Lugia",
  620. parents: ["pokemon"]
  621. },
  622. "cerberus": {
  623. name: "Cerberus",
  624. parents: ["dog"]
  625. },
  626. "tyrantrum": {
  627. name: "Tyrantrum",
  628. parents: ["pokemon"]
  629. },
  630. "lemur": {
  631. name: "Lemur",
  632. parents: ["mammal"]
  633. },
  634. "kelpie": {
  635. name: "Kelpie",
  636. parents: ["horse", "monster"]
  637. },
  638. "labrador": {
  639. name: "Labrador",
  640. parents: ["dog"]
  641. },
  642. "sylveon": {
  643. name: "Sylveon",
  644. parents: ["eeveelution"]
  645. },
  646. "eeveelution": {
  647. name: "Eeveelution",
  648. parents: ["pokemon"]
  649. },
  650. "polar-bear": {
  651. name: "Polar Bear",
  652. parents: ["bear"]
  653. },
  654. "bear": {
  655. name: "Bear",
  656. parents: ["mammal"]
  657. },
  658. "absol": {
  659. name: "Absol",
  660. parents: ["pokemon"]
  661. },
  662. "wolver": {
  663. name: "Wolver",
  664. parents: ["mammal"]
  665. },
  666. "rottweiler": {
  667. name: "Rottweiler",
  668. parents: ["dog"]
  669. },
  670. "zebra": {
  671. name: "Zebra",
  672. parents: ["horse"]
  673. },
  674. "yoshi": {
  675. name: "Yoshi",
  676. parents: ["lizard"]
  677. },
  678. "lynx": {
  679. name: "Lynx",
  680. parents: ["cat"]
  681. },
  682. "unknown": {
  683. name: "Unknown",
  684. parents: []
  685. },
  686. "thylacine": {
  687. name: "Thylacine",
  688. parents: ["mammal"]
  689. },
  690. "gabumon": {
  691. name: "Gabumon",
  692. parents: ["digimon"]
  693. },
  694. "border-collie": {
  695. name: "Border Collie",
  696. parents: ["dog"]
  697. },
  698. "imp": {
  699. name: "Imp",
  700. parents: ["demon"]
  701. },
  702. "kangaroo": {
  703. name: "Kangaroo",
  704. parents: ["marsupial"]
  705. },
  706. "renamon": {
  707. name: "Renamon",
  708. parents: ["digimon"]
  709. },
  710. "candy-orca-dragon": {
  711. name: "Candy Orca Dragon",
  712. parents: ["fish", "dragon", "candy"]
  713. },
  714. "sabertooth-tiger": {
  715. name: "Sabertooth Tiger",
  716. parents: ["cat"]
  717. },
  718. "espurr": {
  719. name: "Espurr",
  720. parents: ["pokemon"]
  721. },
  722. "otter": {
  723. name: "Otter",
  724. parents: ["mustelid"]
  725. },
  726. "elemental": {
  727. name: "Elemental",
  728. parents: ["mammal"]
  729. },
  730. "mew": {
  731. name: "Mew",
  732. parents: ["pokemon"]
  733. },
  734. "goodra": {
  735. name: "Goodra",
  736. parents: ["pokemon"]
  737. },
  738. "fairy": {
  739. name: "Fairy",
  740. parents: ["magical"]
  741. },
  742. "typhlosion": {
  743. name: "Typhlosion",
  744. parents: ["pokemon"]
  745. },
  746. "magical": {
  747. name: "Magical",
  748. parents: []
  749. },
  750. "xenomorph": {
  751. name: "Xenomorph",
  752. parents: ["monster", "alien"]
  753. },
  754. "charr": {
  755. name: "Charr",
  756. parents: ["cat"]
  757. },
  758. "siberian-husky": {
  759. name: "Siberian Husky",
  760. parents: ["husky"]
  761. },
  762. "alligator": {
  763. name: "Alligator",
  764. parents: ["reptile"]
  765. },
  766. "bernese-mountain-dog": {
  767. name: "Bernese Mountain Dog",
  768. parents: ["dog"]
  769. },
  770. "reshiram": {
  771. name: "Reshiram",
  772. parents: ["pokemon"]
  773. },
  774. "grizzly-bear": {
  775. name: "Grizzly Bear",
  776. parents: ["bear"]
  777. },
  778. "water-monitor": {
  779. name: "Water Monitor",
  780. parents: ["lizard"]
  781. },
  782. "banchofossa": {
  783. name: "Banchofossa",
  784. parents: ["mammal"]
  785. },
  786. "kirin": {
  787. name: "Kirin",
  788. parents: ["monster"]
  789. },
  790. "quilava": {
  791. name: "Quilava",
  792. parents: ["pokemon"]
  793. },
  794. "seviper": {
  795. name: "Seviper",
  796. parents: ["pokemon"]
  797. },
  798. "flying-fox": {
  799. name: "Flying Fox",
  800. parents: ["bat"]
  801. },
  802. "keynain": {
  803. name: "Keynain",
  804. parents: ["avian"]
  805. },
  806. "lucario": {
  807. name: "Lucario",
  808. parents: ["pokemon"]
  809. },
  810. "siamese-cat": {
  811. name: "Siamese Cat",
  812. parents: ["cat"]
  813. },
  814. "spider": {
  815. name: "Spider",
  816. parents: ["insect"]
  817. },
  818. "samurott": {
  819. name: "Samurott",
  820. parents: ["pokemon"]
  821. },
  822. "megalodon": {
  823. name: "Megalodon",
  824. parents: ["shark"]
  825. },
  826. "unicorn": {
  827. name: "Unicorn",
  828. parents: ["horse"]
  829. },
  830. "greninja": {
  831. name: "Greninja",
  832. parents: ["pokemon"]
  833. },
  834. "water-dragon": {
  835. name: "Water Dragon",
  836. parents: ["dragon"]
  837. },
  838. "cross-fox": {
  839. name: "Cross Fox",
  840. parents: ["fox"]
  841. },
  842. "synth": {
  843. name: "Synth",
  844. parents: ["machine"]
  845. },
  846. "construct": {
  847. name: "Construct",
  848. parents: []
  849. },
  850. "mexican-wolf": {
  851. name: "Mexican Wolf",
  852. parents: ["wolf"]
  853. },
  854. "leopard": {
  855. name: "Leopard",
  856. parents: ["cat"]
  857. },
  858. "pig": {
  859. name: "Pig",
  860. parents: ["mammal"]
  861. },
  862. "ampharos": {
  863. name: "Ampharos",
  864. parents: ["pokemon"]
  865. },
  866. "orca": {
  867. name: "Orca",
  868. parents: ["fish"]
  869. },
  870. "lycanroc": {
  871. name: "Lycanroc",
  872. parents: ["pokemon"]
  873. },
  874. "surkanu": {
  875. name: "Surkanu",
  876. parents: ["monster"]
  877. },
  878. "seal": {
  879. name: "Seal",
  880. parents: ["mammal"]
  881. },
  882. "keldeo": {
  883. name: "Keldeo",
  884. parents: ["pokemon"]
  885. },
  886. "great-dane": {
  887. name: "Great Dane",
  888. parents: ["dog"]
  889. },
  890. "black-backed-jackal": {
  891. name: "Black Backed Jackal",
  892. parents: ["jackal"]
  893. },
  894. "sheep": {
  895. name: "Sheep",
  896. parents: ["mammal"]
  897. },
  898. "leopard-seal": {
  899. name: "Leopard Seal",
  900. parents: ["seal"]
  901. },
  902. "zoroark": {
  903. name: "Zoroark",
  904. parents: ["pokemon"]
  905. },
  906. "maned-wolf": {
  907. name: "Maned Wolf",
  908. parents: ["canine"]
  909. },
  910. "dracha": {
  911. name: "Dracha",
  912. parents: ["dragon"]
  913. },
  914. "wolxi": {
  915. name: "Wolxi",
  916. parents: ["mammal", "alien"]
  917. },
  918. "dratini": {
  919. name: "Dratini",
  920. parents: ["pokemon", "dragon"]
  921. },
  922. "skaven": {
  923. name: "Skaven",
  924. parents: ["rat"]
  925. },
  926. "mongoose": {
  927. name: "Mongoose",
  928. parents: ["mammal"]
  929. },
  930. "lopunny": {
  931. name: "Lopunny",
  932. parents: ["pokemon", "rabbit"]
  933. },
  934. "feraligatr": {
  935. name: "Feraligatr",
  936. parents: ["pokemon", "alligator"]
  937. },
  938. "houndoom": {
  939. name: "Houndoom",
  940. parents: ["pokemon", "dog"]
  941. },
  942. "protogen": {
  943. name: "Protogen",
  944. parents: ["machine"]
  945. },
  946. "saint-bernard": {
  947. name: "Saint Bernard",
  948. parents: ["dog"]
  949. },
  950. "crow": {
  951. name: "Crow",
  952. parents: ["corvid"]
  953. },
  954. "delphox": {
  955. name: "Delphox",
  956. parents: ["pokemon", "fox"]
  957. },
  958. "moose": {
  959. name: "Moose",
  960. parents: ["mammal"]
  961. },
  962. "joraxian": {
  963. name: "Joraxian",
  964. parents: ["monster", "canine", "demon"]
  965. },
  966. "nimbat": {
  967. name: "Nimbat",
  968. parents: ["mammal"]
  969. },
  970. "aardwolf": {
  971. name: "Aardwolf",
  972. parents: ["canine"]
  973. },
  974. "fluudrani": {
  975. name: "Fluudrani",
  976. parents: ["animal"]
  977. },
  978. "arcanine": {
  979. name: "Arcanine",
  980. parents: ["pokemon", "dog"]
  981. },
  982. "inteleon": {
  983. name: "Inteleon",
  984. parents: ["pokemon", "fish"]
  985. },
  986. "ninetales": {
  987. name: "Ninetales",
  988. parents: ["pokemon", "kitsune"]
  989. },
  990. "tigrex": {
  991. name: "Tigrex",
  992. parents: ["tiger"]
  993. },
  994. "zorua": {
  995. name: "Zorua",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "vulpix": {
  999. name: "Vulpix",
  1000. parents: ["pokemon", "fox"]
  1001. },
  1002. "barghest": {
  1003. name: "Barghest",
  1004. parents: ["monster"]
  1005. },
  1006. "gray-wolf": {
  1007. name: "Gray Wolf",
  1008. parents: ["wolf"]
  1009. },
  1010. "ruppells-fox": {
  1011. name: "Rüppell's Fox",
  1012. parents: ["fox"]
  1013. },
  1014. "bull-terrier": {
  1015. name: "Bull Terrier",
  1016. parents: ["dog"]
  1017. },
  1018. "european-honey-buzzard": {
  1019. name: "European Honey Buzzard",
  1020. parents: ["avian"]
  1021. },
  1022. "t-rex": {
  1023. name: "Tyrannosaurus Rex",
  1024. parents: ["dinosaur"]
  1025. },
  1026. "mactarian": {
  1027. name: "Mactarian",
  1028. parents: ["shark", "monster"]
  1029. },
  1030. "mewtwo-y": {
  1031. name: "Mewtwo Y",
  1032. parents: ["mewtwo"]
  1033. },
  1034. "mewtwo": {
  1035. name: "Mewtwo",
  1036. parents: ["pokemon"]
  1037. },
  1038. "mew": {
  1039. name: "Mew",
  1040. parents: ["pokemon"]
  1041. },
  1042. "eevee": {
  1043. name: "Eevee",
  1044. parents: ["eeveelution"]
  1045. },
  1046. "mienshao": {
  1047. name: "Mienshao",
  1048. parents: ["pokemon"]
  1049. },
  1050. "sugar-glider": {
  1051. name: "Sugar Glider",
  1052. parents: ["opossum"]
  1053. },
  1054. "spectral-bat": {
  1055. name: "Spectral Bat",
  1056. parents: ["bat"]
  1057. },
  1058. "scolipede": {
  1059. name: "Scolipede",
  1060. parents: ["pokemon", "insect"]
  1061. },
  1062. "jackalope": {
  1063. name: "Jackalope",
  1064. parents: ["rabbit", "antelope"]
  1065. },
  1066. "caracal": {
  1067. name: "Caracal",
  1068. parents: ["cat"]
  1069. },
  1070. "stoat": {
  1071. name: "Stoat",
  1072. parents: ["mammal"]
  1073. },
  1074. "african-golden-cat": {
  1075. name: "African Golden Cat",
  1076. parents: ["cat"]
  1077. },
  1078. "gigantosaurus": {
  1079. name: "Gigantosaurus",
  1080. parents: ["dinosaur"]
  1081. },
  1082. "zorgoia": {
  1083. name: "Zorgoia",
  1084. parents: ["mammal"]
  1085. },
  1086. "monitor-lizard": {
  1087. name: "Monitor Lizard",
  1088. parents: ["lizard"]
  1089. },
  1090. "ziralkia": {
  1091. name: "Ziralkia",
  1092. parents: ["mammal"]
  1093. },
  1094. "kiiasi": {
  1095. name: "Kiiasi",
  1096. parents: ["animal"]
  1097. },
  1098. "synx": {
  1099. name: "Synx",
  1100. parents: ["monster"]
  1101. },
  1102. "panther": {
  1103. name: "Panther",
  1104. parents: ["cat"]
  1105. },
  1106. "azumarill": {
  1107. name: "Azumarill",
  1108. parents: ["pokemon"]
  1109. },
  1110. "river-snaptail": {
  1111. name: "River Snaptail",
  1112. parents: ["otter", "crocodile"]
  1113. },
  1114. "great-blue-heron": {
  1115. name: "Great Blue Heron",
  1116. parents: ["avian"]
  1117. },
  1118. "smeargle": {
  1119. name: "Smeargle",
  1120. parents: ["pokemon"]
  1121. },
  1122. "vendeilen": {
  1123. name: "Vendeilen",
  1124. parents: ["monster"]
  1125. },
  1126. "ventura": {
  1127. name: "Ventura",
  1128. parents: ["canine"]
  1129. },
  1130. "clouded-leopard": {
  1131. name: "Clouded Leopard",
  1132. parents: ["leopard"]
  1133. },
  1134. "argonian": {
  1135. name: "Argonian",
  1136. parents: ["lizard"]
  1137. },
  1138. "salazzle": {
  1139. name: "Salazzle",
  1140. parents: ["pokemon", "lizard"]
  1141. },
  1142. "je-stoff-drachen": {
  1143. name: "Je-Stoff Drachen",
  1144. parents: ["dragon"]
  1145. },
  1146. "finnish-spitz-dog": {
  1147. name: "Finnish Spitz Dog",
  1148. parents: ["dog"]
  1149. },
  1150. "gray-fox": {
  1151. name: "Gray Fox",
  1152. parents: ["fox"]
  1153. },
  1154. "opossum": {
  1155. name: "opossum",
  1156. parents: ["mammal"]
  1157. },
  1158. "antelope": {
  1159. name: "Antelope",
  1160. parents: ["mammal"]
  1161. },
  1162. "weavile": {
  1163. name: "Weavile",
  1164. parents: ["pokemon"]
  1165. },
  1166. "pikachu": {
  1167. name: "Pikachu",
  1168. parents: ["pokemon", "mouse"]
  1169. },
  1170. "grovyle": {
  1171. name: "Grovyle",
  1172. parents: ["pokemon", "plant"]
  1173. },
  1174. "sthara": {
  1175. name: "Sthara",
  1176. parents: ["snow-leopard", "reptile"]
  1177. },
  1178. "star-warrior": {
  1179. name: "Star Warrior",
  1180. parents: ["magical"]
  1181. },
  1182. "dragonoid": {
  1183. name: "Dragonoid",
  1184. parents: ["dragon"]
  1185. },
  1186. "suicune": {
  1187. name: "Suicune",
  1188. parents: ["pokemon"]
  1189. },
  1190. "vole": {
  1191. name: "Vole",
  1192. parents: ["mammal"]
  1193. },
  1194. "blaziken": {
  1195. name: "Blaziken",
  1196. parents: ["pokemon", "avian"]
  1197. },
  1198. "buizel": {
  1199. name: "Buizel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "floatzel": {
  1203. name: "Floatzel",
  1204. parents: ["pokemon", "fish"]
  1205. },
  1206. "umok": {
  1207. name: "Umok",
  1208. parents: ["avian"]
  1209. },
  1210. "sea-monster": {
  1211. name: "Sea Monster",
  1212. parents: ["monster", "fish"]
  1213. },
  1214. "egyptian-vulture": {
  1215. name: "Egyptian Vulture",
  1216. parents: ["avian"]
  1217. },
  1218. "doberman": {
  1219. name: "Doberman",
  1220. parents: ["dog"]
  1221. },
  1222. "zangoose": {
  1223. name: "Zangoose",
  1224. parents: ["pokemon", "mongoose"]
  1225. },
  1226. "mongoose": {
  1227. name: "Mongoose",
  1228. parents: ["mammal"]
  1229. },
  1230. "wickerbeast": {
  1231. name: "Wickerbeast",
  1232. parents: ["monster"]
  1233. },
  1234. "zenari": {
  1235. name: "Zenari",
  1236. parents: ["lizard"]
  1237. },
  1238. "plant": {
  1239. name: "Plant",
  1240. parents: []
  1241. },
  1242. "raskatox": {
  1243. name: "Raskatox",
  1244. parents: ["raccoon", "skunk", "cat", "fox"]
  1245. },
  1246. "mikromare": {
  1247. name: "mikromare",
  1248. parents: ["alien"]
  1249. },
  1250. "alien": {
  1251. name: "Alien",
  1252. parents: ["animal"]
  1253. },
  1254. "deity": {
  1255. name: "Deity",
  1256. parents: []
  1257. },
  1258. "skarlan": {
  1259. name: "Skarlan",
  1260. parents: ["slug", "dragon"]
  1261. },
  1262. "slug": {
  1263. name: "Slug",
  1264. parents: ["mollusk"]
  1265. },
  1266. "mollusk": {
  1267. name: "Mollusk",
  1268. parents: ["animal"]
  1269. },
  1270. "chimera": {
  1271. name: "Chimera",
  1272. parents: ["monster"]
  1273. },
  1274. "gestalt": {
  1275. name: "Gestalt",
  1276. parents: ["construct"]
  1277. },
  1278. "mimic": {
  1279. name: "Mimic",
  1280. parents: ["monster"]
  1281. },
  1282. "calico-rat": {
  1283. name: "Calico Rat",
  1284. parents: ["rat"]
  1285. },
  1286. "panda": {
  1287. name: "Panda",
  1288. parents: ["mammal"]
  1289. },
  1290. "oni": {
  1291. name: "Oni",
  1292. parents: ["monster"]
  1293. },
  1294. "pegasus": {
  1295. name: "Pegasus",
  1296. parents: ["horse"]
  1297. },
  1298. "vulpera": {
  1299. name: "Vulpera",
  1300. parents: ["fennec-fox"]
  1301. },
  1302. "ceratosaurus": {
  1303. name: "Ceratosaurus",
  1304. parents: ["dinosaur"]
  1305. },
  1306. "nykur": {
  1307. name: "Nykur",
  1308. parents: ["horse", "monster"]
  1309. },
  1310. "giraffe": {
  1311. name: "Giraffe",
  1312. parents: ["mammal"]
  1313. },
  1314. "tauren": {
  1315. name: "Tauren",
  1316. parents: ["cow"]
  1317. },
  1318. "draconi": {
  1319. name: "Draconi",
  1320. parents: ["alien", "cat", "cyborg"]
  1321. },
  1322. "dire-wolf": {
  1323. name: "Dire Wolf",
  1324. parents: ["wolf"]
  1325. },
  1326. "ferromorph": {
  1327. name: "Ferromorph",
  1328. parents: ["construct"]
  1329. },
  1330. "meowth": {
  1331. name: "Meowth",
  1332. parents: ["cat", "pokemon"]
  1333. },
  1334. "pavodragon": {
  1335. name: "Pavodragon",
  1336. parents: ["dragon"]
  1337. },
  1338. "aaltranae": {
  1339. name: "Aaltranae",
  1340. parents: ["dragon"]
  1341. },
  1342. "cyborg": {
  1343. name: "Cyborg",
  1344. parents: ["machine"]
  1345. },
  1346. "draptor": {
  1347. name: "Draptor",
  1348. parents: ["dragon"]
  1349. },
  1350. "candy": {
  1351. name: "Candy",
  1352. parents: []
  1353. },
  1354. "drenath": {
  1355. name: "Drenath",
  1356. parents: ["dragon", "snake", "rabbit"]
  1357. },
  1358. "coyju": {
  1359. name: "Coyju",
  1360. parents: ["coyote", "kaiju"]
  1361. },
  1362. "kaiju": {
  1363. name: "Kaiju",
  1364. parents: ["monster"]
  1365. },
  1366. "nickit": {
  1367. name: "Nickit",
  1368. parents: ["pokemon", "cat"]
  1369. },
  1370. "lopunny": {
  1371. name: "Lopunny",
  1372. parents: ["pokemon", "rabbit"]
  1373. },
  1374. "korean-jindo-dog": {
  1375. name: "Korean Jindo Dog",
  1376. parents: ["dog"]
  1377. },
  1378. "naga": {
  1379. name: "Naga",
  1380. parents: ["snake", "monster"]
  1381. },
  1382. "undead": {
  1383. name: "Undead",
  1384. parents: ["monster"]
  1385. },
  1386. "whale": {
  1387. name: "Whale",
  1388. parents: ["fish"]
  1389. },
  1390. "gelato-bee": {
  1391. name: "Gelato Bee",
  1392. parents: ["bee"]
  1393. },
  1394. "bee": {
  1395. name: "Bee",
  1396. parents: ["insect"]
  1397. },
  1398. "gardevoir": {
  1399. name: "Gardevoir",
  1400. parents: ["pokemon"]
  1401. },
  1402. "ant": {
  1403. name: "Ant",
  1404. parents: ["insect"]
  1405. },
  1406. "frog": {
  1407. name: "Frog",
  1408. parents: ["amphibian"]
  1409. },
  1410. "amphibian": {
  1411. name: "Amphibian",
  1412. parents: ["animal"]
  1413. },
  1414. "pangolin": {
  1415. name: "Pangolin",
  1416. parents: ["mammal"]
  1417. },
  1418. "uragi'viidorn": {
  1419. name: "Uragi'viidorn",
  1420. parents: ["avian", "bear"]
  1421. },
  1422. "gryphdelphais": {
  1423. name: "Gryphdelphais",
  1424. parents: ["dolphin", "gryphon"]
  1425. },
  1426. "plush": {
  1427. name: "Plush",
  1428. parents: ["construct"]
  1429. },
  1430. "draiger": {
  1431. name: "Draiger",
  1432. parents: ["dragon","tiger"]
  1433. },
  1434. "foxsky": {
  1435. name: "Foxsky",
  1436. parents: ["fox", "husky"]
  1437. },
  1438. "umbreon": {
  1439. name: "Umbreon",
  1440. parents: ["eeveelution"]
  1441. },
  1442. "slime-dragon": {
  1443. name: "Slime Dragon",
  1444. parents: ["dragon", "goo"]
  1445. },
  1446. "enderman": {
  1447. name: "Enderman",
  1448. parents: ["monster"]
  1449. },
  1450. "gremlin": {
  1451. name: "Gremlin",
  1452. parents: ["monster"]
  1453. },
  1454. "dragonsune": {
  1455. name: "Dragonsune",
  1456. parents: ["dragon", "kitsune"]
  1457. },
  1458. "ghost": {
  1459. name: "Ghost",
  1460. parents: ["supernatural"]
  1461. },
  1462. "false-vampire-bat": {
  1463. name: "False Vampire Bat",
  1464. parents: ["bat"]
  1465. },
  1466. "succubus": {
  1467. name: "Succubus",
  1468. parents: ["demon"]
  1469. },
  1470. "mia": {
  1471. name: "Mia",
  1472. parents: ["canine"]
  1473. },
  1474. "rainbow": {
  1475. name: "Rainbow",
  1476. parents: ["monster"]
  1477. },
  1478. "solgaleo": {
  1479. name: "Solgaleo",
  1480. parents: ["pokemon"]
  1481. },
  1482. "lucent-nargacuga": {
  1483. name: "Lucent Nargacuga",
  1484. parents: ["monster-hunter"]
  1485. },
  1486. "monster-hunter": {
  1487. name: "Monster Hunter",
  1488. parents: ["monster"]
  1489. },
  1490. "leviathan": {
  1491. "name": "Leviathan",
  1492. "url": "sea-monster"
  1493. },
  1494. "bull": {
  1495. name: "Bull",
  1496. parents: ["mammal"]
  1497. },
  1498. "tanuki": {
  1499. name: "Tanuki",
  1500. parents: ["monster"]
  1501. },
  1502. "chakat": {
  1503. name: "Chakat",
  1504. parents: ["cat"]
  1505. },
  1506. "hydra": {
  1507. name: "Hydra",
  1508. parents: ["monster"]
  1509. },
  1510. "zigzagoon": {
  1511. name: "Zigzagoon",
  1512. parents: ["raccoon", "pokemon"]
  1513. },
  1514. "vulture": {
  1515. name: "Vulture",
  1516. parents: ["avian"]
  1517. },
  1518. "eastern-dragon": {
  1519. name: "Eastern Dragon",
  1520. parents: ["dragon"]
  1521. },
  1522. "gryffon": {
  1523. name: "Gryffon",
  1524. parents: ["phoenix", "red-panda"]
  1525. },
  1526. "amtsvane": {
  1527. name: "Amtsvane",
  1528. parents: ["reptile"]
  1529. },
  1530. "kigavi": {
  1531. name: "Kigavi",
  1532. parents: ["avian"]
  1533. },
  1534. "turian": {
  1535. name: "Turian",
  1536. parents: ["avian"]
  1537. },
  1538. "zeraora": {
  1539. name: "Zeraora",
  1540. parents: ["pokemon"]
  1541. },
  1542. "sandshrew": {
  1543. name: "Sandshrew",
  1544. parents: ["pokemon", "pangolin"]
  1545. },
  1546. "valais-blacknose-sheep": {
  1547. name: "Valais Blacknose Sheep",
  1548. parents: ["sheep"]
  1549. },
  1550. "novaleit": {
  1551. name: "Novaleit",
  1552. parents: ["mammal"]
  1553. },
  1554. "dunnoh": {
  1555. name: "Dunnoh",
  1556. parents: ["mammal"]
  1557. },
  1558. "lunaral-dragon": {
  1559. name: "Lunaral Dragon",
  1560. parents: ["dragon"]
  1561. },
  1562. "arctic-wolf": {
  1563. name: "Arctic Wolf",
  1564. parents: ["wolf"]
  1565. },
  1566. "donkey": {
  1567. name: "Donkey",
  1568. parents: ["horse"]
  1569. },
  1570. "chinchilla": {
  1571. name: "Chinchilla",
  1572. parents: ["rodent"]
  1573. },
  1574. "felkin": {
  1575. name: "Felkin",
  1576. parents: ["dragon"]
  1577. },
  1578. "tykeriel": {
  1579. name: "Tykeriel",
  1580. parents: ["avian"]
  1581. },
  1582. "folf": {
  1583. name: "Folf",
  1584. parents: ["fox", "wolf"]
  1585. },
  1586. "pooltoy": {
  1587. name: "Pooltoy",
  1588. parents: ["construct"]
  1589. },
  1590. "demi": {
  1591. name: "Demi",
  1592. parents: ["human"]
  1593. },
  1594. "stegosaurus": {
  1595. name: "Stegosaurus",
  1596. parents: ["dinosaur"]
  1597. },
  1598. "computer-virus": {
  1599. name: "Computer Virus",
  1600. parents: ["program"]
  1601. },
  1602. "program": {
  1603. name: "Program",
  1604. parents: ["construct"]
  1605. },
  1606. "space-springhare": {
  1607. name: "Space Springhare",
  1608. parents: ["rabbit"]
  1609. },
  1610. "river-drake": {
  1611. name: "River Drake",
  1612. parents: ["dragon"]
  1613. },
  1614. "djinn": {
  1615. "name": "Djinn",
  1616. "url": "supernatural"
  1617. },
  1618. "supernatural": {
  1619. name: "Supernatural",
  1620. parents: ["monster"]
  1621. },
  1622. "grasshopper-mouse": {
  1623. name: "Grasshopper Mouse",
  1624. parents: ["mouse"]
  1625. },
  1626. "somali-cat": {
  1627. name: "Somali Cat",
  1628. parents: ["cat"]
  1629. },
  1630. "minccino": {
  1631. name: "Minccino",
  1632. parents: ["pokemon", "chinchilla"]
  1633. },
  1634. "pine-marten": {
  1635. name: "Pine Marten",
  1636. parents: ["marten"]
  1637. },
  1638. "marten": {
  1639. name: "Marten",
  1640. parents: ["mustelid"]
  1641. },
  1642. "mustelid": {
  1643. name: "Mustelid",
  1644. parents: ["mammal"]
  1645. },
  1646. "caribou": {
  1647. name: "Caribou",
  1648. parents: ["deer"]
  1649. },
  1650. "gnoll": {
  1651. name: "Gnoll",
  1652. parents: ["hyena", "monster"]
  1653. },
  1654. "peacekeeper": {
  1655. name: "Peacekeeper",
  1656. parents: ["human"]
  1657. },
  1658. "river-otter": {
  1659. name: "River Otter",
  1660. parents: ["otter"]
  1661. },
  1662. "dhole": {
  1663. name: "Dhole",
  1664. parents: ["canine"]
  1665. },
  1666. "springbok": {
  1667. name: "Springbok",
  1668. parents: ["antelope"]
  1669. },
  1670. "marsupial": {
  1671. name: "Marsupial",
  1672. parents: ["mammal"]
  1673. },
  1674. "townsend-big-eared-bat": {
  1675. name: "Townsend Big-eared Bat",
  1676. parents: ["bat"]
  1677. },
  1678. "squirrel": {
  1679. name: "Squirrel",
  1680. parents: ["rodent"]
  1681. },
  1682. "magpie": {
  1683. name: "Magpie",
  1684. parents: ["corvid"]
  1685. },
  1686. "civet": {
  1687. name: "Civet",
  1688. parents: ["feliform"]
  1689. },
  1690. "feliform": {
  1691. name: "Feliform",
  1692. parents: ["mammal"]
  1693. },
  1694. "tiefling": {
  1695. name: "Tiefling",
  1696. parents: ["devil"]
  1697. },
  1698. "devil": {
  1699. name: "Devil",
  1700. parents: ["supernatural"]
  1701. },
  1702. "sika-deer": {
  1703. name: "Sika Deer",
  1704. parents: ["deer"]
  1705. },
  1706. "vaporeon": {
  1707. name: "Vaporeon",
  1708. parents: ["eeveelution"]
  1709. },
  1710. "leafeon": {
  1711. name: "Leafeon",
  1712. parents: ["eeveelution"]
  1713. },
  1714. "jolteon": {
  1715. name: "Jolteon",
  1716. parents: ["eeveelution"]
  1717. },
  1718. "spireborn": {
  1719. name: "Spireborn",
  1720. parents: ["zorgoia"]
  1721. },
  1722. "vampire": {
  1723. name: "Vampire",
  1724. parents: ["monster"]
  1725. },
  1726. "extraplanar": {
  1727. name: "Extraplanar",
  1728. parents: []
  1729. },
  1730. "goo": {
  1731. name: "Goo",
  1732. parents: []
  1733. },
  1734. "skink": {
  1735. name: "Skink",
  1736. parents: ["lizard"]
  1737. },
  1738. "bat-eared-fox": {
  1739. name: "Bat-eared Fox",
  1740. parents: ["fox"]
  1741. },
  1742. "belted-kingfisher": {
  1743. name: "Belted Kingfisher",
  1744. parents: ["avian"]
  1745. },
  1746. "omnifalcon": {
  1747. name: "Omnifalcon",
  1748. parents: ["gryphon", "falcon", "harpy-eagle"]
  1749. },
  1750. "falcon": {
  1751. name: "Falcon",
  1752. parents: ["avian"]
  1753. },
  1754. "avali": {
  1755. name: "Avali",
  1756. parents: ["avian", "alien"]
  1757. },
  1758. "arctic-fox": {
  1759. name: "Arctic Fox",
  1760. parents: ["fox"]
  1761. },
  1762. "snow-tiger": {
  1763. name: "Snow Tiger",
  1764. parents: ["tiger"]
  1765. },
  1766. "marble-fox": {
  1767. name: "Marble Fox",
  1768. parents: ["fox"]
  1769. },
  1770. "king-wickerbeast": {
  1771. name: "King Wickerbeast",
  1772. parents: ["wickerbeast"]
  1773. },
  1774. "wickerbeast": {
  1775. name: "Wickerbeast",
  1776. parents: ["mammal"]
  1777. },
  1778. "european-polecat": {
  1779. name: "European Polecat",
  1780. parents: ["mustelid"]
  1781. },
  1782. "teshari": {
  1783. name: "Teshari",
  1784. parents: ["avian", "raptor"]
  1785. },
  1786. "alicorn": {
  1787. name: "Alicorn",
  1788. parents: ["horse"]
  1789. },
  1790. "atlas-moth": {
  1791. name: "Atlas Moth",
  1792. parents: ["moth"]
  1793. },
  1794. }
  1795. //species
  1796. function getSpeciesInfo(speciesList) {
  1797. let result = new Set();
  1798. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1799. result.add(entry)
  1800. });
  1801. return Array.from(result);
  1802. };
  1803. function getSpeciesInfoHelper(species) {
  1804. if (!speciesData[species]) {
  1805. console.warn(species + " doesn't exist");
  1806. return [];
  1807. }
  1808. if (speciesData[species].parents) {
  1809. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1810. } else {
  1811. return [species];
  1812. }
  1813. }
  1814. characterMakers.push(() => makeCharacter(
  1815. {
  1816. name: "Fen",
  1817. species: ["crux"],
  1818. description: {
  1819. title: "Bio",
  1820. text: "Very furry. Sheds on everything."
  1821. },
  1822. tags: [
  1823. "anthro",
  1824. "goo"
  1825. ]
  1826. },
  1827. {
  1828. back: {
  1829. height: math.unit(2.2428, "meter"),
  1830. weight: math.unit(124.738, "kg"),
  1831. name: "Back",
  1832. image: {
  1833. source: "./media/characters/fen/back.svg",
  1834. },
  1835. info: {
  1836. description: {
  1837. mode: "append",
  1838. text: "\n\nHe is not currently looking at you."
  1839. }
  1840. }
  1841. },
  1842. full: {
  1843. height: math.unit(0.91, "meter"),
  1844. weight: math.unit(225, "kg"),
  1845. name: "Full",
  1846. image: {
  1847. source: "./media/characters/fen/full.svg",
  1848. extra: 1133/859,
  1849. bottom: 145/1278
  1850. },
  1851. info: {
  1852. description: {
  1853. mode: "append",
  1854. text: "\n\nMunch."
  1855. }
  1856. }
  1857. },
  1858. kneeling: {
  1859. height: math.unit(5.4, "feet"),
  1860. weight: math.unit(124.738, "kg"),
  1861. name: "Kneeling",
  1862. image: {
  1863. source: "./media/characters/fen/kneeling.svg",
  1864. extra: 563 / 507
  1865. }
  1866. },
  1867. goo: {
  1868. height: math.unit(2.8, "feet"),
  1869. weight: math.unit(125, "kg"),
  1870. capacity: math.unit(1, "people"),
  1871. name: "Goo",
  1872. image: {
  1873. source: "./media/characters/fen/goo.svg",
  1874. bottom: 116 / 613
  1875. }
  1876. },
  1877. lounging: {
  1878. height: math.unit(6.5, "feet"),
  1879. weight: math.unit(125, "kg"),
  1880. name: "Lounging",
  1881. image: {
  1882. source: "./media/characters/fen/lounging.svg"
  1883. }
  1884. },
  1885. },
  1886. [
  1887. {
  1888. name: "Small",
  1889. height: math.unit(2.2428, "meter")
  1890. },
  1891. {
  1892. name: "Normal",
  1893. height: math.unit(12, "feet"),
  1894. default: true,
  1895. },
  1896. {
  1897. name: "Minimacro",
  1898. height: math.unit(40, "feet"),
  1899. info: {
  1900. description: {
  1901. mode: "append",
  1902. text: "\n\nTOO DAMN BIG"
  1903. }
  1904. }
  1905. },
  1906. {
  1907. name: "Macro",
  1908. height: math.unit(100, "feet"),
  1909. info: {
  1910. description: {
  1911. mode: "append",
  1912. text: "\n\nTOO DAMN BIG"
  1913. }
  1914. }
  1915. },
  1916. {
  1917. name: "Macro+",
  1918. height: math.unit(300, "feet")
  1919. },
  1920. {
  1921. name: "Megamacro",
  1922. height: math.unit(2, "miles")
  1923. }
  1924. ]
  1925. ))
  1926. characterMakers.push(() => makeCharacter(
  1927. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1928. {
  1929. front: {
  1930. height: math.unit(183, "cm"),
  1931. weight: math.unit(80, "kg"),
  1932. name: "Front",
  1933. image: {
  1934. source: "./media/characters/sofia-fluttertail/front.svg",
  1935. bottom: 0.01,
  1936. extra: 2154 / 2081
  1937. }
  1938. },
  1939. frontAlt: {
  1940. height: math.unit(183, "cm"),
  1941. weight: math.unit(80, "kg"),
  1942. name: "Front (alt)",
  1943. image: {
  1944. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1945. }
  1946. },
  1947. back: {
  1948. height: math.unit(183, "cm"),
  1949. weight: math.unit(80, "kg"),
  1950. name: "Back",
  1951. image: {
  1952. source: "./media/characters/sofia-fluttertail/back.svg"
  1953. }
  1954. },
  1955. kneeling: {
  1956. height: math.unit(125, "cm"),
  1957. weight: math.unit(80, "kg"),
  1958. name: "Kneeling",
  1959. image: {
  1960. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1961. extra: 1033 / 977,
  1962. bottom: 23.7 / 1057
  1963. }
  1964. },
  1965. maw: {
  1966. height: math.unit(183 / 5, "cm"),
  1967. name: "Maw",
  1968. image: {
  1969. source: "./media/characters/sofia-fluttertail/maw.svg"
  1970. }
  1971. },
  1972. mawcloseup: {
  1973. height: math.unit(183 / 5 * 0.41, "cm"),
  1974. name: "Maw (Closeup)",
  1975. image: {
  1976. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1977. }
  1978. },
  1979. paws: {
  1980. height: math.unit(1.17, "feet"),
  1981. name: "Paws",
  1982. image: {
  1983. source: "./media/characters/sofia-fluttertail/paws.svg",
  1984. extra: 851 / 851,
  1985. bottom: 17 / 868
  1986. }
  1987. },
  1988. },
  1989. [
  1990. {
  1991. name: "Normal",
  1992. height: math.unit(1.83, "meter")
  1993. },
  1994. {
  1995. name: "Size Thief",
  1996. height: math.unit(18, "feet")
  1997. },
  1998. {
  1999. name: "50 Foot Collie",
  2000. height: math.unit(50, "feet")
  2001. },
  2002. {
  2003. name: "Macro",
  2004. height: math.unit(96, "feet"),
  2005. default: true
  2006. },
  2007. {
  2008. name: "Megamerger",
  2009. height: math.unit(650, "feet")
  2010. },
  2011. ]
  2012. ))
  2013. characterMakers.push(() => makeCharacter(
  2014. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2015. {
  2016. front: {
  2017. height: math.unit(7, "feet"),
  2018. weight: math.unit(100, "kg"),
  2019. name: "Front",
  2020. image: {
  2021. source: "./media/characters/march/front.svg",
  2022. extra: 1992/1851,
  2023. bottom: 39/2031
  2024. }
  2025. },
  2026. foot: {
  2027. height: math.unit(0.9, "feet"),
  2028. name: "Foot",
  2029. image: {
  2030. source: "./media/characters/march/foot.svg"
  2031. }
  2032. },
  2033. },
  2034. [
  2035. {
  2036. name: "Normal",
  2037. height: math.unit(7.9, "feet")
  2038. },
  2039. {
  2040. name: "Macro",
  2041. height: math.unit(220, "meters")
  2042. },
  2043. {
  2044. name: "Megamacro",
  2045. height: math.unit(2.98, "km"),
  2046. default: true
  2047. },
  2048. {
  2049. name: "Gigamacro",
  2050. height: math.unit(15963, "km")
  2051. },
  2052. {
  2053. name: "Teramacro",
  2054. height: math.unit(2980000000, "km")
  2055. },
  2056. {
  2057. name: "Examacro",
  2058. height: math.unit(250, "parsecs")
  2059. },
  2060. ]
  2061. ))
  2062. characterMakers.push(() => makeCharacter(
  2063. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2064. {
  2065. front: {
  2066. height: math.unit(6, "feet"),
  2067. weight: math.unit(60, "kg"),
  2068. name: "Front",
  2069. image: {
  2070. source: "./media/characters/noir/front.svg",
  2071. extra: 1,
  2072. bottom: 0.032
  2073. }
  2074. },
  2075. },
  2076. [
  2077. {
  2078. name: "Normal",
  2079. height: math.unit(6.6, "feet")
  2080. },
  2081. {
  2082. name: "Macro",
  2083. height: math.unit(500, "feet")
  2084. },
  2085. {
  2086. name: "Megamacro",
  2087. height: math.unit(2.5, "km"),
  2088. default: true
  2089. },
  2090. {
  2091. name: "Gigamacro",
  2092. height: math.unit(22500, "km")
  2093. },
  2094. {
  2095. name: "Teramacro",
  2096. height: math.unit(2500000000, "km")
  2097. },
  2098. {
  2099. name: "Examacro",
  2100. height: math.unit(200, "parsecs")
  2101. },
  2102. ]
  2103. ))
  2104. characterMakers.push(() => makeCharacter(
  2105. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2106. {
  2107. front: {
  2108. height: math.unit(7, "feet"),
  2109. weight: math.unit(100, "kg"),
  2110. name: "Front",
  2111. image: {
  2112. source: "./media/characters/okuri/front.svg",
  2113. extra: 1,
  2114. bottom: 0.037
  2115. }
  2116. },
  2117. back: {
  2118. height: math.unit(7, "feet"),
  2119. weight: math.unit(100, "kg"),
  2120. name: "Back",
  2121. image: {
  2122. source: "./media/characters/okuri/back.svg",
  2123. extra: 1,
  2124. bottom: 0.007
  2125. }
  2126. },
  2127. },
  2128. [
  2129. {
  2130. name: "Megamacro",
  2131. height: math.unit(100, "miles"),
  2132. default: true
  2133. },
  2134. ]
  2135. ))
  2136. characterMakers.push(() => makeCharacter(
  2137. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2138. {
  2139. front: {
  2140. height: math.unit(7, "feet"),
  2141. weight: math.unit(100, "kg"),
  2142. name: "Front",
  2143. image: {
  2144. source: "./media/characters/manny/front.svg",
  2145. extra: 1,
  2146. bottom: 0.06
  2147. }
  2148. },
  2149. back: {
  2150. height: math.unit(7, "feet"),
  2151. weight: math.unit(100, "kg"),
  2152. name: "Back",
  2153. image: {
  2154. source: "./media/characters/manny/back.svg",
  2155. extra: 1,
  2156. bottom: 0.014
  2157. }
  2158. },
  2159. },
  2160. [
  2161. {
  2162. name: "Normal",
  2163. height: math.unit(7, "feet"),
  2164. },
  2165. {
  2166. name: "Macro",
  2167. height: math.unit(78, "feet"),
  2168. default: true
  2169. },
  2170. {
  2171. name: "Macro+",
  2172. height: math.unit(300, "meters")
  2173. },
  2174. {
  2175. name: "Macro++",
  2176. height: math.unit(2400, "meters")
  2177. },
  2178. {
  2179. name: "Megamacro",
  2180. height: math.unit(5167, "meters")
  2181. },
  2182. {
  2183. name: "Gigamacro",
  2184. height: math.unit(41769, "miles")
  2185. },
  2186. ]
  2187. ))
  2188. characterMakers.push(() => makeCharacter(
  2189. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2190. {
  2191. front: {
  2192. height: math.unit(7, "feet"),
  2193. weight: math.unit(100, "kg"),
  2194. name: "Front",
  2195. image: {
  2196. source: "./media/characters/adake/front-1.svg"
  2197. }
  2198. },
  2199. frontAlt: {
  2200. height: math.unit(7, "feet"),
  2201. weight: math.unit(100, "kg"),
  2202. name: "Front (Alt)",
  2203. image: {
  2204. source: "./media/characters/adake/front-2.svg",
  2205. extra: 1,
  2206. bottom: 0.01
  2207. }
  2208. },
  2209. back: {
  2210. height: math.unit(7, "feet"),
  2211. weight: math.unit(100, "kg"),
  2212. name: "Back",
  2213. image: {
  2214. source: "./media/characters/adake/back.svg",
  2215. }
  2216. },
  2217. kneel: {
  2218. height: math.unit(5.385, "feet"),
  2219. weight: math.unit(100, "kg"),
  2220. name: "Kneeling",
  2221. image: {
  2222. source: "./media/characters/adake/kneel.svg",
  2223. bottom: 0.052
  2224. }
  2225. },
  2226. },
  2227. [
  2228. {
  2229. name: "Normal",
  2230. height: math.unit(7, "feet"),
  2231. },
  2232. {
  2233. name: "Macro",
  2234. height: math.unit(78, "feet"),
  2235. default: true
  2236. },
  2237. {
  2238. name: "Macro+",
  2239. height: math.unit(300, "meters")
  2240. },
  2241. {
  2242. name: "Macro++",
  2243. height: math.unit(2400, "meters")
  2244. },
  2245. {
  2246. name: "Megamacro",
  2247. height: math.unit(5167, "meters")
  2248. },
  2249. {
  2250. name: "Gigamacro",
  2251. height: math.unit(41769, "miles")
  2252. },
  2253. ]
  2254. ))
  2255. characterMakers.push(() => makeCharacter(
  2256. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2257. {
  2258. front: {
  2259. height: math.unit(1.65, "meters"),
  2260. weight: math.unit(50, "kg"),
  2261. name: "Front",
  2262. image: {
  2263. source: "./media/characters/elijah/front.svg",
  2264. extra: 858 / 830,
  2265. bottom: 95.5 / 953.8559
  2266. }
  2267. },
  2268. back: {
  2269. height: math.unit(1.65, "meters"),
  2270. weight: math.unit(50, "kg"),
  2271. name: "Back",
  2272. image: {
  2273. source: "./media/characters/elijah/back.svg",
  2274. extra: 895 / 850,
  2275. bottom: 5.3 / 897.956
  2276. }
  2277. },
  2278. frontNsfw: {
  2279. height: math.unit(1.65, "meters"),
  2280. weight: math.unit(50, "kg"),
  2281. name: "Front (NSFW)",
  2282. image: {
  2283. source: "./media/characters/elijah/front-nsfw.svg",
  2284. extra: 858 / 830,
  2285. bottom: 95.5 / 953.8559
  2286. }
  2287. },
  2288. backNsfw: {
  2289. height: math.unit(1.65, "meters"),
  2290. weight: math.unit(50, "kg"),
  2291. name: "Back (NSFW)",
  2292. image: {
  2293. source: "./media/characters/elijah/back-nsfw.svg",
  2294. extra: 895 / 850,
  2295. bottom: 5.3 / 897.956
  2296. }
  2297. },
  2298. dick: {
  2299. height: math.unit(1, "feet"),
  2300. name: "Dick",
  2301. image: {
  2302. source: "./media/characters/elijah/dick.svg"
  2303. }
  2304. },
  2305. beakOpen: {
  2306. height: math.unit(1.25, "feet"),
  2307. name: "Beak (Open)",
  2308. image: {
  2309. source: "./media/characters/elijah/beak-open.svg"
  2310. }
  2311. },
  2312. beakShut: {
  2313. height: math.unit(1.25, "feet"),
  2314. name: "Beak (Shut)",
  2315. image: {
  2316. source: "./media/characters/elijah/beak-shut.svg"
  2317. }
  2318. },
  2319. footFlexing: {
  2320. height: math.unit(1.61, "feet"),
  2321. name: "Foot (Flexing)",
  2322. image: {
  2323. source: "./media/characters/elijah/foot-flexing.svg"
  2324. }
  2325. },
  2326. footStepping: {
  2327. height: math.unit(1.44, "feet"),
  2328. name: "Foot (Stepping)",
  2329. image: {
  2330. source: "./media/characters/elijah/foot-stepping.svg"
  2331. }
  2332. },
  2333. plantigradeLeg: {
  2334. height: math.unit(2.34, "feet"),
  2335. name: "Plantigrade Leg",
  2336. image: {
  2337. source: "./media/characters/elijah/plantigrade-leg.svg"
  2338. }
  2339. },
  2340. plantigradeFootLeft: {
  2341. height: math.unit(0.9, "feet"),
  2342. name: "Plantigrade Foot (Left)",
  2343. image: {
  2344. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2345. }
  2346. },
  2347. plantigradeFootRight: {
  2348. height: math.unit(0.9, "feet"),
  2349. name: "Plantigrade Foot (Right)",
  2350. image: {
  2351. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2352. }
  2353. },
  2354. },
  2355. [
  2356. {
  2357. name: "Normal",
  2358. height: math.unit(1.65, "meters")
  2359. },
  2360. {
  2361. name: "Macro",
  2362. height: math.unit(55, "meters"),
  2363. default: true
  2364. },
  2365. {
  2366. name: "Macro+",
  2367. height: math.unit(105, "meters")
  2368. },
  2369. ]
  2370. ))
  2371. characterMakers.push(() => makeCharacter(
  2372. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2373. {
  2374. front: {
  2375. height: math.unit(7 + 2/12, "feet"),
  2376. weight: math.unit(320, "kg"),
  2377. name: "Front",
  2378. image: {
  2379. source: "./media/characters/rai/front.svg",
  2380. extra: 1802/1696,
  2381. bottom: 68/1870
  2382. }
  2383. },
  2384. frontDressed: {
  2385. height: math.unit(7 + 2/12, "feet"),
  2386. weight: math.unit(320, "kg"),
  2387. name: "Front (Dressed)",
  2388. image: {
  2389. source: "./media/characters/rai/front-dressed.svg",
  2390. extra: 1802/1696,
  2391. bottom: 68/1870
  2392. }
  2393. },
  2394. side: {
  2395. height: math.unit(7 + 2/12, "feet"),
  2396. weight: math.unit(320, "kg"),
  2397. name: "Side",
  2398. image: {
  2399. source: "./media/characters/rai/side.svg",
  2400. extra: 1789/1710,
  2401. bottom: 115/1904
  2402. }
  2403. },
  2404. back: {
  2405. height: math.unit(7 + 2/12, "feet"),
  2406. weight: math.unit(320, "kg"),
  2407. name: "Back",
  2408. image: {
  2409. source: "./media/characters/rai/back.svg",
  2410. extra: 1770/1707,
  2411. bottom: 28/1798
  2412. }
  2413. },
  2414. feral: {
  2415. height: math.unit(9.5, "feet"),
  2416. weight: math.unit(640, "kg"),
  2417. name: "Feral",
  2418. image: {
  2419. source: "./media/characters/rai/feral.svg",
  2420. extra: 945/553,
  2421. bottom: 176/1121
  2422. }
  2423. },
  2424. dragon: {
  2425. height: math.unit(23, "feet"),
  2426. weight: math.unit(50000, "lb"),
  2427. name: "Dragon",
  2428. image: {
  2429. source: "./media/characters/rai/dragon.svg",
  2430. extra: 2498 / 2030,
  2431. bottom: 85.2 / 2584
  2432. }
  2433. },
  2434. maw: {
  2435. height: math.unit(1.69, "feet"),
  2436. name: "Maw",
  2437. image: {
  2438. source: "./media/characters/rai/maw.svg"
  2439. }
  2440. },
  2441. },
  2442. [
  2443. {
  2444. name: "Normal",
  2445. height: math.unit(7 + 2/12, "feet")
  2446. },
  2447. {
  2448. name: "Big",
  2449. height: math.unit(11, "feet")
  2450. },
  2451. {
  2452. name: "Macro",
  2453. height: math.unit(302, "feet"),
  2454. default: true
  2455. },
  2456. ]
  2457. ))
  2458. characterMakers.push(() => makeCharacter(
  2459. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2460. {
  2461. frontDressed: {
  2462. height: math.unit(216, "feet"),
  2463. weight: math.unit(7000000, "lb"),
  2464. name: "Front (Dressed)",
  2465. image: {
  2466. source: "./media/characters/jazzy/front-dressed.svg",
  2467. extra: 2738 / 2651,
  2468. bottom: 41.8 / 2786
  2469. }
  2470. },
  2471. backDressed: {
  2472. height: math.unit(216, "feet"),
  2473. weight: math.unit(7000000, "lb"),
  2474. name: "Back (Dressed)",
  2475. image: {
  2476. source: "./media/characters/jazzy/back-dressed.svg",
  2477. extra: 2775 / 2673,
  2478. bottom: 36.8 / 2817
  2479. }
  2480. },
  2481. front: {
  2482. height: math.unit(216, "feet"),
  2483. weight: math.unit(7000000, "lb"),
  2484. name: "Front",
  2485. image: {
  2486. source: "./media/characters/jazzy/front.svg",
  2487. extra: 2738 / 2651,
  2488. bottom: 41.8 / 2786
  2489. }
  2490. },
  2491. back: {
  2492. height: math.unit(216, "feet"),
  2493. weight: math.unit(7000000, "lb"),
  2494. name: "Back",
  2495. image: {
  2496. source: "./media/characters/jazzy/back.svg",
  2497. extra: 2775 / 2673,
  2498. bottom: 36.8 / 2817
  2499. }
  2500. },
  2501. maw: {
  2502. height: math.unit(20, "feet"),
  2503. name: "Maw",
  2504. image: {
  2505. source: "./media/characters/jazzy/maw.svg"
  2506. }
  2507. },
  2508. paws: {
  2509. height: math.unit(27.5, "feet"),
  2510. name: "Paws",
  2511. image: {
  2512. source: "./media/characters/jazzy/paws.svg"
  2513. }
  2514. },
  2515. eye: {
  2516. height: math.unit(4.4, "feet"),
  2517. name: "Eye",
  2518. image: {
  2519. source: "./media/characters/jazzy/eye.svg"
  2520. }
  2521. },
  2522. droneOffense: {
  2523. height: math.unit(9.5, "inches"),
  2524. name: "Drone (Offense)",
  2525. image: {
  2526. source: "./media/characters/jazzy/drone-offense.svg"
  2527. }
  2528. },
  2529. droneRecon: {
  2530. height: math.unit(9.5, "inches"),
  2531. name: "Drone (Recon)",
  2532. image: {
  2533. source: "./media/characters/jazzy/drone-recon.svg"
  2534. }
  2535. },
  2536. droneDefense: {
  2537. height: math.unit(9.5, "inches"),
  2538. name: "Drone (Defense)",
  2539. image: {
  2540. source: "./media/characters/jazzy/drone-defense.svg"
  2541. }
  2542. },
  2543. },
  2544. [
  2545. {
  2546. name: "Macro",
  2547. height: math.unit(216, "feet"),
  2548. default: true
  2549. },
  2550. ]
  2551. ))
  2552. characterMakers.push(() => makeCharacter(
  2553. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2554. {
  2555. front: {
  2556. height: math.unit(9 + 6/12, "feet"),
  2557. weight: math.unit(700, "lb"),
  2558. name: "Front",
  2559. image: {
  2560. source: "./media/characters/flamm/front.svg",
  2561. extra: 1751/1632,
  2562. bottom: 46/1797
  2563. }
  2564. },
  2565. buff: {
  2566. height: math.unit(9 + 6/12, "feet"),
  2567. weight: math.unit(950, "lb"),
  2568. name: "Buff",
  2569. image: {
  2570. source: "./media/characters/flamm/buff.svg",
  2571. extra: 3018/2874,
  2572. bottom: 221/3239
  2573. }
  2574. },
  2575. },
  2576. [
  2577. {
  2578. name: "Normal",
  2579. height: math.unit(9.5, "feet")
  2580. },
  2581. {
  2582. name: "Macro",
  2583. height: math.unit(200, "feet"),
  2584. default: true
  2585. },
  2586. ]
  2587. ))
  2588. characterMakers.push(() => makeCharacter(
  2589. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2590. {
  2591. front: {
  2592. height: math.unit(5 + 3/12, "feet"),
  2593. weight: math.unit(60, "kg"),
  2594. name: "Front",
  2595. image: {
  2596. source: "./media/characters/zephiro/front.svg",
  2597. extra: 2309 / 2162,
  2598. bottom: 0.069
  2599. }
  2600. },
  2601. side: {
  2602. height: math.unit(5 + 3/12, "feet"),
  2603. weight: math.unit(60, "kg"),
  2604. name: "Side",
  2605. image: {
  2606. source: "./media/characters/zephiro/side.svg",
  2607. extra: 2403 / 2279,
  2608. bottom: 0.015
  2609. }
  2610. },
  2611. back: {
  2612. height: math.unit(5 + 3/12, "feet"),
  2613. weight: math.unit(60, "kg"),
  2614. name: "Back",
  2615. image: {
  2616. source: "./media/characters/zephiro/back.svg",
  2617. extra: 2373 / 2244,
  2618. bottom: 0.013
  2619. }
  2620. },
  2621. hand: {
  2622. height: math.unit(0.68, "feet"),
  2623. name: "Hand",
  2624. image: {
  2625. source: "./media/characters/zephiro/hand.svg"
  2626. }
  2627. },
  2628. paw: {
  2629. height: math.unit(1, "feet"),
  2630. name: "Paw",
  2631. image: {
  2632. source: "./media/characters/zephiro/paw.svg"
  2633. }
  2634. },
  2635. beans: {
  2636. height: math.unit(0.93, "feet"),
  2637. name: "Beans",
  2638. image: {
  2639. source: "./media/characters/zephiro/beans.svg"
  2640. }
  2641. },
  2642. },
  2643. [
  2644. {
  2645. name: "Micro",
  2646. height: math.unit(3, "inches")
  2647. },
  2648. {
  2649. name: "Normal",
  2650. height: math.unit(5 + 3 / 12, "feet"),
  2651. default: true
  2652. },
  2653. {
  2654. name: "Macro",
  2655. height: math.unit(118, "feet")
  2656. },
  2657. ]
  2658. ))
  2659. characterMakers.push(() => makeCharacter(
  2660. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2661. {
  2662. front: {
  2663. height: math.unit(5, "feet"),
  2664. weight: math.unit(90, "kg"),
  2665. name: "Front",
  2666. image: {
  2667. source: "./media/characters/fory/front.svg",
  2668. extra: 2862 / 2674,
  2669. bottom: 180 / 3043.8
  2670. }
  2671. },
  2672. back: {
  2673. height: math.unit(5, "feet"),
  2674. weight: math.unit(90, "kg"),
  2675. name: "Back",
  2676. image: {
  2677. source: "./media/characters/fory/back.svg",
  2678. extra: 2962 / 2791,
  2679. bottom: 106 / 3071.8
  2680. }
  2681. },
  2682. foot: {
  2683. height: math.unit(2.14, "feet"),
  2684. name: "Foot",
  2685. image: {
  2686. source: "./media/characters/fory/foot.svg"
  2687. }
  2688. },
  2689. },
  2690. [
  2691. {
  2692. name: "Normal",
  2693. height: math.unit(5, "feet")
  2694. },
  2695. {
  2696. name: "Macro",
  2697. height: math.unit(50, "feet"),
  2698. default: true
  2699. },
  2700. {
  2701. name: "Megamacro",
  2702. height: math.unit(10, "miles")
  2703. },
  2704. {
  2705. name: "Gigamacro",
  2706. height: math.unit(5, "earths")
  2707. },
  2708. ]
  2709. ))
  2710. characterMakers.push(() => makeCharacter(
  2711. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2712. {
  2713. front: {
  2714. height: math.unit(7, "feet"),
  2715. weight: math.unit(90, "kg"),
  2716. name: "Front",
  2717. image: {
  2718. source: "./media/characters/kurrikage/front.svg",
  2719. extra: 1845/1733,
  2720. bottom: 119/1964
  2721. }
  2722. },
  2723. back: {
  2724. height: math.unit(7, "feet"),
  2725. weight: math.unit(90, "kg"),
  2726. name: "Back",
  2727. image: {
  2728. source: "./media/characters/kurrikage/back.svg",
  2729. extra: 1790/1677,
  2730. bottom: 61/1851
  2731. }
  2732. },
  2733. dressed: {
  2734. height: math.unit(7, "feet"),
  2735. weight: math.unit(90, "kg"),
  2736. name: "Dressed",
  2737. image: {
  2738. source: "./media/characters/kurrikage/dressed.svg",
  2739. extra: 1845/1733,
  2740. bottom: 119/1964
  2741. }
  2742. },
  2743. foot: {
  2744. height: math.unit(1.5, "feet"),
  2745. name: "Foot",
  2746. image: {
  2747. source: "./media/characters/kurrikage/foot.svg"
  2748. }
  2749. },
  2750. staff: {
  2751. height: math.unit(6.7, "feet"),
  2752. name: "Staff",
  2753. image: {
  2754. source: "./media/characters/kurrikage/staff.svg"
  2755. }
  2756. },
  2757. peek: {
  2758. height: math.unit(1.05, "feet"),
  2759. name: "Peeking",
  2760. image: {
  2761. source: "./media/characters/kurrikage/peek.svg",
  2762. bottom: 0.08
  2763. }
  2764. },
  2765. },
  2766. [
  2767. {
  2768. name: "Normal",
  2769. height: math.unit(12, "feet"),
  2770. default: true
  2771. },
  2772. {
  2773. name: "Big",
  2774. height: math.unit(20, "feet")
  2775. },
  2776. {
  2777. name: "Macro",
  2778. height: math.unit(500, "feet")
  2779. },
  2780. {
  2781. name: "Megamacro",
  2782. height: math.unit(20, "miles")
  2783. },
  2784. ]
  2785. ))
  2786. characterMakers.push(() => makeCharacter(
  2787. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2788. {
  2789. front: {
  2790. height: math.unit(6, "feet"),
  2791. weight: math.unit(75, "kg"),
  2792. name: "Front",
  2793. image: {
  2794. source: "./media/characters/shingo/front.svg",
  2795. extra: 1900/1825,
  2796. bottom: 82/1982
  2797. }
  2798. },
  2799. side: {
  2800. height: math.unit(6, "feet"),
  2801. weight: math.unit(75, "kg"),
  2802. name: "Side",
  2803. image: {
  2804. source: "./media/characters/shingo/side.svg",
  2805. extra: 1930/1865,
  2806. bottom: 16/1946
  2807. }
  2808. },
  2809. back: {
  2810. height: math.unit(6, "feet"),
  2811. weight: math.unit(75, "kg"),
  2812. name: "Back",
  2813. image: {
  2814. source: "./media/characters/shingo/back.svg",
  2815. extra: 1922/1852,
  2816. bottom: 16/1938
  2817. }
  2818. },
  2819. frontDressed: {
  2820. height: math.unit(6, "feet"),
  2821. weight: math.unit(150, "lb"),
  2822. name: "Front-dressed",
  2823. image: {
  2824. source: "./media/characters/shingo/front-dressed.svg",
  2825. extra: 1900/1825,
  2826. bottom: 82/1982
  2827. }
  2828. },
  2829. paw: {
  2830. height: math.unit(1.29, "feet"),
  2831. name: "Paw",
  2832. image: {
  2833. source: "./media/characters/shingo/paw.svg"
  2834. }
  2835. },
  2836. hand: {
  2837. height: math.unit(1.07, "feet"),
  2838. name: "Hand",
  2839. image: {
  2840. source: "./media/characters/shingo/hand.svg"
  2841. }
  2842. },
  2843. frontAlt: {
  2844. height: math.unit(6, "feet"),
  2845. weight: math.unit(75, "kg"),
  2846. name: "Front (Alt)",
  2847. image: {
  2848. source: "./media/characters/shingo/front-alt.svg",
  2849. extra: 3511 / 3338,
  2850. bottom: 0.005
  2851. }
  2852. },
  2853. frontAlt2: {
  2854. height: math.unit(6, "feet"),
  2855. weight: math.unit(75, "kg"),
  2856. name: "Front (Alt 2)",
  2857. image: {
  2858. source: "./media/characters/shingo/front-alt-2.svg",
  2859. extra: 706/681,
  2860. bottom: 11/717
  2861. }
  2862. },
  2863. pawAlt: {
  2864. height: math.unit(1, "feet"),
  2865. name: "Paw (Alt)",
  2866. image: {
  2867. source: "./media/characters/shingo/paw-alt.svg"
  2868. }
  2869. },
  2870. },
  2871. [
  2872. {
  2873. name: "Micro",
  2874. height: math.unit(4, "inches")
  2875. },
  2876. {
  2877. name: "Normal",
  2878. height: math.unit(6, "feet"),
  2879. default: true
  2880. },
  2881. {
  2882. name: "Macro",
  2883. height: math.unit(108, "feet")
  2884. },
  2885. {
  2886. name: "Macro+",
  2887. height: math.unit(1500, "feet")
  2888. },
  2889. ]
  2890. ))
  2891. characterMakers.push(() => makeCharacter(
  2892. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2893. {
  2894. side: {
  2895. height: math.unit(6, "feet"),
  2896. weight: math.unit(75, "kg"),
  2897. name: "Side",
  2898. image: {
  2899. source: "./media/characters/aigey/side.svg"
  2900. }
  2901. },
  2902. },
  2903. [
  2904. {
  2905. name: "Macro",
  2906. height: math.unit(200, "feet"),
  2907. default: true
  2908. },
  2909. {
  2910. name: "Megamacro",
  2911. height: math.unit(100, "miles")
  2912. },
  2913. ]
  2914. )
  2915. )
  2916. characterMakers.push(() => makeCharacter(
  2917. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2918. {
  2919. front: {
  2920. height: math.unit(5 + 5 / 12, "feet"),
  2921. weight: math.unit(75, "kg"),
  2922. name: "Front",
  2923. image: {
  2924. source: "./media/characters/natasha/front.svg",
  2925. extra: 859 / 824,
  2926. bottom: 23 / 879.6
  2927. }
  2928. },
  2929. frontNsfw: {
  2930. height: math.unit(5 + 5 / 12, "feet"),
  2931. weight: math.unit(75, "kg"),
  2932. name: "Front (NSFW)",
  2933. image: {
  2934. source: "./media/characters/natasha/front-nsfw.svg",
  2935. extra: 859 / 824,
  2936. bottom: 23 / 879.6
  2937. }
  2938. },
  2939. frontErect: {
  2940. height: math.unit(5 + 5 / 12, "feet"),
  2941. weight: math.unit(75, "kg"),
  2942. name: "Front (Erect)",
  2943. image: {
  2944. source: "./media/characters/natasha/front-erect.svg",
  2945. extra: 859 / 824,
  2946. bottom: 23 / 879.6
  2947. }
  2948. },
  2949. back: {
  2950. height: math.unit(5 + 5 / 12, "feet"),
  2951. weight: math.unit(75, "kg"),
  2952. name: "Back",
  2953. image: {
  2954. source: "./media/characters/natasha/back.svg",
  2955. extra: 887.9 / 852.6,
  2956. bottom: 9.7 / 896.4
  2957. }
  2958. },
  2959. backAlt: {
  2960. height: math.unit(5 + 5 / 12, "feet"),
  2961. weight: math.unit(75, "kg"),
  2962. name: "Back (Alt)",
  2963. image: {
  2964. source: "./media/characters/natasha/back-alt.svg",
  2965. extra: 1236.7 / 1192,
  2966. bottom: 22.3 / 1258.2
  2967. }
  2968. },
  2969. dick: {
  2970. height: math.unit(1.772, "feet"),
  2971. name: "Dick",
  2972. image: {
  2973. source: "./media/characters/natasha/dick.svg"
  2974. }
  2975. },
  2976. paw: {
  2977. height: math.unit(0.250, "meters"),
  2978. name: "Paw",
  2979. image: {
  2980. source: "./media/characters/natasha/paw.svg"
  2981. }
  2982. },
  2983. },
  2984. [
  2985. {
  2986. name: "Normal",
  2987. height: math.unit(5 + 5 / 12, "feet")
  2988. },
  2989. {
  2990. name: "Large",
  2991. height: math.unit(12, "feet")
  2992. },
  2993. {
  2994. name: "Macro",
  2995. height: math.unit(100, "feet"),
  2996. default: true
  2997. },
  2998. {
  2999. name: "Macro+",
  3000. height: math.unit(260, "feet")
  3001. },
  3002. {
  3003. name: "Macro++",
  3004. height: math.unit(1, "mile")
  3005. },
  3006. ]
  3007. ))
  3008. characterMakers.push(() => makeCharacter(
  3009. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3010. {
  3011. front: {
  3012. height: math.unit(6, "feet"),
  3013. weight: math.unit(75, "kg"),
  3014. name: "Front",
  3015. image: {
  3016. source: "./media/characters/malik/front.svg"
  3017. }
  3018. },
  3019. side: {
  3020. height: math.unit(6, "feet"),
  3021. weight: math.unit(75, "kg"),
  3022. name: "Side",
  3023. image: {
  3024. source: "./media/characters/malik/side.svg",
  3025. extra: 1.1539
  3026. }
  3027. },
  3028. back: {
  3029. height: math.unit(6, "feet"),
  3030. weight: math.unit(75, "kg"),
  3031. name: "Back",
  3032. image: {
  3033. source: "./media/characters/malik/back.svg"
  3034. }
  3035. },
  3036. },
  3037. [
  3038. {
  3039. name: "Macro",
  3040. height: math.unit(156, "feet"),
  3041. default: true
  3042. },
  3043. {
  3044. name: "Macro+",
  3045. height: math.unit(1188, "feet")
  3046. },
  3047. ]
  3048. ))
  3049. characterMakers.push(() => makeCharacter(
  3050. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3051. {
  3052. front: {
  3053. height: math.unit(6, "feet"),
  3054. weight: math.unit(75, "kg"),
  3055. name: "Front",
  3056. image: {
  3057. source: "./media/characters/sefer/front.svg",
  3058. extra: 848 / 659,
  3059. bottom: 28.3 / 876.442
  3060. }
  3061. },
  3062. back: {
  3063. height: math.unit(6, "feet"),
  3064. weight: math.unit(75, "kg"),
  3065. name: "Back",
  3066. image: {
  3067. source: "./media/characters/sefer/back.svg",
  3068. extra: 864 / 695,
  3069. bottom: 10 / 871
  3070. }
  3071. },
  3072. frontDressed: {
  3073. height: math.unit(6, "feet"),
  3074. weight: math.unit(75, "kg"),
  3075. name: "Front (Dressed)",
  3076. image: {
  3077. source: "./media/characters/sefer/front-dressed.svg",
  3078. extra: 839 / 653,
  3079. bottom: 37.6 / 878
  3080. }
  3081. },
  3082. },
  3083. [
  3084. {
  3085. name: "Normal",
  3086. height: math.unit(6, "feet"),
  3087. default: true
  3088. },
  3089. ]
  3090. ))
  3091. characterMakers.push(() => makeCharacter(
  3092. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3093. {
  3094. body: {
  3095. height: math.unit(2.2428, "meter"),
  3096. weight: math.unit(124.738, "kg"),
  3097. name: "Body",
  3098. image: {
  3099. extra: 1225 / 1050,
  3100. source: "./media/characters/north/front.svg"
  3101. }
  3102. }
  3103. },
  3104. [
  3105. {
  3106. name: "Micro",
  3107. height: math.unit(4, "inches")
  3108. },
  3109. {
  3110. name: "Macro",
  3111. height: math.unit(63, "meters")
  3112. },
  3113. {
  3114. name: "Megamacro",
  3115. height: math.unit(101, "miles"),
  3116. default: true
  3117. }
  3118. ]
  3119. ))
  3120. characterMakers.push(() => makeCharacter(
  3121. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3122. {
  3123. angled: {
  3124. height: math.unit(4, "meter"),
  3125. weight: math.unit(150, "kg"),
  3126. name: "Angled",
  3127. image: {
  3128. source: "./media/characters/talan/angled-sfw.svg",
  3129. bottom: 29 / 3734
  3130. }
  3131. },
  3132. angledNsfw: {
  3133. height: math.unit(4, "meter"),
  3134. weight: math.unit(150, "kg"),
  3135. name: "Angled (NSFW)",
  3136. image: {
  3137. source: "./media/characters/talan/angled-nsfw.svg",
  3138. bottom: 29 / 3734
  3139. }
  3140. },
  3141. frontNsfw: {
  3142. height: math.unit(4, "meter"),
  3143. weight: math.unit(150, "kg"),
  3144. name: "Front (NSFW)",
  3145. image: {
  3146. source: "./media/characters/talan/front-nsfw.svg",
  3147. bottom: 29 / 3734
  3148. }
  3149. },
  3150. sideNsfw: {
  3151. height: math.unit(4, "meter"),
  3152. weight: math.unit(150, "kg"),
  3153. name: "Side (NSFW)",
  3154. image: {
  3155. source: "./media/characters/talan/side-nsfw.svg",
  3156. bottom: 29 / 3734
  3157. }
  3158. },
  3159. back: {
  3160. height: math.unit(4, "meter"),
  3161. weight: math.unit(150, "kg"),
  3162. name: "Back",
  3163. image: {
  3164. source: "./media/characters/talan/back.svg"
  3165. }
  3166. },
  3167. dickBottom: {
  3168. height: math.unit(0.621, "meter"),
  3169. name: "Dick (Bottom)",
  3170. image: {
  3171. source: "./media/characters/talan/dick-bottom.svg"
  3172. }
  3173. },
  3174. dickTop: {
  3175. height: math.unit(0.621, "meter"),
  3176. name: "Dick (Top)",
  3177. image: {
  3178. source: "./media/characters/talan/dick-top.svg"
  3179. }
  3180. },
  3181. dickSide: {
  3182. height: math.unit(0.305, "meter"),
  3183. name: "Dick (Side)",
  3184. image: {
  3185. source: "./media/characters/talan/dick-side.svg"
  3186. }
  3187. },
  3188. dickFront: {
  3189. height: math.unit(0.305, "meter"),
  3190. name: "Dick (Front)",
  3191. image: {
  3192. source: "./media/characters/talan/dick-front.svg"
  3193. }
  3194. },
  3195. },
  3196. [
  3197. {
  3198. name: "Normal",
  3199. height: math.unit(4, "meters")
  3200. },
  3201. {
  3202. name: "Macro",
  3203. height: math.unit(100, "meters")
  3204. },
  3205. {
  3206. name: "Megamacro",
  3207. height: math.unit(2, "miles"),
  3208. default: true
  3209. },
  3210. {
  3211. name: "Gigamacro",
  3212. height: math.unit(5000, "miles")
  3213. },
  3214. {
  3215. name: "Teramacro",
  3216. height: math.unit(100, "parsecs")
  3217. }
  3218. ]
  3219. ))
  3220. characterMakers.push(() => makeCharacter(
  3221. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3222. {
  3223. front: {
  3224. height: math.unit(2, "meter"),
  3225. weight: math.unit(90, "kg"),
  3226. name: "Front",
  3227. image: {
  3228. source: "./media/characters/gael'rathus/front.svg"
  3229. }
  3230. },
  3231. frontAlt: {
  3232. height: math.unit(2, "meter"),
  3233. weight: math.unit(90, "kg"),
  3234. name: "Front (alt)",
  3235. image: {
  3236. source: "./media/characters/gael'rathus/front-alt.svg"
  3237. }
  3238. },
  3239. frontAlt2: {
  3240. height: math.unit(2, "meter"),
  3241. weight: math.unit(90, "kg"),
  3242. name: "Front (alt 2)",
  3243. image: {
  3244. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3245. }
  3246. }
  3247. },
  3248. [
  3249. {
  3250. name: "Normal",
  3251. height: math.unit(9, "feet"),
  3252. default: true
  3253. },
  3254. {
  3255. name: "Large",
  3256. height: math.unit(25, "feet")
  3257. },
  3258. {
  3259. name: "Macro",
  3260. height: math.unit(0.25, "miles")
  3261. },
  3262. {
  3263. name: "Megamacro",
  3264. height: math.unit(10, "miles")
  3265. }
  3266. ]
  3267. ))
  3268. characterMakers.push(() => makeCharacter(
  3269. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3270. {
  3271. side: {
  3272. height: math.unit(2, "meter"),
  3273. weight: math.unit(140, "kg"),
  3274. name: "Side",
  3275. image: {
  3276. source: "./media/characters/sosha/side.svg",
  3277. bottom: 0.042
  3278. }
  3279. },
  3280. },
  3281. [
  3282. {
  3283. name: "Normal",
  3284. height: math.unit(12, "feet"),
  3285. default: true
  3286. }
  3287. ]
  3288. ))
  3289. characterMakers.push(() => makeCharacter(
  3290. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3291. {
  3292. side: {
  3293. height: math.unit(5 + 5 / 12, "feet"),
  3294. weight: math.unit(170, "kg"),
  3295. name: "Side",
  3296. image: {
  3297. source: "./media/characters/runnola/side.svg",
  3298. extra: 741 / 448,
  3299. bottom: 0.05
  3300. }
  3301. },
  3302. },
  3303. [
  3304. {
  3305. name: "Small",
  3306. height: math.unit(3, "feet")
  3307. },
  3308. {
  3309. name: "Normal",
  3310. height: math.unit(5 + 5 / 12, "feet"),
  3311. default: true
  3312. },
  3313. {
  3314. name: "Big",
  3315. height: math.unit(10, "feet")
  3316. },
  3317. ]
  3318. ))
  3319. characterMakers.push(() => makeCharacter(
  3320. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3321. {
  3322. front: {
  3323. height: math.unit(2, "meter"),
  3324. weight: math.unit(50, "kg"),
  3325. name: "Front",
  3326. image: {
  3327. source: "./media/characters/kurribird/front.svg",
  3328. bottom: 0.015
  3329. }
  3330. },
  3331. frontAlt: {
  3332. height: math.unit(1.5, "meter"),
  3333. weight: math.unit(50, "kg"),
  3334. name: "Front (Alt)",
  3335. image: {
  3336. source: "./media/characters/kurribird/front-alt.svg",
  3337. extra: 1.45
  3338. }
  3339. },
  3340. },
  3341. [
  3342. {
  3343. name: "Normal",
  3344. height: math.unit(7, "feet")
  3345. },
  3346. {
  3347. name: "Big",
  3348. height: math.unit(12, "feet"),
  3349. default: true
  3350. },
  3351. {
  3352. name: "Macro",
  3353. height: math.unit(1500, "feet")
  3354. },
  3355. {
  3356. name: "Megamacro",
  3357. height: math.unit(2, "miles")
  3358. }
  3359. ]
  3360. ))
  3361. characterMakers.push(() => makeCharacter(
  3362. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3363. {
  3364. front: {
  3365. height: math.unit(2, "meter"),
  3366. weight: math.unit(80, "kg"),
  3367. name: "Front",
  3368. image: {
  3369. source: "./media/characters/elbial/front.svg",
  3370. extra: 1643 / 1556,
  3371. bottom: 60.2 / 1696
  3372. }
  3373. },
  3374. side: {
  3375. height: math.unit(2, "meter"),
  3376. weight: math.unit(80, "kg"),
  3377. name: "Side",
  3378. image: {
  3379. source: "./media/characters/elbial/side.svg",
  3380. extra: 1630 / 1565,
  3381. bottom: 71.5 / 1697
  3382. }
  3383. },
  3384. back: {
  3385. height: math.unit(2, "meter"),
  3386. weight: math.unit(80, "kg"),
  3387. name: "Back",
  3388. image: {
  3389. source: "./media/characters/elbial/back.svg",
  3390. extra: 1668 / 1595,
  3391. bottom: 5.6 / 1672
  3392. }
  3393. },
  3394. frontDressed: {
  3395. height: math.unit(2, "meter"),
  3396. weight: math.unit(80, "kg"),
  3397. name: "Front (Dressed)",
  3398. image: {
  3399. source: "./media/characters/elbial/front-dressed.svg",
  3400. extra: 1653 / 1584,
  3401. bottom: 57 / 1708
  3402. }
  3403. },
  3404. genitals: {
  3405. height: math.unit(2 / 3.367, "meter"),
  3406. name: "Genitals",
  3407. image: {
  3408. source: "./media/characters/elbial/genitals.svg"
  3409. }
  3410. },
  3411. },
  3412. [
  3413. {
  3414. name: "Large",
  3415. height: math.unit(100, "feet")
  3416. },
  3417. {
  3418. name: "Macro",
  3419. height: math.unit(500, "feet"),
  3420. default: true
  3421. },
  3422. {
  3423. name: "Megamacro",
  3424. height: math.unit(10, "miles")
  3425. },
  3426. {
  3427. name: "Gigamacro",
  3428. height: math.unit(25000, "miles")
  3429. },
  3430. {
  3431. name: "Full-Size",
  3432. height: math.unit(8000000, "gigaparsecs")
  3433. }
  3434. ]
  3435. ))
  3436. characterMakers.push(() => makeCharacter(
  3437. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3438. {
  3439. front: {
  3440. height: math.unit(2, "meter"),
  3441. weight: math.unit(60, "kg"),
  3442. name: "Front",
  3443. image: {
  3444. source: "./media/characters/noah/front.svg"
  3445. }
  3446. },
  3447. talons: {
  3448. height: math.unit(0.315, "meter"),
  3449. name: "Talons",
  3450. image: {
  3451. source: "./media/characters/noah/talons.svg"
  3452. }
  3453. }
  3454. },
  3455. [
  3456. {
  3457. name: "Large",
  3458. height: math.unit(50, "feet")
  3459. },
  3460. {
  3461. name: "Macro",
  3462. height: math.unit(750, "feet"),
  3463. default: true
  3464. },
  3465. {
  3466. name: "Megamacro",
  3467. height: math.unit(50, "miles")
  3468. },
  3469. {
  3470. name: "Gigamacro",
  3471. height: math.unit(100000, "miles")
  3472. },
  3473. {
  3474. name: "Full-Size",
  3475. height: math.unit(3000000000, "miles")
  3476. }
  3477. ]
  3478. ))
  3479. characterMakers.push(() => makeCharacter(
  3480. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3481. {
  3482. front: {
  3483. height: math.unit(2, "meter"),
  3484. weight: math.unit(80, "kg"),
  3485. name: "Front",
  3486. image: {
  3487. source: "./media/characters/natalya/front.svg"
  3488. }
  3489. },
  3490. back: {
  3491. height: math.unit(2, "meter"),
  3492. weight: math.unit(80, "kg"),
  3493. name: "Back",
  3494. image: {
  3495. source: "./media/characters/natalya/back.svg"
  3496. }
  3497. }
  3498. },
  3499. [
  3500. {
  3501. name: "Normal",
  3502. height: math.unit(150, "feet"),
  3503. default: true
  3504. },
  3505. {
  3506. name: "Megamacro",
  3507. height: math.unit(5, "miles")
  3508. },
  3509. {
  3510. name: "Full-Size",
  3511. height: math.unit(600, "kiloparsecs")
  3512. }
  3513. ]
  3514. ))
  3515. characterMakers.push(() => makeCharacter(
  3516. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3517. {
  3518. front: {
  3519. height: math.unit(2, "meter"),
  3520. weight: math.unit(50, "kg"),
  3521. name: "Front",
  3522. image: {
  3523. source: "./media/characters/erestrebah/front.svg",
  3524. extra: 208 / 193,
  3525. bottom: 0.055
  3526. }
  3527. },
  3528. back: {
  3529. height: math.unit(2, "meter"),
  3530. weight: math.unit(50, "kg"),
  3531. name: "Back",
  3532. image: {
  3533. source: "./media/characters/erestrebah/back.svg",
  3534. extra: 1.3
  3535. }
  3536. }
  3537. },
  3538. [
  3539. {
  3540. name: "Normal",
  3541. height: math.unit(10, "feet")
  3542. },
  3543. {
  3544. name: "Large",
  3545. height: math.unit(50, "feet"),
  3546. default: true
  3547. },
  3548. {
  3549. name: "Macro",
  3550. height: math.unit(300, "feet")
  3551. },
  3552. {
  3553. name: "Macro+",
  3554. height: math.unit(750, "feet")
  3555. },
  3556. {
  3557. name: "Megamacro",
  3558. height: math.unit(3, "miles")
  3559. }
  3560. ]
  3561. ))
  3562. characterMakers.push(() => makeCharacter(
  3563. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3564. {
  3565. front: {
  3566. height: math.unit(2, "meter"),
  3567. weight: math.unit(80, "kg"),
  3568. name: "Front",
  3569. image: {
  3570. source: "./media/characters/jennifer/front.svg",
  3571. bottom: 0.11,
  3572. extra: 1.16
  3573. }
  3574. },
  3575. frontAlt: {
  3576. height: math.unit(2, "meter"),
  3577. weight: math.unit(80, "kg"),
  3578. name: "Front (Alt)",
  3579. image: {
  3580. source: "./media/characters/jennifer/front-alt.svg"
  3581. }
  3582. }
  3583. },
  3584. [
  3585. {
  3586. name: "Canon Height",
  3587. height: math.unit(120, "feet"),
  3588. default: true
  3589. },
  3590. {
  3591. name: "Macro+",
  3592. height: math.unit(300, "feet")
  3593. },
  3594. {
  3595. name: "Megamacro",
  3596. height: math.unit(20000, "feet")
  3597. }
  3598. ]
  3599. ))
  3600. characterMakers.push(() => makeCharacter(
  3601. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3602. {
  3603. front: {
  3604. height: math.unit(2, "meter"),
  3605. weight: math.unit(50, "kg"),
  3606. name: "Front",
  3607. image: {
  3608. source: "./media/characters/kalista/front.svg",
  3609. extra: 1947 / 1700,
  3610. bottom: 76.6 / 1412.98
  3611. }
  3612. },
  3613. back: {
  3614. height: math.unit(2, "meter"),
  3615. weight: math.unit(50, "kg"),
  3616. name: "Back",
  3617. image: {
  3618. source: "./media/characters/kalista/back.svg",
  3619. extra: 1366 / 1156,
  3620. bottom: 33.9 / 1362.78
  3621. }
  3622. }
  3623. },
  3624. [
  3625. {
  3626. name: "Uncomfortably Small",
  3627. height: math.unit(10, "feet")
  3628. },
  3629. {
  3630. name: "Small",
  3631. height: math.unit(30, "feet")
  3632. },
  3633. {
  3634. name: "Macro",
  3635. height: math.unit(100, "feet"),
  3636. default: true
  3637. },
  3638. {
  3639. name: "Macro+",
  3640. height: math.unit(2000, "feet")
  3641. },
  3642. {
  3643. name: "True Form",
  3644. height: math.unit(8924, "miles")
  3645. }
  3646. ]
  3647. ))
  3648. characterMakers.push(() => makeCharacter(
  3649. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3650. {
  3651. front: {
  3652. height: math.unit(2, "meter"),
  3653. weight: math.unit(120, "kg"),
  3654. name: "Front",
  3655. image: {
  3656. source: "./media/characters/ggv/front.svg"
  3657. }
  3658. },
  3659. side: {
  3660. height: math.unit(2, "meter"),
  3661. weight: math.unit(120, "kg"),
  3662. name: "Side",
  3663. image: {
  3664. source: "./media/characters/ggv/side.svg"
  3665. }
  3666. }
  3667. },
  3668. [
  3669. {
  3670. name: "Extremely Puny",
  3671. height: math.unit(9 + 5 / 12, "feet")
  3672. },
  3673. {
  3674. name: "Horribly Small",
  3675. height: math.unit(47.7, "miles"),
  3676. default: true
  3677. },
  3678. {
  3679. name: "Reasonably Sized",
  3680. height: math.unit(25000, "parsecs")
  3681. },
  3682. {
  3683. name: "Slightly Uncompressed",
  3684. height: math.unit(7.77e31, "parsecs")
  3685. },
  3686. {
  3687. name: "Omniversal",
  3688. height: math.unit(1e300, "meters")
  3689. },
  3690. ]
  3691. ))
  3692. characterMakers.push(() => makeCharacter(
  3693. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3694. {
  3695. front: {
  3696. height: math.unit(2, "meter"),
  3697. weight: math.unit(75, "lb"),
  3698. name: "Front",
  3699. image: {
  3700. source: "./media/characters/napalm/front.svg"
  3701. }
  3702. },
  3703. back: {
  3704. height: math.unit(2, "meter"),
  3705. weight: math.unit(75, "lb"),
  3706. name: "Back",
  3707. image: {
  3708. source: "./media/characters/napalm/back.svg"
  3709. }
  3710. }
  3711. },
  3712. [
  3713. {
  3714. name: "Standard",
  3715. height: math.unit(55, "feet"),
  3716. default: true
  3717. }
  3718. ]
  3719. ))
  3720. characterMakers.push(() => makeCharacter(
  3721. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3722. {
  3723. front: {
  3724. height: math.unit(7 + 5 / 6, "feet"),
  3725. weight: math.unit(325, "lb"),
  3726. name: "Front",
  3727. image: {
  3728. source: "./media/characters/asana/front.svg",
  3729. extra: 1133 / 1060,
  3730. bottom: 15.2 / 1148.6
  3731. }
  3732. },
  3733. back: {
  3734. height: math.unit(7 + 5 / 6, "feet"),
  3735. weight: math.unit(325, "lb"),
  3736. name: "Back",
  3737. image: {
  3738. source: "./media/characters/asana/back.svg",
  3739. extra: 1114 / 1043,
  3740. bottom: 5 / 1120
  3741. }
  3742. },
  3743. dressedDark: {
  3744. height: math.unit(7 + 5 / 6, "feet"),
  3745. weight: math.unit(325, "lb"),
  3746. name: "Dressed (Dark)",
  3747. image: {
  3748. source: "./media/characters/asana/dressed-dark.svg",
  3749. extra: 1133 / 1060,
  3750. bottom: 15.2 / 1148.6
  3751. }
  3752. },
  3753. dressedLight: {
  3754. height: math.unit(7 + 5 / 6, "feet"),
  3755. weight: math.unit(325, "lb"),
  3756. name: "Dressed (Light)",
  3757. image: {
  3758. source: "./media/characters/asana/dressed-light.svg",
  3759. extra: 1133 / 1060,
  3760. bottom: 15.2 / 1148.6
  3761. }
  3762. },
  3763. },
  3764. [
  3765. {
  3766. name: "Standard",
  3767. height: math.unit(7 + 5 / 6, "feet"),
  3768. default: true
  3769. },
  3770. {
  3771. name: "Large",
  3772. height: math.unit(10, "meters")
  3773. },
  3774. {
  3775. name: "Macro",
  3776. height: math.unit(2500, "meters")
  3777. },
  3778. {
  3779. name: "Megamacro",
  3780. height: math.unit(5e6, "meters")
  3781. },
  3782. {
  3783. name: "Examacro",
  3784. height: math.unit(5e12, "lightyears")
  3785. },
  3786. {
  3787. name: "Max Size",
  3788. height: math.unit(1e31, "lightyears")
  3789. }
  3790. ]
  3791. ))
  3792. characterMakers.push(() => makeCharacter(
  3793. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3794. {
  3795. front: {
  3796. height: math.unit(2, "meter"),
  3797. weight: math.unit(60, "kg"),
  3798. name: "Front",
  3799. image: {
  3800. source: "./media/characters/ebony/front.svg",
  3801. bottom: 0.03,
  3802. extra: 1045 / 810 + 0.03
  3803. }
  3804. },
  3805. side: {
  3806. height: math.unit(2, "meter"),
  3807. weight: math.unit(60, "kg"),
  3808. name: "Side",
  3809. image: {
  3810. source: "./media/characters/ebony/side.svg",
  3811. bottom: 0.03,
  3812. extra: 1045 / 810 + 0.03
  3813. }
  3814. },
  3815. back: {
  3816. height: math.unit(2, "meter"),
  3817. weight: math.unit(60, "kg"),
  3818. name: "Back",
  3819. image: {
  3820. source: "./media/characters/ebony/back.svg",
  3821. bottom: 0.01,
  3822. extra: 1045 / 810 + 0.01
  3823. }
  3824. },
  3825. },
  3826. [
  3827. // TODO check why I did this lol
  3828. {
  3829. name: "Standard",
  3830. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3831. default: true
  3832. },
  3833. {
  3834. name: "Macro",
  3835. height: math.unit(200, "feet")
  3836. },
  3837. {
  3838. name: "Gigamacro",
  3839. height: math.unit(13000, "km")
  3840. }
  3841. ]
  3842. ))
  3843. characterMakers.push(() => makeCharacter(
  3844. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3845. {
  3846. front: {
  3847. height: math.unit(6, "feet"),
  3848. weight: math.unit(175, "lb"),
  3849. name: "Front",
  3850. image: {
  3851. source: "./media/characters/mountain/front.svg",
  3852. extra: 972 / 955,
  3853. bottom: 64 / 1036.6
  3854. }
  3855. },
  3856. back: {
  3857. height: math.unit(6, "feet"),
  3858. weight: math.unit(175, "lb"),
  3859. name: "Back",
  3860. image: {
  3861. source: "./media/characters/mountain/back.svg",
  3862. extra: 970 / 950,
  3863. bottom: 28.25 / 999
  3864. }
  3865. },
  3866. },
  3867. [
  3868. {
  3869. name: "Large",
  3870. height: math.unit(20, "meters")
  3871. },
  3872. {
  3873. name: "Macro",
  3874. height: math.unit(300, "meters")
  3875. },
  3876. {
  3877. name: "Gigamacro",
  3878. height: math.unit(10000, "km"),
  3879. default: true
  3880. },
  3881. {
  3882. name: "Examacro",
  3883. height: math.unit(10e9, "lightyears")
  3884. }
  3885. ]
  3886. ))
  3887. characterMakers.push(() => makeCharacter(
  3888. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3889. {
  3890. front: {
  3891. height: math.unit(8, "feet"),
  3892. weight: math.unit(500, "lb"),
  3893. name: "Front",
  3894. image: {
  3895. source: "./media/characters/rick/front.svg"
  3896. }
  3897. }
  3898. },
  3899. [
  3900. {
  3901. name: "Normal",
  3902. height: math.unit(8, "feet"),
  3903. default: true
  3904. },
  3905. {
  3906. name: "Macro",
  3907. height: math.unit(5, "km")
  3908. }
  3909. ]
  3910. ))
  3911. characterMakers.push(() => makeCharacter(
  3912. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3913. {
  3914. front: {
  3915. height: math.unit(8, "feet"),
  3916. weight: math.unit(120, "lb"),
  3917. name: "Front",
  3918. image: {
  3919. source: "./media/characters/ona/front.svg"
  3920. }
  3921. },
  3922. frontAlt: {
  3923. height: math.unit(8, "feet"),
  3924. weight: math.unit(120, "lb"),
  3925. name: "Front (Alt)",
  3926. image: {
  3927. source: "./media/characters/ona/front-alt.svg"
  3928. }
  3929. },
  3930. back: {
  3931. height: math.unit(8, "feet"),
  3932. weight: math.unit(120, "lb"),
  3933. name: "Back",
  3934. image: {
  3935. source: "./media/characters/ona/back.svg"
  3936. }
  3937. },
  3938. foot: {
  3939. height: math.unit(1.1, "feet"),
  3940. name: "Foot",
  3941. image: {
  3942. source: "./media/characters/ona/foot.svg"
  3943. }
  3944. }
  3945. },
  3946. [
  3947. {
  3948. name: "Megamacro",
  3949. height: math.unit(70, "km"),
  3950. default: true
  3951. },
  3952. {
  3953. name: "Gigamacro",
  3954. height: math.unit(681818, "miles")
  3955. },
  3956. {
  3957. name: "Examacro",
  3958. height: math.unit(3800000, "lightyears")
  3959. },
  3960. ]
  3961. ))
  3962. characterMakers.push(() => makeCharacter(
  3963. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3964. {
  3965. front: {
  3966. height: math.unit(12, "feet"),
  3967. weight: math.unit(3000, "lb"),
  3968. name: "Front",
  3969. image: {
  3970. source: "./media/characters/mech/front.svg",
  3971. extra: 2900 / 2770,
  3972. bottom: 110 / 3010
  3973. }
  3974. },
  3975. back: {
  3976. height: math.unit(12, "feet"),
  3977. weight: math.unit(3000, "lb"),
  3978. name: "Back",
  3979. image: {
  3980. source: "./media/characters/mech/back.svg",
  3981. extra: 3011 / 2890,
  3982. bottom: 94 / 3105
  3983. }
  3984. },
  3985. maw: {
  3986. height: math.unit(3.07, "feet"),
  3987. name: "Maw",
  3988. image: {
  3989. source: "./media/characters/mech/maw.svg"
  3990. }
  3991. },
  3992. head: {
  3993. height: math.unit(2.82, "feet"),
  3994. name: "Head",
  3995. image: {
  3996. source: "./media/characters/mech/head.svg"
  3997. }
  3998. },
  3999. dick: {
  4000. height: math.unit(1.43, "feet"),
  4001. name: "Dick",
  4002. image: {
  4003. source: "./media/characters/mech/dick.svg"
  4004. }
  4005. },
  4006. },
  4007. [
  4008. {
  4009. name: "Normal",
  4010. height: math.unit(12, "feet")
  4011. },
  4012. {
  4013. name: "Macro",
  4014. height: math.unit(300, "feet"),
  4015. default: true
  4016. },
  4017. {
  4018. name: "Macro+",
  4019. height: math.unit(1500, "feet")
  4020. },
  4021. ]
  4022. ))
  4023. characterMakers.push(() => makeCharacter(
  4024. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4025. {
  4026. front: {
  4027. height: math.unit(1.3, "meter"),
  4028. weight: math.unit(30, "kg"),
  4029. name: "Front",
  4030. image: {
  4031. source: "./media/characters/gregory/front.svg",
  4032. }
  4033. }
  4034. },
  4035. [
  4036. {
  4037. name: "Normal",
  4038. height: math.unit(1.3, "meter"),
  4039. default: true
  4040. },
  4041. {
  4042. name: "Macro",
  4043. height: math.unit(20, "meter")
  4044. }
  4045. ]
  4046. ))
  4047. characterMakers.push(() => makeCharacter(
  4048. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4049. {
  4050. front: {
  4051. height: math.unit(2.8, "meter"),
  4052. weight: math.unit(200, "kg"),
  4053. name: "Front",
  4054. image: {
  4055. source: "./media/characters/elory/front.svg",
  4056. }
  4057. }
  4058. },
  4059. [
  4060. {
  4061. name: "Normal",
  4062. height: math.unit(2.8, "meter"),
  4063. default: true
  4064. },
  4065. {
  4066. name: "Macro",
  4067. height: math.unit(38, "meter")
  4068. }
  4069. ]
  4070. ))
  4071. characterMakers.push(() => makeCharacter(
  4072. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4073. {
  4074. front: {
  4075. height: math.unit(470, "feet"),
  4076. weight: math.unit(924, "tons"),
  4077. name: "Front",
  4078. image: {
  4079. source: "./media/characters/angelpatamon/front.svg",
  4080. }
  4081. }
  4082. },
  4083. [
  4084. {
  4085. name: "Normal",
  4086. height: math.unit(470, "feet"),
  4087. default: true
  4088. },
  4089. {
  4090. name: "Deity Size I",
  4091. height: math.unit(28651.2, "km")
  4092. },
  4093. {
  4094. name: "Deity Size II",
  4095. height: math.unit(171907.2, "km")
  4096. }
  4097. ]
  4098. ))
  4099. characterMakers.push(() => makeCharacter(
  4100. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4101. {
  4102. side: {
  4103. height: math.unit(7.2, "meter"),
  4104. weight: math.unit(8.2, "tons"),
  4105. name: "Side",
  4106. image: {
  4107. source: "./media/characters/cryae/side.svg",
  4108. extra: 3500 / 1500
  4109. }
  4110. }
  4111. },
  4112. [
  4113. {
  4114. name: "Normal",
  4115. height: math.unit(7.2, "meter"),
  4116. default: true
  4117. }
  4118. ]
  4119. ))
  4120. characterMakers.push(() => makeCharacter(
  4121. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4122. {
  4123. front: {
  4124. height: math.unit(6, "feet"),
  4125. weight: math.unit(175, "lb"),
  4126. name: "Front",
  4127. image: {
  4128. source: "./media/characters/xera/front.svg",
  4129. extra: 2377 / 1972,
  4130. bottom: 75.5 / 2452
  4131. }
  4132. },
  4133. side: {
  4134. height: math.unit(6, "feet"),
  4135. weight: math.unit(175, "lb"),
  4136. name: "Side",
  4137. image: {
  4138. source: "./media/characters/xera/side.svg",
  4139. extra: 2345 / 2019,
  4140. bottom: 39.7 / 2384
  4141. }
  4142. },
  4143. back: {
  4144. height: math.unit(6, "feet"),
  4145. weight: math.unit(175, "lb"),
  4146. name: "Back",
  4147. image: {
  4148. source: "./media/characters/xera/back.svg",
  4149. extra: 2095 / 1984,
  4150. bottom: 67 / 2166
  4151. }
  4152. },
  4153. },
  4154. [
  4155. {
  4156. name: "Small",
  4157. height: math.unit(10, "feet")
  4158. },
  4159. {
  4160. name: "Macro",
  4161. height: math.unit(500, "meters"),
  4162. default: true
  4163. },
  4164. {
  4165. name: "Macro+",
  4166. height: math.unit(10, "km")
  4167. },
  4168. {
  4169. name: "Gigamacro",
  4170. height: math.unit(25000, "km")
  4171. },
  4172. {
  4173. name: "Teramacro",
  4174. height: math.unit(3e6, "km")
  4175. }
  4176. ]
  4177. ))
  4178. characterMakers.push(() => makeCharacter(
  4179. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4180. {
  4181. front: {
  4182. height: math.unit(6, "feet"),
  4183. weight: math.unit(175, "lb"),
  4184. name: "Front",
  4185. image: {
  4186. source: "./media/characters/nebula/front.svg",
  4187. extra: 2566 / 2362,
  4188. bottom: 81 / 2644
  4189. }
  4190. }
  4191. },
  4192. [
  4193. {
  4194. name: "Small",
  4195. height: math.unit(4.5, "meters")
  4196. },
  4197. {
  4198. name: "Macro",
  4199. height: math.unit(1500, "meters"),
  4200. default: true
  4201. },
  4202. {
  4203. name: "Megamacro",
  4204. height: math.unit(150, "km")
  4205. },
  4206. {
  4207. name: "Gigamacro",
  4208. height: math.unit(27000, "km")
  4209. }
  4210. ]
  4211. ))
  4212. characterMakers.push(() => makeCharacter(
  4213. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4214. {
  4215. front: {
  4216. height: math.unit(6, "feet"),
  4217. weight: math.unit(225, "lb"),
  4218. name: "Front",
  4219. image: {
  4220. source: "./media/characters/abysgar/front.svg"
  4221. }
  4222. }
  4223. },
  4224. [
  4225. {
  4226. name: "Small",
  4227. height: math.unit(4.5, "meters")
  4228. },
  4229. {
  4230. name: "Macro",
  4231. height: math.unit(1250, "meters"),
  4232. default: true
  4233. },
  4234. {
  4235. name: "Megamacro",
  4236. height: math.unit(125, "km")
  4237. },
  4238. {
  4239. name: "Gigamacro",
  4240. height: math.unit(26000, "km")
  4241. }
  4242. ]
  4243. ))
  4244. characterMakers.push(() => makeCharacter(
  4245. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4246. {
  4247. front: {
  4248. height: math.unit(6, "feet"),
  4249. weight: math.unit(180, "lb"),
  4250. name: "Front",
  4251. image: {
  4252. source: "./media/characters/yakuz/front.svg"
  4253. }
  4254. }
  4255. },
  4256. [
  4257. {
  4258. name: "Small",
  4259. height: math.unit(5, "meters")
  4260. },
  4261. {
  4262. name: "Macro",
  4263. height: math.unit(1500, "meters"),
  4264. default: true
  4265. },
  4266. {
  4267. name: "Megamacro",
  4268. height: math.unit(200, "km")
  4269. },
  4270. {
  4271. name: "Gigamacro",
  4272. height: math.unit(100000, "km")
  4273. }
  4274. ]
  4275. ))
  4276. characterMakers.push(() => makeCharacter(
  4277. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4278. {
  4279. front: {
  4280. height: math.unit(6, "feet"),
  4281. weight: math.unit(175, "lb"),
  4282. name: "Front",
  4283. image: {
  4284. source: "./media/characters/mirova/front.svg",
  4285. extra: 3334 / 3071,
  4286. bottom: 42 / 3375.6
  4287. }
  4288. }
  4289. },
  4290. [
  4291. {
  4292. name: "Small",
  4293. height: math.unit(5, "meters")
  4294. },
  4295. {
  4296. name: "Macro",
  4297. height: math.unit(900, "meters"),
  4298. default: true
  4299. },
  4300. {
  4301. name: "Megamacro",
  4302. height: math.unit(135, "km")
  4303. },
  4304. {
  4305. name: "Gigamacro",
  4306. height: math.unit(20000, "km")
  4307. }
  4308. ]
  4309. ))
  4310. characterMakers.push(() => makeCharacter(
  4311. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4312. {
  4313. side: {
  4314. height: math.unit(28.35, "feet"),
  4315. weight: math.unit(99.75, "tons"),
  4316. name: "Side",
  4317. image: {
  4318. source: "./media/characters/asana-mech/side.svg",
  4319. extra: 923 / 699,
  4320. bottom: 50 / 975
  4321. }
  4322. },
  4323. chaingun: {
  4324. height: math.unit(7, "feet"),
  4325. weight: math.unit(2400, "lb"),
  4326. name: "Chaingun",
  4327. image: {
  4328. source: "./media/characters/asana-mech/chaingun.svg"
  4329. }
  4330. },
  4331. laser: {
  4332. height: math.unit(7.12, "feet"),
  4333. weight: math.unit(2000, "lb"),
  4334. name: "Laser",
  4335. image: {
  4336. source: "./media/characters/asana-mech/laser.svg"
  4337. }
  4338. },
  4339. },
  4340. [
  4341. {
  4342. name: "Normal",
  4343. height: math.unit(28.35, "feet"),
  4344. default: true
  4345. },
  4346. {
  4347. name: "Macro",
  4348. height: math.unit(2500, "feet")
  4349. },
  4350. {
  4351. name: "Megamacro",
  4352. height: math.unit(25, "miles")
  4353. },
  4354. {
  4355. name: "Examacro",
  4356. height: math.unit(6e8, "lightyears")
  4357. },
  4358. ]
  4359. ))
  4360. characterMakers.push(() => makeCharacter(
  4361. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4362. {
  4363. front: {
  4364. height: math.unit(5, "meters"),
  4365. weight: math.unit(1000, "kg"),
  4366. name: "Front",
  4367. image: {
  4368. source: "./media/characters/asche/front.svg",
  4369. extra: 1258 / 1190,
  4370. bottom: 47 / 1305
  4371. }
  4372. },
  4373. frontUnderwear: {
  4374. height: math.unit(5, "meters"),
  4375. weight: math.unit(1000, "kg"),
  4376. name: "Front (Underwear)",
  4377. image: {
  4378. source: "./media/characters/asche/front-underwear.svg",
  4379. extra: 1258 / 1190,
  4380. bottom: 47 / 1305
  4381. }
  4382. },
  4383. frontDressed: {
  4384. height: math.unit(5, "meters"),
  4385. weight: math.unit(1000, "kg"),
  4386. name: "Front (Dressed)",
  4387. image: {
  4388. source: "./media/characters/asche/front-dressed.svg",
  4389. extra: 1258 / 1190,
  4390. bottom: 47 / 1305
  4391. }
  4392. },
  4393. frontArmor: {
  4394. height: math.unit(5, "meters"),
  4395. weight: math.unit(1000, "kg"),
  4396. name: "Front (Armored)",
  4397. image: {
  4398. source: "./media/characters/asche/front-armored.svg",
  4399. extra: 1374 / 1308,
  4400. bottom: 23 / 1397
  4401. }
  4402. },
  4403. mp724: {
  4404. height: math.unit(0.96, "meters"),
  4405. weight: math.unit(38, "kg"),
  4406. name: "H&K MP724",
  4407. image: {
  4408. source: "./media/characters/asche/h&k-mp724.svg"
  4409. }
  4410. },
  4411. side: {
  4412. height: math.unit(5, "meters"),
  4413. weight: math.unit(1000, "kg"),
  4414. name: "Side",
  4415. image: {
  4416. source: "./media/characters/asche/side.svg",
  4417. extra: 1717 / 1609,
  4418. bottom: 0.005
  4419. }
  4420. },
  4421. back: {
  4422. height: math.unit(5, "meters"),
  4423. weight: math.unit(1000, "kg"),
  4424. name: "Back",
  4425. image: {
  4426. source: "./media/characters/asche/back.svg",
  4427. extra: 1570 / 1501
  4428. }
  4429. },
  4430. },
  4431. [
  4432. {
  4433. name: "DEFCON 5",
  4434. height: math.unit(5, "meters")
  4435. },
  4436. {
  4437. name: "DEFCON 4",
  4438. height: math.unit(500, "meters"),
  4439. default: true
  4440. },
  4441. {
  4442. name: "DEFCON 3",
  4443. height: math.unit(5, "km")
  4444. },
  4445. {
  4446. name: "DEFCON 2",
  4447. height: math.unit(500, "km")
  4448. },
  4449. {
  4450. name: "DEFCON 1",
  4451. height: math.unit(500000, "km")
  4452. },
  4453. {
  4454. name: "DEFCON 0",
  4455. height: math.unit(3, "gigaparsecs")
  4456. },
  4457. ]
  4458. ))
  4459. characterMakers.push(() => makeCharacter(
  4460. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4461. {
  4462. front: {
  4463. height: math.unit(2, "meters"),
  4464. weight: math.unit(76, "kg"),
  4465. name: "Front",
  4466. image: {
  4467. source: "./media/characters/gale/front.svg"
  4468. }
  4469. },
  4470. frontAlt1: {
  4471. height: math.unit(2, "meters"),
  4472. weight: math.unit(76, "kg"),
  4473. name: "Front (Alt 1)",
  4474. image: {
  4475. source: "./media/characters/gale/front-alt-1.svg"
  4476. }
  4477. },
  4478. frontAlt2: {
  4479. height: math.unit(2, "meters"),
  4480. weight: math.unit(76, "kg"),
  4481. name: "Front (Alt 2)",
  4482. image: {
  4483. source: "./media/characters/gale/front-alt-2.svg"
  4484. }
  4485. },
  4486. },
  4487. [
  4488. {
  4489. name: "Normal",
  4490. height: math.unit(7, "feet")
  4491. },
  4492. {
  4493. name: "Macro",
  4494. height: math.unit(150, "feet"),
  4495. default: true
  4496. },
  4497. {
  4498. name: "Macro+",
  4499. height: math.unit(300, "feet")
  4500. },
  4501. ]
  4502. ))
  4503. characterMakers.push(() => makeCharacter(
  4504. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4505. {
  4506. front: {
  4507. height: math.unit(5 + 10/12, "feet"),
  4508. weight: math.unit(67, "kg"),
  4509. name: "Front",
  4510. image: {
  4511. source: "./media/characters/draylen/front.svg",
  4512. extra: 832/777,
  4513. bottom: 85/917
  4514. }
  4515. }
  4516. },
  4517. [
  4518. {
  4519. name: "Normal",
  4520. height: math.unit(5 + 10/12, "feet")
  4521. },
  4522. {
  4523. name: "Macro",
  4524. height: math.unit(150, "feet"),
  4525. default: true
  4526. }
  4527. ]
  4528. ))
  4529. characterMakers.push(() => makeCharacter(
  4530. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4531. {
  4532. front: {
  4533. height: math.unit(7 + 9 / 12, "feet"),
  4534. weight: math.unit(379, "lbs"),
  4535. name: "Front",
  4536. image: {
  4537. source: "./media/characters/chez/front.svg"
  4538. }
  4539. },
  4540. side: {
  4541. height: math.unit(7 + 9 / 12, "feet"),
  4542. weight: math.unit(379, "lbs"),
  4543. name: "Side",
  4544. image: {
  4545. source: "./media/characters/chez/side.svg"
  4546. }
  4547. }
  4548. },
  4549. [
  4550. {
  4551. name: "Normal",
  4552. height: math.unit(7 + 9 / 12, "feet"),
  4553. default: true
  4554. },
  4555. {
  4556. name: "God King",
  4557. height: math.unit(9750000, "meters")
  4558. }
  4559. ]
  4560. ))
  4561. characterMakers.push(() => makeCharacter(
  4562. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4563. {
  4564. front: {
  4565. height: math.unit(6, "feet"),
  4566. weight: math.unit(275, "lbs"),
  4567. name: "Front",
  4568. image: {
  4569. source: "./media/characters/kaylum/front.svg",
  4570. bottom: 0.01,
  4571. extra: 1166 / 1031
  4572. }
  4573. },
  4574. frontWingless: {
  4575. height: math.unit(6, "feet"),
  4576. weight: math.unit(275, "lbs"),
  4577. name: "Front (Wingless)",
  4578. image: {
  4579. source: "./media/characters/kaylum/front-wingless.svg",
  4580. bottom: 0.01,
  4581. extra: 1117 / 1031
  4582. }
  4583. }
  4584. },
  4585. [
  4586. {
  4587. name: "Normal",
  4588. height: math.unit(3.05, "meters")
  4589. },
  4590. {
  4591. name: "Master",
  4592. height: math.unit(5.5, "meters")
  4593. },
  4594. {
  4595. name: "Rampage",
  4596. height: math.unit(19, "meters")
  4597. },
  4598. {
  4599. name: "Macro Lite",
  4600. height: math.unit(37, "meters")
  4601. },
  4602. {
  4603. name: "Hyper Predator",
  4604. height: math.unit(61, "meters")
  4605. },
  4606. {
  4607. name: "Macro",
  4608. height: math.unit(138, "meters"),
  4609. default: true
  4610. }
  4611. ]
  4612. ))
  4613. characterMakers.push(() => makeCharacter(
  4614. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4615. {
  4616. front: {
  4617. height: math.unit(6, "feet"),
  4618. weight: math.unit(150, "lbs"),
  4619. name: "Front",
  4620. image: {
  4621. source: "./media/characters/geta/front.svg"
  4622. }
  4623. }
  4624. },
  4625. [
  4626. {
  4627. name: "Micro",
  4628. height: math.unit(3, "inches"),
  4629. default: true
  4630. },
  4631. {
  4632. name: "Normal",
  4633. height: math.unit(5 + 5 / 12, "feet")
  4634. }
  4635. ]
  4636. ))
  4637. characterMakers.push(() => makeCharacter(
  4638. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4639. {
  4640. front: {
  4641. height: math.unit(6, "feet"),
  4642. weight: math.unit(300, "lbs"),
  4643. name: "Front",
  4644. image: {
  4645. source: "./media/characters/tyrnn/front.svg"
  4646. }
  4647. }
  4648. },
  4649. [
  4650. {
  4651. name: "Main Height",
  4652. height: math.unit(355, "feet"),
  4653. default: true
  4654. },
  4655. {
  4656. name: "Fave. Height",
  4657. height: math.unit(2400, "feet")
  4658. }
  4659. ]
  4660. ))
  4661. characterMakers.push(() => makeCharacter(
  4662. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4663. {
  4664. front: {
  4665. height: math.unit(6, "feet"),
  4666. weight: math.unit(300, "lbs"),
  4667. name: "Front",
  4668. image: {
  4669. source: "./media/characters/appledectomy/front.svg"
  4670. }
  4671. }
  4672. },
  4673. [
  4674. {
  4675. name: "Macro",
  4676. height: math.unit(2500, "feet")
  4677. },
  4678. {
  4679. name: "Megamacro",
  4680. height: math.unit(50, "miles"),
  4681. default: true
  4682. },
  4683. {
  4684. name: "Gigamacro",
  4685. height: math.unit(5000, "miles")
  4686. },
  4687. {
  4688. name: "Teramacro",
  4689. height: math.unit(250000, "miles")
  4690. },
  4691. ]
  4692. ))
  4693. characterMakers.push(() => makeCharacter(
  4694. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4695. {
  4696. front: {
  4697. height: math.unit(6, "feet"),
  4698. weight: math.unit(200, "lbs"),
  4699. name: "Front",
  4700. image: {
  4701. source: "./media/characters/vulpes/front.svg",
  4702. extra: 573 / 543,
  4703. bottom: 0.033
  4704. }
  4705. },
  4706. side: {
  4707. height: math.unit(6, "feet"),
  4708. weight: math.unit(200, "lbs"),
  4709. name: "Side",
  4710. image: {
  4711. source: "./media/characters/vulpes/side.svg",
  4712. extra: 577 / 549,
  4713. bottom: 11 / 588
  4714. }
  4715. },
  4716. back: {
  4717. height: math.unit(6, "feet"),
  4718. weight: math.unit(200, "lbs"),
  4719. name: "Back",
  4720. image: {
  4721. source: "./media/characters/vulpes/back.svg",
  4722. extra: 573 / 549,
  4723. bottom: 20 / 593
  4724. }
  4725. },
  4726. feet: {
  4727. height: math.unit(1.276, "feet"),
  4728. name: "Feet",
  4729. image: {
  4730. source: "./media/characters/vulpes/feet.svg"
  4731. }
  4732. },
  4733. maw: {
  4734. height: math.unit(1.18, "feet"),
  4735. name: "Maw",
  4736. image: {
  4737. source: "./media/characters/vulpes/maw.svg"
  4738. }
  4739. },
  4740. },
  4741. [
  4742. {
  4743. name: "Micro",
  4744. height: math.unit(2, "inches")
  4745. },
  4746. {
  4747. name: "Normal",
  4748. height: math.unit(6.3, "feet")
  4749. },
  4750. {
  4751. name: "Macro",
  4752. height: math.unit(850, "feet")
  4753. },
  4754. {
  4755. name: "Megamacro",
  4756. height: math.unit(7500, "feet"),
  4757. default: true
  4758. },
  4759. {
  4760. name: "Gigamacro",
  4761. height: math.unit(570000, "miles")
  4762. }
  4763. ]
  4764. ))
  4765. characterMakers.push(() => makeCharacter(
  4766. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4767. {
  4768. front: {
  4769. height: math.unit(6, "feet"),
  4770. weight: math.unit(210, "lbs"),
  4771. name: "Front",
  4772. image: {
  4773. source: "./media/characters/rain-fallen/front.svg"
  4774. }
  4775. },
  4776. side: {
  4777. height: math.unit(6, "feet"),
  4778. weight: math.unit(210, "lbs"),
  4779. name: "Side",
  4780. image: {
  4781. source: "./media/characters/rain-fallen/side.svg"
  4782. }
  4783. },
  4784. back: {
  4785. height: math.unit(6, "feet"),
  4786. weight: math.unit(210, "lbs"),
  4787. name: "Back",
  4788. image: {
  4789. source: "./media/characters/rain-fallen/back.svg"
  4790. }
  4791. },
  4792. feral: {
  4793. height: math.unit(9, "feet"),
  4794. weight: math.unit(700, "lbs"),
  4795. name: "Feral",
  4796. image: {
  4797. source: "./media/characters/rain-fallen/feral.svg"
  4798. }
  4799. },
  4800. },
  4801. [
  4802. {
  4803. name: "Meddling with Mortals",
  4804. height: math.unit(8 + 8/12, "feet")
  4805. },
  4806. {
  4807. name: "Normal",
  4808. height: math.unit(5, "meter")
  4809. },
  4810. {
  4811. name: "Macro",
  4812. height: math.unit(150, "meter"),
  4813. default: true
  4814. },
  4815. {
  4816. name: "Megamacro",
  4817. height: math.unit(278e6, "meter")
  4818. },
  4819. {
  4820. name: "Gigamacro",
  4821. height: math.unit(2e9, "meter")
  4822. },
  4823. {
  4824. name: "Teramacro",
  4825. height: math.unit(8e12, "meter")
  4826. },
  4827. {
  4828. name: "Devourer",
  4829. height: math.unit(14, "zettameters")
  4830. },
  4831. {
  4832. name: "Scarlet King",
  4833. height: math.unit(18, "yottameters")
  4834. },
  4835. {
  4836. name: "Void",
  4837. height: math.unit(1e88, "yottameters")
  4838. }
  4839. ]
  4840. ))
  4841. characterMakers.push(() => makeCharacter(
  4842. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4843. {
  4844. standing: {
  4845. height: math.unit(6, "feet"),
  4846. weight: math.unit(180, "lbs"),
  4847. name: "Standing",
  4848. image: {
  4849. source: "./media/characters/zaakira/standing.svg",
  4850. extra: 1599/1504,
  4851. bottom: 39/1638
  4852. }
  4853. },
  4854. laying: {
  4855. height: math.unit(3, "feet"),
  4856. weight: math.unit(180, "lbs"),
  4857. name: "Laying",
  4858. image: {
  4859. source: "./media/characters/zaakira/laying.svg"
  4860. }
  4861. },
  4862. },
  4863. [
  4864. {
  4865. name: "Normal",
  4866. height: math.unit(12, "feet")
  4867. },
  4868. {
  4869. name: "Macro",
  4870. height: math.unit(279, "feet"),
  4871. default: true
  4872. }
  4873. ]
  4874. ))
  4875. characterMakers.push(() => makeCharacter(
  4876. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4877. {
  4878. femSfw: {
  4879. height: math.unit(8, "feet"),
  4880. weight: math.unit(350, "lb"),
  4881. name: "Fem",
  4882. image: {
  4883. source: "./media/characters/sigvald/fem-sfw.svg",
  4884. extra: 182 / 164,
  4885. bottom: 8.7 / 190.5
  4886. }
  4887. },
  4888. femNsfw: {
  4889. height: math.unit(8, "feet"),
  4890. weight: math.unit(350, "lb"),
  4891. name: "Fem (NSFW)",
  4892. image: {
  4893. source: "./media/characters/sigvald/fem-nsfw.svg",
  4894. extra: 182 / 164,
  4895. bottom: 8.7 / 190.5
  4896. }
  4897. },
  4898. maleNsfw: {
  4899. height: math.unit(8, "feet"),
  4900. weight: math.unit(350, "lb"),
  4901. name: "Male (NSFW)",
  4902. image: {
  4903. source: "./media/characters/sigvald/male-nsfw.svg",
  4904. extra: 182 / 164,
  4905. bottom: 8.7 / 190.5
  4906. }
  4907. },
  4908. hermNsfw: {
  4909. height: math.unit(8, "feet"),
  4910. weight: math.unit(350, "lb"),
  4911. name: "Herm (NSFW)",
  4912. image: {
  4913. source: "./media/characters/sigvald/herm-nsfw.svg",
  4914. extra: 182 / 164,
  4915. bottom: 8.7 / 190.5
  4916. }
  4917. },
  4918. dick: {
  4919. height: math.unit(2.36, "feet"),
  4920. name: "Dick",
  4921. image: {
  4922. source: "./media/characters/sigvald/dick.svg"
  4923. }
  4924. },
  4925. eye: {
  4926. height: math.unit(0.31, "feet"),
  4927. name: "Eye",
  4928. image: {
  4929. source: "./media/characters/sigvald/eye.svg"
  4930. }
  4931. },
  4932. mouth: {
  4933. height: math.unit(0.92, "feet"),
  4934. name: "Mouth",
  4935. image: {
  4936. source: "./media/characters/sigvald/mouth.svg"
  4937. }
  4938. },
  4939. paws: {
  4940. height: math.unit(2.2, "feet"),
  4941. name: "Paws",
  4942. image: {
  4943. source: "./media/characters/sigvald/paws.svg"
  4944. }
  4945. }
  4946. },
  4947. [
  4948. {
  4949. name: "Normal",
  4950. height: math.unit(8, "feet")
  4951. },
  4952. {
  4953. name: "Large",
  4954. height: math.unit(12, "feet")
  4955. },
  4956. {
  4957. name: "Larger",
  4958. height: math.unit(20, "feet")
  4959. },
  4960. {
  4961. name: "Macro",
  4962. height: math.unit(150, "feet")
  4963. },
  4964. {
  4965. name: "Macro+",
  4966. height: math.unit(200, "feet"),
  4967. default: true
  4968. },
  4969. ]
  4970. ))
  4971. characterMakers.push(() => makeCharacter(
  4972. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4973. {
  4974. side: {
  4975. height: math.unit(12, "feet"),
  4976. weight: math.unit(2000, "kg"),
  4977. name: "Side",
  4978. image: {
  4979. source: "./media/characters/scott/side.svg",
  4980. extra: 754 / 724,
  4981. bottom: 0.069
  4982. }
  4983. },
  4984. upright: {
  4985. height: math.unit(12, "feet"),
  4986. weight: math.unit(2000, "kg"),
  4987. name: "Upright",
  4988. image: {
  4989. source: "./media/characters/scott/upright.svg",
  4990. extra: 3881 / 3722,
  4991. bottom: 0.05
  4992. }
  4993. },
  4994. },
  4995. [
  4996. {
  4997. name: "Normal",
  4998. height: math.unit(12, "feet"),
  4999. default: true
  5000. },
  5001. ]
  5002. ))
  5003. characterMakers.push(() => makeCharacter(
  5004. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5005. {
  5006. side: {
  5007. height: math.unit(8, "meters"),
  5008. weight: math.unit(84755, "lbs"),
  5009. name: "Side",
  5010. image: {
  5011. source: "./media/characters/tobias/side.svg",
  5012. extra: 1474 / 1096,
  5013. bottom: 38.9 / 1513.1235
  5014. }
  5015. },
  5016. },
  5017. [
  5018. {
  5019. name: "Normal",
  5020. height: math.unit(8, "meters"),
  5021. default: true
  5022. },
  5023. ]
  5024. ))
  5025. characterMakers.push(() => makeCharacter(
  5026. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5027. {
  5028. front: {
  5029. height: math.unit(5.5, "feet"),
  5030. weight: math.unit(400, "lbs"),
  5031. name: "Front",
  5032. image: {
  5033. source: "./media/characters/kieran/front.svg",
  5034. extra: 2694 / 2364,
  5035. bottom: 217 / 2908
  5036. }
  5037. },
  5038. side: {
  5039. height: math.unit(5.5, "feet"),
  5040. weight: math.unit(400, "lbs"),
  5041. name: "Side",
  5042. image: {
  5043. source: "./media/characters/kieran/side.svg",
  5044. extra: 875 / 777,
  5045. bottom: 84.6 / 959
  5046. }
  5047. },
  5048. },
  5049. [
  5050. {
  5051. name: "Normal",
  5052. height: math.unit(5.5, "feet"),
  5053. default: true
  5054. },
  5055. ]
  5056. ))
  5057. characterMakers.push(() => makeCharacter(
  5058. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5059. {
  5060. side: {
  5061. height: math.unit(2, "meters"),
  5062. weight: math.unit(70, "kg"),
  5063. name: "Side",
  5064. image: {
  5065. source: "./media/characters/sanya/side.svg",
  5066. bottom: 0.02,
  5067. extra: 1.02
  5068. }
  5069. },
  5070. },
  5071. [
  5072. {
  5073. name: "Small",
  5074. height: math.unit(2, "meters")
  5075. },
  5076. {
  5077. name: "Normal",
  5078. height: math.unit(3, "meters")
  5079. },
  5080. {
  5081. name: "Macro",
  5082. height: math.unit(16, "meters"),
  5083. default: true
  5084. },
  5085. ]
  5086. ))
  5087. characterMakers.push(() => makeCharacter(
  5088. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5089. {
  5090. front: {
  5091. height: math.unit(2, "meters"),
  5092. weight: math.unit(120, "kg"),
  5093. name: "Front",
  5094. image: {
  5095. source: "./media/characters/miranda/front.svg",
  5096. extra: 195 / 185,
  5097. bottom: 10.9 / 206.5
  5098. }
  5099. },
  5100. back: {
  5101. height: math.unit(2, "meters"),
  5102. weight: math.unit(120, "kg"),
  5103. name: "Back",
  5104. image: {
  5105. source: "./media/characters/miranda/back.svg",
  5106. extra: 201 / 193,
  5107. bottom: 2.3 / 203.7
  5108. }
  5109. },
  5110. },
  5111. [
  5112. {
  5113. name: "Normal",
  5114. height: math.unit(10, "feet"),
  5115. default: true
  5116. }
  5117. ]
  5118. ))
  5119. characterMakers.push(() => makeCharacter(
  5120. { name: "James", species: ["deer"], tags: ["anthro"] },
  5121. {
  5122. side: {
  5123. height: math.unit(2, "meters"),
  5124. weight: math.unit(100, "kg"),
  5125. name: "Front",
  5126. image: {
  5127. source: "./media/characters/james/front.svg",
  5128. extra: 10 / 8.5
  5129. }
  5130. },
  5131. },
  5132. [
  5133. {
  5134. name: "Normal",
  5135. height: math.unit(8.5, "feet"),
  5136. default: true
  5137. }
  5138. ]
  5139. ))
  5140. characterMakers.push(() => makeCharacter(
  5141. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5142. {
  5143. side: {
  5144. height: math.unit(9.5, "feet"),
  5145. weight: math.unit(2500, "lbs"),
  5146. name: "Side",
  5147. image: {
  5148. source: "./media/characters/heather/side.svg"
  5149. }
  5150. },
  5151. },
  5152. [
  5153. {
  5154. name: "Normal",
  5155. height: math.unit(9.5, "feet"),
  5156. default: true
  5157. }
  5158. ]
  5159. ))
  5160. characterMakers.push(() => makeCharacter(
  5161. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5162. {
  5163. side: {
  5164. height: math.unit(6.5, "feet"),
  5165. weight: math.unit(400, "lbs"),
  5166. name: "Side",
  5167. image: {
  5168. source: "./media/characters/lukas/side.svg",
  5169. extra: 7.25 / 6.5
  5170. }
  5171. },
  5172. },
  5173. [
  5174. {
  5175. name: "Normal",
  5176. height: math.unit(6.5, "feet"),
  5177. default: true
  5178. }
  5179. ]
  5180. ))
  5181. characterMakers.push(() => makeCharacter(
  5182. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5183. {
  5184. side: {
  5185. height: math.unit(5, "feet"),
  5186. weight: math.unit(3000, "lbs"),
  5187. name: "Side",
  5188. image: {
  5189. source: "./media/characters/louise/side.svg"
  5190. }
  5191. },
  5192. },
  5193. [
  5194. {
  5195. name: "Normal",
  5196. height: math.unit(5, "feet"),
  5197. default: true
  5198. }
  5199. ]
  5200. ))
  5201. characterMakers.push(() => makeCharacter(
  5202. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5203. {
  5204. side: {
  5205. height: math.unit(6, "feet"),
  5206. weight: math.unit(150, "lbs"),
  5207. name: "Side",
  5208. image: {
  5209. source: "./media/characters/ramona/side.svg"
  5210. }
  5211. },
  5212. },
  5213. [
  5214. {
  5215. name: "Normal",
  5216. height: math.unit(5.3, "meters"),
  5217. default: true
  5218. },
  5219. {
  5220. name: "Macro",
  5221. height: math.unit(20, "stories")
  5222. },
  5223. {
  5224. name: "Macro+",
  5225. height: math.unit(50, "stories")
  5226. },
  5227. ]
  5228. ))
  5229. characterMakers.push(() => makeCharacter(
  5230. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5231. {
  5232. standing: {
  5233. height: math.unit(5.75, "feet"),
  5234. weight: math.unit(160, "lbs"),
  5235. name: "Standing",
  5236. image: {
  5237. source: "./media/characters/deerpuff/standing.svg",
  5238. extra: 682 / 624
  5239. }
  5240. },
  5241. sitting: {
  5242. height: math.unit(5.75 / 1.79, "feet"),
  5243. weight: math.unit(160, "lbs"),
  5244. name: "Sitting",
  5245. image: {
  5246. source: "./media/characters/deerpuff/sitting.svg",
  5247. bottom: 44 / 400,
  5248. extra: 1
  5249. }
  5250. },
  5251. taurLaying: {
  5252. height: math.unit(6, "feet"),
  5253. weight: math.unit(400, "lbs"),
  5254. name: "Taur (Laying)",
  5255. image: {
  5256. source: "./media/characters/deerpuff/taur-laying.svg"
  5257. }
  5258. },
  5259. },
  5260. [
  5261. {
  5262. name: "Puffball",
  5263. height: math.unit(6, "inches")
  5264. },
  5265. {
  5266. name: "Normalpuff",
  5267. height: math.unit(5.75, "feet")
  5268. },
  5269. {
  5270. name: "Macropuff",
  5271. height: math.unit(1500, "feet"),
  5272. default: true
  5273. },
  5274. {
  5275. name: "Megapuff",
  5276. height: math.unit(500, "miles")
  5277. },
  5278. {
  5279. name: "Gigapuff",
  5280. height: math.unit(250000, "miles")
  5281. },
  5282. {
  5283. name: "Omegapuff",
  5284. height: math.unit(1000, "lightyears")
  5285. },
  5286. ]
  5287. ))
  5288. characterMakers.push(() => makeCharacter(
  5289. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5290. {
  5291. stomping: {
  5292. height: math.unit(6, "feet"),
  5293. weight: math.unit(170, "lbs"),
  5294. name: "Stomping",
  5295. image: {
  5296. source: "./media/characters/vivian/stomping.svg"
  5297. }
  5298. },
  5299. sitting: {
  5300. height: math.unit(6 / 1.75, "feet"),
  5301. weight: math.unit(170, "lbs"),
  5302. name: "Sitting",
  5303. image: {
  5304. source: "./media/characters/vivian/sitting.svg",
  5305. bottom: 1 / 6.4,
  5306. extra: 1,
  5307. }
  5308. },
  5309. },
  5310. [
  5311. {
  5312. name: "Normal",
  5313. height: math.unit(7, "feet"),
  5314. default: true
  5315. },
  5316. {
  5317. name: "Macro",
  5318. height: math.unit(10, "stories")
  5319. },
  5320. {
  5321. name: "Macro+",
  5322. height: math.unit(30, "stories")
  5323. },
  5324. {
  5325. name: "Megamacro",
  5326. height: math.unit(10, "miles")
  5327. },
  5328. {
  5329. name: "Megamacro+",
  5330. height: math.unit(2750000, "meters")
  5331. },
  5332. ]
  5333. ))
  5334. characterMakers.push(() => makeCharacter(
  5335. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5336. {
  5337. front: {
  5338. height: math.unit(6, "feet"),
  5339. weight: math.unit(160, "lbs"),
  5340. name: "Front",
  5341. image: {
  5342. source: "./media/characters/prince/front.svg",
  5343. extra: 3400 / 3000
  5344. }
  5345. },
  5346. jumping: {
  5347. height: math.unit(6, "feet"),
  5348. weight: math.unit(160, "lbs"),
  5349. name: "Jumping",
  5350. image: {
  5351. source: "./media/characters/prince/jump.svg",
  5352. extra: 2555 / 2134
  5353. }
  5354. },
  5355. },
  5356. [
  5357. {
  5358. name: "Normal",
  5359. height: math.unit(7.75, "feet"),
  5360. default: true
  5361. },
  5362. {
  5363. name: "Not cute",
  5364. height: math.unit(17, "feet")
  5365. },
  5366. {
  5367. name: "I said NOT",
  5368. height: math.unit(91, "feet")
  5369. },
  5370. {
  5371. name: "Please stop",
  5372. height: math.unit(560, "feet")
  5373. },
  5374. {
  5375. name: "What have you done",
  5376. height: math.unit(2200, "feet")
  5377. },
  5378. {
  5379. name: "Deer God",
  5380. height: math.unit(3.6, "miles")
  5381. },
  5382. ]
  5383. ))
  5384. characterMakers.push(() => makeCharacter(
  5385. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5386. {
  5387. standing: {
  5388. height: math.unit(6, "feet"),
  5389. weight: math.unit(300, "lbs"),
  5390. name: "Standing",
  5391. image: {
  5392. source: "./media/characters/psymon/standing.svg",
  5393. extra: 1888 / 1810,
  5394. bottom: 0.05
  5395. }
  5396. },
  5397. slithering: {
  5398. height: math.unit(6, "feet"),
  5399. weight: math.unit(300, "lbs"),
  5400. name: "Slithering",
  5401. image: {
  5402. source: "./media/characters/psymon/slithering.svg",
  5403. extra: 1330 / 1224
  5404. }
  5405. },
  5406. slitheringAlt: {
  5407. height: math.unit(6, "feet"),
  5408. weight: math.unit(300, "lbs"),
  5409. name: "Slithering (Alt)",
  5410. image: {
  5411. source: "./media/characters/psymon/slithering-alt.svg",
  5412. extra: 1330 / 1224
  5413. }
  5414. },
  5415. },
  5416. [
  5417. {
  5418. name: "Normal",
  5419. height: math.unit(11.25, "feet"),
  5420. default: true
  5421. },
  5422. {
  5423. name: "Large",
  5424. height: math.unit(27, "feet")
  5425. },
  5426. {
  5427. name: "Giant",
  5428. height: math.unit(87, "feet")
  5429. },
  5430. {
  5431. name: "Macro",
  5432. height: math.unit(365, "feet")
  5433. },
  5434. {
  5435. name: "Megamacro",
  5436. height: math.unit(3, "miles")
  5437. },
  5438. {
  5439. name: "World Serpent",
  5440. height: math.unit(8000, "miles")
  5441. },
  5442. ]
  5443. ))
  5444. characterMakers.push(() => makeCharacter(
  5445. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5446. {
  5447. front: {
  5448. height: math.unit(6, "feet"),
  5449. weight: math.unit(180, "lbs"),
  5450. name: "Front",
  5451. image: {
  5452. source: "./media/characters/daimos/front.svg",
  5453. extra: 4160 / 3897,
  5454. bottom: 0.021
  5455. }
  5456. }
  5457. },
  5458. [
  5459. {
  5460. name: "Normal",
  5461. height: math.unit(8, "feet"),
  5462. default: true
  5463. },
  5464. {
  5465. name: "Big Dog",
  5466. height: math.unit(22, "feet")
  5467. },
  5468. {
  5469. name: "Macro",
  5470. height: math.unit(127, "feet")
  5471. },
  5472. {
  5473. name: "Megamacro",
  5474. height: math.unit(3600, "feet")
  5475. },
  5476. ]
  5477. ))
  5478. characterMakers.push(() => makeCharacter(
  5479. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5480. {
  5481. side: {
  5482. height: math.unit(6, "feet"),
  5483. weight: math.unit(180, "lbs"),
  5484. name: "Side",
  5485. image: {
  5486. source: "./media/characters/blake/side.svg",
  5487. extra: 1212 / 1120,
  5488. bottom: 0.05
  5489. }
  5490. },
  5491. crouched: {
  5492. height: math.unit(6 * 0.57, "feet"),
  5493. weight: math.unit(180, "lbs"),
  5494. name: "Crouched",
  5495. image: {
  5496. source: "./media/characters/blake/crouched.svg",
  5497. extra: 840 / 587,
  5498. bottom: 0.04
  5499. }
  5500. },
  5501. bent: {
  5502. height: math.unit(6 * 0.75, "feet"),
  5503. weight: math.unit(180, "lbs"),
  5504. name: "Bent",
  5505. image: {
  5506. source: "./media/characters/blake/bent.svg",
  5507. extra: 592 / 544,
  5508. bottom: 0.035
  5509. }
  5510. },
  5511. },
  5512. [
  5513. {
  5514. name: "Normal",
  5515. height: math.unit(8 + 1 / 6, "feet"),
  5516. default: true
  5517. },
  5518. {
  5519. name: "Big Backside",
  5520. height: math.unit(37, "feet")
  5521. },
  5522. {
  5523. name: "Subway Shredder",
  5524. height: math.unit(72, "feet")
  5525. },
  5526. {
  5527. name: "City Carver",
  5528. height: math.unit(1675, "feet")
  5529. },
  5530. {
  5531. name: "Tectonic Tweaker",
  5532. height: math.unit(2300, "miles")
  5533. },
  5534. ]
  5535. ))
  5536. characterMakers.push(() => makeCharacter(
  5537. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5538. {
  5539. front: {
  5540. height: math.unit(6, "feet"),
  5541. weight: math.unit(180, "lbs"),
  5542. name: "Front",
  5543. image: {
  5544. source: "./media/characters/guisetto/front.svg",
  5545. extra: 856 / 817,
  5546. bottom: 0.06
  5547. }
  5548. },
  5549. airborne: {
  5550. height: math.unit(6, "feet"),
  5551. weight: math.unit(180, "lbs"),
  5552. name: "Airborne",
  5553. image: {
  5554. source: "./media/characters/guisetto/airborne.svg",
  5555. extra: 584 / 525
  5556. }
  5557. },
  5558. },
  5559. [
  5560. {
  5561. name: "Normal",
  5562. height: math.unit(10 + 11 / 12, "feet"),
  5563. default: true
  5564. },
  5565. {
  5566. name: "Large",
  5567. height: math.unit(35, "feet")
  5568. },
  5569. {
  5570. name: "Macro",
  5571. height: math.unit(475, "feet")
  5572. },
  5573. ]
  5574. ))
  5575. characterMakers.push(() => makeCharacter(
  5576. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5577. {
  5578. front: {
  5579. height: math.unit(6, "feet"),
  5580. weight: math.unit(180, "lbs"),
  5581. name: "Front",
  5582. image: {
  5583. source: "./media/characters/luxor/front.svg",
  5584. extra: 2940 / 2152
  5585. }
  5586. },
  5587. back: {
  5588. height: math.unit(6, "feet"),
  5589. weight: math.unit(180, "lbs"),
  5590. name: "Back",
  5591. image: {
  5592. source: "./media/characters/luxor/back.svg",
  5593. extra: 1083 / 960
  5594. }
  5595. },
  5596. },
  5597. [
  5598. {
  5599. name: "Normal",
  5600. height: math.unit(5 + 5 / 6, "feet"),
  5601. default: true
  5602. },
  5603. {
  5604. name: "Lamp",
  5605. height: math.unit(50, "feet")
  5606. },
  5607. {
  5608. name: "Lämp",
  5609. height: math.unit(300, "feet")
  5610. },
  5611. {
  5612. name: "The sun is a lamp",
  5613. height: math.unit(250000, "miles")
  5614. },
  5615. ]
  5616. ))
  5617. characterMakers.push(() => makeCharacter(
  5618. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5619. {
  5620. front: {
  5621. height: math.unit(6, "feet"),
  5622. weight: math.unit(50, "lbs"),
  5623. name: "Front",
  5624. image: {
  5625. source: "./media/characters/huoyan/front.svg"
  5626. }
  5627. },
  5628. side: {
  5629. height: math.unit(6, "feet"),
  5630. weight: math.unit(180, "lbs"),
  5631. name: "Side",
  5632. image: {
  5633. source: "./media/characters/huoyan/side.svg"
  5634. }
  5635. },
  5636. },
  5637. [
  5638. {
  5639. name: "Chef",
  5640. height: math.unit(9, "feet")
  5641. },
  5642. {
  5643. name: "Normal",
  5644. height: math.unit(65, "feet"),
  5645. default: true
  5646. },
  5647. {
  5648. name: "Macro",
  5649. height: math.unit(780, "feet")
  5650. },
  5651. {
  5652. name: "Flaming Mountain",
  5653. height: math.unit(4.8, "miles")
  5654. },
  5655. {
  5656. name: "Celestial",
  5657. height: math.unit(765000, "miles")
  5658. },
  5659. ]
  5660. ))
  5661. characterMakers.push(() => makeCharacter(
  5662. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5663. {
  5664. front: {
  5665. height: math.unit(5 + 3 / 4, "feet"),
  5666. weight: math.unit(120, "lbs"),
  5667. name: "Front",
  5668. image: {
  5669. source: "./media/characters/tails/front.svg"
  5670. }
  5671. }
  5672. },
  5673. [
  5674. {
  5675. name: "Normal",
  5676. height: math.unit(5 + 3 / 4, "feet"),
  5677. default: true
  5678. }
  5679. ]
  5680. ))
  5681. characterMakers.push(() => makeCharacter(
  5682. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5683. {
  5684. front: {
  5685. height: math.unit(4, "feet"),
  5686. weight: math.unit(50, "lbs"),
  5687. name: "Front",
  5688. image: {
  5689. source: "./media/characters/rainy/front.svg"
  5690. }
  5691. }
  5692. },
  5693. [
  5694. {
  5695. name: "Macro",
  5696. height: math.unit(800, "feet"),
  5697. default: true
  5698. }
  5699. ]
  5700. ))
  5701. characterMakers.push(() => makeCharacter(
  5702. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5703. {
  5704. front: {
  5705. height: math.unit(6, "feet"),
  5706. weight: math.unit(150, "lbs"),
  5707. name: "Front",
  5708. image: {
  5709. source: "./media/characters/rainier/front.svg"
  5710. }
  5711. }
  5712. },
  5713. [
  5714. {
  5715. name: "Micro",
  5716. height: math.unit(2, "mm"),
  5717. default: true
  5718. }
  5719. ]
  5720. ))
  5721. characterMakers.push(() => makeCharacter(
  5722. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5723. {
  5724. front: {
  5725. height: math.unit(8 + 4/12, "feet"),
  5726. name: "Front",
  5727. image: {
  5728. source: "./media/characters/andy-renard/front.svg",
  5729. extra: 1839/1726,
  5730. bottom: 134/1973
  5731. }
  5732. },
  5733. back: {
  5734. height: math.unit(8 + 4/12, "feet"),
  5735. name: "Back",
  5736. image: {
  5737. source: "./media/characters/andy-renard/back.svg",
  5738. extra: 1838/1710,
  5739. bottom: 105/1943
  5740. }
  5741. },
  5742. },
  5743. [
  5744. {
  5745. name: "Tall",
  5746. height: math.unit(8 + 4/12, "feet")
  5747. },
  5748. {
  5749. name: "Mini Macro",
  5750. height: math.unit(15, "feet"),
  5751. default: true
  5752. },
  5753. {
  5754. name: "Macro",
  5755. height: math.unit(100, "feet")
  5756. },
  5757. {
  5758. name: "Mega Macro",
  5759. height: math.unit(1000, "feet")
  5760. },
  5761. {
  5762. name: "Giga Macro",
  5763. height: math.unit(10, "miles")
  5764. },
  5765. {
  5766. name: "God Macro",
  5767. height: math.unit(1, "multiverse")
  5768. },
  5769. ]
  5770. ))
  5771. characterMakers.push(() => makeCharacter(
  5772. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5773. {
  5774. front: {
  5775. height: math.unit(6, "feet"),
  5776. weight: math.unit(210, "lbs"),
  5777. name: "Front",
  5778. image: {
  5779. source: "./media/characters/cimmaron/front-sfw.svg",
  5780. extra: 701 / 676,
  5781. bottom: 0.046
  5782. }
  5783. },
  5784. back: {
  5785. height: math.unit(6, "feet"),
  5786. weight: math.unit(210, "lbs"),
  5787. name: "Back",
  5788. image: {
  5789. source: "./media/characters/cimmaron/back-sfw.svg",
  5790. extra: 701 / 676,
  5791. bottom: 0.046
  5792. }
  5793. },
  5794. frontNsfw: {
  5795. height: math.unit(6, "feet"),
  5796. weight: math.unit(210, "lbs"),
  5797. name: "Front (NSFW)",
  5798. image: {
  5799. source: "./media/characters/cimmaron/front-nsfw.svg",
  5800. extra: 701 / 676,
  5801. bottom: 0.046
  5802. }
  5803. },
  5804. backNsfw: {
  5805. height: math.unit(6, "feet"),
  5806. weight: math.unit(210, "lbs"),
  5807. name: "Back (NSFW)",
  5808. image: {
  5809. source: "./media/characters/cimmaron/back-nsfw.svg",
  5810. extra: 701 / 676,
  5811. bottom: 0.046
  5812. }
  5813. },
  5814. dick: {
  5815. height: math.unit(1.714, "feet"),
  5816. name: "Dick",
  5817. image: {
  5818. source: "./media/characters/cimmaron/dick.svg"
  5819. }
  5820. },
  5821. },
  5822. [
  5823. {
  5824. name: "Normal",
  5825. height: math.unit(6, "feet"),
  5826. default: true
  5827. },
  5828. {
  5829. name: "Macro Mayor",
  5830. height: math.unit(350, "meters")
  5831. },
  5832. ]
  5833. ))
  5834. characterMakers.push(() => makeCharacter(
  5835. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5836. {
  5837. front: {
  5838. height: math.unit(6, "feet"),
  5839. weight: math.unit(200, "lbs"),
  5840. name: "Front",
  5841. image: {
  5842. source: "./media/characters/akari/front.svg",
  5843. extra: 962 / 901,
  5844. bottom: 0.04
  5845. }
  5846. }
  5847. },
  5848. [
  5849. {
  5850. name: "Micro",
  5851. height: math.unit(5, "inches"),
  5852. default: true
  5853. },
  5854. {
  5855. name: "Normal",
  5856. height: math.unit(7, "feet")
  5857. },
  5858. ]
  5859. ))
  5860. characterMakers.push(() => makeCharacter(
  5861. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5862. {
  5863. front: {
  5864. height: math.unit(6, "feet"),
  5865. weight: math.unit(140, "lbs"),
  5866. name: "Front",
  5867. image: {
  5868. source: "./media/characters/cynosura/front.svg",
  5869. extra: 896 / 847
  5870. }
  5871. },
  5872. back: {
  5873. height: math.unit(6, "feet"),
  5874. weight: math.unit(140, "lbs"),
  5875. name: "Back",
  5876. image: {
  5877. source: "./media/characters/cynosura/back.svg",
  5878. extra: 1365 / 1250
  5879. }
  5880. },
  5881. },
  5882. [
  5883. {
  5884. name: "Micro",
  5885. height: math.unit(4, "inches")
  5886. },
  5887. {
  5888. name: "Normal",
  5889. height: math.unit(5.75, "feet"),
  5890. default: true
  5891. },
  5892. {
  5893. name: "Tall",
  5894. height: math.unit(10, "feet")
  5895. },
  5896. {
  5897. name: "Big",
  5898. height: math.unit(20, "feet")
  5899. },
  5900. {
  5901. name: "Macro",
  5902. height: math.unit(50, "feet")
  5903. },
  5904. ]
  5905. ))
  5906. characterMakers.push(() => makeCharacter(
  5907. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5908. {
  5909. front: {
  5910. height: math.unit(13 + 2/12, "feet"),
  5911. weight: math.unit(800, "kg"),
  5912. name: "Front",
  5913. image: {
  5914. source: "./media/characters/gin/front.svg",
  5915. extra: 1312/1191,
  5916. bottom: 45/1357
  5917. }
  5918. },
  5919. mouth: {
  5920. height: math.unit(2.39 * 1.8, "feet"),
  5921. name: "Mouth",
  5922. image: {
  5923. source: "./media/characters/gin/mouth.svg"
  5924. }
  5925. },
  5926. hand: {
  5927. height: math.unit(1.57 * 2.19, "feet"),
  5928. name: "Hand",
  5929. image: {
  5930. source: "./media/characters/gin/hand.svg"
  5931. }
  5932. },
  5933. foot: {
  5934. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5935. name: "Foot",
  5936. image: {
  5937. source: "./media/characters/gin/foot.svg"
  5938. }
  5939. },
  5940. sole: {
  5941. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5942. name: "Sole",
  5943. image: {
  5944. source: "./media/characters/gin/sole.svg"
  5945. }
  5946. },
  5947. },
  5948. [
  5949. {
  5950. name: "Very Small",
  5951. height: math.unit(13 + 2 / 12, "feet")
  5952. },
  5953. {
  5954. name: "Micro",
  5955. height: math.unit(600, "miles")
  5956. },
  5957. {
  5958. name: "Regular",
  5959. height: math.unit(20, "earths"),
  5960. default: true
  5961. },
  5962. {
  5963. name: "Macro",
  5964. height: math.unit(2.2, "solarradii")
  5965. },
  5966. {
  5967. name: "Teramacro",
  5968. height: math.unit(1.2, "galaxies")
  5969. },
  5970. {
  5971. name: "Omegamacro",
  5972. height: math.unit(200, "universes")
  5973. },
  5974. ]
  5975. ))
  5976. characterMakers.push(() => makeCharacter(
  5977. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5978. {
  5979. front: {
  5980. height: math.unit(6 + 1 / 6, "feet"),
  5981. weight: math.unit(178, "lbs"),
  5982. name: "Front",
  5983. image: {
  5984. source: "./media/characters/guy/front.svg"
  5985. }
  5986. }
  5987. },
  5988. [
  5989. {
  5990. name: "Normal",
  5991. height: math.unit(6 + 1 / 6, "feet"),
  5992. default: true
  5993. },
  5994. {
  5995. name: "Large",
  5996. height: math.unit(25 + 7 / 12, "feet")
  5997. },
  5998. {
  5999. name: "Macro",
  6000. height: math.unit(60 + 9 / 12, "feet")
  6001. },
  6002. {
  6003. name: "Macro+",
  6004. height: math.unit(246, "feet")
  6005. },
  6006. {
  6007. name: "Macro++",
  6008. height: math.unit(878, "feet")
  6009. }
  6010. ]
  6011. ))
  6012. characterMakers.push(() => makeCharacter(
  6013. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6014. {
  6015. front: {
  6016. height: math.unit(9, "feet"),
  6017. weight: math.unit(800, "lbs"),
  6018. name: "Front",
  6019. image: {
  6020. source: "./media/characters/tiberius/front.svg",
  6021. extra: 2295 / 2071
  6022. }
  6023. },
  6024. back: {
  6025. height: math.unit(9, "feet"),
  6026. weight: math.unit(800, "lbs"),
  6027. name: "Back",
  6028. image: {
  6029. source: "./media/characters/tiberius/back.svg",
  6030. extra: 2373 / 2160
  6031. }
  6032. },
  6033. },
  6034. [
  6035. {
  6036. name: "Normal",
  6037. height: math.unit(9, "feet"),
  6038. default: true
  6039. }
  6040. ]
  6041. ))
  6042. characterMakers.push(() => makeCharacter(
  6043. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6044. {
  6045. front: {
  6046. height: math.unit(6, "feet"),
  6047. weight: math.unit(600, "lbs"),
  6048. name: "Front",
  6049. image: {
  6050. source: "./media/characters/surgo/front.svg",
  6051. extra: 3591 / 2227
  6052. }
  6053. },
  6054. back: {
  6055. height: math.unit(6, "feet"),
  6056. weight: math.unit(600, "lbs"),
  6057. name: "Back",
  6058. image: {
  6059. source: "./media/characters/surgo/back.svg",
  6060. extra: 3557 / 2228
  6061. }
  6062. },
  6063. laying: {
  6064. height: math.unit(6 * 0.85, "feet"),
  6065. weight: math.unit(600, "lbs"),
  6066. name: "Laying",
  6067. image: {
  6068. source: "./media/characters/surgo/laying.svg"
  6069. }
  6070. },
  6071. },
  6072. [
  6073. {
  6074. name: "Normal",
  6075. height: math.unit(6, "feet"),
  6076. default: true
  6077. }
  6078. ]
  6079. ))
  6080. characterMakers.push(() => makeCharacter(
  6081. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6082. {
  6083. side: {
  6084. height: math.unit(6, "feet"),
  6085. weight: math.unit(150, "lbs"),
  6086. name: "Side",
  6087. image: {
  6088. source: "./media/characters/cibus/side.svg",
  6089. extra: 800 / 400
  6090. }
  6091. },
  6092. },
  6093. [
  6094. {
  6095. name: "Normal",
  6096. height: math.unit(6, "feet"),
  6097. default: true
  6098. }
  6099. ]
  6100. ))
  6101. characterMakers.push(() => makeCharacter(
  6102. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6103. {
  6104. front: {
  6105. height: math.unit(6, "feet"),
  6106. weight: math.unit(240, "lbs"),
  6107. name: "Front",
  6108. image: {
  6109. source: "./media/characters/nibbles/front.svg"
  6110. }
  6111. },
  6112. side: {
  6113. height: math.unit(6, "feet"),
  6114. weight: math.unit(240, "lbs"),
  6115. name: "Side",
  6116. image: {
  6117. source: "./media/characters/nibbles/side.svg"
  6118. }
  6119. },
  6120. },
  6121. [
  6122. {
  6123. name: "Normal",
  6124. height: math.unit(9, "feet"),
  6125. default: true
  6126. }
  6127. ]
  6128. ))
  6129. characterMakers.push(() => makeCharacter(
  6130. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6131. {
  6132. side: {
  6133. height: math.unit(5 + 1 / 6, "feet"),
  6134. weight: math.unit(130, "lbs"),
  6135. name: "Side",
  6136. image: {
  6137. source: "./media/characters/rikky/side.svg",
  6138. extra: 851 / 801
  6139. }
  6140. },
  6141. },
  6142. [
  6143. {
  6144. name: "Normal",
  6145. height: math.unit(5 + 1 / 6, "feet")
  6146. },
  6147. {
  6148. name: "Macro",
  6149. height: math.unit(152, "feet"),
  6150. default: true
  6151. },
  6152. {
  6153. name: "Megamacro",
  6154. height: math.unit(7, "miles")
  6155. }
  6156. ]
  6157. ))
  6158. characterMakers.push(() => makeCharacter(
  6159. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6160. {
  6161. side: {
  6162. height: math.unit(370, "cm"),
  6163. weight: math.unit(350, "lbs"),
  6164. name: "Side",
  6165. image: {
  6166. source: "./media/characters/malfressa/side.svg"
  6167. }
  6168. },
  6169. walking: {
  6170. height: math.unit(370, "cm"),
  6171. weight: math.unit(350, "lbs"),
  6172. name: "Walking",
  6173. image: {
  6174. source: "./media/characters/malfressa/walking.svg"
  6175. }
  6176. },
  6177. feral: {
  6178. height: math.unit(2500, "cm"),
  6179. weight: math.unit(100000, "lbs"),
  6180. name: "Feral",
  6181. image: {
  6182. source: "./media/characters/malfressa/feral.svg",
  6183. extra: 2108 / 837,
  6184. bottom: 0.02
  6185. }
  6186. },
  6187. },
  6188. [
  6189. {
  6190. name: "Normal",
  6191. height: math.unit(370, "cm")
  6192. },
  6193. {
  6194. name: "Macro",
  6195. height: math.unit(300, "meters"),
  6196. default: true
  6197. }
  6198. ]
  6199. ))
  6200. characterMakers.push(() => makeCharacter(
  6201. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6202. {
  6203. front: {
  6204. height: math.unit(6, "feet"),
  6205. weight: math.unit(60, "kg"),
  6206. name: "Front",
  6207. image: {
  6208. source: "./media/characters/jaro/front.svg"
  6209. }
  6210. },
  6211. back: {
  6212. height: math.unit(6, "feet"),
  6213. weight: math.unit(60, "kg"),
  6214. name: "Back",
  6215. image: {
  6216. source: "./media/characters/jaro/back.svg"
  6217. }
  6218. },
  6219. },
  6220. [
  6221. {
  6222. name: "Micro",
  6223. height: math.unit(7, "inches")
  6224. },
  6225. {
  6226. name: "Normal",
  6227. height: math.unit(5.5, "feet"),
  6228. default: true
  6229. },
  6230. {
  6231. name: "Minimacro",
  6232. height: math.unit(20, "feet")
  6233. },
  6234. {
  6235. name: "Macro",
  6236. height: math.unit(200, "meters")
  6237. }
  6238. ]
  6239. ))
  6240. characterMakers.push(() => makeCharacter(
  6241. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6242. {
  6243. front: {
  6244. height: math.unit(6, "feet"),
  6245. weight: math.unit(195, "lb"),
  6246. name: "Front",
  6247. image: {
  6248. source: "./media/characters/rogue/front.svg"
  6249. }
  6250. },
  6251. },
  6252. [
  6253. {
  6254. name: "Macro",
  6255. height: math.unit(90, "feet"),
  6256. default: true
  6257. },
  6258. ]
  6259. ))
  6260. characterMakers.push(() => makeCharacter(
  6261. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6262. {
  6263. front: {
  6264. height: math.unit(5 + 8 / 12, "feet"),
  6265. weight: math.unit(140, "lb"),
  6266. name: "Front",
  6267. image: {
  6268. source: "./media/characters/piper/front.svg",
  6269. extra: 3948/3655,
  6270. bottom: 0/3948
  6271. }
  6272. },
  6273. },
  6274. [
  6275. {
  6276. name: "Micro",
  6277. height: math.unit(2, "inches")
  6278. },
  6279. {
  6280. name: "Normal",
  6281. height: math.unit(5 + 8 / 12, "feet")
  6282. },
  6283. {
  6284. name: "Macro",
  6285. height: math.unit(250, "feet"),
  6286. default: true
  6287. },
  6288. {
  6289. name: "Megamacro",
  6290. height: math.unit(7, "miles")
  6291. },
  6292. ]
  6293. ))
  6294. characterMakers.push(() => makeCharacter(
  6295. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6296. {
  6297. front: {
  6298. height: math.unit(6, "feet"),
  6299. weight: math.unit(220, "lb"),
  6300. name: "Front",
  6301. image: {
  6302. source: "./media/characters/gemini/front.svg"
  6303. }
  6304. },
  6305. back: {
  6306. height: math.unit(6, "feet"),
  6307. weight: math.unit(220, "lb"),
  6308. name: "Back",
  6309. image: {
  6310. source: "./media/characters/gemini/back.svg"
  6311. }
  6312. },
  6313. kneeling: {
  6314. height: math.unit(6 / 1.5, "feet"),
  6315. weight: math.unit(220, "lb"),
  6316. name: "Kneeling",
  6317. image: {
  6318. source: "./media/characters/gemini/kneeling.svg",
  6319. bottom: 0.02
  6320. }
  6321. },
  6322. },
  6323. [
  6324. {
  6325. name: "Macro",
  6326. height: math.unit(300, "meters"),
  6327. default: true
  6328. },
  6329. {
  6330. name: "Megamacro",
  6331. height: math.unit(6900, "meters")
  6332. },
  6333. ]
  6334. ))
  6335. characterMakers.push(() => makeCharacter(
  6336. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6337. {
  6338. anthro: {
  6339. height: math.unit(2.35, "meters"),
  6340. weight: math.unit(73, "kg"),
  6341. name: "Anthro",
  6342. image: {
  6343. source: "./media/characters/alicia/anthro.svg",
  6344. extra: 2571 / 2385,
  6345. bottom: 75 / 2648
  6346. }
  6347. },
  6348. paw: {
  6349. height: math.unit(1.32, "feet"),
  6350. name: "Paw",
  6351. image: {
  6352. source: "./media/characters/alicia/paw.svg"
  6353. }
  6354. },
  6355. feral: {
  6356. height: math.unit(1.69, "meters"),
  6357. weight: math.unit(73, "kg"),
  6358. name: "Feral",
  6359. image: {
  6360. source: "./media/characters/alicia/feral.svg",
  6361. extra: 2123 / 1715,
  6362. bottom: 222 / 2349
  6363. }
  6364. },
  6365. },
  6366. [
  6367. {
  6368. name: "Normal",
  6369. height: math.unit(2.35, "meters")
  6370. },
  6371. {
  6372. name: "Macro",
  6373. height: math.unit(60, "meters"),
  6374. default: true
  6375. },
  6376. {
  6377. name: "Megamacro",
  6378. height: math.unit(10000, "kilometers")
  6379. },
  6380. ]
  6381. ))
  6382. characterMakers.push(() => makeCharacter(
  6383. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6384. {
  6385. front: {
  6386. height: math.unit(7, "feet"),
  6387. weight: math.unit(250, "lbs"),
  6388. name: "Front",
  6389. image: {
  6390. source: "./media/characters/archy/front.svg"
  6391. }
  6392. }
  6393. },
  6394. [
  6395. {
  6396. name: "Micro",
  6397. height: math.unit(1, "inch")
  6398. },
  6399. {
  6400. name: "Shorty",
  6401. height: math.unit(5, "feet")
  6402. },
  6403. {
  6404. name: "Normal",
  6405. height: math.unit(7, "feet")
  6406. },
  6407. {
  6408. name: "Macro",
  6409. height: math.unit(600, "meters"),
  6410. default: true
  6411. },
  6412. {
  6413. name: "Megamacro",
  6414. height: math.unit(1, "mile")
  6415. },
  6416. ]
  6417. ))
  6418. characterMakers.push(() => makeCharacter(
  6419. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6420. {
  6421. front: {
  6422. height: math.unit(1.65, "meters"),
  6423. weight: math.unit(74, "kg"),
  6424. name: "Front",
  6425. image: {
  6426. source: "./media/characters/berri/front.svg",
  6427. extra: 857 / 837,
  6428. bottom: 18 / 877
  6429. }
  6430. },
  6431. bum: {
  6432. height: math.unit(1.46, "feet"),
  6433. name: "Bum",
  6434. image: {
  6435. source: "./media/characters/berri/bum.svg"
  6436. }
  6437. },
  6438. mouth: {
  6439. height: math.unit(0.44, "feet"),
  6440. name: "Mouth",
  6441. image: {
  6442. source: "./media/characters/berri/mouth.svg"
  6443. }
  6444. },
  6445. paw: {
  6446. height: math.unit(0.826, "feet"),
  6447. name: "Paw",
  6448. image: {
  6449. source: "./media/characters/berri/paw.svg"
  6450. }
  6451. },
  6452. },
  6453. [
  6454. {
  6455. name: "Normal",
  6456. height: math.unit(1.65, "meters")
  6457. },
  6458. {
  6459. name: "Macro",
  6460. height: math.unit(60, "m"),
  6461. default: true
  6462. },
  6463. {
  6464. name: "Megamacro",
  6465. height: math.unit(9.213, "km")
  6466. },
  6467. {
  6468. name: "Planet Eater",
  6469. height: math.unit(489, "megameters")
  6470. },
  6471. {
  6472. name: "Teramacro",
  6473. height: math.unit(2471635000000, "meters")
  6474. },
  6475. {
  6476. name: "Examacro",
  6477. height: math.unit(8.0624e+26, "meters")
  6478. }
  6479. ]
  6480. ))
  6481. characterMakers.push(() => makeCharacter(
  6482. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6483. {
  6484. front: {
  6485. height: math.unit(1.72, "meters"),
  6486. weight: math.unit(68, "kg"),
  6487. name: "Front",
  6488. image: {
  6489. source: "./media/characters/lexi/front.svg"
  6490. }
  6491. }
  6492. },
  6493. [
  6494. {
  6495. name: "Very Smol",
  6496. height: math.unit(10, "mm")
  6497. },
  6498. {
  6499. name: "Micro",
  6500. height: math.unit(6.8, "cm"),
  6501. default: true
  6502. },
  6503. {
  6504. name: "Normal",
  6505. height: math.unit(1.72, "m")
  6506. }
  6507. ]
  6508. ))
  6509. characterMakers.push(() => makeCharacter(
  6510. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6511. {
  6512. front: {
  6513. height: math.unit(1.69, "meters"),
  6514. weight: math.unit(68, "kg"),
  6515. name: "Front",
  6516. image: {
  6517. source: "./media/characters/martin/front.svg",
  6518. extra: 596 / 581
  6519. }
  6520. }
  6521. },
  6522. [
  6523. {
  6524. name: "Micro",
  6525. height: math.unit(6.85, "cm"),
  6526. default: true
  6527. },
  6528. {
  6529. name: "Normal",
  6530. height: math.unit(1.69, "m")
  6531. }
  6532. ]
  6533. ))
  6534. characterMakers.push(() => makeCharacter(
  6535. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6536. {
  6537. front: {
  6538. height: math.unit(1.69, "meters"),
  6539. weight: math.unit(68, "kg"),
  6540. name: "Front",
  6541. image: {
  6542. source: "./media/characters/juno/front.svg"
  6543. }
  6544. }
  6545. },
  6546. [
  6547. {
  6548. name: "Micro",
  6549. height: math.unit(7, "cm")
  6550. },
  6551. {
  6552. name: "Normal",
  6553. height: math.unit(1.89, "m")
  6554. },
  6555. {
  6556. name: "Macro",
  6557. height: math.unit(353, "meters"),
  6558. default: true
  6559. }
  6560. ]
  6561. ))
  6562. characterMakers.push(() => makeCharacter(
  6563. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6564. {
  6565. front: {
  6566. height: math.unit(1.93, "meters"),
  6567. weight: math.unit(83, "kg"),
  6568. name: "Front",
  6569. image: {
  6570. source: "./media/characters/samantha/front.svg"
  6571. }
  6572. },
  6573. frontClothed: {
  6574. height: math.unit(1.93, "meters"),
  6575. weight: math.unit(83, "kg"),
  6576. name: "Front (Clothed)",
  6577. image: {
  6578. source: "./media/characters/samantha/front-clothed.svg"
  6579. }
  6580. },
  6581. back: {
  6582. height: math.unit(1.93, "meters"),
  6583. weight: math.unit(83, "kg"),
  6584. name: "Back",
  6585. image: {
  6586. source: "./media/characters/samantha/back.svg"
  6587. }
  6588. },
  6589. },
  6590. [
  6591. {
  6592. name: "Normal",
  6593. height: math.unit(1.93, "m")
  6594. },
  6595. {
  6596. name: "Macro",
  6597. height: math.unit(74, "meters"),
  6598. default: true
  6599. },
  6600. {
  6601. name: "Macro+",
  6602. height: math.unit(223, "meters"),
  6603. },
  6604. {
  6605. name: "Megamacro",
  6606. height: math.unit(8381, "meters"),
  6607. },
  6608. {
  6609. name: "Megamacro+",
  6610. height: math.unit(12000, "kilometers")
  6611. },
  6612. ]
  6613. ))
  6614. characterMakers.push(() => makeCharacter(
  6615. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6616. {
  6617. front: {
  6618. height: math.unit(1.92, "meters"),
  6619. weight: math.unit(80, "kg"),
  6620. name: "Front",
  6621. image: {
  6622. source: "./media/characters/dr-clay/front.svg"
  6623. }
  6624. },
  6625. frontClothed: {
  6626. height: math.unit(1.92, "meters"),
  6627. weight: math.unit(80, "kg"),
  6628. name: "Front (Clothed)",
  6629. image: {
  6630. source: "./media/characters/dr-clay/front-clothed.svg"
  6631. }
  6632. }
  6633. },
  6634. [
  6635. {
  6636. name: "Normal",
  6637. height: math.unit(1.92, "m")
  6638. },
  6639. {
  6640. name: "Macro",
  6641. height: math.unit(214, "meters"),
  6642. default: true
  6643. },
  6644. {
  6645. name: "Macro+",
  6646. height: math.unit(12.237, "meters"),
  6647. },
  6648. {
  6649. name: "Megamacro",
  6650. height: math.unit(557, "megameters"),
  6651. },
  6652. {
  6653. name: "Unimaginable",
  6654. height: math.unit(120e9, "lightyears")
  6655. },
  6656. ]
  6657. ))
  6658. characterMakers.push(() => makeCharacter(
  6659. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6660. {
  6661. front: {
  6662. height: math.unit(2, "meters"),
  6663. weight: math.unit(80, "kg"),
  6664. name: "Front",
  6665. image: {
  6666. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6667. }
  6668. }
  6669. },
  6670. [
  6671. {
  6672. name: "Teramacro",
  6673. height: math.unit(500000, "lightyears"),
  6674. default: true
  6675. },
  6676. ]
  6677. ))
  6678. characterMakers.push(() => makeCharacter(
  6679. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6680. {
  6681. crux: {
  6682. height: math.unit(2, "meters"),
  6683. weight: math.unit(150, "kg"),
  6684. name: "Crux",
  6685. image: {
  6686. source: "./media/characters/vemus/crux.svg",
  6687. extra: 1074/936,
  6688. bottom: 23/1097
  6689. }
  6690. },
  6691. skunkTanuki: {
  6692. height: math.unit(2, "meters"),
  6693. weight: math.unit(150, "kg"),
  6694. name: "Skunk-Tanuki",
  6695. image: {
  6696. source: "./media/characters/vemus/skunk-tanuki.svg",
  6697. extra: 926/893,
  6698. bottom: 20/946
  6699. }
  6700. },
  6701. },
  6702. [
  6703. {
  6704. name: "Normal",
  6705. height: math.unit(3.75, "meters"),
  6706. default: true
  6707. },
  6708. {
  6709. name: "Big",
  6710. height: math.unit(8, "meters")
  6711. },
  6712. {
  6713. name: "Macro",
  6714. height: math.unit(100, "meters")
  6715. },
  6716. {
  6717. name: "Macro+",
  6718. height: math.unit(1500, "meters")
  6719. },
  6720. {
  6721. name: "Stellar",
  6722. height: math.unit(14e8, "meters")
  6723. },
  6724. ]
  6725. ))
  6726. characterMakers.push(() => makeCharacter(
  6727. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6728. {
  6729. front: {
  6730. height: math.unit(2, "meters"),
  6731. weight: math.unit(70, "kg"),
  6732. name: "Front",
  6733. image: {
  6734. source: "./media/characters/beherit/front.svg",
  6735. extra: 1408 / 1242
  6736. }
  6737. }
  6738. },
  6739. [
  6740. {
  6741. name: "Normal",
  6742. height: math.unit(6, "feet")
  6743. },
  6744. {
  6745. name: "Lorg",
  6746. height: math.unit(25, "feet"),
  6747. default: true
  6748. },
  6749. {
  6750. name: "Lorger",
  6751. height: math.unit(75, "feet")
  6752. },
  6753. {
  6754. name: "Macro",
  6755. height: math.unit(200, "meters")
  6756. },
  6757. ]
  6758. ))
  6759. characterMakers.push(() => makeCharacter(
  6760. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6761. {
  6762. front: {
  6763. height: math.unit(2, "meters"),
  6764. weight: math.unit(150, "kg"),
  6765. name: "Front",
  6766. image: {
  6767. source: "./media/characters/everett/front.svg",
  6768. extra: 2038 / 1737,
  6769. bottom: 0.03
  6770. }
  6771. },
  6772. paw: {
  6773. height: math.unit(2 / 3.6, "meters"),
  6774. name: "Paw",
  6775. image: {
  6776. source: "./media/characters/everett/paw.svg"
  6777. }
  6778. },
  6779. },
  6780. [
  6781. {
  6782. name: "Normal",
  6783. height: math.unit(15, "feet"),
  6784. default: true
  6785. },
  6786. {
  6787. name: "Lorg",
  6788. height: math.unit(70, "feet"),
  6789. default: true
  6790. },
  6791. {
  6792. name: "Lorger",
  6793. height: math.unit(250, "feet")
  6794. },
  6795. {
  6796. name: "Macro",
  6797. height: math.unit(500, "meters")
  6798. },
  6799. ]
  6800. ))
  6801. characterMakers.push(() => makeCharacter(
  6802. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6803. {
  6804. front: {
  6805. height: math.unit(2, "meters"),
  6806. weight: math.unit(86, "kg"),
  6807. name: "Front",
  6808. image: {
  6809. source: "./media/characters/rose/front.svg",
  6810. extra: 1785/1636,
  6811. bottom: 30/1815
  6812. }
  6813. },
  6814. frontSporty: {
  6815. height: math.unit(2, "meters"),
  6816. weight: math.unit(86, "kg"),
  6817. name: "Front (Sporty)",
  6818. image: {
  6819. source: "./media/characters/rose/front-sporty.svg",
  6820. extra: 350/335,
  6821. bottom: 10/360
  6822. }
  6823. },
  6824. frontAlt: {
  6825. height: math.unit(1.6, "meters"),
  6826. weight: math.unit(86, "kg"),
  6827. name: "Front (Alt)",
  6828. image: {
  6829. source: "./media/characters/rose/front-alt.svg",
  6830. extra: 299/283,
  6831. bottom: 3/302
  6832. }
  6833. },
  6834. plush: {
  6835. height: math.unit(2, "meters"),
  6836. weight: math.unit(86/3, "kg"),
  6837. name: "Plush",
  6838. image: {
  6839. source: "./media/characters/rose/plush.svg",
  6840. extra: 361/337,
  6841. bottom: 11/372
  6842. }
  6843. },
  6844. },
  6845. [
  6846. {
  6847. name: "True Micro",
  6848. height: math.unit(9, "cm")
  6849. },
  6850. {
  6851. name: "Micro",
  6852. height: math.unit(16, "cm")
  6853. },
  6854. {
  6855. name: "Normal",
  6856. height: math.unit(1.85, "meters"),
  6857. default: true
  6858. },
  6859. {
  6860. name: "Mini-Macro",
  6861. height: math.unit(5, "meters")
  6862. },
  6863. {
  6864. name: "Macro",
  6865. height: math.unit(15, "meters")
  6866. },
  6867. {
  6868. name: "True Macro",
  6869. height: math.unit(40, "meters")
  6870. },
  6871. {
  6872. name: "City Scale",
  6873. height: math.unit(1, "km")
  6874. },
  6875. ]
  6876. ))
  6877. characterMakers.push(() => makeCharacter(
  6878. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6879. {
  6880. front: {
  6881. height: math.unit(2, "meters"),
  6882. weight: math.unit(350, "lbs"),
  6883. name: "Front",
  6884. image: {
  6885. source: "./media/characters/regal/front.svg"
  6886. }
  6887. },
  6888. back: {
  6889. height: math.unit(2, "meters"),
  6890. weight: math.unit(350, "lbs"),
  6891. name: "Back",
  6892. image: {
  6893. source: "./media/characters/regal/back.svg"
  6894. }
  6895. },
  6896. },
  6897. [
  6898. {
  6899. name: "Macro",
  6900. height: math.unit(350, "feet"),
  6901. default: true
  6902. }
  6903. ]
  6904. ))
  6905. characterMakers.push(() => makeCharacter(
  6906. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6907. {
  6908. front: {
  6909. height: math.unit(4 + 11 / 12, "feet"),
  6910. weight: math.unit(100, "lbs"),
  6911. name: "Front",
  6912. image: {
  6913. source: "./media/characters/opal/front.svg"
  6914. }
  6915. },
  6916. frontAlt: {
  6917. height: math.unit(4 + 11 / 12, "feet"),
  6918. weight: math.unit(100, "lbs"),
  6919. name: "Front (Alt)",
  6920. image: {
  6921. source: "./media/characters/opal/front-alt.svg"
  6922. }
  6923. },
  6924. },
  6925. [
  6926. {
  6927. name: "Small",
  6928. height: math.unit(4 + 11 / 12, "feet")
  6929. },
  6930. {
  6931. name: "Normal",
  6932. height: math.unit(20, "feet"),
  6933. default: true
  6934. },
  6935. {
  6936. name: "Macro",
  6937. height: math.unit(120, "feet")
  6938. },
  6939. {
  6940. name: "Megamacro",
  6941. height: math.unit(80, "miles")
  6942. },
  6943. {
  6944. name: "True Size",
  6945. height: math.unit(100000, "lightyears")
  6946. },
  6947. ]
  6948. ))
  6949. characterMakers.push(() => makeCharacter(
  6950. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6951. {
  6952. front: {
  6953. height: math.unit(6, "feet"),
  6954. weight: math.unit(200, "lbs"),
  6955. name: "Front",
  6956. image: {
  6957. source: "./media/characters/vector-wuff/front.svg"
  6958. }
  6959. }
  6960. },
  6961. [
  6962. {
  6963. name: "Normal",
  6964. height: math.unit(2.8, "meters")
  6965. },
  6966. {
  6967. name: "Macro",
  6968. height: math.unit(450, "meters"),
  6969. default: true
  6970. },
  6971. {
  6972. name: "Megamacro",
  6973. height: math.unit(15, "kilometers")
  6974. }
  6975. ]
  6976. ))
  6977. characterMakers.push(() => makeCharacter(
  6978. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6979. {
  6980. front: {
  6981. height: math.unit(6, "feet"),
  6982. weight: math.unit(256, "lbs"),
  6983. name: "Front",
  6984. image: {
  6985. source: "./media/characters/dannik/front.svg"
  6986. }
  6987. }
  6988. },
  6989. [
  6990. {
  6991. name: "Macro",
  6992. height: math.unit(69.57, "meters"),
  6993. default: true
  6994. },
  6995. ]
  6996. ))
  6997. characterMakers.push(() => makeCharacter(
  6998. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6999. {
  7000. front: {
  7001. height: math.unit(6, "feet"),
  7002. weight: math.unit(120, "lbs"),
  7003. name: "Front",
  7004. image: {
  7005. source: "./media/characters/azura-saharah/front.svg"
  7006. }
  7007. },
  7008. back: {
  7009. height: math.unit(6, "feet"),
  7010. weight: math.unit(120, "lbs"),
  7011. name: "Back",
  7012. image: {
  7013. source: "./media/characters/azura-saharah/back.svg"
  7014. }
  7015. },
  7016. },
  7017. [
  7018. {
  7019. name: "Macro",
  7020. height: math.unit(100, "feet"),
  7021. default: true
  7022. },
  7023. ]
  7024. ))
  7025. characterMakers.push(() => makeCharacter(
  7026. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7027. {
  7028. side: {
  7029. height: math.unit(5 + 4 / 12, "feet"),
  7030. weight: math.unit(163, "lbs"),
  7031. name: "Side",
  7032. image: {
  7033. source: "./media/characters/kennedy/side.svg"
  7034. }
  7035. }
  7036. },
  7037. [
  7038. {
  7039. name: "Standard Doggo",
  7040. height: math.unit(5 + 4 / 12, "feet")
  7041. },
  7042. {
  7043. name: "Big Doggo",
  7044. height: math.unit(25 + 3 / 12, "feet"),
  7045. default: true
  7046. },
  7047. ]
  7048. ))
  7049. characterMakers.push(() => makeCharacter(
  7050. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7051. {
  7052. front: {
  7053. height: math.unit(6, "feet"),
  7054. weight: math.unit(90, "lbs"),
  7055. name: "Front",
  7056. image: {
  7057. source: "./media/characters/odi-lunar/front.svg"
  7058. }
  7059. }
  7060. },
  7061. [
  7062. {
  7063. name: "Micro",
  7064. height: math.unit(3, "inches"),
  7065. default: true
  7066. },
  7067. {
  7068. name: "Normal",
  7069. height: math.unit(5.5, "feet")
  7070. }
  7071. ]
  7072. ))
  7073. characterMakers.push(() => makeCharacter(
  7074. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7075. {
  7076. back: {
  7077. height: math.unit(6, "feet"),
  7078. weight: math.unit(220, "lbs"),
  7079. name: "Back",
  7080. image: {
  7081. source: "./media/characters/mandake/back.svg"
  7082. }
  7083. }
  7084. },
  7085. [
  7086. {
  7087. name: "Normal",
  7088. height: math.unit(7, "feet"),
  7089. default: true
  7090. },
  7091. {
  7092. name: "Macro",
  7093. height: math.unit(78, "feet")
  7094. },
  7095. {
  7096. name: "Macro+",
  7097. height: math.unit(300, "meters")
  7098. },
  7099. {
  7100. name: "Macro++",
  7101. height: math.unit(2400, "feet")
  7102. },
  7103. {
  7104. name: "Megamacro",
  7105. height: math.unit(5167, "meters")
  7106. },
  7107. {
  7108. name: "Gigamacro",
  7109. height: math.unit(41769, "miles")
  7110. },
  7111. ]
  7112. ))
  7113. characterMakers.push(() => makeCharacter(
  7114. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7115. {
  7116. front: {
  7117. height: math.unit(6, "feet"),
  7118. weight: math.unit(120, "lbs"),
  7119. name: "Front",
  7120. image: {
  7121. source: "./media/characters/yozey/front.svg"
  7122. }
  7123. },
  7124. frontAlt: {
  7125. height: math.unit(6, "feet"),
  7126. weight: math.unit(120, "lbs"),
  7127. name: "Front (Alt)",
  7128. image: {
  7129. source: "./media/characters/yozey/front-alt.svg"
  7130. }
  7131. },
  7132. side: {
  7133. height: math.unit(6, "feet"),
  7134. weight: math.unit(120, "lbs"),
  7135. name: "Side",
  7136. image: {
  7137. source: "./media/characters/yozey/side.svg"
  7138. }
  7139. },
  7140. },
  7141. [
  7142. {
  7143. name: "Micro",
  7144. height: math.unit(3, "inches"),
  7145. default: true
  7146. },
  7147. {
  7148. name: "Normal",
  7149. height: math.unit(6, "feet")
  7150. }
  7151. ]
  7152. ))
  7153. characterMakers.push(() => makeCharacter(
  7154. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7155. {
  7156. front: {
  7157. height: math.unit(6, "feet"),
  7158. weight: math.unit(103, "lbs"),
  7159. name: "Front",
  7160. image: {
  7161. source: "./media/characters/valeska-voss/front.svg"
  7162. }
  7163. }
  7164. },
  7165. [
  7166. {
  7167. name: "Mini-Sized Sub",
  7168. height: math.unit(3.1, "inches")
  7169. },
  7170. {
  7171. name: "Mid-Sized Sub",
  7172. height: math.unit(6.2, "inches")
  7173. },
  7174. {
  7175. name: "Full-Sized Sub",
  7176. height: math.unit(9.3, "inches")
  7177. },
  7178. {
  7179. name: "Normal",
  7180. height: math.unit(5 + 2 / 12, "foot"),
  7181. default: true
  7182. },
  7183. ]
  7184. ))
  7185. characterMakers.push(() => makeCharacter(
  7186. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7187. {
  7188. front: {
  7189. height: math.unit(6, "feet"),
  7190. weight: math.unit(160, "lbs"),
  7191. name: "Front",
  7192. image: {
  7193. source: "./media/characters/gene-zeta/front.svg",
  7194. extra: 3006 / 2826,
  7195. bottom: 182 / 3188
  7196. }
  7197. }
  7198. },
  7199. [
  7200. {
  7201. name: "Micro",
  7202. height: math.unit(6, "inches")
  7203. },
  7204. {
  7205. name: "Normal",
  7206. height: math.unit(5 + 11 / 12, "foot"),
  7207. default: true
  7208. },
  7209. {
  7210. name: "Macro",
  7211. height: math.unit(140, "feet")
  7212. },
  7213. {
  7214. name: "Supercharged",
  7215. height: math.unit(2500, "feet")
  7216. },
  7217. ]
  7218. ))
  7219. characterMakers.push(() => makeCharacter(
  7220. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7221. {
  7222. front: {
  7223. height: math.unit(6, "feet"),
  7224. weight: math.unit(350, "lbs"),
  7225. name: "Front",
  7226. image: {
  7227. source: "./media/characters/razinox/front.svg",
  7228. extra: 1686 / 1548,
  7229. bottom: 28.2 / 1868
  7230. }
  7231. },
  7232. back: {
  7233. height: math.unit(6, "feet"),
  7234. weight: math.unit(350, "lbs"),
  7235. name: "Back",
  7236. image: {
  7237. source: "./media/characters/razinox/back.svg",
  7238. extra: 1660 / 1590,
  7239. bottom: 15 / 1665
  7240. }
  7241. },
  7242. },
  7243. [
  7244. {
  7245. name: "Normal",
  7246. height: math.unit(10 + 8 / 12, "foot")
  7247. },
  7248. {
  7249. name: "Minimacro",
  7250. height: math.unit(15, "foot")
  7251. },
  7252. {
  7253. name: "Macro",
  7254. height: math.unit(60, "foot"),
  7255. default: true
  7256. },
  7257. {
  7258. name: "Megamacro",
  7259. height: math.unit(5, "miles")
  7260. },
  7261. {
  7262. name: "Gigamacro",
  7263. height: math.unit(6000, "miles")
  7264. },
  7265. ]
  7266. ))
  7267. characterMakers.push(() => makeCharacter(
  7268. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7269. {
  7270. front: {
  7271. height: math.unit(6, "feet"),
  7272. weight: math.unit(150, "lbs"),
  7273. name: "Front",
  7274. image: {
  7275. source: "./media/characters/cobalt/front.svg"
  7276. }
  7277. }
  7278. },
  7279. [
  7280. {
  7281. name: "Normal",
  7282. height: math.unit(8 + 1 / 12, "foot")
  7283. },
  7284. {
  7285. name: "Macro",
  7286. height: math.unit(111, "foot"),
  7287. default: true
  7288. },
  7289. {
  7290. name: "Supracosmic",
  7291. height: math.unit(1e42, "feet")
  7292. },
  7293. ]
  7294. ))
  7295. characterMakers.push(() => makeCharacter(
  7296. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7297. {
  7298. front: {
  7299. height: math.unit(6, "feet"),
  7300. weight: math.unit(140, "lbs"),
  7301. name: "Front",
  7302. image: {
  7303. source: "./media/characters/amanda/front.svg"
  7304. }
  7305. }
  7306. },
  7307. [
  7308. {
  7309. name: "Micro",
  7310. height: math.unit(5, "inches"),
  7311. default: true
  7312. },
  7313. ]
  7314. ))
  7315. characterMakers.push(() => makeCharacter(
  7316. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7317. {
  7318. front: {
  7319. height: math.unit(2.75, "meters"),
  7320. weight: math.unit(1200, "lb"),
  7321. name: "Front",
  7322. image: {
  7323. source: "./media/characters/teal/front.svg",
  7324. extra: 2463 / 2320,
  7325. bottom: 166 / 2629
  7326. }
  7327. },
  7328. back: {
  7329. height: math.unit(2.75, "meters"),
  7330. weight: math.unit(1200, "lb"),
  7331. name: "Back",
  7332. image: {
  7333. source: "./media/characters/teal/back.svg",
  7334. extra: 2580 / 2489,
  7335. bottom: 151 / 2731
  7336. }
  7337. },
  7338. sitting: {
  7339. height: math.unit(1.9, "meters"),
  7340. weight: math.unit(1200, "lb"),
  7341. name: "Sitting",
  7342. image: {
  7343. source: "./media/characters/teal/sitting.svg",
  7344. extra: 623 / 590,
  7345. bottom: 121 / 744
  7346. }
  7347. },
  7348. standing: {
  7349. height: math.unit(2.75, "meters"),
  7350. weight: math.unit(1200, "lb"),
  7351. name: "Standing",
  7352. image: {
  7353. source: "./media/characters/teal/standing.svg",
  7354. extra: 923 / 893,
  7355. bottom: 60 / 983
  7356. }
  7357. },
  7358. stretching: {
  7359. height: math.unit(3.65, "meters"),
  7360. weight: math.unit(1200, "lb"),
  7361. name: "Stretching",
  7362. image: {
  7363. source: "./media/characters/teal/stretching.svg",
  7364. extra: 1276 / 1244,
  7365. bottom: 0 / 1276
  7366. }
  7367. },
  7368. legged: {
  7369. height: math.unit(1.3, "meters"),
  7370. weight: math.unit(100, "lb"),
  7371. name: "Legged",
  7372. image: {
  7373. source: "./media/characters/teal/legged.svg",
  7374. extra: 462 / 437,
  7375. bottom: 24 / 486
  7376. }
  7377. },
  7378. naga: {
  7379. height: math.unit(5.4, "meters"),
  7380. weight: math.unit(4000, "lb"),
  7381. name: "Naga",
  7382. image: {
  7383. source: "./media/characters/teal/naga.svg",
  7384. extra: 1902 / 1858,
  7385. bottom: 0 / 1902
  7386. }
  7387. },
  7388. hand: {
  7389. height: math.unit(0.52, "meters"),
  7390. name: "Hand",
  7391. image: {
  7392. source: "./media/characters/teal/hand.svg"
  7393. }
  7394. },
  7395. maw: {
  7396. height: math.unit(0.43, "meters"),
  7397. name: "Maw",
  7398. image: {
  7399. source: "./media/characters/teal/maw.svg"
  7400. }
  7401. },
  7402. slit: {
  7403. height: math.unit(0.25, "meters"),
  7404. name: "Slit",
  7405. image: {
  7406. source: "./media/characters/teal/slit.svg"
  7407. }
  7408. },
  7409. },
  7410. [
  7411. {
  7412. name: "Normal",
  7413. height: math.unit(2.75, "meters"),
  7414. default: true
  7415. },
  7416. {
  7417. name: "Macro",
  7418. height: math.unit(300, "feet")
  7419. },
  7420. {
  7421. name: "Macro+",
  7422. height: math.unit(2000, "feet")
  7423. },
  7424. ]
  7425. ))
  7426. characterMakers.push(() => makeCharacter(
  7427. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7428. {
  7429. frontCat: {
  7430. height: math.unit(6, "feet"),
  7431. weight: math.unit(180, "lbs"),
  7432. name: "Front (Cat)",
  7433. image: {
  7434. source: "./media/characters/ravin-amulet/front-cat.svg"
  7435. }
  7436. },
  7437. frontCatAlt: {
  7438. height: math.unit(6, "feet"),
  7439. weight: math.unit(180, "lbs"),
  7440. name: "Front (Alt, Cat)",
  7441. image: {
  7442. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7443. }
  7444. },
  7445. frontWerewolf: {
  7446. height: math.unit(6 * 1.2, "feet"),
  7447. weight: math.unit(225, "lbs"),
  7448. name: "Front (Werewolf)",
  7449. image: {
  7450. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7451. }
  7452. },
  7453. backWerewolf: {
  7454. height: math.unit(6 * 1.2, "feet"),
  7455. weight: math.unit(225, "lbs"),
  7456. name: "Back (Werewolf)",
  7457. image: {
  7458. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7459. }
  7460. },
  7461. },
  7462. [
  7463. {
  7464. name: "Nano",
  7465. height: math.unit(1, "micrometer")
  7466. },
  7467. {
  7468. name: "Micro",
  7469. height: math.unit(1, "inch")
  7470. },
  7471. {
  7472. name: "Normal",
  7473. height: math.unit(6, "feet"),
  7474. default: true
  7475. },
  7476. {
  7477. name: "Macro",
  7478. height: math.unit(60, "feet")
  7479. }
  7480. ]
  7481. ))
  7482. characterMakers.push(() => makeCharacter(
  7483. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7484. {
  7485. front: {
  7486. height: math.unit(6, "feet"),
  7487. weight: math.unit(165, "lbs"),
  7488. name: "Front",
  7489. image: {
  7490. source: "./media/characters/fluoresce/front.svg"
  7491. }
  7492. }
  7493. },
  7494. [
  7495. {
  7496. name: "Micro",
  7497. height: math.unit(6, "cm")
  7498. },
  7499. {
  7500. name: "Normal",
  7501. height: math.unit(5 + 7 / 12, "feet"),
  7502. default: true
  7503. },
  7504. {
  7505. name: "Macro",
  7506. height: math.unit(56, "feet")
  7507. },
  7508. {
  7509. name: "Megamacro",
  7510. height: math.unit(1.9, "miles")
  7511. },
  7512. ]
  7513. ))
  7514. characterMakers.push(() => makeCharacter(
  7515. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7516. {
  7517. front: {
  7518. height: math.unit(9 + 6 / 12, "feet"),
  7519. weight: math.unit(523, "lbs"),
  7520. name: "Side",
  7521. image: {
  7522. source: "./media/characters/aurora/side.svg"
  7523. }
  7524. }
  7525. },
  7526. [
  7527. {
  7528. name: "Normal",
  7529. height: math.unit(9 + 6 / 12, "feet")
  7530. },
  7531. {
  7532. name: "Macro",
  7533. height: math.unit(96, "feet"),
  7534. default: true
  7535. },
  7536. {
  7537. name: "Macro+",
  7538. height: math.unit(243, "feet")
  7539. },
  7540. ]
  7541. ))
  7542. characterMakers.push(() => makeCharacter(
  7543. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7544. {
  7545. front: {
  7546. height: math.unit(194, "cm"),
  7547. weight: math.unit(90, "kg"),
  7548. name: "Front",
  7549. image: {
  7550. source: "./media/characters/ranek/front.svg"
  7551. }
  7552. },
  7553. side: {
  7554. height: math.unit(194, "cm"),
  7555. weight: math.unit(90, "kg"),
  7556. name: "Side",
  7557. image: {
  7558. source: "./media/characters/ranek/side.svg"
  7559. }
  7560. },
  7561. back: {
  7562. height: math.unit(194, "cm"),
  7563. weight: math.unit(90, "kg"),
  7564. name: "Back",
  7565. image: {
  7566. source: "./media/characters/ranek/back.svg"
  7567. }
  7568. },
  7569. feral: {
  7570. height: math.unit(30, "cm"),
  7571. weight: math.unit(1.6, "lbs"),
  7572. name: "Feral",
  7573. image: {
  7574. source: "./media/characters/ranek/feral.svg"
  7575. }
  7576. },
  7577. },
  7578. [
  7579. {
  7580. name: "Normal",
  7581. height: math.unit(194, "cm"),
  7582. default: true
  7583. },
  7584. {
  7585. name: "Macro",
  7586. height: math.unit(100, "meters")
  7587. },
  7588. ]
  7589. ))
  7590. characterMakers.push(() => makeCharacter(
  7591. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7592. {
  7593. front: {
  7594. height: math.unit(5 + 6 / 12, "feet"),
  7595. weight: math.unit(153, "lbs"),
  7596. name: "Front",
  7597. image: {
  7598. source: "./media/characters/andrew-cooper/front.svg"
  7599. }
  7600. },
  7601. },
  7602. [
  7603. {
  7604. name: "Nano",
  7605. height: math.unit(1, "mm")
  7606. },
  7607. {
  7608. name: "Micro",
  7609. height: math.unit(2, "inches")
  7610. },
  7611. {
  7612. name: "Normal",
  7613. height: math.unit(5 + 6 / 12, "feet"),
  7614. default: true
  7615. }
  7616. ]
  7617. ))
  7618. characterMakers.push(() => makeCharacter(
  7619. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7620. {
  7621. front: {
  7622. height: math.unit(6, "feet"),
  7623. weight: math.unit(180, "lbs"),
  7624. name: "Front",
  7625. image: {
  7626. source: "./media/characters/akane-sato/front.svg",
  7627. extra: 1219 / 1140
  7628. }
  7629. },
  7630. back: {
  7631. height: math.unit(6, "feet"),
  7632. weight: math.unit(180, "lbs"),
  7633. name: "Back",
  7634. image: {
  7635. source: "./media/characters/akane-sato/back.svg",
  7636. extra: 1219 / 1170
  7637. }
  7638. },
  7639. },
  7640. [
  7641. {
  7642. name: "Normal",
  7643. height: math.unit(2.5, "meters")
  7644. },
  7645. {
  7646. name: "Macro",
  7647. height: math.unit(250, "meters"),
  7648. default: true
  7649. },
  7650. {
  7651. name: "Megamacro",
  7652. height: math.unit(25, "km")
  7653. },
  7654. ]
  7655. ))
  7656. characterMakers.push(() => makeCharacter(
  7657. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7658. {
  7659. front: {
  7660. height: math.unit(6, "feet"),
  7661. weight: math.unit(65, "kg"),
  7662. name: "Front",
  7663. image: {
  7664. source: "./media/characters/rook/front.svg",
  7665. extra: 960 / 950
  7666. }
  7667. }
  7668. },
  7669. [
  7670. {
  7671. name: "Normal",
  7672. height: math.unit(8.8, "feet")
  7673. },
  7674. {
  7675. name: "Macro",
  7676. height: math.unit(88, "feet"),
  7677. default: true
  7678. },
  7679. {
  7680. name: "Megamacro",
  7681. height: math.unit(8, "miles")
  7682. },
  7683. ]
  7684. ))
  7685. characterMakers.push(() => makeCharacter(
  7686. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7687. {
  7688. front: {
  7689. height: math.unit(12 + 2 / 12, "feet"),
  7690. weight: math.unit(808, "lbs"),
  7691. name: "Front",
  7692. image: {
  7693. source: "./media/characters/prodigy/front.svg"
  7694. }
  7695. }
  7696. },
  7697. [
  7698. {
  7699. name: "Normal",
  7700. height: math.unit(12 + 2 / 12, "feet"),
  7701. default: true
  7702. },
  7703. {
  7704. name: "Macro",
  7705. height: math.unit(143, "feet")
  7706. },
  7707. {
  7708. name: "Macro+",
  7709. height: math.unit(400, "feet")
  7710. },
  7711. ]
  7712. ))
  7713. characterMakers.push(() => makeCharacter(
  7714. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7715. {
  7716. front: {
  7717. height: math.unit(6, "feet"),
  7718. weight: math.unit(225, "lbs"),
  7719. name: "Front",
  7720. image: {
  7721. source: "./media/characters/daniel/front.svg"
  7722. }
  7723. },
  7724. leaning: {
  7725. height: math.unit(6, "feet"),
  7726. weight: math.unit(225, "lbs"),
  7727. name: "Leaning",
  7728. image: {
  7729. source: "./media/characters/daniel/leaning.svg"
  7730. }
  7731. },
  7732. },
  7733. [
  7734. {
  7735. name: "Macro",
  7736. height: math.unit(1000, "feet"),
  7737. default: true
  7738. },
  7739. ]
  7740. ))
  7741. characterMakers.push(() => makeCharacter(
  7742. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7743. {
  7744. front: {
  7745. height: math.unit(6, "feet"),
  7746. weight: math.unit(88, "lbs"),
  7747. name: "Front",
  7748. image: {
  7749. source: "./media/characters/chiros/front.svg",
  7750. extra: 306 / 226
  7751. }
  7752. },
  7753. side: {
  7754. height: math.unit(6, "feet"),
  7755. weight: math.unit(88, "lbs"),
  7756. name: "Side",
  7757. image: {
  7758. source: "./media/characters/chiros/side.svg",
  7759. extra: 306 / 226
  7760. }
  7761. },
  7762. },
  7763. [
  7764. {
  7765. name: "Normal",
  7766. height: math.unit(6, "cm"),
  7767. default: true
  7768. },
  7769. ]
  7770. ))
  7771. characterMakers.push(() => makeCharacter(
  7772. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7773. {
  7774. front: {
  7775. height: math.unit(6, "feet"),
  7776. weight: math.unit(100, "lbs"),
  7777. name: "Front",
  7778. image: {
  7779. source: "./media/characters/selka/front.svg",
  7780. extra: 947 / 887
  7781. }
  7782. }
  7783. },
  7784. [
  7785. {
  7786. name: "Normal",
  7787. height: math.unit(5, "cm"),
  7788. default: true
  7789. },
  7790. ]
  7791. ))
  7792. characterMakers.push(() => makeCharacter(
  7793. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7794. {
  7795. front: {
  7796. height: math.unit(8 + 3 / 12, "feet"),
  7797. weight: math.unit(424, "lbs"),
  7798. name: "Front",
  7799. image: {
  7800. source: "./media/characters/verin/front.svg",
  7801. extra: 1845 / 1550
  7802. }
  7803. },
  7804. frontArmored: {
  7805. height: math.unit(8 + 3 / 12, "feet"),
  7806. weight: math.unit(424, "lbs"),
  7807. name: "Front (Armored)",
  7808. image: {
  7809. source: "./media/characters/verin/front-armor.svg",
  7810. extra: 1845 / 1550,
  7811. bottom: 0.01
  7812. }
  7813. },
  7814. back: {
  7815. height: math.unit(8 + 3 / 12, "feet"),
  7816. weight: math.unit(424, "lbs"),
  7817. name: "Back",
  7818. image: {
  7819. source: "./media/characters/verin/back.svg",
  7820. bottom: 0.1,
  7821. extra: 1
  7822. }
  7823. },
  7824. foot: {
  7825. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7826. name: "Foot",
  7827. image: {
  7828. source: "./media/characters/verin/foot.svg"
  7829. }
  7830. },
  7831. },
  7832. [
  7833. {
  7834. name: "Normal",
  7835. height: math.unit(8 + 3 / 12, "feet")
  7836. },
  7837. {
  7838. name: "Minimacro",
  7839. height: math.unit(21, "feet"),
  7840. default: true
  7841. },
  7842. {
  7843. name: "Macro",
  7844. height: math.unit(626, "feet")
  7845. },
  7846. ]
  7847. ))
  7848. characterMakers.push(() => makeCharacter(
  7849. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7850. {
  7851. front: {
  7852. height: math.unit(2.718, "meters"),
  7853. weight: math.unit(150, "lbs"),
  7854. name: "Front",
  7855. image: {
  7856. source: "./media/characters/sovrim-terraquian/front.svg"
  7857. }
  7858. },
  7859. back: {
  7860. height: math.unit(2.718, "meters"),
  7861. weight: math.unit(150, "lbs"),
  7862. name: "Back",
  7863. image: {
  7864. source: "./media/characters/sovrim-terraquian/back.svg"
  7865. }
  7866. }
  7867. },
  7868. [
  7869. {
  7870. name: "Micro",
  7871. height: math.unit(2, "inches")
  7872. },
  7873. {
  7874. name: "Small",
  7875. height: math.unit(1, "meter")
  7876. },
  7877. {
  7878. name: "Normal",
  7879. height: math.unit(Math.E, "meters"),
  7880. default: true
  7881. },
  7882. {
  7883. name: "Macro",
  7884. height: math.unit(20, "meters")
  7885. },
  7886. {
  7887. name: "Macro+",
  7888. height: math.unit(400, "meters")
  7889. },
  7890. ]
  7891. ))
  7892. characterMakers.push(() => makeCharacter(
  7893. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7894. {
  7895. front: {
  7896. height: math.unit(7, "feet"),
  7897. weight: math.unit(489, "lbs"),
  7898. name: "Front",
  7899. image: {
  7900. source: "./media/characters/reece-silvermane/front.svg",
  7901. bottom: 0.02,
  7902. extra: 1
  7903. }
  7904. },
  7905. },
  7906. [
  7907. {
  7908. name: "Macro",
  7909. height: math.unit(1.5, "miles"),
  7910. default: true
  7911. },
  7912. ]
  7913. ))
  7914. characterMakers.push(() => makeCharacter(
  7915. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7916. {
  7917. front: {
  7918. height: math.unit(6, "feet"),
  7919. weight: math.unit(78, "kg"),
  7920. name: "Front",
  7921. image: {
  7922. source: "./media/characters/kane/front.svg",
  7923. extra: 978 / 899
  7924. }
  7925. },
  7926. },
  7927. [
  7928. {
  7929. name: "Normal",
  7930. height: math.unit(2.1, "m"),
  7931. },
  7932. {
  7933. name: "Macro",
  7934. height: math.unit(1, "km"),
  7935. default: true
  7936. },
  7937. ]
  7938. ))
  7939. characterMakers.push(() => makeCharacter(
  7940. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7941. {
  7942. front: {
  7943. height: math.unit(6, "feet"),
  7944. weight: math.unit(200, "kg"),
  7945. name: "Front",
  7946. image: {
  7947. source: "./media/characters/tegon/front.svg",
  7948. bottom: 0.01,
  7949. extra: 1
  7950. }
  7951. },
  7952. },
  7953. [
  7954. {
  7955. name: "Micro",
  7956. height: math.unit(1, "inch")
  7957. },
  7958. {
  7959. name: "Normal",
  7960. height: math.unit(6 + 3 / 12, "feet"),
  7961. default: true
  7962. },
  7963. {
  7964. name: "Macro",
  7965. height: math.unit(300, "feet")
  7966. },
  7967. {
  7968. name: "Megamacro",
  7969. height: math.unit(69, "miles")
  7970. },
  7971. ]
  7972. ))
  7973. characterMakers.push(() => makeCharacter(
  7974. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7975. {
  7976. side: {
  7977. height: math.unit(6, "feet"),
  7978. weight: math.unit(2304, "lbs"),
  7979. name: "Side",
  7980. image: {
  7981. source: "./media/characters/arcturax/side.svg",
  7982. extra: 790 / 376,
  7983. bottom: 0.01
  7984. }
  7985. },
  7986. },
  7987. [
  7988. {
  7989. name: "Micro",
  7990. height: math.unit(2, "inch")
  7991. },
  7992. {
  7993. name: "Normal",
  7994. height: math.unit(6, "feet")
  7995. },
  7996. {
  7997. name: "Macro",
  7998. height: math.unit(39, "feet"),
  7999. default: true
  8000. },
  8001. {
  8002. name: "Megamacro",
  8003. height: math.unit(7, "miles")
  8004. },
  8005. ]
  8006. ))
  8007. characterMakers.push(() => makeCharacter(
  8008. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8009. {
  8010. front: {
  8011. height: math.unit(6, "feet"),
  8012. weight: math.unit(50, "lbs"),
  8013. name: "Front",
  8014. image: {
  8015. source: "./media/characters/sentri/front.svg",
  8016. extra: 1750 / 1570,
  8017. bottom: 0.025
  8018. }
  8019. },
  8020. frontAlt: {
  8021. height: math.unit(6, "feet"),
  8022. weight: math.unit(50, "lbs"),
  8023. name: "Front (Alt)",
  8024. image: {
  8025. source: "./media/characters/sentri/front-alt.svg",
  8026. extra: 1750 / 1570,
  8027. bottom: 0.025
  8028. }
  8029. },
  8030. },
  8031. [
  8032. {
  8033. name: "Normal",
  8034. height: math.unit(15, "feet"),
  8035. default: true
  8036. },
  8037. {
  8038. name: "Macro",
  8039. height: math.unit(2500, "feet")
  8040. }
  8041. ]
  8042. ))
  8043. characterMakers.push(() => makeCharacter(
  8044. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8045. {
  8046. front: {
  8047. height: math.unit(5 + 8 / 12, "feet"),
  8048. weight: math.unit(130, "lbs"),
  8049. name: "Front",
  8050. image: {
  8051. source: "./media/characters/corvin/front.svg",
  8052. extra: 1803 / 1629
  8053. }
  8054. },
  8055. frontShirt: {
  8056. height: math.unit(5 + 8 / 12, "feet"),
  8057. weight: math.unit(130, "lbs"),
  8058. name: "Front (Shirt)",
  8059. image: {
  8060. source: "./media/characters/corvin/front-shirt.svg",
  8061. extra: 1803 / 1629
  8062. }
  8063. },
  8064. frontPoncho: {
  8065. height: math.unit(5 + 8 / 12, "feet"),
  8066. weight: math.unit(130, "lbs"),
  8067. name: "Front (Poncho)",
  8068. image: {
  8069. source: "./media/characters/corvin/front-poncho.svg",
  8070. extra: 1803 / 1629
  8071. }
  8072. },
  8073. side: {
  8074. height: math.unit(5 + 8 / 12, "feet"),
  8075. weight: math.unit(130, "lbs"),
  8076. name: "Side",
  8077. image: {
  8078. source: "./media/characters/corvin/side.svg",
  8079. extra: 1012 / 945
  8080. }
  8081. },
  8082. back: {
  8083. height: math.unit(5 + 8 / 12, "feet"),
  8084. weight: math.unit(130, "lbs"),
  8085. name: "Back",
  8086. image: {
  8087. source: "./media/characters/corvin/back.svg",
  8088. extra: 1803 / 1629
  8089. }
  8090. },
  8091. },
  8092. [
  8093. {
  8094. name: "Micro",
  8095. height: math.unit(3, "inches")
  8096. },
  8097. {
  8098. name: "Normal",
  8099. height: math.unit(5 + 8 / 12, "feet")
  8100. },
  8101. {
  8102. name: "Macro",
  8103. height: math.unit(300, "feet"),
  8104. default: true
  8105. },
  8106. {
  8107. name: "Megamacro",
  8108. height: math.unit(500, "miles")
  8109. }
  8110. ]
  8111. ))
  8112. characterMakers.push(() => makeCharacter(
  8113. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8114. {
  8115. front: {
  8116. height: math.unit(6, "feet"),
  8117. weight: math.unit(135, "lbs"),
  8118. name: "Front",
  8119. image: {
  8120. source: "./media/characters/q/front.svg",
  8121. extra: 854 / 752,
  8122. bottom: 0.005
  8123. }
  8124. },
  8125. back: {
  8126. height: math.unit(6, "feet"),
  8127. weight: math.unit(130, "lbs"),
  8128. name: "Back",
  8129. image: {
  8130. source: "./media/characters/q/back.svg",
  8131. extra: 854 / 752
  8132. }
  8133. },
  8134. },
  8135. [
  8136. {
  8137. name: "Macro",
  8138. height: math.unit(90, "feet"),
  8139. default: true
  8140. },
  8141. {
  8142. name: "Extra Macro",
  8143. height: math.unit(300, "feet"),
  8144. },
  8145. {
  8146. name: "BIG WALF",
  8147. height: math.unit(750, "feet"),
  8148. },
  8149. ]
  8150. ))
  8151. characterMakers.push(() => makeCharacter(
  8152. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8153. {
  8154. front: {
  8155. height: math.unit(6, "feet"),
  8156. weight: math.unit(150, "lbs"),
  8157. name: "Front",
  8158. image: {
  8159. source: "./media/characters/carley/front.svg",
  8160. extra: 3927 / 3540,
  8161. bottom: 29.2 / 735
  8162. }
  8163. }
  8164. },
  8165. [
  8166. {
  8167. name: "Normal",
  8168. height: math.unit(6 + 3 / 12, "feet")
  8169. },
  8170. {
  8171. name: "Macro",
  8172. height: math.unit(185, "feet"),
  8173. default: true
  8174. },
  8175. {
  8176. name: "Megamacro",
  8177. height: math.unit(8, "miles"),
  8178. },
  8179. ]
  8180. ))
  8181. characterMakers.push(() => makeCharacter(
  8182. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8183. {
  8184. front: {
  8185. height: math.unit(3, "feet"),
  8186. weight: math.unit(28, "lbs"),
  8187. name: "Front",
  8188. image: {
  8189. source: "./media/characters/citrine/front.svg"
  8190. }
  8191. }
  8192. },
  8193. [
  8194. {
  8195. name: "Normal",
  8196. height: math.unit(3, "feet"),
  8197. default: true
  8198. }
  8199. ]
  8200. ))
  8201. characterMakers.push(() => makeCharacter(
  8202. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8203. {
  8204. front: {
  8205. height: math.unit(14, "feet"),
  8206. weight: math.unit(1450, "kg"),
  8207. capacity: math.unit(15, "people"),
  8208. name: "Front",
  8209. image: {
  8210. source: "./media/characters/aura-starwind/front.svg",
  8211. extra: 1440/1327,
  8212. bottom: 11/1451
  8213. }
  8214. },
  8215. side: {
  8216. height: math.unit(14, "feet"),
  8217. weight: math.unit(1450, "kg"),
  8218. capacity: math.unit(15, "people"),
  8219. name: "Side",
  8220. image: {
  8221. source: "./media/characters/aura-starwind/side.svg",
  8222. extra: 1654 / 1497
  8223. }
  8224. },
  8225. taur: {
  8226. height: math.unit(18, "feet"),
  8227. weight: math.unit(5500, "kg"),
  8228. capacity: math.unit(50, "people"),
  8229. name: "Taur",
  8230. image: {
  8231. source: "./media/characters/aura-starwind/taur.svg",
  8232. extra: 1760 / 1650
  8233. }
  8234. },
  8235. feral: {
  8236. height: math.unit(46, "feet"),
  8237. weight: math.unit(25000, "kg"),
  8238. capacity: math.unit(120, "people"),
  8239. name: "Feral",
  8240. image: {
  8241. source: "./media/characters/aura-starwind/feral.svg"
  8242. }
  8243. },
  8244. },
  8245. [
  8246. {
  8247. name: "Normal",
  8248. height: math.unit(14, "feet"),
  8249. default: true
  8250. },
  8251. {
  8252. name: "Macro",
  8253. height: math.unit(50, "meters")
  8254. },
  8255. {
  8256. name: "Megamacro",
  8257. height: math.unit(5000, "meters")
  8258. },
  8259. {
  8260. name: "Gigamacro",
  8261. height: math.unit(100000, "kilometers")
  8262. },
  8263. ]
  8264. ))
  8265. characterMakers.push(() => makeCharacter(
  8266. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8267. {
  8268. front: {
  8269. height: math.unit(2 + 7 / 12, "feet"),
  8270. weight: math.unit(32, "lbs"),
  8271. name: "Front",
  8272. image: {
  8273. source: "./media/characters/rivet/front.svg",
  8274. extra: 1716 / 1658,
  8275. bottom: 0.03
  8276. }
  8277. },
  8278. foot: {
  8279. height: math.unit(0.551, "feet"),
  8280. name: "Rivet's Foot",
  8281. image: {
  8282. source: "./media/characters/rivet/foot.svg"
  8283. },
  8284. rename: true
  8285. }
  8286. },
  8287. [
  8288. {
  8289. name: "Micro",
  8290. height: math.unit(1.5, "inches"),
  8291. },
  8292. {
  8293. name: "Normal",
  8294. height: math.unit(2 + 7 / 12, "feet"),
  8295. default: true
  8296. },
  8297. {
  8298. name: "Macro",
  8299. height: math.unit(85, "feet")
  8300. },
  8301. {
  8302. name: "Megamacro",
  8303. height: math.unit(2.2, "km")
  8304. }
  8305. ]
  8306. ))
  8307. characterMakers.push(() => makeCharacter(
  8308. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8309. {
  8310. front: {
  8311. height: math.unit(5 + 9 / 12, "feet"),
  8312. weight: math.unit(150, "lbs"),
  8313. name: "Front",
  8314. image: {
  8315. source: "./media/characters/coffee/front.svg",
  8316. extra: 3666 / 3032,
  8317. bottom: 0.04
  8318. }
  8319. },
  8320. foot: {
  8321. height: math.unit(1.29, "feet"),
  8322. name: "Foot",
  8323. image: {
  8324. source: "./media/characters/coffee/foot.svg"
  8325. }
  8326. },
  8327. },
  8328. [
  8329. {
  8330. name: "Micro",
  8331. height: math.unit(2, "inches"),
  8332. },
  8333. {
  8334. name: "Normal",
  8335. height: math.unit(5 + 9 / 12, "feet"),
  8336. default: true
  8337. },
  8338. {
  8339. name: "Macro",
  8340. height: math.unit(800, "feet")
  8341. },
  8342. {
  8343. name: "Megamacro",
  8344. height: math.unit(25, "miles")
  8345. }
  8346. ]
  8347. ))
  8348. characterMakers.push(() => makeCharacter(
  8349. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8350. {
  8351. front: {
  8352. height: math.unit(6, "feet"),
  8353. weight: math.unit(200, "lbs"),
  8354. name: "Front",
  8355. image: {
  8356. source: "./media/characters/chari-gal/front.svg",
  8357. extra: 1568 / 1385,
  8358. bottom: 0.047
  8359. }
  8360. },
  8361. gigantamax: {
  8362. height: math.unit(6 * 16, "feet"),
  8363. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8364. name: "Gigantamax",
  8365. image: {
  8366. source: "./media/characters/chari-gal/gigantamax.svg",
  8367. extra: 1124 / 888,
  8368. bottom: 0.03
  8369. }
  8370. },
  8371. },
  8372. [
  8373. {
  8374. name: "Normal",
  8375. height: math.unit(5 + 7 / 12, "feet")
  8376. },
  8377. {
  8378. name: "Macro",
  8379. height: math.unit(200, "feet"),
  8380. default: true
  8381. }
  8382. ]
  8383. ))
  8384. characterMakers.push(() => makeCharacter(
  8385. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8386. {
  8387. front: {
  8388. height: math.unit(6, "feet"),
  8389. weight: math.unit(150, "lbs"),
  8390. name: "Front",
  8391. image: {
  8392. source: "./media/characters/nova/front.svg",
  8393. extra: 5000 / 4722,
  8394. bottom: 0.02
  8395. }
  8396. }
  8397. },
  8398. [
  8399. {
  8400. name: "Micro-",
  8401. height: math.unit(0.8, "inches")
  8402. },
  8403. {
  8404. name: "Micro",
  8405. height: math.unit(2, "inches"),
  8406. default: true
  8407. },
  8408. ]
  8409. ))
  8410. characterMakers.push(() => makeCharacter(
  8411. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8412. {
  8413. front: {
  8414. height: math.unit(3 + 1 / 12, "feet"),
  8415. weight: math.unit(21.7, "lbs"),
  8416. name: "Front",
  8417. image: {
  8418. source: "./media/characters/argent/front.svg",
  8419. extra: 1471 / 1331,
  8420. bottom: 100.8 / 1575.5
  8421. }
  8422. }
  8423. },
  8424. [
  8425. {
  8426. name: "Micro",
  8427. height: math.unit(2, "inches")
  8428. },
  8429. {
  8430. name: "Normal",
  8431. height: math.unit(3 + 1 / 12, "feet"),
  8432. default: true
  8433. },
  8434. {
  8435. name: "Macro",
  8436. height: math.unit(120, "feet")
  8437. },
  8438. ]
  8439. ))
  8440. characterMakers.push(() => makeCharacter(
  8441. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8442. {
  8443. lamp: {
  8444. height: math.unit(7 * 1559 / 989, "feet"),
  8445. name: "Magic Lamp",
  8446. image: {
  8447. source: "./media/characters/mira-al-cul/lamp.svg",
  8448. extra: 1617 / 1559
  8449. }
  8450. },
  8451. front: {
  8452. height: math.unit(7, "feet"),
  8453. name: "Front",
  8454. image: {
  8455. source: "./media/characters/mira-al-cul/front.svg",
  8456. extra: 1044 / 990
  8457. }
  8458. },
  8459. },
  8460. [
  8461. {
  8462. name: "Heavily Restricted",
  8463. height: math.unit(7 * 1559 / 989, "feet")
  8464. },
  8465. {
  8466. name: "Freshly Freed",
  8467. height: math.unit(50 * 1559 / 989, "feet")
  8468. },
  8469. {
  8470. name: "World Encompassing",
  8471. height: math.unit(10000 * 1559 / 989, "miles")
  8472. },
  8473. {
  8474. name: "Galactic",
  8475. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8476. },
  8477. {
  8478. name: "Palmed Universe",
  8479. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8480. default: true
  8481. },
  8482. {
  8483. name: "Multiversal Matriarch",
  8484. height: math.unit(8.87e10, "yottameters")
  8485. },
  8486. {
  8487. name: "Void Mother",
  8488. height: math.unit(3.14e110, "yottaparsecs")
  8489. },
  8490. {
  8491. name: "Toying with Transcendence",
  8492. height: math.unit(1e307, "meters")
  8493. },
  8494. ]
  8495. ))
  8496. characterMakers.push(() => makeCharacter(
  8497. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8498. {
  8499. front: {
  8500. height: math.unit(17 + 1 / 12, "feet"),
  8501. weight: math.unit(476.2 * 5, "lbs"),
  8502. name: "Front",
  8503. image: {
  8504. source: "./media/characters/kuro-shi-uchū/front.svg",
  8505. extra: 2329 / 1835,
  8506. bottom: 0.02
  8507. }
  8508. },
  8509. },
  8510. [
  8511. {
  8512. name: "Micro",
  8513. height: math.unit(2, "inches")
  8514. },
  8515. {
  8516. name: "Normal",
  8517. height: math.unit(12, "meters")
  8518. },
  8519. {
  8520. name: "Planetary",
  8521. height: math.unit(0.00929, "AU"),
  8522. default: true
  8523. },
  8524. {
  8525. name: "Universal",
  8526. height: math.unit(20, "gigaparsecs")
  8527. },
  8528. ]
  8529. ))
  8530. characterMakers.push(() => makeCharacter(
  8531. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8532. {
  8533. front: {
  8534. height: math.unit(5 + 2 / 12, "feet"),
  8535. weight: math.unit(120, "lbs"),
  8536. name: "Front",
  8537. image: {
  8538. source: "./media/characters/katherine/front.svg",
  8539. extra: 2075 / 1969
  8540. }
  8541. },
  8542. dress: {
  8543. height: math.unit(5 + 2 / 12, "feet"),
  8544. weight: math.unit(120, "lbs"),
  8545. name: "Dress",
  8546. image: {
  8547. source: "./media/characters/katherine/dress.svg",
  8548. extra: 2258 / 2064
  8549. }
  8550. },
  8551. },
  8552. [
  8553. {
  8554. name: "Micro",
  8555. height: math.unit(1, "inches"),
  8556. default: true
  8557. },
  8558. {
  8559. name: "Normal",
  8560. height: math.unit(5 + 2 / 12, "feet")
  8561. },
  8562. {
  8563. name: "Macro",
  8564. height: math.unit(100, "meters")
  8565. },
  8566. {
  8567. name: "Megamacro",
  8568. height: math.unit(80, "miles")
  8569. },
  8570. ]
  8571. ))
  8572. characterMakers.push(() => makeCharacter(
  8573. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8574. {
  8575. front: {
  8576. height: math.unit(7 + 8 / 12, "feet"),
  8577. weight: math.unit(250, "lbs"),
  8578. name: "Front",
  8579. image: {
  8580. source: "./media/characters/yevis/front.svg",
  8581. extra: 1938 / 1755
  8582. }
  8583. }
  8584. },
  8585. [
  8586. {
  8587. name: "Mortal",
  8588. height: math.unit(7 + 8 / 12, "feet")
  8589. },
  8590. {
  8591. name: "Battle",
  8592. height: math.unit(25 + 11 / 12, "feet")
  8593. },
  8594. {
  8595. name: "Wrath",
  8596. height: math.unit(1654 + 11 / 12, "feet")
  8597. },
  8598. {
  8599. name: "Planet Destroyer",
  8600. height: math.unit(12000, "miles")
  8601. },
  8602. {
  8603. name: "Galaxy Conqueror",
  8604. height: math.unit(1.45, "zettameters"),
  8605. default: true
  8606. },
  8607. {
  8608. name: "Universal War",
  8609. height: math.unit(184, "gigaparsecs")
  8610. },
  8611. {
  8612. name: "Eternity War",
  8613. height: math.unit(1.98e55, "yottaparsecs")
  8614. },
  8615. ]
  8616. ))
  8617. characterMakers.push(() => makeCharacter(
  8618. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8619. {
  8620. front: {
  8621. height: math.unit(5 + 8 / 12, "feet"),
  8622. weight: math.unit(63, "kg"),
  8623. name: "Front",
  8624. image: {
  8625. source: "./media/characters/xavier/front.svg",
  8626. extra: 944 / 883
  8627. }
  8628. },
  8629. frontStretch: {
  8630. height: math.unit(5 + 8 / 12, "feet"),
  8631. weight: math.unit(63, "kg"),
  8632. name: "Stretching",
  8633. image: {
  8634. source: "./media/characters/xavier/front-stretch.svg",
  8635. extra: 962 / 820
  8636. }
  8637. },
  8638. },
  8639. [
  8640. {
  8641. name: "Normal",
  8642. height: math.unit(5 + 8 / 12, "feet")
  8643. },
  8644. {
  8645. name: "Macro",
  8646. height: math.unit(100, "meters"),
  8647. default: true
  8648. },
  8649. {
  8650. name: "McLargeHuge",
  8651. height: math.unit(10, "miles")
  8652. },
  8653. ]
  8654. ))
  8655. characterMakers.push(() => makeCharacter(
  8656. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8657. {
  8658. front: {
  8659. height: math.unit(5 + 5 / 12, "feet"),
  8660. weight: math.unit(150, "lb"),
  8661. name: "Front",
  8662. image: {
  8663. source: "./media/characters/joshii/front.svg",
  8664. extra: 765 / 653,
  8665. bottom: 51 / 816
  8666. }
  8667. },
  8668. foot: {
  8669. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8670. name: "Foot",
  8671. image: {
  8672. source: "./media/characters/joshii/foot.svg"
  8673. }
  8674. },
  8675. },
  8676. [
  8677. {
  8678. name: "Micro",
  8679. height: math.unit(2, "inches"),
  8680. default: true
  8681. },
  8682. {
  8683. name: "Normal",
  8684. height: math.unit(5 + 5 / 12, "feet")
  8685. },
  8686. {
  8687. name: "Macro",
  8688. height: math.unit(785, "feet")
  8689. },
  8690. {
  8691. name: "Megamacro",
  8692. height: math.unit(24.5, "miles")
  8693. },
  8694. ]
  8695. ))
  8696. characterMakers.push(() => makeCharacter(
  8697. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8698. {
  8699. front: {
  8700. height: math.unit(6, "feet"),
  8701. weight: math.unit(150, "lb"),
  8702. name: "Front",
  8703. image: {
  8704. source: "./media/characters/goddess-elizabeth/front.svg",
  8705. extra: 1800 / 1525,
  8706. bottom: 0.005
  8707. }
  8708. },
  8709. foot: {
  8710. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8711. name: "Foot",
  8712. image: {
  8713. source: "./media/characters/goddess-elizabeth/foot.svg"
  8714. }
  8715. },
  8716. mouth: {
  8717. height: math.unit(6, "feet"),
  8718. name: "Mouth",
  8719. image: {
  8720. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8721. }
  8722. },
  8723. },
  8724. [
  8725. {
  8726. name: "Micro",
  8727. height: math.unit(12, "feet")
  8728. },
  8729. {
  8730. name: "Normal",
  8731. height: math.unit(80, "miles"),
  8732. default: true
  8733. },
  8734. {
  8735. name: "Macro",
  8736. height: math.unit(15000, "parsecs")
  8737. },
  8738. ]
  8739. ))
  8740. characterMakers.push(() => makeCharacter(
  8741. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8742. {
  8743. front: {
  8744. height: math.unit(5 + 9 / 12, "feet"),
  8745. weight: math.unit(144, "lb"),
  8746. name: "Front",
  8747. image: {
  8748. source: "./media/characters/kara/front.svg"
  8749. }
  8750. },
  8751. feet: {
  8752. height: math.unit(6 / 6.765, "feet"),
  8753. name: "Kara's Feet",
  8754. rename: true,
  8755. image: {
  8756. source: "./media/characters/kara/feet.svg"
  8757. }
  8758. },
  8759. },
  8760. [
  8761. {
  8762. name: "Normal",
  8763. height: math.unit(5 + 9 / 12, "feet")
  8764. },
  8765. {
  8766. name: "Macro",
  8767. height: math.unit(174, "feet"),
  8768. default: true
  8769. },
  8770. ]
  8771. ))
  8772. characterMakers.push(() => makeCharacter(
  8773. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8774. {
  8775. front: {
  8776. height: math.unit(18, "feet"),
  8777. weight: math.unit(4050, "lb"),
  8778. name: "Front",
  8779. image: {
  8780. source: "./media/characters/tyrone/front.svg",
  8781. extra: 2405 / 2270,
  8782. bottom: 182 / 2587
  8783. }
  8784. },
  8785. },
  8786. [
  8787. {
  8788. name: "Normal",
  8789. height: math.unit(18, "feet"),
  8790. default: true
  8791. },
  8792. {
  8793. name: "Macro",
  8794. height: math.unit(300, "feet")
  8795. },
  8796. {
  8797. name: "Megamacro",
  8798. height: math.unit(15, "km")
  8799. },
  8800. {
  8801. name: "Gigamacro",
  8802. height: math.unit(500, "km")
  8803. },
  8804. {
  8805. name: "Teramacro",
  8806. height: math.unit(0.5, "gigameters")
  8807. },
  8808. {
  8809. name: "Omnimacro",
  8810. height: math.unit(1e252, "yottauniverse")
  8811. },
  8812. ]
  8813. ))
  8814. characterMakers.push(() => makeCharacter(
  8815. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8816. {
  8817. front: {
  8818. height: math.unit(7 + 8 / 12, "feet"),
  8819. weight: math.unit(120, "lb"),
  8820. name: "Front",
  8821. image: {
  8822. source: "./media/characters/danny/front.svg",
  8823. extra: 1490 / 1350
  8824. }
  8825. },
  8826. back: {
  8827. height: math.unit(7 + 8 / 12, "feet"),
  8828. weight: math.unit(120, "lb"),
  8829. name: "Back",
  8830. image: {
  8831. source: "./media/characters/danny/back.svg",
  8832. extra: 1490 / 1350
  8833. }
  8834. },
  8835. },
  8836. [
  8837. {
  8838. name: "Normal",
  8839. height: math.unit(7 + 8 / 12, "feet"),
  8840. default: true
  8841. },
  8842. ]
  8843. ))
  8844. characterMakers.push(() => makeCharacter(
  8845. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8846. {
  8847. front: {
  8848. height: math.unit(3.5, "inches"),
  8849. weight: math.unit(19, "grams"),
  8850. name: "Front",
  8851. image: {
  8852. source: "./media/characters/mallow/front.svg",
  8853. extra: 471 / 431
  8854. }
  8855. },
  8856. back: {
  8857. height: math.unit(3.5, "inches"),
  8858. weight: math.unit(19, "grams"),
  8859. name: "Back",
  8860. image: {
  8861. source: "./media/characters/mallow/back.svg",
  8862. extra: 471 / 431
  8863. }
  8864. },
  8865. },
  8866. [
  8867. {
  8868. name: "Normal",
  8869. height: math.unit(3.5, "inches"),
  8870. default: true
  8871. },
  8872. ]
  8873. ))
  8874. characterMakers.push(() => makeCharacter(
  8875. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8876. {
  8877. front: {
  8878. height: math.unit(9, "feet"),
  8879. weight: math.unit(230, "kg"),
  8880. name: "Front",
  8881. image: {
  8882. source: "./media/characters/starry-aqua/front.svg"
  8883. }
  8884. },
  8885. back: {
  8886. height: math.unit(9, "feet"),
  8887. weight: math.unit(230, "kg"),
  8888. name: "Back",
  8889. image: {
  8890. source: "./media/characters/starry-aqua/back.svg"
  8891. }
  8892. },
  8893. hand: {
  8894. height: math.unit(9 * 0.1168, "feet"),
  8895. name: "Hand",
  8896. image: {
  8897. source: "./media/characters/starry-aqua/hand.svg"
  8898. }
  8899. },
  8900. foot: {
  8901. height: math.unit(9 * 0.18, "feet"),
  8902. name: "Foot",
  8903. image: {
  8904. source: "./media/characters/starry-aqua/foot.svg"
  8905. }
  8906. }
  8907. },
  8908. [
  8909. {
  8910. name: "Micro",
  8911. height: math.unit(3, "inches")
  8912. },
  8913. {
  8914. name: "Normal",
  8915. height: math.unit(9, "feet")
  8916. },
  8917. {
  8918. name: "Macro",
  8919. height: math.unit(300, "feet"),
  8920. default: true
  8921. },
  8922. {
  8923. name: "Megamacro",
  8924. height: math.unit(3200, "feet")
  8925. }
  8926. ]
  8927. ))
  8928. characterMakers.push(() => makeCharacter(
  8929. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  8930. {
  8931. front: {
  8932. height: math.unit(15, "feet"),
  8933. weight: math.unit(5026, "lb"),
  8934. name: "Front",
  8935. image: {
  8936. source: "./media/characters/luka-towers/front.svg",
  8937. extra: 1269/1133,
  8938. bottom: 51/1320
  8939. }
  8940. },
  8941. },
  8942. [
  8943. {
  8944. name: "Normal",
  8945. height: math.unit(15, "feet"),
  8946. default: true
  8947. },
  8948. {
  8949. name: "Minimacro",
  8950. height: math.unit(25, "feet")
  8951. },
  8952. {
  8953. name: "Macro",
  8954. height: math.unit(320, "feet")
  8955. },
  8956. {
  8957. name: "Megamacro",
  8958. height: math.unit(35000, "feet")
  8959. },
  8960. {
  8961. name: "Gigamacro",
  8962. height: math.unit(4000, "miles")
  8963. },
  8964. {
  8965. name: "Teramacro",
  8966. height: math.unit(15000, "miles")
  8967. },
  8968. ]
  8969. ))
  8970. characterMakers.push(() => makeCharacter(
  8971. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8972. {
  8973. front: {
  8974. height: math.unit(6, "feet"),
  8975. weight: math.unit(150, "lb"),
  8976. name: "Front",
  8977. image: {
  8978. source: "./media/characters/natalie-nightring/front.svg",
  8979. extra: 1,
  8980. bottom: 0.06
  8981. }
  8982. },
  8983. },
  8984. [
  8985. {
  8986. name: "Uh Oh",
  8987. height: math.unit(0.1, "mm")
  8988. },
  8989. {
  8990. name: "Small",
  8991. height: math.unit(3, "inches")
  8992. },
  8993. {
  8994. name: "Human Scale",
  8995. height: math.unit(6, "feet")
  8996. },
  8997. {
  8998. name: "Librarian",
  8999. height: math.unit(50, "feet"),
  9000. default: true
  9001. },
  9002. {
  9003. name: "Immense",
  9004. height: math.unit(200, "miles")
  9005. },
  9006. ]
  9007. ))
  9008. characterMakers.push(() => makeCharacter(
  9009. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9010. {
  9011. front: {
  9012. height: math.unit(6, "feet"),
  9013. weight: math.unit(180, "lbs"),
  9014. name: "Front",
  9015. image: {
  9016. source: "./media/characters/danni-rosie/front.svg",
  9017. extra: 1260 / 1128,
  9018. bottom: 0.022
  9019. }
  9020. },
  9021. },
  9022. [
  9023. {
  9024. name: "Micro",
  9025. height: math.unit(2, "inches"),
  9026. default: true
  9027. },
  9028. ]
  9029. ))
  9030. characterMakers.push(() => makeCharacter(
  9031. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9032. {
  9033. front: {
  9034. height: math.unit(5 + 9 / 12, "feet"),
  9035. weight: math.unit(220, "lb"),
  9036. name: "Front",
  9037. image: {
  9038. source: "./media/characters/samantha-kruse/front.svg",
  9039. extra: (985 / 935),
  9040. bottom: 0.03
  9041. }
  9042. },
  9043. frontUndressed: {
  9044. height: math.unit(5 + 9 / 12, "feet"),
  9045. weight: math.unit(220, "lb"),
  9046. name: "Front (Undressed)",
  9047. image: {
  9048. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9049. extra: (973 / 923),
  9050. bottom: 0.025
  9051. }
  9052. },
  9053. fat: {
  9054. height: math.unit(5 + 9 / 12, "feet"),
  9055. weight: math.unit(900, "lb"),
  9056. name: "Front (Fat)",
  9057. image: {
  9058. source: "./media/characters/samantha-kruse/fat.svg",
  9059. extra: 2688 / 2561
  9060. }
  9061. },
  9062. },
  9063. [
  9064. {
  9065. name: "Normal",
  9066. height: math.unit(5 + 9 / 12, "feet"),
  9067. default: true
  9068. }
  9069. ]
  9070. ))
  9071. characterMakers.push(() => makeCharacter(
  9072. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9073. {
  9074. back: {
  9075. height: math.unit(5 + 4 / 12, "feet"),
  9076. weight: math.unit(4963, "lb"),
  9077. name: "Back",
  9078. image: {
  9079. source: "./media/characters/amelia-rosie/back.svg",
  9080. extra: 1113 / 963,
  9081. bottom: 0.01
  9082. }
  9083. },
  9084. },
  9085. [
  9086. {
  9087. name: "Level 0",
  9088. height: math.unit(5 + 4 / 12, "feet")
  9089. },
  9090. {
  9091. name: "Level 1",
  9092. height: math.unit(164597, "feet"),
  9093. default: true
  9094. },
  9095. {
  9096. name: "Level 2",
  9097. height: math.unit(956243, "miles")
  9098. },
  9099. {
  9100. name: "Level 3",
  9101. height: math.unit(29421709423, "miles")
  9102. },
  9103. {
  9104. name: "Level 4",
  9105. height: math.unit(154, "lightyears")
  9106. },
  9107. {
  9108. name: "Level 5",
  9109. height: math.unit(4738272, "lightyears")
  9110. },
  9111. {
  9112. name: "Level 6",
  9113. height: math.unit(145787152896, "lightyears")
  9114. },
  9115. ]
  9116. ))
  9117. characterMakers.push(() => makeCharacter(
  9118. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9119. {
  9120. front: {
  9121. height: math.unit(5 + 11 / 12, "feet"),
  9122. weight: math.unit(65, "kg"),
  9123. name: "Front",
  9124. image: {
  9125. source: "./media/characters/rook-kitara/front.svg",
  9126. extra: 1347 / 1274,
  9127. bottom: 0.005
  9128. }
  9129. },
  9130. },
  9131. [
  9132. {
  9133. name: "Totally Unfair",
  9134. height: math.unit(1.8, "mm")
  9135. },
  9136. {
  9137. name: "Lap Rookie",
  9138. height: math.unit(1.4, "feet")
  9139. },
  9140. {
  9141. name: "Normal",
  9142. height: math.unit(5 + 11 / 12, "feet"),
  9143. default: true
  9144. },
  9145. {
  9146. name: "How Did This Happen",
  9147. height: math.unit(80, "miles")
  9148. }
  9149. ]
  9150. ))
  9151. characterMakers.push(() => makeCharacter(
  9152. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9153. {
  9154. front: {
  9155. height: math.unit(7, "feet"),
  9156. weight: math.unit(300, "lb"),
  9157. name: "Front",
  9158. image: {
  9159. source: "./media/characters/pisces/front.svg",
  9160. extra: 2255 / 2115,
  9161. bottom: 0.03
  9162. }
  9163. },
  9164. back: {
  9165. height: math.unit(7, "feet"),
  9166. weight: math.unit(300, "lb"),
  9167. name: "Back",
  9168. image: {
  9169. source: "./media/characters/pisces/back.svg",
  9170. extra: 2146 / 2055,
  9171. bottom: 0.04
  9172. }
  9173. },
  9174. },
  9175. [
  9176. {
  9177. name: "Normal",
  9178. height: math.unit(7, "feet"),
  9179. default: true
  9180. },
  9181. {
  9182. name: "Swimming Pool",
  9183. height: math.unit(12.2, "meters")
  9184. },
  9185. {
  9186. name: "Olympic Swimming Pool",
  9187. height: math.unit(56.3, "meters")
  9188. },
  9189. {
  9190. name: "Lake Superior",
  9191. height: math.unit(93900, "meters")
  9192. },
  9193. {
  9194. name: "Mediterranean Sea",
  9195. height: math.unit(644457, "meters")
  9196. },
  9197. {
  9198. name: "World's Oceans",
  9199. height: math.unit(4567491, "meters")
  9200. },
  9201. ]
  9202. ))
  9203. characterMakers.push(() => makeCharacter(
  9204. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9205. {
  9206. front: {
  9207. height: math.unit(2.3, "meters"),
  9208. weight: math.unit(120, "kg"),
  9209. name: "Front",
  9210. image: {
  9211. source: "./media/characters/zelas/front.svg"
  9212. }
  9213. },
  9214. side: {
  9215. height: math.unit(2.3, "meters"),
  9216. weight: math.unit(120, "kg"),
  9217. name: "Side",
  9218. image: {
  9219. source: "./media/characters/zelas/side.svg"
  9220. }
  9221. },
  9222. back: {
  9223. height: math.unit(2.3, "meters"),
  9224. weight: math.unit(120, "kg"),
  9225. name: "Back",
  9226. image: {
  9227. source: "./media/characters/zelas/back.svg"
  9228. }
  9229. },
  9230. foot: {
  9231. height: math.unit(1.116, "feet"),
  9232. name: "Foot",
  9233. image: {
  9234. source: "./media/characters/zelas/foot.svg"
  9235. }
  9236. },
  9237. },
  9238. [
  9239. {
  9240. name: "Normal",
  9241. height: math.unit(2.3, "meters")
  9242. },
  9243. {
  9244. name: "Macro",
  9245. height: math.unit(30, "meters"),
  9246. default: true
  9247. },
  9248. ]
  9249. ))
  9250. characterMakers.push(() => makeCharacter(
  9251. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9252. {
  9253. front: {
  9254. height: math.unit(1, "inch"),
  9255. weight: math.unit(0.21, "grams"),
  9256. name: "Front",
  9257. image: {
  9258. source: "./media/characters/talbot/front.svg",
  9259. extra: 594 / 544
  9260. }
  9261. },
  9262. },
  9263. [
  9264. {
  9265. name: "Micro",
  9266. height: math.unit(1, "inch"),
  9267. default: true
  9268. },
  9269. ]
  9270. ))
  9271. characterMakers.push(() => makeCharacter(
  9272. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9273. {
  9274. front: {
  9275. height: math.unit(3 + 3 / 12, "feet"),
  9276. weight: math.unit(51.8, "lb"),
  9277. name: "Front",
  9278. image: {
  9279. source: "./media/characters/fliss/front.svg",
  9280. extra: 840 / 640
  9281. }
  9282. },
  9283. },
  9284. [
  9285. {
  9286. name: "Teeny Tiny",
  9287. height: math.unit(1, "mm")
  9288. },
  9289. {
  9290. name: "Small",
  9291. height: math.unit(1, "inch"),
  9292. default: true
  9293. },
  9294. {
  9295. name: "Standard Sylveon",
  9296. height: math.unit(3 + 3 / 12, "feet")
  9297. },
  9298. {
  9299. name: "Large Nuisance",
  9300. height: math.unit(33, "feet")
  9301. },
  9302. {
  9303. name: "City Filler",
  9304. height: math.unit(3000, "feet")
  9305. },
  9306. {
  9307. name: "New Horizon",
  9308. height: math.unit(6000, "miles")
  9309. },
  9310. ]
  9311. ))
  9312. characterMakers.push(() => makeCharacter(
  9313. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9314. {
  9315. front: {
  9316. height: math.unit(5, "cm"),
  9317. weight: math.unit(1.94, "g"),
  9318. name: "Front",
  9319. image: {
  9320. source: "./media/characters/fleta/front.svg",
  9321. extra: 835 / 803
  9322. }
  9323. },
  9324. back: {
  9325. height: math.unit(5, "cm"),
  9326. weight: math.unit(1.94, "g"),
  9327. name: "Back",
  9328. image: {
  9329. source: "./media/characters/fleta/back.svg",
  9330. extra: 835 / 803
  9331. }
  9332. },
  9333. },
  9334. [
  9335. {
  9336. name: "Micro",
  9337. height: math.unit(5, "cm"),
  9338. default: true
  9339. },
  9340. ]
  9341. ))
  9342. characterMakers.push(() => makeCharacter(
  9343. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9344. {
  9345. front: {
  9346. height: math.unit(6, "feet"),
  9347. weight: math.unit(225, "lb"),
  9348. name: "Front",
  9349. image: {
  9350. source: "./media/characters/dominic/front.svg",
  9351. extra: 1770 / 1620,
  9352. bottom: 0.025
  9353. }
  9354. },
  9355. back: {
  9356. height: math.unit(6, "feet"),
  9357. weight: math.unit(225, "lb"),
  9358. name: "Back",
  9359. image: {
  9360. source: "./media/characters/dominic/back.svg",
  9361. extra: 1745 / 1620,
  9362. bottom: 0.065
  9363. }
  9364. },
  9365. },
  9366. [
  9367. {
  9368. name: "Nano",
  9369. height: math.unit(0.1, "mm")
  9370. },
  9371. {
  9372. name: "Micro-",
  9373. height: math.unit(1, "mm")
  9374. },
  9375. {
  9376. name: "Micro",
  9377. height: math.unit(4, "inches")
  9378. },
  9379. {
  9380. name: "Normal",
  9381. height: math.unit(6 + 4 / 12, "feet"),
  9382. default: true
  9383. },
  9384. {
  9385. name: "Macro",
  9386. height: math.unit(115, "feet")
  9387. },
  9388. {
  9389. name: "Macro+",
  9390. height: math.unit(955, "feet")
  9391. },
  9392. {
  9393. name: "Megamacro",
  9394. height: math.unit(8990, "feet")
  9395. },
  9396. {
  9397. name: "Gigmacro",
  9398. height: math.unit(9310, "miles")
  9399. },
  9400. {
  9401. name: "Teramacro",
  9402. height: math.unit(1567005010, "miles")
  9403. },
  9404. {
  9405. name: "Examacro",
  9406. height: math.unit(1425, "parsecs")
  9407. },
  9408. ]
  9409. ))
  9410. characterMakers.push(() => makeCharacter(
  9411. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9412. {
  9413. front: {
  9414. height: math.unit(400, "feet"),
  9415. weight: math.unit(44444444, "lb"),
  9416. name: "Front",
  9417. image: {
  9418. source: "./media/characters/major-colonel/front.svg"
  9419. }
  9420. },
  9421. back: {
  9422. height: math.unit(400, "feet"),
  9423. weight: math.unit(44444444, "lb"),
  9424. name: "Back",
  9425. image: {
  9426. source: "./media/characters/major-colonel/back.svg"
  9427. }
  9428. },
  9429. },
  9430. [
  9431. {
  9432. name: "Macro",
  9433. height: math.unit(400, "feet"),
  9434. default: true
  9435. },
  9436. ]
  9437. ))
  9438. characterMakers.push(() => makeCharacter(
  9439. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9440. {
  9441. catFront: {
  9442. height: math.unit(6, "feet"),
  9443. weight: math.unit(120, "lb"),
  9444. name: "Front (Cat Side)",
  9445. image: {
  9446. source: "./media/characters/axel-lycan/cat-front.svg",
  9447. extra: 430 / 402,
  9448. bottom: 43 / 472.35
  9449. }
  9450. },
  9451. catBack: {
  9452. height: math.unit(6, "feet"),
  9453. weight: math.unit(120, "lb"),
  9454. name: "Back (Cat Side)",
  9455. image: {
  9456. source: "./media/characters/axel-lycan/cat-back.svg",
  9457. extra: 447 / 419,
  9458. bottom: 23.3 / 469
  9459. }
  9460. },
  9461. wolfFront: {
  9462. height: math.unit(6, "feet"),
  9463. weight: math.unit(120, "lb"),
  9464. name: "Front (Wolf Side)",
  9465. image: {
  9466. source: "./media/characters/axel-lycan/wolf-front.svg",
  9467. extra: 485 / 456,
  9468. bottom: 19 / 504
  9469. }
  9470. },
  9471. wolfBack: {
  9472. height: math.unit(6, "feet"),
  9473. weight: math.unit(120, "lb"),
  9474. name: "Back (Wolf Side)",
  9475. image: {
  9476. source: "./media/characters/axel-lycan/wolf-back.svg",
  9477. extra: 475 / 438,
  9478. bottom: 39.2 / 514
  9479. }
  9480. },
  9481. },
  9482. [
  9483. {
  9484. name: "Macro",
  9485. height: math.unit(1, "km"),
  9486. default: true
  9487. },
  9488. ]
  9489. ))
  9490. characterMakers.push(() => makeCharacter(
  9491. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9492. {
  9493. front: {
  9494. height: math.unit(5 + 9 / 12, "feet"),
  9495. weight: math.unit(175, "lb"),
  9496. name: "Front",
  9497. image: {
  9498. source: "./media/characters/vanrel-hyena/front.svg",
  9499. extra: 1086 / 1010,
  9500. bottom: 0.04
  9501. }
  9502. },
  9503. },
  9504. [
  9505. {
  9506. name: "Normal",
  9507. height: math.unit(5 + 9 / 12, "feet"),
  9508. default: true
  9509. },
  9510. ]
  9511. ))
  9512. characterMakers.push(() => makeCharacter(
  9513. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9514. {
  9515. front: {
  9516. height: math.unit(6, "feet"),
  9517. weight: math.unit(103, "lb"),
  9518. name: "Front",
  9519. image: {
  9520. source: "./media/characters/abbott-absol/front.svg",
  9521. extra: 2010 / 1842
  9522. }
  9523. },
  9524. },
  9525. [
  9526. {
  9527. name: "Megamicro",
  9528. height: math.unit(0.1, "mm")
  9529. },
  9530. {
  9531. name: "Micro",
  9532. height: math.unit(1, "inch")
  9533. },
  9534. {
  9535. name: "Normal",
  9536. height: math.unit(6, "feet"),
  9537. default: true
  9538. },
  9539. ]
  9540. ))
  9541. characterMakers.push(() => makeCharacter(
  9542. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9543. {
  9544. front: {
  9545. height: math.unit(6, "feet"),
  9546. weight: math.unit(264, "lb"),
  9547. name: "Front",
  9548. image: {
  9549. source: "./media/characters/hector/front.svg",
  9550. extra: 2280 / 2130,
  9551. bottom: 0.07
  9552. }
  9553. },
  9554. },
  9555. [
  9556. {
  9557. name: "Normal",
  9558. height: math.unit(12.25, "foot"),
  9559. default: true
  9560. },
  9561. {
  9562. name: "Macro",
  9563. height: math.unit(160, "feet")
  9564. },
  9565. ]
  9566. ))
  9567. characterMakers.push(() => makeCharacter(
  9568. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9569. {
  9570. front: {
  9571. height: math.unit(6, "feet"),
  9572. weight: math.unit(150, "lb"),
  9573. name: "Front",
  9574. image: {
  9575. source: "./media/characters/sal/front.svg",
  9576. extra: 1846 / 1699,
  9577. bottom: 0.04
  9578. }
  9579. },
  9580. },
  9581. [
  9582. {
  9583. name: "Megamacro",
  9584. height: math.unit(10, "miles"),
  9585. default: true
  9586. },
  9587. ]
  9588. ))
  9589. characterMakers.push(() => makeCharacter(
  9590. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9591. {
  9592. front: {
  9593. height: math.unit(3, "meters"),
  9594. weight: math.unit(450, "kg"),
  9595. name: "front",
  9596. image: {
  9597. source: "./media/characters/ranger/front.svg",
  9598. extra: 2401 / 2243,
  9599. bottom: 0.05
  9600. }
  9601. },
  9602. },
  9603. [
  9604. {
  9605. name: "Normal",
  9606. height: math.unit(3, "meters"),
  9607. default: true
  9608. },
  9609. ]
  9610. ))
  9611. characterMakers.push(() => makeCharacter(
  9612. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9613. {
  9614. front: {
  9615. height: math.unit(14, "feet"),
  9616. weight: math.unit(800, "kg"),
  9617. name: "Front",
  9618. image: {
  9619. source: "./media/characters/theresa/front.svg",
  9620. extra: 3575 / 3346,
  9621. bottom: 0.03
  9622. }
  9623. },
  9624. },
  9625. [
  9626. {
  9627. name: "Normal",
  9628. height: math.unit(14, "feet"),
  9629. default: true
  9630. },
  9631. ]
  9632. ))
  9633. characterMakers.push(() => makeCharacter(
  9634. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9635. {
  9636. front: {
  9637. height: math.unit(6, "feet"),
  9638. weight: math.unit(3, "kg"),
  9639. name: "Front",
  9640. image: {
  9641. source: "./media/characters/ine/front.svg",
  9642. extra: 678 / 539,
  9643. bottom: 0.023
  9644. }
  9645. },
  9646. },
  9647. [
  9648. {
  9649. name: "Normal",
  9650. height: math.unit(2.265, "feet"),
  9651. default: true
  9652. },
  9653. ]
  9654. ))
  9655. characterMakers.push(() => makeCharacter(
  9656. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9657. {
  9658. front: {
  9659. height: math.unit(5, "feet"),
  9660. weight: math.unit(30, "kg"),
  9661. name: "Front",
  9662. image: {
  9663. source: "./media/characters/vial/front.svg",
  9664. extra: 1365 / 1277,
  9665. bottom: 0.04
  9666. }
  9667. },
  9668. },
  9669. [
  9670. {
  9671. name: "Normal",
  9672. height: math.unit(5, "feet"),
  9673. default: true
  9674. },
  9675. ]
  9676. ))
  9677. characterMakers.push(() => makeCharacter(
  9678. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9679. {
  9680. side: {
  9681. height: math.unit(3.4, "meters"),
  9682. weight: math.unit(1000, "lb"),
  9683. name: "Side",
  9684. image: {
  9685. source: "./media/characters/rovoska/side.svg",
  9686. extra: 4403 / 1515
  9687. }
  9688. },
  9689. },
  9690. [
  9691. {
  9692. name: "Normal",
  9693. height: math.unit(3.4, "meters"),
  9694. default: true
  9695. },
  9696. ]
  9697. ))
  9698. characterMakers.push(() => makeCharacter(
  9699. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9700. {
  9701. front: {
  9702. height: math.unit(8, "feet"),
  9703. weight: math.unit(315, "lb"),
  9704. name: "Front",
  9705. image: {
  9706. source: "./media/characters/gunner-rotthbauer/front.svg"
  9707. }
  9708. },
  9709. back: {
  9710. height: math.unit(8, "feet"),
  9711. weight: math.unit(315, "lb"),
  9712. name: "Back",
  9713. image: {
  9714. source: "./media/characters/gunner-rotthbauer/back.svg"
  9715. }
  9716. },
  9717. },
  9718. [
  9719. {
  9720. name: "Micro",
  9721. height: math.unit(3.5, "inches")
  9722. },
  9723. {
  9724. name: "Normal",
  9725. height: math.unit(8, "feet"),
  9726. default: true
  9727. },
  9728. {
  9729. name: "Macro",
  9730. height: math.unit(250, "feet")
  9731. },
  9732. {
  9733. name: "Megamacro",
  9734. height: math.unit(1, "AU")
  9735. },
  9736. ]
  9737. ))
  9738. characterMakers.push(() => makeCharacter(
  9739. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9740. {
  9741. front: {
  9742. height: math.unit(5 + 5 / 12, "feet"),
  9743. weight: math.unit(140, "lb"),
  9744. name: "Front",
  9745. image: {
  9746. source: "./media/characters/allatia/front.svg",
  9747. extra: 1227 / 1180,
  9748. bottom: 0.027
  9749. }
  9750. },
  9751. },
  9752. [
  9753. {
  9754. name: "Normal",
  9755. height: math.unit(5 + 5 / 12, "feet")
  9756. },
  9757. {
  9758. name: "Macro",
  9759. height: math.unit(250, "feet"),
  9760. default: true
  9761. },
  9762. {
  9763. name: "Megamacro",
  9764. height: math.unit(8, "miles")
  9765. }
  9766. ]
  9767. ))
  9768. characterMakers.push(() => makeCharacter(
  9769. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9770. {
  9771. front: {
  9772. height: math.unit(6, "feet"),
  9773. weight: math.unit(120, "lb"),
  9774. name: "Front",
  9775. image: {
  9776. source: "./media/characters/tene/front.svg",
  9777. extra: 1728 / 1578,
  9778. bottom: 0.022
  9779. }
  9780. },
  9781. stomping: {
  9782. height: math.unit(2.025, "meters"),
  9783. weight: math.unit(120, "lb"),
  9784. name: "Stomping",
  9785. image: {
  9786. source: "./media/characters/tene/stomping.svg",
  9787. extra: 938 / 873,
  9788. bottom: 0.01
  9789. }
  9790. },
  9791. sitting: {
  9792. height: math.unit(1, "meter"),
  9793. weight: math.unit(120, "lb"),
  9794. name: "Sitting",
  9795. image: {
  9796. source: "./media/characters/tene/sitting.svg",
  9797. extra: 437 / 415,
  9798. bottom: 0.1
  9799. }
  9800. },
  9801. feral: {
  9802. height: math.unit(3.9, "feet"),
  9803. weight: math.unit(250, "lb"),
  9804. name: "Feral",
  9805. image: {
  9806. source: "./media/characters/tene/feral.svg",
  9807. extra: 717 / 458,
  9808. bottom: 0.179
  9809. }
  9810. },
  9811. },
  9812. [
  9813. {
  9814. name: "Normal",
  9815. height: math.unit(6, "feet")
  9816. },
  9817. {
  9818. name: "Macro",
  9819. height: math.unit(300, "feet"),
  9820. default: true
  9821. },
  9822. {
  9823. name: "Megamacro",
  9824. height: math.unit(5, "miles")
  9825. },
  9826. ]
  9827. ))
  9828. characterMakers.push(() => makeCharacter(
  9829. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9830. {
  9831. side: {
  9832. height: math.unit(6, "feet"),
  9833. name: "Side",
  9834. image: {
  9835. source: "./media/characters/evander/side.svg",
  9836. extra: 877 / 477
  9837. }
  9838. },
  9839. },
  9840. [
  9841. {
  9842. name: "Normal",
  9843. height: math.unit(0.83, "meters"),
  9844. default: true
  9845. },
  9846. ]
  9847. ))
  9848. characterMakers.push(() => makeCharacter(
  9849. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9850. {
  9851. front: {
  9852. height: math.unit(12, "feet"),
  9853. weight: math.unit(1000, "lb"),
  9854. name: "Front",
  9855. image: {
  9856. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9857. extra: 1762 / 1611
  9858. }
  9859. },
  9860. back: {
  9861. height: math.unit(12, "feet"),
  9862. weight: math.unit(1000, "lb"),
  9863. name: "Back",
  9864. image: {
  9865. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9866. extra: 1762 / 1611
  9867. }
  9868. },
  9869. },
  9870. [
  9871. {
  9872. name: "Normal",
  9873. height: math.unit(12, "feet"),
  9874. default: true
  9875. },
  9876. {
  9877. name: "Kaiju",
  9878. height: math.unit(150, "feet")
  9879. },
  9880. ]
  9881. ))
  9882. characterMakers.push(() => makeCharacter(
  9883. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9884. {
  9885. front: {
  9886. height: math.unit(6, "feet"),
  9887. weight: math.unit(150, "lb"),
  9888. name: "Front",
  9889. image: {
  9890. source: "./media/characters/zero-alurus/front.svg"
  9891. }
  9892. },
  9893. back: {
  9894. height: math.unit(6, "feet"),
  9895. weight: math.unit(150, "lb"),
  9896. name: "Back",
  9897. image: {
  9898. source: "./media/characters/zero-alurus/back.svg"
  9899. }
  9900. },
  9901. },
  9902. [
  9903. {
  9904. name: "Normal",
  9905. height: math.unit(5 + 10 / 12, "feet")
  9906. },
  9907. {
  9908. name: "Macro",
  9909. height: math.unit(60, "feet"),
  9910. default: true
  9911. },
  9912. {
  9913. name: "Macro+",
  9914. height: math.unit(450, "feet")
  9915. },
  9916. ]
  9917. ))
  9918. characterMakers.push(() => makeCharacter(
  9919. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9920. {
  9921. front: {
  9922. height: math.unit(6, "feet"),
  9923. weight: math.unit(200, "lb"),
  9924. name: "Front",
  9925. image: {
  9926. source: "./media/characters/mega-shi/front.svg",
  9927. extra: 1279 / 1250,
  9928. bottom: 0.02
  9929. }
  9930. },
  9931. back: {
  9932. height: math.unit(6, "feet"),
  9933. weight: math.unit(200, "lb"),
  9934. name: "Back",
  9935. image: {
  9936. source: "./media/characters/mega-shi/back.svg",
  9937. extra: 1279 / 1250,
  9938. bottom: 0.02
  9939. }
  9940. },
  9941. },
  9942. [
  9943. {
  9944. name: "Micro",
  9945. height: math.unit(16 + 6 / 12, "feet")
  9946. },
  9947. {
  9948. name: "Third Dimension",
  9949. height: math.unit(40, "meters")
  9950. },
  9951. {
  9952. name: "Normal",
  9953. height: math.unit(660, "feet"),
  9954. default: true
  9955. },
  9956. {
  9957. name: "Megamacro",
  9958. height: math.unit(10, "miles")
  9959. },
  9960. {
  9961. name: "Planetary Launch",
  9962. height: math.unit(500, "miles")
  9963. },
  9964. {
  9965. name: "Interstellar",
  9966. height: math.unit(1e9, "miles")
  9967. },
  9968. {
  9969. name: "Leaving the Universe",
  9970. height: math.unit(1, "gigaparsec")
  9971. },
  9972. {
  9973. name: "Travelling Universes",
  9974. height: math.unit(30e15, "parsecs")
  9975. },
  9976. ]
  9977. ))
  9978. characterMakers.push(() => makeCharacter(
  9979. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9980. {
  9981. front: {
  9982. height: math.unit(6, "feet"),
  9983. weight: math.unit(150, "lb"),
  9984. name: "Front",
  9985. image: {
  9986. source: "./media/characters/odyssey/front.svg",
  9987. extra: 1782 / 1582,
  9988. bottom: 0.01
  9989. }
  9990. },
  9991. side: {
  9992. height: math.unit(5.7, "feet"),
  9993. weight: math.unit(140, "lb"),
  9994. name: "Side",
  9995. image: {
  9996. source: "./media/characters/odyssey/side.svg",
  9997. extra: 6462 / 5700
  9998. }
  9999. },
  10000. },
  10001. [
  10002. {
  10003. name: "Normal",
  10004. height: math.unit(5 + 4 / 12, "feet")
  10005. },
  10006. {
  10007. name: "Macro",
  10008. height: math.unit(1, "km")
  10009. },
  10010. {
  10011. name: "Megamacro",
  10012. height: math.unit(3000, "km")
  10013. },
  10014. {
  10015. name: "Gigamacro",
  10016. height: math.unit(1, "AU"),
  10017. default: true
  10018. },
  10019. {
  10020. name: "Omniversal",
  10021. height: math.unit(100e14, "lightyears")
  10022. },
  10023. ]
  10024. ))
  10025. characterMakers.push(() => makeCharacter(
  10026. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10027. {
  10028. front: {
  10029. height: math.unit(6, "feet"),
  10030. weight: math.unit(300, "lb"),
  10031. name: "Front",
  10032. image: {
  10033. source: "./media/characters/mekuto/front.svg",
  10034. extra: 921 / 832,
  10035. bottom: 0.03
  10036. }
  10037. },
  10038. hand: {
  10039. height: math.unit(6 / 10.24, "feet"),
  10040. name: "Hand",
  10041. image: {
  10042. source: "./media/characters/mekuto/hand.svg"
  10043. }
  10044. },
  10045. foot: {
  10046. height: math.unit(6 / 5.05, "feet"),
  10047. name: "Foot",
  10048. image: {
  10049. source: "./media/characters/mekuto/foot.svg"
  10050. }
  10051. },
  10052. },
  10053. [
  10054. {
  10055. name: "Minimicro",
  10056. height: math.unit(0.2, "inches")
  10057. },
  10058. {
  10059. name: "Micro",
  10060. height: math.unit(1.5, "inches")
  10061. },
  10062. {
  10063. name: "Normal",
  10064. height: math.unit(5 + 11 / 12, "feet"),
  10065. default: true
  10066. },
  10067. {
  10068. name: "Minimacro",
  10069. height: math.unit(17 + 9 / 12, "feet")
  10070. },
  10071. {
  10072. name: "Macro",
  10073. height: math.unit(177.5, "feet")
  10074. },
  10075. {
  10076. name: "Megamacro",
  10077. height: math.unit(152, "miles")
  10078. },
  10079. ]
  10080. ))
  10081. characterMakers.push(() => makeCharacter(
  10082. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10083. {
  10084. front: {
  10085. height: math.unit(6.5, "inches"),
  10086. weight: math.unit(13, "oz"),
  10087. name: "Front",
  10088. image: {
  10089. source: "./media/characters/dafydd-tomos/front.svg",
  10090. extra: 2990 / 2603,
  10091. bottom: 0.03
  10092. }
  10093. },
  10094. },
  10095. [
  10096. {
  10097. name: "Micro",
  10098. height: math.unit(6.5, "inches"),
  10099. default: true
  10100. },
  10101. ]
  10102. ))
  10103. characterMakers.push(() => makeCharacter(
  10104. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10105. {
  10106. front: {
  10107. height: math.unit(6, "feet"),
  10108. weight: math.unit(150, "lb"),
  10109. name: "Front",
  10110. image: {
  10111. source: "./media/characters/splinter/front.svg",
  10112. extra: 2990 / 2882,
  10113. bottom: 0.04
  10114. }
  10115. },
  10116. back: {
  10117. height: math.unit(6, "feet"),
  10118. weight: math.unit(150, "lb"),
  10119. name: "Back",
  10120. image: {
  10121. source: "./media/characters/splinter/back.svg",
  10122. extra: 2990 / 2882,
  10123. bottom: 0.04
  10124. }
  10125. },
  10126. },
  10127. [
  10128. {
  10129. name: "Normal",
  10130. height: math.unit(6, "feet")
  10131. },
  10132. {
  10133. name: "Macro",
  10134. height: math.unit(230, "meters"),
  10135. default: true
  10136. },
  10137. ]
  10138. ))
  10139. characterMakers.push(() => makeCharacter(
  10140. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10141. {
  10142. front: {
  10143. height: math.unit(4 + 10 / 12, "feet"),
  10144. weight: math.unit(480, "lb"),
  10145. name: "Front",
  10146. image: {
  10147. source: "./media/characters/snow-gabumon/front.svg",
  10148. extra: 1140 / 963,
  10149. bottom: 0.058
  10150. }
  10151. },
  10152. back: {
  10153. height: math.unit(4 + 10 / 12, "feet"),
  10154. weight: math.unit(480, "lb"),
  10155. name: "Back",
  10156. image: {
  10157. source: "./media/characters/snow-gabumon/back.svg",
  10158. extra: 1115 / 962,
  10159. bottom: 0.041
  10160. }
  10161. },
  10162. frontUndresed: {
  10163. height: math.unit(4 + 10 / 12, "feet"),
  10164. weight: math.unit(480, "lb"),
  10165. name: "Front (Undressed)",
  10166. image: {
  10167. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10168. extra: 1061 / 960,
  10169. bottom: 0.045
  10170. }
  10171. },
  10172. },
  10173. [
  10174. {
  10175. name: "Micro",
  10176. height: math.unit(1, "inch")
  10177. },
  10178. {
  10179. name: "Normal",
  10180. height: math.unit(4 + 10 / 12, "feet"),
  10181. default: true
  10182. },
  10183. {
  10184. name: "Macro",
  10185. height: math.unit(200, "feet")
  10186. },
  10187. {
  10188. name: "Megamacro",
  10189. height: math.unit(120, "miles")
  10190. },
  10191. {
  10192. name: "Gigamacro",
  10193. height: math.unit(9800, "miles")
  10194. },
  10195. ]
  10196. ))
  10197. characterMakers.push(() => makeCharacter(
  10198. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10199. {
  10200. front: {
  10201. height: math.unit(1.7, "meters"),
  10202. weight: math.unit(140, "lb"),
  10203. name: "Front",
  10204. image: {
  10205. source: "./media/characters/moody/front.svg",
  10206. extra: 3226 / 3007,
  10207. bottom: 0.087
  10208. }
  10209. },
  10210. },
  10211. [
  10212. {
  10213. name: "Micro",
  10214. height: math.unit(1, "mm")
  10215. },
  10216. {
  10217. name: "Normal",
  10218. height: math.unit(1.7, "meters"),
  10219. default: true
  10220. },
  10221. {
  10222. name: "Macro",
  10223. height: math.unit(80, "meters")
  10224. },
  10225. {
  10226. name: "Macro+",
  10227. height: math.unit(500, "meters")
  10228. },
  10229. ]
  10230. ))
  10231. characterMakers.push(() => makeCharacter(
  10232. { name: "Zyas", species: ["lion", "tiger"], 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/zyas/front.svg",
  10240. extra: 1180 / 1120,
  10241. bottom: 0.045
  10242. }
  10243. },
  10244. },
  10245. [
  10246. {
  10247. name: "Normal",
  10248. height: math.unit(10, "feet"),
  10249. default: true
  10250. },
  10251. {
  10252. name: "Macro",
  10253. height: math.unit(500, "feet")
  10254. },
  10255. {
  10256. name: "Megamacro",
  10257. height: math.unit(5, "miles")
  10258. },
  10259. {
  10260. name: "Teramacro",
  10261. height: math.unit(150000, "miles")
  10262. },
  10263. ]
  10264. ))
  10265. characterMakers.push(() => makeCharacter(
  10266. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10267. {
  10268. front: {
  10269. height: math.unit(6, "feet"),
  10270. weight: math.unit(150, "lb"),
  10271. name: "Front",
  10272. image: {
  10273. source: "./media/characters/cuon/front.svg",
  10274. extra: 1390 / 1320,
  10275. bottom: 0.008
  10276. }
  10277. },
  10278. },
  10279. [
  10280. {
  10281. name: "Micro",
  10282. height: math.unit(3, "inches")
  10283. },
  10284. {
  10285. name: "Normal",
  10286. height: math.unit(18 + 9 / 12, "feet"),
  10287. default: true
  10288. },
  10289. {
  10290. name: "Macro",
  10291. height: math.unit(360, "feet")
  10292. },
  10293. {
  10294. name: "Megamacro",
  10295. height: math.unit(360, "miles")
  10296. },
  10297. ]
  10298. ))
  10299. characterMakers.push(() => makeCharacter(
  10300. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10301. {
  10302. front: {
  10303. height: math.unit(2.4, "meters"),
  10304. weight: math.unit(70, "kg"),
  10305. name: "Front",
  10306. image: {
  10307. source: "./media/characters/nyanuxk/front.svg",
  10308. extra: 1172 / 1084,
  10309. bottom: 0.065
  10310. }
  10311. },
  10312. side: {
  10313. height: math.unit(2.4, "meters"),
  10314. weight: math.unit(70, "kg"),
  10315. name: "Side",
  10316. image: {
  10317. source: "./media/characters/nyanuxk/side.svg",
  10318. extra: 1190 / 1132,
  10319. bottom: 0.007
  10320. }
  10321. },
  10322. back: {
  10323. height: math.unit(2.4, "meters"),
  10324. weight: math.unit(70, "kg"),
  10325. name: "Back",
  10326. image: {
  10327. source: "./media/characters/nyanuxk/back.svg",
  10328. extra: 1200 / 1141,
  10329. bottom: 0.015
  10330. }
  10331. },
  10332. foot: {
  10333. height: math.unit(0.52, "meters"),
  10334. name: "Foot",
  10335. image: {
  10336. source: "./media/characters/nyanuxk/foot.svg"
  10337. }
  10338. },
  10339. },
  10340. [
  10341. {
  10342. name: "Micro",
  10343. height: math.unit(2, "cm")
  10344. },
  10345. {
  10346. name: "Normal",
  10347. height: math.unit(2.4, "meters"),
  10348. default: true
  10349. },
  10350. {
  10351. name: "Smaller Macro",
  10352. height: math.unit(120, "meters")
  10353. },
  10354. {
  10355. name: "Bigger Macro",
  10356. height: math.unit(1.2, "km")
  10357. },
  10358. {
  10359. name: "Megamacro",
  10360. height: math.unit(15, "kilometers")
  10361. },
  10362. {
  10363. name: "Gigamacro",
  10364. height: math.unit(2000, "km")
  10365. },
  10366. {
  10367. name: "Teramacro",
  10368. height: math.unit(500000, "km")
  10369. },
  10370. ]
  10371. ))
  10372. characterMakers.push(() => makeCharacter(
  10373. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10374. {
  10375. side: {
  10376. height: math.unit(6, "feet"),
  10377. name: "Side",
  10378. image: {
  10379. source: "./media/characters/ailbhe/side.svg",
  10380. extra: 757 / 464,
  10381. bottom: 0.041
  10382. }
  10383. },
  10384. },
  10385. [
  10386. {
  10387. name: "Normal",
  10388. height: math.unit(1.07, "meters"),
  10389. default: true
  10390. },
  10391. ]
  10392. ))
  10393. characterMakers.push(() => makeCharacter(
  10394. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10395. {
  10396. front: {
  10397. height: math.unit(6, "feet"),
  10398. weight: math.unit(120, "kg"),
  10399. name: "Front",
  10400. image: {
  10401. source: "./media/characters/zevulfius/front.svg",
  10402. extra: 965 / 903
  10403. }
  10404. },
  10405. side: {
  10406. height: math.unit(6, "feet"),
  10407. weight: math.unit(120, "kg"),
  10408. name: "Side",
  10409. image: {
  10410. source: "./media/characters/zevulfius/side.svg",
  10411. extra: 939 / 900
  10412. }
  10413. },
  10414. back: {
  10415. height: math.unit(6, "feet"),
  10416. weight: math.unit(120, "kg"),
  10417. name: "Back",
  10418. image: {
  10419. source: "./media/characters/zevulfius/back.svg",
  10420. extra: 918 / 854,
  10421. bottom: 0.005
  10422. }
  10423. },
  10424. foot: {
  10425. height: math.unit(6 / 3.72, "feet"),
  10426. name: "Foot",
  10427. image: {
  10428. source: "./media/characters/zevulfius/foot.svg"
  10429. }
  10430. },
  10431. },
  10432. [
  10433. {
  10434. name: "Macro",
  10435. height: math.unit(750, "meters")
  10436. },
  10437. {
  10438. name: "Megamacro",
  10439. height: math.unit(20, "km"),
  10440. default: true
  10441. },
  10442. {
  10443. name: "Gigamacro",
  10444. height: math.unit(2000, "km")
  10445. },
  10446. {
  10447. name: "Teramacro",
  10448. height: math.unit(250000, "km")
  10449. },
  10450. ]
  10451. ))
  10452. characterMakers.push(() => makeCharacter(
  10453. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10454. {
  10455. front: {
  10456. height: math.unit(100, "feet"),
  10457. weight: math.unit(350, "kg"),
  10458. name: "Front",
  10459. image: {
  10460. source: "./media/characters/rikes/front.svg",
  10461. extra: 1565 / 1483,
  10462. bottom: 0.017
  10463. }
  10464. },
  10465. },
  10466. [
  10467. {
  10468. name: "Macro",
  10469. height: math.unit(100, "feet"),
  10470. default: true
  10471. },
  10472. ]
  10473. ))
  10474. characterMakers.push(() => makeCharacter(
  10475. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10476. {
  10477. front: {
  10478. height: math.unit(8, "feet"),
  10479. weight: math.unit(356, "lb"),
  10480. name: "Front",
  10481. image: {
  10482. source: "./media/characters/adam-silver-mane/front.svg",
  10483. extra: 1036/937,
  10484. bottom: 63/1099
  10485. }
  10486. },
  10487. side: {
  10488. height: math.unit(8, "feet"),
  10489. weight: math.unit(356, "lb"),
  10490. name: "Side",
  10491. image: {
  10492. source: "./media/characters/adam-silver-mane/side.svg",
  10493. extra: 997/901,
  10494. bottom: 59/1056
  10495. }
  10496. },
  10497. frontNsfw: {
  10498. height: math.unit(8, "feet"),
  10499. weight: math.unit(356, "lb"),
  10500. name: "Front (NSFW)",
  10501. image: {
  10502. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10503. extra: 1036/937,
  10504. bottom: 63/1099
  10505. }
  10506. },
  10507. sideNsfw: {
  10508. height: math.unit(8, "feet"),
  10509. weight: math.unit(356, "lb"),
  10510. name: "Side (NSFW)",
  10511. image: {
  10512. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10513. extra: 997/901,
  10514. bottom: 59/1056
  10515. }
  10516. },
  10517. dick: {
  10518. height: math.unit(2.1, "feet"),
  10519. name: "Dick",
  10520. image: {
  10521. source: "./media/characters/adam-silver-mane/dick.svg"
  10522. }
  10523. },
  10524. taur: {
  10525. height: math.unit(16, "feet"),
  10526. weight: math.unit(1500, "kg"),
  10527. name: "Taur",
  10528. image: {
  10529. source: "./media/characters/adam-silver-mane/taur.svg",
  10530. extra: 1713 / 1571,
  10531. bottom: 0.01
  10532. }
  10533. },
  10534. },
  10535. [
  10536. {
  10537. name: "Normal",
  10538. height: math.unit(8, "feet")
  10539. },
  10540. {
  10541. name: "Minimacro",
  10542. height: math.unit(80, "feet")
  10543. },
  10544. {
  10545. name: "MDA",
  10546. height: math.unit(80, "meters")
  10547. },
  10548. {
  10549. name: "Macro",
  10550. height: math.unit(800, "feet"),
  10551. default: true
  10552. },
  10553. {
  10554. name: "Megamacro",
  10555. height: math.unit(8000, "feet")
  10556. },
  10557. {
  10558. name: "Gigamacro",
  10559. height: math.unit(800, "miles")
  10560. },
  10561. {
  10562. name: "Teramacro",
  10563. height: math.unit(80000, "miles")
  10564. },
  10565. {
  10566. name: "Celestial",
  10567. height: math.unit(8e6, "miles")
  10568. },
  10569. {
  10570. name: "Star Dragon",
  10571. height: math.unit(800000, "parsecs")
  10572. },
  10573. {
  10574. name: "Godly",
  10575. height: math.unit(800, "teraparsecs")
  10576. },
  10577. ]
  10578. ))
  10579. characterMakers.push(() => makeCharacter(
  10580. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10581. {
  10582. front: {
  10583. height: math.unit(6, "feet"),
  10584. weight: math.unit(150, "lb"),
  10585. name: "Front",
  10586. image: {
  10587. source: "./media/characters/ky'owin/front.svg",
  10588. extra: 3888 / 3068,
  10589. bottom: 0.015
  10590. }
  10591. },
  10592. },
  10593. [
  10594. {
  10595. name: "Normal",
  10596. height: math.unit(6 + 8 / 12, "feet")
  10597. },
  10598. {
  10599. name: "Large",
  10600. height: math.unit(68, "feet")
  10601. },
  10602. {
  10603. name: "Macro",
  10604. height: math.unit(132, "feet")
  10605. },
  10606. {
  10607. name: "Macro+",
  10608. height: math.unit(340, "feet")
  10609. },
  10610. {
  10611. name: "Macro++",
  10612. height: math.unit(680, "feet"),
  10613. default: true
  10614. },
  10615. {
  10616. name: "Megamacro",
  10617. height: math.unit(1, "mile")
  10618. },
  10619. {
  10620. name: "Megamacro+",
  10621. height: math.unit(10, "miles")
  10622. },
  10623. ]
  10624. ))
  10625. characterMakers.push(() => makeCharacter(
  10626. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10627. {
  10628. front: {
  10629. height: math.unit(4, "feet"),
  10630. weight: math.unit(50, "lb"),
  10631. name: "Front",
  10632. image: {
  10633. source: "./media/characters/mal/front.svg",
  10634. extra: 785 / 724,
  10635. bottom: 0.07
  10636. }
  10637. },
  10638. },
  10639. [
  10640. {
  10641. name: "Micro",
  10642. height: math.unit(4, "inches")
  10643. },
  10644. {
  10645. name: "Normal",
  10646. height: math.unit(4, "feet"),
  10647. default: true
  10648. },
  10649. {
  10650. name: "Macro",
  10651. height: math.unit(200, "feet")
  10652. },
  10653. ]
  10654. ))
  10655. characterMakers.push(() => makeCharacter(
  10656. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10657. {
  10658. front: {
  10659. height: math.unit(6, "feet"),
  10660. weight: math.unit(150, "lb"),
  10661. name: "Front",
  10662. image: {
  10663. source: "./media/characters/jordan-deware/front.svg",
  10664. extra: 1191 / 1012
  10665. }
  10666. },
  10667. },
  10668. [
  10669. {
  10670. name: "Nano",
  10671. height: math.unit(0.01, "mm")
  10672. },
  10673. {
  10674. name: "Minimicro",
  10675. height: math.unit(1, "mm")
  10676. },
  10677. {
  10678. name: "Micro",
  10679. height: math.unit(0.5, "inches")
  10680. },
  10681. {
  10682. name: "Normal",
  10683. height: math.unit(4, "feet"),
  10684. default: true
  10685. },
  10686. {
  10687. name: "Minimacro",
  10688. height: math.unit(40, "meters")
  10689. },
  10690. {
  10691. name: "Small Macro",
  10692. height: math.unit(400, "meters")
  10693. },
  10694. {
  10695. name: "Macro",
  10696. height: math.unit(4, "miles")
  10697. },
  10698. {
  10699. name: "Megamacro",
  10700. height: math.unit(40, "miles")
  10701. },
  10702. {
  10703. name: "Megamacro+",
  10704. height: math.unit(400, "miles")
  10705. },
  10706. {
  10707. name: "Gigamacro",
  10708. height: math.unit(400000, "miles")
  10709. },
  10710. ]
  10711. ))
  10712. characterMakers.push(() => makeCharacter(
  10713. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10714. {
  10715. side: {
  10716. height: math.unit(6, "feet"),
  10717. weight: math.unit(150, "lb"),
  10718. name: "Side",
  10719. image: {
  10720. source: "./media/characters/kimiko/side.svg",
  10721. extra: 600 / 358
  10722. }
  10723. },
  10724. },
  10725. [
  10726. {
  10727. name: "Normal",
  10728. height: math.unit(15, "feet"),
  10729. default: true
  10730. },
  10731. {
  10732. name: "Macro",
  10733. height: math.unit(220, "feet")
  10734. },
  10735. {
  10736. name: "Macro+",
  10737. height: math.unit(1450, "feet")
  10738. },
  10739. {
  10740. name: "Megamacro",
  10741. height: math.unit(11500, "feet")
  10742. },
  10743. {
  10744. name: "Gigamacro",
  10745. height: math.unit(9500, "miles")
  10746. },
  10747. {
  10748. name: "Teramacro",
  10749. height: math.unit(2208005005, "miles")
  10750. },
  10751. {
  10752. name: "Examacro",
  10753. height: math.unit(2750, "parsecs")
  10754. },
  10755. {
  10756. name: "Zettamacro",
  10757. height: math.unit(101500, "parsecs")
  10758. },
  10759. ]
  10760. ))
  10761. characterMakers.push(() => makeCharacter(
  10762. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10763. {
  10764. front: {
  10765. height: math.unit(6, "feet"),
  10766. weight: math.unit(70, "kg"),
  10767. name: "Front",
  10768. image: {
  10769. source: "./media/characters/andrew-sleepy/front.svg"
  10770. }
  10771. },
  10772. side: {
  10773. height: math.unit(6, "feet"),
  10774. weight: math.unit(70, "kg"),
  10775. name: "Side",
  10776. image: {
  10777. source: "./media/characters/andrew-sleepy/side.svg"
  10778. }
  10779. },
  10780. },
  10781. [
  10782. {
  10783. name: "Micro",
  10784. height: math.unit(1, "mm"),
  10785. default: true
  10786. },
  10787. ]
  10788. ))
  10789. characterMakers.push(() => makeCharacter(
  10790. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10791. {
  10792. front: {
  10793. height: math.unit(6, "feet"),
  10794. weight: math.unit(150, "lb"),
  10795. name: "Front",
  10796. image: {
  10797. source: "./media/characters/judio/front.svg",
  10798. extra: 1258 / 1110
  10799. }
  10800. },
  10801. },
  10802. [
  10803. {
  10804. name: "Normal",
  10805. height: math.unit(5 + 6 / 12, "feet")
  10806. },
  10807. {
  10808. name: "Macro",
  10809. height: math.unit(1000, "feet"),
  10810. default: true
  10811. },
  10812. {
  10813. name: "Megamacro",
  10814. height: math.unit(10, "miles")
  10815. },
  10816. ]
  10817. ))
  10818. characterMakers.push(() => makeCharacter(
  10819. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10820. {
  10821. front: {
  10822. height: math.unit(6, "feet"),
  10823. weight: math.unit(68, "kg"),
  10824. name: "Front",
  10825. image: {
  10826. source: "./media/characters/nomaxice/front.svg",
  10827. extra: 1498 / 1073,
  10828. bottom: 0.075
  10829. }
  10830. },
  10831. foot: {
  10832. height: math.unit(1.1, "feet"),
  10833. name: "Foot",
  10834. image: {
  10835. source: "./media/characters/nomaxice/foot.svg"
  10836. }
  10837. },
  10838. },
  10839. [
  10840. {
  10841. name: "Micro",
  10842. height: math.unit(8, "cm")
  10843. },
  10844. {
  10845. name: "Norm",
  10846. height: math.unit(1.82, "m")
  10847. },
  10848. {
  10849. name: "Norm+",
  10850. height: math.unit(8.8, "feet")
  10851. },
  10852. {
  10853. name: "Big",
  10854. height: math.unit(8, "meters"),
  10855. default: true
  10856. },
  10857. {
  10858. name: "Macro",
  10859. height: math.unit(18, "meters")
  10860. },
  10861. {
  10862. name: "Macro+",
  10863. height: math.unit(88, "meters")
  10864. },
  10865. ]
  10866. ))
  10867. characterMakers.push(() => makeCharacter(
  10868. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10869. {
  10870. front: {
  10871. height: math.unit(12, "feet"),
  10872. weight: math.unit(1.5, "tons"),
  10873. name: "Front",
  10874. image: {
  10875. source: "./media/characters/dydros/front.svg",
  10876. extra: 863 / 800,
  10877. bottom: 0.015
  10878. }
  10879. },
  10880. back: {
  10881. height: math.unit(12, "feet"),
  10882. weight: math.unit(1.5, "tons"),
  10883. name: "Back",
  10884. image: {
  10885. source: "./media/characters/dydros/back.svg",
  10886. extra: 900 / 843,
  10887. bottom: 0.005
  10888. }
  10889. },
  10890. },
  10891. [
  10892. {
  10893. name: "Normal",
  10894. height: math.unit(12, "feet"),
  10895. default: true
  10896. },
  10897. ]
  10898. ))
  10899. characterMakers.push(() => makeCharacter(
  10900. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10901. {
  10902. front: {
  10903. height: math.unit(6, "feet"),
  10904. weight: math.unit(100, "kg"),
  10905. name: "Front",
  10906. image: {
  10907. source: "./media/characters/riggi/front.svg",
  10908. extra: 5787 / 5303
  10909. }
  10910. },
  10911. hyper: {
  10912. height: math.unit(6 * 5 / 3, "feet"),
  10913. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10914. name: "Hyper",
  10915. image: {
  10916. source: "./media/characters/riggi/hyper.svg",
  10917. extra: 3595 / 3485
  10918. }
  10919. },
  10920. },
  10921. [
  10922. {
  10923. name: "Small Macro",
  10924. height: math.unit(50, "feet")
  10925. },
  10926. {
  10927. name: "Default",
  10928. height: math.unit(200, "feet"),
  10929. default: true
  10930. },
  10931. {
  10932. name: "Loom",
  10933. height: math.unit(10000, "feet")
  10934. },
  10935. {
  10936. name: "Cruising Altitude",
  10937. height: math.unit(30000, "feet")
  10938. },
  10939. {
  10940. name: "Megamacro",
  10941. height: math.unit(100, "miles")
  10942. },
  10943. {
  10944. name: "Continent Sized",
  10945. height: math.unit(2800, "miles")
  10946. },
  10947. {
  10948. name: "Earth Sized",
  10949. height: math.unit(8000, "miles")
  10950. },
  10951. ]
  10952. ))
  10953. characterMakers.push(() => makeCharacter(
  10954. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10955. {
  10956. front: {
  10957. height: math.unit(6, "feet"),
  10958. weight: math.unit(250, "lb"),
  10959. name: "Front",
  10960. image: {
  10961. source: "./media/characters/alexi/front.svg",
  10962. extra: 3483 / 3291,
  10963. bottom: 0.04
  10964. }
  10965. },
  10966. back: {
  10967. height: math.unit(6, "feet"),
  10968. weight: math.unit(250, "lb"),
  10969. name: "Back",
  10970. image: {
  10971. source: "./media/characters/alexi/back.svg",
  10972. extra: 3533 / 3356,
  10973. bottom: 0.021
  10974. }
  10975. },
  10976. frontTransforming: {
  10977. height: math.unit(8.58, "feet"),
  10978. weight: math.unit(1300, "lb"),
  10979. name: "Transforming",
  10980. image: {
  10981. source: "./media/characters/alexi/front-transforming.svg",
  10982. extra: 437 / 409,
  10983. bottom: 19 / 458.66
  10984. }
  10985. },
  10986. frontTransformed: {
  10987. height: math.unit(12.5, "feet"),
  10988. weight: math.unit(4000, "lb"),
  10989. name: "Transformed",
  10990. image: {
  10991. source: "./media/characters/alexi/front-transformed.svg",
  10992. extra: 639 / 614,
  10993. bottom: 30.55 / 671
  10994. }
  10995. },
  10996. },
  10997. [
  10998. {
  10999. name: "Normal",
  11000. height: math.unit(14, "feet"),
  11001. default: true
  11002. },
  11003. {
  11004. name: "Minimacro",
  11005. height: math.unit(30, "meters")
  11006. },
  11007. {
  11008. name: "Macro",
  11009. height: math.unit(500, "meters")
  11010. },
  11011. {
  11012. name: "Megamacro",
  11013. height: math.unit(9000, "km")
  11014. },
  11015. {
  11016. name: "Teramacro",
  11017. height: math.unit(384000, "km")
  11018. },
  11019. ]
  11020. ))
  11021. characterMakers.push(() => makeCharacter(
  11022. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11023. {
  11024. front: {
  11025. height: math.unit(6, "feet"),
  11026. weight: math.unit(150, "lb"),
  11027. name: "Front",
  11028. image: {
  11029. source: "./media/characters/kayroo/front.svg",
  11030. extra: 1153 / 1038,
  11031. bottom: 0.06
  11032. }
  11033. },
  11034. foot: {
  11035. height: math.unit(6, "feet"),
  11036. weight: math.unit(150, "lb"),
  11037. name: "Foot",
  11038. image: {
  11039. source: "./media/characters/kayroo/foot.svg"
  11040. }
  11041. },
  11042. },
  11043. [
  11044. {
  11045. name: "Normal",
  11046. height: math.unit(8, "feet"),
  11047. default: true
  11048. },
  11049. {
  11050. name: "Minimacro",
  11051. height: math.unit(250, "feet")
  11052. },
  11053. {
  11054. name: "Macro",
  11055. height: math.unit(2800, "feet")
  11056. },
  11057. {
  11058. name: "Megamacro",
  11059. height: math.unit(5200, "feet")
  11060. },
  11061. {
  11062. name: "Gigamacro",
  11063. height: math.unit(27000, "feet")
  11064. },
  11065. {
  11066. name: "Omega",
  11067. height: math.unit(45000, "feet")
  11068. },
  11069. ]
  11070. ))
  11071. characterMakers.push(() => makeCharacter(
  11072. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11073. {
  11074. front: {
  11075. height: math.unit(18, "feet"),
  11076. weight: math.unit(5800, "lb"),
  11077. name: "Front",
  11078. image: {
  11079. source: "./media/characters/rhys/front.svg",
  11080. extra: 3386 / 3090,
  11081. bottom: 0.07
  11082. }
  11083. },
  11084. },
  11085. [
  11086. {
  11087. name: "Normal",
  11088. height: math.unit(18, "feet"),
  11089. default: true
  11090. },
  11091. {
  11092. name: "Working Size",
  11093. height: math.unit(200, "feet")
  11094. },
  11095. {
  11096. name: "Demolition Size",
  11097. height: math.unit(2000, "feet")
  11098. },
  11099. {
  11100. name: "Maximum Licensed Size",
  11101. height: math.unit(5, "miles")
  11102. },
  11103. {
  11104. name: "Maximum Observed Size",
  11105. height: math.unit(10, "yottameters")
  11106. },
  11107. ]
  11108. ))
  11109. characterMakers.push(() => makeCharacter(
  11110. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11111. {
  11112. front: {
  11113. height: math.unit(6, "feet"),
  11114. weight: math.unit(250, "lb"),
  11115. name: "Front",
  11116. image: {
  11117. source: "./media/characters/toto/front.svg",
  11118. extra: 527 / 479,
  11119. bottom: 0.05
  11120. }
  11121. },
  11122. },
  11123. [
  11124. {
  11125. name: "Micro",
  11126. height: math.unit(3, "feet")
  11127. },
  11128. {
  11129. name: "Normal",
  11130. height: math.unit(10, "feet")
  11131. },
  11132. {
  11133. name: "Macro",
  11134. height: math.unit(150, "feet"),
  11135. default: true
  11136. },
  11137. {
  11138. name: "Megamacro",
  11139. height: math.unit(1200, "feet")
  11140. },
  11141. ]
  11142. ))
  11143. characterMakers.push(() => makeCharacter(
  11144. { name: "King", species: ["lion"], tags: ["anthro"] },
  11145. {
  11146. back: {
  11147. height: math.unit(6, "feet"),
  11148. weight: math.unit(150, "lb"),
  11149. name: "Back",
  11150. image: {
  11151. source: "./media/characters/king/back.svg"
  11152. }
  11153. },
  11154. },
  11155. [
  11156. {
  11157. name: "Micro",
  11158. height: math.unit(2, "inches")
  11159. },
  11160. {
  11161. name: "Normal",
  11162. height: math.unit(8, "feet")
  11163. },
  11164. {
  11165. name: "Macro",
  11166. height: math.unit(200, "feet"),
  11167. default: true
  11168. },
  11169. {
  11170. name: "Megamacro",
  11171. height: math.unit(50, "miles")
  11172. },
  11173. ]
  11174. ))
  11175. characterMakers.push(() => makeCharacter(
  11176. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11177. {
  11178. front: {
  11179. height: math.unit(11, "feet"),
  11180. weight: math.unit(1400, "lb"),
  11181. name: "Front",
  11182. image: {
  11183. source: "./media/characters/cordite/front.svg",
  11184. extra: 1919/1827,
  11185. bottom: 40/1959
  11186. }
  11187. },
  11188. side: {
  11189. height: math.unit(11, "feet"),
  11190. weight: math.unit(1400, "lb"),
  11191. name: "Side",
  11192. image: {
  11193. source: "./media/characters/cordite/side.svg",
  11194. extra: 1908/1793,
  11195. bottom: 38/1946
  11196. }
  11197. },
  11198. back: {
  11199. height: math.unit(11, "feet"),
  11200. weight: math.unit(1400, "lb"),
  11201. name: "Back",
  11202. image: {
  11203. source: "./media/characters/cordite/back.svg",
  11204. extra: 1938/1837,
  11205. bottom: 10/1948
  11206. }
  11207. },
  11208. feral: {
  11209. height: math.unit(2, "feet"),
  11210. weight: math.unit(90, "lb"),
  11211. name: "Feral",
  11212. image: {
  11213. source: "./media/characters/cordite/feral.svg",
  11214. extra: 1260 / 755,
  11215. bottom: 0.05
  11216. }
  11217. },
  11218. },
  11219. [
  11220. {
  11221. name: "Normal",
  11222. height: math.unit(11, "feet"),
  11223. default: true
  11224. },
  11225. ]
  11226. ))
  11227. characterMakers.push(() => makeCharacter(
  11228. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11229. {
  11230. front: {
  11231. height: math.unit(6, "feet"),
  11232. weight: math.unit(150, "lb"),
  11233. name: "Front",
  11234. image: {
  11235. source: "./media/characters/pianostrong/front.svg",
  11236. extra: 6577 / 6254,
  11237. bottom: 0.02
  11238. }
  11239. },
  11240. side: {
  11241. height: math.unit(6, "feet"),
  11242. weight: math.unit(150, "lb"),
  11243. name: "Side",
  11244. image: {
  11245. source: "./media/characters/pianostrong/side.svg",
  11246. extra: 6106 / 5730
  11247. }
  11248. },
  11249. back: {
  11250. height: math.unit(6, "feet"),
  11251. weight: math.unit(150, "lb"),
  11252. name: "Back",
  11253. image: {
  11254. source: "./media/characters/pianostrong/back.svg",
  11255. extra: 6085 / 5733,
  11256. bottom: 0.01
  11257. }
  11258. },
  11259. },
  11260. [
  11261. {
  11262. name: "Macro",
  11263. height: math.unit(100, "feet")
  11264. },
  11265. {
  11266. name: "Macro+",
  11267. height: math.unit(300, "feet"),
  11268. default: true
  11269. },
  11270. {
  11271. name: "Macro++",
  11272. height: math.unit(1000, "feet")
  11273. },
  11274. ]
  11275. ))
  11276. characterMakers.push(() => makeCharacter(
  11277. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11278. {
  11279. front: {
  11280. height: math.unit(6, "feet"),
  11281. weight: math.unit(150, "lb"),
  11282. name: "Front",
  11283. image: {
  11284. source: "./media/characters/kona/front.svg",
  11285. extra: 2960 / 2629,
  11286. bottom: 0.005
  11287. }
  11288. },
  11289. },
  11290. [
  11291. {
  11292. name: "Normal",
  11293. height: math.unit(11 + 8 / 12, "feet")
  11294. },
  11295. {
  11296. name: "Macro",
  11297. height: math.unit(850, "feet"),
  11298. default: true
  11299. },
  11300. {
  11301. name: "Macro+",
  11302. height: math.unit(1.5, "km"),
  11303. default: true
  11304. },
  11305. {
  11306. name: "Megamacro",
  11307. height: math.unit(80, "miles")
  11308. },
  11309. {
  11310. name: "Gigamacro",
  11311. height: math.unit(3500, "miles")
  11312. },
  11313. ]
  11314. ))
  11315. characterMakers.push(() => makeCharacter(
  11316. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11317. {
  11318. side: {
  11319. height: math.unit(1.9, "meters"),
  11320. weight: math.unit(326, "kg"),
  11321. name: "Side",
  11322. image: {
  11323. source: "./media/characters/levi/side.svg",
  11324. extra: 1704 / 1334,
  11325. bottom: 0.02
  11326. }
  11327. },
  11328. },
  11329. [
  11330. {
  11331. name: "Normal",
  11332. height: math.unit(1.9, "meters"),
  11333. default: true
  11334. },
  11335. {
  11336. name: "Macro",
  11337. height: math.unit(20, "meters")
  11338. },
  11339. {
  11340. name: "Macro+",
  11341. height: math.unit(200, "meters")
  11342. },
  11343. {
  11344. name: "Megamacro",
  11345. height: math.unit(2, "km")
  11346. },
  11347. {
  11348. name: "Megamacro+",
  11349. height: math.unit(20, "km")
  11350. },
  11351. {
  11352. name: "Gigamacro",
  11353. height: math.unit(2500, "km")
  11354. },
  11355. {
  11356. name: "Gigamacro+",
  11357. height: math.unit(120000, "km")
  11358. },
  11359. {
  11360. name: "Teramacro",
  11361. height: math.unit(7.77e6, "km")
  11362. },
  11363. ]
  11364. ))
  11365. characterMakers.push(() => makeCharacter(
  11366. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11367. {
  11368. front: {
  11369. height: math.unit(6 + 4/12, "feet"),
  11370. weight: math.unit(190, "lb"),
  11371. name: "Front",
  11372. image: {
  11373. source: "./media/characters/bmc/front.svg",
  11374. extra: 1626/1472,
  11375. bottom: 79/1705
  11376. }
  11377. },
  11378. back: {
  11379. height: math.unit(6 + 4/12, "feet"),
  11380. weight: math.unit(190, "lb"),
  11381. name: "Back",
  11382. image: {
  11383. source: "./media/characters/bmc/back.svg",
  11384. extra: 1640/1479,
  11385. bottom: 45/1685
  11386. }
  11387. },
  11388. frontArmor: {
  11389. height: math.unit(6 + 4/12, "feet"),
  11390. weight: math.unit(190, "lb"),
  11391. name: "Front-armor",
  11392. image: {
  11393. source: "./media/characters/bmc/front-armor.svg",
  11394. extra: 1538/1468,
  11395. bottom: 79/1617
  11396. }
  11397. },
  11398. },
  11399. [
  11400. {
  11401. name: "Human-sized",
  11402. height: math.unit(6 + 4 / 12, "feet")
  11403. },
  11404. {
  11405. name: "Interactive Size",
  11406. height: math.unit(25, "feet")
  11407. },
  11408. {
  11409. name: "Small",
  11410. height: math.unit(250, "feet")
  11411. },
  11412. {
  11413. name: "Normal",
  11414. height: math.unit(1250, "feet"),
  11415. default: true
  11416. },
  11417. {
  11418. name: "Good Day",
  11419. height: math.unit(88, "miles")
  11420. },
  11421. {
  11422. name: "Largest Measured Size",
  11423. height: math.unit(105.960, "galaxies")
  11424. },
  11425. ]
  11426. ))
  11427. characterMakers.push(() => makeCharacter(
  11428. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11429. {
  11430. front: {
  11431. height: math.unit(20, "feet"),
  11432. weight: math.unit(2016, "kg"),
  11433. name: "Front",
  11434. image: {
  11435. source: "./media/characters/sven-the-kaiju/front.svg",
  11436. extra: 1277/1250,
  11437. bottom: 35/1312
  11438. }
  11439. },
  11440. mouth: {
  11441. height: math.unit(1.85, "feet"),
  11442. name: "Mouth",
  11443. image: {
  11444. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11445. }
  11446. },
  11447. },
  11448. [
  11449. {
  11450. name: "Fairy",
  11451. height: math.unit(6, "inches")
  11452. },
  11453. {
  11454. name: "Normal",
  11455. height: math.unit(20, "feet"),
  11456. default: true
  11457. },
  11458. {
  11459. name: "Rampage",
  11460. height: math.unit(200, "feet")
  11461. },
  11462. {
  11463. name: "Archfey Forest Guardian",
  11464. height: math.unit(1, "mile")
  11465. },
  11466. ]
  11467. ))
  11468. characterMakers.push(() => makeCharacter(
  11469. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11470. {
  11471. front: {
  11472. height: math.unit(4, "meters"),
  11473. weight: math.unit(2, "tons"),
  11474. name: "Front",
  11475. image: {
  11476. source: "./media/characters/marik/front.svg",
  11477. extra: 1057 / 1003,
  11478. bottom: 0.08
  11479. }
  11480. },
  11481. },
  11482. [
  11483. {
  11484. name: "Normal",
  11485. height: math.unit(4, "meters"),
  11486. default: true
  11487. },
  11488. {
  11489. name: "Macro",
  11490. height: math.unit(20, "meters")
  11491. },
  11492. {
  11493. name: "Megamacro",
  11494. height: math.unit(50, "km")
  11495. },
  11496. {
  11497. name: "Gigamacro",
  11498. height: math.unit(100, "km")
  11499. },
  11500. {
  11501. name: "Alpha Macro",
  11502. height: math.unit(7.88e7, "yottameters")
  11503. },
  11504. ]
  11505. ))
  11506. characterMakers.push(() => makeCharacter(
  11507. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11508. {
  11509. front: {
  11510. height: math.unit(6, "feet"),
  11511. weight: math.unit(110, "lb"),
  11512. name: "Front",
  11513. image: {
  11514. source: "./media/characters/mel/front.svg",
  11515. extra: 736 / 617,
  11516. bottom: 0.017
  11517. }
  11518. },
  11519. },
  11520. [
  11521. {
  11522. name: "Pico",
  11523. height: math.unit(3, "pm")
  11524. },
  11525. {
  11526. name: "Nano",
  11527. height: math.unit(3, "nm")
  11528. },
  11529. {
  11530. name: "Micro",
  11531. height: math.unit(0.3, "mm"),
  11532. default: true
  11533. },
  11534. {
  11535. name: "Micro+",
  11536. height: math.unit(3, "mm")
  11537. },
  11538. {
  11539. name: "Normal",
  11540. height: math.unit(5 + 10.5 / 12, "feet")
  11541. },
  11542. ]
  11543. ))
  11544. characterMakers.push(() => makeCharacter(
  11545. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11546. {
  11547. kaiju: {
  11548. height: math.unit(1.75, "meters"),
  11549. weight: math.unit(55, "kg"),
  11550. name: "Kaiju",
  11551. image: {
  11552. source: "./media/characters/lykonous/kaiju.svg",
  11553. extra: 1055 / 946,
  11554. bottom: 0.135
  11555. }
  11556. },
  11557. },
  11558. [
  11559. {
  11560. name: "Normal",
  11561. height: math.unit(2.5, "meters"),
  11562. default: true
  11563. },
  11564. {
  11565. name: "Kaiju Dragon",
  11566. height: math.unit(60, "meters")
  11567. },
  11568. {
  11569. name: "Mega Kaiju",
  11570. height: math.unit(120, "km")
  11571. },
  11572. {
  11573. name: "Giga Kaiju",
  11574. height: math.unit(200, "megameters")
  11575. },
  11576. {
  11577. name: "Terra Kaiju",
  11578. height: math.unit(400, "gigameters")
  11579. },
  11580. {
  11581. name: "Kaiju Dragon God",
  11582. height: math.unit(13000, "exaparsecs")
  11583. },
  11584. ]
  11585. ))
  11586. characterMakers.push(() => makeCharacter(
  11587. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11588. {
  11589. front: {
  11590. height: math.unit(6, "feet"),
  11591. weight: math.unit(150, "lb"),
  11592. name: "Front",
  11593. image: {
  11594. source: "./media/characters/blü/front.svg",
  11595. extra: 1883 / 1564,
  11596. bottom: 0.031
  11597. }
  11598. },
  11599. },
  11600. [
  11601. {
  11602. name: "Normal",
  11603. height: math.unit(13, "feet"),
  11604. default: true
  11605. },
  11606. {
  11607. name: "Big Boi",
  11608. height: math.unit(150, "meters")
  11609. },
  11610. {
  11611. name: "Mini Stomper",
  11612. height: math.unit(300, "meters")
  11613. },
  11614. {
  11615. name: "Macro",
  11616. height: math.unit(1000, "meters")
  11617. },
  11618. {
  11619. name: "Megamacro",
  11620. height: math.unit(11000, "meters")
  11621. },
  11622. {
  11623. name: "Gigamacro",
  11624. height: math.unit(11000, "km")
  11625. },
  11626. {
  11627. name: "Teramacro",
  11628. height: math.unit(420000, "km")
  11629. },
  11630. {
  11631. name: "Examacro",
  11632. height: math.unit(120, "parsecs")
  11633. },
  11634. {
  11635. name: "God Tho",
  11636. height: math.unit(98000000000, "parsecs")
  11637. },
  11638. ]
  11639. ))
  11640. characterMakers.push(() => makeCharacter(
  11641. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11642. {
  11643. taurFront: {
  11644. height: math.unit(6, "feet"),
  11645. weight: math.unit(200, "lb"),
  11646. name: "Taur (Front)",
  11647. image: {
  11648. source: "./media/characters/scales/taur-front.svg",
  11649. extra: 1,
  11650. bottom: 0.05
  11651. }
  11652. },
  11653. taurBack: {
  11654. height: math.unit(6, "feet"),
  11655. weight: math.unit(200, "lb"),
  11656. name: "Taur (Back)",
  11657. image: {
  11658. source: "./media/characters/scales/taur-back.svg",
  11659. extra: 1,
  11660. bottom: 0.08
  11661. }
  11662. },
  11663. anthro: {
  11664. height: math.unit(6 * 7 / 12, "feet"),
  11665. weight: math.unit(100, "lb"),
  11666. name: "Anthro",
  11667. image: {
  11668. source: "./media/characters/scales/anthro.svg",
  11669. extra: 1,
  11670. bottom: 0.06
  11671. }
  11672. },
  11673. },
  11674. [
  11675. {
  11676. name: "Normal",
  11677. height: math.unit(12, "feet"),
  11678. default: true
  11679. },
  11680. ]
  11681. ))
  11682. characterMakers.push(() => makeCharacter(
  11683. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11684. {
  11685. front: {
  11686. height: math.unit(6, "feet"),
  11687. weight: math.unit(150, "lb"),
  11688. name: "Front",
  11689. image: {
  11690. source: "./media/characters/koragos/front.svg",
  11691. extra: 841 / 794,
  11692. bottom: 0.035
  11693. }
  11694. },
  11695. back: {
  11696. height: math.unit(6, "feet"),
  11697. weight: math.unit(150, "lb"),
  11698. name: "Back",
  11699. image: {
  11700. source: "./media/characters/koragos/back.svg",
  11701. extra: 841 / 810,
  11702. bottom: 0.022
  11703. }
  11704. },
  11705. },
  11706. [
  11707. {
  11708. name: "Normal",
  11709. height: math.unit(6 + 11 / 12, "feet"),
  11710. default: true
  11711. },
  11712. {
  11713. name: "Macro",
  11714. height: math.unit(490, "feet")
  11715. },
  11716. {
  11717. name: "Megamacro",
  11718. height: math.unit(10, "miles")
  11719. },
  11720. {
  11721. name: "Gigamacro",
  11722. height: math.unit(50, "miles")
  11723. },
  11724. ]
  11725. ))
  11726. characterMakers.push(() => makeCharacter(
  11727. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11728. {
  11729. front: {
  11730. height: math.unit(6, "feet"),
  11731. weight: math.unit(250, "lb"),
  11732. name: "Front",
  11733. image: {
  11734. source: "./media/characters/xylrem/front.svg",
  11735. extra: 3323 / 3050,
  11736. bottom: 0.065
  11737. }
  11738. },
  11739. },
  11740. [
  11741. {
  11742. name: "Micro",
  11743. height: math.unit(4, "feet")
  11744. },
  11745. {
  11746. name: "Normal",
  11747. height: math.unit(16, "feet"),
  11748. default: true
  11749. },
  11750. {
  11751. name: "Macro",
  11752. height: math.unit(2720, "feet")
  11753. },
  11754. {
  11755. name: "Megamacro",
  11756. height: math.unit(25000, "miles")
  11757. },
  11758. ]
  11759. ))
  11760. characterMakers.push(() => makeCharacter(
  11761. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11762. {
  11763. front: {
  11764. height: math.unit(8, "feet"),
  11765. weight: math.unit(250, "kg"),
  11766. name: "Front",
  11767. image: {
  11768. source: "./media/characters/ikideru/front.svg",
  11769. extra: 930 / 870,
  11770. bottom: 0.087
  11771. }
  11772. },
  11773. back: {
  11774. height: math.unit(8, "feet"),
  11775. weight: math.unit(250, "kg"),
  11776. name: "Back",
  11777. image: {
  11778. source: "./media/characters/ikideru/back.svg",
  11779. extra: 919 / 852,
  11780. bottom: 0.055
  11781. }
  11782. },
  11783. },
  11784. [
  11785. {
  11786. name: "Rare",
  11787. height: math.unit(8, "feet"),
  11788. default: true
  11789. },
  11790. {
  11791. name: "Playful Loom",
  11792. height: math.unit(80, "feet")
  11793. },
  11794. {
  11795. name: "City Leaner",
  11796. height: math.unit(230, "feet")
  11797. },
  11798. {
  11799. name: "Megamacro",
  11800. height: math.unit(2500, "feet")
  11801. },
  11802. {
  11803. name: "Gigamacro",
  11804. height: math.unit(26400, "feet")
  11805. },
  11806. {
  11807. name: "Tectonic Shifter",
  11808. height: math.unit(1.7, "megameters")
  11809. },
  11810. {
  11811. name: "Planet Carer",
  11812. height: math.unit(21, "megameters")
  11813. },
  11814. {
  11815. name: "God",
  11816. height: math.unit(11157.22, "parsecs")
  11817. },
  11818. ]
  11819. ))
  11820. characterMakers.push(() => makeCharacter(
  11821. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11822. {
  11823. front: {
  11824. height: math.unit(6, "feet"),
  11825. weight: math.unit(120, "lb"),
  11826. name: "Front",
  11827. image: {
  11828. source: "./media/characters/neo/front.svg"
  11829. }
  11830. },
  11831. },
  11832. [
  11833. {
  11834. name: "Micro",
  11835. height: math.unit(2, "inches"),
  11836. default: true
  11837. },
  11838. {
  11839. name: "Human Size",
  11840. height: math.unit(5 + 8 / 12, "feet")
  11841. },
  11842. ]
  11843. ))
  11844. characterMakers.push(() => makeCharacter(
  11845. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11846. {
  11847. front: {
  11848. height: math.unit(13 + 10 / 12, "feet"),
  11849. weight: math.unit(5320, "lb"),
  11850. name: "Front",
  11851. image: {
  11852. source: "./media/characters/chauncey-chantz/front.svg",
  11853. extra: 1587 / 1435,
  11854. bottom: 0.02
  11855. }
  11856. },
  11857. },
  11858. [
  11859. {
  11860. name: "Normal",
  11861. height: math.unit(13 + 10 / 12, "feet"),
  11862. default: true
  11863. },
  11864. {
  11865. name: "Macro",
  11866. height: math.unit(45, "feet")
  11867. },
  11868. {
  11869. name: "Megamacro",
  11870. height: math.unit(250, "miles")
  11871. },
  11872. {
  11873. name: "Planetary",
  11874. height: math.unit(10000, "miles")
  11875. },
  11876. {
  11877. name: "Galactic",
  11878. height: math.unit(40000, "parsecs")
  11879. },
  11880. {
  11881. name: "Universal",
  11882. height: math.unit(1, "yottameter")
  11883. },
  11884. ]
  11885. ))
  11886. characterMakers.push(() => makeCharacter(
  11887. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11888. {
  11889. front: {
  11890. height: math.unit(6, "feet"),
  11891. weight: math.unit(150, "lb"),
  11892. name: "Front",
  11893. image: {
  11894. source: "./media/characters/epifox/front.svg",
  11895. extra: 1,
  11896. bottom: 0.075
  11897. }
  11898. },
  11899. },
  11900. [
  11901. {
  11902. name: "Micro",
  11903. height: math.unit(6, "inches")
  11904. },
  11905. {
  11906. name: "Normal",
  11907. height: math.unit(12, "feet"),
  11908. default: true
  11909. },
  11910. {
  11911. name: "Macro",
  11912. height: math.unit(3810, "feet")
  11913. },
  11914. {
  11915. name: "Megamacro",
  11916. height: math.unit(500, "miles")
  11917. },
  11918. ]
  11919. ))
  11920. characterMakers.push(() => makeCharacter(
  11921. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11922. {
  11923. front: {
  11924. height: math.unit(1.8796, "m"),
  11925. weight: math.unit(230, "lb"),
  11926. name: "Front",
  11927. image: {
  11928. source: "./media/characters/colin-t/front.svg",
  11929. extra: 1272 / 1193,
  11930. bottom: 0.07
  11931. }
  11932. },
  11933. },
  11934. [
  11935. {
  11936. name: "Micro",
  11937. height: math.unit(0.571, "meters")
  11938. },
  11939. {
  11940. name: "Normal",
  11941. height: math.unit(1.8796, "meters"),
  11942. default: true
  11943. },
  11944. {
  11945. name: "Tall",
  11946. height: math.unit(4, "meters")
  11947. },
  11948. {
  11949. name: "Macro",
  11950. height: math.unit(67.241, "meters")
  11951. },
  11952. {
  11953. name: "Megamacro",
  11954. height: math.unit(371.856, "meters")
  11955. },
  11956. {
  11957. name: "Planetary",
  11958. height: math.unit(12631.5689, "km")
  11959. },
  11960. ]
  11961. ))
  11962. characterMakers.push(() => makeCharacter(
  11963. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11964. {
  11965. front: {
  11966. height: math.unit(1.85, "meters"),
  11967. weight: math.unit(80, "kg"),
  11968. name: "Front",
  11969. image: {
  11970. source: "./media/characters/matvei/front.svg",
  11971. extra: 614 / 594,
  11972. bottom: 0.01
  11973. }
  11974. },
  11975. },
  11976. [
  11977. {
  11978. name: "Normal",
  11979. height: math.unit(1.85, "meters"),
  11980. default: true
  11981. },
  11982. ]
  11983. ))
  11984. characterMakers.push(() => makeCharacter(
  11985. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11986. {
  11987. front: {
  11988. height: math.unit(5 + 9 / 12, "feet"),
  11989. weight: math.unit(70, "lb"),
  11990. name: "Front",
  11991. image: {
  11992. source: "./media/characters/quincy/front.svg",
  11993. extra: 3041 / 2751
  11994. }
  11995. },
  11996. back: {
  11997. height: math.unit(5 + 9 / 12, "feet"),
  11998. weight: math.unit(70, "lb"),
  11999. name: "Back",
  12000. image: {
  12001. source: "./media/characters/quincy/back.svg",
  12002. extra: 3041 / 2751
  12003. }
  12004. },
  12005. flying: {
  12006. height: math.unit(5 + 4 / 12, "feet"),
  12007. weight: math.unit(70, "lb"),
  12008. name: "Flying",
  12009. image: {
  12010. source: "./media/characters/quincy/flying.svg",
  12011. extra: 1044 / 930
  12012. }
  12013. },
  12014. },
  12015. [
  12016. {
  12017. name: "Micro",
  12018. height: math.unit(3, "cm")
  12019. },
  12020. {
  12021. name: "Normal",
  12022. height: math.unit(5 + 9 / 12, "feet")
  12023. },
  12024. {
  12025. name: "Macro",
  12026. height: math.unit(200, "meters"),
  12027. default: true
  12028. },
  12029. {
  12030. name: "Megamacro",
  12031. height: math.unit(1000, "meters")
  12032. },
  12033. ]
  12034. ))
  12035. characterMakers.push(() => makeCharacter(
  12036. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12037. {
  12038. front: {
  12039. height: math.unit(3 + 11/12, "feet"),
  12040. weight: math.unit(50, "lb"),
  12041. name: "Front",
  12042. image: {
  12043. source: "./media/characters/vanrel/front.svg",
  12044. extra: 1104/949,
  12045. bottom: 52/1156
  12046. }
  12047. },
  12048. back: {
  12049. height: math.unit(3 + 11/12, "feet"),
  12050. weight: math.unit(50, "lb"),
  12051. name: "Back",
  12052. image: {
  12053. source: "./media/characters/vanrel/back.svg",
  12054. extra: 1119/976,
  12055. bottom: 37/1156
  12056. }
  12057. },
  12058. tome: {
  12059. height: math.unit(1.35, "feet"),
  12060. weight: math.unit(10, "lb"),
  12061. name: "Vanrel's Tome",
  12062. rename: true,
  12063. image: {
  12064. source: "./media/characters/vanrel/tome.svg"
  12065. }
  12066. },
  12067. beans: {
  12068. height: math.unit(0.89, "feet"),
  12069. name: "Beans",
  12070. image: {
  12071. source: "./media/characters/vanrel/beans.svg"
  12072. }
  12073. },
  12074. },
  12075. [
  12076. {
  12077. name: "Normal",
  12078. height: math.unit(3 + 11/12, "feet"),
  12079. default: true
  12080. },
  12081. ]
  12082. ))
  12083. characterMakers.push(() => makeCharacter(
  12084. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12085. {
  12086. front: {
  12087. height: math.unit(7 + 5 / 12, "feet"),
  12088. name: "Front",
  12089. image: {
  12090. source: "./media/characters/kuiper-vanrel/front.svg",
  12091. extra: 1219/1169,
  12092. bottom: 69/1288
  12093. }
  12094. },
  12095. back: {
  12096. height: math.unit(7 + 5 / 12, "feet"),
  12097. name: "Back",
  12098. image: {
  12099. source: "./media/characters/kuiper-vanrel/back.svg",
  12100. extra: 1236/1193,
  12101. bottom: 27/1263
  12102. }
  12103. },
  12104. foot: {
  12105. height: math.unit(0.55, "meters"),
  12106. name: "Foot",
  12107. image: {
  12108. source: "./media/characters/kuiper-vanrel/foot.svg",
  12109. }
  12110. },
  12111. battle: {
  12112. height: math.unit(6.824, "feet"),
  12113. name: "Battle",
  12114. image: {
  12115. source: "./media/characters/kuiper-vanrel/battle.svg",
  12116. extra: 1466 / 1327,
  12117. bottom: 29 / 1492.5
  12118. }
  12119. },
  12120. meerkui: {
  12121. height: math.unit(18, "inches"),
  12122. name: "Meerkui",
  12123. image: {
  12124. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12125. extra: 1354/1289,
  12126. bottom: 69/1423
  12127. }
  12128. },
  12129. },
  12130. [
  12131. {
  12132. name: "Normal",
  12133. height: math.unit(7 + 5 / 12, "feet"),
  12134. default: true
  12135. },
  12136. ]
  12137. ))
  12138. characterMakers.push(() => makeCharacter(
  12139. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12140. {
  12141. front: {
  12142. height: math.unit(8 + 5 / 12, "feet"),
  12143. name: "Front",
  12144. image: {
  12145. source: "./media/characters/keset-vanrel/front.svg",
  12146. extra: 1231/1148,
  12147. bottom: 82/1313
  12148. }
  12149. },
  12150. back: {
  12151. height: math.unit(8 + 5 / 12, "feet"),
  12152. name: "Back",
  12153. image: {
  12154. source: "./media/characters/keset-vanrel/back.svg",
  12155. extra: 1240/1174,
  12156. bottom: 33/1273
  12157. }
  12158. },
  12159. hand: {
  12160. height: math.unit(0.6, "meters"),
  12161. name: "Hand",
  12162. image: {
  12163. source: "./media/characters/keset-vanrel/hand.svg"
  12164. }
  12165. },
  12166. foot: {
  12167. height: math.unit(0.94978, "meters"),
  12168. name: "Foot",
  12169. image: {
  12170. source: "./media/characters/keset-vanrel/foot.svg"
  12171. }
  12172. },
  12173. battle: {
  12174. height: math.unit(7.408, "feet"),
  12175. name: "Battle",
  12176. image: {
  12177. source: "./media/characters/keset-vanrel/battle.svg",
  12178. extra: 1890 / 1386,
  12179. bottom: 73.28 / 1970
  12180. }
  12181. },
  12182. },
  12183. [
  12184. {
  12185. name: "Normal",
  12186. height: math.unit(8 + 5 / 12, "feet"),
  12187. default: true
  12188. },
  12189. ]
  12190. ))
  12191. characterMakers.push(() => makeCharacter(
  12192. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12193. {
  12194. front: {
  12195. height: math.unit(6, "feet"),
  12196. weight: math.unit(150, "lb"),
  12197. name: "Front",
  12198. image: {
  12199. source: "./media/characters/neos/front.svg",
  12200. extra: 1696 / 992,
  12201. bottom: 0.14
  12202. }
  12203. },
  12204. },
  12205. [
  12206. {
  12207. name: "Normal",
  12208. height: math.unit(54, "cm"),
  12209. default: true
  12210. },
  12211. {
  12212. name: "Macro",
  12213. height: math.unit(100, "m")
  12214. },
  12215. {
  12216. name: "Megamacro",
  12217. height: math.unit(10, "km")
  12218. },
  12219. {
  12220. name: "Megamacro+",
  12221. height: math.unit(100, "km")
  12222. },
  12223. {
  12224. name: "Gigamacro",
  12225. height: math.unit(100, "Mm")
  12226. },
  12227. {
  12228. name: "Teramacro",
  12229. height: math.unit(100, "Gm")
  12230. },
  12231. {
  12232. name: "Examacro",
  12233. height: math.unit(100, "Em")
  12234. },
  12235. {
  12236. name: "Godly",
  12237. height: math.unit(10000, "Ym")
  12238. },
  12239. {
  12240. name: "Beyond Godly",
  12241. height: math.unit(25, "multiverses")
  12242. },
  12243. ]
  12244. ))
  12245. characterMakers.push(() => makeCharacter(
  12246. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12247. {
  12248. feminine: {
  12249. height: math.unit(5, "feet"),
  12250. weight: math.unit(100, "lb"),
  12251. name: "Feminine",
  12252. image: {
  12253. source: "./media/characters/sammy-mouse/feminine.svg",
  12254. extra: 2526 / 2425,
  12255. bottom: 0.123
  12256. }
  12257. },
  12258. masculine: {
  12259. height: math.unit(5, "feet"),
  12260. weight: math.unit(100, "lb"),
  12261. name: "Masculine",
  12262. image: {
  12263. source: "./media/characters/sammy-mouse/masculine.svg",
  12264. extra: 2526 / 2425,
  12265. bottom: 0.123
  12266. }
  12267. },
  12268. },
  12269. [
  12270. {
  12271. name: "Micro",
  12272. height: math.unit(5, "inches")
  12273. },
  12274. {
  12275. name: "Normal",
  12276. height: math.unit(5, "feet"),
  12277. default: true
  12278. },
  12279. {
  12280. name: "Macro",
  12281. height: math.unit(60, "feet")
  12282. },
  12283. ]
  12284. ))
  12285. characterMakers.push(() => makeCharacter(
  12286. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12287. {
  12288. front: {
  12289. height: math.unit(4, "feet"),
  12290. weight: math.unit(50, "lb"),
  12291. name: "Front",
  12292. image: {
  12293. source: "./media/characters/kole/front.svg",
  12294. extra: 1423 / 1303,
  12295. bottom: 0.025
  12296. }
  12297. },
  12298. back: {
  12299. height: math.unit(4, "feet"),
  12300. weight: math.unit(50, "lb"),
  12301. name: "Back",
  12302. image: {
  12303. source: "./media/characters/kole/back.svg",
  12304. extra: 1426 / 1280,
  12305. bottom: 0.02
  12306. }
  12307. },
  12308. },
  12309. [
  12310. {
  12311. name: "Normal",
  12312. height: math.unit(4, "feet"),
  12313. default: true
  12314. },
  12315. ]
  12316. ))
  12317. characterMakers.push(() => makeCharacter(
  12318. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12319. {
  12320. front: {
  12321. height: math.unit(2.5, "feet"),
  12322. weight: math.unit(32, "lb"),
  12323. name: "Front",
  12324. image: {
  12325. source: "./media/characters/rufran/front.svg",
  12326. extra: 1313/885,
  12327. bottom: 94/1407
  12328. }
  12329. },
  12330. side: {
  12331. height: math.unit(2.5, "feet"),
  12332. weight: math.unit(32, "lb"),
  12333. name: "Side",
  12334. image: {
  12335. source: "./media/characters/rufran/side.svg",
  12336. extra: 1109/852,
  12337. bottom: 118/1227
  12338. }
  12339. },
  12340. back: {
  12341. height: math.unit(2.5, "feet"),
  12342. weight: math.unit(32, "lb"),
  12343. name: "Back",
  12344. image: {
  12345. source: "./media/characters/rufran/back.svg",
  12346. extra: 1280/878,
  12347. bottom: 131/1411
  12348. }
  12349. },
  12350. mouth: {
  12351. height: math.unit(1.13, "feet"),
  12352. name: "Mouth",
  12353. image: {
  12354. source: "./media/characters/rufran/mouth.svg"
  12355. }
  12356. },
  12357. foot: {
  12358. height: math.unit(1.33, "feet"),
  12359. name: "Foot",
  12360. image: {
  12361. source: "./media/characters/rufran/foot.svg"
  12362. }
  12363. },
  12364. koboldFront: {
  12365. height: math.unit(2 + 6 / 12, "feet"),
  12366. weight: math.unit(20, "lb"),
  12367. name: "Front (Kobold)",
  12368. image: {
  12369. source: "./media/characters/rufran/kobold-front.svg",
  12370. extra: 2041 / 1839,
  12371. bottom: 0.055
  12372. }
  12373. },
  12374. koboldBack: {
  12375. height: math.unit(2 + 6 / 12, "feet"),
  12376. weight: math.unit(20, "lb"),
  12377. name: "Back (Kobold)",
  12378. image: {
  12379. source: "./media/characters/rufran/kobold-back.svg",
  12380. extra: 2054 / 1839,
  12381. bottom: 0.01
  12382. }
  12383. },
  12384. koboldHand: {
  12385. height: math.unit(0.2166, "meters"),
  12386. name: "Hand (Kobold)",
  12387. image: {
  12388. source: "./media/characters/rufran/kobold-hand.svg"
  12389. }
  12390. },
  12391. koboldFoot: {
  12392. height: math.unit(0.185, "meters"),
  12393. name: "Foot (Kobold)",
  12394. image: {
  12395. source: "./media/characters/rufran/kobold-foot.svg"
  12396. }
  12397. },
  12398. },
  12399. [
  12400. {
  12401. name: "Micro",
  12402. height: math.unit(1, "inch")
  12403. },
  12404. {
  12405. name: "Normal",
  12406. height: math.unit(2 + 6 / 12, "feet"),
  12407. default: true
  12408. },
  12409. {
  12410. name: "Big",
  12411. height: math.unit(60, "feet")
  12412. },
  12413. {
  12414. name: "Macro",
  12415. height: math.unit(325, "feet")
  12416. },
  12417. ]
  12418. ))
  12419. characterMakers.push(() => makeCharacter(
  12420. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12421. {
  12422. front: {
  12423. height: math.unit(0.3, "meters"),
  12424. weight: math.unit(3.5, "kg"),
  12425. name: "Front",
  12426. image: {
  12427. source: "./media/characters/chip/front.svg",
  12428. extra: 748 / 674
  12429. }
  12430. },
  12431. },
  12432. [
  12433. {
  12434. name: "Micro",
  12435. height: math.unit(1, "inch"),
  12436. default: true
  12437. },
  12438. ]
  12439. ))
  12440. characterMakers.push(() => makeCharacter(
  12441. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12442. {
  12443. side: {
  12444. height: math.unit(2.3, "meters"),
  12445. weight: math.unit(3500, "lb"),
  12446. name: "Side",
  12447. image: {
  12448. source: "./media/characters/torvid/side.svg",
  12449. extra: 1972 / 722,
  12450. bottom: 0.035
  12451. }
  12452. },
  12453. },
  12454. [
  12455. {
  12456. name: "Normal",
  12457. height: math.unit(2.3, "meters"),
  12458. default: true
  12459. },
  12460. ]
  12461. ))
  12462. characterMakers.push(() => makeCharacter(
  12463. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12464. {
  12465. front: {
  12466. height: math.unit(2, "meters"),
  12467. weight: math.unit(150.5, "kg"),
  12468. name: "Front",
  12469. image: {
  12470. source: "./media/characters/susan/front.svg",
  12471. extra: 693 / 635,
  12472. bottom: 0.05
  12473. }
  12474. },
  12475. },
  12476. [
  12477. {
  12478. name: "Megamacro",
  12479. height: math.unit(505, "miles"),
  12480. default: true
  12481. },
  12482. ]
  12483. ))
  12484. characterMakers.push(() => makeCharacter(
  12485. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12486. {
  12487. front: {
  12488. height: math.unit(6, "feet"),
  12489. weight: math.unit(150, "lb"),
  12490. name: "Front",
  12491. image: {
  12492. source: "./media/characters/raindrops/front.svg",
  12493. extra: 2655 / 2461,
  12494. bottom: 49 / 2705
  12495. }
  12496. },
  12497. back: {
  12498. height: math.unit(6, "feet"),
  12499. weight: math.unit(150, "lb"),
  12500. name: "Back",
  12501. image: {
  12502. source: "./media/characters/raindrops/back.svg",
  12503. extra: 2574 / 2400,
  12504. bottom: 65 / 2634
  12505. }
  12506. },
  12507. },
  12508. [
  12509. {
  12510. name: "Micro",
  12511. height: math.unit(6, "inches")
  12512. },
  12513. {
  12514. name: "Normal",
  12515. height: math.unit(6 + 2 / 12, "feet")
  12516. },
  12517. {
  12518. name: "Macro",
  12519. height: math.unit(131, "feet"),
  12520. default: true
  12521. },
  12522. {
  12523. name: "Megamacro",
  12524. height: math.unit(15, "miles")
  12525. },
  12526. {
  12527. name: "Gigamacro",
  12528. height: math.unit(4000, "miles")
  12529. },
  12530. {
  12531. name: "Teramacro",
  12532. height: math.unit(315000, "miles")
  12533. },
  12534. ]
  12535. ))
  12536. characterMakers.push(() => makeCharacter(
  12537. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12538. {
  12539. front: {
  12540. height: math.unit(2.794, "meters"),
  12541. weight: math.unit(325, "kg"),
  12542. name: "Front",
  12543. image: {
  12544. source: "./media/characters/tezwa/front.svg",
  12545. extra: 2083 / 1906,
  12546. bottom: 0.031
  12547. }
  12548. },
  12549. foot: {
  12550. height: math.unit(0.687, "meters"),
  12551. name: "Foot",
  12552. image: {
  12553. source: "./media/characters/tezwa/foot.svg"
  12554. }
  12555. },
  12556. },
  12557. [
  12558. {
  12559. name: "Normal",
  12560. height: math.unit(9 + 2 / 12, "feet"),
  12561. default: true
  12562. },
  12563. ]
  12564. ))
  12565. characterMakers.push(() => makeCharacter(
  12566. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12567. {
  12568. front: {
  12569. height: math.unit(58, "feet"),
  12570. weight: math.unit(89000, "lb"),
  12571. name: "Front",
  12572. image: {
  12573. source: "./media/characters/typhus/front.svg",
  12574. extra: 816 / 800,
  12575. bottom: 0.065
  12576. }
  12577. },
  12578. },
  12579. [
  12580. {
  12581. name: "Macro",
  12582. height: math.unit(58, "feet"),
  12583. default: true
  12584. },
  12585. ]
  12586. ))
  12587. characterMakers.push(() => makeCharacter(
  12588. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12589. {
  12590. front: {
  12591. height: math.unit(12, "feet"),
  12592. weight: math.unit(6, "tonnes"),
  12593. name: "Front",
  12594. image: {
  12595. source: "./media/characters/lyra-von-wulf/front.svg",
  12596. extra: 1,
  12597. bottom: 0.10
  12598. }
  12599. },
  12600. frontMecha: {
  12601. height: math.unit(12, "feet"),
  12602. weight: math.unit(12, "tonnes"),
  12603. name: "Front (Mecha)",
  12604. image: {
  12605. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12606. extra: 1,
  12607. bottom: 0.042
  12608. }
  12609. },
  12610. maw: {
  12611. height: math.unit(2.2, "feet"),
  12612. name: "Maw",
  12613. image: {
  12614. source: "./media/characters/lyra-von-wulf/maw.svg"
  12615. }
  12616. },
  12617. },
  12618. [
  12619. {
  12620. name: "Normal",
  12621. height: math.unit(12, "feet"),
  12622. default: true
  12623. },
  12624. {
  12625. name: "Classic",
  12626. height: math.unit(50, "feet")
  12627. },
  12628. {
  12629. name: "Macro",
  12630. height: math.unit(500, "feet")
  12631. },
  12632. {
  12633. name: "Megamacro",
  12634. height: math.unit(1, "mile")
  12635. },
  12636. {
  12637. name: "Gigamacro",
  12638. height: math.unit(400, "miles")
  12639. },
  12640. {
  12641. name: "Teramacro",
  12642. height: math.unit(22000, "miles")
  12643. },
  12644. {
  12645. name: "Solarmacro",
  12646. height: math.unit(8600000, "miles")
  12647. },
  12648. {
  12649. name: "Galactic",
  12650. height: math.unit(1057000, "lightyears")
  12651. },
  12652. ]
  12653. ))
  12654. characterMakers.push(() => makeCharacter(
  12655. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12656. {
  12657. front: {
  12658. height: math.unit(6 + 10 / 12, "feet"),
  12659. weight: math.unit(150, "lb"),
  12660. name: "Front",
  12661. image: {
  12662. source: "./media/characters/dixon/front.svg",
  12663. extra: 3361 / 3209,
  12664. bottom: 0.01
  12665. }
  12666. },
  12667. },
  12668. [
  12669. {
  12670. name: "Normal",
  12671. height: math.unit(6 + 10 / 12, "feet"),
  12672. default: true
  12673. },
  12674. {
  12675. name: "Big",
  12676. height: math.unit(12, "meters")
  12677. },
  12678. {
  12679. name: "Macro",
  12680. height: math.unit(500, "meters")
  12681. },
  12682. {
  12683. name: "Megamacro",
  12684. height: math.unit(2, "km")
  12685. },
  12686. ]
  12687. ))
  12688. characterMakers.push(() => makeCharacter(
  12689. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12690. {
  12691. front: {
  12692. height: math.unit(185, "cm"),
  12693. weight: math.unit(68, "kg"),
  12694. name: "Front",
  12695. image: {
  12696. source: "./media/characters/kauko/front.svg",
  12697. extra: 1455 / 1421,
  12698. bottom: 0.03
  12699. }
  12700. },
  12701. back: {
  12702. height: math.unit(185, "cm"),
  12703. weight: math.unit(68, "kg"),
  12704. name: "Back",
  12705. image: {
  12706. source: "./media/characters/kauko/back.svg",
  12707. extra: 1455 / 1421,
  12708. bottom: 0.004
  12709. }
  12710. },
  12711. },
  12712. [
  12713. {
  12714. name: "Normal",
  12715. height: math.unit(185, "cm"),
  12716. default: true
  12717. },
  12718. ]
  12719. ))
  12720. characterMakers.push(() => makeCharacter(
  12721. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12722. {
  12723. front: {
  12724. height: math.unit(6, "feet"),
  12725. weight: math.unit(150, "kg"),
  12726. name: "Front",
  12727. image: {
  12728. source: "./media/characters/varg/front.svg",
  12729. extra: 1108 / 1018,
  12730. bottom: 0.0375
  12731. }
  12732. },
  12733. },
  12734. [
  12735. {
  12736. name: "Normal",
  12737. height: math.unit(5, "meters")
  12738. },
  12739. {
  12740. name: "Macro",
  12741. height: math.unit(200, "meters")
  12742. },
  12743. {
  12744. name: "Megamacro",
  12745. height: math.unit(20, "kilometers")
  12746. },
  12747. {
  12748. name: "True Size",
  12749. height: math.unit(211, "km"),
  12750. default: true
  12751. },
  12752. {
  12753. name: "Gigamacro",
  12754. height: math.unit(1000, "km")
  12755. },
  12756. {
  12757. name: "Gigamacro+",
  12758. height: math.unit(8000, "km")
  12759. },
  12760. {
  12761. name: "Teramacro",
  12762. height: math.unit(1000000, "km")
  12763. },
  12764. ]
  12765. ))
  12766. characterMakers.push(() => makeCharacter(
  12767. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12768. {
  12769. front: {
  12770. height: math.unit(7 + 7 / 12, "feet"),
  12771. weight: math.unit(267, "lb"),
  12772. name: "Front",
  12773. image: {
  12774. source: "./media/characters/dayza/front.svg",
  12775. extra: 1262 / 1200,
  12776. bottom: 0.035
  12777. }
  12778. },
  12779. side: {
  12780. height: math.unit(7 + 7 / 12, "feet"),
  12781. weight: math.unit(267, "lb"),
  12782. name: "Side",
  12783. image: {
  12784. source: "./media/characters/dayza/side.svg",
  12785. extra: 1295 / 1245,
  12786. bottom: 0.05
  12787. }
  12788. },
  12789. back: {
  12790. height: math.unit(7 + 7 / 12, "feet"),
  12791. weight: math.unit(267, "lb"),
  12792. name: "Back",
  12793. image: {
  12794. source: "./media/characters/dayza/back.svg",
  12795. extra: 1241 / 1170
  12796. }
  12797. },
  12798. },
  12799. [
  12800. {
  12801. name: "Normal",
  12802. height: math.unit(7 + 7 / 12, "feet"),
  12803. default: true
  12804. },
  12805. {
  12806. name: "Macro",
  12807. height: math.unit(155, "feet")
  12808. },
  12809. ]
  12810. ))
  12811. characterMakers.push(() => makeCharacter(
  12812. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12813. {
  12814. front: {
  12815. height: math.unit(6 + 5 / 12, "feet"),
  12816. weight: math.unit(160, "lb"),
  12817. name: "Front",
  12818. image: {
  12819. source: "./media/characters/xanthos/front.svg",
  12820. extra: 1,
  12821. bottom: 0.04
  12822. }
  12823. },
  12824. back: {
  12825. height: math.unit(6 + 5 / 12, "feet"),
  12826. weight: math.unit(160, "lb"),
  12827. name: "Back",
  12828. image: {
  12829. source: "./media/characters/xanthos/back.svg",
  12830. extra: 1,
  12831. bottom: 0.03
  12832. }
  12833. },
  12834. hand: {
  12835. height: math.unit(0.928, "feet"),
  12836. name: "Hand",
  12837. image: {
  12838. source: "./media/characters/xanthos/hand.svg"
  12839. }
  12840. },
  12841. foot: {
  12842. height: math.unit(1.286, "feet"),
  12843. name: "Foot",
  12844. image: {
  12845. source: "./media/characters/xanthos/foot.svg"
  12846. }
  12847. },
  12848. },
  12849. [
  12850. {
  12851. name: "Normal",
  12852. height: math.unit(6 + 5 / 12, "feet"),
  12853. default: true
  12854. },
  12855. {
  12856. name: "Normal+",
  12857. height: math.unit(6, "meters")
  12858. },
  12859. {
  12860. name: "Macro",
  12861. height: math.unit(40, "feet")
  12862. },
  12863. {
  12864. name: "Macro+",
  12865. height: math.unit(200, "meters")
  12866. },
  12867. {
  12868. name: "Megamacro",
  12869. height: math.unit(20, "km")
  12870. },
  12871. {
  12872. name: "Megamacro+",
  12873. height: math.unit(100, "km")
  12874. },
  12875. {
  12876. name: "Gigamacro",
  12877. height: math.unit(200, "megameters")
  12878. },
  12879. {
  12880. name: "Gigamacro+",
  12881. height: math.unit(1.5, "gigameters")
  12882. },
  12883. ]
  12884. ))
  12885. characterMakers.push(() => makeCharacter(
  12886. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12887. {
  12888. front: {
  12889. height: math.unit(6 + 3 / 12, "feet"),
  12890. weight: math.unit(215, "lb"),
  12891. name: "Front",
  12892. image: {
  12893. source: "./media/characters/grynn/front.svg",
  12894. extra: 4627 / 4209,
  12895. bottom: 0.047
  12896. }
  12897. },
  12898. },
  12899. [
  12900. {
  12901. name: "Micro",
  12902. height: math.unit(6, "inches")
  12903. },
  12904. {
  12905. name: "Normal",
  12906. height: math.unit(6 + 3 / 12, "feet"),
  12907. default: true
  12908. },
  12909. {
  12910. name: "Big",
  12911. height: math.unit(104, "feet")
  12912. },
  12913. {
  12914. name: "Macro",
  12915. height: math.unit(944, "feet")
  12916. },
  12917. {
  12918. name: "Macro+",
  12919. height: math.unit(9480, "feet")
  12920. },
  12921. {
  12922. name: "Megamacro",
  12923. height: math.unit(78752, "feet")
  12924. },
  12925. {
  12926. name: "Megamacro+",
  12927. height: math.unit(630128, "feet")
  12928. },
  12929. {
  12930. name: "Megamacro++",
  12931. height: math.unit(3150695, "feet")
  12932. },
  12933. ]
  12934. ))
  12935. characterMakers.push(() => makeCharacter(
  12936. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12937. {
  12938. front: {
  12939. height: math.unit(7 + 5 / 12, "feet"),
  12940. weight: math.unit(450, "lb"),
  12941. name: "Front",
  12942. image: {
  12943. source: "./media/characters/mocha-aura/front.svg",
  12944. extra: 1907 / 1817,
  12945. bottom: 0.04
  12946. }
  12947. },
  12948. back: {
  12949. height: math.unit(7 + 5 / 12, "feet"),
  12950. weight: math.unit(450, "lb"),
  12951. name: "Back",
  12952. image: {
  12953. source: "./media/characters/mocha-aura/back.svg",
  12954. extra: 1900 / 1825,
  12955. bottom: 0.045
  12956. }
  12957. },
  12958. },
  12959. [
  12960. {
  12961. name: "Nano",
  12962. height: math.unit(1, "nm")
  12963. },
  12964. {
  12965. name: "Megamicro",
  12966. height: math.unit(1, "mm")
  12967. },
  12968. {
  12969. name: "Micro",
  12970. height: math.unit(3, "inches")
  12971. },
  12972. {
  12973. name: "Normal",
  12974. height: math.unit(7 + 5 / 12, "feet"),
  12975. default: true
  12976. },
  12977. {
  12978. name: "Macro",
  12979. height: math.unit(30, "feet")
  12980. },
  12981. {
  12982. name: "Megamacro",
  12983. height: math.unit(3500, "feet")
  12984. },
  12985. {
  12986. name: "Teramacro",
  12987. height: math.unit(500000, "miles")
  12988. },
  12989. {
  12990. name: "Petamacro",
  12991. height: math.unit(50000000000000000, "parsecs")
  12992. },
  12993. ]
  12994. ))
  12995. characterMakers.push(() => makeCharacter(
  12996. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12997. {
  12998. front: {
  12999. height: math.unit(6, "feet"),
  13000. weight: math.unit(150, "lb"),
  13001. name: "Front",
  13002. image: {
  13003. source: "./media/characters/ilisha-devya/front.svg",
  13004. extra: 1,
  13005. bottom: 0.175
  13006. }
  13007. },
  13008. back: {
  13009. height: math.unit(6, "feet"),
  13010. weight: math.unit(150, "lb"),
  13011. name: "Back",
  13012. image: {
  13013. source: "./media/characters/ilisha-devya/back.svg",
  13014. extra: 1,
  13015. bottom: 0.015
  13016. }
  13017. },
  13018. },
  13019. [
  13020. {
  13021. name: "Macro",
  13022. height: math.unit(500, "feet"),
  13023. default: true
  13024. },
  13025. {
  13026. name: "Megamacro",
  13027. height: math.unit(10, "miles")
  13028. },
  13029. {
  13030. name: "Gigamacro",
  13031. height: math.unit(100000, "miles")
  13032. },
  13033. {
  13034. name: "Examacro",
  13035. height: math.unit(1e9, "lightyears")
  13036. },
  13037. {
  13038. name: "Omniversal",
  13039. height: math.unit(1e33, "lightyears")
  13040. },
  13041. {
  13042. name: "Beyond Infinite",
  13043. height: math.unit(1e100, "lightyears")
  13044. },
  13045. ]
  13046. ))
  13047. characterMakers.push(() => makeCharacter(
  13048. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13049. {
  13050. Side: {
  13051. height: math.unit(6, "feet"),
  13052. weight: math.unit(150, "lb"),
  13053. name: "Side",
  13054. image: {
  13055. source: "./media/characters/mira/side.svg",
  13056. extra: 900 / 799,
  13057. bottom: 0.02
  13058. }
  13059. },
  13060. },
  13061. [
  13062. {
  13063. name: "Human Size",
  13064. height: math.unit(6, "feet")
  13065. },
  13066. {
  13067. name: "Macro",
  13068. height: math.unit(100, "feet"),
  13069. default: true
  13070. },
  13071. {
  13072. name: "Megamacro",
  13073. height: math.unit(10, "miles")
  13074. },
  13075. {
  13076. name: "Gigamacro",
  13077. height: math.unit(25000, "miles")
  13078. },
  13079. {
  13080. name: "Teramacro",
  13081. height: math.unit(300, "AU")
  13082. },
  13083. {
  13084. name: "Full Size",
  13085. height: math.unit(4.5e10, "lightyears")
  13086. },
  13087. ]
  13088. ))
  13089. characterMakers.push(() => makeCharacter(
  13090. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13091. {
  13092. front: {
  13093. height: math.unit(6, "feet"),
  13094. weight: math.unit(150, "lb"),
  13095. name: "Front",
  13096. image: {
  13097. source: "./media/characters/holly/front.svg",
  13098. extra: 639 / 606
  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/holly/back.svg",
  13107. extra: 623 / 598
  13108. }
  13109. },
  13110. frontWorking: {
  13111. height: math.unit(6, "feet"),
  13112. weight: math.unit(150, "lb"),
  13113. name: "Front (Working)",
  13114. image: {
  13115. source: "./media/characters/holly/front-working.svg",
  13116. extra: 607 / 577,
  13117. bottom: 0.048
  13118. }
  13119. },
  13120. },
  13121. [
  13122. {
  13123. name: "Normal",
  13124. height: math.unit(12 + 3 / 12, "feet"),
  13125. default: true
  13126. },
  13127. ]
  13128. ))
  13129. characterMakers.push(() => makeCharacter(
  13130. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13131. {
  13132. front: {
  13133. height: math.unit(6, "feet"),
  13134. weight: math.unit(150, "lb"),
  13135. name: "Front",
  13136. image: {
  13137. source: "./media/characters/porter/front.svg",
  13138. extra: 1,
  13139. bottom: 0.01
  13140. }
  13141. },
  13142. frontRobes: {
  13143. height: math.unit(6, "feet"),
  13144. weight: math.unit(150, "lb"),
  13145. name: "Front (Robes)",
  13146. image: {
  13147. source: "./media/characters/porter/front-robes.svg",
  13148. extra: 1.01,
  13149. bottom: 0.01
  13150. }
  13151. },
  13152. },
  13153. [
  13154. {
  13155. name: "Normal",
  13156. height: math.unit(11 + 9 / 12, "feet"),
  13157. default: true
  13158. },
  13159. ]
  13160. ))
  13161. characterMakers.push(() => makeCharacter(
  13162. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13163. {
  13164. legendary: {
  13165. height: math.unit(6, "feet"),
  13166. weight: math.unit(150, "lb"),
  13167. name: "Legendary",
  13168. image: {
  13169. source: "./media/characters/lucy/legendary.svg",
  13170. extra: 1355 / 1100,
  13171. bottom: 0.045
  13172. }
  13173. },
  13174. },
  13175. [
  13176. {
  13177. name: "Legendary",
  13178. height: math.unit(86882 * 2, "miles"),
  13179. default: true
  13180. },
  13181. ]
  13182. ))
  13183. characterMakers.push(() => makeCharacter(
  13184. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13185. {
  13186. front: {
  13187. height: math.unit(6, "feet"),
  13188. weight: math.unit(150, "lb"),
  13189. name: "Front",
  13190. image: {
  13191. source: "./media/characters/drusilla/front.svg",
  13192. extra: 678 / 635,
  13193. bottom: 0.03
  13194. }
  13195. },
  13196. back: {
  13197. height: math.unit(6, "feet"),
  13198. weight: math.unit(150, "lb"),
  13199. name: "Back",
  13200. image: {
  13201. source: "./media/characters/drusilla/back.svg",
  13202. extra: 678 / 635,
  13203. bottom: 0.005
  13204. }
  13205. },
  13206. },
  13207. [
  13208. {
  13209. name: "Macro",
  13210. height: math.unit(100, "feet")
  13211. },
  13212. {
  13213. name: "Canon Height",
  13214. height: math.unit(2000, "feet"),
  13215. default: true
  13216. },
  13217. ]
  13218. ))
  13219. characterMakers.push(() => makeCharacter(
  13220. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13221. {
  13222. front: {
  13223. height: math.unit(6, "feet"),
  13224. weight: math.unit(180, "lb"),
  13225. name: "Front",
  13226. image: {
  13227. source: "./media/characters/renard-thatch/front.svg",
  13228. extra: 2411 / 2275,
  13229. bottom: 0.01
  13230. }
  13231. },
  13232. frontPosing: {
  13233. height: math.unit(6, "feet"),
  13234. weight: math.unit(180, "lb"),
  13235. name: "Front (Posing)",
  13236. image: {
  13237. source: "./media/characters/renard-thatch/front-posing.svg",
  13238. extra: 2381 / 2261,
  13239. bottom: 0.01
  13240. }
  13241. },
  13242. back: {
  13243. height: math.unit(6, "feet"),
  13244. weight: math.unit(180, "lb"),
  13245. name: "Back",
  13246. image: {
  13247. source: "./media/characters/renard-thatch/back.svg",
  13248. extra: 2428 / 2288
  13249. }
  13250. },
  13251. },
  13252. [
  13253. {
  13254. name: "Micro",
  13255. height: math.unit(3, "inches")
  13256. },
  13257. {
  13258. name: "Default",
  13259. height: math.unit(6, "feet"),
  13260. default: true
  13261. },
  13262. {
  13263. name: "Macro",
  13264. height: math.unit(75, "feet")
  13265. },
  13266. ]
  13267. ))
  13268. characterMakers.push(() => makeCharacter(
  13269. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13270. {
  13271. front: {
  13272. height: math.unit(1450, "feet"),
  13273. weight: math.unit(1.21e6, "tons"),
  13274. name: "Front",
  13275. image: {
  13276. source: "./media/characters/sekvra/front.svg",
  13277. extra: 1,
  13278. bottom: 0.03
  13279. }
  13280. },
  13281. frontClothed: {
  13282. height: math.unit(1450, "feet"),
  13283. weight: math.unit(1.21e6, "tons"),
  13284. name: "Front (Clothed)",
  13285. image: {
  13286. source: "./media/characters/sekvra/front-clothed.svg",
  13287. extra: 1,
  13288. bottom: 0.03
  13289. }
  13290. },
  13291. side: {
  13292. height: math.unit(1450, "feet"),
  13293. weight: math.unit(1.21e6, "tons"),
  13294. name: "Side",
  13295. image: {
  13296. source: "./media/characters/sekvra/side.svg",
  13297. extra: 1,
  13298. bottom: 0.025
  13299. }
  13300. },
  13301. back: {
  13302. height: math.unit(1450, "feet"),
  13303. weight: math.unit(1.21e6, "tons"),
  13304. name: "Back",
  13305. image: {
  13306. source: "./media/characters/sekvra/back.svg",
  13307. extra: 1,
  13308. bottom: 0.005
  13309. }
  13310. },
  13311. },
  13312. [
  13313. {
  13314. name: "Macro",
  13315. height: math.unit(1450, "feet"),
  13316. default: true
  13317. },
  13318. {
  13319. name: "Megamacro",
  13320. height: math.unit(15000, "feet")
  13321. },
  13322. ]
  13323. ))
  13324. characterMakers.push(() => makeCharacter(
  13325. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13326. {
  13327. front: {
  13328. height: math.unit(6, "feet"),
  13329. weight: math.unit(150, "lb"),
  13330. name: "Front",
  13331. image: {
  13332. source: "./media/characters/carmine/front.svg",
  13333. extra: 1,
  13334. bottom: 0.035
  13335. }
  13336. },
  13337. frontArmor: {
  13338. height: math.unit(6, "feet"),
  13339. weight: math.unit(150, "lb"),
  13340. name: "Front (Armor)",
  13341. image: {
  13342. source: "./media/characters/carmine/front-armor.svg",
  13343. extra: 1,
  13344. bottom: 0.035
  13345. }
  13346. },
  13347. },
  13348. [
  13349. {
  13350. name: "Large",
  13351. height: math.unit(1, "mile")
  13352. },
  13353. {
  13354. name: "Huge",
  13355. height: math.unit(40, "miles"),
  13356. default: true
  13357. },
  13358. {
  13359. name: "Colossal",
  13360. height: math.unit(2500, "miles")
  13361. },
  13362. ]
  13363. ))
  13364. characterMakers.push(() => makeCharacter(
  13365. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13366. {
  13367. front: {
  13368. height: math.unit(6, "feet"),
  13369. weight: math.unit(150, "lb"),
  13370. name: "Front",
  13371. image: {
  13372. source: "./media/characters/elyssia/front.svg",
  13373. extra: 2201 / 2035,
  13374. bottom: 0.05
  13375. }
  13376. },
  13377. frontClothed: {
  13378. height: math.unit(6, "feet"),
  13379. weight: math.unit(150, "lb"),
  13380. name: "Front (Clothed)",
  13381. image: {
  13382. source: "./media/characters/elyssia/front-clothed.svg",
  13383. extra: 2201 / 2035,
  13384. bottom: 0.05
  13385. }
  13386. },
  13387. back: {
  13388. height: math.unit(6, "feet"),
  13389. weight: math.unit(150, "lb"),
  13390. name: "Back",
  13391. image: {
  13392. source: "./media/characters/elyssia/back.svg",
  13393. extra: 2201 / 2035,
  13394. bottom: 0.013
  13395. }
  13396. },
  13397. },
  13398. [
  13399. {
  13400. name: "Smaller",
  13401. height: math.unit(150, "feet")
  13402. },
  13403. {
  13404. name: "Standard",
  13405. height: math.unit(1400, "feet"),
  13406. default: true
  13407. },
  13408. {
  13409. name: "Distracted",
  13410. height: math.unit(15000, "feet")
  13411. },
  13412. ]
  13413. ))
  13414. characterMakers.push(() => makeCharacter(
  13415. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13416. {
  13417. front: {
  13418. height: math.unit(7 + 4 / 12, "feet"),
  13419. weight: math.unit(500, "lb"),
  13420. name: "Front",
  13421. image: {
  13422. source: "./media/characters/geno-maxwell/front.svg",
  13423. extra: 2207 / 2040,
  13424. bottom: 0.015
  13425. }
  13426. },
  13427. },
  13428. [
  13429. {
  13430. name: "Micro",
  13431. height: math.unit(3, "inches")
  13432. },
  13433. {
  13434. name: "Normal",
  13435. height: math.unit(7 + 4 / 12, "feet"),
  13436. default: true
  13437. },
  13438. {
  13439. name: "Macro",
  13440. height: math.unit(220, "feet")
  13441. },
  13442. {
  13443. name: "Megamacro",
  13444. height: math.unit(11, "miles")
  13445. },
  13446. ]
  13447. ))
  13448. characterMakers.push(() => makeCharacter(
  13449. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13450. {
  13451. front: {
  13452. height: math.unit(7 + 4 / 12, "feet"),
  13453. weight: math.unit(500, "lb"),
  13454. name: "Front",
  13455. image: {
  13456. source: "./media/characters/regena-maxwell/front.svg",
  13457. extra: 3115 / 2770,
  13458. bottom: 0.02
  13459. }
  13460. },
  13461. },
  13462. [
  13463. {
  13464. name: "Normal",
  13465. height: math.unit(7 + 4 / 12, "feet"),
  13466. default: true
  13467. },
  13468. {
  13469. name: "Macro",
  13470. height: math.unit(220, "feet")
  13471. },
  13472. {
  13473. name: "Megamacro",
  13474. height: math.unit(11, "miles")
  13475. },
  13476. ]
  13477. ))
  13478. characterMakers.push(() => makeCharacter(
  13479. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13480. {
  13481. front: {
  13482. height: math.unit(6, "feet"),
  13483. weight: math.unit(150, "lb"),
  13484. name: "Front",
  13485. image: {
  13486. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13487. extra: 860 / 690,
  13488. bottom: 0.03
  13489. }
  13490. },
  13491. },
  13492. [
  13493. {
  13494. name: "Normal",
  13495. height: math.unit(1.7, "meters"),
  13496. default: true
  13497. },
  13498. ]
  13499. ))
  13500. characterMakers.push(() => makeCharacter(
  13501. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13502. {
  13503. front: {
  13504. height: math.unit(6, "feet"),
  13505. weight: math.unit(150, "lb"),
  13506. name: "Front",
  13507. image: {
  13508. source: "./media/characters/quilly/front.svg",
  13509. extra: 890 / 776
  13510. }
  13511. },
  13512. },
  13513. [
  13514. {
  13515. name: "Gigamacro",
  13516. height: math.unit(404090, "miles"),
  13517. default: true
  13518. },
  13519. ]
  13520. ))
  13521. characterMakers.push(() => makeCharacter(
  13522. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13523. {
  13524. front: {
  13525. height: math.unit(7 + 8 / 12, "feet"),
  13526. weight: math.unit(350, "lb"),
  13527. name: "Front",
  13528. image: {
  13529. source: "./media/characters/tempest/front.svg",
  13530. extra: 1175 / 1086,
  13531. bottom: 0.02
  13532. }
  13533. },
  13534. },
  13535. [
  13536. {
  13537. name: "Normal",
  13538. height: math.unit(7 + 8 / 12, "feet"),
  13539. default: true
  13540. },
  13541. ]
  13542. ))
  13543. characterMakers.push(() => makeCharacter(
  13544. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13545. {
  13546. side: {
  13547. height: math.unit(4 + 5 / 12, "feet"),
  13548. weight: math.unit(80, "lb"),
  13549. name: "Side",
  13550. image: {
  13551. source: "./media/characters/rodger/side.svg",
  13552. extra: 1235 / 1118
  13553. }
  13554. },
  13555. },
  13556. [
  13557. {
  13558. name: "Micro",
  13559. height: math.unit(1, "inch")
  13560. },
  13561. {
  13562. name: "Normal",
  13563. height: math.unit(4 + 5 / 12, "feet"),
  13564. default: true
  13565. },
  13566. {
  13567. name: "Macro",
  13568. height: math.unit(120, "feet")
  13569. },
  13570. ]
  13571. ))
  13572. characterMakers.push(() => makeCharacter(
  13573. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13574. {
  13575. front: {
  13576. height: math.unit(6, "feet"),
  13577. weight: math.unit(150, "lb"),
  13578. name: "Front",
  13579. image: {
  13580. source: "./media/characters/danyel/front.svg",
  13581. extra: 1185 / 1123,
  13582. bottom: 0.05
  13583. }
  13584. },
  13585. },
  13586. [
  13587. {
  13588. name: "Shrunken",
  13589. height: math.unit(0.5, "mm")
  13590. },
  13591. {
  13592. name: "Micro",
  13593. height: math.unit(1, "mm"),
  13594. default: true
  13595. },
  13596. {
  13597. name: "Upsized",
  13598. height: math.unit(5 + 5 / 12, "feet")
  13599. },
  13600. ]
  13601. ))
  13602. characterMakers.push(() => makeCharacter(
  13603. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13604. {
  13605. front: {
  13606. height: math.unit(5 + 6 / 12, "feet"),
  13607. weight: math.unit(200, "lb"),
  13608. name: "Front",
  13609. image: {
  13610. source: "./media/characters/vivian-bijoux/front.svg",
  13611. extra: 1,
  13612. bottom: 0.072
  13613. }
  13614. },
  13615. },
  13616. [
  13617. {
  13618. name: "Normal",
  13619. height: math.unit(5 + 6 / 12, "feet"),
  13620. default: true
  13621. },
  13622. {
  13623. name: "Bad Dream",
  13624. height: math.unit(500, "feet")
  13625. },
  13626. {
  13627. name: "Nightmare",
  13628. height: math.unit(500, "miles")
  13629. },
  13630. ]
  13631. ))
  13632. characterMakers.push(() => makeCharacter(
  13633. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13634. {
  13635. front: {
  13636. height: math.unit(6 + 1 / 12, "feet"),
  13637. weight: math.unit(260, "lb"),
  13638. name: "Front",
  13639. image: {
  13640. source: "./media/characters/zeta/front.svg",
  13641. extra: 1968 / 1889,
  13642. bottom: 0.06
  13643. }
  13644. },
  13645. back: {
  13646. height: math.unit(6 + 1 / 12, "feet"),
  13647. weight: math.unit(260, "lb"),
  13648. name: "Back",
  13649. image: {
  13650. source: "./media/characters/zeta/back.svg",
  13651. extra: 1944 / 1858,
  13652. bottom: 0.03
  13653. }
  13654. },
  13655. hand: {
  13656. height: math.unit(1.112, "feet"),
  13657. name: "Hand",
  13658. image: {
  13659. source: "./media/characters/zeta/hand.svg"
  13660. }
  13661. },
  13662. foot: {
  13663. height: math.unit(1.48, "feet"),
  13664. name: "Foot",
  13665. image: {
  13666. source: "./media/characters/zeta/foot.svg"
  13667. }
  13668. },
  13669. },
  13670. [
  13671. {
  13672. name: "Micro",
  13673. height: math.unit(6, "inches")
  13674. },
  13675. {
  13676. name: "Normal",
  13677. height: math.unit(6 + 1 / 12, "feet"),
  13678. default: true
  13679. },
  13680. {
  13681. name: "Macro",
  13682. height: math.unit(20, "feet")
  13683. },
  13684. ]
  13685. ))
  13686. characterMakers.push(() => makeCharacter(
  13687. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13688. {
  13689. front: {
  13690. height: math.unit(6, "feet"),
  13691. weight: math.unit(150, "lb"),
  13692. name: "Front",
  13693. image: {
  13694. source: "./media/characters/jamie-larsen/front.svg",
  13695. extra: 962 / 933,
  13696. bottom: 0.02
  13697. }
  13698. },
  13699. back: {
  13700. height: math.unit(6, "feet"),
  13701. weight: math.unit(150, "lb"),
  13702. name: "Back",
  13703. image: {
  13704. source: "./media/characters/jamie-larsen/back.svg",
  13705. extra: 997 / 946
  13706. }
  13707. },
  13708. },
  13709. [
  13710. {
  13711. name: "Macro",
  13712. height: math.unit(28 + 7 / 12, "feet"),
  13713. default: true
  13714. },
  13715. {
  13716. name: "Macro+",
  13717. height: math.unit(180, "feet")
  13718. },
  13719. {
  13720. name: "Megamacro",
  13721. height: math.unit(10, "miles")
  13722. },
  13723. {
  13724. name: "Gigamacro",
  13725. height: math.unit(200000, "miles")
  13726. },
  13727. ]
  13728. ))
  13729. characterMakers.push(() => makeCharacter(
  13730. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13731. {
  13732. front: {
  13733. height: math.unit(6, "feet"),
  13734. weight: math.unit(120, "lb"),
  13735. name: "Front",
  13736. image: {
  13737. source: "./media/characters/vance/front.svg",
  13738. extra: 1980 / 1890,
  13739. bottom: 0.09
  13740. }
  13741. },
  13742. back: {
  13743. height: math.unit(6, "feet"),
  13744. weight: math.unit(120, "lb"),
  13745. name: "Back",
  13746. image: {
  13747. source: "./media/characters/vance/back.svg",
  13748. extra: 2081 / 1994,
  13749. bottom: 0.014
  13750. }
  13751. },
  13752. hand: {
  13753. height: math.unit(0.88, "feet"),
  13754. name: "Hand",
  13755. image: {
  13756. source: "./media/characters/vance/hand.svg"
  13757. }
  13758. },
  13759. foot: {
  13760. height: math.unit(0.64, "feet"),
  13761. name: "Foot",
  13762. image: {
  13763. source: "./media/characters/vance/foot.svg"
  13764. }
  13765. },
  13766. },
  13767. [
  13768. {
  13769. name: "Small",
  13770. height: math.unit(90, "feet"),
  13771. default: true
  13772. },
  13773. {
  13774. name: "Macro",
  13775. height: math.unit(100, "meters")
  13776. },
  13777. {
  13778. name: "Megamacro",
  13779. height: math.unit(15, "miles")
  13780. },
  13781. ]
  13782. ))
  13783. characterMakers.push(() => makeCharacter(
  13784. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13785. {
  13786. front: {
  13787. height: math.unit(6, "feet"),
  13788. weight: math.unit(180, "lb"),
  13789. name: "Front",
  13790. image: {
  13791. source: "./media/characters/xochitl/front.svg",
  13792. extra: 2297 / 2261,
  13793. bottom: 0.065
  13794. }
  13795. },
  13796. back: {
  13797. height: math.unit(6, "feet"),
  13798. weight: math.unit(180, "lb"),
  13799. name: "Back",
  13800. image: {
  13801. source: "./media/characters/xochitl/back.svg",
  13802. extra: 2386 / 2354,
  13803. bottom: 0.01
  13804. }
  13805. },
  13806. foot: {
  13807. height: math.unit(6 / 5 * 1.15, "feet"),
  13808. weight: math.unit(150, "lb"),
  13809. name: "Foot",
  13810. image: {
  13811. source: "./media/characters/xochitl/foot.svg"
  13812. }
  13813. },
  13814. },
  13815. [
  13816. {
  13817. name: "Macro",
  13818. height: math.unit(80, "feet")
  13819. },
  13820. {
  13821. name: "Macro+",
  13822. height: math.unit(400, "feet"),
  13823. default: true
  13824. },
  13825. {
  13826. name: "Gigamacro",
  13827. height: math.unit(80000, "miles")
  13828. },
  13829. {
  13830. name: "Gigamacro+",
  13831. height: math.unit(400000, "miles")
  13832. },
  13833. {
  13834. name: "Teramacro",
  13835. height: math.unit(300, "AU")
  13836. },
  13837. ]
  13838. ))
  13839. characterMakers.push(() => makeCharacter(
  13840. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13841. {
  13842. front: {
  13843. height: math.unit(6, "feet"),
  13844. weight: math.unit(150, "lb"),
  13845. name: "Front",
  13846. image: {
  13847. source: "./media/characters/vincent/front.svg",
  13848. extra: 1130 / 1080,
  13849. bottom: 0.055
  13850. }
  13851. },
  13852. beak: {
  13853. height: math.unit(6 * 0.1, "feet"),
  13854. name: "Beak",
  13855. image: {
  13856. source: "./media/characters/vincent/beak.svg"
  13857. }
  13858. },
  13859. hand: {
  13860. height: math.unit(6 * 0.85, "feet"),
  13861. weight: math.unit(150, "lb"),
  13862. name: "Hand",
  13863. image: {
  13864. source: "./media/characters/vincent/hand.svg"
  13865. }
  13866. },
  13867. foot: {
  13868. height: math.unit(6 * 0.19, "feet"),
  13869. weight: math.unit(150, "lb"),
  13870. name: "Foot",
  13871. image: {
  13872. source: "./media/characters/vincent/foot.svg"
  13873. }
  13874. },
  13875. },
  13876. [
  13877. {
  13878. name: "Base",
  13879. height: math.unit(6 + 5 / 12, "feet"),
  13880. default: true
  13881. },
  13882. {
  13883. name: "Macro",
  13884. height: math.unit(300, "feet")
  13885. },
  13886. {
  13887. name: "Megamacro",
  13888. height: math.unit(2, "miles")
  13889. },
  13890. {
  13891. name: "Gigamacro",
  13892. height: math.unit(1000, "miles")
  13893. },
  13894. ]
  13895. ))
  13896. characterMakers.push(() => makeCharacter(
  13897. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13898. {
  13899. front: {
  13900. height: math.unit(2, "meters"),
  13901. weight: math.unit(500, "kg"),
  13902. name: "Front",
  13903. image: {
  13904. source: "./media/characters/coatl/front.svg",
  13905. extra: 3948 / 3500,
  13906. bottom: 0.082
  13907. }
  13908. },
  13909. },
  13910. [
  13911. {
  13912. name: "Normal",
  13913. height: math.unit(4, "meters")
  13914. },
  13915. {
  13916. name: "Macro",
  13917. height: math.unit(100, "meters"),
  13918. default: true
  13919. },
  13920. {
  13921. name: "Macro+",
  13922. height: math.unit(300, "meters")
  13923. },
  13924. {
  13925. name: "Megamacro",
  13926. height: math.unit(3, "gigameters")
  13927. },
  13928. {
  13929. name: "Megamacro+",
  13930. height: math.unit(300, "terameters")
  13931. },
  13932. {
  13933. name: "Megamacro++",
  13934. height: math.unit(3, "lightyears")
  13935. },
  13936. ]
  13937. ))
  13938. characterMakers.push(() => makeCharacter(
  13939. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13940. {
  13941. front: {
  13942. height: math.unit(6, "feet"),
  13943. weight: math.unit(50, "kg"),
  13944. name: "front",
  13945. image: {
  13946. source: "./media/characters/shiroryu/front.svg",
  13947. extra: 1990 / 1935
  13948. }
  13949. },
  13950. },
  13951. [
  13952. {
  13953. name: "Mortal Mingling",
  13954. height: math.unit(3, "meters")
  13955. },
  13956. {
  13957. name: "Kaiju-ish",
  13958. height: math.unit(250, "meters")
  13959. },
  13960. {
  13961. name: "Somewhat Godly",
  13962. height: math.unit(400, "km"),
  13963. default: true
  13964. },
  13965. {
  13966. name: "Planetary",
  13967. height: math.unit(300, "megameters")
  13968. },
  13969. {
  13970. name: "Galaxy-dwarfing",
  13971. height: math.unit(450, "kiloparsecs")
  13972. },
  13973. {
  13974. name: "Universe Eater",
  13975. height: math.unit(150, "gigaparsecs")
  13976. },
  13977. {
  13978. name: "Almost Immeasurable",
  13979. height: math.unit(1.3e266, "yottaparsecs")
  13980. },
  13981. ]
  13982. ))
  13983. characterMakers.push(() => makeCharacter(
  13984. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13985. {
  13986. front: {
  13987. height: math.unit(6, "feet"),
  13988. weight: math.unit(150, "lb"),
  13989. name: "Front",
  13990. image: {
  13991. source: "./media/characters/umeko/front.svg",
  13992. extra: 1,
  13993. bottom: 0.019
  13994. }
  13995. },
  13996. frontArmored: {
  13997. height: math.unit(6, "feet"),
  13998. weight: math.unit(150, "lb"),
  13999. name: "Front (Armored)",
  14000. image: {
  14001. source: "./media/characters/umeko/front-armored.svg",
  14002. extra: 1,
  14003. bottom: 0.021
  14004. }
  14005. },
  14006. },
  14007. [
  14008. {
  14009. name: "Macro",
  14010. height: math.unit(220, "feet"),
  14011. default: true
  14012. },
  14013. {
  14014. name: "Guardian Dragon",
  14015. height: math.unit(50, "miles")
  14016. },
  14017. {
  14018. name: "Cosmic",
  14019. height: math.unit(800000, "miles")
  14020. },
  14021. ]
  14022. ))
  14023. characterMakers.push(() => makeCharacter(
  14024. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14025. {
  14026. front: {
  14027. height: math.unit(6, "feet"),
  14028. weight: math.unit(150, "lb"),
  14029. name: "Front",
  14030. image: {
  14031. source: "./media/characters/cassidy/front.svg",
  14032. extra: 1,
  14033. bottom: 0.043
  14034. }
  14035. },
  14036. },
  14037. [
  14038. {
  14039. name: "Canon Height",
  14040. height: math.unit(120, "feet"),
  14041. default: true
  14042. },
  14043. {
  14044. name: "Macro+",
  14045. height: math.unit(400, "feet")
  14046. },
  14047. {
  14048. name: "Macro++",
  14049. height: math.unit(4000, "feet")
  14050. },
  14051. {
  14052. name: "Megamacro",
  14053. height: math.unit(3, "miles")
  14054. },
  14055. ]
  14056. ))
  14057. characterMakers.push(() => makeCharacter(
  14058. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14059. {
  14060. front: {
  14061. height: math.unit(6, "feet"),
  14062. weight: math.unit(150, "lb"),
  14063. name: "Front",
  14064. image: {
  14065. source: "./media/characters/isaac/front.svg",
  14066. extra: 896 / 815,
  14067. bottom: 0.11
  14068. }
  14069. },
  14070. },
  14071. [
  14072. {
  14073. name: "Human Size",
  14074. height: math.unit(8, "feet"),
  14075. default: true
  14076. },
  14077. {
  14078. name: "Macro",
  14079. height: math.unit(400, "feet")
  14080. },
  14081. {
  14082. name: "Megamacro",
  14083. height: math.unit(50, "miles")
  14084. },
  14085. {
  14086. name: "Canon Height",
  14087. height: math.unit(200, "AU")
  14088. },
  14089. ]
  14090. ))
  14091. characterMakers.push(() => makeCharacter(
  14092. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14093. {
  14094. front: {
  14095. height: math.unit(6, "feet"),
  14096. weight: math.unit(72, "kg"),
  14097. name: "Front",
  14098. image: {
  14099. source: "./media/characters/sleekit/front.svg",
  14100. extra: 4693 / 4487,
  14101. bottom: 0.012
  14102. }
  14103. },
  14104. },
  14105. [
  14106. {
  14107. name: "Minimum Height",
  14108. height: math.unit(10, "meters")
  14109. },
  14110. {
  14111. name: "Smaller",
  14112. height: math.unit(25, "meters")
  14113. },
  14114. {
  14115. name: "Larger",
  14116. height: math.unit(38, "meters"),
  14117. default: true
  14118. },
  14119. {
  14120. name: "Maximum height",
  14121. height: math.unit(100, "meters")
  14122. },
  14123. ]
  14124. ))
  14125. characterMakers.push(() => makeCharacter(
  14126. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14127. {
  14128. front: {
  14129. height: math.unit(6, "feet"),
  14130. weight: math.unit(150, "lb"),
  14131. name: "Front",
  14132. image: {
  14133. source: "./media/characters/nillia/front.svg",
  14134. extra: 2195 / 2037,
  14135. bottom: 0.005
  14136. }
  14137. },
  14138. back: {
  14139. height: math.unit(6, "feet"),
  14140. weight: math.unit(150, "lb"),
  14141. name: "Back",
  14142. image: {
  14143. source: "./media/characters/nillia/back.svg",
  14144. extra: 2195 / 2037,
  14145. bottom: 0.005
  14146. }
  14147. },
  14148. },
  14149. [
  14150. {
  14151. name: "Canon Height",
  14152. height: math.unit(489, "feet"),
  14153. default: true
  14154. }
  14155. ]
  14156. ))
  14157. characterMakers.push(() => makeCharacter(
  14158. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14159. {
  14160. front: {
  14161. height: math.unit(6, "feet"),
  14162. weight: math.unit(150, "lb"),
  14163. name: "Front",
  14164. image: {
  14165. source: "./media/characters/mesmyriza/front.svg",
  14166. extra: 2067 / 1784,
  14167. bottom: 0.035
  14168. }
  14169. },
  14170. foot: {
  14171. height: math.unit(6 / (250 / 35), "feet"),
  14172. name: "Foot",
  14173. image: {
  14174. source: "./media/characters/mesmyriza/foot.svg"
  14175. }
  14176. },
  14177. },
  14178. [
  14179. {
  14180. name: "Macro",
  14181. height: math.unit(457, "meters"),
  14182. default: true
  14183. },
  14184. {
  14185. name: "Megamacro",
  14186. height: math.unit(8, "megameters")
  14187. },
  14188. ]
  14189. ))
  14190. characterMakers.push(() => makeCharacter(
  14191. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14192. {
  14193. front: {
  14194. height: math.unit(6, "feet"),
  14195. weight: math.unit(250, "lb"),
  14196. name: "Front",
  14197. image: {
  14198. source: "./media/characters/saudade/front.svg",
  14199. extra: 1172 / 1139,
  14200. bottom: 0.035
  14201. }
  14202. },
  14203. },
  14204. [
  14205. {
  14206. name: "Micro",
  14207. height: math.unit(3, "inches")
  14208. },
  14209. {
  14210. name: "Normal",
  14211. height: math.unit(6, "feet"),
  14212. default: true
  14213. },
  14214. {
  14215. name: "Macro",
  14216. height: math.unit(50, "feet")
  14217. },
  14218. {
  14219. name: "Megamacro",
  14220. height: math.unit(2800, "feet")
  14221. },
  14222. ]
  14223. ))
  14224. characterMakers.push(() => makeCharacter(
  14225. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14226. {
  14227. front: {
  14228. height: math.unit(5 + 4 / 12, "feet"),
  14229. weight: math.unit(100, "lb"),
  14230. name: "Front",
  14231. image: {
  14232. source: "./media/characters/keireer/front.svg",
  14233. extra: 716 / 666,
  14234. bottom: 0.05
  14235. }
  14236. },
  14237. },
  14238. [
  14239. {
  14240. name: "Normal",
  14241. height: math.unit(5 + 4 / 12, "feet"),
  14242. default: true
  14243. },
  14244. ]
  14245. ))
  14246. characterMakers.push(() => makeCharacter(
  14247. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14248. {
  14249. front: {
  14250. height: math.unit(6, "feet"),
  14251. weight: math.unit(90, "kg"),
  14252. name: "Front",
  14253. image: {
  14254. source: "./media/characters/mirja/front.svg",
  14255. extra: 1789 / 1683,
  14256. bottom: 0.05
  14257. }
  14258. },
  14259. frontDressed: {
  14260. height: math.unit(6, "feet"),
  14261. weight: math.unit(90, "lb"),
  14262. name: "Front (Dressed)",
  14263. image: {
  14264. source: "./media/characters/mirja/front-dressed.svg",
  14265. extra: 1789 / 1683,
  14266. bottom: 0.05
  14267. }
  14268. },
  14269. back: {
  14270. height: math.unit(6, "feet"),
  14271. weight: math.unit(90, "lb"),
  14272. name: "Back",
  14273. image: {
  14274. source: "./media/characters/mirja/back.svg",
  14275. extra: 953 / 917,
  14276. bottom: 0.017
  14277. }
  14278. },
  14279. },
  14280. [
  14281. {
  14282. name: "\"Incognito\"",
  14283. height: math.unit(3, "meters")
  14284. },
  14285. {
  14286. name: "Strolling Size",
  14287. height: math.unit(15, "km")
  14288. },
  14289. {
  14290. name: "Larger Strolling Size",
  14291. height: math.unit(400, "km")
  14292. },
  14293. {
  14294. name: "Preferred Size",
  14295. height: math.unit(5000, "km")
  14296. },
  14297. {
  14298. name: "True Size",
  14299. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14300. default: true
  14301. },
  14302. ]
  14303. ))
  14304. characterMakers.push(() => makeCharacter(
  14305. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14306. {
  14307. front: {
  14308. height: math.unit(15, "feet"),
  14309. weight: math.unit(880, "kg"),
  14310. name: "Front",
  14311. image: {
  14312. source: "./media/characters/nightraver/front.svg",
  14313. extra: 2444 / 2160,
  14314. bottom: 0.027
  14315. }
  14316. },
  14317. back: {
  14318. height: math.unit(15, "feet"),
  14319. weight: math.unit(880, "kg"),
  14320. name: "Back",
  14321. image: {
  14322. source: "./media/characters/nightraver/back.svg",
  14323. extra: 2309 / 2180,
  14324. bottom: 0.005
  14325. }
  14326. },
  14327. sole: {
  14328. height: math.unit(2.878, "feet"),
  14329. name: "Sole",
  14330. image: {
  14331. source: "./media/characters/nightraver/sole.svg"
  14332. }
  14333. },
  14334. foot: {
  14335. height: math.unit(2.285, "feet"),
  14336. name: "Foot",
  14337. image: {
  14338. source: "./media/characters/nightraver/foot.svg"
  14339. }
  14340. },
  14341. maw: {
  14342. height: math.unit(2.67, "feet"),
  14343. name: "Maw",
  14344. image: {
  14345. source: "./media/characters/nightraver/maw.svg"
  14346. }
  14347. },
  14348. },
  14349. [
  14350. {
  14351. name: "Micro",
  14352. height: math.unit(1, "cm")
  14353. },
  14354. {
  14355. name: "Normal",
  14356. height: math.unit(15, "feet"),
  14357. default: true
  14358. },
  14359. {
  14360. name: "Macro",
  14361. height: math.unit(300, "feet")
  14362. },
  14363. {
  14364. name: "Megamacro",
  14365. height: math.unit(300, "miles")
  14366. },
  14367. {
  14368. name: "Gigamacro",
  14369. height: math.unit(10000, "miles")
  14370. },
  14371. ]
  14372. ))
  14373. characterMakers.push(() => makeCharacter(
  14374. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14375. {
  14376. side: {
  14377. height: math.unit(2, "inches"),
  14378. weight: math.unit(5, "grams"),
  14379. name: "Side",
  14380. image: {
  14381. source: "./media/characters/arc/side.svg"
  14382. }
  14383. },
  14384. },
  14385. [
  14386. {
  14387. name: "Micro",
  14388. height: math.unit(2, "inches"),
  14389. default: true
  14390. },
  14391. ]
  14392. ))
  14393. characterMakers.push(() => makeCharacter(
  14394. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14395. {
  14396. front: {
  14397. height: math.unit(1.1938, "meters"),
  14398. weight: math.unit(54, "kg"),
  14399. name: "Front",
  14400. image: {
  14401. source: "./media/characters/nebula-shahar/front.svg",
  14402. extra: 1642 / 1436,
  14403. bottom: 0.06
  14404. }
  14405. },
  14406. },
  14407. [
  14408. {
  14409. name: "Megamicro",
  14410. height: math.unit(0.3, "mm")
  14411. },
  14412. {
  14413. name: "Micro",
  14414. height: math.unit(3, "cm")
  14415. },
  14416. {
  14417. name: "Normal",
  14418. height: math.unit(138, "cm"),
  14419. default: true
  14420. },
  14421. {
  14422. name: "Macro",
  14423. height: math.unit(30, "m")
  14424. },
  14425. ]
  14426. ))
  14427. characterMakers.push(() => makeCharacter(
  14428. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14429. {
  14430. front: {
  14431. height: math.unit(5.24, "feet"),
  14432. weight: math.unit(150, "lb"),
  14433. name: "Front",
  14434. image: {
  14435. source: "./media/characters/shayla/front.svg",
  14436. extra: 1512 / 1414,
  14437. bottom: 0.01
  14438. }
  14439. },
  14440. back: {
  14441. height: math.unit(5.24, "feet"),
  14442. weight: math.unit(150, "lb"),
  14443. name: "Back",
  14444. image: {
  14445. source: "./media/characters/shayla/back.svg",
  14446. extra: 1512 / 1414
  14447. }
  14448. },
  14449. hand: {
  14450. height: math.unit(0.7781496062992126, "feet"),
  14451. name: "Hand",
  14452. image: {
  14453. source: "./media/characters/shayla/hand.svg"
  14454. }
  14455. },
  14456. foot: {
  14457. height: math.unit(1.4206036745406823, "feet"),
  14458. name: "Foot",
  14459. image: {
  14460. source: "./media/characters/shayla/foot.svg"
  14461. }
  14462. },
  14463. },
  14464. [
  14465. {
  14466. name: "Micro",
  14467. height: math.unit(0.32, "feet")
  14468. },
  14469. {
  14470. name: "Normal",
  14471. height: math.unit(5.24, "feet"),
  14472. default: true
  14473. },
  14474. {
  14475. name: "Macro",
  14476. height: math.unit(492.12, "feet")
  14477. },
  14478. {
  14479. name: "Megamacro",
  14480. height: math.unit(186.41, "miles")
  14481. },
  14482. ]
  14483. ))
  14484. characterMakers.push(() => makeCharacter(
  14485. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14486. {
  14487. front: {
  14488. height: math.unit(2.2, "m"),
  14489. weight: math.unit(120, "kg"),
  14490. name: "Front",
  14491. image: {
  14492. source: "./media/characters/pia-jr/front.svg",
  14493. extra: 1000 / 970,
  14494. bottom: 0.035
  14495. }
  14496. },
  14497. hand: {
  14498. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14499. name: "Hand",
  14500. image: {
  14501. source: "./media/characters/pia-jr/hand.svg"
  14502. }
  14503. },
  14504. paw: {
  14505. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14506. name: "Paw",
  14507. image: {
  14508. source: "./media/characters/pia-jr/paw.svg"
  14509. }
  14510. },
  14511. },
  14512. [
  14513. {
  14514. name: "Micro",
  14515. height: math.unit(1.2, "cm")
  14516. },
  14517. {
  14518. name: "Normal",
  14519. height: math.unit(2.2, "m"),
  14520. default: true
  14521. },
  14522. {
  14523. name: "Macro",
  14524. height: math.unit(180, "m")
  14525. },
  14526. {
  14527. name: "Megamacro",
  14528. height: math.unit(420, "km")
  14529. },
  14530. ]
  14531. ))
  14532. characterMakers.push(() => makeCharacter(
  14533. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14534. {
  14535. front: {
  14536. height: math.unit(2, "m"),
  14537. weight: math.unit(115, "kg"),
  14538. name: "Front",
  14539. image: {
  14540. source: "./media/characters/pia-sr/front.svg",
  14541. extra: 760 / 730,
  14542. bottom: 0.015
  14543. }
  14544. },
  14545. back: {
  14546. height: math.unit(2, "m"),
  14547. weight: math.unit(115, "kg"),
  14548. name: "Back",
  14549. image: {
  14550. source: "./media/characters/pia-sr/back.svg",
  14551. extra: 760 / 730,
  14552. bottom: 0.01
  14553. }
  14554. },
  14555. hand: {
  14556. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14557. name: "Hand",
  14558. image: {
  14559. source: "./media/characters/pia-sr/hand.svg"
  14560. }
  14561. },
  14562. foot: {
  14563. height: math.unit(1.83, "feet"),
  14564. name: "Foot",
  14565. image: {
  14566. source: "./media/characters/pia-sr/foot.svg"
  14567. }
  14568. },
  14569. },
  14570. [
  14571. {
  14572. name: "Micro",
  14573. height: math.unit(88, "mm")
  14574. },
  14575. {
  14576. name: "Normal",
  14577. height: math.unit(2, "m"),
  14578. default: true
  14579. },
  14580. {
  14581. name: "Macro",
  14582. height: math.unit(200, "m")
  14583. },
  14584. {
  14585. name: "Megamacro",
  14586. height: math.unit(420, "km")
  14587. },
  14588. ]
  14589. ))
  14590. characterMakers.push(() => makeCharacter(
  14591. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14592. {
  14593. front: {
  14594. height: math.unit(8 + 2 / 12, "feet"),
  14595. weight: math.unit(300, "lb"),
  14596. name: "Front",
  14597. image: {
  14598. source: "./media/characters/kibibyte/front.svg",
  14599. extra: 2221 / 2098,
  14600. bottom: 0.04
  14601. }
  14602. },
  14603. },
  14604. [
  14605. {
  14606. name: "Normal",
  14607. height: math.unit(8 + 2 / 12, "feet"),
  14608. default: true
  14609. },
  14610. {
  14611. name: "Socialable Macro",
  14612. height: math.unit(50, "feet")
  14613. },
  14614. {
  14615. name: "Macro",
  14616. height: math.unit(300, "feet")
  14617. },
  14618. {
  14619. name: "Megamacro",
  14620. height: math.unit(500, "miles")
  14621. },
  14622. ]
  14623. ))
  14624. characterMakers.push(() => makeCharacter(
  14625. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14626. {
  14627. front: {
  14628. height: math.unit(6, "feet"),
  14629. weight: math.unit(150, "lb"),
  14630. name: "Front",
  14631. image: {
  14632. source: "./media/characters/felix/front.svg",
  14633. extra: 762 / 722,
  14634. bottom: 0.02
  14635. }
  14636. },
  14637. frontClothed: {
  14638. height: math.unit(6, "feet"),
  14639. weight: math.unit(150, "lb"),
  14640. name: "Front (Clothed)",
  14641. image: {
  14642. source: "./media/characters/felix/front-clothed.svg",
  14643. extra: 762 / 722,
  14644. bottom: 0.02
  14645. }
  14646. },
  14647. },
  14648. [
  14649. {
  14650. name: "Normal",
  14651. height: math.unit(6 + 8 / 12, "feet"),
  14652. default: true
  14653. },
  14654. {
  14655. name: "Macro",
  14656. height: math.unit(2600, "feet")
  14657. },
  14658. {
  14659. name: "Megamacro",
  14660. height: math.unit(450, "miles")
  14661. },
  14662. ]
  14663. ))
  14664. characterMakers.push(() => makeCharacter(
  14665. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14666. {
  14667. front: {
  14668. height: math.unit(6 + 1 / 12, "feet"),
  14669. weight: math.unit(250, "lb"),
  14670. name: "Front",
  14671. image: {
  14672. source: "./media/characters/tobo/front.svg",
  14673. extra: 608 / 586,
  14674. bottom: 0.023
  14675. }
  14676. },
  14677. back: {
  14678. height: math.unit(6 + 1 / 12, "feet"),
  14679. weight: math.unit(250, "lb"),
  14680. name: "Back",
  14681. image: {
  14682. source: "./media/characters/tobo/back.svg",
  14683. extra: 608 / 586
  14684. }
  14685. },
  14686. },
  14687. [
  14688. {
  14689. name: "Nano",
  14690. height: math.unit(2, "nm")
  14691. },
  14692. {
  14693. name: "Megamicro",
  14694. height: math.unit(0.1, "mm")
  14695. },
  14696. {
  14697. name: "Micro",
  14698. height: math.unit(1, "inch"),
  14699. default: true
  14700. },
  14701. {
  14702. name: "Human-sized",
  14703. height: math.unit(6 + 1 / 12, "feet")
  14704. },
  14705. {
  14706. name: "Macro",
  14707. height: math.unit(250, "feet")
  14708. },
  14709. {
  14710. name: "Megamacro",
  14711. height: math.unit(75, "miles")
  14712. },
  14713. {
  14714. name: "Texas-sized",
  14715. height: math.unit(750, "miles")
  14716. },
  14717. {
  14718. name: "Teramacro",
  14719. height: math.unit(50000, "miles")
  14720. },
  14721. ]
  14722. ))
  14723. characterMakers.push(() => makeCharacter(
  14724. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14725. {
  14726. front: {
  14727. height: math.unit(6, "feet"),
  14728. weight: math.unit(269, "lb"),
  14729. name: "Front",
  14730. image: {
  14731. source: "./media/characters/danny-kapowsky/front.svg",
  14732. extra: 766 / 736,
  14733. bottom: 0.044
  14734. }
  14735. },
  14736. back: {
  14737. height: math.unit(6, "feet"),
  14738. weight: math.unit(269, "lb"),
  14739. name: "Back",
  14740. image: {
  14741. source: "./media/characters/danny-kapowsky/back.svg",
  14742. extra: 797 / 760,
  14743. bottom: 0.025
  14744. }
  14745. },
  14746. },
  14747. [
  14748. {
  14749. name: "Macro",
  14750. height: math.unit(150, "feet"),
  14751. default: true
  14752. },
  14753. {
  14754. name: "Macro+",
  14755. height: math.unit(200, "feet")
  14756. },
  14757. {
  14758. name: "Macro++",
  14759. height: math.unit(300, "feet")
  14760. },
  14761. {
  14762. name: "Macro+++",
  14763. height: math.unit(400, "feet")
  14764. },
  14765. ]
  14766. ))
  14767. characterMakers.push(() => makeCharacter(
  14768. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14769. {
  14770. side: {
  14771. height: math.unit(6, "feet"),
  14772. weight: math.unit(170, "lb"),
  14773. name: "Side",
  14774. image: {
  14775. source: "./media/characters/finn/side.svg",
  14776. extra: 1953 / 1807,
  14777. bottom: 0.057
  14778. }
  14779. },
  14780. },
  14781. [
  14782. {
  14783. name: "Megamacro",
  14784. height: math.unit(14445, "feet"),
  14785. default: true
  14786. },
  14787. ]
  14788. ))
  14789. characterMakers.push(() => makeCharacter(
  14790. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14791. {
  14792. front: {
  14793. height: math.unit(5 + 6 / 12, "feet"),
  14794. weight: math.unit(125, "lb"),
  14795. name: "Front",
  14796. image: {
  14797. source: "./media/characters/roy/front.svg",
  14798. extra: 1,
  14799. bottom: 0.11
  14800. }
  14801. },
  14802. },
  14803. [
  14804. {
  14805. name: "Micro",
  14806. height: math.unit(3, "inches"),
  14807. default: true
  14808. },
  14809. {
  14810. name: "Normal",
  14811. height: math.unit(5 + 6 / 12, "feet")
  14812. },
  14813. {
  14814. name: "Lesser Macro",
  14815. height: math.unit(60, "feet")
  14816. },
  14817. {
  14818. name: "Greater Macro",
  14819. height: math.unit(120, "feet")
  14820. },
  14821. ]
  14822. ))
  14823. characterMakers.push(() => makeCharacter(
  14824. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14825. {
  14826. front: {
  14827. height: math.unit(6, "feet"),
  14828. weight: math.unit(100, "lb"),
  14829. name: "Front",
  14830. image: {
  14831. source: "./media/characters/aevsivs/front.svg",
  14832. extra: 1,
  14833. bottom: 0.03
  14834. }
  14835. },
  14836. back: {
  14837. height: math.unit(6, "feet"),
  14838. weight: math.unit(100, "lb"),
  14839. name: "Back",
  14840. image: {
  14841. source: "./media/characters/aevsivs/back.svg"
  14842. }
  14843. },
  14844. },
  14845. [
  14846. {
  14847. name: "Micro",
  14848. height: math.unit(2, "inches"),
  14849. default: true
  14850. },
  14851. {
  14852. name: "Normal",
  14853. height: math.unit(5, "feet")
  14854. },
  14855. ]
  14856. ))
  14857. characterMakers.push(() => makeCharacter(
  14858. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14859. {
  14860. front: {
  14861. height: math.unit(5 + 7 / 12, "feet"),
  14862. weight: math.unit(159, "lb"),
  14863. name: "Front",
  14864. image: {
  14865. source: "./media/characters/hildegard/front.svg",
  14866. extra: 289 / 269,
  14867. bottom: 7.63 / 297.8
  14868. }
  14869. },
  14870. back: {
  14871. height: math.unit(5 + 7 / 12, "feet"),
  14872. weight: math.unit(159, "lb"),
  14873. name: "Back",
  14874. image: {
  14875. source: "./media/characters/hildegard/back.svg",
  14876. extra: 280 / 260,
  14877. bottom: 2.3 / 282
  14878. }
  14879. },
  14880. },
  14881. [
  14882. {
  14883. name: "Normal",
  14884. height: math.unit(5 + 7 / 12, "feet"),
  14885. default: true
  14886. },
  14887. ]
  14888. ))
  14889. characterMakers.push(() => makeCharacter(
  14890. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14891. {
  14892. bernard: {
  14893. height: math.unit(2 + 7 / 12, "feet"),
  14894. weight: math.unit(66, "lb"),
  14895. name: "Bernard",
  14896. rename: true,
  14897. image: {
  14898. source: "./media/characters/bernard-wilder/bernard.svg",
  14899. extra: 192 / 128,
  14900. bottom: 0.05
  14901. }
  14902. },
  14903. wilder: {
  14904. height: math.unit(5 + 8 / 12, "feet"),
  14905. weight: math.unit(143, "lb"),
  14906. name: "Wilder",
  14907. rename: true,
  14908. image: {
  14909. source: "./media/characters/bernard-wilder/wilder.svg",
  14910. extra: 361 / 312,
  14911. bottom: 0.02
  14912. }
  14913. },
  14914. },
  14915. [
  14916. {
  14917. name: "Normal",
  14918. height: math.unit(2 + 7 / 12, "feet"),
  14919. default: true
  14920. },
  14921. ]
  14922. ))
  14923. characterMakers.push(() => makeCharacter(
  14924. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14925. {
  14926. anthro: {
  14927. height: math.unit(6 + 1 / 12, "feet"),
  14928. weight: math.unit(155, "lb"),
  14929. name: "Anthro",
  14930. image: {
  14931. source: "./media/characters/hearth/anthro.svg",
  14932. extra: 260 / 250,
  14933. bottom: 0.02
  14934. }
  14935. },
  14936. feral: {
  14937. height: math.unit(3.78, "feet"),
  14938. weight: math.unit(35, "kg"),
  14939. name: "Feral",
  14940. image: {
  14941. source: "./media/characters/hearth/feral.svg",
  14942. extra: 153 / 135,
  14943. bottom: 0.03
  14944. }
  14945. },
  14946. },
  14947. [
  14948. {
  14949. name: "Normal",
  14950. height: math.unit(6 + 1 / 12, "feet"),
  14951. default: true
  14952. },
  14953. ]
  14954. ))
  14955. characterMakers.push(() => makeCharacter(
  14956. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14957. {
  14958. front: {
  14959. height: math.unit(6, "feet"),
  14960. weight: math.unit(182, "lb"),
  14961. name: "Front",
  14962. image: {
  14963. source: "./media/characters/ingrid/front.svg",
  14964. extra: 294 / 268,
  14965. bottom: 0.027
  14966. }
  14967. },
  14968. },
  14969. [
  14970. {
  14971. name: "Normal",
  14972. height: math.unit(6, "feet"),
  14973. default: true
  14974. },
  14975. ]
  14976. ))
  14977. characterMakers.push(() => makeCharacter(
  14978. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14979. {
  14980. eevee: {
  14981. height: math.unit(2 + 10 / 12, "feet"),
  14982. weight: math.unit(86, "lb"),
  14983. name: "Malgam",
  14984. image: {
  14985. source: "./media/characters/malgam/eevee.svg",
  14986. extra: 218 / 180,
  14987. bottom: 0.2
  14988. }
  14989. },
  14990. sylveon: {
  14991. height: math.unit(4, "feet"),
  14992. weight: math.unit(101, "lb"),
  14993. name: "Future Malgam",
  14994. rename: true,
  14995. image: {
  14996. source: "./media/characters/malgam/sylveon.svg",
  14997. extra: 371 / 325,
  14998. bottom: 0.015
  14999. }
  15000. },
  15001. gigantamax: {
  15002. height: math.unit(50, "feet"),
  15003. name: "Gigantamax Malgam",
  15004. rename: true,
  15005. image: {
  15006. source: "./media/characters/malgam/gigantamax.svg"
  15007. }
  15008. },
  15009. },
  15010. [
  15011. {
  15012. name: "Normal",
  15013. height: math.unit(2 + 10 / 12, "feet"),
  15014. default: true
  15015. },
  15016. ]
  15017. ))
  15018. characterMakers.push(() => makeCharacter(
  15019. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15020. {
  15021. front: {
  15022. height: math.unit(5 + 11 / 12, "feet"),
  15023. weight: math.unit(188, "lb"),
  15024. name: "Front",
  15025. image: {
  15026. source: "./media/characters/fleur/front.svg",
  15027. extra: 309 / 283,
  15028. bottom: 0.007
  15029. }
  15030. },
  15031. },
  15032. [
  15033. {
  15034. name: "Normal",
  15035. height: math.unit(5 + 11 / 12, "feet"),
  15036. default: true
  15037. },
  15038. ]
  15039. ))
  15040. characterMakers.push(() => makeCharacter(
  15041. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15042. {
  15043. front: {
  15044. height: math.unit(5 + 4 / 12, "feet"),
  15045. weight: math.unit(122, "lb"),
  15046. name: "Front",
  15047. image: {
  15048. source: "./media/characters/jude/front.svg",
  15049. extra: 288 / 273,
  15050. bottom: 0.03
  15051. }
  15052. },
  15053. },
  15054. [
  15055. {
  15056. name: "Normal",
  15057. height: math.unit(5 + 4 / 12, "feet"),
  15058. default: true
  15059. },
  15060. ]
  15061. ))
  15062. characterMakers.push(() => makeCharacter(
  15063. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15064. {
  15065. front: {
  15066. height: math.unit(5 + 11 / 12, "feet"),
  15067. weight: math.unit(190, "lb"),
  15068. name: "Front",
  15069. image: {
  15070. source: "./media/characters/seara/front.svg",
  15071. extra: 1,
  15072. bottom: 0.05
  15073. }
  15074. },
  15075. },
  15076. [
  15077. {
  15078. name: "Normal",
  15079. height: math.unit(5 + 11 / 12, "feet"),
  15080. default: true
  15081. },
  15082. ]
  15083. ))
  15084. characterMakers.push(() => makeCharacter(
  15085. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15086. {
  15087. front: {
  15088. height: math.unit(16 + 5 / 12, "feet"),
  15089. weight: math.unit(524, "lb"),
  15090. name: "Front",
  15091. image: {
  15092. source: "./media/characters/caspian/front.svg",
  15093. extra: 1,
  15094. bottom: 0.04
  15095. }
  15096. },
  15097. },
  15098. [
  15099. {
  15100. name: "Normal",
  15101. height: math.unit(16 + 5 / 12, "feet"),
  15102. default: true
  15103. },
  15104. ]
  15105. ))
  15106. characterMakers.push(() => makeCharacter(
  15107. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15108. {
  15109. front: {
  15110. height: math.unit(5 + 7 / 12, "feet"),
  15111. weight: math.unit(170, "lb"),
  15112. name: "Front",
  15113. image: {
  15114. source: "./media/characters/mika/front.svg",
  15115. extra: 1,
  15116. bottom: 0.016
  15117. }
  15118. },
  15119. },
  15120. [
  15121. {
  15122. name: "Normal",
  15123. height: math.unit(5 + 7 / 12, "feet"),
  15124. default: true
  15125. },
  15126. ]
  15127. ))
  15128. characterMakers.push(() => makeCharacter(
  15129. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15130. {
  15131. front: {
  15132. height: math.unit(6 + 2 / 12, "feet"),
  15133. weight: math.unit(268, "lb"),
  15134. name: "Front",
  15135. image: {
  15136. source: "./media/characters/sol/front.svg",
  15137. extra: 247 / 231,
  15138. bottom: 0.05
  15139. }
  15140. },
  15141. },
  15142. [
  15143. {
  15144. name: "Normal",
  15145. height: math.unit(6 + 2 / 12, "feet"),
  15146. default: true
  15147. },
  15148. ]
  15149. ))
  15150. characterMakers.push(() => makeCharacter(
  15151. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15152. {
  15153. buizel: {
  15154. height: math.unit(2 + 5 / 12, "feet"),
  15155. weight: math.unit(87, "lb"),
  15156. name: "Buizel",
  15157. image: {
  15158. source: "./media/characters/umiko/buizel.svg",
  15159. extra: 172 / 157,
  15160. bottom: 0.01
  15161. }
  15162. },
  15163. floatzel: {
  15164. height: math.unit(5 + 9 / 12, "feet"),
  15165. weight: math.unit(250, "lb"),
  15166. name: "Floatzel",
  15167. image: {
  15168. source: "./media/characters/umiko/floatzel.svg",
  15169. extra: 262 / 248
  15170. }
  15171. },
  15172. },
  15173. [
  15174. {
  15175. name: "Normal",
  15176. height: math.unit(2 + 5 / 12, "feet"),
  15177. default: true
  15178. },
  15179. ]
  15180. ))
  15181. characterMakers.push(() => makeCharacter(
  15182. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15183. {
  15184. front: {
  15185. height: math.unit(6 + 2 / 12, "feet"),
  15186. weight: math.unit(146, "lb"),
  15187. name: "Front",
  15188. image: {
  15189. source: "./media/characters/iliac/front.svg",
  15190. extra: 389 / 365,
  15191. bottom: 0.035
  15192. }
  15193. },
  15194. },
  15195. [
  15196. {
  15197. name: "Normal",
  15198. height: math.unit(6 + 2 / 12, "feet"),
  15199. default: true
  15200. },
  15201. ]
  15202. ))
  15203. characterMakers.push(() => makeCharacter(
  15204. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15205. {
  15206. front: {
  15207. height: math.unit(6, "feet"),
  15208. weight: math.unit(170, "lb"),
  15209. name: "Front",
  15210. image: {
  15211. source: "./media/characters/topaz/front.svg",
  15212. extra: 317 / 303,
  15213. bottom: 0.055
  15214. }
  15215. },
  15216. },
  15217. [
  15218. {
  15219. name: "Normal",
  15220. height: math.unit(6, "feet"),
  15221. default: true
  15222. },
  15223. ]
  15224. ))
  15225. characterMakers.push(() => makeCharacter(
  15226. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15227. {
  15228. front: {
  15229. height: math.unit(5 + 11 / 12, "feet"),
  15230. weight: math.unit(144, "lb"),
  15231. name: "Front",
  15232. image: {
  15233. source: "./media/characters/gabriel/front.svg",
  15234. extra: 285 / 262,
  15235. bottom: 0.004
  15236. }
  15237. },
  15238. },
  15239. [
  15240. {
  15241. name: "Normal",
  15242. height: math.unit(5 + 11 / 12, "feet"),
  15243. default: true
  15244. },
  15245. ]
  15246. ))
  15247. characterMakers.push(() => makeCharacter(
  15248. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15249. {
  15250. side: {
  15251. height: math.unit(6 + 5 / 12, "feet"),
  15252. weight: math.unit(300, "lb"),
  15253. name: "Side",
  15254. image: {
  15255. source: "./media/characters/tempest-suicune/side.svg",
  15256. extra: 195 / 154,
  15257. bottom: 0.04
  15258. }
  15259. },
  15260. },
  15261. [
  15262. {
  15263. name: "Normal",
  15264. height: math.unit(6 + 5 / 12, "feet"),
  15265. default: true
  15266. },
  15267. ]
  15268. ))
  15269. characterMakers.push(() => makeCharacter(
  15270. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15271. {
  15272. front: {
  15273. height: math.unit(7 + 2 / 12, "feet"),
  15274. weight: math.unit(322, "lb"),
  15275. name: "Front",
  15276. image: {
  15277. source: "./media/characters/vulcan/front.svg",
  15278. extra: 154 / 147,
  15279. bottom: 0.04
  15280. }
  15281. },
  15282. },
  15283. [
  15284. {
  15285. name: "Normal",
  15286. height: math.unit(7 + 2 / 12, "feet"),
  15287. default: true
  15288. },
  15289. ]
  15290. ))
  15291. characterMakers.push(() => makeCharacter(
  15292. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15293. {
  15294. front: {
  15295. height: math.unit(5 + 10 / 12, "feet"),
  15296. weight: math.unit(264, "lb"),
  15297. name: "Front",
  15298. image: {
  15299. source: "./media/characters/gault/front.svg",
  15300. extra: 161 / 140,
  15301. bottom: 0.028
  15302. }
  15303. },
  15304. },
  15305. [
  15306. {
  15307. name: "Normal",
  15308. height: math.unit(5 + 10 / 12, "feet"),
  15309. default: true
  15310. },
  15311. ]
  15312. ))
  15313. characterMakers.push(() => makeCharacter(
  15314. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15315. {
  15316. front: {
  15317. height: math.unit(6, "feet"),
  15318. weight: math.unit(150, "lb"),
  15319. name: "Front",
  15320. image: {
  15321. source: "./media/characters/shard/front.svg",
  15322. extra: 273 / 238,
  15323. bottom: 0.02
  15324. }
  15325. },
  15326. },
  15327. [
  15328. {
  15329. name: "Normal",
  15330. height: math.unit(3 + 6 / 12, "feet"),
  15331. default: true
  15332. },
  15333. ]
  15334. ))
  15335. characterMakers.push(() => makeCharacter(
  15336. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15337. {
  15338. front: {
  15339. height: math.unit(5 + 11 / 12, "feet"),
  15340. weight: math.unit(146, "lb"),
  15341. name: "Front",
  15342. image: {
  15343. source: "./media/characters/ashe/front.svg",
  15344. extra: 400 / 373,
  15345. bottom: 0.01
  15346. }
  15347. },
  15348. },
  15349. [
  15350. {
  15351. name: "Normal",
  15352. height: math.unit(5 + 11 / 12, "feet"),
  15353. default: true
  15354. },
  15355. ]
  15356. ))
  15357. characterMakers.push(() => makeCharacter(
  15358. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15359. {
  15360. front: {
  15361. height: math.unit(5 + 5 / 12, "feet"),
  15362. weight: math.unit(135, "lb"),
  15363. name: "Front",
  15364. image: {
  15365. source: "./media/characters/beatrix/front.svg",
  15366. extra: 392 / 379,
  15367. bottom: 0.01
  15368. }
  15369. },
  15370. },
  15371. [
  15372. {
  15373. name: "Normal",
  15374. height: math.unit(6, "feet"),
  15375. default: true
  15376. },
  15377. ]
  15378. ))
  15379. characterMakers.push(() => makeCharacter(
  15380. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15381. {
  15382. front: {
  15383. height: math.unit(6, "feet"),
  15384. weight: math.unit(150, "lb"),
  15385. name: "Front",
  15386. image: {
  15387. source: "./media/characters/ignatius/front.svg",
  15388. extra: 245 / 222,
  15389. bottom: 0.01
  15390. }
  15391. },
  15392. },
  15393. [
  15394. {
  15395. name: "Normal",
  15396. height: math.unit(5 + 5 / 12, "feet"),
  15397. default: true
  15398. },
  15399. ]
  15400. ))
  15401. characterMakers.push(() => makeCharacter(
  15402. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15403. {
  15404. front: {
  15405. height: math.unit(6 + 2 / 12, "feet"),
  15406. weight: math.unit(138, "lb"),
  15407. name: "Front",
  15408. image: {
  15409. source: "./media/characters/mei-li/front.svg",
  15410. extra: 237 / 229,
  15411. bottom: 0.03
  15412. }
  15413. },
  15414. },
  15415. [
  15416. {
  15417. name: "Normal",
  15418. height: math.unit(6 + 2 / 12, "feet"),
  15419. default: true
  15420. },
  15421. ]
  15422. ))
  15423. characterMakers.push(() => makeCharacter(
  15424. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15425. {
  15426. front: {
  15427. height: math.unit(2 + 4 / 12, "feet"),
  15428. weight: math.unit(62, "lb"),
  15429. name: "Front",
  15430. image: {
  15431. source: "./media/characters/puru/front.svg",
  15432. extra: 206 / 149,
  15433. bottom: 0.06
  15434. }
  15435. },
  15436. },
  15437. [
  15438. {
  15439. name: "Normal",
  15440. height: math.unit(2 + 4 / 12, "feet"),
  15441. default: true
  15442. },
  15443. ]
  15444. ))
  15445. characterMakers.push(() => makeCharacter(
  15446. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15447. {
  15448. anthro: {
  15449. height: math.unit(5 + 8/12, "feet"),
  15450. weight: math.unit(200, "lb"),
  15451. energyNeed: math.unit(2000, "kcal"),
  15452. name: "Anthro",
  15453. image: {
  15454. source: "./media/characters/kee/anthro.svg",
  15455. extra: 3251/3184,
  15456. bottom: 250/3501
  15457. }
  15458. },
  15459. taur: {
  15460. height: math.unit(11, "feet"),
  15461. weight: math.unit(500, "lb"),
  15462. energyNeed: math.unit(5000, "kcal"),
  15463. name: "Taur",
  15464. image: {
  15465. source: "./media/characters/kee/taur.svg",
  15466. extra: 1362/1320,
  15467. bottom: 83/1445
  15468. }
  15469. },
  15470. },
  15471. [
  15472. {
  15473. name: "Normal",
  15474. height: math.unit(5 + 8/12, "feet"),
  15475. default: true
  15476. },
  15477. {
  15478. name: "Macro",
  15479. height: math.unit(35, "feet")
  15480. },
  15481. ]
  15482. ))
  15483. characterMakers.push(() => makeCharacter(
  15484. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15485. {
  15486. anthro: {
  15487. height: math.unit(7, "feet"),
  15488. weight: math.unit(190, "lb"),
  15489. name: "Anthro",
  15490. image: {
  15491. source: "./media/characters/cobalt-dracha/anthro.svg",
  15492. extra: 231 / 225,
  15493. bottom: 0.04
  15494. }
  15495. },
  15496. feral: {
  15497. height: math.unit(9 + 7 / 12, "feet"),
  15498. weight: math.unit(294, "lb"),
  15499. name: "Feral",
  15500. image: {
  15501. source: "./media/characters/cobalt-dracha/feral.svg",
  15502. extra: 692 / 633,
  15503. bottom: 0.05
  15504. }
  15505. },
  15506. },
  15507. [
  15508. {
  15509. name: "Normal",
  15510. height: math.unit(7, "feet"),
  15511. default: true
  15512. },
  15513. ]
  15514. ))
  15515. characterMakers.push(() => makeCharacter(
  15516. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15517. {
  15518. fallen: {
  15519. height: math.unit(11 + 8 / 12, "feet"),
  15520. weight: math.unit(485, "lb"),
  15521. name: "Java (Fallen)",
  15522. rename: true,
  15523. image: {
  15524. source: "./media/characters/java/fallen.svg",
  15525. extra: 226 / 208,
  15526. bottom: 0.005
  15527. }
  15528. },
  15529. godkin: {
  15530. height: math.unit(10 + 6 / 12, "feet"),
  15531. weight: math.unit(328, "lb"),
  15532. name: "Java (Godkin)",
  15533. rename: true,
  15534. image: {
  15535. source: "./media/characters/java/godkin.svg",
  15536. extra: 270 / 262,
  15537. bottom: 0.02
  15538. }
  15539. },
  15540. },
  15541. [
  15542. {
  15543. name: "Normal",
  15544. height: math.unit(11 + 8 / 12, "feet"),
  15545. default: true
  15546. },
  15547. ]
  15548. ))
  15549. characterMakers.push(() => makeCharacter(
  15550. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15551. {
  15552. front: {
  15553. height: math.unit(7 + 8 / 12, "feet"),
  15554. weight: math.unit(320, "lb"),
  15555. name: "Front",
  15556. image: {
  15557. source: "./media/characters/skoll/front.svg",
  15558. extra: 232 / 220,
  15559. bottom: 0.02
  15560. }
  15561. },
  15562. },
  15563. [
  15564. {
  15565. name: "Normal",
  15566. height: math.unit(7 + 8 / 12, "feet"),
  15567. default: true
  15568. },
  15569. ]
  15570. ))
  15571. characterMakers.push(() => makeCharacter(
  15572. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15573. {
  15574. front: {
  15575. height: math.unit(5 + 9 / 12, "feet"),
  15576. weight: math.unit(170, "lb"),
  15577. name: "Front",
  15578. image: {
  15579. source: "./media/characters/purna/front.svg",
  15580. extra: 239 / 229,
  15581. bottom: 0.01
  15582. }
  15583. },
  15584. },
  15585. [
  15586. {
  15587. name: "Normal",
  15588. height: math.unit(5 + 9 / 12, "feet"),
  15589. default: true
  15590. },
  15591. ]
  15592. ))
  15593. characterMakers.push(() => makeCharacter(
  15594. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15595. {
  15596. front: {
  15597. height: math.unit(5 + 9 / 12, "feet"),
  15598. weight: math.unit(142, "lb"),
  15599. name: "Front",
  15600. image: {
  15601. source: "./media/characters/kuva/front.svg",
  15602. extra: 281 / 271,
  15603. bottom: 0.006
  15604. }
  15605. },
  15606. },
  15607. [
  15608. {
  15609. name: "Normal",
  15610. height: math.unit(5 + 9 / 12, "feet"),
  15611. default: true
  15612. },
  15613. ]
  15614. ))
  15615. characterMakers.push(() => makeCharacter(
  15616. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15617. {
  15618. anthro: {
  15619. height: math.unit(9 + 2 / 12, "feet"),
  15620. weight: math.unit(270, "lb"),
  15621. name: "Anthro",
  15622. image: {
  15623. source: "./media/characters/embra/anthro.svg",
  15624. extra: 200 / 187,
  15625. bottom: 0.02
  15626. }
  15627. },
  15628. feral: {
  15629. height: math.unit(18 + 8 / 12, "feet"),
  15630. weight: math.unit(576, "lb"),
  15631. name: "Feral",
  15632. image: {
  15633. source: "./media/characters/embra/feral.svg",
  15634. extra: 152 / 137,
  15635. bottom: 0.037
  15636. }
  15637. },
  15638. },
  15639. [
  15640. {
  15641. name: "Normal",
  15642. height: math.unit(9 + 2 / 12, "feet"),
  15643. default: true
  15644. },
  15645. ]
  15646. ))
  15647. characterMakers.push(() => makeCharacter(
  15648. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15649. {
  15650. anthro: {
  15651. height: math.unit(10 + 9 / 12, "feet"),
  15652. weight: math.unit(224, "lb"),
  15653. name: "Anthro",
  15654. image: {
  15655. source: "./media/characters/grottos/anthro.svg",
  15656. extra: 350 / 332,
  15657. bottom: 0.045
  15658. }
  15659. },
  15660. feral: {
  15661. height: math.unit(20 + 7 / 12, "feet"),
  15662. weight: math.unit(629, "lb"),
  15663. name: "Feral",
  15664. image: {
  15665. source: "./media/characters/grottos/feral.svg",
  15666. extra: 207 / 190,
  15667. bottom: 0.05
  15668. }
  15669. },
  15670. },
  15671. [
  15672. {
  15673. name: "Normal",
  15674. height: math.unit(10 + 9 / 12, "feet"),
  15675. default: true
  15676. },
  15677. ]
  15678. ))
  15679. characterMakers.push(() => makeCharacter(
  15680. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15681. {
  15682. anthro: {
  15683. height: math.unit(9 + 6 / 12, "feet"),
  15684. weight: math.unit(298, "lb"),
  15685. name: "Anthro",
  15686. image: {
  15687. source: "./media/characters/frifna/anthro.svg",
  15688. extra: 282 / 269,
  15689. bottom: 0.015
  15690. }
  15691. },
  15692. feral: {
  15693. height: math.unit(16 + 2 / 12, "feet"),
  15694. weight: math.unit(624, "lb"),
  15695. name: "Feral",
  15696. image: {
  15697. source: "./media/characters/frifna/feral.svg"
  15698. }
  15699. },
  15700. },
  15701. [
  15702. {
  15703. name: "Normal",
  15704. height: math.unit(9 + 6 / 12, "feet"),
  15705. default: true
  15706. },
  15707. ]
  15708. ))
  15709. characterMakers.push(() => makeCharacter(
  15710. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15711. {
  15712. front: {
  15713. height: math.unit(6 + 2 / 12, "feet"),
  15714. weight: math.unit(168, "lb"),
  15715. name: "Front",
  15716. image: {
  15717. source: "./media/characters/elise/front.svg",
  15718. extra: 276 / 271
  15719. }
  15720. },
  15721. },
  15722. [
  15723. {
  15724. name: "Normal",
  15725. height: math.unit(6 + 2 / 12, "feet"),
  15726. default: true
  15727. },
  15728. ]
  15729. ))
  15730. characterMakers.push(() => makeCharacter(
  15731. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15732. {
  15733. front: {
  15734. height: math.unit(5 + 10 / 12, "feet"),
  15735. weight: math.unit(210, "lb"),
  15736. name: "Front",
  15737. image: {
  15738. source: "./media/characters/glade/front.svg",
  15739. extra: 258 / 247,
  15740. bottom: 0.008
  15741. }
  15742. },
  15743. },
  15744. [
  15745. {
  15746. name: "Normal",
  15747. height: math.unit(5 + 10 / 12, "feet"),
  15748. default: true
  15749. },
  15750. ]
  15751. ))
  15752. characterMakers.push(() => makeCharacter(
  15753. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15754. {
  15755. front: {
  15756. height: math.unit(5 + 10 / 12, "feet"),
  15757. weight: math.unit(129, "lb"),
  15758. name: "Front",
  15759. image: {
  15760. source: "./media/characters/rina/front.svg",
  15761. extra: 266 / 255,
  15762. bottom: 0.005
  15763. }
  15764. },
  15765. },
  15766. [
  15767. {
  15768. name: "Normal",
  15769. height: math.unit(5 + 10 / 12, "feet"),
  15770. default: true
  15771. },
  15772. ]
  15773. ))
  15774. characterMakers.push(() => makeCharacter(
  15775. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15776. {
  15777. front: {
  15778. height: math.unit(6 + 1 / 12, "feet"),
  15779. weight: math.unit(192, "lb"),
  15780. name: "Front",
  15781. image: {
  15782. source: "./media/characters/veronica/front.svg",
  15783. extra: 319 / 309,
  15784. bottom: 0.005
  15785. }
  15786. },
  15787. },
  15788. [
  15789. {
  15790. name: "Normal",
  15791. height: math.unit(6 + 1 / 12, "feet"),
  15792. default: true
  15793. },
  15794. ]
  15795. ))
  15796. characterMakers.push(() => makeCharacter(
  15797. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15798. {
  15799. front: {
  15800. height: math.unit(9 + 3 / 12, "feet"),
  15801. weight: math.unit(1100, "lb"),
  15802. name: "Front",
  15803. image: {
  15804. source: "./media/characters/braxton/front.svg",
  15805. extra: 1057 / 984,
  15806. bottom: 0.05
  15807. }
  15808. },
  15809. },
  15810. [
  15811. {
  15812. name: "Normal",
  15813. height: math.unit(9 + 3 / 12, "feet")
  15814. },
  15815. {
  15816. name: "Giant",
  15817. height: math.unit(300, "feet"),
  15818. default: true
  15819. },
  15820. {
  15821. name: "Macro",
  15822. height: math.unit(700, "feet")
  15823. },
  15824. {
  15825. name: "Megamacro",
  15826. height: math.unit(6000, "feet")
  15827. },
  15828. ]
  15829. ))
  15830. characterMakers.push(() => makeCharacter(
  15831. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15832. {
  15833. front: {
  15834. height: math.unit(6 + 7 / 12, "feet"),
  15835. weight: math.unit(150, "lb"),
  15836. name: "Front",
  15837. image: {
  15838. source: "./media/characters/blue-feyonics/front.svg",
  15839. extra: 1403 / 1306,
  15840. bottom: 0.047
  15841. }
  15842. },
  15843. },
  15844. [
  15845. {
  15846. name: "Normal",
  15847. height: math.unit(6 + 7 / 12, "feet"),
  15848. default: true
  15849. },
  15850. ]
  15851. ))
  15852. characterMakers.push(() => makeCharacter(
  15853. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15854. {
  15855. front: {
  15856. height: math.unit(1.8, "meters"),
  15857. weight: math.unit(60, "kg"),
  15858. name: "Front",
  15859. image: {
  15860. source: "./media/characters/maxwell/front.svg",
  15861. extra: 2060 / 1873
  15862. }
  15863. },
  15864. },
  15865. [
  15866. {
  15867. name: "Micro",
  15868. height: math.unit(1, "mm")
  15869. },
  15870. {
  15871. name: "Normal",
  15872. height: math.unit(1.8, "meter"),
  15873. default: true
  15874. },
  15875. {
  15876. name: "Macro",
  15877. height: math.unit(30, "meters")
  15878. },
  15879. {
  15880. name: "Megamacro",
  15881. height: math.unit(10, "km")
  15882. },
  15883. ]
  15884. ))
  15885. characterMakers.push(() => makeCharacter(
  15886. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15887. {
  15888. front: {
  15889. height: math.unit(6, "feet"),
  15890. weight: math.unit(150, "lb"),
  15891. name: "Front",
  15892. image: {
  15893. source: "./media/characters/jack/front.svg",
  15894. extra: 1754 / 1640,
  15895. bottom: 0.01
  15896. }
  15897. },
  15898. },
  15899. [
  15900. {
  15901. name: "Normal",
  15902. height: math.unit(80000, "feet"),
  15903. default: true
  15904. },
  15905. {
  15906. name: "Max size",
  15907. height: math.unit(10, "lightyears")
  15908. },
  15909. ]
  15910. ))
  15911. characterMakers.push(() => makeCharacter(
  15912. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15913. {
  15914. urban: {
  15915. height: math.unit(5, "feet"),
  15916. weight: math.unit(240, "lb"),
  15917. name: "Urban",
  15918. image: {
  15919. source: "./media/characters/cafat/urban.svg",
  15920. extra: 1223/1126,
  15921. bottom: 205/1428
  15922. }
  15923. },
  15924. summer: {
  15925. height: math.unit(5, "feet"),
  15926. weight: math.unit(240, "lb"),
  15927. name: "Summer",
  15928. image: {
  15929. source: "./media/characters/cafat/summer.svg",
  15930. extra: 1223/1126,
  15931. bottom: 205/1428
  15932. }
  15933. },
  15934. winter: {
  15935. height: math.unit(5, "feet"),
  15936. weight: math.unit(240, "lb"),
  15937. name: "Winter",
  15938. image: {
  15939. source: "./media/characters/cafat/winter.svg",
  15940. extra: 1223/1126,
  15941. bottom: 205/1428
  15942. }
  15943. },
  15944. lingerie: {
  15945. height: math.unit(5, "feet"),
  15946. weight: math.unit(240, "lb"),
  15947. name: "Lingerie",
  15948. image: {
  15949. source: "./media/characters/cafat/lingerie.svg",
  15950. extra: 1223/1126,
  15951. bottom: 205/1428
  15952. }
  15953. },
  15954. upright: {
  15955. height: math.unit(6.3, "feet"),
  15956. weight: math.unit(240, "lb"),
  15957. name: "Upright",
  15958. image: {
  15959. source: "./media/characters/cafat/upright.svg",
  15960. bottom: 0.01
  15961. }
  15962. },
  15963. uprightFull: {
  15964. height: math.unit(6.3, "feet"),
  15965. weight: math.unit(240, "lb"),
  15966. name: "Upright (Full)",
  15967. image: {
  15968. source: "./media/characters/cafat/upright-full.svg",
  15969. bottom: 0.01
  15970. }
  15971. },
  15972. },
  15973. [
  15974. {
  15975. name: "Small",
  15976. height: math.unit(5, "feet"),
  15977. default: true
  15978. },
  15979. {
  15980. name: "Large",
  15981. height: math.unit(13, "feet")
  15982. },
  15983. ]
  15984. ))
  15985. characterMakers.push(() => makeCharacter(
  15986. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15987. {
  15988. front: {
  15989. height: math.unit(6, "feet"),
  15990. weight: math.unit(150, "lb"),
  15991. name: "Front",
  15992. image: {
  15993. source: "./media/characters/verin-raharra/front.svg",
  15994. extra: 5019 / 4835,
  15995. bottom: 0.023
  15996. }
  15997. },
  15998. },
  15999. [
  16000. {
  16001. name: "Normal",
  16002. height: math.unit(7 + 5 / 12, "feet"),
  16003. default: true
  16004. },
  16005. {
  16006. name: "Upsized",
  16007. height: math.unit(20, "feet")
  16008. },
  16009. ]
  16010. ))
  16011. characterMakers.push(() => makeCharacter(
  16012. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16013. {
  16014. front: {
  16015. height: math.unit(7, "feet"),
  16016. weight: math.unit(230, "lb"),
  16017. name: "Front",
  16018. image: {
  16019. source: "./media/characters/nakata/front.svg",
  16020. extra: 1.005,
  16021. bottom: 0.01
  16022. }
  16023. },
  16024. },
  16025. [
  16026. {
  16027. name: "Normal",
  16028. height: math.unit(7, "feet"),
  16029. default: true
  16030. },
  16031. {
  16032. name: "Big",
  16033. height: math.unit(14, "feet")
  16034. },
  16035. {
  16036. name: "Macro",
  16037. height: math.unit(400, "feet")
  16038. },
  16039. ]
  16040. ))
  16041. characterMakers.push(() => makeCharacter(
  16042. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16043. {
  16044. front: {
  16045. height: math.unit(4.91, "feet"),
  16046. weight: math.unit(100, "lb"),
  16047. name: "Front",
  16048. image: {
  16049. source: "./media/characters/lily/front.svg",
  16050. extra: 1585 / 1415,
  16051. bottom: 0.02
  16052. }
  16053. },
  16054. },
  16055. [
  16056. {
  16057. name: "Normal",
  16058. height: math.unit(4.91, "feet"),
  16059. default: true
  16060. },
  16061. ]
  16062. ))
  16063. characterMakers.push(() => makeCharacter(
  16064. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16065. {
  16066. laying: {
  16067. height: math.unit(4 + 4 / 12, "feet"),
  16068. weight: math.unit(600, "lb"),
  16069. name: "Laying",
  16070. image: {
  16071. source: "./media/characters/sheila/laying.svg",
  16072. extra: 1333 / 1265,
  16073. bottom: 0.16
  16074. }
  16075. },
  16076. },
  16077. [
  16078. {
  16079. name: "Normal",
  16080. height: math.unit(4 + 4 / 12, "feet"),
  16081. default: true
  16082. },
  16083. ]
  16084. ))
  16085. characterMakers.push(() => makeCharacter(
  16086. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16087. {
  16088. front: {
  16089. height: math.unit(6, "feet"),
  16090. weight: math.unit(190, "lb"),
  16091. name: "Front",
  16092. image: {
  16093. source: "./media/characters/sax/front.svg",
  16094. extra: 1187 / 973,
  16095. bottom: 0.042
  16096. }
  16097. },
  16098. },
  16099. [
  16100. {
  16101. name: "Micro",
  16102. height: math.unit(4, "inches"),
  16103. default: true
  16104. },
  16105. ]
  16106. ))
  16107. characterMakers.push(() => makeCharacter(
  16108. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16109. {
  16110. front: {
  16111. height: math.unit(6, "feet"),
  16112. weight: math.unit(150, "lb"),
  16113. name: "Front",
  16114. image: {
  16115. source: "./media/characters/pandora/front.svg",
  16116. extra: 2720 / 2556,
  16117. bottom: 0.015
  16118. }
  16119. },
  16120. back: {
  16121. height: math.unit(6, "feet"),
  16122. weight: math.unit(150, "lb"),
  16123. name: "Back",
  16124. image: {
  16125. source: "./media/characters/pandora/back.svg",
  16126. extra: 2720 / 2556,
  16127. bottom: 0.01
  16128. }
  16129. },
  16130. beans: {
  16131. height: math.unit(6 / 8, "feet"),
  16132. name: "Beans",
  16133. image: {
  16134. source: "./media/characters/pandora/beans.svg"
  16135. }
  16136. },
  16137. collar: {
  16138. height: math.unit(0.31, "feet"),
  16139. name: "Collar",
  16140. image: {
  16141. source: "./media/characters/pandora/collar.svg"
  16142. }
  16143. },
  16144. skirt: {
  16145. height: math.unit(6, "feet"),
  16146. weight: math.unit(150, "lb"),
  16147. name: "Skirt",
  16148. image: {
  16149. source: "./media/characters/pandora/skirt.svg",
  16150. extra: 1622 / 1525,
  16151. bottom: 0.015
  16152. }
  16153. },
  16154. hoodie: {
  16155. height: math.unit(6, "feet"),
  16156. weight: math.unit(150, "lb"),
  16157. name: "Hoodie",
  16158. image: {
  16159. source: "./media/characters/pandora/hoodie.svg",
  16160. extra: 1622 / 1525,
  16161. bottom: 0.015
  16162. }
  16163. },
  16164. casual: {
  16165. height: math.unit(6, "feet"),
  16166. weight: math.unit(150, "lb"),
  16167. name: "Casual",
  16168. image: {
  16169. source: "./media/characters/pandora/casual.svg",
  16170. extra: 1622 / 1525,
  16171. bottom: 0.015
  16172. }
  16173. },
  16174. },
  16175. [
  16176. {
  16177. name: "Normal",
  16178. height: math.unit(6, "feet")
  16179. },
  16180. {
  16181. name: "Big Steppy",
  16182. height: math.unit(1, "km"),
  16183. default: true
  16184. },
  16185. {
  16186. name: "Galactic Steppy",
  16187. height: math.unit(2, "gigameters")
  16188. },
  16189. ]
  16190. ))
  16191. characterMakers.push(() => makeCharacter(
  16192. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16193. {
  16194. side: {
  16195. height: math.unit(10, "feet"),
  16196. weight: math.unit(800, "kg"),
  16197. name: "Side",
  16198. image: {
  16199. source: "./media/characters/venio-darcony/side.svg",
  16200. extra: 1373 / 1003,
  16201. bottom: 0.037
  16202. }
  16203. },
  16204. front: {
  16205. height: math.unit(19, "feet"),
  16206. weight: math.unit(800, "kg"),
  16207. name: "Front",
  16208. image: {
  16209. source: "./media/characters/venio-darcony/front.svg"
  16210. }
  16211. },
  16212. back: {
  16213. height: math.unit(19, "feet"),
  16214. weight: math.unit(800, "kg"),
  16215. name: "Back",
  16216. image: {
  16217. source: "./media/characters/venio-darcony/back.svg"
  16218. }
  16219. },
  16220. sideNsfw: {
  16221. height: math.unit(10, "feet"),
  16222. weight: math.unit(800, "kg"),
  16223. name: "Side (NSFW)",
  16224. image: {
  16225. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16226. extra: 1373 / 1003,
  16227. bottom: 0.037
  16228. }
  16229. },
  16230. frontNsfw: {
  16231. height: math.unit(19, "feet"),
  16232. weight: math.unit(800, "kg"),
  16233. name: "Front (NSFW)",
  16234. image: {
  16235. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16236. }
  16237. },
  16238. backNsfw: {
  16239. height: math.unit(19, "feet"),
  16240. weight: math.unit(800, "kg"),
  16241. name: "Back (NSFW)",
  16242. image: {
  16243. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16244. }
  16245. },
  16246. sideArmored: {
  16247. height: math.unit(10, "feet"),
  16248. weight: math.unit(800, "kg"),
  16249. name: "Side (Armored)",
  16250. image: {
  16251. source: "./media/characters/venio-darcony/side-armored.svg",
  16252. extra: 1373 / 1003,
  16253. bottom: 0.037
  16254. }
  16255. },
  16256. frontArmored: {
  16257. height: math.unit(19, "feet"),
  16258. weight: math.unit(900, "kg"),
  16259. name: "Front (Armored)",
  16260. image: {
  16261. source: "./media/characters/venio-darcony/front-armored.svg"
  16262. }
  16263. },
  16264. backArmored: {
  16265. height: math.unit(19, "feet"),
  16266. weight: math.unit(900, "kg"),
  16267. name: "Back (Armored)",
  16268. image: {
  16269. source: "./media/characters/venio-darcony/back-armored.svg"
  16270. }
  16271. },
  16272. sword: {
  16273. height: math.unit(10, "feet"),
  16274. weight: math.unit(50, "lb"),
  16275. name: "Sword",
  16276. image: {
  16277. source: "./media/characters/venio-darcony/sword.svg"
  16278. }
  16279. },
  16280. },
  16281. [
  16282. {
  16283. name: "Normal",
  16284. height: math.unit(10, "feet")
  16285. },
  16286. {
  16287. name: "Macro",
  16288. height: math.unit(130, "feet"),
  16289. default: true
  16290. },
  16291. {
  16292. name: "Macro+",
  16293. height: math.unit(240, "feet")
  16294. },
  16295. ]
  16296. ))
  16297. characterMakers.push(() => makeCharacter(
  16298. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16299. {
  16300. front: {
  16301. height: math.unit(6, "feet"),
  16302. weight: math.unit(150, "lb"),
  16303. name: "Front",
  16304. image: {
  16305. source: "./media/characters/veski/front.svg",
  16306. extra: 1299 / 1225,
  16307. bottom: 0.04
  16308. }
  16309. },
  16310. back: {
  16311. height: math.unit(6, "feet"),
  16312. weight: math.unit(150, "lb"),
  16313. name: "Back",
  16314. image: {
  16315. source: "./media/characters/veski/back.svg",
  16316. extra: 1299 / 1225,
  16317. bottom: 0.008
  16318. }
  16319. },
  16320. maw: {
  16321. height: math.unit(1.5 * 1.21, "feet"),
  16322. name: "Maw",
  16323. image: {
  16324. source: "./media/characters/veski/maw.svg"
  16325. }
  16326. },
  16327. },
  16328. [
  16329. {
  16330. name: "Macro",
  16331. height: math.unit(2, "km"),
  16332. default: true
  16333. },
  16334. ]
  16335. ))
  16336. characterMakers.push(() => makeCharacter(
  16337. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16338. {
  16339. front: {
  16340. height: math.unit(5 + 7 / 12, "feet"),
  16341. name: "Front",
  16342. image: {
  16343. source: "./media/characters/isabelle/front.svg",
  16344. extra: 2130 / 1976,
  16345. bottom: 0.05
  16346. }
  16347. },
  16348. },
  16349. [
  16350. {
  16351. name: "Supermicro",
  16352. height: math.unit(10, "micrometers")
  16353. },
  16354. {
  16355. name: "Micro",
  16356. height: math.unit(1, "inch")
  16357. },
  16358. {
  16359. name: "Tiny",
  16360. height: math.unit(5, "inches")
  16361. },
  16362. {
  16363. name: "Standard",
  16364. height: math.unit(5 + 7 / 12, "inches")
  16365. },
  16366. {
  16367. name: "Macro",
  16368. height: math.unit(80, "meters"),
  16369. default: true
  16370. },
  16371. {
  16372. name: "Megamacro",
  16373. height: math.unit(250, "meters")
  16374. },
  16375. {
  16376. name: "Gigamacro",
  16377. height: math.unit(5, "km")
  16378. },
  16379. {
  16380. name: "Cosmic",
  16381. height: math.unit(2.5e6, "miles")
  16382. },
  16383. ]
  16384. ))
  16385. characterMakers.push(() => makeCharacter(
  16386. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16387. {
  16388. front: {
  16389. height: math.unit(6, "feet"),
  16390. weight: math.unit(150, "lb"),
  16391. name: "Front",
  16392. image: {
  16393. source: "./media/characters/hanzo/front.svg",
  16394. extra: 374 / 344,
  16395. bottom: 0.02
  16396. }
  16397. },
  16398. },
  16399. [
  16400. {
  16401. name: "Normal",
  16402. height: math.unit(8, "feet"),
  16403. default: true
  16404. },
  16405. ]
  16406. ))
  16407. characterMakers.push(() => makeCharacter(
  16408. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16409. {
  16410. front: {
  16411. height: math.unit(7, "feet"),
  16412. weight: math.unit(130, "lb"),
  16413. name: "Front",
  16414. image: {
  16415. source: "./media/characters/anna/front.svg",
  16416. extra: 169 / 145,
  16417. bottom: 0.06
  16418. }
  16419. },
  16420. full: {
  16421. height: math.unit(4.96, "feet"),
  16422. weight: math.unit(220, "lb"),
  16423. name: "Full",
  16424. image: {
  16425. source: "./media/characters/anna/full.svg",
  16426. extra: 138 / 114,
  16427. bottom: 0.15
  16428. }
  16429. },
  16430. tongue: {
  16431. height: math.unit(2.53, "feet"),
  16432. name: "Tongue",
  16433. image: {
  16434. source: "./media/characters/anna/tongue.svg"
  16435. }
  16436. },
  16437. },
  16438. [
  16439. {
  16440. name: "Normal",
  16441. height: math.unit(7, "feet"),
  16442. default: true
  16443. },
  16444. ]
  16445. ))
  16446. characterMakers.push(() => makeCharacter(
  16447. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16448. {
  16449. front: {
  16450. height: math.unit(7, "feet"),
  16451. weight: math.unit(150, "lb"),
  16452. name: "Front",
  16453. image: {
  16454. source: "./media/characters/ian-corvid/front.svg",
  16455. extra: 150 / 142,
  16456. bottom: 0.02
  16457. }
  16458. },
  16459. back: {
  16460. height: math.unit(7, "feet"),
  16461. weight: math.unit(150, "lb"),
  16462. name: "Back",
  16463. image: {
  16464. source: "./media/characters/ian-corvid/back.svg",
  16465. extra: 150 / 143,
  16466. bottom: 0.01
  16467. }
  16468. },
  16469. stomping: {
  16470. height: math.unit(7, "feet"),
  16471. weight: math.unit(150, "lb"),
  16472. name: "Stomping",
  16473. image: {
  16474. source: "./media/characters/ian-corvid/stomping.svg",
  16475. extra: 76 / 72
  16476. }
  16477. },
  16478. sitting: {
  16479. height: math.unit(7 / 1.8, "feet"),
  16480. weight: math.unit(150, "lb"),
  16481. name: "Sitting",
  16482. image: {
  16483. source: "./media/characters/ian-corvid/sitting.svg",
  16484. extra: 1400 / 1269,
  16485. bottom: 0.15
  16486. }
  16487. },
  16488. },
  16489. [
  16490. {
  16491. name: "Tiny Microw",
  16492. height: math.unit(1, "inch")
  16493. },
  16494. {
  16495. name: "Microw",
  16496. height: math.unit(6, "inches")
  16497. },
  16498. {
  16499. name: "Crow",
  16500. height: math.unit(7 + 1 / 12, "feet"),
  16501. default: true
  16502. },
  16503. {
  16504. name: "Macrow",
  16505. height: math.unit(176, "feet")
  16506. },
  16507. ]
  16508. ))
  16509. characterMakers.push(() => makeCharacter(
  16510. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16511. {
  16512. front: {
  16513. height: math.unit(5 + 7 / 12, "feet"),
  16514. weight: math.unit(147, "lb"),
  16515. name: "Front",
  16516. image: {
  16517. source: "./media/characters/natalie-kellon/front.svg",
  16518. extra: 1214 / 1141,
  16519. bottom: 0.02
  16520. }
  16521. },
  16522. },
  16523. [
  16524. {
  16525. name: "Micro",
  16526. height: math.unit(1 / 16, "inch")
  16527. },
  16528. {
  16529. name: "Tiny",
  16530. height: math.unit(4, "inches")
  16531. },
  16532. {
  16533. name: "Normal",
  16534. height: math.unit(5 + 7 / 12, "feet"),
  16535. default: true
  16536. },
  16537. {
  16538. name: "Amazon",
  16539. height: math.unit(12, "feet")
  16540. },
  16541. {
  16542. name: "Giantess",
  16543. height: math.unit(160, "meters")
  16544. },
  16545. {
  16546. name: "Titaness",
  16547. height: math.unit(800, "meters")
  16548. },
  16549. ]
  16550. ))
  16551. characterMakers.push(() => makeCharacter(
  16552. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16553. {
  16554. front: {
  16555. height: math.unit(6, "feet"),
  16556. weight: math.unit(150, "lb"),
  16557. name: "Front",
  16558. image: {
  16559. source: "./media/characters/alluria/front.svg",
  16560. extra: 806 / 738,
  16561. bottom: 0.01
  16562. }
  16563. },
  16564. side: {
  16565. height: math.unit(6, "feet"),
  16566. weight: math.unit(150, "lb"),
  16567. name: "Side",
  16568. image: {
  16569. source: "./media/characters/alluria/side.svg",
  16570. extra: 800 / 750,
  16571. }
  16572. },
  16573. back: {
  16574. height: math.unit(6, "feet"),
  16575. weight: math.unit(150, "lb"),
  16576. name: "Back",
  16577. image: {
  16578. source: "./media/characters/alluria/back.svg",
  16579. extra: 806 / 738,
  16580. }
  16581. },
  16582. frontMaid: {
  16583. height: math.unit(6, "feet"),
  16584. weight: math.unit(150, "lb"),
  16585. name: "Front (Maid)",
  16586. image: {
  16587. source: "./media/characters/alluria/front-maid.svg",
  16588. extra: 806 / 738,
  16589. bottom: 0.01
  16590. }
  16591. },
  16592. sideMaid: {
  16593. height: math.unit(6, "feet"),
  16594. weight: math.unit(150, "lb"),
  16595. name: "Side (Maid)",
  16596. image: {
  16597. source: "./media/characters/alluria/side-maid.svg",
  16598. extra: 800 / 750,
  16599. bottom: 0.005
  16600. }
  16601. },
  16602. backMaid: {
  16603. height: math.unit(6, "feet"),
  16604. weight: math.unit(150, "lb"),
  16605. name: "Back (Maid)",
  16606. image: {
  16607. source: "./media/characters/alluria/back-maid.svg",
  16608. extra: 806 / 738,
  16609. }
  16610. },
  16611. },
  16612. [
  16613. {
  16614. name: "Micro",
  16615. height: math.unit(6, "inches"),
  16616. default: true
  16617. },
  16618. ]
  16619. ))
  16620. characterMakers.push(() => makeCharacter(
  16621. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16622. {
  16623. front: {
  16624. height: math.unit(6, "feet"),
  16625. weight: math.unit(150, "lb"),
  16626. name: "Front",
  16627. image: {
  16628. source: "./media/characters/kyle/front.svg",
  16629. extra: 1069 / 962,
  16630. bottom: 77.228 / 1727.45
  16631. }
  16632. },
  16633. },
  16634. [
  16635. {
  16636. name: "Macro",
  16637. height: math.unit(150, "feet"),
  16638. default: true
  16639. },
  16640. ]
  16641. ))
  16642. characterMakers.push(() => makeCharacter(
  16643. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16644. {
  16645. front: {
  16646. height: math.unit(6, "feet"),
  16647. weight: math.unit(300, "lb"),
  16648. name: "Front",
  16649. image: {
  16650. source: "./media/characters/duncan/front.svg",
  16651. extra: 1650 / 1482,
  16652. bottom: 0.05
  16653. }
  16654. },
  16655. },
  16656. [
  16657. {
  16658. name: "Macro",
  16659. height: math.unit(100, "feet"),
  16660. default: true
  16661. },
  16662. ]
  16663. ))
  16664. characterMakers.push(() => makeCharacter(
  16665. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16666. {
  16667. front: {
  16668. height: math.unit(5 + 4 / 12, "feet"),
  16669. weight: math.unit(220, "lb"),
  16670. name: "Front",
  16671. image: {
  16672. source: "./media/characters/memory/front.svg",
  16673. extra: 3641 / 3545,
  16674. bottom: 0.03
  16675. }
  16676. },
  16677. back: {
  16678. height: math.unit(5 + 4 / 12, "feet"),
  16679. weight: math.unit(220, "lb"),
  16680. name: "Back",
  16681. image: {
  16682. source: "./media/characters/memory/back.svg",
  16683. extra: 3641 / 3545,
  16684. bottom: 0.025
  16685. }
  16686. },
  16687. frontSkirt: {
  16688. height: math.unit(5 + 4 / 12, "feet"),
  16689. weight: math.unit(220, "lb"),
  16690. name: "Front (Skirt)",
  16691. image: {
  16692. source: "./media/characters/memory/front-skirt.svg",
  16693. extra: 3641 / 3545,
  16694. bottom: 0.03
  16695. }
  16696. },
  16697. frontDress: {
  16698. height: math.unit(5 + 4 / 12, "feet"),
  16699. weight: math.unit(220, "lb"),
  16700. name: "Front (Dress)",
  16701. image: {
  16702. source: "./media/characters/memory/front-dress.svg",
  16703. extra: 3641 / 3545,
  16704. bottom: 0.03
  16705. }
  16706. },
  16707. },
  16708. [
  16709. {
  16710. name: "Micro",
  16711. height: math.unit(6, "inches"),
  16712. default: true
  16713. },
  16714. {
  16715. name: "Normal",
  16716. height: math.unit(5 + 4 / 12, "feet")
  16717. },
  16718. ]
  16719. ))
  16720. characterMakers.push(() => makeCharacter(
  16721. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16722. {
  16723. front: {
  16724. height: math.unit(4 + 11 / 12, "feet"),
  16725. weight: math.unit(100, "lb"),
  16726. name: "Front",
  16727. image: {
  16728. source: "./media/characters/luno/front.svg",
  16729. extra: 1535 / 1487,
  16730. bottom: 0.03
  16731. }
  16732. },
  16733. },
  16734. [
  16735. {
  16736. name: "Micro",
  16737. height: math.unit(3, "inches")
  16738. },
  16739. {
  16740. name: "Normal",
  16741. height: math.unit(4 + 11 / 12, "feet"),
  16742. default: true
  16743. },
  16744. {
  16745. name: "Macro",
  16746. height: math.unit(300, "feet")
  16747. },
  16748. {
  16749. name: "Megamacro",
  16750. height: math.unit(700, "miles")
  16751. },
  16752. ]
  16753. ))
  16754. characterMakers.push(() => makeCharacter(
  16755. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16756. {
  16757. front: {
  16758. height: math.unit(6 + 2 / 12, "feet"),
  16759. weight: math.unit(170, "lb"),
  16760. name: "Front",
  16761. image: {
  16762. source: "./media/characters/jamesy/front.svg",
  16763. extra: 440 / 382,
  16764. bottom: 0.005
  16765. }
  16766. },
  16767. },
  16768. [
  16769. {
  16770. name: "Micro",
  16771. height: math.unit(3, "inches")
  16772. },
  16773. {
  16774. name: "Normal",
  16775. height: math.unit(6 + 2 / 12, "feet"),
  16776. default: true
  16777. },
  16778. {
  16779. name: "Macro",
  16780. height: math.unit(300, "feet")
  16781. },
  16782. {
  16783. name: "Megamacro",
  16784. height: math.unit(700, "miles")
  16785. },
  16786. ]
  16787. ))
  16788. characterMakers.push(() => makeCharacter(
  16789. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16790. {
  16791. front: {
  16792. height: math.unit(6, "feet"),
  16793. weight: math.unit(160, "lb"),
  16794. name: "Front",
  16795. image: {
  16796. source: "./media/characters/mark/front.svg",
  16797. extra: 3300 / 3100,
  16798. bottom: 136.42 / 3440.47
  16799. }
  16800. },
  16801. },
  16802. [
  16803. {
  16804. name: "Macro",
  16805. height: math.unit(120, "meters")
  16806. },
  16807. {
  16808. name: "Bigger Macro",
  16809. height: math.unit(350, "meters")
  16810. },
  16811. {
  16812. name: "Megamacro",
  16813. height: math.unit(8, "km"),
  16814. default: true
  16815. },
  16816. {
  16817. name: "Continental",
  16818. height: math.unit(4550, "km")
  16819. },
  16820. {
  16821. name: "Planetary",
  16822. height: math.unit(65000, "km")
  16823. },
  16824. ]
  16825. ))
  16826. characterMakers.push(() => makeCharacter(
  16827. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16828. {
  16829. front: {
  16830. height: math.unit(6, "feet"),
  16831. weight: math.unit(400, "lb"),
  16832. name: "Front",
  16833. image: {
  16834. source: "./media/characters/mac/front.svg",
  16835. extra: 1048 / 987.7,
  16836. bottom: 60 / 1107.6,
  16837. }
  16838. },
  16839. },
  16840. [
  16841. {
  16842. name: "Macro",
  16843. height: math.unit(500, "feet"),
  16844. default: true
  16845. },
  16846. ]
  16847. ))
  16848. characterMakers.push(() => makeCharacter(
  16849. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16850. {
  16851. front: {
  16852. height: math.unit(5 + 2 / 12, "feet"),
  16853. weight: math.unit(190, "lb"),
  16854. name: "Front",
  16855. image: {
  16856. source: "./media/characters/bari/front.svg",
  16857. extra: 3156 / 2880,
  16858. bottom: 0.03
  16859. }
  16860. },
  16861. back: {
  16862. height: math.unit(5 + 2 / 12, "feet"),
  16863. weight: math.unit(190, "lb"),
  16864. name: "Back",
  16865. image: {
  16866. source: "./media/characters/bari/back.svg",
  16867. extra: 3260 / 2834,
  16868. bottom: 0.025
  16869. }
  16870. },
  16871. frontPlush: {
  16872. height: math.unit(5 + 2 / 12, "feet"),
  16873. weight: math.unit(190, "lb"),
  16874. name: "Front (Plush)",
  16875. image: {
  16876. source: "./media/characters/bari/front-plush.svg",
  16877. extra: 1112 / 1061,
  16878. bottom: 0.002
  16879. }
  16880. },
  16881. },
  16882. [
  16883. {
  16884. name: "Micro",
  16885. height: math.unit(3, "inches")
  16886. },
  16887. {
  16888. name: "Normal",
  16889. height: math.unit(5 + 2 / 12, "feet"),
  16890. default: true
  16891. },
  16892. {
  16893. name: "Macro",
  16894. height: math.unit(20, "feet")
  16895. },
  16896. ]
  16897. ))
  16898. characterMakers.push(() => makeCharacter(
  16899. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16900. {
  16901. front: {
  16902. height: math.unit(6 + 1 / 12, "feet"),
  16903. weight: math.unit(275, "lb"),
  16904. name: "Front",
  16905. image: {
  16906. source: "./media/characters/hunter-misha-raven/front.svg"
  16907. }
  16908. },
  16909. },
  16910. [
  16911. {
  16912. name: "Mortal",
  16913. height: math.unit(6 + 1 / 12, "feet")
  16914. },
  16915. {
  16916. name: "Divine",
  16917. height: math.unit(1.12134e34, "parsecs"),
  16918. default: true
  16919. },
  16920. ]
  16921. ))
  16922. characterMakers.push(() => makeCharacter(
  16923. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16924. {
  16925. front: {
  16926. height: math.unit(6 + 3 / 12, "feet"),
  16927. weight: math.unit(220, "lb"),
  16928. name: "Front",
  16929. image: {
  16930. source: "./media/characters/max-calore/front.svg",
  16931. extra: 1700 / 1648,
  16932. bottom: 0.01
  16933. }
  16934. },
  16935. back: {
  16936. height: math.unit(6 + 3 / 12, "feet"),
  16937. weight: math.unit(220, "lb"),
  16938. name: "Back",
  16939. image: {
  16940. source: "./media/characters/max-calore/back.svg",
  16941. extra: 1700 / 1648,
  16942. bottom: 0.01
  16943. }
  16944. },
  16945. },
  16946. [
  16947. {
  16948. name: "Normal",
  16949. height: math.unit(6 + 3 / 12, "feet"),
  16950. default: true
  16951. },
  16952. ]
  16953. ))
  16954. characterMakers.push(() => makeCharacter(
  16955. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16956. {
  16957. side: {
  16958. height: math.unit(2 + 8 / 12, "feet"),
  16959. weight: math.unit(99, "lb"),
  16960. name: "Side",
  16961. image: {
  16962. source: "./media/characters/aspen/side.svg",
  16963. extra: 152 / 138,
  16964. bottom: 0.032
  16965. }
  16966. },
  16967. },
  16968. [
  16969. {
  16970. name: "Normal",
  16971. height: math.unit(2 + 8 / 12, "feet"),
  16972. default: true
  16973. },
  16974. ]
  16975. ))
  16976. characterMakers.push(() => makeCharacter(
  16977. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16978. {
  16979. side: {
  16980. height: math.unit(3 + 2 / 12, "feet"),
  16981. weight: math.unit(224, "lb"),
  16982. name: "Side",
  16983. image: {
  16984. source: "./media/characters/sheila-feral-wolf/side.svg",
  16985. extra: 179 / 166,
  16986. bottom: 0.03
  16987. }
  16988. },
  16989. },
  16990. [
  16991. {
  16992. name: "Normal",
  16993. height: math.unit(3 + 2 / 12, "feet"),
  16994. default: true
  16995. },
  16996. ]
  16997. ))
  16998. characterMakers.push(() => makeCharacter(
  16999. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17000. {
  17001. side: {
  17002. height: math.unit(1 + 9 / 12, "feet"),
  17003. weight: math.unit(38, "lb"),
  17004. name: "Side",
  17005. image: {
  17006. source: "./media/characters/michelle/side.svg",
  17007. extra: 147 / 136.7,
  17008. bottom: 0.03
  17009. }
  17010. },
  17011. },
  17012. [
  17013. {
  17014. name: "Normal",
  17015. height: math.unit(1 + 9 / 12, "feet"),
  17016. default: true
  17017. },
  17018. ]
  17019. ))
  17020. characterMakers.push(() => makeCharacter(
  17021. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17022. {
  17023. front: {
  17024. height: math.unit(1 + 1 / 12, "feet"),
  17025. weight: math.unit(18, "lb"),
  17026. name: "Front",
  17027. image: {
  17028. source: "./media/characters/nino/front.svg"
  17029. }
  17030. },
  17031. },
  17032. [
  17033. {
  17034. name: "Normal",
  17035. height: math.unit(1 + 1 / 12, "feet"),
  17036. default: true
  17037. },
  17038. ]
  17039. ))
  17040. characterMakers.push(() => makeCharacter(
  17041. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17042. {
  17043. front: {
  17044. height: math.unit(1, "feet"),
  17045. weight: math.unit(16, "lb"),
  17046. name: "Front",
  17047. image: {
  17048. source: "./media/characters/viola/front.svg"
  17049. }
  17050. },
  17051. },
  17052. [
  17053. {
  17054. name: "Normal",
  17055. height: math.unit(1, "feet"),
  17056. default: true
  17057. },
  17058. ]
  17059. ))
  17060. characterMakers.push(() => makeCharacter(
  17061. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17062. {
  17063. front: {
  17064. height: math.unit(6 + 5 / 12, "feet"),
  17065. weight: math.unit(580, "lb"),
  17066. name: "Front",
  17067. image: {
  17068. source: "./media/characters/atlas/front.svg",
  17069. extra: 298.5 / 290,
  17070. bottom: 0.015
  17071. }
  17072. },
  17073. },
  17074. [
  17075. {
  17076. name: "Normal",
  17077. height: math.unit(6 + 5 / 12, "feet"),
  17078. default: true
  17079. },
  17080. ]
  17081. ))
  17082. characterMakers.push(() => makeCharacter(
  17083. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17084. {
  17085. side: {
  17086. height: math.unit(1 + 10 / 12, "feet"),
  17087. weight: math.unit(25, "lb"),
  17088. name: "Side",
  17089. image: {
  17090. source: "./media/characters/davy/side.svg",
  17091. extra: 200 / 170,
  17092. bottom: 0.01
  17093. }
  17094. },
  17095. },
  17096. [
  17097. {
  17098. name: "Normal",
  17099. height: math.unit(1 + 10 / 12, "feet"),
  17100. default: true
  17101. },
  17102. ]
  17103. ))
  17104. characterMakers.push(() => makeCharacter(
  17105. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17106. {
  17107. side: {
  17108. height: math.unit(4 + 8 / 12, "feet"),
  17109. weight: math.unit(166, "lb"),
  17110. name: "Side",
  17111. image: {
  17112. source: "./media/characters/fiona/side.svg",
  17113. extra: 232 / 220,
  17114. bottom: 0.03
  17115. }
  17116. },
  17117. },
  17118. [
  17119. {
  17120. name: "Normal",
  17121. height: math.unit(4 + 8 / 12, "feet"),
  17122. default: true
  17123. },
  17124. ]
  17125. ))
  17126. characterMakers.push(() => makeCharacter(
  17127. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17128. {
  17129. front: {
  17130. height: math.unit(2, "feet"),
  17131. weight: math.unit(62, "lb"),
  17132. name: "Front",
  17133. image: {
  17134. source: "./media/characters/lyla/front.svg",
  17135. bottom: 0.1
  17136. }
  17137. },
  17138. },
  17139. [
  17140. {
  17141. name: "Normal",
  17142. height: math.unit(2, "feet"),
  17143. default: true
  17144. },
  17145. ]
  17146. ))
  17147. characterMakers.push(() => makeCharacter(
  17148. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17149. {
  17150. side: {
  17151. height: math.unit(1.8, "feet"),
  17152. weight: math.unit(44, "lb"),
  17153. name: "Side",
  17154. image: {
  17155. source: "./media/characters/perseus/side.svg",
  17156. bottom: 0.21
  17157. }
  17158. },
  17159. },
  17160. [
  17161. {
  17162. name: "Normal",
  17163. height: math.unit(1.8, "feet"),
  17164. default: true
  17165. },
  17166. ]
  17167. ))
  17168. characterMakers.push(() => makeCharacter(
  17169. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17170. {
  17171. side: {
  17172. height: math.unit(4 + 2 / 12, "feet"),
  17173. weight: math.unit(20, "lb"),
  17174. name: "Side",
  17175. image: {
  17176. source: "./media/characters/remus/side.svg"
  17177. }
  17178. },
  17179. },
  17180. [
  17181. {
  17182. name: "Normal",
  17183. height: math.unit(4 + 2 / 12, "feet"),
  17184. default: true
  17185. },
  17186. ]
  17187. ))
  17188. characterMakers.push(() => makeCharacter(
  17189. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17190. {
  17191. front: {
  17192. height: math.unit(4 + 11 / 12, "feet"),
  17193. weight: math.unit(114, "lb"),
  17194. name: "Front",
  17195. image: {
  17196. source: "./media/characters/raf/front.svg",
  17197. bottom: 20.5 / 1863
  17198. }
  17199. },
  17200. side: {
  17201. height: math.unit(4 + 11 / 12, "feet"),
  17202. weight: math.unit(114, "lb"),
  17203. name: "Side",
  17204. image: {
  17205. source: "./media/characters/raf/side.svg",
  17206. bottom: 22 / 1822
  17207. }
  17208. },
  17209. },
  17210. [
  17211. {
  17212. name: "Micro",
  17213. height: math.unit(2, "inches")
  17214. },
  17215. {
  17216. name: "Normal",
  17217. height: math.unit(4 + 11 / 12, "feet"),
  17218. default: true
  17219. },
  17220. {
  17221. name: "Macro",
  17222. height: math.unit(70, "feet")
  17223. },
  17224. ]
  17225. ))
  17226. characterMakers.push(() => makeCharacter(
  17227. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17228. {
  17229. front: {
  17230. height: math.unit(1.5, "meters"),
  17231. weight: math.unit(68, "kg"),
  17232. name: "Front",
  17233. image: {
  17234. source: "./media/characters/liam-einarr/front.svg",
  17235. extra: 2822 / 2666
  17236. }
  17237. },
  17238. back: {
  17239. height: math.unit(1.5, "meters"),
  17240. weight: math.unit(68, "kg"),
  17241. name: "Back",
  17242. image: {
  17243. source: "./media/characters/liam-einarr/back.svg",
  17244. extra: 2822 / 2666,
  17245. bottom: 0.015
  17246. }
  17247. },
  17248. },
  17249. [
  17250. {
  17251. name: "Normal",
  17252. height: math.unit(1.5, "meters"),
  17253. default: true
  17254. },
  17255. {
  17256. name: "Macro",
  17257. height: math.unit(150, "meters")
  17258. },
  17259. {
  17260. name: "Megamacro",
  17261. height: math.unit(35, "km")
  17262. },
  17263. ]
  17264. ))
  17265. characterMakers.push(() => makeCharacter(
  17266. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17267. {
  17268. front: {
  17269. height: math.unit(6, "feet"),
  17270. weight: math.unit(75, "kg"),
  17271. name: "Front",
  17272. image: {
  17273. source: "./media/characters/linda/front.svg",
  17274. extra: 930 / 874,
  17275. bottom: 0.004
  17276. }
  17277. },
  17278. },
  17279. [
  17280. {
  17281. name: "Normal",
  17282. height: math.unit(6, "feet"),
  17283. default: true
  17284. },
  17285. ]
  17286. ))
  17287. characterMakers.push(() => makeCharacter(
  17288. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17289. {
  17290. front: {
  17291. height: math.unit(6 + 8 / 12, "feet"),
  17292. weight: math.unit(220, "lb"),
  17293. name: "Front",
  17294. image: {
  17295. source: "./media/characters/caylex/front.svg",
  17296. extra: 821 / 772,
  17297. bottom: 0.07
  17298. }
  17299. },
  17300. back: {
  17301. height: math.unit(6 + 8 / 12, "feet"),
  17302. weight: math.unit(220, "lb"),
  17303. name: "Back",
  17304. image: {
  17305. source: "./media/characters/caylex/back.svg",
  17306. extra: 821 / 772,
  17307. bottom: 0.022
  17308. }
  17309. },
  17310. hand: {
  17311. height: math.unit(1.25, "feet"),
  17312. name: "Hand",
  17313. image: {
  17314. source: "./media/characters/caylex/hand.svg"
  17315. }
  17316. },
  17317. foot: {
  17318. height: math.unit(1.6, "feet"),
  17319. name: "Foot",
  17320. image: {
  17321. source: "./media/characters/caylex/foot.svg"
  17322. }
  17323. },
  17324. armored: {
  17325. height: math.unit(6 + 8 / 12, "feet"),
  17326. weight: math.unit(250, "lb"),
  17327. name: "Armored",
  17328. image: {
  17329. source: "./media/characters/caylex/armored.svg",
  17330. extra: 1420 / 1310,
  17331. bottom: 0.045
  17332. }
  17333. },
  17334. },
  17335. [
  17336. {
  17337. name: "Normal",
  17338. height: math.unit(6 + 8 / 12, "feet"),
  17339. default: true
  17340. },
  17341. {
  17342. name: "Normal+",
  17343. height: math.unit(12, "feet")
  17344. },
  17345. ]
  17346. ))
  17347. characterMakers.push(() => makeCharacter(
  17348. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17349. {
  17350. front: {
  17351. height: math.unit(7 + 6 / 12, "feet"),
  17352. weight: math.unit(288, "lb"),
  17353. name: "Front",
  17354. image: {
  17355. source: "./media/characters/alana/front.svg",
  17356. extra: 679 / 653,
  17357. bottom: 22.5 / 701
  17358. }
  17359. },
  17360. },
  17361. [
  17362. {
  17363. name: "Normal",
  17364. height: math.unit(7 + 6 / 12, "feet")
  17365. },
  17366. {
  17367. name: "Large",
  17368. height: math.unit(50, "feet")
  17369. },
  17370. {
  17371. name: "Macro",
  17372. height: math.unit(100, "feet"),
  17373. default: true
  17374. },
  17375. {
  17376. name: "Macro+",
  17377. height: math.unit(200, "feet")
  17378. },
  17379. ]
  17380. ))
  17381. characterMakers.push(() => makeCharacter(
  17382. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17383. {
  17384. front: {
  17385. height: math.unit(6 + 1 / 12, "feet"),
  17386. weight: math.unit(210, "lb"),
  17387. name: "Front",
  17388. image: {
  17389. source: "./media/characters/hasani/front.svg",
  17390. extra: 244 / 232,
  17391. bottom: 0.01
  17392. }
  17393. },
  17394. back: {
  17395. height: math.unit(6 + 1 / 12, "feet"),
  17396. weight: math.unit(210, "lb"),
  17397. name: "Back",
  17398. image: {
  17399. source: "./media/characters/hasani/back.svg",
  17400. extra: 244 / 232,
  17401. bottom: 0.01
  17402. }
  17403. },
  17404. },
  17405. [
  17406. {
  17407. name: "Normal",
  17408. height: math.unit(6 + 1 / 12, "feet")
  17409. },
  17410. {
  17411. name: "Macro",
  17412. height: math.unit(175, "feet"),
  17413. default: true
  17414. },
  17415. ]
  17416. ))
  17417. characterMakers.push(() => makeCharacter(
  17418. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17419. {
  17420. front: {
  17421. height: math.unit(1.82, "meters"),
  17422. weight: math.unit(140, "lb"),
  17423. name: "Front",
  17424. image: {
  17425. source: "./media/characters/nita/front.svg",
  17426. extra: 2473 / 2363,
  17427. bottom: 0.01
  17428. }
  17429. },
  17430. },
  17431. [
  17432. {
  17433. name: "Normal",
  17434. height: math.unit(1.82, "m")
  17435. },
  17436. {
  17437. name: "Macro",
  17438. height: math.unit(300, "m")
  17439. },
  17440. {
  17441. name: "Mistake Canon",
  17442. height: math.unit(0.5, "miles"),
  17443. default: true
  17444. },
  17445. {
  17446. name: "Big Mistake",
  17447. height: math.unit(13, "miles")
  17448. },
  17449. {
  17450. name: "Playing God",
  17451. height: math.unit(2450, "miles")
  17452. },
  17453. ]
  17454. ))
  17455. characterMakers.push(() => makeCharacter(
  17456. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17457. {
  17458. front: {
  17459. height: math.unit(4, "feet"),
  17460. weight: math.unit(120, "lb"),
  17461. name: "Front",
  17462. image: {
  17463. source: "./media/characters/shiriko/front.svg",
  17464. extra: 970/934,
  17465. bottom: 5/975
  17466. }
  17467. },
  17468. },
  17469. [
  17470. {
  17471. name: "Normal",
  17472. height: math.unit(4, "feet"),
  17473. default: true
  17474. },
  17475. ]
  17476. ))
  17477. characterMakers.push(() => makeCharacter(
  17478. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17479. {
  17480. front: {
  17481. height: math.unit(6, "feet"),
  17482. name: "front",
  17483. image: {
  17484. source: "./media/characters/deja/front.svg",
  17485. extra: 926 / 840,
  17486. bottom: 0.07
  17487. }
  17488. },
  17489. },
  17490. [
  17491. {
  17492. name: "Planck Length",
  17493. height: math.unit(1.6e-35, "meters")
  17494. },
  17495. {
  17496. name: "Normal",
  17497. height: math.unit(30.48, "meters"),
  17498. default: true
  17499. },
  17500. {
  17501. name: "Universal",
  17502. height: math.unit(8.8e26, "meters")
  17503. },
  17504. ]
  17505. ))
  17506. characterMakers.push(() => makeCharacter(
  17507. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17508. {
  17509. side: {
  17510. height: math.unit(8, "feet"),
  17511. weight: math.unit(6300, "lb"),
  17512. name: "Side",
  17513. image: {
  17514. source: "./media/characters/anima/side.svg",
  17515. bottom: 0.035
  17516. }
  17517. },
  17518. },
  17519. [
  17520. {
  17521. name: "Normal",
  17522. height: math.unit(8, "feet"),
  17523. default: true
  17524. },
  17525. ]
  17526. ))
  17527. characterMakers.push(() => makeCharacter(
  17528. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17529. {
  17530. front: {
  17531. height: math.unit(8, "feet"),
  17532. weight: math.unit(350, "lb"),
  17533. name: "Front",
  17534. image: {
  17535. source: "./media/characters/bianca/front.svg",
  17536. extra: 234 / 225,
  17537. bottom: 0.03
  17538. }
  17539. },
  17540. },
  17541. [
  17542. {
  17543. name: "Normal",
  17544. height: math.unit(8, "feet"),
  17545. default: true
  17546. },
  17547. ]
  17548. ))
  17549. characterMakers.push(() => makeCharacter(
  17550. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17551. {
  17552. front: {
  17553. height: math.unit(6, "feet"),
  17554. weight: math.unit(150, "lb"),
  17555. name: "Front",
  17556. image: {
  17557. source: "./media/characters/adinia/front.svg",
  17558. extra: 1845 / 1672,
  17559. bottom: 0.02
  17560. }
  17561. },
  17562. back: {
  17563. height: math.unit(6, "feet"),
  17564. weight: math.unit(150, "lb"),
  17565. name: "Back",
  17566. image: {
  17567. source: "./media/characters/adinia/back.svg",
  17568. extra: 1845 / 1672,
  17569. bottom: 0.002
  17570. }
  17571. },
  17572. },
  17573. [
  17574. {
  17575. name: "Normal",
  17576. height: math.unit(11 + 5 / 12, "feet"),
  17577. default: true
  17578. },
  17579. ]
  17580. ))
  17581. characterMakers.push(() => makeCharacter(
  17582. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17583. {
  17584. front: {
  17585. height: math.unit(3, "meters"),
  17586. weight: math.unit(200, "kg"),
  17587. name: "Front",
  17588. image: {
  17589. source: "./media/characters/lykasa/front.svg",
  17590. extra: 1076 / 976,
  17591. bottom: 0.06
  17592. }
  17593. },
  17594. },
  17595. [
  17596. {
  17597. name: "Normal",
  17598. height: math.unit(3, "meters")
  17599. },
  17600. {
  17601. name: "Kaiju",
  17602. height: math.unit(120, "meters"),
  17603. default: true
  17604. },
  17605. {
  17606. name: "Mega Kaiju",
  17607. height: math.unit(240, "km")
  17608. },
  17609. {
  17610. name: "Giga Kaiju",
  17611. height: math.unit(400, "megameters")
  17612. },
  17613. {
  17614. name: "Tera Kaiju",
  17615. height: math.unit(800, "gigameters")
  17616. },
  17617. {
  17618. name: "Kaiju Dragon Goddess",
  17619. height: math.unit(26, "zettaparsecs")
  17620. },
  17621. ]
  17622. ))
  17623. characterMakers.push(() => makeCharacter(
  17624. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17625. {
  17626. side: {
  17627. height: math.unit(283 / 124 * 6, "feet"),
  17628. weight: math.unit(35000, "lb"),
  17629. name: "Side",
  17630. image: {
  17631. source: "./media/characters/malfaren/side.svg",
  17632. extra: 2500 / 1010,
  17633. bottom: 0.01
  17634. }
  17635. },
  17636. front: {
  17637. height: math.unit(22.36, "feet"),
  17638. weight: math.unit(35000, "lb"),
  17639. name: "Front",
  17640. image: {
  17641. source: "./media/characters/malfaren/front.svg",
  17642. extra: 1631 / 1476,
  17643. bottom: 0.01
  17644. }
  17645. },
  17646. maw: {
  17647. height: math.unit(6.9, "feet"),
  17648. name: "Maw",
  17649. image: {
  17650. source: "./media/characters/malfaren/maw.svg"
  17651. }
  17652. },
  17653. },
  17654. [
  17655. {
  17656. name: "Big",
  17657. height: math.unit(283 / 162 * 6, "feet"),
  17658. },
  17659. {
  17660. name: "Bigger",
  17661. height: math.unit(283 / 124 * 6, "feet")
  17662. },
  17663. {
  17664. name: "Massive",
  17665. height: math.unit(283 / 92 * 6, "feet"),
  17666. default: true
  17667. },
  17668. {
  17669. name: "👀💦",
  17670. height: math.unit(283 / 73 * 6, "feet"),
  17671. },
  17672. ]
  17673. ))
  17674. characterMakers.push(() => makeCharacter(
  17675. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17676. {
  17677. front: {
  17678. height: math.unit(1.7, "m"),
  17679. weight: math.unit(70, "kg"),
  17680. name: "Front",
  17681. image: {
  17682. source: "./media/characters/kernel/front.svg",
  17683. extra: 222 / 210,
  17684. bottom: 0.007
  17685. }
  17686. },
  17687. },
  17688. [
  17689. {
  17690. name: "Nano",
  17691. height: math.unit(17, "micrometers")
  17692. },
  17693. {
  17694. name: "Micro",
  17695. height: math.unit(1.7, "mm")
  17696. },
  17697. {
  17698. name: "Small",
  17699. height: math.unit(1.7, "cm")
  17700. },
  17701. {
  17702. name: "Normal",
  17703. height: math.unit(1.7, "m"),
  17704. default: true
  17705. },
  17706. ]
  17707. ))
  17708. characterMakers.push(() => makeCharacter(
  17709. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17710. {
  17711. front: {
  17712. height: math.unit(1.75, "meters"),
  17713. weight: math.unit(65, "kg"),
  17714. name: "Front",
  17715. image: {
  17716. source: "./media/characters/jayne-folest/front.svg",
  17717. extra: 2115 / 2007,
  17718. bottom: 0.02
  17719. }
  17720. },
  17721. back: {
  17722. height: math.unit(1.75, "meters"),
  17723. weight: math.unit(65, "kg"),
  17724. name: "Back",
  17725. image: {
  17726. source: "./media/characters/jayne-folest/back.svg",
  17727. extra: 2115 / 2007,
  17728. bottom: 0.005
  17729. }
  17730. },
  17731. frontClothed: {
  17732. height: math.unit(1.75, "meters"),
  17733. weight: math.unit(65, "kg"),
  17734. name: "Front (Clothed)",
  17735. image: {
  17736. source: "./media/characters/jayne-folest/front-clothed.svg",
  17737. extra: 2115 / 2007,
  17738. bottom: 0.035
  17739. }
  17740. },
  17741. hand: {
  17742. height: math.unit(1 / 1.260, "feet"),
  17743. name: "Hand",
  17744. image: {
  17745. source: "./media/characters/jayne-folest/hand.svg"
  17746. }
  17747. },
  17748. foot: {
  17749. height: math.unit(1 / 0.918, "feet"),
  17750. name: "Foot",
  17751. image: {
  17752. source: "./media/characters/jayne-folest/foot.svg"
  17753. }
  17754. },
  17755. },
  17756. [
  17757. {
  17758. name: "Micro",
  17759. height: math.unit(4, "cm")
  17760. },
  17761. {
  17762. name: "Normal",
  17763. height: math.unit(1.75, "meters")
  17764. },
  17765. {
  17766. name: "Macro",
  17767. height: math.unit(47.5, "meters"),
  17768. default: true
  17769. },
  17770. ]
  17771. ))
  17772. characterMakers.push(() => makeCharacter(
  17773. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17774. {
  17775. front: {
  17776. height: math.unit(180, "cm"),
  17777. weight: math.unit(70, "kg"),
  17778. name: "Front",
  17779. image: {
  17780. source: "./media/characters/algier/front.svg",
  17781. extra: 596 / 572,
  17782. bottom: 0.04
  17783. }
  17784. },
  17785. back: {
  17786. height: math.unit(180, "cm"),
  17787. weight: math.unit(70, "kg"),
  17788. name: "Back",
  17789. image: {
  17790. source: "./media/characters/algier/back.svg",
  17791. extra: 596 / 572,
  17792. bottom: 0.025
  17793. }
  17794. },
  17795. frontdressed: {
  17796. height: math.unit(180, "cm"),
  17797. weight: math.unit(150, "kg"),
  17798. name: "Front-dressed",
  17799. image: {
  17800. source: "./media/characters/algier/front-dressed.svg",
  17801. extra: 596 / 572,
  17802. bottom: 0.038
  17803. }
  17804. },
  17805. },
  17806. [
  17807. {
  17808. name: "Micro",
  17809. height: math.unit(5, "cm")
  17810. },
  17811. {
  17812. name: "Normal",
  17813. height: math.unit(180, "cm"),
  17814. default: true
  17815. },
  17816. {
  17817. name: "Macro",
  17818. height: math.unit(64, "m")
  17819. },
  17820. ]
  17821. ))
  17822. characterMakers.push(() => makeCharacter(
  17823. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17824. {
  17825. upright: {
  17826. height: math.unit(7, "feet"),
  17827. weight: math.unit(300, "lb"),
  17828. name: "Upright",
  17829. image: {
  17830. source: "./media/characters/pretzel/upright.svg",
  17831. extra: 534 / 522,
  17832. bottom: 0.065
  17833. }
  17834. },
  17835. sprawling: {
  17836. height: math.unit(3.75, "feet"),
  17837. weight: math.unit(300, "lb"),
  17838. name: "Sprawling",
  17839. image: {
  17840. source: "./media/characters/pretzel/sprawling.svg",
  17841. extra: 314 / 281,
  17842. bottom: 0.1
  17843. }
  17844. },
  17845. tongue: {
  17846. height: math.unit(2, "feet"),
  17847. name: "Tongue",
  17848. image: {
  17849. source: "./media/characters/pretzel/tongue.svg"
  17850. }
  17851. },
  17852. },
  17853. [
  17854. {
  17855. name: "Normal",
  17856. height: math.unit(7, "feet"),
  17857. default: true
  17858. },
  17859. {
  17860. name: "Oversized",
  17861. height: math.unit(15, "feet")
  17862. },
  17863. {
  17864. name: "Huge",
  17865. height: math.unit(30, "feet")
  17866. },
  17867. {
  17868. name: "Macro",
  17869. height: math.unit(250, "feet")
  17870. },
  17871. ]
  17872. ))
  17873. characterMakers.push(() => makeCharacter(
  17874. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17875. {
  17876. sideFront: {
  17877. height: math.unit(5 + 2 / 12, "feet"),
  17878. weight: math.unit(120, "lb"),
  17879. name: "Front Side",
  17880. image: {
  17881. source: "./media/characters/roxi/side-front.svg",
  17882. extra: 2924 / 2717,
  17883. bottom: 0.08
  17884. }
  17885. },
  17886. sideBack: {
  17887. height: math.unit(5 + 2 / 12, "feet"),
  17888. weight: math.unit(120, "lb"),
  17889. name: "Back Side",
  17890. image: {
  17891. source: "./media/characters/roxi/side-back.svg",
  17892. extra: 2904 / 2693,
  17893. bottom: 0.06
  17894. }
  17895. },
  17896. front: {
  17897. height: math.unit(5 + 2 / 12, "feet"),
  17898. weight: math.unit(120, "lb"),
  17899. name: "Front",
  17900. image: {
  17901. source: "./media/characters/roxi/front.svg",
  17902. extra: 2028 / 1907,
  17903. bottom: 0.01
  17904. }
  17905. },
  17906. frontAlt: {
  17907. height: math.unit(5 + 2 / 12, "feet"),
  17908. weight: math.unit(120, "lb"),
  17909. name: "Front (Alt)",
  17910. image: {
  17911. source: "./media/characters/roxi/front-alt.svg",
  17912. extra: 1828 / 1798,
  17913. bottom: 0.01
  17914. }
  17915. },
  17916. sitting: {
  17917. height: math.unit(2.8, "feet"),
  17918. weight: math.unit(120, "lb"),
  17919. name: "Sitting",
  17920. image: {
  17921. source: "./media/characters/roxi/sitting.svg",
  17922. extra: 2660 / 2462,
  17923. bottom: 0.1
  17924. }
  17925. },
  17926. },
  17927. [
  17928. {
  17929. name: "Normal",
  17930. height: math.unit(5 + 2 / 12, "feet"),
  17931. default: true
  17932. },
  17933. ]
  17934. ))
  17935. characterMakers.push(() => makeCharacter(
  17936. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17937. {
  17938. side: {
  17939. height: math.unit(55, "feet"),
  17940. weight: math.unit(153, "tons"),
  17941. name: "Side",
  17942. image: {
  17943. source: "./media/characters/shadow/side.svg",
  17944. extra: 701 / 628,
  17945. bottom: 0.02
  17946. }
  17947. },
  17948. flying: {
  17949. height: math.unit(145, "feet"),
  17950. weight: math.unit(153, "tons"),
  17951. name: "Flying",
  17952. image: {
  17953. source: "./media/characters/shadow/flying.svg"
  17954. }
  17955. },
  17956. },
  17957. [
  17958. {
  17959. name: "Normal",
  17960. height: math.unit(55, "feet"),
  17961. default: true
  17962. },
  17963. ]
  17964. ))
  17965. characterMakers.push(() => makeCharacter(
  17966. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17967. {
  17968. front: {
  17969. height: math.unit(6, "feet"),
  17970. weight: math.unit(200, "lb"),
  17971. name: "Front",
  17972. image: {
  17973. source: "./media/characters/marcie/front.svg",
  17974. extra: 960 / 876,
  17975. bottom: 58 / 1017.87
  17976. }
  17977. },
  17978. },
  17979. [
  17980. {
  17981. name: "Macro",
  17982. height: math.unit(1, "mile"),
  17983. default: true
  17984. },
  17985. ]
  17986. ))
  17987. characterMakers.push(() => makeCharacter(
  17988. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17989. {
  17990. front: {
  17991. height: math.unit(7, "feet"),
  17992. weight: math.unit(200, "lb"),
  17993. name: "Front",
  17994. image: {
  17995. source: "./media/characters/kachina/front.svg",
  17996. extra: 1290.68 / 1119,
  17997. bottom: 36.5 / 1327.18
  17998. }
  17999. },
  18000. },
  18001. [
  18002. {
  18003. name: "Normal",
  18004. height: math.unit(7, "feet"),
  18005. default: true
  18006. },
  18007. ]
  18008. ))
  18009. characterMakers.push(() => makeCharacter(
  18010. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18011. {
  18012. looking: {
  18013. height: math.unit(2, "meters"),
  18014. weight: math.unit(300, "kg"),
  18015. name: "Looking",
  18016. image: {
  18017. source: "./media/characters/kash/looking.svg",
  18018. extra: 474 / 344,
  18019. bottom: 0.03
  18020. }
  18021. },
  18022. side: {
  18023. height: math.unit(2, "meters"),
  18024. weight: math.unit(300, "kg"),
  18025. name: "Side",
  18026. image: {
  18027. source: "./media/characters/kash/side.svg",
  18028. extra: 302 / 251,
  18029. bottom: 0.03
  18030. }
  18031. },
  18032. front: {
  18033. height: math.unit(2, "meters"),
  18034. weight: math.unit(300, "kg"),
  18035. name: "Front",
  18036. image: {
  18037. source: "./media/characters/kash/front.svg",
  18038. extra: 495 / 360,
  18039. bottom: 0.015
  18040. }
  18041. },
  18042. },
  18043. [
  18044. {
  18045. name: "Normal",
  18046. height: math.unit(2, "meters"),
  18047. default: true
  18048. },
  18049. {
  18050. name: "Big",
  18051. height: math.unit(3, "meters")
  18052. },
  18053. {
  18054. name: "Large",
  18055. height: math.unit(5, "meters")
  18056. },
  18057. ]
  18058. ))
  18059. characterMakers.push(() => makeCharacter(
  18060. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18061. {
  18062. feeding: {
  18063. height: math.unit(6.7, "feet"),
  18064. weight: math.unit(350, "lb"),
  18065. name: "Feeding",
  18066. image: {
  18067. source: "./media/characters/lalim/feeding.svg",
  18068. }
  18069. },
  18070. },
  18071. [
  18072. {
  18073. name: "Normal",
  18074. height: math.unit(6.7, "feet"),
  18075. default: true
  18076. },
  18077. ]
  18078. ))
  18079. characterMakers.push(() => makeCharacter(
  18080. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18081. {
  18082. front: {
  18083. height: math.unit(9.5, "feet"),
  18084. weight: math.unit(600, "lb"),
  18085. name: "Front",
  18086. image: {
  18087. source: "./media/characters/de'vout/front.svg",
  18088. extra: 1443 / 1328,
  18089. bottom: 0.025
  18090. }
  18091. },
  18092. back: {
  18093. height: math.unit(9.5, "feet"),
  18094. weight: math.unit(600, "lb"),
  18095. name: "Back",
  18096. image: {
  18097. source: "./media/characters/de'vout/back.svg",
  18098. extra: 1443 / 1328
  18099. }
  18100. },
  18101. frontDressed: {
  18102. height: math.unit(9.5, "feet"),
  18103. weight: math.unit(600, "lb"),
  18104. name: "Front (Dressed",
  18105. image: {
  18106. source: "./media/characters/de'vout/front-dressed.svg",
  18107. extra: 1443 / 1328,
  18108. bottom: 0.025
  18109. }
  18110. },
  18111. backDressed: {
  18112. height: math.unit(9.5, "feet"),
  18113. weight: math.unit(600, "lb"),
  18114. name: "Back (Dressed",
  18115. image: {
  18116. source: "./media/characters/de'vout/back-dressed.svg",
  18117. extra: 1443 / 1328
  18118. }
  18119. },
  18120. },
  18121. [
  18122. {
  18123. name: "Normal",
  18124. height: math.unit(9.5, "feet"),
  18125. default: true
  18126. },
  18127. ]
  18128. ))
  18129. characterMakers.push(() => makeCharacter(
  18130. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18131. {
  18132. front: {
  18133. height: math.unit(8, "feet"),
  18134. weight: math.unit(225, "lb"),
  18135. name: "Front",
  18136. image: {
  18137. source: "./media/characters/talana/front.svg",
  18138. extra: 1410 / 1300,
  18139. bottom: 0.015
  18140. }
  18141. },
  18142. frontDressed: {
  18143. height: math.unit(8, "feet"),
  18144. weight: math.unit(225, "lb"),
  18145. name: "Front (Dressed",
  18146. image: {
  18147. source: "./media/characters/talana/front-dressed.svg",
  18148. extra: 1410 / 1300,
  18149. bottom: 0.015
  18150. }
  18151. },
  18152. },
  18153. [
  18154. {
  18155. name: "Normal",
  18156. height: math.unit(8, "feet"),
  18157. default: true
  18158. },
  18159. ]
  18160. ))
  18161. characterMakers.push(() => makeCharacter(
  18162. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18163. {
  18164. side: {
  18165. height: math.unit(7.2, "feet"),
  18166. weight: math.unit(150, "lb"),
  18167. name: "Side",
  18168. image: {
  18169. source: "./media/characters/xeauvok/side.svg",
  18170. extra: 1975 / 1523,
  18171. bottom: 0.07
  18172. }
  18173. },
  18174. },
  18175. [
  18176. {
  18177. name: "Normal",
  18178. height: math.unit(7.2, "feet"),
  18179. default: true
  18180. },
  18181. ]
  18182. ))
  18183. characterMakers.push(() => makeCharacter(
  18184. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18185. {
  18186. side: {
  18187. height: math.unit(10, "feet"),
  18188. weight: math.unit(900, "kg"),
  18189. name: "Side",
  18190. image: {
  18191. source: "./media/characters/zara/side.svg",
  18192. extra: 504 / 498
  18193. }
  18194. },
  18195. },
  18196. [
  18197. {
  18198. name: "Normal",
  18199. height: math.unit(10, "feet"),
  18200. default: true
  18201. },
  18202. ]
  18203. ))
  18204. characterMakers.push(() => makeCharacter(
  18205. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18206. {
  18207. side: {
  18208. height: math.unit(6, "feet"),
  18209. weight: math.unit(150, "lb"),
  18210. name: "Side",
  18211. image: {
  18212. source: "./media/characters/richard-dragon/side.svg",
  18213. extra: 845 / 340,
  18214. bottom: 0.017
  18215. }
  18216. },
  18217. maw: {
  18218. height: math.unit(2.97, "feet"),
  18219. name: "Maw",
  18220. image: {
  18221. source: "./media/characters/richard-dragon/maw.svg"
  18222. }
  18223. },
  18224. },
  18225. [
  18226. ]
  18227. ))
  18228. characterMakers.push(() => makeCharacter(
  18229. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18230. {
  18231. front: {
  18232. height: math.unit(4, "feet"),
  18233. weight: math.unit(100, "lb"),
  18234. name: "Front",
  18235. image: {
  18236. source: "./media/characters/richard-smeargle/front.svg",
  18237. extra: 2952 / 2820,
  18238. bottom: 0.028
  18239. }
  18240. },
  18241. },
  18242. [
  18243. {
  18244. name: "Normal",
  18245. height: math.unit(4, "feet"),
  18246. default: true
  18247. },
  18248. {
  18249. name: "Dynamax",
  18250. height: math.unit(20, "meters")
  18251. },
  18252. ]
  18253. ))
  18254. characterMakers.push(() => makeCharacter(
  18255. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18256. {
  18257. front: {
  18258. height: math.unit(6, "feet"),
  18259. weight: math.unit(110, "lb"),
  18260. name: "Front",
  18261. image: {
  18262. source: "./media/characters/klay/front.svg",
  18263. extra: 962 / 883,
  18264. bottom: 0.04
  18265. }
  18266. },
  18267. back: {
  18268. height: math.unit(6, "feet"),
  18269. weight: math.unit(110, "lb"),
  18270. name: "Back",
  18271. image: {
  18272. source: "./media/characters/klay/back.svg",
  18273. extra: 962 / 883
  18274. }
  18275. },
  18276. beans: {
  18277. height: math.unit(1.15, "feet"),
  18278. name: "Beans",
  18279. image: {
  18280. source: "./media/characters/klay/beans.svg"
  18281. }
  18282. },
  18283. },
  18284. [
  18285. {
  18286. name: "Micro",
  18287. height: math.unit(6, "inches")
  18288. },
  18289. {
  18290. name: "Mini",
  18291. height: math.unit(3, "feet")
  18292. },
  18293. {
  18294. name: "Normal",
  18295. height: math.unit(6, "feet"),
  18296. default: true
  18297. },
  18298. {
  18299. name: "Big",
  18300. height: math.unit(25, "feet")
  18301. },
  18302. {
  18303. name: "Macro",
  18304. height: math.unit(100, "feet")
  18305. },
  18306. {
  18307. name: "Megamacro",
  18308. height: math.unit(400, "feet")
  18309. },
  18310. ]
  18311. ))
  18312. characterMakers.push(() => makeCharacter(
  18313. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18314. {
  18315. front: {
  18316. height: math.unit(6, "feet"),
  18317. weight: math.unit(160, "lb"),
  18318. name: "Front",
  18319. image: {
  18320. source: "./media/characters/marcus/front.svg",
  18321. extra: 734 / 676,
  18322. bottom: 0.03
  18323. }
  18324. },
  18325. },
  18326. [
  18327. {
  18328. name: "Little",
  18329. height: math.unit(6, "feet")
  18330. },
  18331. {
  18332. name: "Normal",
  18333. height: math.unit(110, "feet"),
  18334. default: true
  18335. },
  18336. {
  18337. name: "Macro",
  18338. height: math.unit(250, "feet")
  18339. },
  18340. {
  18341. name: "Megamacro",
  18342. height: math.unit(1000, "feet")
  18343. },
  18344. ]
  18345. ))
  18346. characterMakers.push(() => makeCharacter(
  18347. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18348. {
  18349. front: {
  18350. height: math.unit(7, "feet"),
  18351. weight: math.unit(275, "lb"),
  18352. name: "Front",
  18353. image: {
  18354. source: "./media/characters/claude-delroute/front.svg",
  18355. extra: 230 / 214,
  18356. bottom: 0.007
  18357. }
  18358. },
  18359. side: {
  18360. height: math.unit(7, "feet"),
  18361. weight: math.unit(275, "lb"),
  18362. name: "Side",
  18363. image: {
  18364. source: "./media/characters/claude-delroute/side.svg",
  18365. extra: 222 / 214,
  18366. bottom: 0.01
  18367. }
  18368. },
  18369. back: {
  18370. height: math.unit(7, "feet"),
  18371. weight: math.unit(275, "lb"),
  18372. name: "Back",
  18373. image: {
  18374. source: "./media/characters/claude-delroute/back.svg",
  18375. extra: 230 / 214,
  18376. bottom: 0.015
  18377. }
  18378. },
  18379. maw: {
  18380. height: math.unit(0.6407, "meters"),
  18381. name: "Maw",
  18382. image: {
  18383. source: "./media/characters/claude-delroute/maw.svg"
  18384. }
  18385. },
  18386. },
  18387. [
  18388. {
  18389. name: "Normal",
  18390. height: math.unit(7, "feet"),
  18391. default: true
  18392. },
  18393. {
  18394. name: "Lorge",
  18395. height: math.unit(20, "feet")
  18396. },
  18397. ]
  18398. ))
  18399. characterMakers.push(() => makeCharacter(
  18400. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18401. {
  18402. front: {
  18403. height: math.unit(8 + 4 / 12, "feet"),
  18404. weight: math.unit(600, "lb"),
  18405. name: "Front",
  18406. image: {
  18407. source: "./media/characters/dragonien/front.svg",
  18408. extra: 100 / 94,
  18409. bottom: 3.3 / 103.3445
  18410. }
  18411. },
  18412. back: {
  18413. height: math.unit(8 + 4 / 12, "feet"),
  18414. weight: math.unit(600, "lb"),
  18415. name: "Back",
  18416. image: {
  18417. source: "./media/characters/dragonien/back.svg",
  18418. extra: 776 / 746,
  18419. bottom: 6.4 / 782.0616
  18420. }
  18421. },
  18422. foot: {
  18423. height: math.unit(1.54, "feet"),
  18424. name: "Foot",
  18425. image: {
  18426. source: "./media/characters/dragonien/foot.svg",
  18427. }
  18428. },
  18429. },
  18430. [
  18431. {
  18432. name: "Normal",
  18433. height: math.unit(8 + 4 / 12, "feet"),
  18434. default: true
  18435. },
  18436. {
  18437. name: "Macro",
  18438. height: math.unit(200, "feet")
  18439. },
  18440. {
  18441. name: "Megamacro",
  18442. height: math.unit(1, "mile")
  18443. },
  18444. {
  18445. name: "Gigamacro",
  18446. height: math.unit(1000, "miles")
  18447. },
  18448. ]
  18449. ))
  18450. characterMakers.push(() => makeCharacter(
  18451. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18452. {
  18453. front: {
  18454. height: math.unit(5 + 2 / 12, "feet"),
  18455. weight: math.unit(110, "lb"),
  18456. name: "Front",
  18457. image: {
  18458. source: "./media/characters/desta/front.svg",
  18459. extra: 767 / 726,
  18460. bottom: 11.7 / 779
  18461. }
  18462. },
  18463. back: {
  18464. height: math.unit(5 + 2 / 12, "feet"),
  18465. weight: math.unit(110, "lb"),
  18466. name: "Back",
  18467. image: {
  18468. source: "./media/characters/desta/back.svg",
  18469. extra: 777 / 728,
  18470. bottom: 6 / 784
  18471. }
  18472. },
  18473. frontAlt: {
  18474. height: math.unit(5 + 2 / 12, "feet"),
  18475. weight: math.unit(110, "lb"),
  18476. name: "Front",
  18477. image: {
  18478. source: "./media/characters/desta/front-alt.svg",
  18479. extra: 1482 / 1417
  18480. }
  18481. },
  18482. side: {
  18483. height: math.unit(5 + 2 / 12, "feet"),
  18484. weight: math.unit(110, "lb"),
  18485. name: "Side",
  18486. image: {
  18487. source: "./media/characters/desta/side.svg",
  18488. extra: 2579 / 2491,
  18489. bottom: 0.053
  18490. }
  18491. },
  18492. },
  18493. [
  18494. {
  18495. name: "Micro",
  18496. height: math.unit(6, "inches")
  18497. },
  18498. {
  18499. name: "Normal",
  18500. height: math.unit(5 + 2 / 12, "feet"),
  18501. default: true
  18502. },
  18503. {
  18504. name: "Macro",
  18505. height: math.unit(62, "feet")
  18506. },
  18507. {
  18508. name: "Megamacro",
  18509. height: math.unit(1800, "feet")
  18510. },
  18511. ]
  18512. ))
  18513. characterMakers.push(() => makeCharacter(
  18514. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18515. {
  18516. front: {
  18517. height: math.unit(10, "feet"),
  18518. weight: math.unit(700, "lb"),
  18519. name: "Front",
  18520. image: {
  18521. source: "./media/characters/storm-alystar/front.svg",
  18522. extra: 2112 / 1898,
  18523. bottom: 0.034
  18524. }
  18525. },
  18526. },
  18527. [
  18528. {
  18529. name: "Micro",
  18530. height: math.unit(3.5, "inches")
  18531. },
  18532. {
  18533. name: "Normal",
  18534. height: math.unit(10, "feet"),
  18535. default: true
  18536. },
  18537. {
  18538. name: "Macro",
  18539. height: math.unit(400, "feet")
  18540. },
  18541. {
  18542. name: "Deific",
  18543. height: math.unit(60, "miles")
  18544. },
  18545. ]
  18546. ))
  18547. characterMakers.push(() => makeCharacter(
  18548. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18549. {
  18550. front: {
  18551. height: math.unit(2.35, "meters"),
  18552. weight: math.unit(119, "kg"),
  18553. name: "Front",
  18554. image: {
  18555. source: "./media/characters/ilia/front.svg",
  18556. extra: 1285 / 1255,
  18557. bottom: 0.06
  18558. }
  18559. },
  18560. },
  18561. [
  18562. {
  18563. name: "Normal",
  18564. height: math.unit(2.35, "meters")
  18565. },
  18566. {
  18567. name: "Macro",
  18568. height: math.unit(140, "meters"),
  18569. default: true
  18570. },
  18571. {
  18572. name: "Megamacro",
  18573. height: math.unit(100, "miles")
  18574. },
  18575. ]
  18576. ))
  18577. characterMakers.push(() => makeCharacter(
  18578. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18579. {
  18580. front: {
  18581. height: math.unit(6 + 5 / 12, "feet"),
  18582. weight: math.unit(190, "lb"),
  18583. name: "Front",
  18584. image: {
  18585. source: "./media/characters/kingdead/front.svg",
  18586. extra: 1228 / 1177
  18587. }
  18588. },
  18589. },
  18590. [
  18591. {
  18592. name: "Micro",
  18593. height: math.unit(7, "inches")
  18594. },
  18595. {
  18596. name: "Normal",
  18597. height: math.unit(6 + 5 / 12, "feet")
  18598. },
  18599. {
  18600. name: "Macro",
  18601. height: math.unit(150, "feet"),
  18602. default: true
  18603. },
  18604. {
  18605. name: "Megamacro",
  18606. height: math.unit(200, "miles")
  18607. },
  18608. ]
  18609. ))
  18610. characterMakers.push(() => makeCharacter(
  18611. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18612. {
  18613. front: {
  18614. height: math.unit(8, "feet"),
  18615. weight: math.unit(600, "lb"),
  18616. name: "Front",
  18617. image: {
  18618. source: "./media/characters/kyrehx/front.svg",
  18619. extra: 1195 / 1095,
  18620. bottom: 0.034
  18621. }
  18622. },
  18623. },
  18624. [
  18625. {
  18626. name: "Micro",
  18627. height: math.unit(2, "inches")
  18628. },
  18629. {
  18630. name: "Normal",
  18631. height: math.unit(8, "feet"),
  18632. default: true
  18633. },
  18634. {
  18635. name: "Macro",
  18636. height: math.unit(255, "feet")
  18637. },
  18638. ]
  18639. ))
  18640. characterMakers.push(() => makeCharacter(
  18641. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18642. {
  18643. front: {
  18644. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18645. weight: math.unit(184, "lb"),
  18646. name: "Front",
  18647. image: {
  18648. source: "./media/characters/xang/front.svg",
  18649. extra: 845 / 755
  18650. }
  18651. },
  18652. },
  18653. [
  18654. {
  18655. name: "Normal",
  18656. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18657. default: true
  18658. },
  18659. {
  18660. name: "Macro",
  18661. height: math.unit(0.935 * 146, "feet")
  18662. },
  18663. {
  18664. name: "Megamacro",
  18665. height: math.unit(0.935 * 3, "miles")
  18666. },
  18667. ]
  18668. ))
  18669. characterMakers.push(() => makeCharacter(
  18670. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18671. {
  18672. frontDressed: {
  18673. height: math.unit(5 + 7 / 12, "feet"),
  18674. weight: math.unit(140, "lb"),
  18675. name: "Front (Dressed)",
  18676. image: {
  18677. source: "./media/characters/doc-weardno/front-dressed.svg",
  18678. extra: 263 / 234
  18679. }
  18680. },
  18681. backDressed: {
  18682. height: math.unit(5 + 7 / 12, "feet"),
  18683. weight: math.unit(140, "lb"),
  18684. name: "Back (Dressed)",
  18685. image: {
  18686. source: "./media/characters/doc-weardno/back-dressed.svg",
  18687. extra: 266 / 238
  18688. }
  18689. },
  18690. front: {
  18691. height: math.unit(5 + 7 / 12, "feet"),
  18692. weight: math.unit(140, "lb"),
  18693. name: "Front",
  18694. image: {
  18695. source: "./media/characters/doc-weardno/front.svg",
  18696. extra: 254 / 233
  18697. }
  18698. },
  18699. },
  18700. [
  18701. {
  18702. name: "Micro",
  18703. height: math.unit(3, "inches")
  18704. },
  18705. {
  18706. name: "Normal",
  18707. height: math.unit(5 + 7 / 12, "feet"),
  18708. default: true
  18709. },
  18710. {
  18711. name: "Macro",
  18712. height: math.unit(25, "feet")
  18713. },
  18714. {
  18715. name: "Megamacro",
  18716. height: math.unit(2, "miles")
  18717. },
  18718. ]
  18719. ))
  18720. characterMakers.push(() => makeCharacter(
  18721. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18722. {
  18723. front: {
  18724. height: math.unit(6 + 2 / 12, "feet"),
  18725. weight: math.unit(153, "lb"),
  18726. name: "Front",
  18727. image: {
  18728. source: "./media/characters/seth-whilst/front.svg",
  18729. bottom: 0.07
  18730. }
  18731. },
  18732. },
  18733. [
  18734. {
  18735. name: "Micro",
  18736. height: math.unit(5, "inches")
  18737. },
  18738. {
  18739. name: "Normal",
  18740. height: math.unit(6 + 2 / 12, "feet"),
  18741. default: true
  18742. },
  18743. ]
  18744. ))
  18745. characterMakers.push(() => makeCharacter(
  18746. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18747. {
  18748. front: {
  18749. height: math.unit(3, "inches"),
  18750. weight: math.unit(8, "grams"),
  18751. name: "Front",
  18752. image: {
  18753. source: "./media/characters/pocket-jabari/front.svg",
  18754. extra: 1024 / 974,
  18755. bottom: 0.039
  18756. }
  18757. },
  18758. },
  18759. [
  18760. {
  18761. name: "Minimicro",
  18762. height: math.unit(8, "mm")
  18763. },
  18764. {
  18765. name: "Micro",
  18766. height: math.unit(3, "inches"),
  18767. default: true
  18768. },
  18769. {
  18770. name: "Normal",
  18771. height: math.unit(3, "feet")
  18772. },
  18773. ]
  18774. ))
  18775. characterMakers.push(() => makeCharacter(
  18776. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18777. {
  18778. front: {
  18779. height: math.unit(15, "feet"),
  18780. weight: math.unit(3280, "lb"),
  18781. name: "Front",
  18782. image: {
  18783. source: "./media/characters/sapphy/front.svg",
  18784. extra: 671 / 577,
  18785. bottom: 0.085
  18786. }
  18787. },
  18788. back: {
  18789. height: math.unit(15, "feet"),
  18790. weight: math.unit(3280, "lb"),
  18791. name: "Back",
  18792. image: {
  18793. source: "./media/characters/sapphy/back.svg",
  18794. extra: 631 / 607,
  18795. bottom: 0.045
  18796. }
  18797. },
  18798. },
  18799. [
  18800. {
  18801. name: "Normal",
  18802. height: math.unit(15, "feet")
  18803. },
  18804. {
  18805. name: "Casual Macro",
  18806. height: math.unit(120, "feet")
  18807. },
  18808. {
  18809. name: "Macro",
  18810. height: math.unit(2150, "feet"),
  18811. default: true
  18812. },
  18813. {
  18814. name: "Megamacro",
  18815. height: math.unit(8, "miles")
  18816. },
  18817. {
  18818. name: "Galaxy Mom",
  18819. height: math.unit(6, "megalightyears")
  18820. },
  18821. ]
  18822. ))
  18823. characterMakers.push(() => makeCharacter(
  18824. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18825. {
  18826. front: {
  18827. height: math.unit(6, "feet"),
  18828. weight: math.unit(170, "lb"),
  18829. name: "Front",
  18830. image: {
  18831. source: "./media/characters/kiro/front.svg",
  18832. extra: 1064 / 1012,
  18833. bottom: 0.052
  18834. }
  18835. },
  18836. },
  18837. [
  18838. {
  18839. name: "Micro",
  18840. height: math.unit(6, "inches")
  18841. },
  18842. {
  18843. name: "Normal",
  18844. height: math.unit(6, "feet"),
  18845. default: true
  18846. },
  18847. {
  18848. name: "Macro",
  18849. height: math.unit(72, "feet")
  18850. },
  18851. ]
  18852. ))
  18853. characterMakers.push(() => makeCharacter(
  18854. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18855. {
  18856. front: {
  18857. height: math.unit(5 + 9 / 12, "feet"),
  18858. weight: math.unit(175, "lb"),
  18859. name: "Front",
  18860. image: {
  18861. source: "./media/characters/irishfox/front.svg",
  18862. extra: 1912 / 1680,
  18863. bottom: 0.02
  18864. }
  18865. },
  18866. },
  18867. [
  18868. {
  18869. name: "Nano",
  18870. height: math.unit(1, "mm")
  18871. },
  18872. {
  18873. name: "Micro",
  18874. height: math.unit(2, "inches")
  18875. },
  18876. {
  18877. name: "Normal",
  18878. height: math.unit(5 + 9 / 12, "feet"),
  18879. default: true
  18880. },
  18881. {
  18882. name: "Macro",
  18883. height: math.unit(45, "feet")
  18884. },
  18885. ]
  18886. ))
  18887. characterMakers.push(() => makeCharacter(
  18888. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18889. {
  18890. front: {
  18891. height: math.unit(6 + 1 / 12, "feet"),
  18892. weight: math.unit(75, "lb"),
  18893. name: "Front",
  18894. image: {
  18895. source: "./media/characters/aronai-sieyes/front.svg",
  18896. extra: 1556 / 1480,
  18897. bottom: 0.015
  18898. }
  18899. },
  18900. side: {
  18901. height: math.unit(6 + 1 / 12, "feet"),
  18902. weight: math.unit(75, "lb"),
  18903. name: "Side",
  18904. image: {
  18905. source: "./media/characters/aronai-sieyes/side.svg",
  18906. extra: 1433 / 1390,
  18907. bottom: 0.0393
  18908. }
  18909. },
  18910. back: {
  18911. height: math.unit(6 + 1 / 12, "feet"),
  18912. weight: math.unit(75, "lb"),
  18913. name: "Back",
  18914. image: {
  18915. source: "./media/characters/aronai-sieyes/back.svg",
  18916. extra: 1544 / 1494,
  18917. bottom: 0.02
  18918. }
  18919. },
  18920. frontClothed: {
  18921. height: math.unit(6 + 1 / 12, "feet"),
  18922. weight: math.unit(75, "lb"),
  18923. name: "Front (Clothed)",
  18924. image: {
  18925. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18926. extra: 1582 / 1527
  18927. }
  18928. },
  18929. feral: {
  18930. height: math.unit(18, "feet"),
  18931. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18932. name: "Feral",
  18933. image: {
  18934. source: "./media/characters/aronai-sieyes/feral.svg",
  18935. extra: 1530 / 1240,
  18936. bottom: 0.035
  18937. }
  18938. },
  18939. },
  18940. [
  18941. {
  18942. name: "Micro",
  18943. height: math.unit(2, "inches")
  18944. },
  18945. {
  18946. name: "Normal",
  18947. height: math.unit(6 + 1 / 12, "feet"),
  18948. default: true
  18949. }
  18950. ]
  18951. ))
  18952. characterMakers.push(() => makeCharacter(
  18953. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18954. {
  18955. front: {
  18956. height: math.unit(12, "feet"),
  18957. weight: math.unit(410, "kg"),
  18958. name: "Front",
  18959. image: {
  18960. source: "./media/characters/xuna/front.svg",
  18961. extra: 2184 / 1980
  18962. }
  18963. },
  18964. side: {
  18965. height: math.unit(12, "feet"),
  18966. weight: math.unit(410, "kg"),
  18967. name: "Side",
  18968. image: {
  18969. source: "./media/characters/xuna/side.svg",
  18970. extra: 2184 / 1980
  18971. }
  18972. },
  18973. back: {
  18974. height: math.unit(12, "feet"),
  18975. weight: math.unit(410, "kg"),
  18976. name: "Back",
  18977. image: {
  18978. source: "./media/characters/xuna/back.svg",
  18979. extra: 2184 / 1980
  18980. }
  18981. },
  18982. },
  18983. [
  18984. {
  18985. name: "Nano glow",
  18986. height: math.unit(10, "nm")
  18987. },
  18988. {
  18989. name: "Micro floof",
  18990. height: math.unit(0.3, "m")
  18991. },
  18992. {
  18993. name: "Huggable softy boi",
  18994. height: math.unit(3.6576, "m"),
  18995. default: true
  18996. },
  18997. {
  18998. name: "Admirable floof",
  18999. height: math.unit(80, "meters")
  19000. },
  19001. {
  19002. name: "Gentle macro",
  19003. height: math.unit(300, "meters")
  19004. },
  19005. {
  19006. name: "Very careful floof",
  19007. height: math.unit(3200, "meters")
  19008. },
  19009. {
  19010. name: "The mega floof",
  19011. height: math.unit(36000, "meters")
  19012. },
  19013. {
  19014. name: "Giga-fur-Wicker",
  19015. height: math.unit(4800000, "meters")
  19016. },
  19017. {
  19018. name: "Licky world",
  19019. height: math.unit(20000000, "meters")
  19020. },
  19021. {
  19022. name: "Floofy cyan sun",
  19023. height: math.unit(1500000000, "meters")
  19024. },
  19025. {
  19026. name: "Milky Wicker",
  19027. height: math.unit(1000000000000000000000, "meters")
  19028. },
  19029. {
  19030. name: "The observing Wicker",
  19031. height: math.unit(999999999999999999999999999, "meters")
  19032. },
  19033. ]
  19034. ))
  19035. characterMakers.push(() => makeCharacter(
  19036. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19037. {
  19038. front: {
  19039. height: math.unit(5 + 9 / 12, "feet"),
  19040. weight: math.unit(150, "lb"),
  19041. name: "Front",
  19042. image: {
  19043. source: "./media/characters/arokha-sieyes/front.svg",
  19044. extra: 1425 / 1284,
  19045. bottom: 0.05
  19046. }
  19047. },
  19048. },
  19049. [
  19050. {
  19051. name: "Normal",
  19052. height: math.unit(5 + 9 / 12, "feet")
  19053. },
  19054. {
  19055. name: "Macro",
  19056. height: math.unit(30, "meters"),
  19057. default: true
  19058. },
  19059. ]
  19060. ))
  19061. characterMakers.push(() => makeCharacter(
  19062. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19063. {
  19064. front: {
  19065. height: math.unit(6, "feet"),
  19066. weight: math.unit(180, "lb"),
  19067. name: "Front",
  19068. image: {
  19069. source: "./media/characters/arokh-sieyes/front.svg",
  19070. extra: 1830 / 1769,
  19071. bottom: 0.01
  19072. }
  19073. },
  19074. },
  19075. [
  19076. {
  19077. name: "Normal",
  19078. height: math.unit(6, "feet")
  19079. },
  19080. {
  19081. name: "Macro",
  19082. height: math.unit(30, "meters"),
  19083. default: true
  19084. },
  19085. ]
  19086. ))
  19087. characterMakers.push(() => makeCharacter(
  19088. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19089. {
  19090. side: {
  19091. height: math.unit(13 + 1 / 12, "feet"),
  19092. weight: math.unit(8.5, "tonnes"),
  19093. name: "Side",
  19094. image: {
  19095. source: "./media/characters/goldeneye/side.svg",
  19096. extra: 1182 / 778,
  19097. bottom: 0.067
  19098. }
  19099. },
  19100. paw: {
  19101. height: math.unit(3.4, "feet"),
  19102. name: "Paw",
  19103. image: {
  19104. source: "./media/characters/goldeneye/paw.svg"
  19105. }
  19106. },
  19107. },
  19108. [
  19109. {
  19110. name: "Normal",
  19111. height: math.unit(13 + 1 / 12, "feet"),
  19112. default: true
  19113. },
  19114. ]
  19115. ))
  19116. characterMakers.push(() => makeCharacter(
  19117. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19118. {
  19119. front: {
  19120. height: math.unit(6 + 1 / 12, "feet"),
  19121. weight: math.unit(210, "lb"),
  19122. name: "Front",
  19123. image: {
  19124. source: "./media/characters/leonardo-lycheborne/front.svg",
  19125. extra: 776/723,
  19126. bottom: 34/810
  19127. }
  19128. },
  19129. side: {
  19130. height: math.unit(6 + 1 / 12, "feet"),
  19131. weight: math.unit(210, "lb"),
  19132. name: "Side",
  19133. image: {
  19134. source: "./media/characters/leonardo-lycheborne/side.svg",
  19135. extra: 780/728,
  19136. bottom: 12/792
  19137. }
  19138. },
  19139. back: {
  19140. height: math.unit(6 + 1 / 12, "feet"),
  19141. weight: math.unit(210, "lb"),
  19142. name: "Back",
  19143. image: {
  19144. source: "./media/characters/leonardo-lycheborne/back.svg",
  19145. extra: 775/721,
  19146. bottom: 17/792
  19147. }
  19148. },
  19149. hand: {
  19150. height: math.unit(1.08, "feet"),
  19151. name: "Hand",
  19152. image: {
  19153. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19154. }
  19155. },
  19156. foot: {
  19157. height: math.unit(1.32, "feet"),
  19158. name: "Foot",
  19159. image: {
  19160. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19161. }
  19162. },
  19163. maw: {
  19164. height: math.unit(1, "feet"),
  19165. name: "Maw",
  19166. image: {
  19167. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19168. }
  19169. },
  19170. were: {
  19171. height: math.unit(20, "feet"),
  19172. weight: math.unit(7800, "lb"),
  19173. name: "Were",
  19174. image: {
  19175. source: "./media/characters/leonardo-lycheborne/were.svg",
  19176. extra: 1224/1165,
  19177. bottom: 72/1296
  19178. }
  19179. },
  19180. feral: {
  19181. height: math.unit(7.5, "feet"),
  19182. weight: math.unit(600, "lb"),
  19183. name: "Feral",
  19184. image: {
  19185. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19186. extra: 797/702,
  19187. bottom: 139/936
  19188. }
  19189. },
  19190. taur: {
  19191. height: math.unit(11, "feet"),
  19192. weight: math.unit(3300, "lb"),
  19193. name: "Taur",
  19194. image: {
  19195. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19196. extra: 1271/1197,
  19197. bottom: 47/1318
  19198. }
  19199. },
  19200. barghest: {
  19201. height: math.unit(11, "feet"),
  19202. weight: math.unit(1300, "lb"),
  19203. name: "Barghest",
  19204. image: {
  19205. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19206. extra: 1291/1204,
  19207. bottom: 37/1328
  19208. }
  19209. },
  19210. dick: {
  19211. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19212. name: "Dick",
  19213. image: {
  19214. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19215. }
  19216. },
  19217. dickWere: {
  19218. height: math.unit((20) / 3.8, "feet"),
  19219. name: "Dick (Were)",
  19220. image: {
  19221. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19222. }
  19223. },
  19224. },
  19225. [
  19226. {
  19227. name: "Normal",
  19228. height: math.unit(6 + 1 / 12, "feet"),
  19229. default: true
  19230. },
  19231. ]
  19232. ))
  19233. characterMakers.push(() => makeCharacter(
  19234. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19235. {
  19236. front: {
  19237. height: math.unit(10, "feet"),
  19238. weight: math.unit(350, "lb"),
  19239. name: "Front",
  19240. image: {
  19241. source: "./media/characters/jet/front.svg",
  19242. extra: 2050 / 1980,
  19243. bottom: 0.013
  19244. }
  19245. },
  19246. back: {
  19247. height: math.unit(10, "feet"),
  19248. weight: math.unit(350, "lb"),
  19249. name: "Back",
  19250. image: {
  19251. source: "./media/characters/jet/back.svg",
  19252. extra: 2050 / 1980,
  19253. bottom: 0.013
  19254. }
  19255. },
  19256. },
  19257. [
  19258. {
  19259. name: "Micro",
  19260. height: math.unit(6, "inches")
  19261. },
  19262. {
  19263. name: "Normal",
  19264. height: math.unit(10, "feet"),
  19265. default: true
  19266. },
  19267. {
  19268. name: "Macro",
  19269. height: math.unit(100, "feet")
  19270. },
  19271. ]
  19272. ))
  19273. characterMakers.push(() => makeCharacter(
  19274. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19275. {
  19276. front: {
  19277. height: math.unit(15, "feet"),
  19278. weight: math.unit(2800, "lb"),
  19279. name: "Front",
  19280. image: {
  19281. source: "./media/characters/tanarath/front.svg",
  19282. extra: 2392 / 2220,
  19283. bottom: 0.03
  19284. }
  19285. },
  19286. back: {
  19287. height: math.unit(15, "feet"),
  19288. weight: math.unit(2800, "lb"),
  19289. name: "Back",
  19290. image: {
  19291. source: "./media/characters/tanarath/back.svg",
  19292. extra: 2392 / 2220,
  19293. bottom: 0.03
  19294. }
  19295. },
  19296. },
  19297. [
  19298. {
  19299. name: "Normal",
  19300. height: math.unit(15, "feet"),
  19301. default: true
  19302. },
  19303. ]
  19304. ))
  19305. characterMakers.push(() => makeCharacter(
  19306. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19307. {
  19308. front: {
  19309. height: math.unit(7 + 1 / 12, "feet"),
  19310. weight: math.unit(175, "lb"),
  19311. name: "Front",
  19312. image: {
  19313. source: "./media/characters/patty-cattybatty/front.svg",
  19314. extra: 908 / 874,
  19315. bottom: 0.025
  19316. }
  19317. },
  19318. },
  19319. [
  19320. {
  19321. name: "Micro",
  19322. height: math.unit(1, "inch")
  19323. },
  19324. {
  19325. name: "Normal",
  19326. height: math.unit(7 + 1 / 12, "feet")
  19327. },
  19328. {
  19329. name: "Mini Macro",
  19330. height: math.unit(155, "feet")
  19331. },
  19332. {
  19333. name: "Macro",
  19334. height: math.unit(1077, "feet")
  19335. },
  19336. {
  19337. name: "Mega Macro",
  19338. height: math.unit(47650, "feet"),
  19339. default: true
  19340. },
  19341. {
  19342. name: "Giga Macro",
  19343. height: math.unit(440, "miles")
  19344. },
  19345. {
  19346. name: "Tera Macro",
  19347. height: math.unit(8700, "miles")
  19348. },
  19349. {
  19350. name: "Planetary Macro",
  19351. height: math.unit(32700, "miles")
  19352. },
  19353. {
  19354. name: "Solar Macro",
  19355. height: math.unit(550000, "miles")
  19356. },
  19357. {
  19358. name: "Celestial Macro",
  19359. height: math.unit(2.5, "AU")
  19360. },
  19361. ]
  19362. ))
  19363. characterMakers.push(() => makeCharacter(
  19364. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19365. {
  19366. front: {
  19367. height: math.unit(4 + 5 / 12, "feet"),
  19368. weight: math.unit(90, "lb"),
  19369. name: "Front",
  19370. image: {
  19371. source: "./media/characters/cappu/front.svg",
  19372. extra: 1247 / 1152,
  19373. bottom: 0.012
  19374. }
  19375. },
  19376. },
  19377. [
  19378. {
  19379. name: "Normal",
  19380. height: math.unit(4 + 5 / 12, "feet"),
  19381. default: true
  19382. },
  19383. ]
  19384. ))
  19385. characterMakers.push(() => makeCharacter(
  19386. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19387. {
  19388. frontDressed: {
  19389. height: math.unit(70, "cm"),
  19390. weight: math.unit(6, "kg"),
  19391. name: "Front (Dressed)",
  19392. image: {
  19393. source: "./media/characters/sebi/front-dressed.svg",
  19394. extra: 713.5 / 686.5,
  19395. bottom: 0.003
  19396. }
  19397. },
  19398. front: {
  19399. height: math.unit(70, "cm"),
  19400. weight: math.unit(5, "kg"),
  19401. name: "Front",
  19402. image: {
  19403. source: "./media/characters/sebi/front.svg",
  19404. extra: 713.5 / 686.5,
  19405. bottom: 0.003
  19406. }
  19407. }
  19408. },
  19409. [
  19410. {
  19411. name: "Normal",
  19412. height: math.unit(70, "cm"),
  19413. default: true
  19414. },
  19415. {
  19416. name: "Macro",
  19417. height: math.unit(8, "meters")
  19418. },
  19419. ]
  19420. ))
  19421. characterMakers.push(() => makeCharacter(
  19422. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19423. {
  19424. front: {
  19425. height: math.unit(6, "feet"),
  19426. weight: math.unit(150, "lb"),
  19427. name: "Front",
  19428. image: {
  19429. source: "./media/characters/typhek/front.svg",
  19430. extra: 1948 / 1929,
  19431. bottom: 0.025
  19432. }
  19433. },
  19434. side: {
  19435. height: math.unit(6, "feet"),
  19436. weight: math.unit(150, "lb"),
  19437. name: "Side",
  19438. image: {
  19439. source: "./media/characters/typhek/side.svg",
  19440. extra: 2034 / 2010,
  19441. bottom: 0.003
  19442. }
  19443. },
  19444. back: {
  19445. height: math.unit(6, "feet"),
  19446. weight: math.unit(150, "lb"),
  19447. name: "Back",
  19448. image: {
  19449. source: "./media/characters/typhek/back.svg",
  19450. extra: 2005 / 1978,
  19451. bottom: 0.004
  19452. }
  19453. },
  19454. palm: {
  19455. height: math.unit(1.2, "feet"),
  19456. name: "Palm",
  19457. image: {
  19458. source: "./media/characters/typhek/palm.svg"
  19459. }
  19460. },
  19461. fist: {
  19462. height: math.unit(1.1, "feet"),
  19463. name: "Fist",
  19464. image: {
  19465. source: "./media/characters/typhek/fist.svg"
  19466. }
  19467. },
  19468. foot: {
  19469. height: math.unit(1.57, "feet"),
  19470. name: "Foot",
  19471. image: {
  19472. source: "./media/characters/typhek/foot.svg"
  19473. }
  19474. },
  19475. sole: {
  19476. height: math.unit(2.05, "feet"),
  19477. name: "Sole",
  19478. image: {
  19479. source: "./media/characters/typhek/sole.svg"
  19480. }
  19481. },
  19482. },
  19483. [
  19484. {
  19485. name: "Macro",
  19486. height: math.unit(40, "stories"),
  19487. default: true
  19488. },
  19489. {
  19490. name: "Megamacro",
  19491. height: math.unit(1, "mile")
  19492. },
  19493. {
  19494. name: "Gigamacro",
  19495. height: math.unit(4000, "solarradii")
  19496. },
  19497. {
  19498. name: "Universal",
  19499. height: math.unit(1.1, "universes")
  19500. }
  19501. ]
  19502. ))
  19503. characterMakers.push(() => makeCharacter(
  19504. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19505. {
  19506. side: {
  19507. height: math.unit(5 + 7 / 12, "feet"),
  19508. weight: math.unit(150, "lb"),
  19509. name: "Side",
  19510. image: {
  19511. source: "./media/characters/kassy/side.svg",
  19512. extra: 1280 / 1225,
  19513. bottom: 0.002
  19514. }
  19515. },
  19516. front: {
  19517. height: math.unit(5 + 7 / 12, "feet"),
  19518. weight: math.unit(150, "lb"),
  19519. name: "Front",
  19520. image: {
  19521. source: "./media/characters/kassy/front.svg",
  19522. extra: 1280 / 1225,
  19523. bottom: 0.025
  19524. }
  19525. },
  19526. back: {
  19527. height: math.unit(5 + 7 / 12, "feet"),
  19528. weight: math.unit(150, "lb"),
  19529. name: "Back",
  19530. image: {
  19531. source: "./media/characters/kassy/back.svg",
  19532. extra: 1280 / 1225,
  19533. bottom: 0.002
  19534. }
  19535. },
  19536. foot: {
  19537. height: math.unit(1.266, "feet"),
  19538. name: "Foot",
  19539. image: {
  19540. source: "./media/characters/kassy/foot.svg"
  19541. }
  19542. },
  19543. },
  19544. [
  19545. {
  19546. name: "Normal",
  19547. height: math.unit(5 + 7 / 12, "feet")
  19548. },
  19549. {
  19550. name: "Macro",
  19551. height: math.unit(137, "feet"),
  19552. default: true
  19553. },
  19554. {
  19555. name: "Megamacro",
  19556. height: math.unit(1, "mile")
  19557. },
  19558. ]
  19559. ))
  19560. characterMakers.push(() => makeCharacter(
  19561. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19562. {
  19563. front: {
  19564. height: math.unit(6 + 1 / 12, "feet"),
  19565. weight: math.unit(200, "lb"),
  19566. name: "Front",
  19567. image: {
  19568. source: "./media/characters/neil/front.svg",
  19569. extra: 1326 / 1250,
  19570. bottom: 0.023
  19571. }
  19572. },
  19573. },
  19574. [
  19575. {
  19576. name: "Normal",
  19577. height: math.unit(6 + 1 / 12, "feet"),
  19578. default: true
  19579. },
  19580. {
  19581. name: "Macro",
  19582. height: math.unit(200, "feet")
  19583. },
  19584. ]
  19585. ))
  19586. characterMakers.push(() => makeCharacter(
  19587. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19588. {
  19589. front: {
  19590. height: math.unit(5 + 9 / 12, "feet"),
  19591. weight: math.unit(190, "lb"),
  19592. name: "Front",
  19593. image: {
  19594. source: "./media/characters/atticus/front.svg",
  19595. extra: 2934 / 2785,
  19596. bottom: 0.025
  19597. }
  19598. },
  19599. },
  19600. [
  19601. {
  19602. name: "Normal",
  19603. height: math.unit(5 + 9 / 12, "feet"),
  19604. default: true
  19605. },
  19606. {
  19607. name: "Macro",
  19608. height: math.unit(180, "feet")
  19609. },
  19610. ]
  19611. ))
  19612. characterMakers.push(() => makeCharacter(
  19613. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19614. {
  19615. side: {
  19616. height: math.unit(9, "feet"),
  19617. weight: math.unit(650, "lb"),
  19618. name: "Side",
  19619. image: {
  19620. source: "./media/characters/milo/side.svg",
  19621. extra: 2644 / 2310,
  19622. bottom: 0.032
  19623. }
  19624. },
  19625. },
  19626. [
  19627. {
  19628. name: "Normal",
  19629. height: math.unit(9, "feet"),
  19630. default: true
  19631. },
  19632. {
  19633. name: "Macro",
  19634. height: math.unit(300, "feet")
  19635. },
  19636. ]
  19637. ))
  19638. characterMakers.push(() => makeCharacter(
  19639. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19640. {
  19641. side: {
  19642. height: math.unit(8, "meters"),
  19643. weight: math.unit(90000, "kg"),
  19644. name: "Side",
  19645. image: {
  19646. source: "./media/characters/ijzer/side.svg",
  19647. extra: 2756 / 1600,
  19648. bottom: 0.01
  19649. }
  19650. },
  19651. },
  19652. [
  19653. {
  19654. name: "Small",
  19655. height: math.unit(3, "meters")
  19656. },
  19657. {
  19658. name: "Normal",
  19659. height: math.unit(8, "meters"),
  19660. default: true
  19661. },
  19662. {
  19663. name: "Normal+",
  19664. height: math.unit(10, "meters")
  19665. },
  19666. {
  19667. name: "Bigger",
  19668. height: math.unit(24, "meters")
  19669. },
  19670. {
  19671. name: "Huge",
  19672. height: math.unit(80, "meters")
  19673. },
  19674. ]
  19675. ))
  19676. characterMakers.push(() => makeCharacter(
  19677. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19678. {
  19679. front: {
  19680. height: math.unit(6 + 2 / 12, "feet"),
  19681. weight: math.unit(153, "lb"),
  19682. name: "Front",
  19683. image: {
  19684. source: "./media/characters/luca-cervicum/front.svg",
  19685. extra: 370 / 327,
  19686. bottom: 0.015
  19687. }
  19688. },
  19689. back: {
  19690. height: math.unit(6 + 2 / 12, "feet"),
  19691. weight: math.unit(153, "lb"),
  19692. name: "Back",
  19693. image: {
  19694. source: "./media/characters/luca-cervicum/back.svg",
  19695. extra: 367 / 333,
  19696. bottom: 0.005
  19697. }
  19698. },
  19699. frontGear: {
  19700. height: math.unit(6 + 2 / 12, "feet"),
  19701. weight: math.unit(173, "lb"),
  19702. name: "Front (Gear)",
  19703. image: {
  19704. source: "./media/characters/luca-cervicum/front-gear.svg",
  19705. extra: 377 / 333,
  19706. bottom: 0.006
  19707. }
  19708. },
  19709. },
  19710. [
  19711. {
  19712. name: "Normal",
  19713. height: math.unit(6 + 2 / 12, "feet"),
  19714. default: true
  19715. },
  19716. ]
  19717. ))
  19718. characterMakers.push(() => makeCharacter(
  19719. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19720. {
  19721. front: {
  19722. height: math.unit(6 + 1 / 12, "feet"),
  19723. weight: math.unit(304, "lb"),
  19724. name: "Front",
  19725. image: {
  19726. source: "./media/characters/oliver/front.svg",
  19727. extra: 157 / 143,
  19728. bottom: 0.08
  19729. }
  19730. },
  19731. },
  19732. [
  19733. {
  19734. name: "Normal",
  19735. height: math.unit(6 + 1 / 12, "feet"),
  19736. default: true
  19737. },
  19738. ]
  19739. ))
  19740. characterMakers.push(() => makeCharacter(
  19741. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19742. {
  19743. front: {
  19744. height: math.unit(5 + 7 / 12, "feet"),
  19745. weight: math.unit(140, "lb"),
  19746. name: "Front",
  19747. image: {
  19748. source: "./media/characters/shane/front.svg",
  19749. extra: 304 / 289,
  19750. bottom: 0.005
  19751. }
  19752. },
  19753. },
  19754. [
  19755. {
  19756. name: "Normal",
  19757. height: math.unit(5 + 7 / 12, "feet"),
  19758. default: true
  19759. },
  19760. ]
  19761. ))
  19762. characterMakers.push(() => makeCharacter(
  19763. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19764. {
  19765. front: {
  19766. height: math.unit(5 + 9 / 12, "feet"),
  19767. weight: math.unit(178, "lb"),
  19768. name: "Front",
  19769. image: {
  19770. source: "./media/characters/shin/front.svg",
  19771. extra: 159 / 151,
  19772. bottom: 0.015
  19773. }
  19774. },
  19775. },
  19776. [
  19777. {
  19778. name: "Normal",
  19779. height: math.unit(5 + 9 / 12, "feet"),
  19780. default: true
  19781. },
  19782. ]
  19783. ))
  19784. characterMakers.push(() => makeCharacter(
  19785. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19786. {
  19787. front: {
  19788. height: math.unit(5 + 10 / 12, "feet"),
  19789. weight: math.unit(168, "lb"),
  19790. name: "Front",
  19791. image: {
  19792. source: "./media/characters/xerxes/front.svg",
  19793. extra: 282 / 260,
  19794. bottom: 0.045
  19795. }
  19796. },
  19797. },
  19798. [
  19799. {
  19800. name: "Normal",
  19801. height: math.unit(5 + 10 / 12, "feet"),
  19802. default: true
  19803. },
  19804. ]
  19805. ))
  19806. characterMakers.push(() => makeCharacter(
  19807. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19808. {
  19809. front: {
  19810. height: math.unit(6 + 7 / 12, "feet"),
  19811. weight: math.unit(208, "lb"),
  19812. name: "Front",
  19813. image: {
  19814. source: "./media/characters/chaska/front.svg",
  19815. extra: 332 / 319,
  19816. bottom: 0.015
  19817. }
  19818. },
  19819. },
  19820. [
  19821. {
  19822. name: "Normal",
  19823. height: math.unit(6 + 7 / 12, "feet"),
  19824. default: true
  19825. },
  19826. ]
  19827. ))
  19828. characterMakers.push(() => makeCharacter(
  19829. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19830. {
  19831. front: {
  19832. height: math.unit(5 + 8 / 12, "feet"),
  19833. weight: math.unit(208, "lb"),
  19834. name: "Front",
  19835. image: {
  19836. source: "./media/characters/enuk/front.svg",
  19837. extra: 437 / 406,
  19838. bottom: 0.02
  19839. }
  19840. },
  19841. },
  19842. [
  19843. {
  19844. name: "Normal",
  19845. height: math.unit(5 + 8 / 12, "feet"),
  19846. default: true
  19847. },
  19848. ]
  19849. ))
  19850. characterMakers.push(() => makeCharacter(
  19851. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19852. {
  19853. front: {
  19854. height: math.unit(5 + 10 / 12, "feet"),
  19855. weight: math.unit(252, "lb"),
  19856. name: "Front",
  19857. image: {
  19858. source: "./media/characters/bruun/front.svg",
  19859. extra: 197 / 187,
  19860. bottom: 0.012
  19861. }
  19862. },
  19863. },
  19864. [
  19865. {
  19866. name: "Normal",
  19867. height: math.unit(5 + 10 / 12, "feet"),
  19868. default: true
  19869. },
  19870. ]
  19871. ))
  19872. characterMakers.push(() => makeCharacter(
  19873. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19874. {
  19875. front: {
  19876. height: math.unit(6 + 10 / 12, "feet"),
  19877. weight: math.unit(255, "lb"),
  19878. name: "Front",
  19879. image: {
  19880. source: "./media/characters/alexeev/front.svg",
  19881. extra: 213 / 200,
  19882. bottom: 0.05
  19883. }
  19884. },
  19885. },
  19886. [
  19887. {
  19888. name: "Normal",
  19889. height: math.unit(6 + 10 / 12, "feet"),
  19890. default: true
  19891. },
  19892. ]
  19893. ))
  19894. characterMakers.push(() => makeCharacter(
  19895. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19896. {
  19897. front: {
  19898. height: math.unit(2 + 8 / 12, "feet"),
  19899. weight: math.unit(22, "lb"),
  19900. name: "Front",
  19901. image: {
  19902. source: "./media/characters/evelyn/front.svg",
  19903. extra: 208 / 180
  19904. }
  19905. },
  19906. },
  19907. [
  19908. {
  19909. name: "Normal",
  19910. height: math.unit(2 + 8 / 12, "feet"),
  19911. default: true
  19912. },
  19913. ]
  19914. ))
  19915. characterMakers.push(() => makeCharacter(
  19916. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19917. {
  19918. front: {
  19919. height: math.unit(5 + 9 / 12, "feet"),
  19920. weight: math.unit(139, "lb"),
  19921. name: "Front",
  19922. image: {
  19923. source: "./media/characters/inca/front.svg",
  19924. extra: 294 / 291,
  19925. bottom: 0.03
  19926. }
  19927. },
  19928. },
  19929. [
  19930. {
  19931. name: "Normal",
  19932. height: math.unit(5 + 9 / 12, "feet"),
  19933. default: true
  19934. },
  19935. ]
  19936. ))
  19937. characterMakers.push(() => makeCharacter(
  19938. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19939. {
  19940. front: {
  19941. height: math.unit(5 + 1 / 12, "feet"),
  19942. weight: math.unit(84, "lb"),
  19943. name: "Front",
  19944. image: {
  19945. source: "./media/characters/magdalene/front.svg",
  19946. extra: 293 / 273
  19947. }
  19948. },
  19949. },
  19950. [
  19951. {
  19952. name: "Normal",
  19953. height: math.unit(5 + 1 / 12, "feet"),
  19954. default: true
  19955. },
  19956. ]
  19957. ))
  19958. characterMakers.push(() => makeCharacter(
  19959. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19960. {
  19961. front: {
  19962. height: math.unit(6 + 3 / 12, "feet"),
  19963. weight: math.unit(185, "lb"),
  19964. name: "Front",
  19965. image: {
  19966. source: "./media/characters/mera/front.svg",
  19967. extra: 291 / 277,
  19968. bottom: 0.03
  19969. }
  19970. },
  19971. },
  19972. [
  19973. {
  19974. name: "Normal",
  19975. height: math.unit(6 + 3 / 12, "feet"),
  19976. default: true
  19977. },
  19978. ]
  19979. ))
  19980. characterMakers.push(() => makeCharacter(
  19981. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19982. {
  19983. front: {
  19984. height: math.unit(6 + 7 / 12, "feet"),
  19985. weight: math.unit(160, "lb"),
  19986. name: "Front",
  19987. image: {
  19988. source: "./media/characters/ceres/front.svg",
  19989. extra: 1023 / 950,
  19990. bottom: 0.027
  19991. }
  19992. },
  19993. back: {
  19994. height: math.unit(6 + 7 / 12, "feet"),
  19995. weight: math.unit(160, "lb"),
  19996. name: "Back",
  19997. image: {
  19998. source: "./media/characters/ceres/back.svg",
  19999. extra: 1023 / 950
  20000. }
  20001. },
  20002. },
  20003. [
  20004. {
  20005. name: "Normal",
  20006. height: math.unit(6 + 7 / 12, "feet"),
  20007. default: true
  20008. },
  20009. ]
  20010. ))
  20011. characterMakers.push(() => makeCharacter(
  20012. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20013. {
  20014. front: {
  20015. height: math.unit(5 + 10 / 12, "feet"),
  20016. weight: math.unit(150, "lb"),
  20017. name: "Front",
  20018. image: {
  20019. source: "./media/characters/kris/front.svg",
  20020. extra: 885 / 803,
  20021. bottom: 0.03
  20022. }
  20023. },
  20024. },
  20025. [
  20026. {
  20027. name: "Normal",
  20028. height: math.unit(5 + 10 / 12, "feet"),
  20029. default: true
  20030. },
  20031. ]
  20032. ))
  20033. characterMakers.push(() => makeCharacter(
  20034. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20035. {
  20036. front: {
  20037. height: math.unit(7, "feet"),
  20038. weight: math.unit(120, "kg"),
  20039. name: "Front",
  20040. image: {
  20041. source: "./media/characters/taluthus/front.svg",
  20042. extra: 903 / 833,
  20043. bottom: 0.015
  20044. }
  20045. },
  20046. },
  20047. [
  20048. {
  20049. name: "Normal",
  20050. height: math.unit(7, "feet"),
  20051. default: true
  20052. },
  20053. {
  20054. name: "Macro",
  20055. height: math.unit(300, "feet")
  20056. },
  20057. ]
  20058. ))
  20059. characterMakers.push(() => makeCharacter(
  20060. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20061. {
  20062. front: {
  20063. height: math.unit(5 + 9 / 12, "feet"),
  20064. weight: math.unit(145, "lb"),
  20065. name: "Front",
  20066. image: {
  20067. source: "./media/characters/dawn/front.svg",
  20068. extra: 2094 / 2016,
  20069. bottom: 0.025
  20070. }
  20071. },
  20072. back: {
  20073. height: math.unit(5 + 9 / 12, "feet"),
  20074. weight: math.unit(160, "lb"),
  20075. name: "Back",
  20076. image: {
  20077. source: "./media/characters/dawn/back.svg",
  20078. extra: 2112 / 2080,
  20079. bottom: 0.005
  20080. }
  20081. },
  20082. },
  20083. [
  20084. {
  20085. name: "Normal",
  20086. height: math.unit(6 + 7 / 12, "feet"),
  20087. default: true
  20088. },
  20089. ]
  20090. ))
  20091. characterMakers.push(() => makeCharacter(
  20092. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20093. {
  20094. anthro: {
  20095. height: math.unit(8 + 3 / 12, "feet"),
  20096. weight: math.unit(450, "lb"),
  20097. name: "Anthro",
  20098. image: {
  20099. source: "./media/characters/arador/anthro.svg",
  20100. extra: 1835 / 1718,
  20101. bottom: 0.025
  20102. }
  20103. },
  20104. feral: {
  20105. height: math.unit(4, "feet"),
  20106. weight: math.unit(200, "lb"),
  20107. name: "Feral",
  20108. image: {
  20109. source: "./media/characters/arador/feral.svg",
  20110. extra: 1683 / 1514,
  20111. bottom: 0.07
  20112. }
  20113. },
  20114. },
  20115. [
  20116. {
  20117. name: "Normal",
  20118. height: math.unit(8 + 3 / 12, "feet")
  20119. },
  20120. {
  20121. name: "Macro",
  20122. height: math.unit(82.5, "feet"),
  20123. default: true
  20124. },
  20125. ]
  20126. ))
  20127. characterMakers.push(() => makeCharacter(
  20128. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20129. {
  20130. front: {
  20131. height: math.unit(5 + 10 / 12, "feet"),
  20132. weight: math.unit(125, "lb"),
  20133. name: "Front",
  20134. image: {
  20135. source: "./media/characters/dharsi/front.svg",
  20136. extra: 716 / 630,
  20137. bottom: 0.035
  20138. }
  20139. },
  20140. },
  20141. [
  20142. {
  20143. name: "Nano",
  20144. height: math.unit(100, "nm")
  20145. },
  20146. {
  20147. name: "Micro",
  20148. height: math.unit(2, "inches")
  20149. },
  20150. {
  20151. name: "Normal",
  20152. height: math.unit(5 + 10 / 12, "feet"),
  20153. default: true
  20154. },
  20155. {
  20156. name: "Macro",
  20157. height: math.unit(1000, "feet")
  20158. },
  20159. {
  20160. name: "Megamacro",
  20161. height: math.unit(10, "miles")
  20162. },
  20163. {
  20164. name: "Gigamacro",
  20165. height: math.unit(3000, "miles")
  20166. },
  20167. {
  20168. name: "Teramacro",
  20169. height: math.unit(500000, "miles")
  20170. },
  20171. {
  20172. name: "Teramacro+",
  20173. height: math.unit(30, "galaxies")
  20174. },
  20175. ]
  20176. ))
  20177. characterMakers.push(() => makeCharacter(
  20178. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20179. {
  20180. front: {
  20181. height: math.unit(6, "feet"),
  20182. weight: math.unit(150, "lb"),
  20183. name: "Front",
  20184. image: {
  20185. source: "./media/characters/deathy/front.svg",
  20186. extra: 1552 / 1463,
  20187. bottom: 0.025
  20188. }
  20189. },
  20190. side: {
  20191. height: math.unit(6, "feet"),
  20192. weight: math.unit(150, "lb"),
  20193. name: "Side",
  20194. image: {
  20195. source: "./media/characters/deathy/side.svg",
  20196. extra: 1604 / 1455,
  20197. bottom: 0.025
  20198. }
  20199. },
  20200. back: {
  20201. height: math.unit(6, "feet"),
  20202. weight: math.unit(150, "lb"),
  20203. name: "Back",
  20204. image: {
  20205. source: "./media/characters/deathy/back.svg",
  20206. extra: 1580 / 1463,
  20207. bottom: 0.005
  20208. }
  20209. },
  20210. },
  20211. [
  20212. {
  20213. name: "Micro",
  20214. height: math.unit(5, "millimeters")
  20215. },
  20216. {
  20217. name: "Normal",
  20218. height: math.unit(6 + 5 / 12, "feet"),
  20219. default: true
  20220. },
  20221. ]
  20222. ))
  20223. characterMakers.push(() => makeCharacter(
  20224. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20225. {
  20226. front: {
  20227. height: math.unit(16, "feet"),
  20228. weight: math.unit(4000, "lb"),
  20229. name: "Front",
  20230. image: {
  20231. source: "./media/characters/juniper/front.svg",
  20232. bottom: 0.04
  20233. }
  20234. },
  20235. },
  20236. [
  20237. {
  20238. name: "Normal",
  20239. height: math.unit(16, "feet"),
  20240. default: true
  20241. },
  20242. ]
  20243. ))
  20244. characterMakers.push(() => makeCharacter(
  20245. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20246. {
  20247. front: {
  20248. height: math.unit(6, "feet"),
  20249. weight: math.unit(150, "lb"),
  20250. name: "Front",
  20251. image: {
  20252. source: "./media/characters/hipster/front.svg",
  20253. extra: 1312 / 1209,
  20254. bottom: 0.025
  20255. }
  20256. },
  20257. back: {
  20258. height: math.unit(6, "feet"),
  20259. weight: math.unit(150, "lb"),
  20260. name: "Back",
  20261. image: {
  20262. source: "./media/characters/hipster/back.svg",
  20263. extra: 1281 / 1196,
  20264. bottom: 0.01
  20265. }
  20266. },
  20267. },
  20268. [
  20269. {
  20270. name: "Micro",
  20271. height: math.unit(1, "mm")
  20272. },
  20273. {
  20274. name: "Normal",
  20275. height: math.unit(4, "inches"),
  20276. default: true
  20277. },
  20278. {
  20279. name: "Macro",
  20280. height: math.unit(500, "feet")
  20281. },
  20282. {
  20283. name: "Megamacro",
  20284. height: math.unit(1000, "miles")
  20285. },
  20286. ]
  20287. ))
  20288. characterMakers.push(() => makeCharacter(
  20289. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20290. {
  20291. front: {
  20292. height: math.unit(6, "feet"),
  20293. weight: math.unit(150, "lb"),
  20294. name: "Front",
  20295. image: {
  20296. source: "./media/characters/tendirmuldr/front.svg",
  20297. extra: 1878 / 1772,
  20298. bottom: 0.015
  20299. }
  20300. },
  20301. },
  20302. [
  20303. {
  20304. name: "Megamacro",
  20305. height: math.unit(1500, "miles"),
  20306. default: true
  20307. },
  20308. ]
  20309. ))
  20310. characterMakers.push(() => makeCharacter(
  20311. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20312. {
  20313. front: {
  20314. height: math.unit(14, "feet"),
  20315. weight: math.unit(12000, "lb"),
  20316. name: "Front",
  20317. image: {
  20318. source: "./media/characters/mort/front.svg",
  20319. extra: 365 / 318,
  20320. bottom: 0.01
  20321. }
  20322. },
  20323. side: {
  20324. height: math.unit(14, "feet"),
  20325. weight: math.unit(12000, "lb"),
  20326. name: "Side",
  20327. image: {
  20328. source: "./media/characters/mort/side.svg",
  20329. extra: 365 / 318,
  20330. bottom: 0.052
  20331. },
  20332. default: true
  20333. },
  20334. back: {
  20335. height: math.unit(14, "feet"),
  20336. weight: math.unit(12000, "lb"),
  20337. name: "Back",
  20338. image: {
  20339. source: "./media/characters/mort/back.svg",
  20340. extra: 371 / 332,
  20341. bottom: 0.18
  20342. }
  20343. },
  20344. },
  20345. [
  20346. {
  20347. name: "Normal",
  20348. height: math.unit(14, "feet"),
  20349. default: true
  20350. },
  20351. ]
  20352. ))
  20353. characterMakers.push(() => makeCharacter(
  20354. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20355. {
  20356. front: {
  20357. height: math.unit(8, "feet"),
  20358. weight: math.unit(1, "ton"),
  20359. name: "Front",
  20360. image: {
  20361. source: "./media/characters/lycoa/front.svg",
  20362. extra: 1875 / 1789,
  20363. bottom: 0.022
  20364. }
  20365. },
  20366. back: {
  20367. height: math.unit(8, "feet"),
  20368. weight: math.unit(1, "ton"),
  20369. name: "Back",
  20370. image: {
  20371. source: "./media/characters/lycoa/back.svg",
  20372. extra: 1835 / 1781,
  20373. bottom: 0.03
  20374. }
  20375. },
  20376. head: {
  20377. height: math.unit(2.1, "feet"),
  20378. name: "Head",
  20379. image: {
  20380. source: "./media/characters/lycoa/head.svg"
  20381. }
  20382. },
  20383. tailmaw: {
  20384. height: math.unit(1.9, "feet"),
  20385. name: "Tailmaw",
  20386. image: {
  20387. source: "./media/characters/lycoa/tailmaw.svg"
  20388. }
  20389. },
  20390. tentacles: {
  20391. height: math.unit(2.1, "feet"),
  20392. name: "Tentacles",
  20393. image: {
  20394. source: "./media/characters/lycoa/tentacles.svg"
  20395. }
  20396. },
  20397. dick: {
  20398. height: math.unit(1.73, "feet"),
  20399. name: "Dick",
  20400. image: {
  20401. source: "./media/characters/lycoa/dick.svg"
  20402. }
  20403. },
  20404. },
  20405. [
  20406. {
  20407. name: "Normal",
  20408. height: math.unit(8, "feet"),
  20409. default: true
  20410. },
  20411. {
  20412. name: "Macro",
  20413. height: math.unit(30, "feet")
  20414. },
  20415. ]
  20416. ))
  20417. characterMakers.push(() => makeCharacter(
  20418. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20419. {
  20420. front: {
  20421. height: math.unit(4 + 2 / 12, "feet"),
  20422. weight: math.unit(70, "lb"),
  20423. name: "Front",
  20424. image: {
  20425. source: "./media/characters/naldara/front.svg",
  20426. extra: 841 / 720,
  20427. bottom: 0.04
  20428. }
  20429. },
  20430. naga: {
  20431. height: math.unit(23, "feet"),
  20432. weight: math.unit(15000, "kg"),
  20433. name: "Naga",
  20434. image: {
  20435. source: "./media/characters/naldara/naga.svg",
  20436. extra: 3290 / 2959,
  20437. bottom: 124 / 3432
  20438. }
  20439. },
  20440. },
  20441. [
  20442. {
  20443. name: "Normal",
  20444. height: math.unit(4 + 2 / 12, "feet"),
  20445. default: true
  20446. },
  20447. ]
  20448. ))
  20449. characterMakers.push(() => makeCharacter(
  20450. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20451. {
  20452. front: {
  20453. height: math.unit(13 + 7 / 12, "feet"),
  20454. weight: math.unit(1500, "lb"),
  20455. name: "Front",
  20456. image: {
  20457. source: "./media/characters/briar/front.svg",
  20458. extra: 626 / 596,
  20459. bottom: 0.08
  20460. }
  20461. },
  20462. },
  20463. [
  20464. {
  20465. name: "Normal",
  20466. height: math.unit(13 + 7 / 12, "feet"),
  20467. default: true
  20468. },
  20469. ]
  20470. ))
  20471. characterMakers.push(() => makeCharacter(
  20472. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20473. {
  20474. side: {
  20475. height: math.unit(10, "feet"),
  20476. weight: math.unit(500, "lb"),
  20477. name: "Side",
  20478. image: {
  20479. source: "./media/characters/vanguard/side.svg",
  20480. extra: 502 / 425,
  20481. bottom: 0.087
  20482. }
  20483. },
  20484. },
  20485. [
  20486. {
  20487. name: "Normal",
  20488. height: math.unit(10, "feet"),
  20489. default: true
  20490. },
  20491. ]
  20492. ))
  20493. characterMakers.push(() => makeCharacter(
  20494. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20495. {
  20496. front: {
  20497. height: math.unit(7.5, "feet"),
  20498. weight: math.unit(2, "lb"),
  20499. name: "Front",
  20500. image: {
  20501. source: "./media/characters/artemis/front.svg",
  20502. extra: 1192 / 1075,
  20503. bottom: 0.07
  20504. }
  20505. },
  20506. frontNsfw: {
  20507. height: math.unit(7.5, "feet"),
  20508. weight: math.unit(2, "lb"),
  20509. name: "Front (NSFW)",
  20510. image: {
  20511. source: "./media/characters/artemis/front-nsfw.svg",
  20512. extra: 1192 / 1075,
  20513. bottom: 0.07
  20514. }
  20515. },
  20516. frontNsfwer: {
  20517. height: math.unit(7.5, "feet"),
  20518. weight: math.unit(2, "lb"),
  20519. name: "Front (NSFW-er)",
  20520. image: {
  20521. source: "./media/characters/artemis/front-nsfwer.svg",
  20522. extra: 1192 / 1075,
  20523. bottom: 0.07
  20524. }
  20525. },
  20526. side: {
  20527. height: math.unit(7.5, "feet"),
  20528. weight: math.unit(2, "lb"),
  20529. name: "Side",
  20530. image: {
  20531. source: "./media/characters/artemis/side.svg",
  20532. extra: 1192 / 1075,
  20533. bottom: 0.07
  20534. }
  20535. },
  20536. sideNsfw: {
  20537. height: math.unit(7.5, "feet"),
  20538. weight: math.unit(2, "lb"),
  20539. name: "Side (NSFW)",
  20540. image: {
  20541. source: "./media/characters/artemis/side-nsfw.svg",
  20542. extra: 1192 / 1075,
  20543. bottom: 0.07
  20544. }
  20545. },
  20546. sideNsfwer: {
  20547. height: math.unit(7.5, "feet"),
  20548. weight: math.unit(2, "lb"),
  20549. name: "Side (NSFW-er)",
  20550. image: {
  20551. source: "./media/characters/artemis/side-nsfwer.svg",
  20552. extra: 1192 / 1075,
  20553. bottom: 0.07
  20554. }
  20555. },
  20556. maw: {
  20557. height: math.unit(1.1, "feet"),
  20558. name: "Maw",
  20559. image: {
  20560. source: "./media/characters/artemis/maw.svg"
  20561. }
  20562. },
  20563. stomach: {
  20564. height: math.unit(0.95, "feet"),
  20565. name: "Stomach",
  20566. image: {
  20567. source: "./media/characters/artemis/stomach.svg"
  20568. }
  20569. },
  20570. dickCanine: {
  20571. height: math.unit(1, "feet"),
  20572. name: "Dick (Canine)",
  20573. image: {
  20574. source: "./media/characters/artemis/dick-canine.svg"
  20575. }
  20576. },
  20577. dickEquine: {
  20578. height: math.unit(0.85, "feet"),
  20579. name: "Dick (Equine)",
  20580. image: {
  20581. source: "./media/characters/artemis/dick-equine.svg"
  20582. }
  20583. },
  20584. dickExotic: {
  20585. height: math.unit(0.85, "feet"),
  20586. name: "Dick (Exotic)",
  20587. image: {
  20588. source: "./media/characters/artemis/dick-exotic.svg"
  20589. }
  20590. },
  20591. },
  20592. [
  20593. {
  20594. name: "Normal",
  20595. height: math.unit(7.5, "feet"),
  20596. default: true
  20597. },
  20598. {
  20599. name: "Enlarged",
  20600. height: math.unit(12, "feet")
  20601. },
  20602. ]
  20603. ))
  20604. characterMakers.push(() => makeCharacter(
  20605. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20606. {
  20607. front: {
  20608. height: math.unit(5 + 3 / 12, "feet"),
  20609. weight: math.unit(160, "lb"),
  20610. name: "Front",
  20611. image: {
  20612. source: "./media/characters/kira/front.svg",
  20613. extra: 906 / 786,
  20614. bottom: 0.01
  20615. }
  20616. },
  20617. back: {
  20618. height: math.unit(5 + 3 / 12, "feet"),
  20619. weight: math.unit(160, "lb"),
  20620. name: "Back",
  20621. image: {
  20622. source: "./media/characters/kira/back.svg",
  20623. extra: 882 / 757,
  20624. bottom: 0.005
  20625. }
  20626. },
  20627. frontDressed: {
  20628. height: math.unit(5 + 3 / 12, "feet"),
  20629. weight: math.unit(160, "lb"),
  20630. name: "Front (Dressed)",
  20631. image: {
  20632. source: "./media/characters/kira/front-dressed.svg",
  20633. extra: 906 / 786,
  20634. bottom: 0.01
  20635. }
  20636. },
  20637. beans: {
  20638. height: math.unit(0.92, "feet"),
  20639. name: "Beans",
  20640. image: {
  20641. source: "./media/characters/kira/beans.svg"
  20642. }
  20643. },
  20644. },
  20645. [
  20646. {
  20647. name: "Normal",
  20648. height: math.unit(5 + 3 / 12, "feet"),
  20649. default: true
  20650. },
  20651. ]
  20652. ))
  20653. characterMakers.push(() => makeCharacter(
  20654. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20655. {
  20656. front: {
  20657. height: math.unit(5 + 4 / 12, "feet"),
  20658. weight: math.unit(145, "lb"),
  20659. name: "Front",
  20660. image: {
  20661. source: "./media/characters/scramble/front.svg",
  20662. extra: 763 / 727,
  20663. bottom: 0.05
  20664. }
  20665. },
  20666. back: {
  20667. height: math.unit(5 + 4 / 12, "feet"),
  20668. weight: math.unit(145, "lb"),
  20669. name: "Back",
  20670. image: {
  20671. source: "./media/characters/scramble/back.svg",
  20672. extra: 826 / 737,
  20673. bottom: 0.002
  20674. }
  20675. },
  20676. },
  20677. [
  20678. {
  20679. name: "Normal",
  20680. height: math.unit(5 + 4 / 12, "feet"),
  20681. default: true
  20682. },
  20683. ]
  20684. ))
  20685. characterMakers.push(() => makeCharacter(
  20686. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20687. {
  20688. side: {
  20689. height: math.unit(6 + 2 / 12, "feet"),
  20690. weight: math.unit(190, "lb"),
  20691. name: "Side",
  20692. image: {
  20693. source: "./media/characters/biscuit/side.svg",
  20694. extra: 858 / 791,
  20695. bottom: 0.044
  20696. }
  20697. },
  20698. },
  20699. [
  20700. {
  20701. name: "Normal",
  20702. height: math.unit(6 + 2 / 12, "feet"),
  20703. default: true
  20704. },
  20705. ]
  20706. ))
  20707. characterMakers.push(() => makeCharacter(
  20708. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20709. {
  20710. front: {
  20711. height: math.unit(5 + 2 / 12, "feet"),
  20712. weight: math.unit(120, "lb"),
  20713. name: "Front",
  20714. image: {
  20715. source: "./media/characters/poffin/front.svg",
  20716. extra: 786 / 680,
  20717. bottom: 0.005
  20718. }
  20719. },
  20720. },
  20721. [
  20722. {
  20723. name: "Normal",
  20724. height: math.unit(5 + 2 / 12, "feet"),
  20725. default: true
  20726. },
  20727. ]
  20728. ))
  20729. characterMakers.push(() => makeCharacter(
  20730. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20731. {
  20732. front: {
  20733. height: math.unit(6 + 3 / 12, "feet"),
  20734. weight: math.unit(519, "lb"),
  20735. name: "Front",
  20736. image: {
  20737. source: "./media/characters/dhari/front.svg",
  20738. extra: 1048 / 946,
  20739. bottom: 0.015
  20740. }
  20741. },
  20742. back: {
  20743. height: math.unit(6 + 3 / 12, "feet"),
  20744. weight: math.unit(519, "lb"),
  20745. name: "Back",
  20746. image: {
  20747. source: "./media/characters/dhari/back.svg",
  20748. extra: 1048 / 931,
  20749. bottom: 0.005
  20750. }
  20751. },
  20752. frontDressed: {
  20753. height: math.unit(6 + 3 / 12, "feet"),
  20754. weight: math.unit(519, "lb"),
  20755. name: "Front (Dressed)",
  20756. image: {
  20757. source: "./media/characters/dhari/front-dressed.svg",
  20758. extra: 1713 / 1546,
  20759. bottom: 0.02
  20760. }
  20761. },
  20762. backDressed: {
  20763. height: math.unit(6 + 3 / 12, "feet"),
  20764. weight: math.unit(519, "lb"),
  20765. name: "Back (Dressed)",
  20766. image: {
  20767. source: "./media/characters/dhari/back-dressed.svg",
  20768. extra: 1699 / 1537,
  20769. bottom: 0.01
  20770. }
  20771. },
  20772. maw: {
  20773. height: math.unit(0.95, "feet"),
  20774. name: "Maw",
  20775. image: {
  20776. source: "./media/characters/dhari/maw.svg"
  20777. }
  20778. },
  20779. wereFront: {
  20780. height: math.unit(12 + 8 / 12, "feet"),
  20781. weight: math.unit(4000, "lb"),
  20782. name: "Front (Were)",
  20783. image: {
  20784. source: "./media/characters/dhari/were-front.svg",
  20785. extra: 1065 / 969,
  20786. bottom: 0.015
  20787. }
  20788. },
  20789. wereBack: {
  20790. height: math.unit(12 + 8 / 12, "feet"),
  20791. weight: math.unit(4000, "lb"),
  20792. name: "Back (Were)",
  20793. image: {
  20794. source: "./media/characters/dhari/were-back.svg",
  20795. extra: 1065 / 969,
  20796. bottom: 0.012
  20797. }
  20798. },
  20799. wereMaw: {
  20800. height: math.unit(0.625, "meters"),
  20801. name: "Maw (Were)",
  20802. image: {
  20803. source: "./media/characters/dhari/were-maw.svg"
  20804. }
  20805. },
  20806. },
  20807. [
  20808. {
  20809. name: "Normal",
  20810. height: math.unit(6 + 3 / 12, "feet"),
  20811. default: true
  20812. },
  20813. ]
  20814. ))
  20815. characterMakers.push(() => makeCharacter(
  20816. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20817. {
  20818. anthro: {
  20819. height: math.unit(5 + 7 / 12, "feet"),
  20820. weight: math.unit(175, "lb"),
  20821. name: "Anthro",
  20822. image: {
  20823. source: "./media/characters/rena-dyne/anthro.svg",
  20824. extra: 1849 / 1785,
  20825. bottom: 0.005
  20826. }
  20827. },
  20828. taur: {
  20829. height: math.unit(15 + 6 / 12, "feet"),
  20830. weight: math.unit(8000, "lb"),
  20831. name: "Taur",
  20832. image: {
  20833. source: "./media/characters/rena-dyne/taur.svg",
  20834. extra: 2315 / 2234,
  20835. bottom: 0.033
  20836. }
  20837. },
  20838. },
  20839. [
  20840. {
  20841. name: "Normal",
  20842. height: math.unit(5 + 7 / 12, "feet"),
  20843. default: true
  20844. },
  20845. ]
  20846. ))
  20847. characterMakers.push(() => makeCharacter(
  20848. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20849. {
  20850. front: {
  20851. height: math.unit(8, "feet"),
  20852. weight: math.unit(600, "lb"),
  20853. name: "Front",
  20854. image: {
  20855. source: "./media/characters/weremeep/front.svg",
  20856. extra: 967 / 862,
  20857. bottom: 0.01
  20858. }
  20859. },
  20860. },
  20861. [
  20862. {
  20863. name: "Normal",
  20864. height: math.unit(8, "feet"),
  20865. default: true
  20866. },
  20867. {
  20868. name: "Lorg",
  20869. height: math.unit(12, "feet")
  20870. },
  20871. {
  20872. name: "Oh Lawd She Comin'",
  20873. height: math.unit(20, "feet")
  20874. },
  20875. ]
  20876. ))
  20877. characterMakers.push(() => makeCharacter(
  20878. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20879. {
  20880. front: {
  20881. height: math.unit(4, "feet"),
  20882. weight: math.unit(90, "lb"),
  20883. name: "Front",
  20884. image: {
  20885. source: "./media/characters/reza/front.svg",
  20886. extra: 1183 / 1111,
  20887. bottom: 0.017
  20888. }
  20889. },
  20890. back: {
  20891. height: math.unit(4, "feet"),
  20892. weight: math.unit(90, "lb"),
  20893. name: "Back",
  20894. image: {
  20895. source: "./media/characters/reza/back.svg",
  20896. extra: 1183 / 1111,
  20897. bottom: 0.01
  20898. }
  20899. },
  20900. drake: {
  20901. height: math.unit(30, "feet"),
  20902. weight: math.unit(246960, "lb"),
  20903. name: "Drake",
  20904. image: {
  20905. source: "./media/characters/reza/drake.svg",
  20906. extra: 2350 / 2024,
  20907. bottom: 60.7 / 2403
  20908. }
  20909. },
  20910. },
  20911. [
  20912. {
  20913. name: "Normal",
  20914. height: math.unit(4, "feet"),
  20915. default: true
  20916. },
  20917. ]
  20918. ))
  20919. characterMakers.push(() => makeCharacter(
  20920. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20921. {
  20922. side: {
  20923. height: math.unit(15, "feet"),
  20924. weight: math.unit(14, "tons"),
  20925. name: "Side",
  20926. image: {
  20927. source: "./media/characters/athea/side.svg",
  20928. extra: 960 / 540,
  20929. bottom: 0.003
  20930. }
  20931. },
  20932. sitting: {
  20933. height: math.unit(6 * 2.85, "feet"),
  20934. weight: math.unit(14, "tons"),
  20935. name: "Sitting",
  20936. image: {
  20937. source: "./media/characters/athea/sitting.svg",
  20938. extra: 621 / 581,
  20939. bottom: 0.075
  20940. }
  20941. },
  20942. maw: {
  20943. height: math.unit(7.59498031496063, "feet"),
  20944. name: "Maw",
  20945. image: {
  20946. source: "./media/characters/athea/maw.svg"
  20947. }
  20948. },
  20949. },
  20950. [
  20951. {
  20952. name: "Lap Cat",
  20953. height: math.unit(2.5, "feet")
  20954. },
  20955. {
  20956. name: "Minimacro",
  20957. height: math.unit(15, "feet"),
  20958. default: true
  20959. },
  20960. {
  20961. name: "Macro",
  20962. height: math.unit(120, "feet")
  20963. },
  20964. {
  20965. name: "Macro+",
  20966. height: math.unit(640, "feet")
  20967. },
  20968. {
  20969. name: "Colossus",
  20970. height: math.unit(2.2, "miles")
  20971. },
  20972. ]
  20973. ))
  20974. characterMakers.push(() => makeCharacter(
  20975. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20976. {
  20977. front: {
  20978. height: math.unit(8 + 8 / 12, "feet"),
  20979. weight: math.unit(130, "kg"),
  20980. name: "Front",
  20981. image: {
  20982. source: "./media/characters/seroko/front.svg",
  20983. extra: 1385 / 1280,
  20984. bottom: 0.025
  20985. }
  20986. },
  20987. back: {
  20988. height: math.unit(8 + 8 / 12, "feet"),
  20989. weight: math.unit(130, "kg"),
  20990. name: "Back",
  20991. image: {
  20992. source: "./media/characters/seroko/back.svg",
  20993. extra: 1369 / 1238,
  20994. bottom: 0.018
  20995. }
  20996. },
  20997. frontDressed: {
  20998. height: math.unit(8 + 8 / 12, "feet"),
  20999. weight: math.unit(130, "kg"),
  21000. name: "Front (Dressed)",
  21001. image: {
  21002. source: "./media/characters/seroko/front-dressed.svg",
  21003. extra: 1366 / 1275,
  21004. bottom: 0.03
  21005. }
  21006. },
  21007. },
  21008. [
  21009. {
  21010. name: "Normal",
  21011. height: math.unit(8 + 8 / 12, "feet"),
  21012. default: true
  21013. },
  21014. ]
  21015. ))
  21016. characterMakers.push(() => makeCharacter(
  21017. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21018. {
  21019. front: {
  21020. height: math.unit(5.5, "feet"),
  21021. weight: math.unit(160, "lb"),
  21022. name: "Front",
  21023. image: {
  21024. source: "./media/characters/quatzi/front.svg",
  21025. extra: 2346 / 2242,
  21026. bottom: 0.015
  21027. }
  21028. },
  21029. },
  21030. [
  21031. {
  21032. name: "Normal",
  21033. height: math.unit(5.5, "feet"),
  21034. default: true
  21035. },
  21036. {
  21037. name: "Big",
  21038. height: math.unit(7.7, "feet")
  21039. },
  21040. ]
  21041. ))
  21042. characterMakers.push(() => makeCharacter(
  21043. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21044. {
  21045. front: {
  21046. height: math.unit(5 + 11 / 12, "feet"),
  21047. weight: math.unit(180, "lb"),
  21048. name: "Front",
  21049. image: {
  21050. source: "./media/characters/sen/front.svg",
  21051. extra: 1321 / 1254,
  21052. bottom: 0.015
  21053. }
  21054. },
  21055. side: {
  21056. height: math.unit(5 + 11 / 12, "feet"),
  21057. weight: math.unit(180, "lb"),
  21058. name: "Side",
  21059. image: {
  21060. source: "./media/characters/sen/side.svg",
  21061. extra: 1321 / 1254,
  21062. bottom: 0.007
  21063. }
  21064. },
  21065. back: {
  21066. height: math.unit(5 + 11 / 12, "feet"),
  21067. weight: math.unit(180, "lb"),
  21068. name: "Back",
  21069. image: {
  21070. source: "./media/characters/sen/back.svg",
  21071. extra: 1321 / 1254
  21072. }
  21073. },
  21074. },
  21075. [
  21076. {
  21077. name: "Normal",
  21078. height: math.unit(5 + 11 / 12, "feet"),
  21079. default: true
  21080. },
  21081. ]
  21082. ))
  21083. characterMakers.push(() => makeCharacter(
  21084. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21085. {
  21086. front: {
  21087. height: math.unit(166.6, "cm"),
  21088. weight: math.unit(66.6, "kg"),
  21089. name: "Front",
  21090. image: {
  21091. source: "./media/characters/fruity/front.svg",
  21092. extra: 1510 / 1386,
  21093. bottom: 0.04
  21094. }
  21095. },
  21096. back: {
  21097. height: math.unit(166.6, "cm"),
  21098. weight: math.unit(66.6, "lb"),
  21099. name: "Back",
  21100. image: {
  21101. source: "./media/characters/fruity/back.svg",
  21102. extra: 1563 / 1435,
  21103. bottom: 0.005
  21104. }
  21105. },
  21106. },
  21107. [
  21108. {
  21109. name: "Normal",
  21110. height: math.unit(166.6, "cm"),
  21111. default: true
  21112. },
  21113. {
  21114. name: "Demonic",
  21115. height: math.unit(166.6, "feet")
  21116. },
  21117. ]
  21118. ))
  21119. characterMakers.push(() => makeCharacter(
  21120. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21121. {
  21122. side: {
  21123. height: math.unit(10, "feet"),
  21124. weight: math.unit(500, "lb"),
  21125. name: "Side",
  21126. image: {
  21127. source: "./media/characters/zost/side.svg",
  21128. extra: 966 / 880,
  21129. bottom: 0.075
  21130. }
  21131. },
  21132. mawFront: {
  21133. height: math.unit(1.08, "meters"),
  21134. name: "Maw (Front)",
  21135. image: {
  21136. source: "./media/characters/zost/maw-front.svg"
  21137. }
  21138. },
  21139. mawSide: {
  21140. height: math.unit(2.66, "feet"),
  21141. name: "Maw (Side)",
  21142. image: {
  21143. source: "./media/characters/zost/maw-side.svg"
  21144. }
  21145. },
  21146. },
  21147. [
  21148. {
  21149. name: "Normal",
  21150. height: math.unit(10, "feet"),
  21151. default: true
  21152. },
  21153. ]
  21154. ))
  21155. characterMakers.push(() => makeCharacter(
  21156. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21157. {
  21158. front: {
  21159. height: math.unit(5 + 4 / 12, "feet"),
  21160. weight: math.unit(120, "lb"),
  21161. name: "Front",
  21162. image: {
  21163. source: "./media/characters/luci/front.svg",
  21164. extra: 1985 / 1884,
  21165. bottom: 0.04
  21166. }
  21167. },
  21168. back: {
  21169. height: math.unit(5 + 4 / 12, "feet"),
  21170. weight: math.unit(120, "lb"),
  21171. name: "Back",
  21172. image: {
  21173. source: "./media/characters/luci/back.svg",
  21174. extra: 1892 / 1791,
  21175. bottom: 0.002
  21176. }
  21177. },
  21178. },
  21179. [
  21180. {
  21181. name: "Normal",
  21182. height: math.unit(5 + 4 / 12, "feet"),
  21183. default: true
  21184. },
  21185. ]
  21186. ))
  21187. characterMakers.push(() => makeCharacter(
  21188. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21189. {
  21190. front: {
  21191. height: math.unit(1500, "feet"),
  21192. weight: math.unit(3.8e6, "tons"),
  21193. name: "Front",
  21194. image: {
  21195. source: "./media/characters/2th/front.svg",
  21196. extra: 3489 / 3350,
  21197. bottom: 0.1
  21198. }
  21199. },
  21200. foot: {
  21201. height: math.unit(461, "feet"),
  21202. name: "Foot",
  21203. image: {
  21204. source: "./media/characters/2th/foot.svg"
  21205. }
  21206. },
  21207. },
  21208. [
  21209. {
  21210. name: "\"Micro\"",
  21211. height: math.unit(15 + 7 / 12, "feet")
  21212. },
  21213. {
  21214. name: "Normal",
  21215. height: math.unit(1500, "feet"),
  21216. default: true
  21217. },
  21218. {
  21219. name: "Macro",
  21220. height: math.unit(5000, "feet")
  21221. },
  21222. {
  21223. name: "Megamacro",
  21224. height: math.unit(15, "miles")
  21225. },
  21226. {
  21227. name: "Gigamacro",
  21228. height: math.unit(4000, "miles")
  21229. },
  21230. {
  21231. name: "Galactic",
  21232. height: math.unit(50, "AU")
  21233. },
  21234. ]
  21235. ))
  21236. characterMakers.push(() => makeCharacter(
  21237. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21238. {
  21239. front: {
  21240. height: math.unit(5 + 6 / 12, "feet"),
  21241. weight: math.unit(220, "lb"),
  21242. name: "Front",
  21243. image: {
  21244. source: "./media/characters/amethyst/front.svg",
  21245. extra: 2078 / 2040,
  21246. bottom: 0.045
  21247. }
  21248. },
  21249. back: {
  21250. height: math.unit(5 + 6 / 12, "feet"),
  21251. weight: math.unit(220, "lb"),
  21252. name: "Back",
  21253. image: {
  21254. source: "./media/characters/amethyst/back.svg",
  21255. extra: 2021 / 1989,
  21256. bottom: 0.02
  21257. }
  21258. },
  21259. },
  21260. [
  21261. {
  21262. name: "Normal",
  21263. height: math.unit(5 + 6 / 12, "feet"),
  21264. default: true
  21265. },
  21266. ]
  21267. ))
  21268. characterMakers.push(() => makeCharacter(
  21269. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21270. {
  21271. front: {
  21272. height: math.unit(4 + 11 / 12, "feet"),
  21273. weight: math.unit(120, "lb"),
  21274. name: "Front",
  21275. image: {
  21276. source: "./media/characters/yumi-akiyama/front.svg",
  21277. extra: 1327 / 1235,
  21278. bottom: 0.02
  21279. }
  21280. },
  21281. back: {
  21282. height: math.unit(4 + 11 / 12, "feet"),
  21283. weight: math.unit(120, "lb"),
  21284. name: "Back",
  21285. image: {
  21286. source: "./media/characters/yumi-akiyama/back.svg",
  21287. extra: 1287 / 1245,
  21288. bottom: 0.002
  21289. }
  21290. },
  21291. },
  21292. [
  21293. {
  21294. name: "Galactic",
  21295. height: math.unit(50, "galaxies"),
  21296. default: true
  21297. },
  21298. {
  21299. name: "Universal",
  21300. height: math.unit(100, "universes")
  21301. },
  21302. ]
  21303. ))
  21304. characterMakers.push(() => makeCharacter(
  21305. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21306. {
  21307. front: {
  21308. height: math.unit(8, "feet"),
  21309. weight: math.unit(500, "lb"),
  21310. name: "Front",
  21311. image: {
  21312. source: "./media/characters/rifter-yrmori/front.svg",
  21313. extra: 1180 / 1125,
  21314. bottom: 0.02
  21315. }
  21316. },
  21317. back: {
  21318. height: math.unit(8, "feet"),
  21319. weight: math.unit(500, "lb"),
  21320. name: "Back",
  21321. image: {
  21322. source: "./media/characters/rifter-yrmori/back.svg",
  21323. extra: 1190 / 1145,
  21324. bottom: 0.001
  21325. }
  21326. },
  21327. wings: {
  21328. height: math.unit(7.75, "feet"),
  21329. weight: math.unit(500, "lb"),
  21330. name: "Wings",
  21331. image: {
  21332. source: "./media/characters/rifter-yrmori/wings.svg",
  21333. extra: 1357 / 1285
  21334. }
  21335. },
  21336. maw: {
  21337. height: math.unit(0.8, "feet"),
  21338. name: "Maw",
  21339. image: {
  21340. source: "./media/characters/rifter-yrmori/maw.svg"
  21341. }
  21342. },
  21343. mawfront: {
  21344. height: math.unit(1.45, "feet"),
  21345. name: "Maw (Front)",
  21346. image: {
  21347. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21348. }
  21349. },
  21350. },
  21351. [
  21352. {
  21353. name: "Normal",
  21354. height: math.unit(8, "feet"),
  21355. default: true
  21356. },
  21357. {
  21358. name: "Macro",
  21359. height: math.unit(42, "meters")
  21360. },
  21361. ]
  21362. ))
  21363. characterMakers.push(() => makeCharacter(
  21364. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21365. {
  21366. were: {
  21367. height: math.unit(25 + 6 / 12, "feet"),
  21368. weight: math.unit(10000, "lb"),
  21369. name: "Were",
  21370. image: {
  21371. source: "./media/characters/tahajin/were.svg",
  21372. extra: 801 / 770,
  21373. bottom: 0.042
  21374. }
  21375. },
  21376. aquatic: {
  21377. height: math.unit(6 + 4 / 12, "feet"),
  21378. weight: math.unit(160, "lb"),
  21379. name: "Aquatic",
  21380. image: {
  21381. source: "./media/characters/tahajin/aquatic.svg",
  21382. extra: 572 / 542,
  21383. bottom: 0.04
  21384. }
  21385. },
  21386. chow: {
  21387. height: math.unit(8 + 11 / 12, "feet"),
  21388. weight: math.unit(450, "lb"),
  21389. name: "Chow",
  21390. image: {
  21391. source: "./media/characters/tahajin/chow.svg",
  21392. extra: 660 / 640,
  21393. bottom: 0.015
  21394. }
  21395. },
  21396. demiNaga: {
  21397. height: math.unit(6 + 8 / 12, "feet"),
  21398. weight: math.unit(300, "lb"),
  21399. name: "Demi Naga",
  21400. image: {
  21401. source: "./media/characters/tahajin/demi-naga.svg",
  21402. extra: 643 / 615,
  21403. bottom: 0.1
  21404. }
  21405. },
  21406. data: {
  21407. height: math.unit(5, "inches"),
  21408. weight: math.unit(0.1, "lb"),
  21409. name: "Data",
  21410. image: {
  21411. source: "./media/characters/tahajin/data.svg"
  21412. }
  21413. },
  21414. fluu: {
  21415. height: math.unit(5 + 7 / 12, "feet"),
  21416. weight: math.unit(140, "lb"),
  21417. name: "Fluu",
  21418. image: {
  21419. source: "./media/characters/tahajin/fluu.svg",
  21420. extra: 628 / 592,
  21421. bottom: 0.02
  21422. }
  21423. },
  21424. starWarrior: {
  21425. height: math.unit(4 + 5 / 12, "feet"),
  21426. weight: math.unit(50, "lb"),
  21427. name: "Star Warrior",
  21428. image: {
  21429. source: "./media/characters/tahajin/star-warrior.svg"
  21430. }
  21431. },
  21432. },
  21433. [
  21434. {
  21435. name: "Normal",
  21436. height: math.unit(25 + 6 / 12, "feet"),
  21437. default: true
  21438. },
  21439. ]
  21440. ))
  21441. characterMakers.push(() => makeCharacter(
  21442. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21443. {
  21444. front: {
  21445. height: math.unit(8, "feet"),
  21446. weight: math.unit(350, "lb"),
  21447. name: "Front",
  21448. image: {
  21449. source: "./media/characters/gabira/front.svg",
  21450. extra: 608 / 580,
  21451. bottom: 0.03
  21452. }
  21453. },
  21454. back: {
  21455. height: math.unit(8, "feet"),
  21456. weight: math.unit(350, "lb"),
  21457. name: "Back",
  21458. image: {
  21459. source: "./media/characters/gabira/back.svg",
  21460. extra: 608 / 580,
  21461. bottom: 0.03
  21462. }
  21463. },
  21464. },
  21465. [
  21466. {
  21467. name: "Normal",
  21468. height: math.unit(8, "feet"),
  21469. default: true
  21470. },
  21471. ]
  21472. ))
  21473. characterMakers.push(() => makeCharacter(
  21474. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21475. {
  21476. front: {
  21477. height: math.unit(5 + 3 / 12, "feet"),
  21478. weight: math.unit(137, "lb"),
  21479. name: "Front",
  21480. image: {
  21481. source: "./media/characters/sasha-katraine/front.svg",
  21482. bottom: 0.045
  21483. }
  21484. },
  21485. },
  21486. [
  21487. {
  21488. name: "Micro",
  21489. height: math.unit(5, "inches")
  21490. },
  21491. {
  21492. name: "Normal",
  21493. height: math.unit(5 + 3 / 12, "feet"),
  21494. default: true
  21495. },
  21496. ]
  21497. ))
  21498. characterMakers.push(() => makeCharacter(
  21499. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21500. {
  21501. side: {
  21502. height: math.unit(4, "inches"),
  21503. weight: math.unit(200, "grams"),
  21504. name: "Side",
  21505. image: {
  21506. source: "./media/characters/der/side.svg",
  21507. extra: 719 / 400,
  21508. bottom: 30.6 / 749.9187
  21509. }
  21510. },
  21511. },
  21512. [
  21513. {
  21514. name: "Micro",
  21515. height: math.unit(4, "inches"),
  21516. default: true
  21517. },
  21518. ]
  21519. ))
  21520. characterMakers.push(() => makeCharacter(
  21521. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21522. {
  21523. side: {
  21524. height: math.unit(30, "meters"),
  21525. weight: math.unit(700, "tonnes"),
  21526. name: "Side",
  21527. image: {
  21528. source: "./media/characters/fixerdragon/side.svg",
  21529. extra: (1293.0514 - 116.03) / 1106.86,
  21530. bottom: 116.03 / 1293.0514
  21531. }
  21532. },
  21533. },
  21534. [
  21535. {
  21536. name: "Planck",
  21537. height: math.unit(1.6e-35, "meters")
  21538. },
  21539. {
  21540. name: "Micro",
  21541. height: math.unit(0.4, "meters")
  21542. },
  21543. {
  21544. name: "Normal",
  21545. height: math.unit(30, "meters"),
  21546. default: true
  21547. },
  21548. {
  21549. name: "Megamacro",
  21550. height: math.unit(1.2, "megameters")
  21551. },
  21552. {
  21553. name: "Teramacro",
  21554. height: math.unit(130, "terameters")
  21555. },
  21556. {
  21557. name: "Yottamacro",
  21558. height: math.unit(6200, "yottameters")
  21559. },
  21560. ]
  21561. ));
  21562. characterMakers.push(() => makeCharacter(
  21563. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21564. {
  21565. front: {
  21566. height: math.unit(8, "feet"),
  21567. weight: math.unit(250, "lb"),
  21568. name: "Front",
  21569. image: {
  21570. source: "./media/characters/kite/front.svg",
  21571. extra: 2796 / 2659,
  21572. bottom: 0.002
  21573. }
  21574. },
  21575. },
  21576. [
  21577. {
  21578. name: "Normal",
  21579. height: math.unit(8, "feet"),
  21580. default: true
  21581. },
  21582. {
  21583. name: "Macro",
  21584. height: math.unit(360, "feet")
  21585. },
  21586. {
  21587. name: "Megamacro",
  21588. height: math.unit(1500, "feet")
  21589. },
  21590. ]
  21591. ))
  21592. characterMakers.push(() => makeCharacter(
  21593. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21594. {
  21595. front: {
  21596. height: math.unit(5 + 10 / 12, "feet"),
  21597. weight: math.unit(150, "lb"),
  21598. name: "Front",
  21599. image: {
  21600. source: "./media/characters/poojawa-vynar/front.svg",
  21601. extra: (1506.1547 - 55) / 1356.6,
  21602. bottom: 55 / 1506.1547
  21603. }
  21604. },
  21605. frontTailless: {
  21606. height: math.unit(5 + 10 / 12, "feet"),
  21607. weight: math.unit(150, "lb"),
  21608. name: "Front (Tailless)",
  21609. image: {
  21610. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21611. extra: (1506.1547 - 55) / 1356.6,
  21612. bottom: 55 / 1506.1547
  21613. }
  21614. },
  21615. },
  21616. [
  21617. {
  21618. name: "Normal",
  21619. height: math.unit(5 + 10 / 12, "feet"),
  21620. default: true
  21621. },
  21622. ]
  21623. ))
  21624. characterMakers.push(() => makeCharacter(
  21625. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21626. {
  21627. front: {
  21628. height: math.unit(293, "meters"),
  21629. weight: math.unit(70400, "tons"),
  21630. name: "Front",
  21631. image: {
  21632. source: "./media/characters/violette/front.svg",
  21633. extra: 1227 / 1180,
  21634. bottom: 0.005
  21635. }
  21636. },
  21637. back: {
  21638. height: math.unit(293, "meters"),
  21639. weight: math.unit(70400, "tons"),
  21640. name: "Back",
  21641. image: {
  21642. source: "./media/characters/violette/back.svg",
  21643. extra: 1227 / 1180,
  21644. bottom: 0.005
  21645. }
  21646. },
  21647. },
  21648. [
  21649. {
  21650. name: "Macro",
  21651. height: math.unit(293, "meters"),
  21652. default: true
  21653. },
  21654. ]
  21655. ))
  21656. characterMakers.push(() => makeCharacter(
  21657. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21658. {
  21659. front: {
  21660. height: math.unit(1050, "feet"),
  21661. weight: math.unit(200000, "tons"),
  21662. name: "Front",
  21663. image: {
  21664. source: "./media/characters/alessandra/front.svg",
  21665. extra: 960 / 912,
  21666. bottom: 0.06
  21667. }
  21668. },
  21669. },
  21670. [
  21671. {
  21672. name: "Macro",
  21673. height: math.unit(1050, "feet")
  21674. },
  21675. {
  21676. name: "Macro+",
  21677. height: math.unit(900, "meters"),
  21678. default: true
  21679. },
  21680. ]
  21681. ))
  21682. characterMakers.push(() => makeCharacter(
  21683. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21684. {
  21685. front: {
  21686. height: math.unit(5, "feet"),
  21687. weight: math.unit(187, "lb"),
  21688. name: "Front",
  21689. image: {
  21690. source: "./media/characters/person/front.svg",
  21691. extra: 3087 / 2945,
  21692. bottom: 91 / 3181
  21693. }
  21694. },
  21695. },
  21696. [
  21697. {
  21698. name: "Micro",
  21699. height: math.unit(3, "inches")
  21700. },
  21701. {
  21702. name: "Normal",
  21703. height: math.unit(5, "feet"),
  21704. default: true
  21705. },
  21706. {
  21707. name: "Macro",
  21708. height: math.unit(90, "feet")
  21709. },
  21710. {
  21711. name: "Max Size",
  21712. height: math.unit(280, "feet")
  21713. },
  21714. ]
  21715. ))
  21716. characterMakers.push(() => makeCharacter(
  21717. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21718. {
  21719. front: {
  21720. height: math.unit(4.5, "meters"),
  21721. weight: math.unit(3200, "lb"),
  21722. name: "Front",
  21723. image: {
  21724. source: "./media/characters/ty/front.svg",
  21725. extra: 1038 / 960,
  21726. bottom: 31.156 / 1068
  21727. }
  21728. },
  21729. back: {
  21730. height: math.unit(4.5, "meters"),
  21731. weight: math.unit(3200, "lb"),
  21732. name: "Back",
  21733. image: {
  21734. source: "./media/characters/ty/back.svg",
  21735. extra: 1044 / 966,
  21736. bottom: 7.48 / 1049
  21737. }
  21738. },
  21739. },
  21740. [
  21741. {
  21742. name: "Normal",
  21743. height: math.unit(4.5, "meters"),
  21744. default: true
  21745. },
  21746. ]
  21747. ))
  21748. characterMakers.push(() => makeCharacter(
  21749. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21750. {
  21751. front: {
  21752. height: math.unit(5 + 4 / 12, "feet"),
  21753. weight: math.unit(115, "lb"),
  21754. name: "Front",
  21755. image: {
  21756. source: "./media/characters/rocky/front.svg",
  21757. extra: 1012 / 975,
  21758. bottom: 54 / 1066
  21759. }
  21760. },
  21761. },
  21762. [
  21763. {
  21764. name: "Normal",
  21765. height: math.unit(5 + 4 / 12, "feet"),
  21766. default: true
  21767. },
  21768. ]
  21769. ))
  21770. characterMakers.push(() => makeCharacter(
  21771. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21772. {
  21773. upright: {
  21774. height: math.unit(6, "meters"),
  21775. weight: math.unit(4000, "kg"),
  21776. name: "Upright",
  21777. image: {
  21778. source: "./media/characters/ruin/upright.svg",
  21779. extra: 668 / 661,
  21780. bottom: 42 / 799.8396
  21781. }
  21782. },
  21783. },
  21784. [
  21785. {
  21786. name: "Normal",
  21787. height: math.unit(6, "meters"),
  21788. default: true
  21789. },
  21790. ]
  21791. ))
  21792. characterMakers.push(() => makeCharacter(
  21793. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21794. {
  21795. front: {
  21796. height: math.unit(5, "feet"),
  21797. weight: math.unit(106, "lb"),
  21798. name: "Front",
  21799. image: {
  21800. source: "./media/characters/robin/front.svg",
  21801. extra: 862 / 799,
  21802. bottom: 42.4 / 914.8856
  21803. }
  21804. },
  21805. },
  21806. [
  21807. {
  21808. name: "Normal",
  21809. height: math.unit(5, "feet"),
  21810. default: true
  21811. },
  21812. ]
  21813. ))
  21814. characterMakers.push(() => makeCharacter(
  21815. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21816. {
  21817. side: {
  21818. height: math.unit(3, "feet"),
  21819. weight: math.unit(225, "lb"),
  21820. name: "Side",
  21821. image: {
  21822. source: "./media/characters/saian/side.svg",
  21823. extra: 566 / 356,
  21824. bottom: 79.7 / 643
  21825. }
  21826. },
  21827. maw: {
  21828. height: math.unit(2.85, "feet"),
  21829. name: "Maw",
  21830. image: {
  21831. source: "./media/characters/saian/maw.svg"
  21832. }
  21833. },
  21834. },
  21835. [
  21836. {
  21837. name: "Normal",
  21838. height: math.unit(3, "feet"),
  21839. default: true
  21840. },
  21841. ]
  21842. ))
  21843. characterMakers.push(() => makeCharacter(
  21844. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21845. {
  21846. side: {
  21847. height: math.unit(8, "feet"),
  21848. weight: math.unit(300, "lb"),
  21849. name: "Side",
  21850. image: {
  21851. source: "./media/characters/equus-silvermane/side.svg",
  21852. extra: 2176 / 2050,
  21853. bottom: 65.7 / 2245
  21854. }
  21855. },
  21856. front: {
  21857. height: math.unit(8, "feet"),
  21858. weight: math.unit(300, "lb"),
  21859. name: "Front",
  21860. image: {
  21861. source: "./media/characters/equus-silvermane/front.svg",
  21862. extra: 4633 / 4400,
  21863. bottom: 71.3 / 4706.915
  21864. }
  21865. },
  21866. sideStepping: {
  21867. height: math.unit(8, "feet"),
  21868. weight: math.unit(300, "lb"),
  21869. name: "Side (Stepping)",
  21870. image: {
  21871. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21872. extra: 1968 / 1860,
  21873. bottom: 16.4 / 1989
  21874. }
  21875. },
  21876. },
  21877. [
  21878. {
  21879. name: "Normal",
  21880. height: math.unit(8, "feet")
  21881. },
  21882. {
  21883. name: "Minimacro",
  21884. height: math.unit(75, "feet"),
  21885. default: true
  21886. },
  21887. {
  21888. name: "Macro",
  21889. height: math.unit(150, "feet")
  21890. },
  21891. {
  21892. name: "Macro+",
  21893. height: math.unit(1000, "feet")
  21894. },
  21895. {
  21896. name: "Megamacro",
  21897. height: math.unit(1, "mile")
  21898. },
  21899. ]
  21900. ))
  21901. characterMakers.push(() => makeCharacter(
  21902. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21903. {
  21904. side: {
  21905. height: math.unit(20, "feet"),
  21906. weight: math.unit(30000, "kg"),
  21907. name: "Side",
  21908. image: {
  21909. source: "./media/characters/windar/side.svg",
  21910. extra: 1491 / 1248,
  21911. bottom: 82.56 / 1568
  21912. }
  21913. },
  21914. },
  21915. [
  21916. {
  21917. name: "Normal",
  21918. height: math.unit(20, "feet"),
  21919. default: true
  21920. },
  21921. ]
  21922. ))
  21923. characterMakers.push(() => makeCharacter(
  21924. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21925. {
  21926. side: {
  21927. height: math.unit(15.66, "feet"),
  21928. weight: math.unit(150, "lb"),
  21929. name: "Side",
  21930. image: {
  21931. source: "./media/characters/melody/side.svg",
  21932. extra: 1097 / 944,
  21933. bottom: 11.8 / 1109
  21934. }
  21935. },
  21936. sideOutfit: {
  21937. height: math.unit(15.66, "feet"),
  21938. weight: math.unit(150, "lb"),
  21939. name: "Side (Outfit)",
  21940. image: {
  21941. source: "./media/characters/melody/side-outfit.svg",
  21942. extra: 1097 / 944,
  21943. bottom: 11.8 / 1109
  21944. }
  21945. },
  21946. },
  21947. [
  21948. {
  21949. name: "Normal",
  21950. height: math.unit(15.66, "feet"),
  21951. default: true
  21952. },
  21953. ]
  21954. ))
  21955. characterMakers.push(() => makeCharacter(
  21956. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21957. {
  21958. front: {
  21959. height: math.unit(8, "feet"),
  21960. weight: math.unit(325, "lb"),
  21961. name: "Front",
  21962. image: {
  21963. source: "./media/characters/windera/front.svg",
  21964. extra: 3180 / 2845,
  21965. bottom: 178 / 3365
  21966. }
  21967. },
  21968. },
  21969. [
  21970. {
  21971. name: "Normal",
  21972. height: math.unit(8, "feet"),
  21973. default: true
  21974. },
  21975. ]
  21976. ))
  21977. characterMakers.push(() => makeCharacter(
  21978. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21979. {
  21980. front: {
  21981. height: math.unit(28.75, "feet"),
  21982. weight: math.unit(2000, "kg"),
  21983. name: "Front",
  21984. image: {
  21985. source: "./media/characters/sonear/front.svg",
  21986. extra: 1041.1 / 964.9,
  21987. bottom: 53.7 / 1096.6
  21988. }
  21989. },
  21990. },
  21991. [
  21992. {
  21993. name: "Normal",
  21994. height: math.unit(28.75, "feet"),
  21995. default: true
  21996. },
  21997. ]
  21998. ))
  21999. characterMakers.push(() => makeCharacter(
  22000. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22001. {
  22002. side: {
  22003. height: math.unit(25.5, "feet"),
  22004. weight: math.unit(23000, "kg"),
  22005. name: "Side",
  22006. image: {
  22007. source: "./media/characters/kanara/side.svg"
  22008. }
  22009. },
  22010. },
  22011. [
  22012. {
  22013. name: "Normal",
  22014. height: math.unit(25.5, "feet"),
  22015. default: true
  22016. },
  22017. ]
  22018. ))
  22019. characterMakers.push(() => makeCharacter(
  22020. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22021. {
  22022. side: {
  22023. height: math.unit(10, "feet"),
  22024. weight: math.unit(1000, "kg"),
  22025. name: "Side",
  22026. image: {
  22027. source: "./media/characters/ereus/side.svg",
  22028. extra: 1157 / 959,
  22029. bottom: 153 / 1312.5
  22030. }
  22031. },
  22032. },
  22033. [
  22034. {
  22035. name: "Normal",
  22036. height: math.unit(10, "feet"),
  22037. default: true
  22038. },
  22039. ]
  22040. ))
  22041. characterMakers.push(() => makeCharacter(
  22042. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22043. {
  22044. side: {
  22045. height: math.unit(4.5, "feet"),
  22046. weight: math.unit(500, "lb"),
  22047. name: "Side",
  22048. image: {
  22049. source: "./media/characters/e-ter/side.svg",
  22050. extra: 1550 / 1248,
  22051. bottom: 146 / 1694
  22052. }
  22053. },
  22054. },
  22055. [
  22056. {
  22057. name: "Normal",
  22058. height: math.unit(4.5, "feet"),
  22059. default: true
  22060. },
  22061. ]
  22062. ))
  22063. characterMakers.push(() => makeCharacter(
  22064. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22065. {
  22066. side: {
  22067. height: math.unit(9.7, "feet"),
  22068. weight: math.unit(4000, "kg"),
  22069. name: "Side",
  22070. image: {
  22071. source: "./media/characters/yamie/side.svg"
  22072. }
  22073. },
  22074. },
  22075. [
  22076. {
  22077. name: "Normal",
  22078. height: math.unit(9.7, "feet"),
  22079. default: true
  22080. },
  22081. ]
  22082. ))
  22083. characterMakers.push(() => makeCharacter(
  22084. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22085. {
  22086. front: {
  22087. height: math.unit(50, "feet"),
  22088. weight: math.unit(50000, "kg"),
  22089. name: "Front",
  22090. image: {
  22091. source: "./media/characters/anders/front.svg",
  22092. extra: 570 / 539,
  22093. bottom: 14.7 / 586.7
  22094. }
  22095. },
  22096. },
  22097. [
  22098. {
  22099. name: "Large",
  22100. height: math.unit(50, "feet")
  22101. },
  22102. {
  22103. name: "Macro",
  22104. height: math.unit(2000, "feet"),
  22105. default: true
  22106. },
  22107. {
  22108. name: "Megamacro",
  22109. height: math.unit(12, "miles")
  22110. },
  22111. ]
  22112. ))
  22113. characterMakers.push(() => makeCharacter(
  22114. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22115. {
  22116. front: {
  22117. height: math.unit(7 + 2 / 12, "feet"),
  22118. weight: math.unit(300, "lb"),
  22119. name: "Front",
  22120. image: {
  22121. source: "./media/characters/reban/front.svg",
  22122. extra: 516 / 487,
  22123. bottom: 42.82 / 558.356
  22124. }
  22125. },
  22126. dick: {
  22127. height: math.unit(7 / 5, "feet"),
  22128. name: "Dick",
  22129. image: {
  22130. source: "./media/characters/reban/dick.svg"
  22131. }
  22132. },
  22133. },
  22134. [
  22135. {
  22136. name: "Natural Height",
  22137. height: math.unit(7 + 2 / 12, "feet")
  22138. },
  22139. {
  22140. name: "Macro",
  22141. height: math.unit(500, "feet"),
  22142. default: true
  22143. },
  22144. {
  22145. name: "Canon Height",
  22146. height: math.unit(50, "AU")
  22147. },
  22148. ]
  22149. ))
  22150. characterMakers.push(() => makeCharacter(
  22151. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22152. {
  22153. front: {
  22154. height: math.unit(6, "feet"),
  22155. weight: math.unit(150, "lb"),
  22156. name: "Front",
  22157. image: {
  22158. source: "./media/characters/terrance-keayes/front.svg",
  22159. extra: 1.005,
  22160. bottom: 151 / 1615
  22161. }
  22162. },
  22163. side: {
  22164. height: math.unit(6, "feet"),
  22165. weight: math.unit(150, "lb"),
  22166. name: "Side",
  22167. image: {
  22168. source: "./media/characters/terrance-keayes/side.svg",
  22169. extra: 1.005,
  22170. bottom: 129.4 / 1544
  22171. }
  22172. },
  22173. back: {
  22174. height: math.unit(6, "feet"),
  22175. weight: math.unit(150, "lb"),
  22176. name: "Back",
  22177. image: {
  22178. source: "./media/characters/terrance-keayes/back.svg",
  22179. extra: 1.005,
  22180. bottom: 58.4 / 1557.3
  22181. }
  22182. },
  22183. dick: {
  22184. height: math.unit(6 * 0.208, "feet"),
  22185. name: "Dick",
  22186. image: {
  22187. source: "./media/characters/terrance-keayes/dick.svg"
  22188. }
  22189. },
  22190. },
  22191. [
  22192. {
  22193. name: "Canon Height",
  22194. height: math.unit(35, "miles"),
  22195. default: true
  22196. },
  22197. ]
  22198. ))
  22199. characterMakers.push(() => makeCharacter(
  22200. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22201. {
  22202. front: {
  22203. height: math.unit(6, "feet"),
  22204. weight: math.unit(150, "lb"),
  22205. name: "Front",
  22206. image: {
  22207. source: "./media/characters/ofelia/front.svg",
  22208. extra: 546 / 541,
  22209. bottom: 39 / 583
  22210. }
  22211. },
  22212. back: {
  22213. height: math.unit(6, "feet"),
  22214. weight: math.unit(150, "lb"),
  22215. name: "Back",
  22216. image: {
  22217. source: "./media/characters/ofelia/back.svg",
  22218. extra: 564 / 559.5,
  22219. bottom: 8.69 / 573.02
  22220. }
  22221. },
  22222. maw: {
  22223. height: math.unit(1, "feet"),
  22224. name: "Maw",
  22225. image: {
  22226. source: "./media/characters/ofelia/maw.svg"
  22227. }
  22228. },
  22229. foot: {
  22230. height: math.unit(1.949, "feet"),
  22231. name: "Foot",
  22232. image: {
  22233. source: "./media/characters/ofelia/foot.svg"
  22234. }
  22235. },
  22236. },
  22237. [
  22238. {
  22239. name: "Canon Height",
  22240. height: math.unit(2000, "miles"),
  22241. default: true
  22242. },
  22243. ]
  22244. ))
  22245. characterMakers.push(() => makeCharacter(
  22246. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22247. {
  22248. front: {
  22249. height: math.unit(6, "feet"),
  22250. weight: math.unit(150, "lb"),
  22251. name: "Front",
  22252. image: {
  22253. source: "./media/characters/samuel/front.svg",
  22254. extra: 265 / 258,
  22255. bottom: 2 / 266.1566
  22256. }
  22257. },
  22258. },
  22259. [
  22260. {
  22261. name: "Macro",
  22262. height: math.unit(100, "feet"),
  22263. default: true
  22264. },
  22265. {
  22266. name: "Full Size",
  22267. height: math.unit(1000, "miles")
  22268. },
  22269. ]
  22270. ))
  22271. characterMakers.push(() => makeCharacter(
  22272. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22273. {
  22274. front: {
  22275. height: math.unit(6, "feet"),
  22276. weight: math.unit(300, "lb"),
  22277. name: "Front",
  22278. image: {
  22279. source: "./media/characters/beishir-kiel/front.svg",
  22280. extra: 569 / 547,
  22281. bottom: 41.9 / 609
  22282. }
  22283. },
  22284. maw: {
  22285. height: math.unit(6 * 0.202, "feet"),
  22286. name: "Maw",
  22287. image: {
  22288. source: "./media/characters/beishir-kiel/maw.svg"
  22289. }
  22290. },
  22291. },
  22292. [
  22293. {
  22294. name: "Macro",
  22295. height: math.unit(300, "feet"),
  22296. default: true
  22297. },
  22298. ]
  22299. ))
  22300. characterMakers.push(() => makeCharacter(
  22301. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22302. {
  22303. front: {
  22304. height: math.unit(5 + 7/12, "feet"),
  22305. weight: math.unit(120, "lb"),
  22306. name: "Front",
  22307. image: {
  22308. source: "./media/characters/logan-grey/front.svg",
  22309. extra: 1836/1738,
  22310. bottom: 108/1944
  22311. }
  22312. },
  22313. back: {
  22314. height: math.unit(5 + 7/12, "feet"),
  22315. weight: math.unit(120, "lb"),
  22316. name: "Back",
  22317. image: {
  22318. source: "./media/characters/logan-grey/back.svg",
  22319. extra: 1880/1794,
  22320. bottom: 24/1904
  22321. }
  22322. },
  22323. frontSfw: {
  22324. height: math.unit(5 + 7/12, "feet"),
  22325. weight: math.unit(120, "lb"),
  22326. name: "Front (SFW)",
  22327. image: {
  22328. source: "./media/characters/logan-grey/front-sfw.svg",
  22329. extra: 1836/1738,
  22330. bottom: 108/1944
  22331. }
  22332. },
  22333. backSfw: {
  22334. height: math.unit(5 + 7/12, "feet"),
  22335. weight: math.unit(120, "lb"),
  22336. name: "Back (SFW)",
  22337. image: {
  22338. source: "./media/characters/logan-grey/back-sfw.svg",
  22339. extra: 1880/1794,
  22340. bottom: 24/1904
  22341. }
  22342. },
  22343. hands: {
  22344. height: math.unit(0.84, "feet"),
  22345. name: "Hands",
  22346. image: {
  22347. source: "./media/characters/logan-grey/hands.svg"
  22348. }
  22349. },
  22350. paws: {
  22351. height: math.unit(0.72, "feet"),
  22352. name: "Paws",
  22353. image: {
  22354. source: "./media/characters/logan-grey/paws.svg"
  22355. }
  22356. },
  22357. cock: {
  22358. height: math.unit(1.45, "feet"),
  22359. name: "Cock",
  22360. image: {
  22361. source: "./media/characters/logan-grey/cock.svg"
  22362. }
  22363. },
  22364. cockAlt: {
  22365. height: math.unit(1.437, "feet"),
  22366. name: "Cock (alt)",
  22367. image: {
  22368. source: "./media/characters/logan-grey/cock-alt.svg"
  22369. }
  22370. },
  22371. },
  22372. [
  22373. {
  22374. name: "Normal",
  22375. height: math.unit(5 + 8 / 12, "feet")
  22376. },
  22377. {
  22378. name: "The 500 Foot Femboy",
  22379. height: math.unit(500, "feet"),
  22380. default: true
  22381. },
  22382. {
  22383. name: "Megmacro",
  22384. height: math.unit(20, "miles")
  22385. },
  22386. ]
  22387. ))
  22388. characterMakers.push(() => makeCharacter(
  22389. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22390. {
  22391. front: {
  22392. height: math.unit(8 + 2 / 12, "feet"),
  22393. weight: math.unit(275, "lb"),
  22394. name: "Front",
  22395. image: {
  22396. source: "./media/characters/draganta/front.svg",
  22397. extra: 1177 / 1135,
  22398. bottom: 33.46 / 1212.1
  22399. }
  22400. },
  22401. },
  22402. [
  22403. {
  22404. name: "Normal",
  22405. height: math.unit(8 + 6 / 12, "feet"),
  22406. default: true
  22407. },
  22408. {
  22409. name: "Macro",
  22410. height: math.unit(150, "feet")
  22411. },
  22412. {
  22413. name: "Megamacro",
  22414. height: math.unit(1000, "miles")
  22415. },
  22416. ]
  22417. ))
  22418. characterMakers.push(() => makeCharacter(
  22419. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22420. {
  22421. front: {
  22422. height: math.unit(1.72, "m"),
  22423. weight: math.unit(80, "lb"),
  22424. name: "Front",
  22425. image: {
  22426. source: "./media/characters/voski/front.svg",
  22427. extra: 2076.22 / 2022.4,
  22428. bottom: 102.7 / 2177.3866
  22429. }
  22430. },
  22431. frontNsfw: {
  22432. height: math.unit(1.72, "m"),
  22433. weight: math.unit(80, "lb"),
  22434. name: "Front (NSFW)",
  22435. image: {
  22436. source: "./media/characters/voski/front-nsfw.svg",
  22437. extra: 2076.22 / 2022.4,
  22438. bottom: 102.7 / 2177.3866
  22439. }
  22440. },
  22441. back: {
  22442. height: math.unit(1.72, "m"),
  22443. weight: math.unit(80, "lb"),
  22444. name: "Back",
  22445. image: {
  22446. source: "./media/characters/voski/back.svg",
  22447. extra: 2104 / 2051,
  22448. bottom: 10.45 / 2113.63
  22449. }
  22450. },
  22451. },
  22452. [
  22453. {
  22454. name: "Normal",
  22455. height: math.unit(1.72, "m")
  22456. },
  22457. {
  22458. name: "Macro",
  22459. height: math.unit(55, "m"),
  22460. default: true
  22461. },
  22462. {
  22463. name: "Macro+",
  22464. height: math.unit(300, "m")
  22465. },
  22466. {
  22467. name: "Macro++",
  22468. height: math.unit(700, "m")
  22469. },
  22470. {
  22471. name: "Macro+++",
  22472. height: math.unit(4500, "m")
  22473. },
  22474. {
  22475. name: "Macro++++",
  22476. height: math.unit(45, "km")
  22477. },
  22478. {
  22479. name: "Macro+++++",
  22480. height: math.unit(1220, "km")
  22481. },
  22482. ]
  22483. ))
  22484. characterMakers.push(() => makeCharacter(
  22485. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22486. {
  22487. front: {
  22488. height: math.unit(2.3, "m"),
  22489. weight: math.unit(304, "kg"),
  22490. name: "Front",
  22491. image: {
  22492. source: "./media/characters/icowom-lee/front.svg",
  22493. extra: 985 / 955,
  22494. bottom: 25.4 / 1012
  22495. }
  22496. },
  22497. fronttentacles: {
  22498. height: math.unit(2.3, "m"),
  22499. weight: math.unit(304, "kg"),
  22500. name: "Front-tentacles",
  22501. image: {
  22502. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22503. extra: 985 / 955,
  22504. bottom: 25.4 / 1012
  22505. }
  22506. },
  22507. back: {
  22508. height: math.unit(2.3, "m"),
  22509. weight: math.unit(304, "kg"),
  22510. name: "Back",
  22511. image: {
  22512. source: "./media/characters/icowom-lee/back.svg",
  22513. extra: 975 / 954,
  22514. bottom: 9.5 / 985
  22515. }
  22516. },
  22517. backtentacles: {
  22518. height: math.unit(2.3, "m"),
  22519. weight: math.unit(304, "kg"),
  22520. name: "Back-tentacles",
  22521. image: {
  22522. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22523. extra: 975 / 954,
  22524. bottom: 9.5 / 985
  22525. }
  22526. },
  22527. frontDressed: {
  22528. height: math.unit(2.3, "m"),
  22529. weight: math.unit(304, "kg"),
  22530. name: "Front (Dressed)",
  22531. image: {
  22532. source: "./media/characters/icowom-lee/front-dressed.svg",
  22533. extra: 3076 / 2933,
  22534. bottom: 51.4 / 3125.1889
  22535. }
  22536. },
  22537. rump: {
  22538. height: math.unit(0.776, "meters"),
  22539. name: "Rump",
  22540. image: {
  22541. source: "./media/characters/icowom-lee/rump.svg"
  22542. }
  22543. },
  22544. genitals: {
  22545. height: math.unit(0.78, "meters"),
  22546. name: "Genitals",
  22547. image: {
  22548. source: "./media/characters/icowom-lee/genitals.svg"
  22549. }
  22550. },
  22551. },
  22552. [
  22553. {
  22554. name: "Normal",
  22555. height: math.unit(2.3, "meters"),
  22556. default: true
  22557. },
  22558. {
  22559. name: "Macro",
  22560. height: math.unit(94, "meters"),
  22561. default: true
  22562. },
  22563. ]
  22564. ))
  22565. characterMakers.push(() => makeCharacter(
  22566. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22567. {
  22568. front: {
  22569. height: math.unit(22, "meters"),
  22570. weight: math.unit(21000, "kg"),
  22571. name: "Front",
  22572. image: {
  22573. source: "./media/characters/shock-diamond/front.svg",
  22574. extra: 2204 / 2053,
  22575. bottom: 65 / 2239.47
  22576. }
  22577. },
  22578. frontNude: {
  22579. height: math.unit(22, "meters"),
  22580. weight: math.unit(21000, "kg"),
  22581. name: "Front (Nude)",
  22582. image: {
  22583. source: "./media/characters/shock-diamond/front-nude.svg",
  22584. extra: 2514 / 2285,
  22585. bottom: 13 / 2527.56
  22586. }
  22587. },
  22588. },
  22589. [
  22590. {
  22591. name: "Normal",
  22592. height: math.unit(3, "meters")
  22593. },
  22594. {
  22595. name: "Macro",
  22596. height: math.unit(22, "meters"),
  22597. default: true
  22598. },
  22599. ]
  22600. ))
  22601. characterMakers.push(() => makeCharacter(
  22602. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22603. {
  22604. front: {
  22605. height: math.unit(5 + 4 / 12, "feet"),
  22606. weight: math.unit(120, "lb"),
  22607. name: "Front",
  22608. image: {
  22609. source: "./media/characters/rory/front.svg",
  22610. extra: 1318/1241,
  22611. bottom: 42/1360
  22612. }
  22613. },
  22614. back: {
  22615. height: math.unit(5 + 4 / 12, "feet"),
  22616. weight: math.unit(120, "lb"),
  22617. name: "Back",
  22618. image: {
  22619. source: "./media/characters/rory/back.svg",
  22620. extra: 1318/1241,
  22621. bottom: 42/1360
  22622. }
  22623. },
  22624. butt: {
  22625. height: math.unit(1.74, "feet"),
  22626. name: "Butt",
  22627. image: {
  22628. source: "./media/characters/rory/butt.svg"
  22629. }
  22630. },
  22631. dick: {
  22632. height: math.unit(1.02, "feet"),
  22633. name: "Dick",
  22634. image: {
  22635. source: "./media/characters/rory/dick.svg"
  22636. }
  22637. },
  22638. paws: {
  22639. height: math.unit(1, "feet"),
  22640. name: "Paws",
  22641. image: {
  22642. source: "./media/characters/rory/paws.svg"
  22643. }
  22644. },
  22645. frontAlt: {
  22646. height: math.unit(5 + 4 / 12, "feet"),
  22647. weight: math.unit(120, "lb"),
  22648. name: "Front (Alt)",
  22649. image: {
  22650. source: "./media/characters/rory/front-alt.svg",
  22651. extra: 589 / 556,
  22652. bottom: 45.7 / 635.76
  22653. }
  22654. },
  22655. frontAltNude: {
  22656. height: math.unit(5 + 4 / 12, "feet"),
  22657. weight: math.unit(120, "lb"),
  22658. name: "Front (Alt, Nude)",
  22659. image: {
  22660. source: "./media/characters/rory/front-alt-nude.svg",
  22661. extra: 589 / 556,
  22662. bottom: 45.7 / 635.76
  22663. }
  22664. },
  22665. side: {
  22666. height: math.unit(5 + 4 / 12, "feet"),
  22667. weight: math.unit(120, "lb"),
  22668. name: "Side",
  22669. image: {
  22670. source: "./media/characters/rory/side.svg",
  22671. extra: 597 / 564,
  22672. bottom: 55 / 653
  22673. }
  22674. },
  22675. backAlt: {
  22676. height: math.unit(5 + 4 / 12, "feet"),
  22677. weight: math.unit(120, "lb"),
  22678. name: "Back (Alt)",
  22679. image: {
  22680. source: "./media/characters/rory/back-alt.svg",
  22681. extra: 620 / 585,
  22682. bottom: 8.86 / 630.43
  22683. }
  22684. },
  22685. dickAlt: {
  22686. height: math.unit(0.86, "feet"),
  22687. name: "Dick (Alt)",
  22688. image: {
  22689. source: "./media/characters/rory/dick-alt.svg"
  22690. }
  22691. },
  22692. },
  22693. [
  22694. {
  22695. name: "Normal",
  22696. height: math.unit(5 + 4 / 12, "feet"),
  22697. default: true
  22698. },
  22699. {
  22700. name: "Macro",
  22701. height: math.unit(100, "feet")
  22702. },
  22703. {
  22704. name: "Macro+",
  22705. height: math.unit(140, "feet")
  22706. },
  22707. {
  22708. name: "Macro++",
  22709. height: math.unit(300, "feet")
  22710. },
  22711. ]
  22712. ))
  22713. characterMakers.push(() => makeCharacter(
  22714. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22715. {
  22716. front: {
  22717. height: math.unit(5 + 9 / 12, "feet"),
  22718. weight: math.unit(190, "lb"),
  22719. name: "Front",
  22720. image: {
  22721. source: "./media/characters/sprisk/front.svg",
  22722. extra: 1225 / 1180,
  22723. bottom: 42.7 / 1266.4
  22724. }
  22725. },
  22726. frontNsfw: {
  22727. height: math.unit(5 + 9 / 12, "feet"),
  22728. weight: math.unit(190, "lb"),
  22729. name: "Front (NSFW)",
  22730. image: {
  22731. source: "./media/characters/sprisk/front-nsfw.svg",
  22732. extra: 1225 / 1180,
  22733. bottom: 42.7 / 1266.4
  22734. }
  22735. },
  22736. back: {
  22737. height: math.unit(5 + 9 / 12, "feet"),
  22738. weight: math.unit(190, "lb"),
  22739. name: "Back",
  22740. image: {
  22741. source: "./media/characters/sprisk/back.svg",
  22742. extra: 1247 / 1200,
  22743. bottom: 5.6 / 1253.04
  22744. }
  22745. },
  22746. },
  22747. [
  22748. {
  22749. name: "Tiny",
  22750. height: math.unit(2, "inches")
  22751. },
  22752. {
  22753. name: "Normal",
  22754. height: math.unit(5 + 9 / 12, "feet"),
  22755. default: true
  22756. },
  22757. {
  22758. name: "Mini Macro",
  22759. height: math.unit(18, "feet")
  22760. },
  22761. {
  22762. name: "Macro",
  22763. height: math.unit(100, "feet")
  22764. },
  22765. {
  22766. name: "MACRO",
  22767. height: math.unit(50, "miles")
  22768. },
  22769. {
  22770. name: "M A C R O",
  22771. height: math.unit(300, "miles")
  22772. },
  22773. ]
  22774. ))
  22775. characterMakers.push(() => makeCharacter(
  22776. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22777. {
  22778. side: {
  22779. height: math.unit(15.6, "meters"),
  22780. weight: math.unit(700000, "kg"),
  22781. name: "Side",
  22782. image: {
  22783. source: "./media/characters/bunsen/side.svg",
  22784. extra: 1644 / 358
  22785. }
  22786. },
  22787. foot: {
  22788. height: math.unit(1.611 * 1644 / 358, "meter"),
  22789. name: "Foot",
  22790. image: {
  22791. source: "./media/characters/bunsen/foot.svg"
  22792. }
  22793. },
  22794. },
  22795. [
  22796. {
  22797. name: "Small",
  22798. height: math.unit(10, "feet")
  22799. },
  22800. {
  22801. name: "Normal",
  22802. height: math.unit(15.6, "meters"),
  22803. default: true
  22804. },
  22805. ]
  22806. ))
  22807. characterMakers.push(() => makeCharacter(
  22808. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22809. {
  22810. front: {
  22811. height: math.unit(4 + 11 / 12, "feet"),
  22812. weight: math.unit(140, "lb"),
  22813. name: "Front",
  22814. image: {
  22815. source: "./media/characters/sesh/front.svg",
  22816. extra: 3420 / 3231,
  22817. bottom: 72 / 3949.5
  22818. }
  22819. },
  22820. },
  22821. [
  22822. {
  22823. name: "Normal",
  22824. height: math.unit(4 + 11 / 12, "feet")
  22825. },
  22826. {
  22827. name: "Grown",
  22828. height: math.unit(15, "feet"),
  22829. default: true
  22830. },
  22831. {
  22832. name: "Macro",
  22833. height: math.unit(1500, "feet")
  22834. },
  22835. {
  22836. name: "Megamacro",
  22837. height: math.unit(30, "miles")
  22838. },
  22839. {
  22840. name: "Continental",
  22841. height: math.unit(3000, "miles")
  22842. },
  22843. {
  22844. name: "Gravity Mass",
  22845. height: math.unit(300000, "miles")
  22846. },
  22847. {
  22848. name: "Planet Buster",
  22849. height: math.unit(30000000, "miles")
  22850. },
  22851. {
  22852. name: "Big",
  22853. height: math.unit(3000000000, "miles")
  22854. },
  22855. ]
  22856. ))
  22857. characterMakers.push(() => makeCharacter(
  22858. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22859. {
  22860. front: {
  22861. height: math.unit(9, "feet"),
  22862. weight: math.unit(350, "lb"),
  22863. name: "Front",
  22864. image: {
  22865. source: "./media/characters/pepper/front.svg",
  22866. extra: 1448 / 1312,
  22867. bottom: 9.4 / 1457.88
  22868. }
  22869. },
  22870. back: {
  22871. height: math.unit(9, "feet"),
  22872. weight: math.unit(350, "lb"),
  22873. name: "Back",
  22874. image: {
  22875. source: "./media/characters/pepper/back.svg",
  22876. extra: 1423 / 1300,
  22877. bottom: 4.6 / 1429
  22878. }
  22879. },
  22880. maw: {
  22881. height: math.unit(0.932, "feet"),
  22882. name: "Maw",
  22883. image: {
  22884. source: "./media/characters/pepper/maw.svg"
  22885. }
  22886. },
  22887. },
  22888. [
  22889. {
  22890. name: "Normal",
  22891. height: math.unit(9, "feet"),
  22892. default: true
  22893. },
  22894. ]
  22895. ))
  22896. characterMakers.push(() => makeCharacter(
  22897. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22898. {
  22899. front: {
  22900. height: math.unit(6, "feet"),
  22901. weight: math.unit(150, "lb"),
  22902. name: "Front",
  22903. image: {
  22904. source: "./media/characters/maelstrom/front.svg",
  22905. extra: 2100 / 1883,
  22906. bottom: 94 / 2196.7
  22907. }
  22908. },
  22909. },
  22910. [
  22911. {
  22912. name: "Less Kaiju",
  22913. height: math.unit(200, "feet")
  22914. },
  22915. {
  22916. name: "Kaiju",
  22917. height: math.unit(400, "feet"),
  22918. default: true
  22919. },
  22920. {
  22921. name: "Kaiju-er",
  22922. height: math.unit(600, "feet")
  22923. },
  22924. ]
  22925. ))
  22926. characterMakers.push(() => makeCharacter(
  22927. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22928. {
  22929. front: {
  22930. height: math.unit(6 + 5 / 12, "feet"),
  22931. weight: math.unit(180, "lb"),
  22932. name: "Front",
  22933. image: {
  22934. source: "./media/characters/lexir/front.svg",
  22935. extra: 180 / 172,
  22936. bottom: 12 / 192
  22937. }
  22938. },
  22939. back: {
  22940. height: math.unit(6 + 5 / 12, "feet"),
  22941. weight: math.unit(180, "lb"),
  22942. name: "Back",
  22943. image: {
  22944. source: "./media/characters/lexir/back.svg",
  22945. extra: 183.84 / 175.5,
  22946. bottom: 3.1 / 187
  22947. }
  22948. },
  22949. },
  22950. [
  22951. {
  22952. name: "Very Smal",
  22953. height: math.unit(1, "nm")
  22954. },
  22955. {
  22956. name: "Normal",
  22957. height: math.unit(6 + 5 / 12, "feet"),
  22958. default: true
  22959. },
  22960. {
  22961. name: "Macro",
  22962. height: math.unit(1, "mile")
  22963. },
  22964. {
  22965. name: "Megamacro",
  22966. height: math.unit(50, "miles")
  22967. },
  22968. ]
  22969. ))
  22970. characterMakers.push(() => makeCharacter(
  22971. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22972. {
  22973. front: {
  22974. height: math.unit(1.5, "meters"),
  22975. weight: math.unit(100, "lb"),
  22976. name: "Front",
  22977. image: {
  22978. source: "./media/characters/maksio/front.svg",
  22979. extra: 1549 / 1531,
  22980. bottom: 123.7 / 1674.5429
  22981. }
  22982. },
  22983. back: {
  22984. height: math.unit(1.5, "meters"),
  22985. weight: math.unit(100, "lb"),
  22986. name: "Back",
  22987. image: {
  22988. source: "./media/characters/maksio/back.svg",
  22989. extra: 1541 / 1509,
  22990. bottom: 97 / 1639
  22991. }
  22992. },
  22993. hand: {
  22994. height: math.unit(0.621, "feet"),
  22995. name: "Hand",
  22996. image: {
  22997. source: "./media/characters/maksio/hand.svg"
  22998. }
  22999. },
  23000. foot: {
  23001. height: math.unit(1.611, "feet"),
  23002. name: "Foot",
  23003. image: {
  23004. source: "./media/characters/maksio/foot.svg"
  23005. }
  23006. },
  23007. },
  23008. [
  23009. {
  23010. name: "Shrunken",
  23011. height: math.unit(10, "cm")
  23012. },
  23013. {
  23014. name: "Normal",
  23015. height: math.unit(150, "cm"),
  23016. default: true
  23017. },
  23018. ]
  23019. ))
  23020. characterMakers.push(() => makeCharacter(
  23021. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23022. {
  23023. front: {
  23024. height: math.unit(100, "feet"),
  23025. name: "Front",
  23026. image: {
  23027. source: "./media/characters/erza-bear/front.svg",
  23028. extra: 2449 / 2390,
  23029. bottom: 46 / 2494
  23030. }
  23031. },
  23032. back: {
  23033. height: math.unit(100, "feet"),
  23034. name: "Back",
  23035. image: {
  23036. source: "./media/characters/erza-bear/back.svg",
  23037. extra: 2489 / 2430,
  23038. bottom: 85.4 / 2480
  23039. }
  23040. },
  23041. tail: {
  23042. height: math.unit(42, "feet"),
  23043. name: "Tail",
  23044. image: {
  23045. source: "./media/characters/erza-bear/tail.svg"
  23046. }
  23047. },
  23048. tongue: {
  23049. height: math.unit(8, "feet"),
  23050. name: "Tongue",
  23051. image: {
  23052. source: "./media/characters/erza-bear/tongue.svg"
  23053. }
  23054. },
  23055. dick: {
  23056. height: math.unit(10.5, "feet"),
  23057. name: "Dick",
  23058. image: {
  23059. source: "./media/characters/erza-bear/dick.svg"
  23060. }
  23061. },
  23062. dickVertical: {
  23063. height: math.unit(16.9, "feet"),
  23064. name: "Dick (Vertical)",
  23065. image: {
  23066. source: "./media/characters/erza-bear/dick-vertical.svg"
  23067. }
  23068. },
  23069. },
  23070. [
  23071. {
  23072. name: "Macro",
  23073. height: math.unit(100, "feet"),
  23074. default: true
  23075. },
  23076. ]
  23077. ))
  23078. characterMakers.push(() => makeCharacter(
  23079. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23080. {
  23081. front: {
  23082. height: math.unit(172, "cm"),
  23083. weight: math.unit(73, "kg"),
  23084. name: "Front",
  23085. image: {
  23086. source: "./media/characters/violet-flor/front.svg",
  23087. extra: 1530 / 1442,
  23088. bottom: 61.9 / 1588.8
  23089. }
  23090. },
  23091. back: {
  23092. height: math.unit(180, "cm"),
  23093. weight: math.unit(73, "kg"),
  23094. name: "Back",
  23095. image: {
  23096. source: "./media/characters/violet-flor/back.svg",
  23097. extra: 1692 / 1630,
  23098. bottom: 20 / 1712
  23099. }
  23100. },
  23101. },
  23102. [
  23103. {
  23104. name: "Normal",
  23105. height: math.unit(172, "cm"),
  23106. default: true
  23107. },
  23108. ]
  23109. ))
  23110. characterMakers.push(() => makeCharacter(
  23111. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23112. {
  23113. front: {
  23114. height: math.unit(6, "feet"),
  23115. weight: math.unit(220, "lb"),
  23116. name: "Front",
  23117. image: {
  23118. source: "./media/characters/lynn-rhea/front.svg",
  23119. extra: 310 / 273
  23120. }
  23121. },
  23122. back: {
  23123. height: math.unit(6, "feet"),
  23124. weight: math.unit(220, "lb"),
  23125. name: "Back",
  23126. image: {
  23127. source: "./media/characters/lynn-rhea/back.svg",
  23128. extra: 310 / 273
  23129. }
  23130. },
  23131. dicks: {
  23132. height: math.unit(0.9, "feet"),
  23133. name: "Dicks",
  23134. image: {
  23135. source: "./media/characters/lynn-rhea/dicks.svg"
  23136. }
  23137. },
  23138. slit: {
  23139. height: math.unit(0.4, "feet"),
  23140. name: "Slit",
  23141. image: {
  23142. source: "./media/characters/lynn-rhea/slit.svg"
  23143. }
  23144. },
  23145. },
  23146. [
  23147. {
  23148. name: "Micro",
  23149. height: math.unit(1, "inch")
  23150. },
  23151. {
  23152. name: "Macro",
  23153. height: math.unit(60, "feet"),
  23154. default: true
  23155. },
  23156. {
  23157. name: "Megamacro",
  23158. height: math.unit(2, "miles")
  23159. },
  23160. {
  23161. name: "Gigamacro",
  23162. height: math.unit(3, "earths")
  23163. },
  23164. {
  23165. name: "Galactic",
  23166. height: math.unit(0.8, "galaxies")
  23167. },
  23168. ]
  23169. ))
  23170. characterMakers.push(() => makeCharacter(
  23171. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23172. {
  23173. front: {
  23174. height: math.unit(1600, "feet"),
  23175. weight: math.unit(85758785169, "kg"),
  23176. name: "Front",
  23177. image: {
  23178. source: "./media/characters/valathos/front.svg",
  23179. extra: 1451 / 1339
  23180. }
  23181. },
  23182. },
  23183. [
  23184. {
  23185. name: "Macro",
  23186. height: math.unit(1600, "feet"),
  23187. default: true
  23188. },
  23189. ]
  23190. ))
  23191. characterMakers.push(() => makeCharacter(
  23192. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23193. {
  23194. front: {
  23195. height: math.unit(7 + 5 / 12, "feet"),
  23196. weight: math.unit(300, "lb"),
  23197. name: "Front",
  23198. image: {
  23199. source: "./media/characters/azula/front.svg",
  23200. extra: 3208 / 2880,
  23201. bottom: 80.2 / 3277
  23202. }
  23203. },
  23204. back: {
  23205. height: math.unit(7 + 5 / 12, "feet"),
  23206. weight: math.unit(300, "lb"),
  23207. name: "Back",
  23208. image: {
  23209. source: "./media/characters/azula/back.svg",
  23210. extra: 3169 / 2822,
  23211. bottom: 150.6 / 3321
  23212. }
  23213. },
  23214. },
  23215. [
  23216. {
  23217. name: "Normal",
  23218. height: math.unit(7 + 5 / 12, "feet"),
  23219. default: true
  23220. },
  23221. {
  23222. name: "Big",
  23223. height: math.unit(20, "feet")
  23224. },
  23225. ]
  23226. ))
  23227. characterMakers.push(() => makeCharacter(
  23228. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23229. {
  23230. front: {
  23231. height: math.unit(5 + 1 / 12, "feet"),
  23232. weight: math.unit(110, "lb"),
  23233. name: "Front",
  23234. image: {
  23235. source: "./media/characters/rupert/front.svg",
  23236. extra: 1549 / 1495,
  23237. bottom: 54.2 / 1604.4
  23238. }
  23239. },
  23240. },
  23241. [
  23242. {
  23243. name: "Normal",
  23244. height: math.unit(5 + 1 / 12, "feet"),
  23245. default: true
  23246. },
  23247. ]
  23248. ))
  23249. characterMakers.push(() => makeCharacter(
  23250. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23251. {
  23252. front: {
  23253. height: math.unit(8 + 4 / 12, "feet"),
  23254. weight: math.unit(350, "lb"),
  23255. name: "Front",
  23256. image: {
  23257. source: "./media/characters/sheera-castellar/front.svg",
  23258. extra: 1957 / 1894,
  23259. bottom: 26.97 / 1975.017
  23260. }
  23261. },
  23262. side: {
  23263. height: math.unit(8 + 4 / 12, "feet"),
  23264. weight: math.unit(350, "lb"),
  23265. name: "Side",
  23266. image: {
  23267. source: "./media/characters/sheera-castellar/side.svg",
  23268. extra: 1957 / 1894
  23269. }
  23270. },
  23271. back: {
  23272. height: math.unit(8 + 4 / 12, "feet"),
  23273. weight: math.unit(350, "lb"),
  23274. name: "Back",
  23275. image: {
  23276. source: "./media/characters/sheera-castellar/back.svg",
  23277. extra: 1957 / 1894
  23278. }
  23279. },
  23280. angled: {
  23281. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23282. weight: math.unit(350, "lb"),
  23283. name: "Angled",
  23284. image: {
  23285. source: "./media/characters/sheera-castellar/angled.svg",
  23286. extra: 1807 / 1707,
  23287. bottom: 68 / 1875
  23288. }
  23289. },
  23290. genitals: {
  23291. height: math.unit(2.2, "feet"),
  23292. name: "Genitals",
  23293. image: {
  23294. source: "./media/characters/sheera-castellar/genitals.svg"
  23295. }
  23296. },
  23297. taur: {
  23298. height: math.unit(10 + 6/12, "feet"),
  23299. name: "Taur",
  23300. image: {
  23301. source: "./media/characters/sheera-castellar/taur.svg",
  23302. extra: 2017/1909,
  23303. bottom: 185/2202
  23304. }
  23305. },
  23306. },
  23307. [
  23308. {
  23309. name: "Normal",
  23310. height: math.unit(8 + 4 / 12, "feet")
  23311. },
  23312. {
  23313. name: "Macro",
  23314. height: math.unit(150, "feet"),
  23315. default: true
  23316. },
  23317. {
  23318. name: "Macro+",
  23319. height: math.unit(800, "feet")
  23320. },
  23321. ]
  23322. ))
  23323. characterMakers.push(() => makeCharacter(
  23324. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23325. {
  23326. front: {
  23327. height: math.unit(6, "feet"),
  23328. weight: math.unit(150, "lb"),
  23329. name: "Front",
  23330. image: {
  23331. source: "./media/characters/jaipur/front.svg",
  23332. extra: 3860 / 3731,
  23333. bottom: 287 / 4140
  23334. }
  23335. },
  23336. back: {
  23337. height: math.unit(6, "feet"),
  23338. weight: math.unit(150, "lb"),
  23339. name: "Back",
  23340. image: {
  23341. source: "./media/characters/jaipur/back.svg",
  23342. extra: 4060 / 3930,
  23343. bottom: 151 / 4200
  23344. }
  23345. },
  23346. },
  23347. [
  23348. {
  23349. name: "Normal",
  23350. height: math.unit(1.85, "meters"),
  23351. default: true
  23352. },
  23353. {
  23354. name: "Macro",
  23355. height: math.unit(150, "meters")
  23356. },
  23357. {
  23358. name: "Macro+",
  23359. height: math.unit(0.5, "miles")
  23360. },
  23361. {
  23362. name: "Macro++",
  23363. height: math.unit(2.5, "miles")
  23364. },
  23365. {
  23366. name: "Macro+++",
  23367. height: math.unit(12, "miles")
  23368. },
  23369. {
  23370. name: "Macro++++",
  23371. height: math.unit(120, "miles")
  23372. },
  23373. {
  23374. name: "Macro+++++",
  23375. height: math.unit(1200, "miles")
  23376. },
  23377. ]
  23378. ))
  23379. characterMakers.push(() => makeCharacter(
  23380. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23381. {
  23382. front: {
  23383. height: math.unit(6, "feet"),
  23384. weight: math.unit(150, "lb"),
  23385. name: "Front",
  23386. image: {
  23387. source: "./media/characters/sheila-wolf/front.svg",
  23388. extra: 1931 / 1808,
  23389. bottom: 29.5 / 1960
  23390. }
  23391. },
  23392. dick: {
  23393. height: math.unit(1.464, "feet"),
  23394. name: "Dick",
  23395. image: {
  23396. source: "./media/characters/sheila-wolf/dick.svg"
  23397. }
  23398. },
  23399. muzzle: {
  23400. height: math.unit(0.513, "feet"),
  23401. name: "Muzzle",
  23402. image: {
  23403. source: "./media/characters/sheila-wolf/muzzle.svg"
  23404. }
  23405. },
  23406. },
  23407. [
  23408. {
  23409. name: "Macro",
  23410. height: math.unit(70, "feet"),
  23411. default: true
  23412. },
  23413. ]
  23414. ))
  23415. characterMakers.push(() => makeCharacter(
  23416. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23417. {
  23418. front: {
  23419. height: math.unit(32, "meters"),
  23420. weight: math.unit(300000, "kg"),
  23421. name: "Front",
  23422. image: {
  23423. source: "./media/characters/almor/front.svg",
  23424. extra: 1408 / 1322,
  23425. bottom: 94.6 / 1506.5
  23426. }
  23427. },
  23428. },
  23429. [
  23430. {
  23431. name: "Macro",
  23432. height: math.unit(32, "meters"),
  23433. default: true
  23434. },
  23435. ]
  23436. ))
  23437. characterMakers.push(() => makeCharacter(
  23438. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23439. {
  23440. front: {
  23441. height: math.unit(7, "feet"),
  23442. weight: math.unit(200, "lb"),
  23443. name: "Front",
  23444. image: {
  23445. source: "./media/characters/silver/front.svg",
  23446. extra: 472.1 / 450.5,
  23447. bottom: 26.5 / 499.424
  23448. }
  23449. },
  23450. },
  23451. [
  23452. {
  23453. name: "Normal",
  23454. height: math.unit(7, "feet"),
  23455. default: true
  23456. },
  23457. {
  23458. name: "Macro",
  23459. height: math.unit(800, "feet")
  23460. },
  23461. {
  23462. name: "Megamacro",
  23463. height: math.unit(250, "miles")
  23464. },
  23465. ]
  23466. ))
  23467. characterMakers.push(() => makeCharacter(
  23468. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23469. {
  23470. front: {
  23471. height: math.unit(6, "feet"),
  23472. weight: math.unit(150, "lb"),
  23473. name: "Front",
  23474. image: {
  23475. source: "./media/characters/pliskin/front.svg",
  23476. extra: 1469 / 1359,
  23477. bottom: 70 / 1540
  23478. }
  23479. },
  23480. },
  23481. [
  23482. {
  23483. name: "Micro",
  23484. height: math.unit(3, "inches")
  23485. },
  23486. {
  23487. name: "Normal",
  23488. height: math.unit(5 + 11 / 12, "feet"),
  23489. default: true
  23490. },
  23491. {
  23492. name: "Macro",
  23493. height: math.unit(120, "feet")
  23494. },
  23495. ]
  23496. ))
  23497. characterMakers.push(() => makeCharacter(
  23498. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23499. {
  23500. front: {
  23501. height: math.unit(6, "feet"),
  23502. weight: math.unit(150, "lb"),
  23503. name: "Front",
  23504. image: {
  23505. source: "./media/characters/sammy/front.svg",
  23506. extra: 1193 / 1089,
  23507. bottom: 30.5 / 1226
  23508. }
  23509. },
  23510. },
  23511. [
  23512. {
  23513. name: "Macro",
  23514. height: math.unit(1700, "feet"),
  23515. default: true
  23516. },
  23517. {
  23518. name: "Examacro",
  23519. height: math.unit(2.5e9, "lightyears")
  23520. },
  23521. ]
  23522. ))
  23523. characterMakers.push(() => makeCharacter(
  23524. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23525. {
  23526. front: {
  23527. height: math.unit(21, "meters"),
  23528. weight: math.unit(12, "tonnes"),
  23529. name: "Front",
  23530. image: {
  23531. source: "./media/characters/kuru/front.svg",
  23532. extra: 4301 / 3785,
  23533. bottom: 371.3 / 4691
  23534. }
  23535. },
  23536. },
  23537. [
  23538. {
  23539. name: "Macro",
  23540. height: math.unit(21, "meters"),
  23541. default: true
  23542. },
  23543. ]
  23544. ))
  23545. characterMakers.push(() => makeCharacter(
  23546. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23547. {
  23548. front: {
  23549. height: math.unit(23, "meters"),
  23550. weight: math.unit(12.2, "tonnes"),
  23551. name: "Front",
  23552. image: {
  23553. source: "./media/characters/rakka/front.svg",
  23554. extra: 4670 / 4169,
  23555. bottom: 301 / 4968.7
  23556. }
  23557. },
  23558. },
  23559. [
  23560. {
  23561. name: "Macro",
  23562. height: math.unit(23, "meters"),
  23563. default: true
  23564. },
  23565. ]
  23566. ))
  23567. characterMakers.push(() => makeCharacter(
  23568. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23569. {
  23570. front: {
  23571. height: math.unit(6, "feet"),
  23572. weight: math.unit(150, "lb"),
  23573. name: "Front",
  23574. image: {
  23575. source: "./media/characters/rhys-feline/front.svg",
  23576. extra: 2488 / 2308,
  23577. bottom: 35.67 / 2519.19
  23578. }
  23579. },
  23580. },
  23581. [
  23582. {
  23583. name: "Really Small",
  23584. height: math.unit(1, "nm")
  23585. },
  23586. {
  23587. name: "Micro",
  23588. height: math.unit(4, "inches")
  23589. },
  23590. {
  23591. name: "Normal",
  23592. height: math.unit(4 + 10 / 12, "feet"),
  23593. default: true
  23594. },
  23595. {
  23596. name: "Macro",
  23597. height: math.unit(100, "feet")
  23598. },
  23599. {
  23600. name: "Megamacto",
  23601. height: math.unit(50, "miles")
  23602. },
  23603. ]
  23604. ))
  23605. characterMakers.push(() => makeCharacter(
  23606. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23607. {
  23608. side: {
  23609. height: math.unit(30, "feet"),
  23610. weight: math.unit(35000, "kg"),
  23611. name: "Side",
  23612. image: {
  23613. source: "./media/characters/alydar/side.svg",
  23614. extra: 234 / 222,
  23615. bottom: 6.5 / 241
  23616. }
  23617. },
  23618. front: {
  23619. height: math.unit(30, "feet"),
  23620. weight: math.unit(35000, "kg"),
  23621. name: "Front",
  23622. image: {
  23623. source: "./media/characters/alydar/front.svg",
  23624. extra: 223.37 / 210.2,
  23625. bottom: 22.3 / 246.76
  23626. }
  23627. },
  23628. top: {
  23629. height: math.unit(64.54, "feet"),
  23630. weight: math.unit(35000, "kg"),
  23631. name: "Top",
  23632. image: {
  23633. source: "./media/characters/alydar/top.svg"
  23634. }
  23635. },
  23636. anthro: {
  23637. height: math.unit(30, "feet"),
  23638. weight: math.unit(9000, "kg"),
  23639. name: "Anthro",
  23640. image: {
  23641. source: "./media/characters/alydar/anthro.svg",
  23642. extra: 432 / 421,
  23643. bottom: 7.18 / 440
  23644. }
  23645. },
  23646. maw: {
  23647. height: math.unit(11.693, "feet"),
  23648. name: "Maw",
  23649. image: {
  23650. source: "./media/characters/alydar/maw.svg"
  23651. }
  23652. },
  23653. head: {
  23654. height: math.unit(11.693, "feet"),
  23655. name: "Head",
  23656. image: {
  23657. source: "./media/characters/alydar/head.svg"
  23658. }
  23659. },
  23660. headAlt: {
  23661. height: math.unit(12.861, "feet"),
  23662. name: "Head (Alt)",
  23663. image: {
  23664. source: "./media/characters/alydar/head-alt.svg"
  23665. }
  23666. },
  23667. wing: {
  23668. height: math.unit(20.712, "feet"),
  23669. name: "Wing",
  23670. image: {
  23671. source: "./media/characters/alydar/wing.svg"
  23672. }
  23673. },
  23674. wingFeather: {
  23675. height: math.unit(9.662, "feet"),
  23676. name: "Wing Feather",
  23677. image: {
  23678. source: "./media/characters/alydar/wing-feather.svg"
  23679. }
  23680. },
  23681. countourFeather: {
  23682. height: math.unit(4.154, "feet"),
  23683. name: "Contour Feather",
  23684. image: {
  23685. source: "./media/characters/alydar/contour-feather.svg"
  23686. }
  23687. },
  23688. },
  23689. [
  23690. {
  23691. name: "Diplomatic",
  23692. height: math.unit(13, "feet"),
  23693. default: true
  23694. },
  23695. {
  23696. name: "Small",
  23697. height: math.unit(30, "feet")
  23698. },
  23699. {
  23700. name: "Normal",
  23701. height: math.unit(95, "feet"),
  23702. default: true
  23703. },
  23704. {
  23705. name: "Large",
  23706. height: math.unit(285, "feet")
  23707. },
  23708. {
  23709. name: "Incomprehensible",
  23710. height: math.unit(450, "megameters")
  23711. },
  23712. ]
  23713. ))
  23714. characterMakers.push(() => makeCharacter(
  23715. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23716. {
  23717. side: {
  23718. height: math.unit(11, "feet"),
  23719. weight: math.unit(1750, "kg"),
  23720. name: "Side",
  23721. image: {
  23722. source: "./media/characters/selicia/side.svg",
  23723. extra: 440 / 396,
  23724. bottom: 24.8 / 465.979
  23725. }
  23726. },
  23727. maw: {
  23728. height: math.unit(4.665, "feet"),
  23729. name: "Maw",
  23730. image: {
  23731. source: "./media/characters/selicia/maw.svg"
  23732. }
  23733. },
  23734. },
  23735. [
  23736. {
  23737. name: "Normal",
  23738. height: math.unit(11, "feet"),
  23739. default: true
  23740. },
  23741. ]
  23742. ))
  23743. characterMakers.push(() => makeCharacter(
  23744. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23745. {
  23746. side: {
  23747. height: math.unit(2 + 6 / 12, "feet"),
  23748. weight: math.unit(30, "lb"),
  23749. name: "Side",
  23750. image: {
  23751. source: "./media/characters/layla/side.svg",
  23752. extra: 244 / 188,
  23753. bottom: 18.2 / 262.1
  23754. }
  23755. },
  23756. back: {
  23757. height: math.unit(2 + 6 / 12, "feet"),
  23758. weight: math.unit(30, "lb"),
  23759. name: "Back",
  23760. image: {
  23761. source: "./media/characters/layla/back.svg",
  23762. extra: 308 / 241.5,
  23763. bottom: 8.9 / 316.8
  23764. }
  23765. },
  23766. cumming: {
  23767. height: math.unit(2 + 6 / 12, "feet"),
  23768. weight: math.unit(30, "lb"),
  23769. name: "Cumming",
  23770. image: {
  23771. source: "./media/characters/layla/cumming.svg",
  23772. extra: 342 / 279,
  23773. bottom: 595 / 938
  23774. }
  23775. },
  23776. dickFlaccid: {
  23777. height: math.unit(2.595, "feet"),
  23778. name: "Flaccid Genitals",
  23779. image: {
  23780. source: "./media/characters/layla/dick-flaccid.svg"
  23781. }
  23782. },
  23783. dickErect: {
  23784. height: math.unit(2.359, "feet"),
  23785. name: "Erect Genitals",
  23786. image: {
  23787. source: "./media/characters/layla/dick-erect.svg"
  23788. }
  23789. },
  23790. dragon: {
  23791. height: math.unit(40, "feet"),
  23792. name: "Dragon",
  23793. image: {
  23794. source: "./media/characters/layla/dragon.svg",
  23795. extra: 610/535,
  23796. bottom: 367/977
  23797. }
  23798. },
  23799. taur: {
  23800. height: math.unit(30, "feet"),
  23801. name: "Taur",
  23802. image: {
  23803. source: "./media/characters/layla/taur.svg",
  23804. extra: 1268/1199,
  23805. bottom: 112/1380
  23806. }
  23807. },
  23808. },
  23809. [
  23810. {
  23811. name: "Micro",
  23812. height: math.unit(1, "inch")
  23813. },
  23814. {
  23815. name: "Small",
  23816. height: math.unit(1, "foot")
  23817. },
  23818. {
  23819. name: "Normal",
  23820. height: math.unit(2 + 6 / 12, "feet"),
  23821. default: true
  23822. },
  23823. {
  23824. name: "Macro",
  23825. height: math.unit(200, "feet")
  23826. },
  23827. {
  23828. name: "Megamacro",
  23829. height: math.unit(1000, "miles")
  23830. },
  23831. {
  23832. name: "Planetary",
  23833. height: math.unit(8000, "miles")
  23834. },
  23835. {
  23836. name: "True Layla",
  23837. height: math.unit(200000 * 7, "multiverses")
  23838. },
  23839. ]
  23840. ))
  23841. characterMakers.push(() => makeCharacter(
  23842. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23843. {
  23844. back: {
  23845. height: math.unit(10.5, "feet"),
  23846. weight: math.unit(800, "lb"),
  23847. name: "Back",
  23848. image: {
  23849. source: "./media/characters/knox/back.svg",
  23850. extra: 1486 / 1089,
  23851. bottom: 107 / 1601.4
  23852. }
  23853. },
  23854. side: {
  23855. height: math.unit(10.5, "feet"),
  23856. weight: math.unit(800, "lb"),
  23857. name: "Side",
  23858. image: {
  23859. source: "./media/characters/knox/side.svg",
  23860. extra: 244 / 218,
  23861. bottom: 14 / 260
  23862. }
  23863. },
  23864. },
  23865. [
  23866. {
  23867. name: "Compact",
  23868. height: math.unit(10.5, "feet"),
  23869. default: true
  23870. },
  23871. {
  23872. name: "Dynamax",
  23873. height: math.unit(210, "feet")
  23874. },
  23875. {
  23876. name: "Full Macro",
  23877. height: math.unit(850, "feet")
  23878. },
  23879. ]
  23880. ))
  23881. characterMakers.push(() => makeCharacter(
  23882. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23883. {
  23884. front: {
  23885. height: math.unit(28, "feet"),
  23886. weight: math.unit(10500, "lb"),
  23887. name: "Front",
  23888. image: {
  23889. source: "./media/characters/kayda/front.svg",
  23890. extra: 1536 / 1428,
  23891. bottom: 68.7 / 1603
  23892. }
  23893. },
  23894. back: {
  23895. height: math.unit(28, "feet"),
  23896. weight: math.unit(10500, "lb"),
  23897. name: "Back",
  23898. image: {
  23899. source: "./media/characters/kayda/back.svg",
  23900. extra: 1557 / 1464,
  23901. bottom: 39.5 / 1597.49
  23902. }
  23903. },
  23904. dick: {
  23905. height: math.unit(3.858, "feet"),
  23906. name: "Dick",
  23907. image: {
  23908. source: "./media/characters/kayda/dick.svg"
  23909. }
  23910. },
  23911. },
  23912. [
  23913. {
  23914. name: "Macro",
  23915. height: math.unit(28, "feet"),
  23916. default: true
  23917. },
  23918. ]
  23919. ))
  23920. characterMakers.push(() => makeCharacter(
  23921. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23922. {
  23923. front: {
  23924. height: math.unit(10 + 11 / 12, "feet"),
  23925. weight: math.unit(1400, "lb"),
  23926. name: "Front",
  23927. image: {
  23928. source: "./media/characters/brian/front.svg",
  23929. extra: 737 / 692,
  23930. bottom: 55.4 / 785
  23931. }
  23932. },
  23933. },
  23934. [
  23935. {
  23936. name: "Normal",
  23937. height: math.unit(10 + 11 / 12, "feet"),
  23938. default: true
  23939. },
  23940. ]
  23941. ))
  23942. characterMakers.push(() => makeCharacter(
  23943. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23944. {
  23945. front: {
  23946. height: math.unit(5 + 8 / 12, "feet"),
  23947. weight: math.unit(140, "lb"),
  23948. name: "Front",
  23949. image: {
  23950. source: "./media/characters/khemri/front.svg",
  23951. extra: 4780 / 4059,
  23952. bottom: 80.1 / 4859.25
  23953. }
  23954. },
  23955. },
  23956. [
  23957. {
  23958. name: "Micro",
  23959. height: math.unit(6, "inches")
  23960. },
  23961. {
  23962. name: "Normal",
  23963. height: math.unit(5 + 8 / 12, "feet"),
  23964. default: true
  23965. },
  23966. ]
  23967. ))
  23968. characterMakers.push(() => makeCharacter(
  23969. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23970. {
  23971. front: {
  23972. height: math.unit(13, "feet"),
  23973. weight: math.unit(1700, "lb"),
  23974. name: "Front",
  23975. image: {
  23976. source: "./media/characters/felix-braveheart/front.svg",
  23977. extra: 1222 / 1157,
  23978. bottom: 53.2 / 1280
  23979. }
  23980. },
  23981. back: {
  23982. height: math.unit(13, "feet"),
  23983. weight: math.unit(1700, "lb"),
  23984. name: "Back",
  23985. image: {
  23986. source: "./media/characters/felix-braveheart/back.svg",
  23987. extra: 1277 / 1203,
  23988. bottom: 50.2 / 1327
  23989. }
  23990. },
  23991. feral: {
  23992. height: math.unit(6, "feet"),
  23993. weight: math.unit(400, "lb"),
  23994. name: "Feral",
  23995. image: {
  23996. source: "./media/characters/felix-braveheart/feral.svg",
  23997. extra: 682 / 625,
  23998. bottom: 6.9 / 688
  23999. }
  24000. },
  24001. },
  24002. [
  24003. {
  24004. name: "Normal",
  24005. height: math.unit(13, "feet"),
  24006. default: true
  24007. },
  24008. ]
  24009. ))
  24010. characterMakers.push(() => makeCharacter(
  24011. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24012. {
  24013. side: {
  24014. height: math.unit(5 + 11 / 12, "feet"),
  24015. weight: math.unit(1400, "lb"),
  24016. name: "Side",
  24017. image: {
  24018. source: "./media/characters/shadow-blade/side.svg",
  24019. extra: 1726 / 1267,
  24020. bottom: 58.4 / 1785
  24021. }
  24022. },
  24023. },
  24024. [
  24025. {
  24026. name: "Normal",
  24027. height: math.unit(5 + 11 / 12, "feet"),
  24028. default: true
  24029. },
  24030. ]
  24031. ))
  24032. characterMakers.push(() => makeCharacter(
  24033. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24034. {
  24035. front: {
  24036. height: math.unit(1 + 6 / 12, "feet"),
  24037. weight: math.unit(25, "lb"),
  24038. name: "Front",
  24039. image: {
  24040. source: "./media/characters/karla-halldor/front.svg",
  24041. extra: 1459 / 1383,
  24042. bottom: 12 / 1472
  24043. }
  24044. },
  24045. },
  24046. [
  24047. {
  24048. name: "Normal",
  24049. height: math.unit(1 + 6 / 12, "feet"),
  24050. default: true
  24051. },
  24052. ]
  24053. ))
  24054. characterMakers.push(() => makeCharacter(
  24055. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24056. {
  24057. front: {
  24058. height: math.unit(6 + 2 / 12, "feet"),
  24059. weight: math.unit(160, "lb"),
  24060. name: "Front",
  24061. image: {
  24062. source: "./media/characters/ariam/front.svg",
  24063. extra: 1073/976,
  24064. bottom: 52/1125
  24065. }
  24066. },
  24067. back: {
  24068. height: math.unit(6 + 2/12, "feet"),
  24069. weight: math.unit(160, "lb"),
  24070. name: "Back",
  24071. image: {
  24072. source: "./media/characters/ariam/back.svg",
  24073. extra: 1103/1023,
  24074. bottom: 9/1112
  24075. }
  24076. },
  24077. dressed: {
  24078. height: math.unit(6 + 2/12, "feet"),
  24079. weight: math.unit(160, "lb"),
  24080. name: "Dressed",
  24081. image: {
  24082. source: "./media/characters/ariam/dressed.svg",
  24083. extra: 1099/1009,
  24084. bottom: 25/1124
  24085. }
  24086. },
  24087. squatting: {
  24088. height: math.unit(4.1, "feet"),
  24089. weight: math.unit(160, "lb"),
  24090. name: "Squatting",
  24091. image: {
  24092. source: "./media/characters/ariam/squatting.svg",
  24093. extra: 2617 / 2112,
  24094. bottom: 61.2 / 2681,
  24095. }
  24096. },
  24097. },
  24098. [
  24099. {
  24100. name: "Normal",
  24101. height: math.unit(6 + 2 / 12, "feet"),
  24102. default: true
  24103. },
  24104. {
  24105. name: "Normal+",
  24106. height: math.unit(4, "meters")
  24107. },
  24108. {
  24109. name: "Macro",
  24110. height: math.unit(50, "meters")
  24111. },
  24112. {
  24113. name: "Macro+",
  24114. height: math.unit(100, "meters")
  24115. },
  24116. {
  24117. name: "Megamacro",
  24118. height: math.unit(20, "km")
  24119. },
  24120. {
  24121. name: "Caretaker",
  24122. height: math.unit(444, "megameters")
  24123. },
  24124. ]
  24125. ))
  24126. characterMakers.push(() => makeCharacter(
  24127. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24128. {
  24129. front: {
  24130. height: math.unit(1.67, "meters"),
  24131. weight: math.unit(140, "lb"),
  24132. name: "Front",
  24133. image: {
  24134. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24135. extra: 438 / 410,
  24136. bottom: 0.75 / 439
  24137. }
  24138. },
  24139. },
  24140. [
  24141. {
  24142. name: "Shrunken",
  24143. height: math.unit(7.6, "cm")
  24144. },
  24145. {
  24146. name: "Human Scale",
  24147. height: math.unit(1.67, "meters")
  24148. },
  24149. {
  24150. name: "Wolxi Scale",
  24151. height: math.unit(36.7, "meters"),
  24152. default: true
  24153. },
  24154. ]
  24155. ))
  24156. characterMakers.push(() => makeCharacter(
  24157. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24158. {
  24159. front: {
  24160. height: math.unit(1.73, "meters"),
  24161. weight: math.unit(240, "lb"),
  24162. name: "Front",
  24163. image: {
  24164. source: "./media/characters/izue-two-mothers/front.svg",
  24165. extra: 469 / 437,
  24166. bottom: 1.24 / 470.6
  24167. }
  24168. },
  24169. },
  24170. [
  24171. {
  24172. name: "Shrunken",
  24173. height: math.unit(7.86, "cm")
  24174. },
  24175. {
  24176. name: "Human Scale",
  24177. height: math.unit(1.73, "meters")
  24178. },
  24179. {
  24180. name: "Wolxi Scale",
  24181. height: math.unit(38, "meters"),
  24182. default: true
  24183. },
  24184. ]
  24185. ))
  24186. characterMakers.push(() => makeCharacter(
  24187. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24188. {
  24189. front: {
  24190. height: math.unit(1.55, "meters"),
  24191. weight: math.unit(120, "lb"),
  24192. name: "Front",
  24193. image: {
  24194. source: "./media/characters/teeku-love-shack/front.svg",
  24195. extra: 387 / 362,
  24196. bottom: 1.51 / 388
  24197. }
  24198. },
  24199. },
  24200. [
  24201. {
  24202. name: "Shrunken",
  24203. height: math.unit(7, "cm")
  24204. },
  24205. {
  24206. name: "Human Scale",
  24207. height: math.unit(1.55, "meters")
  24208. },
  24209. {
  24210. name: "Wolxi Scale",
  24211. height: math.unit(34.1, "meters"),
  24212. default: true
  24213. },
  24214. ]
  24215. ))
  24216. characterMakers.push(() => makeCharacter(
  24217. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24218. {
  24219. front: {
  24220. height: math.unit(1.83, "meters"),
  24221. weight: math.unit(135, "lb"),
  24222. name: "Front",
  24223. image: {
  24224. source: "./media/characters/dejma-the-red/front.svg",
  24225. extra: 480 / 458,
  24226. bottom: 1.8 / 482
  24227. }
  24228. },
  24229. },
  24230. [
  24231. {
  24232. name: "Shrunken",
  24233. height: math.unit(8.3, "cm")
  24234. },
  24235. {
  24236. name: "Human Scale",
  24237. height: math.unit(1.83, "meters")
  24238. },
  24239. {
  24240. name: "Wolxi Scale",
  24241. height: math.unit(40, "meters"),
  24242. default: true
  24243. },
  24244. ]
  24245. ))
  24246. characterMakers.push(() => makeCharacter(
  24247. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24248. {
  24249. front: {
  24250. height: math.unit(1.78, "meters"),
  24251. weight: math.unit(65, "kg"),
  24252. name: "Front",
  24253. image: {
  24254. source: "./media/characters/aki/front.svg",
  24255. extra: 452 / 415
  24256. }
  24257. },
  24258. frontNsfw: {
  24259. height: math.unit(1.78, "meters"),
  24260. weight: math.unit(65, "kg"),
  24261. name: "Front (NSFW)",
  24262. image: {
  24263. source: "./media/characters/aki/front-nsfw.svg",
  24264. extra: 452 / 415
  24265. }
  24266. },
  24267. back: {
  24268. height: math.unit(1.78, "meters"),
  24269. weight: math.unit(65, "kg"),
  24270. name: "Back",
  24271. image: {
  24272. source: "./media/characters/aki/back.svg",
  24273. extra: 452 / 415
  24274. }
  24275. },
  24276. rump: {
  24277. height: math.unit(2.05, "feet"),
  24278. name: "Rump",
  24279. image: {
  24280. source: "./media/characters/aki/rump.svg"
  24281. }
  24282. },
  24283. dick: {
  24284. height: math.unit(0.95, "feet"),
  24285. name: "Dick",
  24286. image: {
  24287. source: "./media/characters/aki/dick.svg"
  24288. }
  24289. },
  24290. },
  24291. [
  24292. {
  24293. name: "Micro",
  24294. height: math.unit(15, "cm")
  24295. },
  24296. {
  24297. name: "Normal",
  24298. height: math.unit(178, "cm"),
  24299. default: true
  24300. },
  24301. {
  24302. name: "Macro",
  24303. height: math.unit(214, "m")
  24304. },
  24305. {
  24306. name: "Macro+",
  24307. height: math.unit(534, "m")
  24308. },
  24309. ]
  24310. ))
  24311. characterMakers.push(() => makeCharacter(
  24312. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24313. {
  24314. front: {
  24315. height: math.unit(5 + 5 / 12, "feet"),
  24316. weight: math.unit(120, "lb"),
  24317. name: "Front",
  24318. image: {
  24319. source: "./media/characters/ari/front.svg",
  24320. extra: 714.5 / 682,
  24321. bottom: 8 / 722.5
  24322. }
  24323. },
  24324. },
  24325. [
  24326. {
  24327. name: "Normal",
  24328. height: math.unit(5 + 5 / 12, "feet")
  24329. },
  24330. {
  24331. name: "Macro",
  24332. height: math.unit(100, "feet"),
  24333. default: true
  24334. },
  24335. {
  24336. name: "Megamacro",
  24337. height: math.unit(100, "miles")
  24338. },
  24339. {
  24340. name: "Gigamacro",
  24341. height: math.unit(80000, "miles")
  24342. },
  24343. ]
  24344. ))
  24345. characterMakers.push(() => makeCharacter(
  24346. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24347. {
  24348. side: {
  24349. height: math.unit(9, "feet"),
  24350. weight: math.unit(400, "kg"),
  24351. name: "Side",
  24352. image: {
  24353. source: "./media/characters/bolt/side.svg",
  24354. extra: 1126 / 896,
  24355. bottom: 60 / 1187.3,
  24356. }
  24357. },
  24358. },
  24359. [
  24360. {
  24361. name: "Micro",
  24362. height: math.unit(5, "inches")
  24363. },
  24364. {
  24365. name: "Normal",
  24366. height: math.unit(9, "feet"),
  24367. default: true
  24368. },
  24369. {
  24370. name: "Macro",
  24371. height: math.unit(700, "feet")
  24372. },
  24373. {
  24374. name: "Max Size",
  24375. height: math.unit(1.52e22, "yottameters")
  24376. },
  24377. ]
  24378. ))
  24379. characterMakers.push(() => makeCharacter(
  24380. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24381. {
  24382. front: {
  24383. height: math.unit(4.53, "meters"),
  24384. weight: math.unit(3, "tons"),
  24385. name: "Front",
  24386. image: {
  24387. source: "./media/characters/draekon-sylviar/front.svg",
  24388. extra: 1228 / 1068,
  24389. bottom: 41 / 1270
  24390. }
  24391. },
  24392. tail: {
  24393. height: math.unit(1.772, "meter"),
  24394. name: "Tail",
  24395. image: {
  24396. source: "./media/characters/draekon-sylviar/tail.svg"
  24397. }
  24398. },
  24399. head: {
  24400. height: math.unit(1.331, "meter"),
  24401. name: "Head",
  24402. image: {
  24403. source: "./media/characters/draekon-sylviar/head.svg"
  24404. }
  24405. },
  24406. hand: {
  24407. height: math.unit(0.564, "meter"),
  24408. name: "Hand",
  24409. image: {
  24410. source: "./media/characters/draekon-sylviar/hand.svg"
  24411. }
  24412. },
  24413. foot: {
  24414. height: math.unit(0.621, "meter"),
  24415. name: "Foot",
  24416. image: {
  24417. source: "./media/characters/draekon-sylviar/foot.svg",
  24418. bottom: 32 / 324
  24419. }
  24420. },
  24421. dick: {
  24422. height: math.unit(61, "cm"),
  24423. name: "Dick",
  24424. image: {
  24425. source: "./media/characters/draekon-sylviar/dick.svg"
  24426. }
  24427. },
  24428. dickseparated: {
  24429. height: math.unit(61, "cm"),
  24430. name: "Dick-separated",
  24431. image: {
  24432. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24433. }
  24434. },
  24435. },
  24436. [
  24437. {
  24438. name: "Small",
  24439. height: math.unit(4.53 / 2, "meters"),
  24440. default: true
  24441. },
  24442. {
  24443. name: "Normal",
  24444. height: math.unit(4.53, "meters"),
  24445. default: true
  24446. },
  24447. {
  24448. name: "Large",
  24449. height: math.unit(4.53 * 2, "meters"),
  24450. },
  24451. ]
  24452. ))
  24453. characterMakers.push(() => makeCharacter(
  24454. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24455. {
  24456. front: {
  24457. height: math.unit(6 + 2 / 12, "feet"),
  24458. weight: math.unit(180, "lb"),
  24459. name: "Front",
  24460. image: {
  24461. source: "./media/characters/brawler/front.svg",
  24462. extra: 3301 / 3027,
  24463. bottom: 138 / 3439
  24464. }
  24465. },
  24466. },
  24467. [
  24468. {
  24469. name: "Normal",
  24470. height: math.unit(6 + 2 / 12, "feet"),
  24471. default: true
  24472. },
  24473. ]
  24474. ))
  24475. characterMakers.push(() => makeCharacter(
  24476. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24477. {
  24478. front: {
  24479. height: math.unit(11, "feet"),
  24480. weight: math.unit(1000, "lb"),
  24481. name: "Front",
  24482. image: {
  24483. source: "./media/characters/alex/front.svg",
  24484. bottom: 44.5 / 620
  24485. }
  24486. },
  24487. },
  24488. [
  24489. {
  24490. name: "Micro",
  24491. height: math.unit(5, "inches")
  24492. },
  24493. {
  24494. name: "Normal",
  24495. height: math.unit(11, "feet"),
  24496. default: true
  24497. },
  24498. {
  24499. name: "Macro",
  24500. height: math.unit(9.5e9, "feet")
  24501. },
  24502. {
  24503. name: "Max Size",
  24504. height: math.unit(1.4e283, "yottameters")
  24505. },
  24506. ]
  24507. ))
  24508. characterMakers.push(() => makeCharacter(
  24509. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24510. {
  24511. female: {
  24512. height: math.unit(29.9, "m"),
  24513. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24514. name: "Female",
  24515. image: {
  24516. source: "./media/characters/zenari/female.svg",
  24517. extra: 3281.6 / 3217,
  24518. bottom: 72.2 / 3353
  24519. }
  24520. },
  24521. male: {
  24522. height: math.unit(27.7, "m"),
  24523. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24524. name: "Male",
  24525. image: {
  24526. source: "./media/characters/zenari/male.svg",
  24527. extra: 3008 / 2991,
  24528. bottom: 54.6 / 3069
  24529. }
  24530. },
  24531. },
  24532. [
  24533. {
  24534. name: "Macro",
  24535. height: math.unit(29.7, "meters"),
  24536. default: true
  24537. },
  24538. ]
  24539. ))
  24540. characterMakers.push(() => makeCharacter(
  24541. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24542. {
  24543. female: {
  24544. height: math.unit(23.8, "m"),
  24545. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24546. name: "Female",
  24547. image: {
  24548. source: "./media/characters/mactarian/female.svg",
  24549. extra: 2662 / 2569,
  24550. bottom: 73 / 2736
  24551. }
  24552. },
  24553. male: {
  24554. height: math.unit(23.8, "m"),
  24555. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24556. name: "Male",
  24557. image: {
  24558. source: "./media/characters/mactarian/male.svg",
  24559. extra: 2673 / 2600,
  24560. bottom: 76 / 2750
  24561. }
  24562. },
  24563. },
  24564. [
  24565. {
  24566. name: "Macro",
  24567. height: math.unit(23.8, "meters"),
  24568. default: true
  24569. },
  24570. ]
  24571. ))
  24572. characterMakers.push(() => makeCharacter(
  24573. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24574. {
  24575. female: {
  24576. height: math.unit(19.3, "m"),
  24577. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24578. name: "Female",
  24579. image: {
  24580. source: "./media/characters/umok/female.svg",
  24581. extra: 2186 / 2078,
  24582. bottom: 87 / 2277
  24583. }
  24584. },
  24585. male: {
  24586. height: math.unit(19.5, "m"),
  24587. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24588. name: "Male",
  24589. image: {
  24590. source: "./media/characters/umok/male.svg",
  24591. extra: 2233 / 2140,
  24592. bottom: 24.4 / 2258
  24593. }
  24594. },
  24595. },
  24596. [
  24597. {
  24598. name: "Macro",
  24599. height: math.unit(19.3, "meters"),
  24600. default: true
  24601. },
  24602. ]
  24603. ))
  24604. characterMakers.push(() => makeCharacter(
  24605. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24606. {
  24607. female: {
  24608. height: math.unit(26.15, "m"),
  24609. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24610. name: "Female",
  24611. image: {
  24612. source: "./media/characters/joraxian/female.svg",
  24613. extra: 2912 / 2824,
  24614. bottom: 36 / 2956
  24615. }
  24616. },
  24617. male: {
  24618. height: math.unit(25.4, "m"),
  24619. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24620. name: "Male",
  24621. image: {
  24622. source: "./media/characters/joraxian/male.svg",
  24623. extra: 2877 / 2721,
  24624. bottom: 82 / 2967
  24625. }
  24626. },
  24627. },
  24628. [
  24629. {
  24630. name: "Macro",
  24631. height: math.unit(26.15, "meters"),
  24632. default: true
  24633. },
  24634. ]
  24635. ))
  24636. characterMakers.push(() => makeCharacter(
  24637. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24638. {
  24639. female: {
  24640. height: math.unit(21.6, "m"),
  24641. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24642. name: "Female",
  24643. image: {
  24644. source: "./media/characters/sthara/female.svg",
  24645. extra: 2516 / 2347,
  24646. bottom: 21.5 / 2537
  24647. }
  24648. },
  24649. male: {
  24650. height: math.unit(24, "m"),
  24651. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24652. name: "Male",
  24653. image: {
  24654. source: "./media/characters/sthara/male.svg",
  24655. extra: 2732 / 2607,
  24656. bottom: 23 / 2732
  24657. }
  24658. },
  24659. },
  24660. [
  24661. {
  24662. name: "Macro",
  24663. height: math.unit(21.6, "meters"),
  24664. default: true
  24665. },
  24666. ]
  24667. ))
  24668. characterMakers.push(() => makeCharacter(
  24669. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24670. {
  24671. front: {
  24672. height: math.unit(6 + 4 / 12, "feet"),
  24673. weight: math.unit(175, "lb"),
  24674. name: "Front",
  24675. image: {
  24676. source: "./media/characters/luka-bryzant/front.svg",
  24677. extra: 311 / 289,
  24678. bottom: 4 / 315
  24679. }
  24680. },
  24681. back: {
  24682. height: math.unit(6 + 4 / 12, "feet"),
  24683. weight: math.unit(175, "lb"),
  24684. name: "Back",
  24685. image: {
  24686. source: "./media/characters/luka-bryzant/back.svg",
  24687. extra: 311 / 289,
  24688. bottom: 3.8 / 313.7
  24689. }
  24690. },
  24691. },
  24692. [
  24693. {
  24694. name: "Micro",
  24695. height: math.unit(10, "inches")
  24696. },
  24697. {
  24698. name: "Normal",
  24699. height: math.unit(6 + 4 / 12, "feet"),
  24700. default: true
  24701. },
  24702. {
  24703. name: "Large",
  24704. height: math.unit(12, "feet")
  24705. },
  24706. ]
  24707. ))
  24708. characterMakers.push(() => makeCharacter(
  24709. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24710. {
  24711. front: {
  24712. height: math.unit(5 + 7 / 12, "feet"),
  24713. weight: math.unit(185, "lb"),
  24714. name: "Front",
  24715. image: {
  24716. source: "./media/characters/aman-aquila/front.svg",
  24717. extra: 1013 / 976,
  24718. bottom: 45.6 / 1057
  24719. }
  24720. },
  24721. side: {
  24722. height: math.unit(5 + 7 / 12, "feet"),
  24723. weight: math.unit(185, "lb"),
  24724. name: "Side",
  24725. image: {
  24726. source: "./media/characters/aman-aquila/side.svg",
  24727. extra: 1054 / 1011,
  24728. bottom: 15 / 1070
  24729. }
  24730. },
  24731. back: {
  24732. height: math.unit(5 + 7 / 12, "feet"),
  24733. weight: math.unit(185, "lb"),
  24734. name: "Back",
  24735. image: {
  24736. source: "./media/characters/aman-aquila/back.svg",
  24737. extra: 1026 / 970,
  24738. bottom: 12 / 1039
  24739. }
  24740. },
  24741. head: {
  24742. height: math.unit(1.211, "feet"),
  24743. name: "Head",
  24744. image: {
  24745. source: "./media/characters/aman-aquila/head.svg",
  24746. }
  24747. },
  24748. },
  24749. [
  24750. {
  24751. name: "Minimicro",
  24752. height: math.unit(0.057, "inches")
  24753. },
  24754. {
  24755. name: "Micro",
  24756. height: math.unit(7, "inches")
  24757. },
  24758. {
  24759. name: "Mini",
  24760. height: math.unit(3 + 7 / 12, "feet")
  24761. },
  24762. {
  24763. name: "Normal",
  24764. height: math.unit(5 + 7 / 12, "feet"),
  24765. default: true
  24766. },
  24767. {
  24768. name: "Macro",
  24769. height: math.unit(157 + 7 / 12, "feet")
  24770. },
  24771. {
  24772. name: "Megamacro",
  24773. height: math.unit(1557 + 7 / 12, "feet")
  24774. },
  24775. {
  24776. name: "Gigamacro",
  24777. height: math.unit(15557 + 7 / 12, "feet")
  24778. },
  24779. ]
  24780. ))
  24781. characterMakers.push(() => makeCharacter(
  24782. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24783. {
  24784. front: {
  24785. height: math.unit(3 + 2 / 12, "inches"),
  24786. weight: math.unit(0.3, "ounces"),
  24787. name: "Front",
  24788. image: {
  24789. source: "./media/characters/hiphae/front.svg",
  24790. extra: 1931 / 1683,
  24791. bottom: 24 / 1955
  24792. }
  24793. },
  24794. },
  24795. [
  24796. {
  24797. name: "Normal",
  24798. height: math.unit(3 + 1 / 2, "inches"),
  24799. default: true
  24800. },
  24801. ]
  24802. ))
  24803. characterMakers.push(() => makeCharacter(
  24804. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24805. {
  24806. front: {
  24807. height: math.unit(5 + 10 / 12, "feet"),
  24808. weight: math.unit(165, "lb"),
  24809. name: "Front",
  24810. image: {
  24811. source: "./media/characters/nicky/front.svg",
  24812. extra: 3144 / 2886,
  24813. bottom: 45.6 / 3192
  24814. }
  24815. },
  24816. back: {
  24817. height: math.unit(5 + 10 / 12, "feet"),
  24818. weight: math.unit(165, "lb"),
  24819. name: "Back",
  24820. image: {
  24821. source: "./media/characters/nicky/back.svg",
  24822. extra: 3055 / 2804,
  24823. bottom: 28.4 / 3087
  24824. }
  24825. },
  24826. frontclothed: {
  24827. height: math.unit(5 + 10 / 12, "feet"),
  24828. weight: math.unit(165, "lb"),
  24829. name: "Front-clothed",
  24830. image: {
  24831. source: "./media/characters/nicky/front-clothed.svg",
  24832. extra: 3184.9 / 2926.9,
  24833. bottom: 86.5 / 3239.9
  24834. }
  24835. },
  24836. foot: {
  24837. height: math.unit(1.16, "feet"),
  24838. name: "Foot",
  24839. image: {
  24840. source: "./media/characters/nicky/foot.svg"
  24841. }
  24842. },
  24843. feet: {
  24844. height: math.unit(1.34, "feet"),
  24845. name: "Feet",
  24846. image: {
  24847. source: "./media/characters/nicky/feet.svg"
  24848. }
  24849. },
  24850. maw: {
  24851. height: math.unit(0.9, "feet"),
  24852. name: "Maw",
  24853. image: {
  24854. source: "./media/characters/nicky/maw.svg"
  24855. }
  24856. },
  24857. },
  24858. [
  24859. {
  24860. name: "Normal",
  24861. height: math.unit(5 + 10 / 12, "feet"),
  24862. default: true
  24863. },
  24864. {
  24865. name: "Macro",
  24866. height: math.unit(60, "feet")
  24867. },
  24868. {
  24869. name: "Megamacro",
  24870. height: math.unit(1, "mile")
  24871. },
  24872. ]
  24873. ))
  24874. characterMakers.push(() => makeCharacter(
  24875. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24876. {
  24877. side: {
  24878. height: math.unit(10, "feet"),
  24879. weight: math.unit(600, "lb"),
  24880. name: "Side",
  24881. image: {
  24882. source: "./media/characters/blair/side.svg",
  24883. bottom: 16.6 / 475,
  24884. extra: 458 / 431
  24885. }
  24886. },
  24887. },
  24888. [
  24889. {
  24890. name: "Micro",
  24891. height: math.unit(8, "inches")
  24892. },
  24893. {
  24894. name: "Normal",
  24895. height: math.unit(10, "feet"),
  24896. default: true
  24897. },
  24898. {
  24899. name: "Macro",
  24900. height: math.unit(180, "feet")
  24901. },
  24902. ]
  24903. ))
  24904. characterMakers.push(() => makeCharacter(
  24905. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24906. {
  24907. front: {
  24908. height: math.unit(5 + 4 / 12, "feet"),
  24909. weight: math.unit(125, "lb"),
  24910. name: "Front",
  24911. image: {
  24912. source: "./media/characters/fisher/front.svg",
  24913. extra: 444 / 390,
  24914. bottom: 2 / 444.8
  24915. }
  24916. },
  24917. },
  24918. [
  24919. {
  24920. name: "Micro",
  24921. height: math.unit(4, "inches")
  24922. },
  24923. {
  24924. name: "Normal",
  24925. height: math.unit(5 + 4 / 12, "feet"),
  24926. default: true
  24927. },
  24928. {
  24929. name: "Macro",
  24930. height: math.unit(100, "feet")
  24931. },
  24932. ]
  24933. ))
  24934. characterMakers.push(() => makeCharacter(
  24935. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24936. {
  24937. front: {
  24938. height: math.unit(6.71, "feet"),
  24939. weight: math.unit(200, "lb"),
  24940. capacity: math.unit(1000000, "people"),
  24941. name: "Front",
  24942. image: {
  24943. source: "./media/characters/gliss/front.svg",
  24944. extra: 2347 / 2231,
  24945. bottom: 113 / 2462
  24946. }
  24947. },
  24948. hammerspaceSize: {
  24949. height: math.unit(6.71 * 717, "feet"),
  24950. weight: math.unit(200, "lb"),
  24951. capacity: math.unit(1000000, "people"),
  24952. name: "Hammerspace Size",
  24953. image: {
  24954. source: "./media/characters/gliss/front.svg",
  24955. extra: 2347 / 2231,
  24956. bottom: 113 / 2462
  24957. }
  24958. },
  24959. },
  24960. [
  24961. {
  24962. name: "Normal",
  24963. height: math.unit(6.71, "feet"),
  24964. default: true
  24965. },
  24966. ]
  24967. ))
  24968. characterMakers.push(() => makeCharacter(
  24969. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24970. {
  24971. side: {
  24972. height: math.unit(1.44, "m"),
  24973. weight: math.unit(80, "kg"),
  24974. name: "Side",
  24975. image: {
  24976. source: "./media/characters/dune-anderson/side.svg",
  24977. bottom: 49 / 1426
  24978. }
  24979. },
  24980. },
  24981. [
  24982. {
  24983. name: "Wolf-sized",
  24984. height: math.unit(1.44, "meters")
  24985. },
  24986. {
  24987. name: "Normal",
  24988. height: math.unit(5.05, "meters"),
  24989. default: true
  24990. },
  24991. {
  24992. name: "Big",
  24993. height: math.unit(14.4, "meters")
  24994. },
  24995. {
  24996. name: "Huge",
  24997. height: math.unit(144, "meters")
  24998. },
  24999. ]
  25000. ))
  25001. characterMakers.push(() => makeCharacter(
  25002. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25003. {
  25004. front: {
  25005. height: math.unit(7, "feet"),
  25006. weight: math.unit(425, "lb"),
  25007. name: "Front",
  25008. image: {
  25009. source: "./media/characters/hind/front.svg",
  25010. extra: 2091 / 1860,
  25011. bottom: 129 / 2220
  25012. }
  25013. },
  25014. back: {
  25015. height: math.unit(7, "feet"),
  25016. weight: math.unit(425, "lb"),
  25017. name: "Back",
  25018. image: {
  25019. source: "./media/characters/hind/back.svg",
  25020. extra: 2091 / 1860,
  25021. bottom: 24.6 / 2309
  25022. }
  25023. },
  25024. tail: {
  25025. height: math.unit(2.8, "feet"),
  25026. name: "Tail",
  25027. image: {
  25028. source: "./media/characters/hind/tail.svg"
  25029. }
  25030. },
  25031. head: {
  25032. height: math.unit(2.55, "feet"),
  25033. name: "Head",
  25034. image: {
  25035. source: "./media/characters/hind/head.svg"
  25036. }
  25037. },
  25038. },
  25039. [
  25040. {
  25041. name: "XS",
  25042. height: math.unit(0.7, "feet")
  25043. },
  25044. {
  25045. name: "Normal",
  25046. height: math.unit(7, "feet"),
  25047. default: true
  25048. },
  25049. {
  25050. name: "XL",
  25051. height: math.unit(70, "feet")
  25052. },
  25053. ]
  25054. ))
  25055. characterMakers.push(() => makeCharacter(
  25056. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25057. {
  25058. front: {
  25059. height: math.unit(2.1, "meters"),
  25060. weight: math.unit(150, "lb"),
  25061. name: "Front",
  25062. image: {
  25063. source: "./media/characters/tharquench-sizestealer/front.svg",
  25064. extra: 1605/1470,
  25065. bottom: 36/1641
  25066. }
  25067. },
  25068. frontAlt: {
  25069. height: math.unit(2.1, "meters"),
  25070. weight: math.unit(150, "lb"),
  25071. name: "Front (Alt)",
  25072. image: {
  25073. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25074. extra: 2318 / 2063,
  25075. bottom: 93.4 / 2410
  25076. }
  25077. },
  25078. },
  25079. [
  25080. {
  25081. name: "Nano",
  25082. height: math.unit(1, "mm")
  25083. },
  25084. {
  25085. name: "Micro",
  25086. height: math.unit(1, "cm")
  25087. },
  25088. {
  25089. name: "Normal",
  25090. height: math.unit(2.1, "meters"),
  25091. default: true
  25092. },
  25093. ]
  25094. ))
  25095. characterMakers.push(() => makeCharacter(
  25096. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25097. {
  25098. front: {
  25099. height: math.unit(7 + 5 / 12, "feet"),
  25100. weight: math.unit(357, "lb"),
  25101. name: "Front",
  25102. image: {
  25103. source: "./media/characters/solex-draconov/front.svg",
  25104. extra: 1993 / 1865,
  25105. bottom: 117 / 2111
  25106. }
  25107. },
  25108. },
  25109. [
  25110. {
  25111. name: "Natural Height",
  25112. height: math.unit(7 + 5 / 12, "feet"),
  25113. default: true
  25114. },
  25115. {
  25116. name: "Macro",
  25117. height: math.unit(350, "feet")
  25118. },
  25119. {
  25120. name: "Macro+",
  25121. height: math.unit(1000, "feet")
  25122. },
  25123. {
  25124. name: "Megamacro",
  25125. height: math.unit(20, "km")
  25126. },
  25127. {
  25128. name: "Megamacro+",
  25129. height: math.unit(1000, "km")
  25130. },
  25131. {
  25132. name: "Gigamacro",
  25133. height: math.unit(2.5, "Gm")
  25134. },
  25135. {
  25136. name: "Teramacro",
  25137. height: math.unit(15, "Tm")
  25138. },
  25139. {
  25140. name: "Galactic",
  25141. height: math.unit(30, "Zm")
  25142. },
  25143. {
  25144. name: "Universal",
  25145. height: math.unit(21000, "Ym")
  25146. },
  25147. {
  25148. name: "Omniversal",
  25149. height: math.unit(9.861e50, "Ym")
  25150. },
  25151. {
  25152. name: "Existential",
  25153. height: math.unit(1e300, "meters")
  25154. },
  25155. ]
  25156. ))
  25157. characterMakers.push(() => makeCharacter(
  25158. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25159. {
  25160. side: {
  25161. height: math.unit(25, "feet"),
  25162. weight: math.unit(90000, "lb"),
  25163. name: "Side",
  25164. image: {
  25165. source: "./media/characters/mandarax/side.svg",
  25166. extra: 614 / 332,
  25167. bottom: 55 / 630
  25168. }
  25169. },
  25170. head: {
  25171. height: math.unit(11.4, "feet"),
  25172. name: "Head",
  25173. image: {
  25174. source: "./media/characters/mandarax/head.svg"
  25175. }
  25176. },
  25177. belly: {
  25178. height: math.unit(33, "feet"),
  25179. name: "Belly",
  25180. capacity: math.unit(500, "people"),
  25181. image: {
  25182. source: "./media/characters/mandarax/belly.svg"
  25183. }
  25184. },
  25185. dick: {
  25186. height: math.unit(8.46, "feet"),
  25187. name: "Dick",
  25188. image: {
  25189. source: "./media/characters/mandarax/dick.svg"
  25190. }
  25191. },
  25192. top: {
  25193. height: math.unit(28, "meters"),
  25194. name: "Top",
  25195. image: {
  25196. source: "./media/characters/mandarax/top.svg"
  25197. }
  25198. },
  25199. },
  25200. [
  25201. {
  25202. name: "Normal",
  25203. height: math.unit(25, "feet"),
  25204. default: true
  25205. },
  25206. ]
  25207. ))
  25208. characterMakers.push(() => makeCharacter(
  25209. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25210. {
  25211. front: {
  25212. height: math.unit(5, "feet"),
  25213. weight: math.unit(90, "lb"),
  25214. name: "Front",
  25215. image: {
  25216. source: "./media/characters/pixil/front.svg",
  25217. extra: 2000 / 1618,
  25218. bottom: 12.3 / 2011
  25219. }
  25220. },
  25221. },
  25222. [
  25223. {
  25224. name: "Normal",
  25225. height: math.unit(5, "feet"),
  25226. default: true
  25227. },
  25228. {
  25229. name: "Megamacro",
  25230. height: math.unit(10, "miles"),
  25231. },
  25232. ]
  25233. ))
  25234. characterMakers.push(() => makeCharacter(
  25235. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25236. {
  25237. front: {
  25238. height: math.unit(7 + 2 / 12, "feet"),
  25239. weight: math.unit(200, "lb"),
  25240. name: "Front",
  25241. image: {
  25242. source: "./media/characters/angel/front.svg",
  25243. extra: 1830 / 1737,
  25244. bottom: 22.6 / 1854,
  25245. }
  25246. },
  25247. },
  25248. [
  25249. {
  25250. name: "Normal",
  25251. height: math.unit(7 + 2 / 12, "feet"),
  25252. default: true
  25253. },
  25254. {
  25255. name: "Macro",
  25256. height: math.unit(1000, "feet")
  25257. },
  25258. {
  25259. name: "Megamacro",
  25260. height: math.unit(2, "miles")
  25261. },
  25262. {
  25263. name: "Gigamacro",
  25264. height: math.unit(20, "earths")
  25265. },
  25266. ]
  25267. ))
  25268. characterMakers.push(() => makeCharacter(
  25269. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25270. {
  25271. front: {
  25272. height: math.unit(5, "feet"),
  25273. weight: math.unit(180, "lb"),
  25274. name: "Front",
  25275. image: {
  25276. source: "./media/characters/mekana/front.svg",
  25277. extra: 1671 / 1605,
  25278. bottom: 3.5 / 1691
  25279. }
  25280. },
  25281. side: {
  25282. height: math.unit(5, "feet"),
  25283. weight: math.unit(180, "lb"),
  25284. name: "Side",
  25285. image: {
  25286. source: "./media/characters/mekana/side.svg",
  25287. extra: 1671 / 1605,
  25288. bottom: 3.5 / 1691
  25289. }
  25290. },
  25291. back: {
  25292. height: math.unit(5, "feet"),
  25293. weight: math.unit(180, "lb"),
  25294. name: "Back",
  25295. image: {
  25296. source: "./media/characters/mekana/back.svg",
  25297. extra: 1671 / 1605,
  25298. bottom: 3.5 / 1691
  25299. }
  25300. },
  25301. },
  25302. [
  25303. {
  25304. name: "Normal",
  25305. height: math.unit(5, "feet"),
  25306. default: true
  25307. },
  25308. ]
  25309. ))
  25310. characterMakers.push(() => makeCharacter(
  25311. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25312. {
  25313. front: {
  25314. height: math.unit(4 + 6 / 12, "feet"),
  25315. weight: math.unit(80, "lb"),
  25316. name: "Front",
  25317. image: {
  25318. source: "./media/characters/pixie/front.svg",
  25319. extra: 1924 / 1825,
  25320. bottom: 22.4 / 1946
  25321. }
  25322. },
  25323. },
  25324. [
  25325. {
  25326. name: "Normal",
  25327. height: math.unit(4 + 6 / 12, "feet"),
  25328. default: true
  25329. },
  25330. {
  25331. name: "Macro",
  25332. height: math.unit(40, "feet")
  25333. },
  25334. ]
  25335. ))
  25336. characterMakers.push(() => makeCharacter(
  25337. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25338. {
  25339. front: {
  25340. height: math.unit(2.1, "meters"),
  25341. weight: math.unit(200, "lb"),
  25342. name: "Front",
  25343. image: {
  25344. source: "./media/characters/the-lascivious/front.svg",
  25345. extra: 1 / 0.893,
  25346. bottom: 3.5 / 573.7
  25347. }
  25348. },
  25349. },
  25350. [
  25351. {
  25352. name: "Human Scale",
  25353. height: math.unit(2.1, "meters")
  25354. },
  25355. {
  25356. name: "Wolxi Scale",
  25357. height: math.unit(46.2, "m"),
  25358. default: true
  25359. },
  25360. {
  25361. name: "Boinker of Buildings",
  25362. height: math.unit(10, "km")
  25363. },
  25364. {
  25365. name: "Shagger of Skyscrapers",
  25366. height: math.unit(40, "km")
  25367. },
  25368. {
  25369. name: "Banger of Boroughs",
  25370. height: math.unit(4000, "km")
  25371. },
  25372. {
  25373. name: "Screwer of States",
  25374. height: math.unit(100000, "km")
  25375. },
  25376. {
  25377. name: "Pounder of Planets",
  25378. height: math.unit(2000000, "km")
  25379. },
  25380. ]
  25381. ))
  25382. characterMakers.push(() => makeCharacter(
  25383. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25384. {
  25385. front: {
  25386. height: math.unit(6, "feet"),
  25387. weight: math.unit(150, "lb"),
  25388. name: "Front",
  25389. image: {
  25390. source: "./media/characters/aj/front.svg",
  25391. extra: 2039 / 1562,
  25392. bottom: 40 / 2079
  25393. }
  25394. },
  25395. },
  25396. [
  25397. {
  25398. name: "Normal",
  25399. height: math.unit(11 + 6 / 12, "feet"),
  25400. default: true
  25401. },
  25402. {
  25403. name: "Megamacro",
  25404. height: math.unit(60, "megameters")
  25405. },
  25406. ]
  25407. ))
  25408. characterMakers.push(() => makeCharacter(
  25409. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25410. {
  25411. side: {
  25412. height: math.unit(31 + 8 / 12, "feet"),
  25413. weight: math.unit(75000, "kg"),
  25414. name: "Side",
  25415. image: {
  25416. source: "./media/characters/koros/side.svg",
  25417. extra: 1442 / 1297,
  25418. bottom: 122.7 / 1562
  25419. }
  25420. },
  25421. dicksKingsCrown: {
  25422. height: math.unit(6, "feet"),
  25423. name: "Dicks (King's Crown)",
  25424. image: {
  25425. source: "./media/characters/koros/dicks-kings-crown.svg"
  25426. }
  25427. },
  25428. dicksTailSet: {
  25429. height: math.unit(3, "feet"),
  25430. name: "Dicks (Tail Set)",
  25431. image: {
  25432. source: "./media/characters/koros/dicks-tail-set.svg"
  25433. }
  25434. },
  25435. dickCumming: {
  25436. height: math.unit(7.98, "feet"),
  25437. name: "Dick (Cumming)",
  25438. image: {
  25439. source: "./media/characters/koros/dick-cumming.svg"
  25440. }
  25441. },
  25442. dicksBack: {
  25443. height: math.unit(5.9, "feet"),
  25444. name: "Dicks (Back)",
  25445. image: {
  25446. source: "./media/characters/koros/dicks-back.svg"
  25447. }
  25448. },
  25449. dicksFront: {
  25450. height: math.unit(3.72, "feet"),
  25451. name: "Dicks (Front)",
  25452. image: {
  25453. source: "./media/characters/koros/dicks-front.svg"
  25454. }
  25455. },
  25456. dicksPeeking: {
  25457. height: math.unit(3.0, "feet"),
  25458. name: "Dicks (Peeking)",
  25459. image: {
  25460. source: "./media/characters/koros/dicks-peeking.svg"
  25461. }
  25462. },
  25463. eye: {
  25464. height: math.unit(1.7, "feet"),
  25465. name: "Eye",
  25466. image: {
  25467. source: "./media/characters/koros/eye.svg"
  25468. }
  25469. },
  25470. headFront: {
  25471. height: math.unit(11.69, "feet"),
  25472. name: "Head (Front)",
  25473. image: {
  25474. source: "./media/characters/koros/head-front.svg"
  25475. }
  25476. },
  25477. headSide: {
  25478. height: math.unit(14, "feet"),
  25479. name: "Head (Side)",
  25480. image: {
  25481. source: "./media/characters/koros/head-side.svg"
  25482. }
  25483. },
  25484. leg: {
  25485. height: math.unit(17, "feet"),
  25486. name: "Leg",
  25487. image: {
  25488. source: "./media/characters/koros/leg.svg"
  25489. }
  25490. },
  25491. mawSide: {
  25492. height: math.unit(12.8, "feet"),
  25493. name: "Maw (Side)",
  25494. image: {
  25495. source: "./media/characters/koros/maw-side.svg"
  25496. }
  25497. },
  25498. mawSpitting: {
  25499. height: math.unit(17, "feet"),
  25500. name: "Maw (Spitting)",
  25501. image: {
  25502. source: "./media/characters/koros/maw-spitting.svg"
  25503. }
  25504. },
  25505. slit: {
  25506. height: math.unit(2.8, "feet"),
  25507. name: "Slit",
  25508. image: {
  25509. source: "./media/characters/koros/slit.svg"
  25510. }
  25511. },
  25512. stomach: {
  25513. height: math.unit(6.8, "feet"),
  25514. capacity: math.unit(20, "people"),
  25515. name: "Stomach",
  25516. image: {
  25517. source: "./media/characters/koros/stomach.svg"
  25518. }
  25519. },
  25520. wingspanBottom: {
  25521. height: math.unit(114, "feet"),
  25522. name: "Wingspan (Bottom)",
  25523. image: {
  25524. source: "./media/characters/koros/wingspan-bottom.svg"
  25525. }
  25526. },
  25527. wingspanTop: {
  25528. height: math.unit(104, "feet"),
  25529. name: "Wingspan (Top)",
  25530. image: {
  25531. source: "./media/characters/koros/wingspan-top.svg"
  25532. }
  25533. },
  25534. },
  25535. [
  25536. {
  25537. name: "Normal",
  25538. height: math.unit(31 + 8 / 12, "feet"),
  25539. default: true
  25540. },
  25541. ]
  25542. ))
  25543. characterMakers.push(() => makeCharacter(
  25544. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25545. {
  25546. front: {
  25547. height: math.unit(18 + 5 / 12, "feet"),
  25548. weight: math.unit(3750, "kg"),
  25549. name: "Front",
  25550. image: {
  25551. source: "./media/characters/vexx/front.svg",
  25552. extra: 426 / 396,
  25553. bottom: 31.5 / 458
  25554. }
  25555. },
  25556. maw: {
  25557. height: math.unit(6, "feet"),
  25558. name: "Maw",
  25559. image: {
  25560. source: "./media/characters/vexx/maw.svg"
  25561. }
  25562. },
  25563. },
  25564. [
  25565. {
  25566. name: "Normal",
  25567. height: math.unit(18 + 5 / 12, "feet"),
  25568. default: true
  25569. },
  25570. ]
  25571. ))
  25572. characterMakers.push(() => makeCharacter(
  25573. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25574. {
  25575. front: {
  25576. height: math.unit(17 + 6 / 12, "feet"),
  25577. weight: math.unit(150, "lb"),
  25578. name: "Front",
  25579. image: {
  25580. source: "./media/characters/baadra/front.svg",
  25581. extra: 3137 / 2890,
  25582. bottom: 168.4 / 3305
  25583. }
  25584. },
  25585. back: {
  25586. height: math.unit(17 + 6 / 12, "feet"),
  25587. weight: math.unit(150, "lb"),
  25588. name: "Back",
  25589. image: {
  25590. source: "./media/characters/baadra/back.svg",
  25591. extra: 3142 / 2890,
  25592. bottom: 220 / 3371
  25593. }
  25594. },
  25595. head: {
  25596. height: math.unit(5.45, "feet"),
  25597. name: "Head",
  25598. image: {
  25599. source: "./media/characters/baadra/head.svg"
  25600. }
  25601. },
  25602. headAngry: {
  25603. height: math.unit(4.95, "feet"),
  25604. name: "Head (Angry)",
  25605. image: {
  25606. source: "./media/characters/baadra/head-angry.svg"
  25607. }
  25608. },
  25609. headOpen: {
  25610. height: math.unit(6, "feet"),
  25611. name: "Head (Open)",
  25612. image: {
  25613. source: "./media/characters/baadra/head-open.svg"
  25614. }
  25615. },
  25616. },
  25617. [
  25618. {
  25619. name: "Normal",
  25620. height: math.unit(17 + 6 / 12, "feet"),
  25621. default: true
  25622. },
  25623. ]
  25624. ))
  25625. characterMakers.push(() => makeCharacter(
  25626. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25627. {
  25628. front: {
  25629. height: math.unit(7 + 3 / 12, "feet"),
  25630. weight: math.unit(180, "lb"),
  25631. name: "Front",
  25632. image: {
  25633. source: "./media/characters/juri/front.svg",
  25634. extra: 1401 / 1237,
  25635. bottom: 18.5 / 1418
  25636. }
  25637. },
  25638. side: {
  25639. height: math.unit(7 + 3 / 12, "feet"),
  25640. weight: math.unit(180, "lb"),
  25641. name: "Side",
  25642. image: {
  25643. source: "./media/characters/juri/side.svg",
  25644. extra: 1424 / 1242,
  25645. bottom: 18.5 / 1447
  25646. }
  25647. },
  25648. sitting: {
  25649. height: math.unit(6, "feet"),
  25650. weight: math.unit(180, "lb"),
  25651. name: "Sitting",
  25652. image: {
  25653. source: "./media/characters/juri/sitting.svg",
  25654. extra: 1270 / 1143,
  25655. bottom: 100 / 1343
  25656. }
  25657. },
  25658. back: {
  25659. height: math.unit(7 + 3 / 12, "feet"),
  25660. weight: math.unit(180, "lb"),
  25661. name: "Back",
  25662. image: {
  25663. source: "./media/characters/juri/back.svg",
  25664. extra: 1377 / 1240,
  25665. bottom: 23.7 / 1405
  25666. }
  25667. },
  25668. maw: {
  25669. height: math.unit(2.8, "feet"),
  25670. name: "Maw",
  25671. image: {
  25672. source: "./media/characters/juri/maw.svg"
  25673. }
  25674. },
  25675. stomach: {
  25676. height: math.unit(0.89, "feet"),
  25677. capacity: math.unit(4, "liters"),
  25678. name: "Stomach",
  25679. image: {
  25680. source: "./media/characters/juri/stomach.svg"
  25681. }
  25682. },
  25683. },
  25684. [
  25685. {
  25686. name: "Normal",
  25687. height: math.unit(7 + 3 / 12, "feet"),
  25688. default: true
  25689. },
  25690. ]
  25691. ))
  25692. characterMakers.push(() => makeCharacter(
  25693. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25694. {
  25695. fox: {
  25696. height: math.unit(5 + 6 / 12, "feet"),
  25697. weight: math.unit(140, "lb"),
  25698. name: "Fox",
  25699. image: {
  25700. source: "./media/characters/maxene-sita/fox.svg",
  25701. extra: 146 / 138,
  25702. bottom: 2.1 / 148.19
  25703. }
  25704. },
  25705. foxLaying: {
  25706. height: math.unit(1.70, "feet"),
  25707. weight: math.unit(140, "lb"),
  25708. name: "Fox (Laying)",
  25709. image: {
  25710. source: "./media/characters/maxene-sita/fox-laying.svg",
  25711. extra: 910 / 572,
  25712. bottom: 71 / 981
  25713. }
  25714. },
  25715. kitsune: {
  25716. height: math.unit(10, "feet"),
  25717. weight: math.unit(800, "lb"),
  25718. name: "Kitsune",
  25719. image: {
  25720. source: "./media/characters/maxene-sita/kitsune.svg",
  25721. extra: 185 / 176,
  25722. bottom: 4.7 / 189.9
  25723. }
  25724. },
  25725. hellhound: {
  25726. height: math.unit(10, "feet"),
  25727. weight: math.unit(700, "lb"),
  25728. name: "Hellhound",
  25729. image: {
  25730. source: "./media/characters/maxene-sita/hellhound.svg",
  25731. extra: 1600 / 1545,
  25732. bottom: 81 / 1681
  25733. }
  25734. },
  25735. },
  25736. [
  25737. {
  25738. name: "Normal",
  25739. height: math.unit(5 + 6 / 12, "feet"),
  25740. default: true
  25741. },
  25742. ]
  25743. ))
  25744. characterMakers.push(() => makeCharacter(
  25745. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25746. {
  25747. front: {
  25748. height: math.unit(3 + 4 / 12, "feet"),
  25749. weight: math.unit(70, "lb"),
  25750. name: "Front",
  25751. image: {
  25752. source: "./media/characters/maia/front.svg",
  25753. extra: 227 / 219.5,
  25754. bottom: 40 / 267
  25755. }
  25756. },
  25757. back: {
  25758. height: math.unit(3 + 4 / 12, "feet"),
  25759. weight: math.unit(70, "lb"),
  25760. name: "Back",
  25761. image: {
  25762. source: "./media/characters/maia/back.svg",
  25763. extra: 237 / 225
  25764. }
  25765. },
  25766. },
  25767. [
  25768. {
  25769. name: "Normal",
  25770. height: math.unit(3 + 4 / 12, "feet"),
  25771. default: true
  25772. },
  25773. ]
  25774. ))
  25775. characterMakers.push(() => makeCharacter(
  25776. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25777. {
  25778. front: {
  25779. height: math.unit(5 + 10 / 12, "feet"),
  25780. weight: math.unit(197, "lb"),
  25781. name: "Front",
  25782. image: {
  25783. source: "./media/characters/jabaro/front.svg",
  25784. extra: 225 / 216,
  25785. bottom: 5.06 / 230
  25786. }
  25787. },
  25788. back: {
  25789. height: math.unit(5 + 10 / 12, "feet"),
  25790. weight: math.unit(197, "lb"),
  25791. name: "Back",
  25792. image: {
  25793. source: "./media/characters/jabaro/back.svg",
  25794. extra: 225 / 219,
  25795. bottom: 1.9 / 227
  25796. }
  25797. },
  25798. },
  25799. [
  25800. {
  25801. name: "Normal",
  25802. height: math.unit(5 + 10 / 12, "feet"),
  25803. default: true
  25804. },
  25805. ]
  25806. ))
  25807. characterMakers.push(() => makeCharacter(
  25808. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25809. {
  25810. front: {
  25811. height: math.unit(5 + 8 / 12, "feet"),
  25812. weight: math.unit(139, "lb"),
  25813. name: "Front",
  25814. image: {
  25815. source: "./media/characters/risa/front.svg",
  25816. extra: 270 / 260,
  25817. bottom: 11.2 / 282
  25818. }
  25819. },
  25820. back: {
  25821. height: math.unit(5 + 8 / 12, "feet"),
  25822. weight: math.unit(139, "lb"),
  25823. name: "Back",
  25824. image: {
  25825. source: "./media/characters/risa/back.svg",
  25826. extra: 264 / 255,
  25827. bottom: 4 / 268
  25828. }
  25829. },
  25830. },
  25831. [
  25832. {
  25833. name: "Normal",
  25834. height: math.unit(5 + 8 / 12, "feet"),
  25835. default: true
  25836. },
  25837. ]
  25838. ))
  25839. characterMakers.push(() => makeCharacter(
  25840. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25841. {
  25842. front: {
  25843. height: math.unit(2 + 11 / 12, "feet"),
  25844. weight: math.unit(30, "lb"),
  25845. name: "Front",
  25846. image: {
  25847. source: "./media/characters/weatley/front.svg",
  25848. bottom: 10.7 / 414,
  25849. extra: 403.5 / 362
  25850. }
  25851. },
  25852. back: {
  25853. height: math.unit(2 + 11 / 12, "feet"),
  25854. weight: math.unit(30, "lb"),
  25855. name: "Back",
  25856. image: {
  25857. source: "./media/characters/weatley/back.svg",
  25858. bottom: 10.7 / 414,
  25859. extra: 403.5 / 362
  25860. }
  25861. },
  25862. },
  25863. [
  25864. {
  25865. name: "Normal",
  25866. height: math.unit(2 + 11 / 12, "feet"),
  25867. default: true
  25868. },
  25869. ]
  25870. ))
  25871. characterMakers.push(() => makeCharacter(
  25872. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25873. {
  25874. front: {
  25875. height: math.unit(5 + 2 / 12, "feet"),
  25876. weight: math.unit(50, "kg"),
  25877. name: "Front",
  25878. image: {
  25879. source: "./media/characters/mercury-crescent/front.svg",
  25880. extra: 1088 / 1033,
  25881. bottom: 18.9 / 1109
  25882. }
  25883. },
  25884. },
  25885. [
  25886. {
  25887. name: "Normal",
  25888. height: math.unit(5 + 2 / 12, "feet"),
  25889. default: true
  25890. },
  25891. ]
  25892. ))
  25893. characterMakers.push(() => makeCharacter(
  25894. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25895. {
  25896. front: {
  25897. height: math.unit(2, "feet"),
  25898. weight: math.unit(15, "kg"),
  25899. name: "Front",
  25900. image: {
  25901. source: "./media/characters/diamond-jones/front.svg",
  25902. extra: 727/723,
  25903. bottom: 46/773
  25904. }
  25905. },
  25906. },
  25907. [
  25908. {
  25909. name: "Normal",
  25910. height: math.unit(2, "feet"),
  25911. default: true
  25912. },
  25913. ]
  25914. ))
  25915. characterMakers.push(() => makeCharacter(
  25916. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25917. {
  25918. front: {
  25919. height: math.unit(3, "feet"),
  25920. weight: math.unit(30, "kg"),
  25921. name: "Front",
  25922. image: {
  25923. source: "./media/characters/sweet-bit/front.svg",
  25924. extra: 675 / 567,
  25925. bottom: 27.7 / 703
  25926. }
  25927. },
  25928. },
  25929. [
  25930. {
  25931. name: "Normal",
  25932. height: math.unit(3, "feet"),
  25933. default: true
  25934. },
  25935. ]
  25936. ))
  25937. characterMakers.push(() => makeCharacter(
  25938. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25939. {
  25940. side: {
  25941. height: math.unit(9.178, "feet"),
  25942. weight: math.unit(500, "lb"),
  25943. name: "Side",
  25944. image: {
  25945. source: "./media/characters/umbrazen/side.svg",
  25946. extra: 1730 / 1473,
  25947. bottom: 34.6 / 1765
  25948. }
  25949. },
  25950. },
  25951. [
  25952. {
  25953. name: "Normal",
  25954. height: math.unit(9.178, "feet"),
  25955. default: true
  25956. },
  25957. ]
  25958. ))
  25959. characterMakers.push(() => makeCharacter(
  25960. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25961. {
  25962. front: {
  25963. height: math.unit(10, "feet"),
  25964. weight: math.unit(750, "lb"),
  25965. name: "Front",
  25966. image: {
  25967. source: "./media/characters/arlist/front.svg",
  25968. extra: 961 / 778,
  25969. bottom: 6.2 / 986
  25970. }
  25971. },
  25972. },
  25973. [
  25974. {
  25975. name: "Normal",
  25976. height: math.unit(10, "feet"),
  25977. default: true
  25978. },
  25979. ]
  25980. ))
  25981. characterMakers.push(() => makeCharacter(
  25982. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25983. {
  25984. front: {
  25985. height: math.unit(5 + 1 / 12, "feet"),
  25986. weight: math.unit(110, "lb"),
  25987. name: "Front",
  25988. image: {
  25989. source: "./media/characters/aradel/front.svg",
  25990. extra: 324 / 303,
  25991. bottom: 3.6 / 329.4
  25992. }
  25993. },
  25994. },
  25995. [
  25996. {
  25997. name: "Normal",
  25998. height: math.unit(5 + 1 / 12, "feet"),
  25999. default: true
  26000. },
  26001. ]
  26002. ))
  26003. characterMakers.push(() => makeCharacter(
  26004. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26005. {
  26006. front: {
  26007. height: math.unit(3 + 8 / 12, "feet"),
  26008. weight: math.unit(50, "lb"),
  26009. name: "Front",
  26010. image: {
  26011. source: "./media/characters/serryn/front.svg",
  26012. extra: 1792 / 1656,
  26013. bottom: 43.5 / 1840
  26014. }
  26015. },
  26016. },
  26017. [
  26018. {
  26019. name: "Normal",
  26020. height: math.unit(3 + 8 / 12, "feet"),
  26021. default: true
  26022. },
  26023. ]
  26024. ))
  26025. characterMakers.push(() => makeCharacter(
  26026. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26027. {
  26028. front: {
  26029. height: math.unit(7 + 10 / 12, "feet"),
  26030. weight: math.unit(255, "lb"),
  26031. name: "Front",
  26032. image: {
  26033. source: "./media/characters/xavier-thyme/front.svg",
  26034. extra: 3733 / 3642,
  26035. bottom: 131 / 3869
  26036. }
  26037. },
  26038. frontRaven: {
  26039. height: math.unit(7 + 10 / 12, "feet"),
  26040. weight: math.unit(255, "lb"),
  26041. name: "Front (Raven)",
  26042. image: {
  26043. source: "./media/characters/xavier-thyme/front-raven.svg",
  26044. extra: 4385 / 3642,
  26045. bottom: 131 / 4517
  26046. }
  26047. },
  26048. },
  26049. [
  26050. {
  26051. name: "Normal",
  26052. height: math.unit(7 + 10 / 12, "feet"),
  26053. default: true
  26054. },
  26055. ]
  26056. ))
  26057. characterMakers.push(() => makeCharacter(
  26058. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26059. {
  26060. front: {
  26061. height: math.unit(1.6, "m"),
  26062. weight: math.unit(50, "kg"),
  26063. name: "Front",
  26064. image: {
  26065. source: "./media/characters/kiki/front.svg",
  26066. extra: 4682 / 3610,
  26067. bottom: 115 / 4777
  26068. }
  26069. },
  26070. },
  26071. [
  26072. {
  26073. name: "Normal",
  26074. height: math.unit(1.6, "meters"),
  26075. default: true
  26076. },
  26077. ]
  26078. ))
  26079. characterMakers.push(() => makeCharacter(
  26080. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26081. {
  26082. front: {
  26083. height: math.unit(50, "m"),
  26084. weight: math.unit(500, "tonnes"),
  26085. name: "Front",
  26086. image: {
  26087. source: "./media/characters/ryoko/front.svg",
  26088. extra: 4632 / 3926,
  26089. bottom: 193 / 4823
  26090. }
  26091. },
  26092. },
  26093. [
  26094. {
  26095. name: "Normal",
  26096. height: math.unit(50, "meters"),
  26097. default: true
  26098. },
  26099. ]
  26100. ))
  26101. characterMakers.push(() => makeCharacter(
  26102. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26103. {
  26104. front: {
  26105. height: math.unit(30, "m"),
  26106. weight: math.unit(22, "tonnes"),
  26107. name: "Front",
  26108. image: {
  26109. source: "./media/characters/elio/front.svg",
  26110. extra: 4582 / 3720,
  26111. bottom: 236 / 4828
  26112. }
  26113. },
  26114. },
  26115. [
  26116. {
  26117. name: "Normal",
  26118. height: math.unit(30, "meters"),
  26119. default: true
  26120. },
  26121. ]
  26122. ))
  26123. characterMakers.push(() => makeCharacter(
  26124. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26125. {
  26126. front: {
  26127. height: math.unit(6 + 3 / 12, "feet"),
  26128. weight: math.unit(120, "lb"),
  26129. name: "Front",
  26130. image: {
  26131. source: "./media/characters/azura/front.svg",
  26132. extra: 1149 / 1135,
  26133. bottom: 45 / 1194
  26134. }
  26135. },
  26136. frontClothed: {
  26137. height: math.unit(6 + 3 / 12, "feet"),
  26138. weight: math.unit(120, "lb"),
  26139. name: "Front (Clothed)",
  26140. image: {
  26141. source: "./media/characters/azura/front-clothed.svg",
  26142. extra: 1149 / 1135,
  26143. bottom: 45 / 1194
  26144. }
  26145. },
  26146. },
  26147. [
  26148. {
  26149. name: "Normal",
  26150. height: math.unit(6 + 3 / 12, "feet"),
  26151. default: true
  26152. },
  26153. {
  26154. name: "Macro",
  26155. height: math.unit(20 + 6 / 12, "feet")
  26156. },
  26157. {
  26158. name: "Megamacro",
  26159. height: math.unit(12, "miles")
  26160. },
  26161. {
  26162. name: "Gigamacro",
  26163. height: math.unit(10000, "miles")
  26164. },
  26165. {
  26166. name: "Teramacro",
  26167. height: math.unit(900000, "miles")
  26168. },
  26169. ]
  26170. ))
  26171. characterMakers.push(() => makeCharacter(
  26172. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26173. {
  26174. front: {
  26175. height: math.unit(12, "feet"),
  26176. weight: math.unit(1, "ton"),
  26177. capacity: math.unit(660000, "gallons"),
  26178. name: "Front",
  26179. image: {
  26180. source: "./media/characters/zeus/front.svg",
  26181. extra: 5005 / 4717,
  26182. bottom: 363 / 5388
  26183. }
  26184. },
  26185. },
  26186. [
  26187. {
  26188. name: "Normal",
  26189. height: math.unit(12, "feet")
  26190. },
  26191. {
  26192. name: "Preferred Size",
  26193. height: math.unit(0.5, "miles"),
  26194. default: true
  26195. },
  26196. {
  26197. name: "Giga Horse",
  26198. height: math.unit(300, "miles")
  26199. },
  26200. {
  26201. name: "Riding Planets",
  26202. height: math.unit(30, "megameters")
  26203. },
  26204. {
  26205. name: "Cosmic Giant",
  26206. height: math.unit(3, "zettameters")
  26207. },
  26208. {
  26209. name: "Breeding God",
  26210. height: math.unit(9.92e22, "yottameters")
  26211. },
  26212. ]
  26213. ))
  26214. characterMakers.push(() => makeCharacter(
  26215. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26216. {
  26217. side: {
  26218. height: math.unit(9, "feet"),
  26219. weight: math.unit(1500, "kg"),
  26220. name: "Side",
  26221. image: {
  26222. source: "./media/characters/fang/side.svg",
  26223. extra: 924 / 866,
  26224. bottom: 47.5 / 972.3
  26225. }
  26226. },
  26227. },
  26228. [
  26229. {
  26230. name: "Normal",
  26231. height: math.unit(9, "feet"),
  26232. default: true
  26233. },
  26234. {
  26235. name: "Macro",
  26236. height: math.unit(75 + 6 / 12, "feet")
  26237. },
  26238. {
  26239. name: "Teramacro",
  26240. height: math.unit(50000, "miles")
  26241. },
  26242. ]
  26243. ))
  26244. characterMakers.push(() => makeCharacter(
  26245. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26246. {
  26247. front: {
  26248. height: math.unit(10, "feet"),
  26249. weight: math.unit(2, "tons"),
  26250. name: "Front",
  26251. image: {
  26252. source: "./media/characters/rekhit/front.svg",
  26253. extra: 2796 / 2590,
  26254. bottom: 225 / 3022
  26255. }
  26256. },
  26257. },
  26258. [
  26259. {
  26260. name: "Normal",
  26261. height: math.unit(10, "feet"),
  26262. default: true
  26263. },
  26264. {
  26265. name: "Macro",
  26266. height: math.unit(500, "feet")
  26267. },
  26268. ]
  26269. ))
  26270. characterMakers.push(() => makeCharacter(
  26271. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26272. {
  26273. front: {
  26274. height: math.unit(7 + 6.451 / 12, "feet"),
  26275. weight: math.unit(310, "lb"),
  26276. name: "Front",
  26277. image: {
  26278. source: "./media/characters/dahlia-verrick/front.svg",
  26279. extra: 1488 / 1365,
  26280. bottom: 6.2 / 1495
  26281. }
  26282. },
  26283. back: {
  26284. height: math.unit(7 + 6.451 / 12, "feet"),
  26285. weight: math.unit(310, "lb"),
  26286. name: "Back",
  26287. image: {
  26288. source: "./media/characters/dahlia-verrick/back.svg",
  26289. extra: 1472 / 1351,
  26290. bottom: 5.28 / 1477
  26291. }
  26292. },
  26293. frontBusiness: {
  26294. height: math.unit(7 + 6.451 / 12, "feet"),
  26295. weight: math.unit(200, "lb"),
  26296. name: "Front (Business)",
  26297. image: {
  26298. source: "./media/characters/dahlia-verrick/front-business.svg",
  26299. extra: 1478 / 1381,
  26300. bottom: 5.5 / 1484
  26301. }
  26302. },
  26303. frontCasual: {
  26304. height: math.unit(7 + 6.451 / 12, "feet"),
  26305. weight: math.unit(200, "lb"),
  26306. name: "Front (Casual)",
  26307. image: {
  26308. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26309. extra: 1478 / 1381,
  26310. bottom: 5.5 / 1484
  26311. }
  26312. },
  26313. },
  26314. [
  26315. {
  26316. name: "Travel-Sized",
  26317. height: math.unit(7.45, "inches")
  26318. },
  26319. {
  26320. name: "Normal",
  26321. height: math.unit(7 + 6.451 / 12, "feet"),
  26322. default: true
  26323. },
  26324. {
  26325. name: "Hitting the Town",
  26326. height: math.unit(37 + 8 / 12, "feet")
  26327. },
  26328. {
  26329. name: "Stomp in the Suburbs",
  26330. height: math.unit(964 + 9.728 / 12, "feet")
  26331. },
  26332. {
  26333. name: "Sit on the City",
  26334. height: math.unit(61747 + 10.592 / 12, "feet")
  26335. },
  26336. {
  26337. name: "Glomp the Globe",
  26338. height: math.unit(252919327 + 4.832 / 12, "feet")
  26339. },
  26340. ]
  26341. ))
  26342. characterMakers.push(() => makeCharacter(
  26343. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26344. {
  26345. front: {
  26346. height: math.unit(6 + 4 / 12, "feet"),
  26347. weight: math.unit(320, "lb"),
  26348. name: "Front",
  26349. image: {
  26350. source: "./media/characters/balina-mahigan/front.svg",
  26351. extra: 447 / 428,
  26352. bottom: 18 / 466
  26353. }
  26354. },
  26355. back: {
  26356. height: math.unit(6 + 4 / 12, "feet"),
  26357. weight: math.unit(320, "lb"),
  26358. name: "Back",
  26359. image: {
  26360. source: "./media/characters/balina-mahigan/back.svg",
  26361. extra: 445 / 428,
  26362. bottom: 4.07 / 448
  26363. }
  26364. },
  26365. arm: {
  26366. height: math.unit(1.88, "feet"),
  26367. name: "Arm",
  26368. image: {
  26369. source: "./media/characters/balina-mahigan/arm.svg"
  26370. }
  26371. },
  26372. backPort: {
  26373. height: math.unit(0.685, "feet"),
  26374. name: "Back Port",
  26375. image: {
  26376. source: "./media/characters/balina-mahigan/back-port.svg"
  26377. }
  26378. },
  26379. hoofpaw: {
  26380. height: math.unit(1.41, "feet"),
  26381. name: "Hoofpaw",
  26382. image: {
  26383. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26384. }
  26385. },
  26386. leftHandBack: {
  26387. height: math.unit(0.938, "feet"),
  26388. name: "Left Hand (Back)",
  26389. image: {
  26390. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26391. }
  26392. },
  26393. leftHandFront: {
  26394. height: math.unit(0.938, "feet"),
  26395. name: "Left Hand (Front)",
  26396. image: {
  26397. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26398. }
  26399. },
  26400. rightHandBack: {
  26401. height: math.unit(0.95, "feet"),
  26402. name: "Right Hand (Back)",
  26403. image: {
  26404. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26405. }
  26406. },
  26407. rightHandFront: {
  26408. height: math.unit(0.95, "feet"),
  26409. name: "Right Hand (Front)",
  26410. image: {
  26411. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26412. }
  26413. },
  26414. },
  26415. [
  26416. {
  26417. name: "Normal",
  26418. height: math.unit(6 + 4 / 12, "feet"),
  26419. default: true
  26420. },
  26421. ]
  26422. ))
  26423. characterMakers.push(() => makeCharacter(
  26424. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26425. {
  26426. front: {
  26427. height: math.unit(6, "feet"),
  26428. weight: math.unit(320, "lb"),
  26429. name: "Front",
  26430. image: {
  26431. source: "./media/characters/balina-mejeri/front.svg",
  26432. extra: 517 / 488,
  26433. bottom: 44.2 / 561
  26434. }
  26435. },
  26436. },
  26437. [
  26438. {
  26439. name: "Normal",
  26440. height: math.unit(6 + 4 / 12, "feet")
  26441. },
  26442. {
  26443. name: "Business",
  26444. height: math.unit(155, "feet"),
  26445. default: true
  26446. },
  26447. ]
  26448. ))
  26449. characterMakers.push(() => makeCharacter(
  26450. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26451. {
  26452. kneeling: {
  26453. height: math.unit(6 + 4 / 12, "feet"),
  26454. weight: math.unit(300 * 20, "lb"),
  26455. name: "Kneeling",
  26456. image: {
  26457. source: "./media/characters/balbarian/kneeling.svg",
  26458. extra: 922 / 862,
  26459. bottom: 42.4 / 965
  26460. }
  26461. },
  26462. },
  26463. [
  26464. {
  26465. name: "Normal",
  26466. height: math.unit(6 + 4 / 12, "feet")
  26467. },
  26468. {
  26469. name: "Treasured",
  26470. height: math.unit(18 + 9 / 12, "feet"),
  26471. default: true
  26472. },
  26473. {
  26474. name: "Macro",
  26475. height: math.unit(900, "feet")
  26476. },
  26477. ]
  26478. ))
  26479. characterMakers.push(() => makeCharacter(
  26480. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26481. {
  26482. front: {
  26483. height: math.unit(6 + 4 / 12, "feet"),
  26484. weight: math.unit(325, "lb"),
  26485. name: "Front",
  26486. image: {
  26487. source: "./media/characters/balina-amarini/front.svg",
  26488. extra: 415 / 403,
  26489. bottom: 19 / 433.4
  26490. }
  26491. },
  26492. back: {
  26493. height: math.unit(6 + 4 / 12, "feet"),
  26494. weight: math.unit(325, "lb"),
  26495. name: "Back",
  26496. image: {
  26497. source: "./media/characters/balina-amarini/back.svg",
  26498. extra: 415 / 403,
  26499. bottom: 13.5 / 432
  26500. }
  26501. },
  26502. overdrive: {
  26503. height: math.unit(6 + 4 / 12, "feet"),
  26504. weight: math.unit(400, "lb"),
  26505. name: "Overdrive",
  26506. image: {
  26507. source: "./media/characters/balina-amarini/overdrive.svg",
  26508. extra: 269 / 259,
  26509. bottom: 12 / 282
  26510. }
  26511. },
  26512. },
  26513. [
  26514. {
  26515. name: "Boom",
  26516. height: math.unit(9 + 10 / 12, "feet"),
  26517. default: true
  26518. },
  26519. {
  26520. name: "Macro",
  26521. height: math.unit(280, "feet")
  26522. },
  26523. ]
  26524. ))
  26525. characterMakers.push(() => makeCharacter(
  26526. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26527. {
  26528. goddess: {
  26529. height: math.unit(600, "feet"),
  26530. weight: math.unit(2000000, "tons"),
  26531. name: "Goddess",
  26532. image: {
  26533. source: "./media/characters/lady-kubwa/goddess.svg",
  26534. extra: 1240.5 / 1223,
  26535. bottom: 22 / 1263
  26536. }
  26537. },
  26538. goddesser: {
  26539. height: math.unit(900, "feet"),
  26540. weight: math.unit(20000000, "lb"),
  26541. name: "Goddess-er",
  26542. image: {
  26543. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26544. extra: 899 / 888,
  26545. bottom: 12.6 / 912
  26546. }
  26547. },
  26548. },
  26549. [
  26550. {
  26551. name: "Macro",
  26552. height: math.unit(600, "feet"),
  26553. default: true
  26554. },
  26555. {
  26556. name: "Megamacro",
  26557. height: math.unit(250, "miles")
  26558. },
  26559. ]
  26560. ))
  26561. characterMakers.push(() => makeCharacter(
  26562. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26563. {
  26564. front: {
  26565. height: math.unit(7 + 7 / 12, "feet"),
  26566. weight: math.unit(250, "lb"),
  26567. name: "Front",
  26568. image: {
  26569. source: "./media/characters/tala-grovehorn/front.svg",
  26570. extra: 2636 / 2525,
  26571. bottom: 147 / 2781
  26572. }
  26573. },
  26574. back: {
  26575. height: math.unit(7 + 7 / 12, "feet"),
  26576. weight: math.unit(250, "lb"),
  26577. name: "Back",
  26578. image: {
  26579. source: "./media/characters/tala-grovehorn/back.svg",
  26580. extra: 2635 / 2539,
  26581. bottom: 100 / 2732.8
  26582. }
  26583. },
  26584. mouth: {
  26585. height: math.unit(1.15, "feet"),
  26586. name: "Mouth",
  26587. image: {
  26588. source: "./media/characters/tala-grovehorn/mouth.svg"
  26589. }
  26590. },
  26591. dick: {
  26592. height: math.unit(2.36, "feet"),
  26593. name: "Dick",
  26594. image: {
  26595. source: "./media/characters/tala-grovehorn/dick.svg"
  26596. }
  26597. },
  26598. slit: {
  26599. height: math.unit(0.61, "feet"),
  26600. name: "Slit",
  26601. image: {
  26602. source: "./media/characters/tala-grovehorn/slit.svg"
  26603. }
  26604. },
  26605. },
  26606. [
  26607. ]
  26608. ))
  26609. characterMakers.push(() => makeCharacter(
  26610. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26611. {
  26612. front: {
  26613. height: math.unit(7 + 7 / 12, "feet"),
  26614. weight: math.unit(225, "lb"),
  26615. name: "Front",
  26616. image: {
  26617. source: "./media/characters/epona/front.svg",
  26618. extra: 2445 / 2290,
  26619. bottom: 251 / 2696
  26620. }
  26621. },
  26622. back: {
  26623. height: math.unit(7 + 7 / 12, "feet"),
  26624. weight: math.unit(225, "lb"),
  26625. name: "Back",
  26626. image: {
  26627. source: "./media/characters/epona/back.svg",
  26628. extra: 2546 / 2408,
  26629. bottom: 44 / 2589
  26630. }
  26631. },
  26632. genitals: {
  26633. height: math.unit(1.5, "feet"),
  26634. name: "Genitals",
  26635. image: {
  26636. source: "./media/characters/epona/genitals.svg"
  26637. }
  26638. },
  26639. },
  26640. [
  26641. {
  26642. name: "Normal",
  26643. height: math.unit(7 + 7 / 12, "feet"),
  26644. default: true
  26645. },
  26646. ]
  26647. ))
  26648. characterMakers.push(() => makeCharacter(
  26649. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26650. {
  26651. front: {
  26652. height: math.unit(7, "feet"),
  26653. weight: math.unit(518, "lb"),
  26654. name: "Front",
  26655. image: {
  26656. source: "./media/characters/avia-bloodbourn/front.svg",
  26657. extra: 1466 / 1350,
  26658. bottom: 65 / 1527
  26659. }
  26660. },
  26661. },
  26662. [
  26663. ]
  26664. ))
  26665. characterMakers.push(() => makeCharacter(
  26666. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26667. {
  26668. front: {
  26669. height: math.unit(9.35, "feet"),
  26670. weight: math.unit(600, "lb"),
  26671. name: "Front",
  26672. image: {
  26673. source: "./media/characters/amera/front.svg",
  26674. extra: 891 / 818,
  26675. bottom: 30 / 922.7
  26676. }
  26677. },
  26678. back: {
  26679. height: math.unit(9.35, "feet"),
  26680. weight: math.unit(600, "lb"),
  26681. name: "Back",
  26682. image: {
  26683. source: "./media/characters/amera/back.svg",
  26684. extra: 876 / 824,
  26685. bottom: 6.8 / 884
  26686. }
  26687. },
  26688. dick: {
  26689. height: math.unit(2.14, "feet"),
  26690. name: "Dick",
  26691. image: {
  26692. source: "./media/characters/amera/dick.svg"
  26693. }
  26694. },
  26695. },
  26696. [
  26697. {
  26698. name: "Normal",
  26699. height: math.unit(9.35, "feet"),
  26700. default: true
  26701. },
  26702. ]
  26703. ))
  26704. characterMakers.push(() => makeCharacter(
  26705. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26706. {
  26707. kneeling: {
  26708. height: math.unit(3 + 4 / 12, "feet"),
  26709. weight: math.unit(90, "lb"),
  26710. name: "Kneeling",
  26711. image: {
  26712. source: "./media/characters/rosewen/kneeling.svg",
  26713. extra: 1835 / 1571,
  26714. bottom: 27.7 / 1862
  26715. }
  26716. },
  26717. },
  26718. [
  26719. {
  26720. name: "Normal",
  26721. height: math.unit(3 + 4 / 12, "feet"),
  26722. default: true
  26723. },
  26724. ]
  26725. ))
  26726. characterMakers.push(() => makeCharacter(
  26727. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26728. {
  26729. front: {
  26730. height: math.unit(5 + 10 / 12, "feet"),
  26731. weight: math.unit(200, "lb"),
  26732. name: "Front",
  26733. image: {
  26734. source: "./media/characters/sabah/front.svg",
  26735. extra: 849 / 763,
  26736. bottom: 33.9 / 881
  26737. }
  26738. },
  26739. },
  26740. [
  26741. {
  26742. name: "Normal",
  26743. height: math.unit(5 + 10 / 12, "feet"),
  26744. default: true
  26745. },
  26746. ]
  26747. ))
  26748. characterMakers.push(() => makeCharacter(
  26749. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26750. {
  26751. front: {
  26752. height: math.unit(3 + 5 / 12, "feet"),
  26753. weight: math.unit(40, "kg"),
  26754. name: "Front",
  26755. image: {
  26756. source: "./media/characters/purple-flame/front.svg",
  26757. extra: 1577 / 1412,
  26758. bottom: 97 / 1694
  26759. }
  26760. },
  26761. frontDressed: {
  26762. height: math.unit(3 + 5 / 12, "feet"),
  26763. weight: math.unit(40, "kg"),
  26764. name: "Front (Dressed)",
  26765. image: {
  26766. source: "./media/characters/purple-flame/front-dressed.svg",
  26767. extra: 1577 / 1412,
  26768. bottom: 97 / 1694
  26769. }
  26770. },
  26771. headphones: {
  26772. height: math.unit(0.85, "feet"),
  26773. name: "Headphones",
  26774. image: {
  26775. source: "./media/characters/purple-flame/headphones.svg"
  26776. }
  26777. },
  26778. },
  26779. [
  26780. {
  26781. name: "Really Small",
  26782. height: math.unit(5, "cm")
  26783. },
  26784. {
  26785. name: "Micro",
  26786. height: math.unit(1 + 5 / 12, "feet")
  26787. },
  26788. {
  26789. name: "Normal",
  26790. height: math.unit(3 + 5 / 12, "feet"),
  26791. default: true
  26792. },
  26793. {
  26794. name: "Minimacro",
  26795. height: math.unit(125, "feet")
  26796. },
  26797. {
  26798. name: "Macro",
  26799. height: math.unit(0.5, "miles")
  26800. },
  26801. {
  26802. name: "Megamacro",
  26803. height: math.unit(50, "miles")
  26804. },
  26805. {
  26806. name: "Gigantic",
  26807. height: math.unit(750, "miles")
  26808. },
  26809. {
  26810. name: "Planetary",
  26811. height: math.unit(15000, "miles")
  26812. },
  26813. ]
  26814. ))
  26815. characterMakers.push(() => makeCharacter(
  26816. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26817. {
  26818. front: {
  26819. height: math.unit(14, "feet"),
  26820. weight: math.unit(959, "lb"),
  26821. name: "Front",
  26822. image: {
  26823. source: "./media/characters/arsenal/front.svg",
  26824. extra: 2357 / 2157,
  26825. bottom: 93 / 2458
  26826. }
  26827. },
  26828. },
  26829. [
  26830. {
  26831. name: "Normal",
  26832. height: math.unit(14, "feet"),
  26833. default: true
  26834. },
  26835. ]
  26836. ))
  26837. characterMakers.push(() => makeCharacter(
  26838. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26839. {
  26840. front: {
  26841. height: math.unit(6, "feet"),
  26842. weight: math.unit(150, "lb"),
  26843. name: "Front",
  26844. image: {
  26845. source: "./media/characters/adira/front.svg",
  26846. extra: 1078 / 1029,
  26847. bottom: 87 / 1166
  26848. }
  26849. },
  26850. },
  26851. [
  26852. {
  26853. name: "Micro",
  26854. height: math.unit(4, "inches"),
  26855. default: true
  26856. },
  26857. {
  26858. name: "Macro",
  26859. height: math.unit(50, "feet")
  26860. },
  26861. ]
  26862. ))
  26863. characterMakers.push(() => makeCharacter(
  26864. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26865. {
  26866. front: {
  26867. height: math.unit(16, "feet"),
  26868. weight: math.unit(1000, "lb"),
  26869. name: "Front",
  26870. image: {
  26871. source: "./media/characters/grim/front.svg",
  26872. extra: 622 / 614,
  26873. bottom: 18.1 / 642
  26874. }
  26875. },
  26876. back: {
  26877. height: math.unit(16, "feet"),
  26878. weight: math.unit(1000, "lb"),
  26879. name: "Back",
  26880. image: {
  26881. source: "./media/characters/grim/back.svg",
  26882. extra: 610.6 / 602,
  26883. bottom: 40.8 / 652
  26884. }
  26885. },
  26886. hunched: {
  26887. height: math.unit(9.75, "feet"),
  26888. weight: math.unit(1000, "lb"),
  26889. name: "Hunched",
  26890. image: {
  26891. source: "./media/characters/grim/hunched.svg",
  26892. extra: 304 / 297,
  26893. bottom: 35.4 / 394
  26894. }
  26895. },
  26896. },
  26897. [
  26898. {
  26899. name: "Normal",
  26900. height: math.unit(16, "feet"),
  26901. default: true
  26902. },
  26903. ]
  26904. ))
  26905. characterMakers.push(() => makeCharacter(
  26906. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26907. {
  26908. front: {
  26909. height: math.unit(2.3, "meters"),
  26910. weight: math.unit(300, "lb"),
  26911. name: "Front",
  26912. image: {
  26913. source: "./media/characters/sinja/front-sfw.svg",
  26914. extra: 1393 / 1294,
  26915. bottom: 70 / 1463
  26916. }
  26917. },
  26918. frontNsfw: {
  26919. height: math.unit(2.3, "meters"),
  26920. weight: math.unit(300, "lb"),
  26921. name: "Front (NSFW)",
  26922. image: {
  26923. source: "./media/characters/sinja/front-nsfw.svg",
  26924. extra: 1393 / 1294,
  26925. bottom: 70 / 1463
  26926. }
  26927. },
  26928. back: {
  26929. height: math.unit(2.3, "meters"),
  26930. weight: math.unit(300, "lb"),
  26931. name: "Back",
  26932. image: {
  26933. source: "./media/characters/sinja/back.svg",
  26934. extra: 1393 / 1294,
  26935. bottom: 70 / 1463
  26936. }
  26937. },
  26938. head: {
  26939. height: math.unit(1.771, "feet"),
  26940. name: "Head",
  26941. image: {
  26942. source: "./media/characters/sinja/head.svg"
  26943. }
  26944. },
  26945. slit: {
  26946. height: math.unit(0.8, "feet"),
  26947. name: "Slit",
  26948. image: {
  26949. source: "./media/characters/sinja/slit.svg"
  26950. }
  26951. },
  26952. },
  26953. [
  26954. {
  26955. name: "Normal",
  26956. height: math.unit(2.3, "meters")
  26957. },
  26958. {
  26959. name: "Macro",
  26960. height: math.unit(91, "meters"),
  26961. default: true
  26962. },
  26963. {
  26964. name: "Megamacro",
  26965. height: math.unit(91440, "meters")
  26966. },
  26967. {
  26968. name: "Gigamacro",
  26969. height: math.unit(60960000, "meters")
  26970. },
  26971. {
  26972. name: "Teramacro",
  26973. height: math.unit(9144000000, "meters")
  26974. },
  26975. ]
  26976. ))
  26977. characterMakers.push(() => makeCharacter(
  26978. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26979. {
  26980. front: {
  26981. height: math.unit(1.7, "meters"),
  26982. weight: math.unit(130, "lb"),
  26983. name: "Front",
  26984. image: {
  26985. source: "./media/characters/kyu/front.svg",
  26986. extra: 415 / 395,
  26987. bottom: 5 / 420
  26988. }
  26989. },
  26990. head: {
  26991. height: math.unit(1.75, "feet"),
  26992. name: "Head",
  26993. image: {
  26994. source: "./media/characters/kyu/head.svg"
  26995. }
  26996. },
  26997. foot: {
  26998. height: math.unit(0.81, "feet"),
  26999. name: "Foot",
  27000. image: {
  27001. source: "./media/characters/kyu/foot.svg"
  27002. }
  27003. },
  27004. },
  27005. [
  27006. {
  27007. name: "Normal",
  27008. height: math.unit(1.7, "meters")
  27009. },
  27010. {
  27011. name: "Macro",
  27012. height: math.unit(131, "feet"),
  27013. default: true
  27014. },
  27015. {
  27016. name: "Megamacro",
  27017. height: math.unit(91440, "meters")
  27018. },
  27019. {
  27020. name: "Gigamacro",
  27021. height: math.unit(60960000, "meters")
  27022. },
  27023. {
  27024. name: "Teramacro",
  27025. height: math.unit(9144000000, "meters")
  27026. },
  27027. ]
  27028. ))
  27029. characterMakers.push(() => makeCharacter(
  27030. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27031. {
  27032. front: {
  27033. height: math.unit(7 + 1 / 12, "feet"),
  27034. weight: math.unit(250, "lb"),
  27035. name: "Front",
  27036. image: {
  27037. source: "./media/characters/joey/front.svg",
  27038. extra: 1791 / 1537,
  27039. bottom: 28 / 1816
  27040. }
  27041. },
  27042. },
  27043. [
  27044. {
  27045. name: "Micro",
  27046. height: math.unit(3, "inches")
  27047. },
  27048. {
  27049. name: "Normal",
  27050. height: math.unit(7 + 1 / 12, "feet"),
  27051. default: true
  27052. },
  27053. ]
  27054. ))
  27055. characterMakers.push(() => makeCharacter(
  27056. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27057. {
  27058. front: {
  27059. height: math.unit(165, "cm"),
  27060. weight: math.unit(140, "lb"),
  27061. name: "Front",
  27062. image: {
  27063. source: "./media/characters/sam-evans/front.svg",
  27064. extra: 3417 / 3230,
  27065. bottom: 41.3 / 3417
  27066. }
  27067. },
  27068. frontSixTails: {
  27069. height: math.unit(165, "cm"),
  27070. weight: math.unit(140, "lb"),
  27071. name: "Front-six-tails",
  27072. image: {
  27073. source: "./media/characters/sam-evans/front-six-tails.svg",
  27074. extra: 3417 / 3230,
  27075. bottom: 41.3 / 3417
  27076. }
  27077. },
  27078. back: {
  27079. height: math.unit(165, "cm"),
  27080. weight: math.unit(140, "lb"),
  27081. name: "Back",
  27082. image: {
  27083. source: "./media/characters/sam-evans/back.svg",
  27084. extra: 3227 / 3032,
  27085. bottom: 6.8 / 3234
  27086. }
  27087. },
  27088. face: {
  27089. height: math.unit(0.68, "feet"),
  27090. name: "Face",
  27091. image: {
  27092. source: "./media/characters/sam-evans/face.svg"
  27093. }
  27094. },
  27095. },
  27096. [
  27097. {
  27098. name: "Normal",
  27099. height: math.unit(165, "cm"),
  27100. default: true
  27101. },
  27102. {
  27103. name: "Macro",
  27104. height: math.unit(100, "meters")
  27105. },
  27106. {
  27107. name: "Macro+",
  27108. height: math.unit(800, "meters")
  27109. },
  27110. {
  27111. name: "Macro++",
  27112. height: math.unit(3, "km")
  27113. },
  27114. {
  27115. name: "Macro+++",
  27116. height: math.unit(30, "km")
  27117. },
  27118. ]
  27119. ))
  27120. characterMakers.push(() => makeCharacter(
  27121. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27122. {
  27123. front: {
  27124. height: math.unit(10, "feet"),
  27125. weight: math.unit(750, "lb"),
  27126. name: "Front",
  27127. image: {
  27128. source: "./media/characters/juliet-a/front.svg",
  27129. extra: 1766 / 1720,
  27130. bottom: 43 / 1809
  27131. }
  27132. },
  27133. back: {
  27134. height: math.unit(10, "feet"),
  27135. weight: math.unit(750, "lb"),
  27136. name: "Back",
  27137. image: {
  27138. source: "./media/characters/juliet-a/back.svg",
  27139. extra: 1781 / 1734,
  27140. bottom: 35 / 1810,
  27141. }
  27142. },
  27143. },
  27144. [
  27145. {
  27146. name: "Normal",
  27147. height: math.unit(10, "feet"),
  27148. default: true
  27149. },
  27150. {
  27151. name: "Dragon Form",
  27152. height: math.unit(250, "feet")
  27153. },
  27154. {
  27155. name: "Macro",
  27156. height: math.unit(1000, "feet")
  27157. },
  27158. {
  27159. name: "Megamacro",
  27160. height: math.unit(10000, "feet")
  27161. }
  27162. ]
  27163. ))
  27164. characterMakers.push(() => makeCharacter(
  27165. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27166. {
  27167. regular: {
  27168. height: math.unit(7 + 3 / 12, "feet"),
  27169. weight: math.unit(260, "lb"),
  27170. name: "Regular",
  27171. image: {
  27172. source: "./media/characters/wild/regular.svg",
  27173. extra: 97.45 / 92,
  27174. bottom: 6.8 / 104.3
  27175. }
  27176. },
  27177. biggums: {
  27178. height: math.unit(8 + 6 / 12, "feet"),
  27179. weight: math.unit(425, "lb"),
  27180. name: "Biggums",
  27181. image: {
  27182. source: "./media/characters/wild/biggums.svg",
  27183. extra: 97.45 / 92,
  27184. bottom: 7.5 / 132.34
  27185. }
  27186. },
  27187. mawRegular: {
  27188. height: math.unit(1.24, "feet"),
  27189. name: "Maw (Regular)",
  27190. image: {
  27191. source: "./media/characters/wild/maw.svg"
  27192. }
  27193. },
  27194. mawBiggums: {
  27195. height: math.unit(1.47, "feet"),
  27196. name: "Maw (Biggums)",
  27197. image: {
  27198. source: "./media/characters/wild/maw.svg"
  27199. }
  27200. },
  27201. },
  27202. [
  27203. {
  27204. name: "Normal",
  27205. height: math.unit(7 + 3 / 12, "feet"),
  27206. default: true
  27207. },
  27208. ]
  27209. ))
  27210. characterMakers.push(() => makeCharacter(
  27211. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27212. {
  27213. front: {
  27214. height: math.unit(2.5, "meters"),
  27215. weight: math.unit(200, "kg"),
  27216. name: "Front",
  27217. image: {
  27218. source: "./media/characters/vidar/front.svg",
  27219. extra: 2994 / 2795,
  27220. bottom: 56 / 3061
  27221. }
  27222. },
  27223. back: {
  27224. height: math.unit(2.5, "meters"),
  27225. weight: math.unit(200, "kg"),
  27226. name: "Back",
  27227. image: {
  27228. source: "./media/characters/vidar/back.svg",
  27229. extra: 3131 / 2928,
  27230. bottom: 13.5 / 3141.5
  27231. }
  27232. },
  27233. feral: {
  27234. height: math.unit(2.5, "meters"),
  27235. weight: math.unit(2000, "kg"),
  27236. name: "Feral",
  27237. image: {
  27238. source: "./media/characters/vidar/feral.svg",
  27239. extra: 2790 / 1765,
  27240. bottom: 6 / 2796
  27241. }
  27242. },
  27243. },
  27244. [
  27245. {
  27246. name: "Normal",
  27247. height: math.unit(2.5, "meters"),
  27248. default: true
  27249. },
  27250. {
  27251. name: "Macro",
  27252. height: math.unit(100, "meters")
  27253. },
  27254. ]
  27255. ))
  27256. characterMakers.push(() => makeCharacter(
  27257. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27258. {
  27259. front: {
  27260. height: math.unit(5 + 9 / 12, "feet"),
  27261. weight: math.unit(120, "lb"),
  27262. name: "Front",
  27263. image: {
  27264. source: "./media/characters/ash/front.svg",
  27265. extra: 2189 / 1961,
  27266. bottom: 5.2 / 2194
  27267. }
  27268. },
  27269. },
  27270. [
  27271. {
  27272. name: "Normal",
  27273. height: math.unit(5 + 9 / 12, "feet"),
  27274. default: true
  27275. },
  27276. ]
  27277. ))
  27278. characterMakers.push(() => makeCharacter(
  27279. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27280. {
  27281. front: {
  27282. height: math.unit(9, "feet"),
  27283. weight: math.unit(10000, "lb"),
  27284. name: "Front",
  27285. image: {
  27286. source: "./media/characters/gygabite/front.svg",
  27287. bottom: 31.7 / 537.8,
  27288. extra: 505 / 370
  27289. }
  27290. },
  27291. },
  27292. [
  27293. {
  27294. name: "Normal",
  27295. height: math.unit(9, "feet"),
  27296. default: true
  27297. },
  27298. ]
  27299. ))
  27300. characterMakers.push(() => makeCharacter(
  27301. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27302. {
  27303. front: {
  27304. height: math.unit(12, "feet"),
  27305. weight: math.unit(35000, "lb"),
  27306. name: "Front",
  27307. image: {
  27308. source: "./media/characters/p0tat0/front.svg",
  27309. extra: 1065 / 921,
  27310. bottom: 55.7 / 1121.25
  27311. }
  27312. },
  27313. },
  27314. [
  27315. {
  27316. name: "Normal",
  27317. height: math.unit(12, "feet"),
  27318. default: true
  27319. },
  27320. ]
  27321. ))
  27322. characterMakers.push(() => makeCharacter(
  27323. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27324. {
  27325. side: {
  27326. height: math.unit(6.5, "feet"),
  27327. weight: math.unit(800, "lb"),
  27328. name: "Side",
  27329. image: {
  27330. source: "./media/characters/dusk/side.svg",
  27331. extra: 615 / 373,
  27332. bottom: 53 / 664
  27333. }
  27334. },
  27335. sitting: {
  27336. height: math.unit(7, "feet"),
  27337. weight: math.unit(800, "lb"),
  27338. name: "Sitting",
  27339. image: {
  27340. source: "./media/characters/dusk/sitting.svg",
  27341. extra: 753 / 425,
  27342. bottom: 33 / 774
  27343. }
  27344. },
  27345. head: {
  27346. height: math.unit(6.1, "feet"),
  27347. name: "Head",
  27348. image: {
  27349. source: "./media/characters/dusk/head.svg"
  27350. }
  27351. },
  27352. },
  27353. [
  27354. {
  27355. name: "Normal",
  27356. height: math.unit(7, "feet"),
  27357. default: true
  27358. },
  27359. ]
  27360. ))
  27361. characterMakers.push(() => makeCharacter(
  27362. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27363. {
  27364. front: {
  27365. height: math.unit(15, "feet"),
  27366. weight: math.unit(7000, "lb"),
  27367. name: "Front",
  27368. image: {
  27369. source: "./media/characters/jay-direwolf/front.svg",
  27370. extra: 1810 / 1732,
  27371. bottom: 66 / 1892
  27372. }
  27373. },
  27374. },
  27375. [
  27376. {
  27377. name: "Normal",
  27378. height: math.unit(15, "feet"),
  27379. default: true
  27380. },
  27381. ]
  27382. ))
  27383. characterMakers.push(() => makeCharacter(
  27384. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27385. {
  27386. front: {
  27387. height: math.unit(4 + 9 / 12, "feet"),
  27388. weight: math.unit(130, "lb"),
  27389. name: "Front",
  27390. image: {
  27391. source: "./media/characters/anchovie/front.svg",
  27392. extra: 382 / 350,
  27393. bottom: 25 / 409
  27394. }
  27395. },
  27396. back: {
  27397. height: math.unit(4 + 9 / 12, "feet"),
  27398. weight: math.unit(130, "lb"),
  27399. name: "Back",
  27400. image: {
  27401. source: "./media/characters/anchovie/back.svg",
  27402. extra: 385 / 352,
  27403. bottom: 16.6 / 402
  27404. }
  27405. },
  27406. frontDressed: {
  27407. height: math.unit(4 + 9 / 12, "feet"),
  27408. weight: math.unit(130, "lb"),
  27409. name: "Front (Dressed)",
  27410. image: {
  27411. source: "./media/characters/anchovie/front-dressed.svg",
  27412. extra: 382 / 350,
  27413. bottom: 25 / 409
  27414. }
  27415. },
  27416. backDressed: {
  27417. height: math.unit(4 + 9 / 12, "feet"),
  27418. weight: math.unit(130, "lb"),
  27419. name: "Back (Dressed)",
  27420. image: {
  27421. source: "./media/characters/anchovie/back-dressed.svg",
  27422. extra: 385 / 352,
  27423. bottom: 16.6 / 402
  27424. }
  27425. },
  27426. },
  27427. [
  27428. {
  27429. name: "Micro",
  27430. height: math.unit(6.4, "inches")
  27431. },
  27432. {
  27433. name: "Normal",
  27434. height: math.unit(4 + 9 / 12, "feet"),
  27435. default: true
  27436. },
  27437. ]
  27438. ))
  27439. characterMakers.push(() => makeCharacter(
  27440. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27441. {
  27442. front: {
  27443. height: math.unit(2, "meters"),
  27444. weight: math.unit(180, "lb"),
  27445. name: "Front",
  27446. image: {
  27447. source: "./media/characters/acidrenamon/front.svg",
  27448. extra: 987 / 890,
  27449. bottom: 22.8 / 1009
  27450. }
  27451. },
  27452. back: {
  27453. height: math.unit(2, "meters"),
  27454. weight: math.unit(180, "lb"),
  27455. name: "Back",
  27456. image: {
  27457. source: "./media/characters/acidrenamon/back.svg",
  27458. extra: 983 / 891,
  27459. bottom: 8.4 / 992
  27460. }
  27461. },
  27462. head: {
  27463. height: math.unit(1.92, "feet"),
  27464. name: "Head",
  27465. image: {
  27466. source: "./media/characters/acidrenamon/head.svg"
  27467. }
  27468. },
  27469. rump: {
  27470. height: math.unit(1.72, "feet"),
  27471. name: "Rump",
  27472. image: {
  27473. source: "./media/characters/acidrenamon/rump.svg"
  27474. }
  27475. },
  27476. tail: {
  27477. height: math.unit(4.2, "feet"),
  27478. name: "Tail",
  27479. image: {
  27480. source: "./media/characters/acidrenamon/tail.svg"
  27481. }
  27482. },
  27483. },
  27484. [
  27485. {
  27486. name: "Normal",
  27487. height: math.unit(2, "meters"),
  27488. default: true
  27489. },
  27490. {
  27491. name: "Minimacro",
  27492. height: math.unit(7, "meters")
  27493. },
  27494. {
  27495. name: "Macro",
  27496. height: math.unit(200, "meters")
  27497. },
  27498. {
  27499. name: "Gigamacro",
  27500. height: math.unit(0.2, "earths")
  27501. },
  27502. ]
  27503. ))
  27504. characterMakers.push(() => makeCharacter(
  27505. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27506. {
  27507. front: {
  27508. height: math.unit(6, "feet"),
  27509. weight: math.unit(150, "lb"),
  27510. name: "Front",
  27511. image: {
  27512. source: "./media/characters/kenzie-lee/front.svg",
  27513. extra: 1525 / 1465,
  27514. bottom: 45 / 1570
  27515. }
  27516. },
  27517. side: {
  27518. height: math.unit(6, "feet"),
  27519. weight: math.unit(150, "lb"),
  27520. name: "Side",
  27521. image: {
  27522. source: "./media/characters/kenzie-lee/side.svg",
  27523. extra: 5505 / 5383,
  27524. bottom: 60 / 5573
  27525. }
  27526. },
  27527. paw: {
  27528. height: math.unit(0.57, "feet"),
  27529. name: "Paw",
  27530. image: {
  27531. source: "./media/characters/kenzie-lee/paw.svg"
  27532. }
  27533. },
  27534. },
  27535. [
  27536. {
  27537. name: "Normal",
  27538. height: math.unit(152, "feet"),
  27539. default: true
  27540. },
  27541. {
  27542. name: "Megamacro",
  27543. height: math.unit(7, "miles")
  27544. },
  27545. {
  27546. name: "Gigamacro",
  27547. height: math.unit(8000, "miles")
  27548. },
  27549. ]
  27550. ))
  27551. characterMakers.push(() => makeCharacter(
  27552. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27553. {
  27554. side: {
  27555. height: math.unit(6, "feet"),
  27556. weight: math.unit(150, "lb"),
  27557. name: "Side",
  27558. image: {
  27559. source: "./media/characters/withers/side.svg",
  27560. extra: 1830 / 1728,
  27561. bottom: 96 / 1927
  27562. }
  27563. },
  27564. front: {
  27565. height: math.unit(6, "feet"),
  27566. weight: math.unit(150, "lb"),
  27567. name: "Front",
  27568. image: {
  27569. source: "./media/characters/withers/front.svg",
  27570. extra: 1514 / 1438,
  27571. bottom: 118 / 1632
  27572. }
  27573. },
  27574. },
  27575. [
  27576. {
  27577. name: "Macro",
  27578. height: math.unit(168, "feet"),
  27579. default: true
  27580. },
  27581. {
  27582. name: "Megamacro",
  27583. height: math.unit(15, "miles")
  27584. }
  27585. ]
  27586. ))
  27587. characterMakers.push(() => makeCharacter(
  27588. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27589. {
  27590. front: {
  27591. height: math.unit(6 + 7 / 12, "feet"),
  27592. weight: math.unit(250, "lb"),
  27593. name: "Front",
  27594. image: {
  27595. source: "./media/characters/nemoskii/front.svg",
  27596. extra: 2270 / 1734,
  27597. bottom: 86 / 2354
  27598. }
  27599. },
  27600. back: {
  27601. height: math.unit(6 + 7 / 12, "feet"),
  27602. weight: math.unit(250, "lb"),
  27603. name: "Back",
  27604. image: {
  27605. source: "./media/characters/nemoskii/back.svg",
  27606. extra: 1845 / 1788,
  27607. bottom: 10.5 / 1852
  27608. }
  27609. },
  27610. head: {
  27611. height: math.unit(1.31, "feet"),
  27612. name: "Head",
  27613. image: {
  27614. source: "./media/characters/nemoskii/head.svg"
  27615. }
  27616. },
  27617. },
  27618. [
  27619. {
  27620. name: "Micro",
  27621. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27622. },
  27623. {
  27624. name: "Normal",
  27625. height: math.unit(6 + 7 / 12, "feet"),
  27626. default: true
  27627. },
  27628. {
  27629. name: "Macro",
  27630. height: math.unit((6 + 7 / 12) * 150, "feet")
  27631. },
  27632. {
  27633. name: "Macro+",
  27634. height: math.unit((6 + 7 / 12) * 500, "feet")
  27635. },
  27636. {
  27637. name: "Megamacro",
  27638. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27639. },
  27640. ]
  27641. ))
  27642. characterMakers.push(() => makeCharacter(
  27643. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27644. {
  27645. front: {
  27646. height: math.unit(1, "mile"),
  27647. weight: math.unit(265261.9, "lb"),
  27648. name: "Front",
  27649. image: {
  27650. source: "./media/characters/shui/front.svg",
  27651. extra: 1633 / 1564,
  27652. bottom: 91.5 / 1726
  27653. }
  27654. },
  27655. },
  27656. [
  27657. {
  27658. name: "Macro",
  27659. height: math.unit(1, "mile"),
  27660. default: true
  27661. },
  27662. ]
  27663. ))
  27664. characterMakers.push(() => makeCharacter(
  27665. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27666. {
  27667. front: {
  27668. height: math.unit(12 + 6 / 12, "feet"),
  27669. weight: math.unit(1342, "lb"),
  27670. name: "Front",
  27671. image: {
  27672. source: "./media/characters/arokh-takakura/front.svg",
  27673. extra: 1089 / 1043,
  27674. bottom: 77.4 / 1176.7
  27675. }
  27676. },
  27677. back: {
  27678. height: math.unit(12 + 6 / 12, "feet"),
  27679. weight: math.unit(1342, "lb"),
  27680. name: "Back",
  27681. image: {
  27682. source: "./media/characters/arokh-takakura/back.svg",
  27683. extra: 1046 / 1019,
  27684. bottom: 102 / 1150
  27685. }
  27686. },
  27687. },
  27688. [
  27689. {
  27690. name: "Big",
  27691. height: math.unit(12 + 6 / 12, "feet"),
  27692. default: true
  27693. },
  27694. ]
  27695. ))
  27696. characterMakers.push(() => makeCharacter(
  27697. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27698. {
  27699. front: {
  27700. height: math.unit(5 + 6 / 12, "feet"),
  27701. weight: math.unit(150, "lb"),
  27702. name: "Front",
  27703. image: {
  27704. source: "./media/characters/theo/front.svg",
  27705. extra: 1184 / 1131,
  27706. bottom: 7.4 / 1191
  27707. }
  27708. },
  27709. },
  27710. [
  27711. {
  27712. name: "Micro",
  27713. height: math.unit(5, "inches")
  27714. },
  27715. {
  27716. name: "Normal",
  27717. height: math.unit(5 + 6 / 12, "feet"),
  27718. default: true
  27719. },
  27720. ]
  27721. ))
  27722. characterMakers.push(() => makeCharacter(
  27723. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27724. {
  27725. front: {
  27726. height: math.unit(5 + 9 / 12, "feet"),
  27727. weight: math.unit(130, "lb"),
  27728. name: "Front",
  27729. image: {
  27730. source: "./media/characters/cecelia-swift/front.svg",
  27731. extra: 502 / 484,
  27732. bottom: 23 / 523
  27733. }
  27734. },
  27735. back: {
  27736. height: math.unit(5 + 9 / 12, "feet"),
  27737. weight: math.unit(130, "lb"),
  27738. name: "Back",
  27739. image: {
  27740. source: "./media/characters/cecelia-swift/back.svg",
  27741. extra: 499 / 485,
  27742. bottom: 12 / 511
  27743. }
  27744. },
  27745. head: {
  27746. height: math.unit(0.90, "feet"),
  27747. name: "Head",
  27748. image: {
  27749. source: "./media/characters/cecelia-swift/head.svg"
  27750. }
  27751. },
  27752. rump: {
  27753. height: math.unit(1.75, "feet"),
  27754. name: "Rump",
  27755. image: {
  27756. source: "./media/characters/cecelia-swift/rump.svg"
  27757. }
  27758. },
  27759. },
  27760. [
  27761. {
  27762. name: "Normal",
  27763. height: math.unit(5 + 9 / 12, "feet"),
  27764. default: true
  27765. },
  27766. {
  27767. name: "Big",
  27768. height: math.unit(50, "feet")
  27769. },
  27770. {
  27771. name: "Macro",
  27772. height: math.unit(100, "feet")
  27773. },
  27774. {
  27775. name: "Macro+",
  27776. height: math.unit(500, "feet")
  27777. },
  27778. {
  27779. name: "Macro++",
  27780. height: math.unit(1000, "feet")
  27781. },
  27782. ]
  27783. ))
  27784. characterMakers.push(() => makeCharacter(
  27785. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27786. {
  27787. front: {
  27788. height: math.unit(6, "feet"),
  27789. weight: math.unit(150, "lb"),
  27790. name: "Front",
  27791. image: {
  27792. source: "./media/characters/kaunan/front.svg",
  27793. extra: 2890 / 2523,
  27794. bottom: 49 / 2939
  27795. }
  27796. },
  27797. },
  27798. [
  27799. {
  27800. name: "Macro",
  27801. height: math.unit(150, "feet"),
  27802. default: true
  27803. },
  27804. ]
  27805. ))
  27806. characterMakers.push(() => makeCharacter(
  27807. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27808. {
  27809. front: {
  27810. height: math.unit(175, "cm"),
  27811. weight: math.unit(60, "kg"),
  27812. name: "Front",
  27813. image: {
  27814. source: "./media/characters/fei/front.svg",
  27815. extra: 1873/1723,
  27816. bottom: 53/1926
  27817. }
  27818. },
  27819. },
  27820. [
  27821. {
  27822. name: "Mortal",
  27823. height: math.unit(175, "cm")
  27824. },
  27825. {
  27826. name: "Normal",
  27827. height: math.unit(3500, "m"),
  27828. default: true
  27829. },
  27830. {
  27831. name: "Stroll",
  27832. height: math.unit(17.5, "km")
  27833. },
  27834. {
  27835. name: "Showoff",
  27836. height: math.unit(175, "km")
  27837. },
  27838. ]
  27839. ))
  27840. characterMakers.push(() => makeCharacter(
  27841. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27842. {
  27843. front: {
  27844. height: math.unit(7, "feet"),
  27845. weight: math.unit(1000, "kg"),
  27846. name: "Front",
  27847. image: {
  27848. source: "./media/characters/edrax/front.svg",
  27849. extra: 2838 / 2550,
  27850. bottom: 130 / 2968
  27851. }
  27852. },
  27853. },
  27854. [
  27855. {
  27856. name: "Small",
  27857. height: math.unit(7, "feet")
  27858. },
  27859. {
  27860. name: "Normal",
  27861. height: math.unit(1500, "meters")
  27862. },
  27863. {
  27864. name: "Mega",
  27865. height: math.unit(12000000, "km"),
  27866. default: true
  27867. },
  27868. {
  27869. name: "Megamacro",
  27870. height: math.unit(10600000, "lightyears")
  27871. },
  27872. {
  27873. name: "Hypermacro",
  27874. height: math.unit(256, "yottameters")
  27875. },
  27876. ]
  27877. ))
  27878. characterMakers.push(() => makeCharacter(
  27879. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27880. {
  27881. front: {
  27882. height: math.unit(10, "feet"),
  27883. weight: math.unit(750, "lb"),
  27884. name: "Front",
  27885. image: {
  27886. source: "./media/characters/clove/front.svg",
  27887. extra: 2031 / 1860,
  27888. bottom: 47.8 / 2080
  27889. }
  27890. },
  27891. back: {
  27892. height: math.unit(10, "feet"),
  27893. weight: math.unit(750, "lb"),
  27894. name: "Back",
  27895. image: {
  27896. source: "./media/characters/clove/back.svg",
  27897. extra: 2025 / 1859,
  27898. bottom: 46 / 2071
  27899. }
  27900. },
  27901. },
  27902. [
  27903. {
  27904. name: "Normal",
  27905. height: math.unit(10, "feet"),
  27906. default: true
  27907. },
  27908. ]
  27909. ))
  27910. characterMakers.push(() => makeCharacter(
  27911. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27912. {
  27913. front: {
  27914. height: math.unit(4, "feet"),
  27915. weight: math.unit(50, "lb"),
  27916. name: "Front",
  27917. image: {
  27918. source: "./media/characters/alex-rabbit/front.svg",
  27919. extra: 507 / 458,
  27920. bottom: 18.5 / 527
  27921. }
  27922. },
  27923. back: {
  27924. height: math.unit(4, "feet"),
  27925. weight: math.unit(50, "lb"),
  27926. name: "Back",
  27927. image: {
  27928. source: "./media/characters/alex-rabbit/back.svg",
  27929. extra: 502 / 460,
  27930. bottom: 18.9 / 521
  27931. }
  27932. },
  27933. },
  27934. [
  27935. {
  27936. name: "Normal",
  27937. height: math.unit(4, "feet"),
  27938. default: true
  27939. },
  27940. ]
  27941. ))
  27942. characterMakers.push(() => makeCharacter(
  27943. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27944. {
  27945. front: {
  27946. height: math.unit(1 + 3 / 12, "feet"),
  27947. weight: math.unit(80, "lb"),
  27948. name: "Front",
  27949. image: {
  27950. source: "./media/characters/zander-rose/front.svg",
  27951. extra: 916 / 797,
  27952. bottom: 17 / 933
  27953. }
  27954. },
  27955. back: {
  27956. height: math.unit(1 + 3 / 12, "feet"),
  27957. weight: math.unit(80, "lb"),
  27958. name: "Back",
  27959. image: {
  27960. source: "./media/characters/zander-rose/back.svg",
  27961. extra: 903 / 779,
  27962. bottom: 31 / 934
  27963. }
  27964. },
  27965. },
  27966. [
  27967. {
  27968. name: "Normal",
  27969. height: math.unit(1 + 3 / 12, "feet"),
  27970. default: true
  27971. },
  27972. ]
  27973. ))
  27974. characterMakers.push(() => makeCharacter(
  27975. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27976. {
  27977. anthro: {
  27978. height: math.unit(6, "feet"),
  27979. weight: math.unit(150, "lb"),
  27980. name: "Anthro",
  27981. image: {
  27982. source: "./media/characters/razz/anthro.svg",
  27983. extra: 1437 / 1343,
  27984. bottom: 48 / 1485
  27985. }
  27986. },
  27987. feral: {
  27988. height: math.unit(6, "feet"),
  27989. weight: math.unit(150, "lb"),
  27990. name: "Feral",
  27991. image: {
  27992. source: "./media/characters/razz/feral.svg",
  27993. extra: 2569 / 1385,
  27994. bottom: 95 / 2664
  27995. }
  27996. },
  27997. },
  27998. [
  27999. {
  28000. name: "Normal",
  28001. height: math.unit(6, "feet"),
  28002. default: true
  28003. },
  28004. ]
  28005. ))
  28006. characterMakers.push(() => makeCharacter(
  28007. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28008. {
  28009. front: {
  28010. height: math.unit(9 + 4 / 12, "feet"),
  28011. weight: math.unit(500, "lb"),
  28012. name: "Front",
  28013. image: {
  28014. source: "./media/characters/morrigan/front.svg",
  28015. extra: 2707 / 2579,
  28016. bottom: 156 / 2863
  28017. }
  28018. },
  28019. },
  28020. [
  28021. {
  28022. name: "Normal",
  28023. height: math.unit(9 + 4 / 12, "feet"),
  28024. default: true
  28025. },
  28026. ]
  28027. ))
  28028. characterMakers.push(() => makeCharacter(
  28029. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28030. {
  28031. front: {
  28032. height: math.unit(5, "stories"),
  28033. weight: math.unit(4000, "lb"),
  28034. name: "Front",
  28035. image: {
  28036. source: "./media/characters/jenene/front.svg",
  28037. extra: 1780 / 1710,
  28038. bottom: 57 / 1837
  28039. }
  28040. },
  28041. },
  28042. [
  28043. {
  28044. name: "Normal",
  28045. height: math.unit(5, "stories"),
  28046. default: true
  28047. },
  28048. ]
  28049. ))
  28050. characterMakers.push(() => makeCharacter(
  28051. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28052. {
  28053. taurSfw: {
  28054. height: math.unit(10, "meters"),
  28055. weight: math.unit(17500, "kg"),
  28056. name: "Taur",
  28057. image: {
  28058. source: "./media/characters/faey/taur-sfw.svg",
  28059. extra: 1200 / 968,
  28060. bottom: 41 / 1241
  28061. }
  28062. },
  28063. chestmaw: {
  28064. height: math.unit(2.01, "meters"),
  28065. name: "Chestmaw",
  28066. image: {
  28067. source: "./media/characters/faey/chestmaw.svg"
  28068. }
  28069. },
  28070. foot: {
  28071. height: math.unit(2.43, "meters"),
  28072. name: "Foot",
  28073. image: {
  28074. source: "./media/characters/faey/foot.svg"
  28075. }
  28076. },
  28077. jaws: {
  28078. height: math.unit(1.66, "meters"),
  28079. name: "Jaws",
  28080. image: {
  28081. source: "./media/characters/faey/jaws.svg"
  28082. }
  28083. },
  28084. tongues: {
  28085. height: math.unit(2.01, "meters"),
  28086. name: "Tongues",
  28087. image: {
  28088. source: "./media/characters/faey/tongues.svg"
  28089. }
  28090. },
  28091. },
  28092. [
  28093. {
  28094. name: "Small",
  28095. height: math.unit(10, "meters"),
  28096. default: true
  28097. },
  28098. {
  28099. name: "Big",
  28100. height: math.unit(500000, "km")
  28101. },
  28102. ]
  28103. ))
  28104. characterMakers.push(() => makeCharacter(
  28105. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28106. {
  28107. front: {
  28108. height: math.unit(7, "feet"),
  28109. weight: math.unit(275, "lb"),
  28110. name: "Front",
  28111. image: {
  28112. source: "./media/characters/roku/front.svg",
  28113. extra: 903 / 878,
  28114. bottom: 37 / 940
  28115. }
  28116. },
  28117. },
  28118. [
  28119. {
  28120. name: "Normal",
  28121. height: math.unit(7, "feet"),
  28122. default: true
  28123. },
  28124. {
  28125. name: "Macro",
  28126. height: math.unit(500, "feet")
  28127. },
  28128. {
  28129. name: "Megamacro",
  28130. height: math.unit(200, "miles")
  28131. },
  28132. ]
  28133. ))
  28134. characterMakers.push(() => makeCharacter(
  28135. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28136. {
  28137. front: {
  28138. height: math.unit(6 + 2 / 12, "feet"),
  28139. weight: math.unit(150, "lb"),
  28140. name: "Front",
  28141. image: {
  28142. source: "./media/characters/lira/front.svg",
  28143. extra: 1727 / 1605,
  28144. bottom: 26 / 1753
  28145. }
  28146. },
  28147. back: {
  28148. height: math.unit(6 + 2 / 12, "feet"),
  28149. weight: math.unit(150, "lb"),
  28150. name: "Back",
  28151. image: {
  28152. source: "./media/characters/lira/back.svg",
  28153. extra: 1713/1621,
  28154. bottom: 20/1733
  28155. }
  28156. },
  28157. hand: {
  28158. height: math.unit(0.75, "feet"),
  28159. name: "Hand",
  28160. image: {
  28161. source: "./media/characters/lira/hand.svg"
  28162. }
  28163. },
  28164. maw: {
  28165. height: math.unit(0.65, "feet"),
  28166. name: "Maw",
  28167. image: {
  28168. source: "./media/characters/lira/maw.svg"
  28169. }
  28170. },
  28171. pawDigi: {
  28172. height: math.unit(1.6, "feet"),
  28173. name: "Paw Digi",
  28174. image: {
  28175. source: "./media/characters/lira/paw-digi.svg"
  28176. }
  28177. },
  28178. pawPlanti: {
  28179. height: math.unit(1.4, "feet"),
  28180. name: "Paw Planti",
  28181. image: {
  28182. source: "./media/characters/lira/paw-planti.svg"
  28183. }
  28184. },
  28185. },
  28186. [
  28187. {
  28188. name: "Normal",
  28189. height: math.unit(6 + 2 / 12, "feet"),
  28190. default: true
  28191. },
  28192. {
  28193. name: "Macro",
  28194. height: math.unit(100, "feet")
  28195. },
  28196. {
  28197. name: "Macro²",
  28198. height: math.unit(1600, "feet")
  28199. },
  28200. {
  28201. name: "Planetary",
  28202. height: math.unit(20, "earths")
  28203. },
  28204. ]
  28205. ))
  28206. characterMakers.push(() => makeCharacter(
  28207. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28208. {
  28209. front: {
  28210. height: math.unit(6, "feet"),
  28211. weight: math.unit(150, "lb"),
  28212. name: "Front",
  28213. image: {
  28214. source: "./media/characters/hadjet/front.svg",
  28215. extra: 1480 / 1346,
  28216. bottom: 26 / 1506
  28217. }
  28218. },
  28219. frontNsfw: {
  28220. height: math.unit(6, "feet"),
  28221. weight: math.unit(150, "lb"),
  28222. name: "Front (NSFW)",
  28223. image: {
  28224. source: "./media/characters/hadjet/front-nsfw.svg",
  28225. extra: 1440 / 1358,
  28226. bottom: 52 / 1492
  28227. }
  28228. },
  28229. },
  28230. [
  28231. {
  28232. name: "Macro",
  28233. height: math.unit(10, "stories"),
  28234. default: true
  28235. },
  28236. {
  28237. name: "Megamacro",
  28238. height: math.unit(1.5, "miles")
  28239. },
  28240. {
  28241. name: "Megamacro+",
  28242. height: math.unit(5, "miles")
  28243. },
  28244. ]
  28245. ))
  28246. characterMakers.push(() => makeCharacter(
  28247. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28248. {
  28249. side: {
  28250. height: math.unit(106, "feet"),
  28251. weight: math.unit(500, "tonnes"),
  28252. name: "Side",
  28253. image: {
  28254. source: "./media/characters/kodran/side.svg",
  28255. extra: 553 / 480,
  28256. bottom: 33 / 586
  28257. }
  28258. },
  28259. front: {
  28260. height: math.unit(132, "feet"),
  28261. weight: math.unit(500, "tonnes"),
  28262. name: "Front",
  28263. image: {
  28264. source: "./media/characters/kodran/front.svg",
  28265. extra: 667 / 643,
  28266. bottom: 42 / 709
  28267. }
  28268. },
  28269. flying: {
  28270. height: math.unit(350, "feet"),
  28271. weight: math.unit(500, "tonnes"),
  28272. name: "Flying",
  28273. image: {
  28274. source: "./media/characters/kodran/flying.svg"
  28275. }
  28276. },
  28277. foot: {
  28278. height: math.unit(33, "feet"),
  28279. name: "Foot",
  28280. image: {
  28281. source: "./media/characters/kodran/foot.svg"
  28282. }
  28283. },
  28284. footFront: {
  28285. height: math.unit(19, "feet"),
  28286. name: "Foot (Front)",
  28287. image: {
  28288. source: "./media/characters/kodran/foot-front.svg",
  28289. extra: 261 / 261,
  28290. bottom: 91 / 352
  28291. }
  28292. },
  28293. headFront: {
  28294. height: math.unit(53, "feet"),
  28295. name: "Head (Front)",
  28296. image: {
  28297. source: "./media/characters/kodran/head-front.svg"
  28298. }
  28299. },
  28300. headSide: {
  28301. height: math.unit(65, "feet"),
  28302. name: "Head (Side)",
  28303. image: {
  28304. source: "./media/characters/kodran/head-side.svg"
  28305. }
  28306. },
  28307. throat: {
  28308. height: math.unit(79, "feet"),
  28309. name: "Throat",
  28310. image: {
  28311. source: "./media/characters/kodran/throat.svg"
  28312. }
  28313. },
  28314. },
  28315. [
  28316. {
  28317. name: "Large",
  28318. height: math.unit(106, "feet"),
  28319. default: true
  28320. },
  28321. ]
  28322. ))
  28323. characterMakers.push(() => makeCharacter(
  28324. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28325. {
  28326. side: {
  28327. height: math.unit(11, "feet"),
  28328. weight: math.unit(150, "lb"),
  28329. name: "Side",
  28330. image: {
  28331. source: "./media/characters/pyxaron/side.svg",
  28332. extra: 305 / 195,
  28333. bottom: 17 / 322
  28334. }
  28335. },
  28336. },
  28337. [
  28338. {
  28339. name: "Normal",
  28340. height: math.unit(11, "feet"),
  28341. default: true
  28342. },
  28343. ]
  28344. ))
  28345. characterMakers.push(() => makeCharacter(
  28346. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28347. {
  28348. front: {
  28349. height: math.unit(6, "feet"),
  28350. weight: math.unit(150, "lb"),
  28351. name: "Front",
  28352. image: {
  28353. source: "./media/characters/meep/front.svg",
  28354. extra: 88 / 80,
  28355. bottom: 6 / 94
  28356. }
  28357. },
  28358. },
  28359. [
  28360. {
  28361. name: "Fun Sized",
  28362. height: math.unit(2, "inches"),
  28363. default: true
  28364. },
  28365. {
  28366. name: "Friend Sized",
  28367. height: math.unit(8, "inches")
  28368. },
  28369. ]
  28370. ))
  28371. characterMakers.push(() => makeCharacter(
  28372. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28373. {
  28374. front: {
  28375. height: math.unit(15, "feet"),
  28376. weight: math.unit(2500, "lb"),
  28377. name: "Front",
  28378. image: {
  28379. source: "./media/characters/holly-rabbit/front.svg",
  28380. extra: 1433 / 1233,
  28381. bottom: 125 / 1558
  28382. }
  28383. },
  28384. dick: {
  28385. height: math.unit(4.6, "feet"),
  28386. name: "Dick",
  28387. image: {
  28388. source: "./media/characters/holly-rabbit/dick.svg"
  28389. }
  28390. },
  28391. },
  28392. [
  28393. {
  28394. name: "Normal",
  28395. height: math.unit(15, "feet"),
  28396. default: true
  28397. },
  28398. {
  28399. name: "Macro",
  28400. height: math.unit(250, "feet")
  28401. },
  28402. {
  28403. name: "Macro+",
  28404. height: math.unit(2500, "feet")
  28405. },
  28406. ]
  28407. ))
  28408. characterMakers.push(() => makeCharacter(
  28409. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28410. {
  28411. front: {
  28412. height: math.unit(3.02, "meters"),
  28413. weight: math.unit(500, "kg"),
  28414. name: "Front",
  28415. image: {
  28416. source: "./media/characters/drena/front.svg",
  28417. extra: 282 / 243,
  28418. bottom: 8 / 290
  28419. }
  28420. },
  28421. side: {
  28422. height: math.unit(3.02, "meters"),
  28423. weight: math.unit(500, "kg"),
  28424. name: "Side",
  28425. image: {
  28426. source: "./media/characters/drena/side.svg",
  28427. extra: 280 / 245,
  28428. bottom: 10 / 290
  28429. }
  28430. },
  28431. back: {
  28432. height: math.unit(3.02, "meters"),
  28433. weight: math.unit(500, "kg"),
  28434. name: "Back",
  28435. image: {
  28436. source: "./media/characters/drena/back.svg",
  28437. extra: 278 / 243,
  28438. bottom: 2 / 280
  28439. }
  28440. },
  28441. foot: {
  28442. height: math.unit(0.75, "meters"),
  28443. name: "Foot",
  28444. image: {
  28445. source: "./media/characters/drena/foot.svg"
  28446. }
  28447. },
  28448. maw: {
  28449. height: math.unit(0.82, "meters"),
  28450. name: "Maw",
  28451. image: {
  28452. source: "./media/characters/drena/maw.svg"
  28453. }
  28454. },
  28455. rump: {
  28456. height: math.unit(0.93, "meters"),
  28457. name: "Rump",
  28458. image: {
  28459. source: "./media/characters/drena/rump.svg"
  28460. }
  28461. },
  28462. },
  28463. [
  28464. {
  28465. name: "Normal",
  28466. height: math.unit(3.02, "meters"),
  28467. default: true
  28468. },
  28469. ]
  28470. ))
  28471. characterMakers.push(() => makeCharacter(
  28472. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28473. {
  28474. front: {
  28475. height: math.unit(6 + 4 / 12, "feet"),
  28476. weight: math.unit(250, "lb"),
  28477. name: "Front",
  28478. image: {
  28479. source: "./media/characters/remmyzilla/front.svg",
  28480. extra: 4033 / 3588,
  28481. bottom: 123 / 4156
  28482. }
  28483. },
  28484. back: {
  28485. height: math.unit(6 + 4 / 12, "feet"),
  28486. weight: math.unit(250, "lb"),
  28487. name: "Back",
  28488. image: {
  28489. source: "./media/characters/remmyzilla/back.svg",
  28490. extra: 2687 / 2555,
  28491. bottom: 48 / 2735
  28492. }
  28493. },
  28494. paw: {
  28495. height: math.unit(1.73, "feet"),
  28496. name: "Paw",
  28497. image: {
  28498. source: "./media/characters/remmyzilla/paw.svg"
  28499. }
  28500. },
  28501. maw: {
  28502. height: math.unit(1.73, "feet"),
  28503. name: "Maw",
  28504. image: {
  28505. source: "./media/characters/remmyzilla/maw.svg"
  28506. }
  28507. },
  28508. },
  28509. [
  28510. {
  28511. name: "Normal",
  28512. height: math.unit(6 + 4 / 12, "feet")
  28513. },
  28514. {
  28515. name: "Minimacro",
  28516. height: math.unit(12 + 8 / 12, "feet")
  28517. },
  28518. {
  28519. name: "Normal",
  28520. height: math.unit(640, "feet"),
  28521. default: true
  28522. },
  28523. {
  28524. name: "Megamacro",
  28525. height: math.unit(6400, "feet")
  28526. },
  28527. {
  28528. name: "Gigamacro",
  28529. height: math.unit(64000, "miles")
  28530. },
  28531. ]
  28532. ))
  28533. characterMakers.push(() => makeCharacter(
  28534. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28535. {
  28536. front: {
  28537. height: math.unit(2.5, "meters"),
  28538. weight: math.unit(300, "lb"),
  28539. name: "Front",
  28540. image: {
  28541. source: "./media/characters/lawrence/front.svg",
  28542. extra: 357 / 335,
  28543. bottom: 30 / 387
  28544. }
  28545. },
  28546. back: {
  28547. height: math.unit(2.5, "meters"),
  28548. weight: math.unit(300, "lb"),
  28549. name: "Back",
  28550. image: {
  28551. source: "./media/characters/lawrence/back.svg",
  28552. extra: 357 / 338,
  28553. bottom: 16 / 373
  28554. }
  28555. },
  28556. head: {
  28557. height: math.unit(0.9, "meter"),
  28558. name: "Head",
  28559. image: {
  28560. source: "./media/characters/lawrence/head.svg"
  28561. }
  28562. },
  28563. maw: {
  28564. height: math.unit(0.7, "meter"),
  28565. name: "Maw",
  28566. image: {
  28567. source: "./media/characters/lawrence/maw.svg"
  28568. }
  28569. },
  28570. footBottom: {
  28571. height: math.unit(0.5, "meter"),
  28572. name: "Foot (Bottom)",
  28573. image: {
  28574. source: "./media/characters/lawrence/foot-bottom.svg"
  28575. }
  28576. },
  28577. footTop: {
  28578. height: math.unit(0.5, "meter"),
  28579. name: "Foot (Top)",
  28580. image: {
  28581. source: "./media/characters/lawrence/foot-top.svg"
  28582. }
  28583. },
  28584. },
  28585. [
  28586. {
  28587. name: "Normal",
  28588. height: math.unit(2.5, "meters"),
  28589. default: true
  28590. },
  28591. {
  28592. name: "Macro",
  28593. height: math.unit(95, "meters")
  28594. },
  28595. {
  28596. name: "Megamacro",
  28597. height: math.unit(150, "km")
  28598. },
  28599. ]
  28600. ))
  28601. characterMakers.push(() => makeCharacter(
  28602. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28603. {
  28604. front: {
  28605. height: math.unit(4.2, "meters"),
  28606. name: "Front",
  28607. image: {
  28608. source: "./media/characters/sydney/front.svg",
  28609. extra: 1323 / 1277,
  28610. bottom: 111 / 1434
  28611. }
  28612. },
  28613. },
  28614. [
  28615. {
  28616. name: "Normal",
  28617. height: math.unit(4.2, "meters"),
  28618. default: true
  28619. },
  28620. ]
  28621. ))
  28622. characterMakers.push(() => makeCharacter(
  28623. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28624. {
  28625. back: {
  28626. height: math.unit(201, "feet"),
  28627. name: "Back",
  28628. image: {
  28629. source: "./media/characters/jessica/back.svg",
  28630. extra: 273 / 259,
  28631. bottom: 7 / 280
  28632. }
  28633. },
  28634. },
  28635. [
  28636. {
  28637. name: "Normal",
  28638. height: math.unit(201, "feet"),
  28639. default: true
  28640. },
  28641. {
  28642. name: "Megamacro",
  28643. height: math.unit(8, "miles")
  28644. },
  28645. ]
  28646. ))
  28647. characterMakers.push(() => makeCharacter(
  28648. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28649. {
  28650. side: {
  28651. height: math.unit(320, "cm"),
  28652. name: "Side",
  28653. image: {
  28654. source: "./media/characters/victoria/side.svg",
  28655. extra: 778 / 346,
  28656. bottom: 56 / 834
  28657. }
  28658. },
  28659. maw: {
  28660. height: math.unit(5.9, "feet"),
  28661. name: "Maw",
  28662. image: {
  28663. source: "./media/characters/victoria/maw.svg"
  28664. }
  28665. },
  28666. },
  28667. [
  28668. {
  28669. name: "Normal",
  28670. height: math.unit(320, "cm"),
  28671. default: true
  28672. },
  28673. ]
  28674. ))
  28675. characterMakers.push(() => makeCharacter(
  28676. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28677. {
  28678. front: {
  28679. height: math.unit(5 + 6 / 12, "feet"),
  28680. name: "Front",
  28681. image: {
  28682. source: "./media/characters/cat/front.svg",
  28683. extra: 1449/1295,
  28684. bottom: 34/1483
  28685. }
  28686. },
  28687. back: {
  28688. height: math.unit(5 + 6 / 12, "feet"),
  28689. name: "Back",
  28690. image: {
  28691. source: "./media/characters/cat/back.svg",
  28692. extra: 1466/1301,
  28693. bottom: 19/1485
  28694. }
  28695. },
  28696. taur: {
  28697. height: math.unit(7, "feet"),
  28698. name: "Taur",
  28699. image: {
  28700. source: "./media/characters/cat/taur.svg",
  28701. extra: 1389/1233,
  28702. bottom: 83/1472
  28703. }
  28704. },
  28705. lucarioFront: {
  28706. height: math.unit(4, "feet"),
  28707. name: "Lucario (Front)",
  28708. image: {
  28709. source: "./media/characters/cat/lucario-front.svg",
  28710. extra: 1149/1019,
  28711. bottom: 84/1233
  28712. }
  28713. },
  28714. lucarioBack: {
  28715. height: math.unit(4, "feet"),
  28716. name: "Lucario (Back)",
  28717. image: {
  28718. source: "./media/characters/cat/lucario-back.svg",
  28719. extra: 1190/1059,
  28720. bottom: 33/1223
  28721. }
  28722. },
  28723. megaLucario: {
  28724. height: math.unit(4, "feet"),
  28725. name: "Mega Lucario",
  28726. image: {
  28727. source: "./media/characters/cat/mega-lucario.svg",
  28728. extra: 1515 / 1319,
  28729. bottom: 63 / 1578
  28730. }
  28731. },
  28732. nickit: {
  28733. height: math.unit(2, "feet"),
  28734. name: "Nickit",
  28735. image: {
  28736. source: "./media/characters/cat/nickit.svg",
  28737. extra: 1980 / 1585,
  28738. bottom: 102 / 2082
  28739. }
  28740. },
  28741. lopunnyFront: {
  28742. height: math.unit(5, "feet"),
  28743. name: "Lopunny (Front)",
  28744. image: {
  28745. source: "./media/characters/cat/lopunny-front.svg",
  28746. extra: 1782 / 1469,
  28747. bottom: 38 / 1820
  28748. }
  28749. },
  28750. lopunnyBack: {
  28751. height: math.unit(5, "feet"),
  28752. name: "Lopunny (Back)",
  28753. image: {
  28754. source: "./media/characters/cat/lopunny-back.svg",
  28755. extra: 1660 / 1490,
  28756. bottom: 25 / 1685
  28757. }
  28758. },
  28759. },
  28760. [
  28761. {
  28762. name: "Really small",
  28763. height: math.unit(1, "nm")
  28764. },
  28765. {
  28766. name: "Micro",
  28767. height: math.unit(5, "inches")
  28768. },
  28769. {
  28770. name: "Normal",
  28771. height: math.unit(5 + 6 / 12, "feet"),
  28772. default: true
  28773. },
  28774. {
  28775. name: "Macro",
  28776. height: math.unit(50, "feet")
  28777. },
  28778. {
  28779. name: "Macro+",
  28780. height: math.unit(150, "feet")
  28781. },
  28782. {
  28783. name: "Megamacro",
  28784. height: math.unit(100, "miles")
  28785. },
  28786. ]
  28787. ))
  28788. characterMakers.push(() => makeCharacter(
  28789. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28790. {
  28791. front: {
  28792. height: math.unit(63.4, "meters"),
  28793. weight: math.unit(3.28349e+6, "kilograms"),
  28794. name: "Front",
  28795. image: {
  28796. source: "./media/characters/kirina-violet/front.svg",
  28797. extra: 2812 / 2725,
  28798. bottom: 0 / 2812
  28799. }
  28800. },
  28801. back: {
  28802. height: math.unit(63.4, "meters"),
  28803. weight: math.unit(3.28349e+6, "kilograms"),
  28804. name: "Back",
  28805. image: {
  28806. source: "./media/characters/kirina-violet/back.svg",
  28807. extra: 2812 / 2725,
  28808. bottom: 0 / 2812
  28809. }
  28810. },
  28811. mouth: {
  28812. height: math.unit(4.35, "meters"),
  28813. name: "Mouth",
  28814. image: {
  28815. source: "./media/characters/kirina-violet/mouth.svg"
  28816. }
  28817. },
  28818. paw: {
  28819. height: math.unit(5.6, "meters"),
  28820. name: "Paw",
  28821. image: {
  28822. source: "./media/characters/kirina-violet/paw.svg"
  28823. }
  28824. },
  28825. tail: {
  28826. height: math.unit(18, "meters"),
  28827. name: "Tail",
  28828. image: {
  28829. source: "./media/characters/kirina-violet/tail.svg"
  28830. }
  28831. },
  28832. },
  28833. [
  28834. {
  28835. name: "Macro",
  28836. height: math.unit(63.4, "meters"),
  28837. default: true
  28838. },
  28839. ]
  28840. ))
  28841. characterMakers.push(() => makeCharacter(
  28842. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28843. {
  28844. front: {
  28845. height: math.unit(75, "feet"),
  28846. name: "Front",
  28847. image: {
  28848. source: "./media/characters/cat-gigachu/front.svg",
  28849. extra: 1239/1027,
  28850. bottom: 32/1271
  28851. }
  28852. },
  28853. back: {
  28854. height: math.unit(75, "feet"),
  28855. name: "Back",
  28856. image: {
  28857. source: "./media/characters/cat-gigachu/back.svg",
  28858. extra: 1229/1030,
  28859. bottom: 9/1238
  28860. }
  28861. },
  28862. },
  28863. [
  28864. {
  28865. name: "Dynamax",
  28866. height: math.unit(75, "feet"),
  28867. default: true
  28868. },
  28869. ]
  28870. ))
  28871. characterMakers.push(() => makeCharacter(
  28872. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28873. {
  28874. front: {
  28875. height: math.unit(6, "feet"),
  28876. weight: math.unit(150, "lb"),
  28877. name: "Front",
  28878. image: {
  28879. source: "./media/characters/sfaiyan/front.svg",
  28880. extra: 999 / 978,
  28881. bottom: 5 / 1004
  28882. }
  28883. },
  28884. },
  28885. [
  28886. {
  28887. name: "Normal",
  28888. height: math.unit(1.82, "meters")
  28889. },
  28890. {
  28891. name: "Giant",
  28892. height: math.unit(2.27, "km"),
  28893. default: true
  28894. },
  28895. ]
  28896. ))
  28897. characterMakers.push(() => makeCharacter(
  28898. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28899. {
  28900. front: {
  28901. height: math.unit(179, "cm"),
  28902. weight: math.unit(100, "kg"),
  28903. name: "Front",
  28904. image: {
  28905. source: "./media/characters/raunehkeli/front.svg",
  28906. extra: 1934 / 1926,
  28907. bottom: 0 / 1934
  28908. }
  28909. },
  28910. },
  28911. [
  28912. {
  28913. name: "Normal",
  28914. height: math.unit(179, "cm")
  28915. },
  28916. {
  28917. name: "Maximum",
  28918. height: math.unit(575, "meters"),
  28919. default: true
  28920. },
  28921. ]
  28922. ))
  28923. characterMakers.push(() => makeCharacter(
  28924. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28925. {
  28926. front: {
  28927. height: math.unit(6, "feet"),
  28928. weight: math.unit(150, "lb"),
  28929. name: "Front",
  28930. image: {
  28931. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28932. extra: 2625 / 2518,
  28933. bottom: 60 / 2685
  28934. }
  28935. },
  28936. },
  28937. [
  28938. {
  28939. name: "Normal",
  28940. height: math.unit(6 + 2 / 12, "feet")
  28941. },
  28942. {
  28943. name: "Macro",
  28944. height: math.unit(1180, "feet"),
  28945. default: true
  28946. },
  28947. ]
  28948. ))
  28949. characterMakers.push(() => makeCharacter(
  28950. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28951. {
  28952. front: {
  28953. height: math.unit(5 + 6 / 12, "feet"),
  28954. weight: math.unit(108, "lb"),
  28955. name: "Front",
  28956. image: {
  28957. source: "./media/characters/lilith-zott/front.svg",
  28958. extra: 2510 / 2238,
  28959. bottom: 100 / 2610
  28960. }
  28961. },
  28962. frontDressed: {
  28963. height: math.unit(5 + 6 / 12, "feet"),
  28964. weight: math.unit(108, "lb"),
  28965. name: "Front (Dressed)",
  28966. image: {
  28967. source: "./media/characters/lilith-zott/front-dressed.svg",
  28968. extra: 2510 / 2238,
  28969. bottom: 100 / 2610
  28970. }
  28971. },
  28972. },
  28973. [
  28974. {
  28975. name: "Normal",
  28976. height: math.unit(5 + 6 / 12, "feet")
  28977. },
  28978. {
  28979. name: "Macro",
  28980. height: math.unit(1030, "feet"),
  28981. default: true
  28982. },
  28983. ]
  28984. ))
  28985. characterMakers.push(() => makeCharacter(
  28986. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28987. {
  28988. front: {
  28989. height: math.unit(6, "feet"),
  28990. weight: math.unit(150, "lb"),
  28991. name: "Front",
  28992. image: {
  28993. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28994. extra: 2567 / 2435,
  28995. bottom: 39 / 2606
  28996. }
  28997. },
  28998. frontSuper: {
  28999. height: math.unit(6, "feet"),
  29000. name: "Front (Super)",
  29001. image: {
  29002. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29003. extra: 2567 / 2435,
  29004. bottom: 39 / 2606
  29005. }
  29006. },
  29007. },
  29008. [
  29009. {
  29010. name: "Normal",
  29011. height: math.unit(5 + 10 / 12, "feet")
  29012. },
  29013. {
  29014. name: "Macro",
  29015. height: math.unit(1100, "feet"),
  29016. default: true
  29017. },
  29018. ]
  29019. ))
  29020. characterMakers.push(() => makeCharacter(
  29021. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29022. {
  29023. front: {
  29024. height: math.unit(100, "miles"),
  29025. name: "Front",
  29026. image: {
  29027. source: "./media/characters/sona/front.svg",
  29028. extra: 2433 / 2201,
  29029. bottom: 53 / 2486
  29030. }
  29031. },
  29032. foot: {
  29033. height: math.unit(16.1, "miles"),
  29034. name: "Foot",
  29035. image: {
  29036. source: "./media/characters/sona/foot.svg"
  29037. }
  29038. },
  29039. },
  29040. [
  29041. {
  29042. name: "Macro",
  29043. height: math.unit(100, "miles"),
  29044. default: true
  29045. },
  29046. ]
  29047. ))
  29048. characterMakers.push(() => makeCharacter(
  29049. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29050. {
  29051. front: {
  29052. height: math.unit(6, "feet"),
  29053. weight: math.unit(150, "lb"),
  29054. name: "Front",
  29055. image: {
  29056. source: "./media/characters/bailey/front.svg",
  29057. extra: 1778 / 1724,
  29058. bottom: 30 / 1808
  29059. }
  29060. },
  29061. },
  29062. [
  29063. {
  29064. name: "Micro",
  29065. height: math.unit(4, "inches")
  29066. },
  29067. {
  29068. name: "Normal",
  29069. height: math.unit(5 + 5 / 12, "feet"),
  29070. default: true
  29071. },
  29072. {
  29073. name: "Macro",
  29074. height: math.unit(250, "feet")
  29075. },
  29076. {
  29077. name: "Megamacro",
  29078. height: math.unit(100, "miles")
  29079. },
  29080. ]
  29081. ))
  29082. characterMakers.push(() => makeCharacter(
  29083. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29084. {
  29085. front: {
  29086. height: math.unit(5 + 2 / 12, "feet"),
  29087. weight: math.unit(120, "lb"),
  29088. name: "Front",
  29089. image: {
  29090. source: "./media/characters/snaps/front.svg",
  29091. extra: 2370 / 2177,
  29092. bottom: 48 / 2418
  29093. }
  29094. },
  29095. back: {
  29096. height: math.unit(5 + 2 / 12, "feet"),
  29097. weight: math.unit(120, "lb"),
  29098. name: "Back",
  29099. image: {
  29100. source: "./media/characters/snaps/back.svg",
  29101. extra: 2408 / 2258,
  29102. bottom: 15 / 2423
  29103. }
  29104. },
  29105. },
  29106. [
  29107. {
  29108. name: "Micro",
  29109. height: math.unit(9, "inches")
  29110. },
  29111. {
  29112. name: "Normal",
  29113. height: math.unit(5 + 2 / 12, "feet"),
  29114. default: true
  29115. },
  29116. {
  29117. name: "Mini Macro",
  29118. height: math.unit(10, "feet")
  29119. },
  29120. ]
  29121. ))
  29122. characterMakers.push(() => makeCharacter(
  29123. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29124. {
  29125. front: {
  29126. height: math.unit(1.8, "meters"),
  29127. weight: math.unit(85, "kg"),
  29128. name: "Front",
  29129. image: {
  29130. source: "./media/characters/azteck/front.svg",
  29131. extra: 2815 / 2625,
  29132. bottom: 89 / 2904
  29133. }
  29134. },
  29135. back: {
  29136. height: math.unit(1.8, "meters"),
  29137. weight: math.unit(85, "kg"),
  29138. name: "Back",
  29139. image: {
  29140. source: "./media/characters/azteck/back.svg",
  29141. extra: 2856 / 2648,
  29142. bottom: 85 / 2941
  29143. }
  29144. },
  29145. frontDressed: {
  29146. height: math.unit(1.8, "meters"),
  29147. weight: math.unit(85, "kg"),
  29148. name: "Front (Dressed)",
  29149. image: {
  29150. source: "./media/characters/azteck/front-dressed.svg",
  29151. extra: 2147 / 2003,
  29152. bottom: 68 / 2215
  29153. }
  29154. },
  29155. head: {
  29156. height: math.unit(0.47, "meters"),
  29157. weight: math.unit(85, "kg"),
  29158. name: "Head",
  29159. image: {
  29160. source: "./media/characters/azteck/head.svg"
  29161. }
  29162. },
  29163. },
  29164. [
  29165. {
  29166. name: "Bite sized",
  29167. height: math.unit(16, "cm")
  29168. },
  29169. {
  29170. name: "Normal",
  29171. height: math.unit(1.8, "meters"),
  29172. default: true
  29173. },
  29174. ]
  29175. ))
  29176. characterMakers.push(() => makeCharacter(
  29177. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29178. {
  29179. front: {
  29180. height: math.unit(6, "feet"),
  29181. weight: math.unit(150, "lb"),
  29182. name: "Front",
  29183. image: {
  29184. source: "./media/characters/pidge/front.svg",
  29185. extra: 620 / 588,
  29186. bottom: 9 / 629
  29187. }
  29188. },
  29189. back: {
  29190. height: math.unit(6, "feet"),
  29191. weight: math.unit(150, "lb"),
  29192. name: "Back",
  29193. image: {
  29194. source: "./media/characters/pidge/back.svg",
  29195. extra: 620 / 588,
  29196. bottom: 9 / 629
  29197. }
  29198. },
  29199. },
  29200. [
  29201. {
  29202. name: "Macro",
  29203. height: math.unit(1, "mile"),
  29204. default: true
  29205. },
  29206. ]
  29207. ))
  29208. characterMakers.push(() => makeCharacter(
  29209. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29210. {
  29211. front: {
  29212. height: math.unit(6, "feet"),
  29213. weight: math.unit(150, "lb"),
  29214. name: "Front",
  29215. image: {
  29216. source: "./media/characters/en/front.svg",
  29217. extra: 1697 / 1563,
  29218. bottom: 103 / 1800
  29219. }
  29220. },
  29221. back: {
  29222. height: math.unit(6, "feet"),
  29223. weight: math.unit(150, "lb"),
  29224. name: "Back",
  29225. image: {
  29226. source: "./media/characters/en/back.svg",
  29227. extra: 1700 / 1570,
  29228. bottom: 51 / 1751
  29229. }
  29230. },
  29231. frontDressed: {
  29232. height: math.unit(6, "feet"),
  29233. weight: math.unit(150, "lb"),
  29234. name: "Front (Dressed)",
  29235. image: {
  29236. source: "./media/characters/en/front-dressed.svg",
  29237. extra: 1697 / 1563,
  29238. bottom: 103 / 1800
  29239. }
  29240. },
  29241. backDressed: {
  29242. height: math.unit(6, "feet"),
  29243. weight: math.unit(150, "lb"),
  29244. name: "Back (Dressed)",
  29245. image: {
  29246. source: "./media/characters/en/back-dressed.svg",
  29247. extra: 1700 / 1570,
  29248. bottom: 51 / 1751
  29249. }
  29250. },
  29251. },
  29252. [
  29253. {
  29254. name: "Macro",
  29255. height: math.unit(210, "feet"),
  29256. default: true
  29257. },
  29258. ]
  29259. ))
  29260. characterMakers.push(() => makeCharacter(
  29261. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29262. {
  29263. front: {
  29264. height: math.unit(6, "feet"),
  29265. weight: math.unit(150, "lb"),
  29266. name: "Front",
  29267. image: {
  29268. source: "./media/characters/haze-orris/front.svg",
  29269. extra: 3975 / 3525,
  29270. bottom: 137 / 4112
  29271. }
  29272. },
  29273. },
  29274. [
  29275. {
  29276. name: "Micro",
  29277. height: math.unit(150, "mm"),
  29278. default: true
  29279. },
  29280. ]
  29281. ))
  29282. characterMakers.push(() => makeCharacter(
  29283. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29284. {
  29285. front: {
  29286. height: math.unit(6, "feet"),
  29287. weight: math.unit(150, "lb"),
  29288. name: "Front",
  29289. image: {
  29290. source: "./media/characters/casselene-yaro/front.svg",
  29291. extra: 4721 / 4541,
  29292. bottom: 82 / 4803
  29293. }
  29294. },
  29295. back: {
  29296. height: math.unit(6, "feet"),
  29297. weight: math.unit(150, "lb"),
  29298. name: "Back",
  29299. image: {
  29300. source: "./media/characters/casselene-yaro/back.svg",
  29301. extra: 4569 / 4377,
  29302. bottom: 69 / 4638
  29303. }
  29304. },
  29305. frontDressed: {
  29306. height: math.unit(6, "feet"),
  29307. weight: math.unit(150, "lb"),
  29308. name: "Front-dressed",
  29309. image: {
  29310. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29311. extra: 4721 / 4541,
  29312. bottom: 82 / 4803
  29313. }
  29314. },
  29315. },
  29316. [
  29317. {
  29318. name: "Macro",
  29319. height: math.unit(190, "feet"),
  29320. default: true
  29321. },
  29322. ]
  29323. ))
  29324. characterMakers.push(() => makeCharacter(
  29325. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29326. {
  29327. front: {
  29328. height: math.unit(6, "feet"),
  29329. weight: math.unit(150, "lb"),
  29330. name: "Front",
  29331. image: {
  29332. source: "./media/characters/myra-rue-delore/front.svg",
  29333. extra: 1340 / 1308,
  29334. bottom: 67 / 1407
  29335. }
  29336. },
  29337. back: {
  29338. height: math.unit(6, "feet"),
  29339. weight: math.unit(150, "lb"),
  29340. name: "Back",
  29341. image: {
  29342. source: "./media/characters/myra-rue-delore/back.svg",
  29343. extra: 1341 / 1310,
  29344. bottom: 40 / 1381
  29345. }
  29346. },
  29347. frontDressed: {
  29348. height: math.unit(6, "feet"),
  29349. weight: math.unit(150, "lb"),
  29350. name: "Front (Dressed)",
  29351. image: {
  29352. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29353. extra: 1340 / 1308,
  29354. bottom: 67 / 1407
  29355. }
  29356. },
  29357. },
  29358. [
  29359. {
  29360. name: "Macro",
  29361. height: math.unit(150, "feet"),
  29362. default: true
  29363. },
  29364. ]
  29365. ))
  29366. characterMakers.push(() => makeCharacter(
  29367. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29368. {
  29369. front: {
  29370. height: math.unit(10, "feet"),
  29371. weight: math.unit(15015, "lb"),
  29372. name: "Front",
  29373. image: {
  29374. source: "./media/characters/fem!plat/front.svg",
  29375. extra: 2799 / 2604,
  29376. bottom: 149 / 2948
  29377. }
  29378. },
  29379. },
  29380. [
  29381. {
  29382. name: "Normal",
  29383. height: math.unit(10, "feet"),
  29384. default: true
  29385. },
  29386. {
  29387. name: "Macro",
  29388. height: math.unit(100, "feet")
  29389. },
  29390. {
  29391. name: "Megamacro",
  29392. height: math.unit(1000, "feet")
  29393. },
  29394. ]
  29395. ))
  29396. characterMakers.push(() => makeCharacter(
  29397. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29398. {
  29399. front: {
  29400. height: math.unit(15 + 5 / 12, "feet"),
  29401. weight: math.unit(4600, "lb"),
  29402. name: "Front",
  29403. image: {
  29404. source: "./media/characters/neapolitan-ananassa/front.svg",
  29405. extra: 2903 / 2736,
  29406. bottom: 0 / 2903
  29407. }
  29408. },
  29409. side: {
  29410. height: math.unit(15 + 5 / 12, "feet"),
  29411. weight: math.unit(4600, "lb"),
  29412. name: "Side",
  29413. image: {
  29414. source: "./media/characters/neapolitan-ananassa/side.svg",
  29415. extra: 2925 / 2719,
  29416. bottom: 0 / 2925
  29417. }
  29418. },
  29419. back: {
  29420. height: math.unit(15 + 5 / 12, "feet"),
  29421. weight: math.unit(4600, "lb"),
  29422. name: "Back",
  29423. image: {
  29424. source: "./media/characters/neapolitan-ananassa/back.svg",
  29425. extra: 2903 / 2736,
  29426. bottom: 0 / 2903
  29427. }
  29428. },
  29429. },
  29430. [
  29431. {
  29432. name: "Normal",
  29433. height: math.unit(15 + 5 / 12, "feet"),
  29434. default: true
  29435. },
  29436. {
  29437. name: "Post-Millenium",
  29438. height: math.unit(35 + 5 / 12, "feet")
  29439. },
  29440. {
  29441. name: "Post-Era",
  29442. height: math.unit(450 + 5 / 12, "feet")
  29443. },
  29444. ]
  29445. ))
  29446. characterMakers.push(() => makeCharacter(
  29447. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29448. {
  29449. front: {
  29450. height: math.unit(300, "meters"),
  29451. weight: math.unit(125000, "tonnes"),
  29452. name: "Front",
  29453. image: {
  29454. source: "./media/characters/pazuzu/front.svg",
  29455. extra: 877 / 794,
  29456. bottom: 47 / 924
  29457. }
  29458. },
  29459. },
  29460. [
  29461. {
  29462. name: "Macro",
  29463. height: math.unit(300, "meters"),
  29464. default: true
  29465. },
  29466. ]
  29467. ))
  29468. characterMakers.push(() => makeCharacter(
  29469. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29470. {
  29471. side: {
  29472. height: math.unit(10 + 7 / 12, "feet"),
  29473. weight: math.unit(2.5, "tons"),
  29474. name: "Side",
  29475. image: {
  29476. source: "./media/characters/aasha/side.svg",
  29477. extra: 1345 / 1245,
  29478. bottom: 111 / 1456
  29479. }
  29480. },
  29481. back: {
  29482. height: math.unit(10 + 7 / 12, "feet"),
  29483. weight: math.unit(2.5, "tons"),
  29484. name: "Back",
  29485. image: {
  29486. source: "./media/characters/aasha/back.svg",
  29487. extra: 1133 / 1057,
  29488. bottom: 257 / 1390
  29489. }
  29490. },
  29491. },
  29492. [
  29493. {
  29494. name: "Normal",
  29495. height: math.unit(10 + 7 / 12, "feet"),
  29496. default: true
  29497. },
  29498. ]
  29499. ))
  29500. characterMakers.push(() => makeCharacter(
  29501. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29502. {
  29503. front: {
  29504. height: math.unit(6 + 3 / 12, "feet"),
  29505. name: "Front",
  29506. image: {
  29507. source: "./media/characters/nevan/front.svg",
  29508. extra: 704 / 704,
  29509. bottom: 28 / 732
  29510. }
  29511. },
  29512. back: {
  29513. height: math.unit(6 + 3 / 12, "feet"),
  29514. name: "Back",
  29515. image: {
  29516. source: "./media/characters/nevan/back.svg",
  29517. extra: 714 / 714,
  29518. bottom: 21 / 735
  29519. }
  29520. },
  29521. frontFlaccid: {
  29522. height: math.unit(6 + 3 / 12, "feet"),
  29523. name: "Front (Flaccid)",
  29524. image: {
  29525. source: "./media/characters/nevan/front-flaccid.svg",
  29526. extra: 704 / 704,
  29527. bottom: 28 / 732
  29528. }
  29529. },
  29530. frontErect: {
  29531. height: math.unit(6 + 3 / 12, "feet"),
  29532. name: "Front (Erect)",
  29533. image: {
  29534. source: "./media/characters/nevan/front-erect.svg",
  29535. extra: 704 / 704,
  29536. bottom: 28 / 732
  29537. }
  29538. },
  29539. backFlaccid: {
  29540. height: math.unit(6 + 3 / 12, "feet"),
  29541. name: "Back (Flaccid)",
  29542. image: {
  29543. source: "./media/characters/nevan/back-flaccid.svg",
  29544. extra: 714 / 714,
  29545. bottom: 21 / 735
  29546. }
  29547. },
  29548. },
  29549. [
  29550. {
  29551. name: "Normal",
  29552. height: math.unit(6 + 3 / 12, "feet"),
  29553. default: true
  29554. },
  29555. ]
  29556. ))
  29557. characterMakers.push(() => makeCharacter(
  29558. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29559. {
  29560. front: {
  29561. height: math.unit(4, "feet"),
  29562. name: "Front",
  29563. image: {
  29564. source: "./media/characters/arhan/front.svg",
  29565. extra: 3368 / 3133,
  29566. bottom: 0 / 3368
  29567. }
  29568. },
  29569. side: {
  29570. height: math.unit(4, "feet"),
  29571. name: "Side",
  29572. image: {
  29573. source: "./media/characters/arhan/side.svg",
  29574. extra: 3347 / 3105,
  29575. bottom: 0 / 3347
  29576. }
  29577. },
  29578. tongue: {
  29579. height: math.unit(1.42, "feet"),
  29580. name: "Tongue",
  29581. image: {
  29582. source: "./media/characters/arhan/tongue.svg"
  29583. }
  29584. },
  29585. head: {
  29586. height: math.unit(0.85, "feet"),
  29587. name: "Head",
  29588. image: {
  29589. source: "./media/characters/arhan/head.svg"
  29590. }
  29591. },
  29592. },
  29593. [
  29594. {
  29595. name: "Normal",
  29596. height: math.unit(4, "feet"),
  29597. default: true
  29598. },
  29599. ]
  29600. ))
  29601. characterMakers.push(() => makeCharacter(
  29602. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29603. {
  29604. front: {
  29605. height: math.unit(5 + 7.5 / 12, "feet"),
  29606. weight: math.unit(120, "lb"),
  29607. name: "Front",
  29608. image: {
  29609. source: "./media/characters/digi-duncan/front.svg",
  29610. extra: 330 / 326,
  29611. bottom: 16 / 346
  29612. }
  29613. },
  29614. side: {
  29615. height: math.unit(5 + 7.5 / 12, "feet"),
  29616. weight: math.unit(120, "lb"),
  29617. name: "Side",
  29618. image: {
  29619. source: "./media/characters/digi-duncan/side.svg",
  29620. extra: 341 / 337,
  29621. bottom: 1 / 342
  29622. }
  29623. },
  29624. back: {
  29625. height: math.unit(5 + 7.5 / 12, "feet"),
  29626. weight: math.unit(120, "lb"),
  29627. name: "Back",
  29628. image: {
  29629. source: "./media/characters/digi-duncan/back.svg",
  29630. extra: 330 / 326,
  29631. bottom: 12 / 342
  29632. }
  29633. },
  29634. },
  29635. [
  29636. {
  29637. name: "Speck",
  29638. height: math.unit(0.25, "mm")
  29639. },
  29640. {
  29641. name: "Micro",
  29642. height: math.unit(5, "mm")
  29643. },
  29644. {
  29645. name: "Tiny",
  29646. height: math.unit(0.5, "inches"),
  29647. default: true
  29648. },
  29649. {
  29650. name: "Human",
  29651. height: math.unit(5 + 7.5 / 12, "feet")
  29652. },
  29653. {
  29654. name: "Minigiant",
  29655. height: math.unit(8 + 5.25, "feet")
  29656. },
  29657. {
  29658. name: "Giant",
  29659. height: math.unit(2000, "feet")
  29660. },
  29661. {
  29662. name: "Mega",
  29663. height: math.unit(371.1, "miles")
  29664. },
  29665. ]
  29666. ))
  29667. characterMakers.push(() => makeCharacter(
  29668. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29669. {
  29670. front: {
  29671. height: math.unit(2, "meters"),
  29672. weight: math.unit(350, "kg"),
  29673. name: "Front",
  29674. image: {
  29675. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29676. extra: 898 / 838,
  29677. bottom: 9 / 907
  29678. }
  29679. },
  29680. },
  29681. [
  29682. {
  29683. name: "Micro",
  29684. height: math.unit(8, "meters")
  29685. },
  29686. {
  29687. name: "Normal",
  29688. height: math.unit(50, "meters"),
  29689. default: true
  29690. },
  29691. {
  29692. name: "Macro",
  29693. height: math.unit(500, "meters")
  29694. },
  29695. ]
  29696. ))
  29697. characterMakers.push(() => makeCharacter(
  29698. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29699. {
  29700. front: {
  29701. height: math.unit(6 + 6 / 12, "feet"),
  29702. name: "Front",
  29703. image: {
  29704. source: "./media/characters/khardesh/front.svg",
  29705. extra: 888 / 797,
  29706. bottom: 25 / 913
  29707. }
  29708. },
  29709. },
  29710. [
  29711. {
  29712. name: "Normal",
  29713. height: math.unit(6 + 6 / 12, "feet"),
  29714. default: true
  29715. },
  29716. {
  29717. name: "Normal+",
  29718. height: math.unit(4, "meters")
  29719. },
  29720. {
  29721. name: "Macro",
  29722. height: math.unit(50, "meters")
  29723. },
  29724. {
  29725. name: "Macro+",
  29726. height: math.unit(100, "meters")
  29727. },
  29728. {
  29729. name: "Megamacro",
  29730. height: math.unit(20, "km")
  29731. },
  29732. ]
  29733. ))
  29734. characterMakers.push(() => makeCharacter(
  29735. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29736. {
  29737. front: {
  29738. height: math.unit(6, "feet"),
  29739. weight: math.unit(150, "lb"),
  29740. name: "Front",
  29741. image: {
  29742. source: "./media/characters/kosho/front.svg",
  29743. extra: 1847 / 1847,
  29744. bottom: 86 / 1933
  29745. }
  29746. },
  29747. },
  29748. [
  29749. {
  29750. name: "Second-stage micro",
  29751. height: math.unit(0.5, "inches")
  29752. },
  29753. {
  29754. name: "First-stage micro",
  29755. height: math.unit(6, "inches")
  29756. },
  29757. {
  29758. name: "Normal",
  29759. height: math.unit(6, "feet"),
  29760. default: true
  29761. },
  29762. {
  29763. name: "First-stage macro",
  29764. height: math.unit(72, "feet")
  29765. },
  29766. {
  29767. name: "Second-stage macro",
  29768. height: math.unit(864, "feet")
  29769. },
  29770. ]
  29771. ))
  29772. characterMakers.push(() => makeCharacter(
  29773. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29774. {
  29775. normal: {
  29776. height: math.unit(4 + 6 / 12, "feet"),
  29777. name: "Normal",
  29778. image: {
  29779. source: "./media/characters/hydra/normal.svg",
  29780. extra: 2833 / 2634,
  29781. bottom: 68 / 2901
  29782. }
  29783. },
  29784. smol: {
  29785. height: math.unit(0.705, "inches"),
  29786. name: "Smol",
  29787. image: {
  29788. source: "./media/characters/hydra/smol.svg",
  29789. extra: 2715 / 2540,
  29790. bottom: 0 / 2715
  29791. }
  29792. },
  29793. },
  29794. [
  29795. {
  29796. name: "Normal",
  29797. height: math.unit(4 + 6 / 12, "feet"),
  29798. default: true
  29799. }
  29800. ]
  29801. ))
  29802. characterMakers.push(() => makeCharacter(
  29803. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29804. {
  29805. front: {
  29806. height: math.unit(0.6, "cm"),
  29807. name: "Front",
  29808. image: {
  29809. source: "./media/characters/daz/front.svg",
  29810. extra: 1682 / 1164,
  29811. bottom: 42 / 1724
  29812. }
  29813. },
  29814. },
  29815. [
  29816. {
  29817. name: "Normal",
  29818. height: math.unit(0.6, "cm"),
  29819. default: true
  29820. },
  29821. ]
  29822. ))
  29823. characterMakers.push(() => makeCharacter(
  29824. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29825. {
  29826. front: {
  29827. height: math.unit(6, "feet"),
  29828. weight: math.unit(235, "lb"),
  29829. name: "Front",
  29830. image: {
  29831. source: "./media/characters/theo-pangolin/front.svg",
  29832. extra: 1996 / 1969,
  29833. bottom: 115 / 2111
  29834. }
  29835. },
  29836. back: {
  29837. height: math.unit(6, "feet"),
  29838. weight: math.unit(235, "lb"),
  29839. name: "Back",
  29840. image: {
  29841. source: "./media/characters/theo-pangolin/back.svg",
  29842. extra: 1979 / 1979,
  29843. bottom: 40 / 2019
  29844. }
  29845. },
  29846. feral: {
  29847. height: math.unit(2, "feet"),
  29848. weight: math.unit(30, "lb"),
  29849. name: "Feral",
  29850. image: {
  29851. source: "./media/characters/theo-pangolin/feral.svg",
  29852. extra: 803 / 791,
  29853. bottom: 181 / 984
  29854. }
  29855. },
  29856. footFive: {
  29857. height: math.unit(1.43, "feet"),
  29858. name: "Foot (Five Toes)",
  29859. image: {
  29860. source: "./media/characters/theo-pangolin/foot-five.svg"
  29861. }
  29862. },
  29863. footFour: {
  29864. height: math.unit(1.43, "feet"),
  29865. name: "Foot (Four Toes)",
  29866. image: {
  29867. source: "./media/characters/theo-pangolin/foot-four.svg"
  29868. }
  29869. },
  29870. handFour: {
  29871. height: math.unit(0.81, "feet"),
  29872. name: "Hand (Four Fingers)",
  29873. image: {
  29874. source: "./media/characters/theo-pangolin/hand-four.svg"
  29875. }
  29876. },
  29877. handThree: {
  29878. height: math.unit(0.81, "feet"),
  29879. name: "Hand (Three Fingers)",
  29880. image: {
  29881. source: "./media/characters/theo-pangolin/hand-three.svg"
  29882. }
  29883. },
  29884. headFront: {
  29885. height: math.unit(1.37, "feet"),
  29886. name: "Head (Front)",
  29887. image: {
  29888. source: "./media/characters/theo-pangolin/head-front.svg"
  29889. }
  29890. },
  29891. headSide: {
  29892. height: math.unit(1.43, "feet"),
  29893. name: "Head (Side)",
  29894. image: {
  29895. source: "./media/characters/theo-pangolin/head-side.svg"
  29896. }
  29897. },
  29898. tongue: {
  29899. height: math.unit(2.29, "feet"),
  29900. name: "Tongue",
  29901. image: {
  29902. source: "./media/characters/theo-pangolin/tongue.svg"
  29903. }
  29904. },
  29905. },
  29906. [
  29907. {
  29908. name: "Normal",
  29909. height: math.unit(6, "feet")
  29910. },
  29911. {
  29912. name: "Macro",
  29913. height: math.unit(400, "feet"),
  29914. default: true
  29915. },
  29916. ]
  29917. ))
  29918. characterMakers.push(() => makeCharacter(
  29919. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29920. {
  29921. front: {
  29922. height: math.unit(6, "inches"),
  29923. weight: math.unit(0.036, "kg"),
  29924. name: "Front",
  29925. image: {
  29926. source: "./media/characters/renée/front.svg",
  29927. extra: 900 / 886,
  29928. bottom: 8 / 908
  29929. }
  29930. },
  29931. },
  29932. [
  29933. {
  29934. name: "Nano",
  29935. height: math.unit(1, "nm")
  29936. },
  29937. {
  29938. name: "Micro",
  29939. height: math.unit(1, "mm")
  29940. },
  29941. {
  29942. name: "Normal",
  29943. height: math.unit(6, "inches")
  29944. },
  29945. {
  29946. name: "Macro",
  29947. height: math.unit(2000, "feet"),
  29948. default: true
  29949. },
  29950. {
  29951. name: "Megamacro",
  29952. height: math.unit(2, "km")
  29953. },
  29954. {
  29955. name: "Gigamacro",
  29956. height: math.unit(2000, "km")
  29957. },
  29958. {
  29959. name: "Teramacro",
  29960. height: math.unit(250000, "km")
  29961. },
  29962. ]
  29963. ))
  29964. characterMakers.push(() => makeCharacter(
  29965. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29966. {
  29967. front: {
  29968. height: math.unit(4, "meters"),
  29969. weight: math.unit(150, "kg"),
  29970. name: "Front",
  29971. image: {
  29972. source: "./media/characters/caledvwlch/front.svg",
  29973. extra: 1760 / 1551,
  29974. bottom: 28 / 1788
  29975. }
  29976. },
  29977. side: {
  29978. height: math.unit(4, "meters"),
  29979. weight: math.unit(150, "kg"),
  29980. name: "Side",
  29981. image: {
  29982. source: "./media/characters/caledvwlch/side.svg",
  29983. extra: 1605 / 1536,
  29984. bottom: 31 / 1636
  29985. }
  29986. },
  29987. back: {
  29988. height: math.unit(4, "meters"),
  29989. weight: math.unit(150, "kg"),
  29990. name: "Back",
  29991. image: {
  29992. source: "./media/characters/caledvwlch/back.svg",
  29993. extra: 1635 / 1565,
  29994. bottom: 27 / 1662
  29995. }
  29996. },
  29997. },
  29998. [
  29999. {
  30000. name: "\"Incognito\"",
  30001. height: math.unit(4, "meters")
  30002. },
  30003. {
  30004. name: "Small rampage",
  30005. height: math.unit(600, "meters")
  30006. },
  30007. {
  30008. name: "Mega",
  30009. height: math.unit(30, "km")
  30010. },
  30011. {
  30012. name: "Home-size",
  30013. height: math.unit(50, "km"),
  30014. default: true
  30015. },
  30016. {
  30017. name: "Giga",
  30018. height: math.unit(300, "km")
  30019. },
  30020. {
  30021. name: "Lounging",
  30022. height: math.unit(11000, "km")
  30023. },
  30024. {
  30025. name: "Planet snacking",
  30026. height: math.unit(2000000, "km")
  30027. },
  30028. ]
  30029. ))
  30030. characterMakers.push(() => makeCharacter(
  30031. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30032. {
  30033. front: {
  30034. height: math.unit(6, "feet"),
  30035. weight: math.unit(215, "lb"),
  30036. name: "Front",
  30037. image: {
  30038. source: "./media/characters/sapphire-svell/front.svg",
  30039. extra: 495 / 455,
  30040. bottom: 20 / 515
  30041. }
  30042. },
  30043. back: {
  30044. height: math.unit(6, "feet"),
  30045. weight: math.unit(216, "lb"),
  30046. name: "Back",
  30047. image: {
  30048. source: "./media/characters/sapphire-svell/back.svg",
  30049. extra: 497 / 477,
  30050. bottom: 7 / 504
  30051. }
  30052. },
  30053. maw: {
  30054. height: math.unit(1.57, "feet"),
  30055. name: "Maw",
  30056. image: {
  30057. source: "./media/characters/sapphire-svell/maw.svg"
  30058. }
  30059. },
  30060. foot: {
  30061. height: math.unit(1.07, "feet"),
  30062. name: "Foot",
  30063. image: {
  30064. source: "./media/characters/sapphire-svell/foot.svg"
  30065. }
  30066. },
  30067. toering: {
  30068. height: math.unit(1.7, "inch"),
  30069. name: "Toering",
  30070. image: {
  30071. source: "./media/characters/sapphire-svell/toering.svg"
  30072. }
  30073. },
  30074. },
  30075. [
  30076. {
  30077. name: "Normal",
  30078. height: math.unit(300, "feet"),
  30079. default: true
  30080. },
  30081. {
  30082. name: "Augmented",
  30083. height: math.unit(1250, "feet")
  30084. },
  30085. {
  30086. name: "Unleashed",
  30087. height: math.unit(3000, "feet")
  30088. },
  30089. ]
  30090. ))
  30091. characterMakers.push(() => makeCharacter(
  30092. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30093. {
  30094. side: {
  30095. height: math.unit(2 + 3 / 12, "feet"),
  30096. weight: math.unit(110, "lb"),
  30097. name: "Side",
  30098. image: {
  30099. source: "./media/characters/glitch-flux/side.svg",
  30100. extra: 997 / 805,
  30101. bottom: 20 / 1017
  30102. }
  30103. },
  30104. },
  30105. [
  30106. {
  30107. name: "Normal",
  30108. height: math.unit(2 + 3 / 12, "feet"),
  30109. default: true
  30110. },
  30111. ]
  30112. ))
  30113. characterMakers.push(() => makeCharacter(
  30114. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30115. {
  30116. front: {
  30117. height: math.unit(4, "meters"),
  30118. name: "Front",
  30119. image: {
  30120. source: "./media/characters/mid/front.svg",
  30121. extra: 507 / 476,
  30122. bottom: 17 / 524
  30123. }
  30124. },
  30125. back: {
  30126. height: math.unit(4, "meters"),
  30127. name: "Back",
  30128. image: {
  30129. source: "./media/characters/mid/back.svg",
  30130. extra: 519 / 487,
  30131. bottom: 7 / 526
  30132. }
  30133. },
  30134. stuck: {
  30135. height: math.unit(2.2, "meters"),
  30136. name: "Stuck",
  30137. image: {
  30138. source: "./media/characters/mid/stuck.svg",
  30139. extra: 1951 / 1869,
  30140. bottom: 88 / 2039
  30141. }
  30142. }
  30143. },
  30144. [
  30145. {
  30146. name: "Normal",
  30147. height: math.unit(4, "meters"),
  30148. default: true
  30149. },
  30150. {
  30151. name: "Big",
  30152. height: math.unit(10, "meters")
  30153. },
  30154. {
  30155. name: "Macro",
  30156. height: math.unit(800, "meters")
  30157. },
  30158. {
  30159. name: "Megamacro",
  30160. height: math.unit(100, "km")
  30161. },
  30162. {
  30163. name: "Overgrown",
  30164. height: math.unit(1, "parsec")
  30165. },
  30166. ]
  30167. ))
  30168. characterMakers.push(() => makeCharacter(
  30169. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30170. {
  30171. front: {
  30172. height: math.unit(2.5, "meters"),
  30173. weight: math.unit(225, "kg"),
  30174. name: "Front",
  30175. image: {
  30176. source: "./media/characters/iris/front.svg",
  30177. extra: 3348 / 3251,
  30178. bottom: 205 / 3553
  30179. }
  30180. },
  30181. maw: {
  30182. height: math.unit(0.56, "meter"),
  30183. name: "Maw",
  30184. image: {
  30185. source: "./media/characters/iris/maw.svg"
  30186. }
  30187. },
  30188. },
  30189. [
  30190. {
  30191. name: "Mewter cat",
  30192. height: math.unit(1.2, "meters")
  30193. },
  30194. {
  30195. name: "Minimacro",
  30196. height: math.unit(2.5, "meters"),
  30197. default: true
  30198. },
  30199. {
  30200. name: "Macro",
  30201. height: math.unit(180, "meters")
  30202. },
  30203. {
  30204. name: "Megamacro",
  30205. height: math.unit(2746, "meters")
  30206. },
  30207. ]
  30208. ))
  30209. characterMakers.push(() => makeCharacter(
  30210. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30211. {
  30212. front: {
  30213. height: math.unit(6, "feet"),
  30214. weight: math.unit(135, "lb"),
  30215. name: "Front",
  30216. image: {
  30217. source: "./media/characters/axel/front.svg",
  30218. extra: 908 / 908,
  30219. bottom: 58 / 966
  30220. }
  30221. },
  30222. side: {
  30223. height: math.unit(6, "feet"),
  30224. weight: math.unit(135, "lb"),
  30225. name: "Side",
  30226. image: {
  30227. source: "./media/characters/axel/side.svg",
  30228. extra: 958 / 958,
  30229. bottom: 11 / 969
  30230. }
  30231. },
  30232. back: {
  30233. height: math.unit(6, "feet"),
  30234. weight: math.unit(135, "lb"),
  30235. name: "Back",
  30236. image: {
  30237. source: "./media/characters/axel/back.svg",
  30238. extra: 887 / 887,
  30239. bottom: 34 / 921
  30240. }
  30241. },
  30242. head: {
  30243. height: math.unit(1.07, "feet"),
  30244. name: "Head",
  30245. image: {
  30246. source: "./media/characters/axel/head.svg"
  30247. }
  30248. },
  30249. beak: {
  30250. height: math.unit(1.4, "feet"),
  30251. name: "Beak",
  30252. image: {
  30253. source: "./media/characters/axel/beak.svg"
  30254. }
  30255. },
  30256. beakSide: {
  30257. height: math.unit(1.4, "feet"),
  30258. name: "Beak Side",
  30259. image: {
  30260. source: "./media/characters/axel/beak-side.svg"
  30261. }
  30262. },
  30263. sheath: {
  30264. height: math.unit(0.5, "feet"),
  30265. name: "Sheath",
  30266. image: {
  30267. source: "./media/characters/axel/sheath.svg"
  30268. }
  30269. },
  30270. dick: {
  30271. height: math.unit(0.98, "feet"),
  30272. name: "Dick",
  30273. image: {
  30274. source: "./media/characters/axel/dick.svg"
  30275. }
  30276. },
  30277. },
  30278. [
  30279. {
  30280. name: "Macro",
  30281. height: math.unit(68, "meters"),
  30282. default: true
  30283. },
  30284. ]
  30285. ))
  30286. characterMakers.push(() => makeCharacter(
  30287. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30288. {
  30289. front: {
  30290. height: math.unit(3.5, "meters"),
  30291. weight: math.unit(1200, "kg"),
  30292. name: "Front",
  30293. image: {
  30294. source: "./media/characters/joanna/front.svg",
  30295. extra: 1596 / 1488,
  30296. bottom: 29 / 1625
  30297. }
  30298. },
  30299. back: {
  30300. height: math.unit(3.5, "meters"),
  30301. weight: math.unit(1200, "kg"),
  30302. name: "Back",
  30303. image: {
  30304. source: "./media/characters/joanna/back.svg",
  30305. extra: 1594 / 1495,
  30306. bottom: 26 / 1620
  30307. }
  30308. },
  30309. frontShorts: {
  30310. height: math.unit(3.5, "meters"),
  30311. weight: math.unit(1200, "kg"),
  30312. name: "Front (Shorts)",
  30313. image: {
  30314. source: "./media/characters/joanna/front-shorts.svg",
  30315. extra: 1596 / 1488,
  30316. bottom: 29 / 1625
  30317. }
  30318. },
  30319. frontBiker: {
  30320. height: math.unit(3.5, "meters"),
  30321. weight: math.unit(1200, "kg"),
  30322. name: "Front (Biker)",
  30323. image: {
  30324. source: "./media/characters/joanna/front-biker.svg",
  30325. extra: 1596 / 1488,
  30326. bottom: 29 / 1625
  30327. }
  30328. },
  30329. backBiker: {
  30330. height: math.unit(3.5, "meters"),
  30331. weight: math.unit(1200, "kg"),
  30332. name: "Back (Biker)",
  30333. image: {
  30334. source: "./media/characters/joanna/back-biker.svg",
  30335. extra: 1594 / 1495,
  30336. bottom: 88 / 1682
  30337. }
  30338. },
  30339. bikeLeft: {
  30340. height: math.unit(2.4, "meters"),
  30341. weight: math.unit(1600, "kg"),
  30342. name: "Bike (Left)",
  30343. image: {
  30344. source: "./media/characters/joanna/bike-left.svg",
  30345. extra: 720 / 720,
  30346. bottom: 8 / 728
  30347. }
  30348. },
  30349. bikeRight: {
  30350. height: math.unit(2.4, "meters"),
  30351. weight: math.unit(1600, "kg"),
  30352. name: "Bike (Right)",
  30353. image: {
  30354. source: "./media/characters/joanna/bike-right.svg",
  30355. extra: 720 / 720,
  30356. bottom: 8 / 728
  30357. }
  30358. },
  30359. },
  30360. [
  30361. {
  30362. name: "Incognito",
  30363. height: math.unit(3.5, "meters")
  30364. },
  30365. {
  30366. name: "Casual Big",
  30367. height: math.unit(200, "meters")
  30368. },
  30369. {
  30370. name: "Macro",
  30371. height: math.unit(600, "meters")
  30372. },
  30373. {
  30374. name: "Original",
  30375. height: math.unit(20, "km"),
  30376. default: true
  30377. },
  30378. {
  30379. name: "Giga",
  30380. height: math.unit(400, "km")
  30381. },
  30382. {
  30383. name: "Lounging",
  30384. height: math.unit(1500, "km")
  30385. },
  30386. {
  30387. name: "Planetary",
  30388. height: math.unit(200000, "km")
  30389. },
  30390. ]
  30391. ))
  30392. characterMakers.push(() => makeCharacter(
  30393. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30394. {
  30395. front: {
  30396. height: math.unit(6, "feet"),
  30397. weight: math.unit(150, "lb"),
  30398. name: "Front",
  30399. image: {
  30400. source: "./media/characters/hugo-sigil/front.svg",
  30401. extra: 522 / 500,
  30402. bottom: 2 / 524
  30403. }
  30404. },
  30405. back: {
  30406. height: math.unit(6, "feet"),
  30407. weight: math.unit(150, "lb"),
  30408. name: "Back",
  30409. image: {
  30410. source: "./media/characters/hugo-sigil/back.svg",
  30411. extra: 519 / 495,
  30412. bottom: 5 / 524
  30413. }
  30414. },
  30415. maw: {
  30416. height: math.unit(1.4, "feet"),
  30417. weight: math.unit(150, "lb"),
  30418. name: "Maw",
  30419. image: {
  30420. source: "./media/characters/hugo-sigil/maw.svg"
  30421. }
  30422. },
  30423. feet: {
  30424. height: math.unit(1.56, "feet"),
  30425. weight: math.unit(150, "lb"),
  30426. name: "Feet",
  30427. image: {
  30428. source: "./media/characters/hugo-sigil/feet.svg",
  30429. extra: 177 / 177,
  30430. bottom: 12 / 189
  30431. }
  30432. },
  30433. },
  30434. [
  30435. {
  30436. name: "Normal",
  30437. height: math.unit(6, "feet")
  30438. },
  30439. {
  30440. name: "Macro",
  30441. height: math.unit(200, "feet"),
  30442. default: true
  30443. },
  30444. ]
  30445. ))
  30446. characterMakers.push(() => makeCharacter(
  30447. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30448. {
  30449. front: {
  30450. height: math.unit(6, "feet"),
  30451. weight: math.unit(150, "lb"),
  30452. name: "Front",
  30453. image: {
  30454. source: "./media/characters/peri/front.svg",
  30455. extra: 2354 / 2233,
  30456. bottom: 49 / 2403
  30457. }
  30458. },
  30459. },
  30460. [
  30461. {
  30462. name: "Really Small",
  30463. height: math.unit(1, "nm")
  30464. },
  30465. {
  30466. name: "Micro",
  30467. height: math.unit(4, "inches")
  30468. },
  30469. {
  30470. name: "Normal",
  30471. height: math.unit(7, "inches"),
  30472. default: true
  30473. },
  30474. {
  30475. name: "Macro",
  30476. height: math.unit(400, "feet")
  30477. },
  30478. {
  30479. name: "Megamacro",
  30480. height: math.unit(100, "miles")
  30481. },
  30482. ]
  30483. ))
  30484. characterMakers.push(() => makeCharacter(
  30485. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30486. {
  30487. frontSlim: {
  30488. height: math.unit(7, "feet"),
  30489. name: "Front (Slim)",
  30490. image: {
  30491. source: "./media/characters/issilora/front-slim.svg",
  30492. extra: 529 / 449,
  30493. bottom: 53 / 582
  30494. }
  30495. },
  30496. sideSlim: {
  30497. height: math.unit(7, "feet"),
  30498. name: "Side (Slim)",
  30499. image: {
  30500. source: "./media/characters/issilora/side-slim.svg",
  30501. extra: 570 / 480,
  30502. bottom: 30 / 600
  30503. }
  30504. },
  30505. backSlim: {
  30506. height: math.unit(7, "feet"),
  30507. name: "Back (Slim)",
  30508. image: {
  30509. source: "./media/characters/issilora/back-slim.svg",
  30510. extra: 537 / 455,
  30511. bottom: 46 / 583
  30512. }
  30513. },
  30514. frontBuff: {
  30515. height: math.unit(7, "feet"),
  30516. name: "Front (Buff)",
  30517. image: {
  30518. source: "./media/characters/issilora/front-buff.svg",
  30519. extra: 2310 / 2035,
  30520. bottom: 335 / 2645
  30521. }
  30522. },
  30523. head: {
  30524. height: math.unit(1.94, "feet"),
  30525. name: "Head",
  30526. image: {
  30527. source: "./media/characters/issilora/head.svg"
  30528. }
  30529. },
  30530. },
  30531. [
  30532. {
  30533. name: "Minimum",
  30534. height: math.unit(7, "feet")
  30535. },
  30536. {
  30537. name: "Comfortable",
  30538. height: math.unit(17, "feet")
  30539. },
  30540. {
  30541. name: "Fun Size",
  30542. height: math.unit(47, "feet")
  30543. },
  30544. {
  30545. name: "Natural Macro",
  30546. height: math.unit(137, "feet"),
  30547. default: true
  30548. },
  30549. {
  30550. name: "Maximum Kaiju",
  30551. height: math.unit(397, "feet")
  30552. },
  30553. ]
  30554. ))
  30555. characterMakers.push(() => makeCharacter(
  30556. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30557. {
  30558. front: {
  30559. height: math.unit(50 + 9/12, "feet"),
  30560. weight: math.unit(32.8, "tons"),
  30561. name: "Front",
  30562. image: {
  30563. source: "./media/characters/irb'iiritaahn/front.svg",
  30564. extra: 1878/1826,
  30565. bottom: 326/2204
  30566. }
  30567. },
  30568. back: {
  30569. height: math.unit(50 + 9/12, "feet"),
  30570. weight: math.unit(32.8, "tons"),
  30571. name: "Back",
  30572. image: {
  30573. source: "./media/characters/irb'iiritaahn/back.svg",
  30574. extra: 2052/2018,
  30575. bottom: 152/2204
  30576. }
  30577. },
  30578. head: {
  30579. height: math.unit(12.86, "feet"),
  30580. name: "Head",
  30581. image: {
  30582. source: "./media/characters/irb'iiritaahn/head.svg"
  30583. }
  30584. },
  30585. maw: {
  30586. height: math.unit(9.66, "feet"),
  30587. name: "Maw",
  30588. image: {
  30589. source: "./media/characters/irb'iiritaahn/maw.svg"
  30590. }
  30591. },
  30592. frontDick: {
  30593. height: math.unit(8.78461, "feet"),
  30594. name: "Front Dick",
  30595. image: {
  30596. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30597. }
  30598. },
  30599. rearDick: {
  30600. height: math.unit(8.78461, "feet"),
  30601. name: "Rear Dick",
  30602. image: {
  30603. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30604. }
  30605. },
  30606. rearDickUnfolded: {
  30607. height: math.unit(8.78, "feet"),
  30608. name: "Rear Dick (Unfolded)",
  30609. image: {
  30610. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30611. }
  30612. },
  30613. wings: {
  30614. height: math.unit(43, "feet"),
  30615. name: "Wings",
  30616. image: {
  30617. source: "./media/characters/irb'iiritaahn/wings.svg"
  30618. }
  30619. },
  30620. },
  30621. [
  30622. {
  30623. name: "Macro",
  30624. height: math.unit(50 + 9/12, "feet"),
  30625. default: true
  30626. },
  30627. ]
  30628. ))
  30629. characterMakers.push(() => makeCharacter(
  30630. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30631. {
  30632. front: {
  30633. height: math.unit(205, "cm"),
  30634. weight: math.unit(102, "kg"),
  30635. name: "Front",
  30636. image: {
  30637. source: "./media/characters/irbisgreif/front.svg",
  30638. extra: 785/706,
  30639. bottom: 13/798
  30640. }
  30641. },
  30642. back: {
  30643. height: math.unit(205, "cm"),
  30644. weight: math.unit(102, "kg"),
  30645. name: "Back",
  30646. image: {
  30647. source: "./media/characters/irbisgreif/back.svg",
  30648. extra: 713/701,
  30649. bottom: 26/739
  30650. }
  30651. },
  30652. frontDressed: {
  30653. height: math.unit(216, "cm"),
  30654. weight: math.unit(102, "kg"),
  30655. name: "Front-dressed",
  30656. image: {
  30657. source: "./media/characters/irbisgreif/front-dressed.svg",
  30658. extra: 902/776,
  30659. bottom: 14/916
  30660. }
  30661. },
  30662. sideDressed: {
  30663. height: math.unit(195, "cm"),
  30664. weight: math.unit(102, "kg"),
  30665. name: "Side-dressed",
  30666. image: {
  30667. source: "./media/characters/irbisgreif/side-dressed.svg",
  30668. extra: 788/688,
  30669. bottom: 21/809
  30670. }
  30671. },
  30672. backDressed: {
  30673. height: math.unit(216, "cm"),
  30674. weight: math.unit(102, "kg"),
  30675. name: "Back-dressed",
  30676. image: {
  30677. source: "./media/characters/irbisgreif/back-dressed.svg",
  30678. extra: 901/783,
  30679. bottom: 10/911
  30680. }
  30681. },
  30682. dick: {
  30683. height: math.unit(0.49, "feet"),
  30684. name: "Dick",
  30685. image: {
  30686. source: "./media/characters/irbisgreif/dick.svg"
  30687. }
  30688. },
  30689. wingTop: {
  30690. height: math.unit(1.93 , "feet"),
  30691. name: "Wing-top",
  30692. image: {
  30693. source: "./media/characters/irbisgreif/wing-top.svg"
  30694. }
  30695. },
  30696. wingBottom: {
  30697. height: math.unit(1.93 , "feet"),
  30698. name: "Wing-bottom",
  30699. image: {
  30700. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30701. }
  30702. },
  30703. },
  30704. [
  30705. {
  30706. name: "Normal",
  30707. height: math.unit(216, "cm"),
  30708. default: true
  30709. },
  30710. ]
  30711. ))
  30712. characterMakers.push(() => makeCharacter(
  30713. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30714. {
  30715. front: {
  30716. height: math.unit(6, "feet"),
  30717. weight: math.unit(150, "lb"),
  30718. name: "Front",
  30719. image: {
  30720. source: "./media/characters/pride/front.svg",
  30721. extra: 1299/1230,
  30722. bottom: 18/1317
  30723. }
  30724. },
  30725. },
  30726. [
  30727. {
  30728. name: "Normal",
  30729. height: math.unit(7, "feet")
  30730. },
  30731. {
  30732. name: "Mini-macro",
  30733. height: math.unit(11, "feet")
  30734. },
  30735. {
  30736. name: "Macro",
  30737. height: math.unit(15, "meters"),
  30738. default: true
  30739. },
  30740. {
  30741. name: "Macro+",
  30742. height: math.unit(40, "meters")
  30743. },
  30744. ]
  30745. ))
  30746. characterMakers.push(() => makeCharacter(
  30747. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30748. {
  30749. front: {
  30750. height: math.unit(4 + 2 / 12, "feet"),
  30751. weight: math.unit(95, "lb"),
  30752. name: "Front",
  30753. image: {
  30754. source: "./media/characters/vaelophis-nyx/front.svg",
  30755. extra: 2532/2330,
  30756. bottom: 0/2532
  30757. }
  30758. },
  30759. back: {
  30760. height: math.unit(4 + 2 / 12, "feet"),
  30761. weight: math.unit(95, "lb"),
  30762. name: "Back",
  30763. image: {
  30764. source: "./media/characters/vaelophis-nyx/back.svg",
  30765. extra: 2484/2361,
  30766. bottom: 0/2484
  30767. }
  30768. },
  30769. feralSide: {
  30770. height: math.unit(2 + 1/12, "feet"),
  30771. weight: math.unit(20, "lb"),
  30772. name: "Feral (Side)",
  30773. image: {
  30774. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30775. extra: 1721/1581,
  30776. bottom: 70/1791
  30777. }
  30778. },
  30779. feralLazing: {
  30780. height: math.unit(1.08, "feet"),
  30781. weight: math.unit(20, "lb"),
  30782. name: "Feral (Lazing)",
  30783. image: {
  30784. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30785. extra: 822/822,
  30786. bottom: 248/1070
  30787. }
  30788. },
  30789. ear: {
  30790. height: math.unit(0.416, "feet"),
  30791. name: "Ear",
  30792. image: {
  30793. source: "./media/characters/vaelophis-nyx/ear.svg"
  30794. }
  30795. },
  30796. eye: {
  30797. height: math.unit(0.0748, "feet"),
  30798. name: "Eye",
  30799. image: {
  30800. source: "./media/characters/vaelophis-nyx/eye.svg"
  30801. }
  30802. },
  30803. mouth: {
  30804. height: math.unit(0.378, "feet"),
  30805. name: "Mouth",
  30806. image: {
  30807. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30808. }
  30809. },
  30810. spade: {
  30811. height: math.unit(0.55, "feet"),
  30812. name: "Spade",
  30813. image: {
  30814. source: "./media/characters/vaelophis-nyx/spade.svg"
  30815. }
  30816. },
  30817. },
  30818. [
  30819. {
  30820. name: "Normal",
  30821. height: math.unit(4 + 2/12, "feet"),
  30822. default: true
  30823. },
  30824. ]
  30825. ))
  30826. characterMakers.push(() => makeCharacter(
  30827. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30828. {
  30829. front: {
  30830. height: math.unit(7, "feet"),
  30831. weight: math.unit(231, "lb"),
  30832. name: "Front",
  30833. image: {
  30834. source: "./media/characters/flux/front.svg",
  30835. extra: 919/871,
  30836. bottom: 0/919
  30837. }
  30838. },
  30839. back: {
  30840. height: math.unit(7, "feet"),
  30841. weight: math.unit(231, "lb"),
  30842. name: "Back",
  30843. image: {
  30844. source: "./media/characters/flux/back.svg",
  30845. extra: 1040/992,
  30846. bottom: 0/1040
  30847. }
  30848. },
  30849. frontDressed: {
  30850. height: math.unit(7, "feet"),
  30851. weight: math.unit(231, "lb"),
  30852. name: "Front (Dressed)",
  30853. image: {
  30854. source: "./media/characters/flux/front-dressed.svg",
  30855. extra: 919/871,
  30856. bottom: 0/919
  30857. }
  30858. },
  30859. feralSide: {
  30860. height: math.unit(5, "feet"),
  30861. weight: math.unit(150, "lb"),
  30862. name: "Feral (Side)",
  30863. image: {
  30864. source: "./media/characters/flux/feral-side.svg",
  30865. extra: 598/528,
  30866. bottom: 28/626
  30867. }
  30868. },
  30869. head: {
  30870. height: math.unit(1.585, "feet"),
  30871. name: "Head",
  30872. image: {
  30873. source: "./media/characters/flux/head.svg"
  30874. }
  30875. },
  30876. headSide: {
  30877. height: math.unit(1.74, "feet"),
  30878. name: "Head (Side)",
  30879. image: {
  30880. source: "./media/characters/flux/head-side.svg"
  30881. }
  30882. },
  30883. headSideFire: {
  30884. height: math.unit(1.76, "feet"),
  30885. name: "Head (Side, Fire)",
  30886. image: {
  30887. source: "./media/characters/flux/head-side-fire.svg"
  30888. }
  30889. },
  30890. },
  30891. [
  30892. {
  30893. name: "Normal",
  30894. height: math.unit(7, "feet"),
  30895. default: true
  30896. },
  30897. ]
  30898. ))
  30899. characterMakers.push(() => makeCharacter(
  30900. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30901. {
  30902. front: {
  30903. height: math.unit(9, "feet"),
  30904. weight: math.unit(1012, "lb"),
  30905. name: "Front",
  30906. image: {
  30907. source: "./media/characters/ulfra-lupae/front.svg",
  30908. extra: 1083/1011,
  30909. bottom: 67/1150
  30910. }
  30911. },
  30912. },
  30913. [
  30914. {
  30915. name: "Micro",
  30916. height: math.unit(6, "inches")
  30917. },
  30918. {
  30919. name: "Socializing",
  30920. height: math.unit(6 + 5/12, "feet")
  30921. },
  30922. {
  30923. name: "Normal",
  30924. height: math.unit(9, "feet"),
  30925. default: true
  30926. },
  30927. {
  30928. name: "Macro",
  30929. height: math.unit(150, "feet")
  30930. },
  30931. ]
  30932. ))
  30933. characterMakers.push(() => makeCharacter(
  30934. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30935. {
  30936. front: {
  30937. height: math.unit(5 + 2/12, "feet"),
  30938. weight: math.unit(120, "lb"),
  30939. name: "Front",
  30940. image: {
  30941. source: "./media/characters/timber/front.svg",
  30942. extra: 2814/2705,
  30943. bottom: 181/2995
  30944. }
  30945. },
  30946. },
  30947. [
  30948. {
  30949. name: "Normal",
  30950. height: math.unit(5 + 2/12, "feet"),
  30951. default: true
  30952. },
  30953. ]
  30954. ))
  30955. characterMakers.push(() => makeCharacter(
  30956. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30957. {
  30958. front: {
  30959. height: math.unit(5 + 7/12, "feet"),
  30960. weight: math.unit(220, "lb"),
  30961. name: "Front",
  30962. image: {
  30963. source: "./media/characters/nicki/front.svg",
  30964. extra: 453/419,
  30965. bottom: 7/460
  30966. }
  30967. },
  30968. frontAlt: {
  30969. height: math.unit(5 + 7/12, "feet"),
  30970. weight: math.unit(220, "lb"),
  30971. name: "Front-alt",
  30972. image: {
  30973. source: "./media/characters/nicki/front-alt.svg",
  30974. extra: 435/411,
  30975. bottom: 12/447
  30976. }
  30977. },
  30978. back: {
  30979. height: math.unit(5 + 7/12, "feet"),
  30980. weight: math.unit(220, "lb"),
  30981. name: "Back",
  30982. image: {
  30983. source: "./media/characters/nicki/back.svg",
  30984. extra: 440/413,
  30985. bottom: 19/459
  30986. }
  30987. },
  30988. taur: {
  30989. height: math.unit(7 + 6/12, "feet"),
  30990. weight: math.unit(700, "lb"),
  30991. name: "Taur",
  30992. image: {
  30993. source: "./media/characters/nicki/taur.svg",
  30994. extra: 975/773,
  30995. bottom: 0/975
  30996. }
  30997. },
  30998. frontNsfw: {
  30999. height: math.unit(5 + 7/12, "feet"),
  31000. weight: math.unit(220, "lb"),
  31001. name: "Front (NSFW)",
  31002. image: {
  31003. source: "./media/characters/nicki/front-nsfw.svg",
  31004. extra: 453/419,
  31005. bottom: 7/460
  31006. }
  31007. },
  31008. frontNsfwAlt: {
  31009. height: math.unit(5 + 7/12, "feet"),
  31010. weight: math.unit(220, "lb"),
  31011. name: "Front (Alt, NSFW)",
  31012. image: {
  31013. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31014. extra: 435/411,
  31015. bottom: 12/447
  31016. }
  31017. },
  31018. backNsfw: {
  31019. height: math.unit(5 + 7/12, "feet"),
  31020. weight: math.unit(220, "lb"),
  31021. name: "Back (NSFW)",
  31022. image: {
  31023. source: "./media/characters/nicki/back-nsfw.svg",
  31024. extra: 440/413,
  31025. bottom: 19/459
  31026. }
  31027. },
  31028. head: {
  31029. height: math.unit(2.1, "feet"),
  31030. name: "Head",
  31031. image: {
  31032. source: "./media/characters/nicki/head.svg"
  31033. }
  31034. },
  31035. paw: {
  31036. height: math.unit(1.88, "feet"),
  31037. name: "Paw",
  31038. image: {
  31039. source: "./media/characters/nicki/paw.svg"
  31040. }
  31041. },
  31042. },
  31043. [
  31044. {
  31045. name: "Normal",
  31046. height: math.unit(5 + 7/12, "feet"),
  31047. default: true
  31048. },
  31049. ]
  31050. ))
  31051. characterMakers.push(() => makeCharacter(
  31052. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31053. {
  31054. front: {
  31055. height: math.unit(7 + 10/12, "feet"),
  31056. weight: math.unit(3.5, "tons"),
  31057. name: "Front",
  31058. image: {
  31059. source: "./media/characters/lee/front.svg",
  31060. extra: 1773/1615,
  31061. bottom: 86/1859
  31062. }
  31063. },
  31064. hand: {
  31065. height: math.unit(1.78, "feet"),
  31066. name: "Hand",
  31067. image: {
  31068. source: "./media/characters/lee/hand.svg"
  31069. }
  31070. },
  31071. maw: {
  31072. height: math.unit(1.18, "feet"),
  31073. name: "Maw",
  31074. image: {
  31075. source: "./media/characters/lee/maw.svg"
  31076. }
  31077. },
  31078. },
  31079. [
  31080. {
  31081. name: "Normal",
  31082. height: math.unit(7 + 10/12, "feet"),
  31083. default: true
  31084. },
  31085. ]
  31086. ))
  31087. characterMakers.push(() => makeCharacter(
  31088. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31089. {
  31090. front: {
  31091. height: math.unit(9, "feet"),
  31092. name: "Front",
  31093. image: {
  31094. source: "./media/characters/guti/front.svg",
  31095. extra: 4551/4355,
  31096. bottom: 123/4674
  31097. }
  31098. },
  31099. tongue: {
  31100. height: math.unit(1, "feet"),
  31101. name: "Tongue",
  31102. image: {
  31103. source: "./media/characters/guti/tongue.svg"
  31104. }
  31105. },
  31106. paw: {
  31107. height: math.unit(1.18, "feet"),
  31108. name: "Paw",
  31109. image: {
  31110. source: "./media/characters/guti/paw.svg"
  31111. }
  31112. },
  31113. },
  31114. [
  31115. {
  31116. name: "Normal",
  31117. height: math.unit(9, "feet"),
  31118. default: true
  31119. },
  31120. ]
  31121. ))
  31122. characterMakers.push(() => makeCharacter(
  31123. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31124. {
  31125. side: {
  31126. height: math.unit(5, "meters"),
  31127. name: "Side",
  31128. image: {
  31129. source: "./media/characters/vesper/side.svg",
  31130. extra: 1605/1518,
  31131. bottom: 0/1605
  31132. }
  31133. },
  31134. },
  31135. [
  31136. {
  31137. name: "Small",
  31138. height: math.unit(5, "meters")
  31139. },
  31140. {
  31141. name: "Sage",
  31142. height: math.unit(100, "meters"),
  31143. default: true
  31144. },
  31145. {
  31146. name: "Fun Size",
  31147. height: math.unit(600, "meters")
  31148. },
  31149. {
  31150. name: "Goddess",
  31151. height: math.unit(20000, "km")
  31152. },
  31153. {
  31154. name: "Maximum",
  31155. height: math.unit(5, "galaxies")
  31156. },
  31157. ]
  31158. ))
  31159. characterMakers.push(() => makeCharacter(
  31160. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31161. {
  31162. front: {
  31163. height: math.unit(6 + 3/12, "feet"),
  31164. weight: math.unit(190, "lb"),
  31165. name: "Front",
  31166. image: {
  31167. source: "./media/characters/gawain/front.svg",
  31168. extra: 2222/2139,
  31169. bottom: 90/2312
  31170. }
  31171. },
  31172. back: {
  31173. height: math.unit(6 + 3/12, "feet"),
  31174. weight: math.unit(190, "lb"),
  31175. name: "Back",
  31176. image: {
  31177. source: "./media/characters/gawain/back.svg",
  31178. extra: 2199/2111,
  31179. bottom: 73/2272
  31180. }
  31181. },
  31182. },
  31183. [
  31184. {
  31185. name: "Normal",
  31186. height: math.unit(6 + 3/12, "feet"),
  31187. default: true
  31188. },
  31189. ]
  31190. ))
  31191. characterMakers.push(() => makeCharacter(
  31192. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31193. {
  31194. side: {
  31195. height: math.unit(3.5, "meters"),
  31196. weight: math.unit(16000, "lb"),
  31197. name: "Side",
  31198. image: {
  31199. source: "./media/characters/dascalti/side.svg",
  31200. extra: 392/273,
  31201. bottom: 47/439
  31202. }
  31203. },
  31204. breath: {
  31205. height: math.unit(7.4, "feet"),
  31206. name: "Breath",
  31207. image: {
  31208. source: "./media/characters/dascalti/breath.svg"
  31209. }
  31210. },
  31211. fed: {
  31212. height: math.unit(3.6, "meters"),
  31213. weight: math.unit(16000, "lb"),
  31214. name: "Fed",
  31215. image: {
  31216. source: "./media/characters/dascalti/fed.svg",
  31217. extra: 1419/820,
  31218. bottom: 95/1514
  31219. }
  31220. },
  31221. },
  31222. [
  31223. {
  31224. name: "Normal",
  31225. height: math.unit(3.5, "meters"),
  31226. default: true
  31227. },
  31228. ]
  31229. ))
  31230. characterMakers.push(() => makeCharacter(
  31231. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31232. {
  31233. front: {
  31234. height: math.unit(3 + 5/12, "feet"),
  31235. name: "Front",
  31236. image: {
  31237. source: "./media/characters/mauve/front.svg",
  31238. extra: 1126/1033,
  31239. bottom: 65/1191
  31240. }
  31241. },
  31242. side: {
  31243. height: math.unit(3 + 5/12, "feet"),
  31244. name: "Side",
  31245. image: {
  31246. source: "./media/characters/mauve/side.svg",
  31247. extra: 1089/1001,
  31248. bottom: 29/1118
  31249. }
  31250. },
  31251. back: {
  31252. height: math.unit(3 + 5/12, "feet"),
  31253. name: "Back",
  31254. image: {
  31255. source: "./media/characters/mauve/back.svg",
  31256. extra: 1173/1053,
  31257. bottom: 109/1282
  31258. }
  31259. },
  31260. },
  31261. [
  31262. {
  31263. name: "Normal",
  31264. height: math.unit(3 + 5/12, "feet"),
  31265. default: true
  31266. },
  31267. ]
  31268. ))
  31269. characterMakers.push(() => makeCharacter(
  31270. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31271. {
  31272. front: {
  31273. height: math.unit(6 + 3/12, "feet"),
  31274. weight: math.unit(430, "lb"),
  31275. name: "Front",
  31276. image: {
  31277. source: "./media/characters/carlos/front.svg",
  31278. extra: 1964/1913,
  31279. bottom: 70/2034
  31280. }
  31281. },
  31282. },
  31283. [
  31284. {
  31285. name: "Normal",
  31286. height: math.unit(6 + 3/12, "feet"),
  31287. default: true
  31288. },
  31289. ]
  31290. ))
  31291. characterMakers.push(() => makeCharacter(
  31292. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31293. {
  31294. back: {
  31295. height: math.unit(5 + 10/12, "feet"),
  31296. weight: math.unit(200, "lb"),
  31297. name: "Back",
  31298. image: {
  31299. source: "./media/characters/jax/back.svg",
  31300. extra: 764/739,
  31301. bottom: 25/789
  31302. }
  31303. },
  31304. },
  31305. [
  31306. {
  31307. name: "Normal",
  31308. height: math.unit(5 + 10/12, "feet"),
  31309. default: true
  31310. },
  31311. ]
  31312. ))
  31313. characterMakers.push(() => makeCharacter(
  31314. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31315. {
  31316. front: {
  31317. height: math.unit(8, "feet"),
  31318. weight: math.unit(250, "lb"),
  31319. name: "Front",
  31320. image: {
  31321. source: "./media/characters/eikthynir/front.svg",
  31322. extra: 1332/1166,
  31323. bottom: 82/1414
  31324. }
  31325. },
  31326. back: {
  31327. height: math.unit(8, "feet"),
  31328. weight: math.unit(250, "lb"),
  31329. name: "Back",
  31330. image: {
  31331. source: "./media/characters/eikthynir/back.svg",
  31332. extra: 1342/1190,
  31333. bottom: 19/1361
  31334. }
  31335. },
  31336. dick: {
  31337. height: math.unit(2.35, "feet"),
  31338. name: "Dick",
  31339. image: {
  31340. source: "./media/characters/eikthynir/dick.svg"
  31341. }
  31342. },
  31343. },
  31344. [
  31345. {
  31346. name: "Normal",
  31347. height: math.unit(8, "feet"),
  31348. default: true
  31349. },
  31350. ]
  31351. ))
  31352. characterMakers.push(() => makeCharacter(
  31353. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31354. {
  31355. front: {
  31356. height: math.unit(99, "meters"),
  31357. weight: math.unit(13000, "tons"),
  31358. name: "Front",
  31359. image: {
  31360. source: "./media/characters/zlmos/front.svg",
  31361. extra: 2202/1992,
  31362. bottom: 315/2517
  31363. }
  31364. },
  31365. },
  31366. [
  31367. {
  31368. name: "Macro",
  31369. height: math.unit(99, "meters"),
  31370. default: true
  31371. },
  31372. ]
  31373. ))
  31374. characterMakers.push(() => makeCharacter(
  31375. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31376. {
  31377. front: {
  31378. height: math.unit(6 + 5/12, "feet"),
  31379. name: "Front",
  31380. image: {
  31381. source: "./media/characters/purri/front.svg",
  31382. extra: 1698/1610,
  31383. bottom: 32/1730
  31384. }
  31385. },
  31386. frontAlt: {
  31387. height: math.unit(6 + 5/12, "feet"),
  31388. name: "Front (Alt)",
  31389. image: {
  31390. source: "./media/characters/purri/front-alt.svg",
  31391. extra: 450/420,
  31392. bottom: 26/476
  31393. }
  31394. },
  31395. boots: {
  31396. height: math.unit(5.5, "feet"),
  31397. name: "Boots",
  31398. image: {
  31399. source: "./media/characters/purri/boots.svg",
  31400. extra: 905/853,
  31401. bottom: 18/923
  31402. }
  31403. },
  31404. lying: {
  31405. height: math.unit(2, "feet"),
  31406. name: "Lying",
  31407. image: {
  31408. source: "./media/characters/purri/lying.svg",
  31409. extra: 940/843,
  31410. bottom: 146/1086
  31411. }
  31412. },
  31413. devious: {
  31414. height: math.unit(1.77, "feet"),
  31415. name: "Devious",
  31416. image: {
  31417. source: "./media/characters/purri/devious.svg",
  31418. extra: 1440/1155,
  31419. bottom: 147/1587
  31420. }
  31421. },
  31422. bean: {
  31423. height: math.unit(1.94, "feet"),
  31424. name: "Bean",
  31425. image: {
  31426. source: "./media/characters/purri/bean.svg"
  31427. }
  31428. },
  31429. },
  31430. [
  31431. {
  31432. name: "Micro",
  31433. height: math.unit(1, "mm")
  31434. },
  31435. {
  31436. name: "Normal",
  31437. height: math.unit(6 + 5/12, "feet"),
  31438. default: true
  31439. },
  31440. {
  31441. name: "Macro :3c",
  31442. height: math.unit(2, "miles")
  31443. },
  31444. ]
  31445. ))
  31446. characterMakers.push(() => makeCharacter(
  31447. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31448. {
  31449. front: {
  31450. height: math.unit(6 + 2/12, "feet"),
  31451. weight: math.unit(250, "lb"),
  31452. name: "Front",
  31453. image: {
  31454. source: "./media/characters/moonlight/front.svg",
  31455. extra: 1044/908,
  31456. bottom: 56/1100
  31457. }
  31458. },
  31459. feral: {
  31460. height: math.unit(3 + 1/12, "feet"),
  31461. weight: math.unit(50, "kg"),
  31462. name: "Feral",
  31463. image: {
  31464. source: "./media/characters/moonlight/feral.svg",
  31465. extra: 3705/2791,
  31466. bottom: 145/3850
  31467. }
  31468. },
  31469. paw: {
  31470. height: math.unit(1, "feet"),
  31471. name: "Paw",
  31472. image: {
  31473. source: "./media/characters/moonlight/paw.svg"
  31474. }
  31475. },
  31476. paws: {
  31477. height: math.unit(0.98, "feet"),
  31478. name: "Paws",
  31479. image: {
  31480. source: "./media/characters/moonlight/paws.svg",
  31481. extra: 939/939,
  31482. bottom: 50/989
  31483. }
  31484. },
  31485. mouth: {
  31486. height: math.unit(0.48, "feet"),
  31487. name: "Mouth",
  31488. image: {
  31489. source: "./media/characters/moonlight/mouth.svg"
  31490. }
  31491. },
  31492. dick: {
  31493. height: math.unit(1.46, "feet"),
  31494. name: "Dick",
  31495. image: {
  31496. source: "./media/characters/moonlight/dick.svg"
  31497. }
  31498. },
  31499. },
  31500. [
  31501. {
  31502. name: "Normal",
  31503. height: math.unit(6 + 2/12, "feet"),
  31504. default: true
  31505. },
  31506. {
  31507. name: "Macro",
  31508. height: math.unit(300, "feet")
  31509. },
  31510. {
  31511. name: "Macro+",
  31512. height: math.unit(1, "mile")
  31513. },
  31514. {
  31515. name: "Mt. Moon",
  31516. height: math.unit(5, "miles")
  31517. },
  31518. {
  31519. name: "Megamacro",
  31520. height: math.unit(15, "miles")
  31521. },
  31522. ]
  31523. ))
  31524. characterMakers.push(() => makeCharacter(
  31525. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31526. {
  31527. back: {
  31528. height: math.unit(6, "feet"),
  31529. weight: math.unit(150, "lb"),
  31530. name: "Back",
  31531. image: {
  31532. source: "./media/characters/sylen/back.svg",
  31533. extra: 1335/1273,
  31534. bottom: 107/1442
  31535. }
  31536. },
  31537. },
  31538. [
  31539. {
  31540. name: "Normal",
  31541. height: math.unit(5 + 5/12, "feet")
  31542. },
  31543. {
  31544. name: "Megamacro",
  31545. height: math.unit(3, "miles"),
  31546. default: true
  31547. },
  31548. ]
  31549. ))
  31550. characterMakers.push(() => makeCharacter(
  31551. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31552. {
  31553. front: {
  31554. height: math.unit(6, "feet"),
  31555. weight: math.unit(190, "lb"),
  31556. name: "Front",
  31557. image: {
  31558. source: "./media/characters/huttser/front.svg",
  31559. extra: 1152/1058,
  31560. bottom: 23/1175
  31561. }
  31562. },
  31563. side: {
  31564. height: math.unit(6, "feet"),
  31565. weight: math.unit(190, "lb"),
  31566. name: "Side",
  31567. image: {
  31568. source: "./media/characters/huttser/side.svg",
  31569. extra: 1174/1065,
  31570. bottom: 18/1192
  31571. }
  31572. },
  31573. back: {
  31574. height: math.unit(6, "feet"),
  31575. weight: math.unit(190, "lb"),
  31576. name: "Back",
  31577. image: {
  31578. source: "./media/characters/huttser/back.svg",
  31579. extra: 1158/1056,
  31580. bottom: 12/1170
  31581. }
  31582. },
  31583. },
  31584. [
  31585. ]
  31586. ))
  31587. characterMakers.push(() => makeCharacter(
  31588. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31589. {
  31590. side: {
  31591. height: math.unit(12 + 9/12, "feet"),
  31592. weight: math.unit(15000, "lb"),
  31593. name: "Side",
  31594. image: {
  31595. source: "./media/characters/faan/side.svg",
  31596. extra: 2747/2697,
  31597. bottom: 0/2747
  31598. }
  31599. },
  31600. front: {
  31601. height: math.unit(12 + 9/12, "feet"),
  31602. weight: math.unit(15000, "lb"),
  31603. name: "Front",
  31604. image: {
  31605. source: "./media/characters/faan/front.svg",
  31606. extra: 607/571,
  31607. bottom: 24/631
  31608. }
  31609. },
  31610. head: {
  31611. height: math.unit(2.85, "feet"),
  31612. name: "Head",
  31613. image: {
  31614. source: "./media/characters/faan/head.svg"
  31615. }
  31616. },
  31617. headAlt: {
  31618. height: math.unit(3.13, "feet"),
  31619. name: "Head-alt",
  31620. image: {
  31621. source: "./media/characters/faan/head-alt.svg"
  31622. }
  31623. },
  31624. },
  31625. [
  31626. {
  31627. name: "Normal",
  31628. height: math.unit(12 + 9/12, "feet"),
  31629. default: true
  31630. },
  31631. ]
  31632. ))
  31633. characterMakers.push(() => makeCharacter(
  31634. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31635. {
  31636. front: {
  31637. height: math.unit(6, "feet"),
  31638. weight: math.unit(300, "lb"),
  31639. name: "Front",
  31640. image: {
  31641. source: "./media/characters/tanio/front.svg",
  31642. extra: 711/673,
  31643. bottom: 25/736
  31644. }
  31645. },
  31646. },
  31647. [
  31648. {
  31649. name: "Normal",
  31650. height: math.unit(6, "feet"),
  31651. default: true
  31652. },
  31653. ]
  31654. ))
  31655. characterMakers.push(() => makeCharacter(
  31656. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31657. {
  31658. front: {
  31659. height: math.unit(3, "inches"),
  31660. name: "Front",
  31661. image: {
  31662. source: "./media/characters/noboru/front.svg",
  31663. extra: 1039/932,
  31664. bottom: 18/1057
  31665. }
  31666. },
  31667. },
  31668. [
  31669. {
  31670. name: "Micro",
  31671. height: math.unit(3, "inches"),
  31672. default: true
  31673. },
  31674. ]
  31675. ))
  31676. characterMakers.push(() => makeCharacter(
  31677. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31678. {
  31679. front: {
  31680. height: math.unit(1.85, "meters"),
  31681. weight: math.unit(80, "kg"),
  31682. name: "Front",
  31683. image: {
  31684. source: "./media/characters/daniel-barrett/front.svg",
  31685. extra: 355/337,
  31686. bottom: 9/364
  31687. }
  31688. },
  31689. },
  31690. [
  31691. {
  31692. name: "Pico",
  31693. height: math.unit(0.0433, "mm")
  31694. },
  31695. {
  31696. name: "Nano",
  31697. height: math.unit(1.5, "mm")
  31698. },
  31699. {
  31700. name: "Micro",
  31701. height: math.unit(5.3, "cm"),
  31702. default: true
  31703. },
  31704. {
  31705. name: "Normal",
  31706. height: math.unit(1.85, "meters")
  31707. },
  31708. {
  31709. name: "Macro",
  31710. height: math.unit(64.7, "meters")
  31711. },
  31712. {
  31713. name: "Megamacro",
  31714. height: math.unit(2.26, "km")
  31715. },
  31716. {
  31717. name: "Gigamacro",
  31718. height: math.unit(79, "km")
  31719. },
  31720. {
  31721. name: "Teramacro",
  31722. height: math.unit(2765, "km")
  31723. },
  31724. {
  31725. name: "Petamacro",
  31726. height: math.unit(96678, "km")
  31727. },
  31728. ]
  31729. ))
  31730. characterMakers.push(() => makeCharacter(
  31731. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31732. {
  31733. front: {
  31734. height: math.unit(30, "meters"),
  31735. weight: math.unit(400, "tons"),
  31736. name: "Front",
  31737. image: {
  31738. source: "./media/characters/zeel/front.svg",
  31739. extra: 2599/2599,
  31740. bottom: 226/2825
  31741. }
  31742. },
  31743. },
  31744. [
  31745. {
  31746. name: "Macro",
  31747. height: math.unit(30, "meters"),
  31748. default: true
  31749. },
  31750. ]
  31751. ))
  31752. characterMakers.push(() => makeCharacter(
  31753. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31754. {
  31755. front: {
  31756. height: math.unit(6 + 7/12, "feet"),
  31757. weight: math.unit(210, "lb"),
  31758. name: "Front",
  31759. image: {
  31760. source: "./media/characters/tarn/front.svg",
  31761. extra: 3517/3220,
  31762. bottom: 91/3608
  31763. }
  31764. },
  31765. back: {
  31766. height: math.unit(6 + 7/12, "feet"),
  31767. weight: math.unit(210, "lb"),
  31768. name: "Back",
  31769. image: {
  31770. source: "./media/characters/tarn/back.svg",
  31771. extra: 3566/3241,
  31772. bottom: 34/3600
  31773. }
  31774. },
  31775. dick: {
  31776. height: math.unit(1.65, "feet"),
  31777. name: "Dick",
  31778. image: {
  31779. source: "./media/characters/tarn/dick.svg"
  31780. }
  31781. },
  31782. paw: {
  31783. height: math.unit(1.80, "feet"),
  31784. name: "Paw",
  31785. image: {
  31786. source: "./media/characters/tarn/paw.svg"
  31787. }
  31788. },
  31789. tongue: {
  31790. height: math.unit(0.97, "feet"),
  31791. name: "Tongue",
  31792. image: {
  31793. source: "./media/characters/tarn/tongue.svg"
  31794. }
  31795. },
  31796. },
  31797. [
  31798. {
  31799. name: "Micro",
  31800. height: math.unit(4, "inches")
  31801. },
  31802. {
  31803. name: "Normal",
  31804. height: math.unit(6 + 7/12, "feet"),
  31805. default: true
  31806. },
  31807. {
  31808. name: "Macro",
  31809. height: math.unit(300, "feet")
  31810. },
  31811. ]
  31812. ))
  31813. characterMakers.push(() => makeCharacter(
  31814. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31815. {
  31816. front: {
  31817. height: math.unit(5 + 7/12, "feet"),
  31818. weight: math.unit(80, "kg"),
  31819. name: "Front",
  31820. image: {
  31821. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31822. extra: 3023/2865,
  31823. bottom: 33/3056
  31824. }
  31825. },
  31826. back: {
  31827. height: math.unit(5 + 7/12, "feet"),
  31828. weight: math.unit(80, "kg"),
  31829. name: "Back",
  31830. image: {
  31831. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31832. extra: 3020/2886,
  31833. bottom: 30/3050
  31834. }
  31835. },
  31836. dick: {
  31837. height: math.unit(0.98, "feet"),
  31838. name: "Dick",
  31839. image: {
  31840. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31841. }
  31842. },
  31843. anatomy: {
  31844. height: math.unit(2.86, "feet"),
  31845. name: "Anatomy",
  31846. image: {
  31847. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31848. }
  31849. },
  31850. },
  31851. [
  31852. {
  31853. name: "Really Small",
  31854. height: math.unit(2, "inches")
  31855. },
  31856. {
  31857. name: "Micro",
  31858. height: math.unit(5.583, "inches")
  31859. },
  31860. {
  31861. name: "Normal",
  31862. height: math.unit(5 + 7/12, "feet"),
  31863. default: true
  31864. },
  31865. {
  31866. name: "Macro",
  31867. height: math.unit(67, "feet")
  31868. },
  31869. {
  31870. name: "Megamacro",
  31871. height: math.unit(134, "feet")
  31872. },
  31873. ]
  31874. ))
  31875. characterMakers.push(() => makeCharacter(
  31876. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31877. {
  31878. front: {
  31879. height: math.unit(9, "feet"),
  31880. weight: math.unit(120, "lb"),
  31881. name: "Front",
  31882. image: {
  31883. source: "./media/characters/sally/front.svg",
  31884. extra: 1506/1349,
  31885. bottom: 66/1572
  31886. }
  31887. },
  31888. },
  31889. [
  31890. {
  31891. name: "Normal",
  31892. height: math.unit(9, "feet"),
  31893. default: true
  31894. },
  31895. ]
  31896. ))
  31897. characterMakers.push(() => makeCharacter(
  31898. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31899. {
  31900. front: {
  31901. height: math.unit(8, "feet"),
  31902. weight: math.unit(900, "lb"),
  31903. name: "Front",
  31904. image: {
  31905. source: "./media/characters/owen/front.svg",
  31906. extra: 1761/1657,
  31907. bottom: 74/1835
  31908. }
  31909. },
  31910. side: {
  31911. height: math.unit(8, "feet"),
  31912. weight: math.unit(900, "lb"),
  31913. name: "Side",
  31914. image: {
  31915. source: "./media/characters/owen/side.svg",
  31916. extra: 1797/1734,
  31917. bottom: 30/1827
  31918. }
  31919. },
  31920. back: {
  31921. height: math.unit(8, "feet"),
  31922. weight: math.unit(900, "lb"),
  31923. name: "Back",
  31924. image: {
  31925. source: "./media/characters/owen/back.svg",
  31926. extra: 1796/1706,
  31927. bottom: 59/1855
  31928. }
  31929. },
  31930. maw: {
  31931. height: math.unit(1.76, "feet"),
  31932. name: "Maw",
  31933. image: {
  31934. source: "./media/characters/owen/maw.svg"
  31935. }
  31936. },
  31937. },
  31938. [
  31939. {
  31940. name: "Normal",
  31941. height: math.unit(8, "feet"),
  31942. default: true
  31943. },
  31944. ]
  31945. ))
  31946. characterMakers.push(() => makeCharacter(
  31947. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31948. {
  31949. front: {
  31950. height: math.unit(4, "feet"),
  31951. weight: math.unit(400, "lb"),
  31952. name: "Front",
  31953. image: {
  31954. source: "./media/characters/ryth/front.svg",
  31955. extra: 1920/1748,
  31956. bottom: 42/1962
  31957. }
  31958. },
  31959. back: {
  31960. height: math.unit(4, "feet"),
  31961. weight: math.unit(400, "lb"),
  31962. name: "Back",
  31963. image: {
  31964. source: "./media/characters/ryth/back.svg",
  31965. extra: 1897/1690,
  31966. bottom: 89/1986
  31967. }
  31968. },
  31969. mouth: {
  31970. height: math.unit(1.39, "feet"),
  31971. name: "Mouth",
  31972. image: {
  31973. source: "./media/characters/ryth/mouth.svg"
  31974. }
  31975. },
  31976. tailmaw: {
  31977. height: math.unit(1.23, "feet"),
  31978. name: "Tailmaw",
  31979. image: {
  31980. source: "./media/characters/ryth/tailmaw.svg"
  31981. }
  31982. },
  31983. goia: {
  31984. height: math.unit(12, "feet"),
  31985. weight: math.unit(10800, "lb"),
  31986. name: "Goia",
  31987. image: {
  31988. source: "./media/characters/ryth/goia.svg",
  31989. extra: 3450/3198,
  31990. bottom: 61/3511
  31991. }
  31992. },
  31993. },
  31994. [
  31995. {
  31996. name: "Normal",
  31997. height: math.unit(4, "feet"),
  31998. default: true
  31999. },
  32000. ]
  32001. ))
  32002. characterMakers.push(() => makeCharacter(
  32003. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32004. {
  32005. front: {
  32006. height: math.unit(7, "feet"),
  32007. weight: math.unit(180, "lb"),
  32008. name: "Front",
  32009. image: {
  32010. source: "./media/characters/necrolance/front.svg",
  32011. extra: 1062/947,
  32012. bottom: 41/1103
  32013. }
  32014. },
  32015. back: {
  32016. height: math.unit(7, "feet"),
  32017. weight: math.unit(180, "lb"),
  32018. name: "Back",
  32019. image: {
  32020. source: "./media/characters/necrolance/back.svg",
  32021. extra: 1045/984,
  32022. bottom: 14/1059
  32023. }
  32024. },
  32025. wing: {
  32026. height: math.unit(2.67, "feet"),
  32027. name: "Wing",
  32028. image: {
  32029. source: "./media/characters/necrolance/wing.svg"
  32030. }
  32031. },
  32032. },
  32033. [
  32034. {
  32035. name: "Normal",
  32036. height: math.unit(7, "feet"),
  32037. default: true
  32038. },
  32039. ]
  32040. ))
  32041. characterMakers.push(() => makeCharacter(
  32042. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32043. {
  32044. front: {
  32045. height: math.unit(76, "meters"),
  32046. weight: math.unit(30000, "tons"),
  32047. name: "Front",
  32048. image: {
  32049. source: "./media/characters/tyler/front.svg",
  32050. extra: 1640/1640,
  32051. bottom: 114/1754
  32052. }
  32053. },
  32054. },
  32055. [
  32056. {
  32057. name: "Macro",
  32058. height: math.unit(76, "meters"),
  32059. default: true
  32060. },
  32061. ]
  32062. ))
  32063. characterMakers.push(() => makeCharacter(
  32064. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32065. {
  32066. front: {
  32067. height: math.unit(4 + 11/12, "feet"),
  32068. weight: math.unit(132, "lb"),
  32069. name: "Front",
  32070. image: {
  32071. source: "./media/characters/icey/front.svg",
  32072. extra: 2750/2550,
  32073. bottom: 33/2783
  32074. }
  32075. },
  32076. back: {
  32077. height: math.unit(4 + 11/12, "feet"),
  32078. weight: math.unit(132, "lb"),
  32079. name: "Back",
  32080. image: {
  32081. source: "./media/characters/icey/back.svg",
  32082. extra: 2624/2481,
  32083. bottom: 35/2659
  32084. }
  32085. },
  32086. },
  32087. [
  32088. {
  32089. name: "Normal",
  32090. height: math.unit(4 + 11/12, "feet"),
  32091. default: true
  32092. },
  32093. ]
  32094. ))
  32095. characterMakers.push(() => makeCharacter(
  32096. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32097. {
  32098. front: {
  32099. height: math.unit(100, "feet"),
  32100. weight: math.unit(0, "lb"),
  32101. name: "Front",
  32102. image: {
  32103. source: "./media/characters/smile/front.svg",
  32104. extra: 2983/2912,
  32105. bottom: 162/3145
  32106. }
  32107. },
  32108. back: {
  32109. height: math.unit(100, "feet"),
  32110. weight: math.unit(0, "lb"),
  32111. name: "Back",
  32112. image: {
  32113. source: "./media/characters/smile/back.svg",
  32114. extra: 3143/3031,
  32115. bottom: 91/3234
  32116. }
  32117. },
  32118. head: {
  32119. height: math.unit(26.3, "feet"),
  32120. weight: math.unit(0, "lb"),
  32121. name: "Head",
  32122. image: {
  32123. source: "./media/characters/smile/head.svg"
  32124. }
  32125. },
  32126. collar: {
  32127. height: math.unit(5.3, "feet"),
  32128. weight: math.unit(0, "lb"),
  32129. name: "Collar",
  32130. image: {
  32131. source: "./media/characters/smile/collar.svg"
  32132. }
  32133. },
  32134. },
  32135. [
  32136. {
  32137. name: "Macro",
  32138. height: math.unit(100, "feet"),
  32139. default: true
  32140. },
  32141. ]
  32142. ))
  32143. characterMakers.push(() => makeCharacter(
  32144. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32145. {
  32146. dragon: {
  32147. height: math.unit(26, "feet"),
  32148. weight: math.unit(36, "tons"),
  32149. name: "Dragon",
  32150. image: {
  32151. source: "./media/characters/arimphae/dragon.svg",
  32152. extra: 1574/983,
  32153. bottom: 357/1931
  32154. }
  32155. },
  32156. drake: {
  32157. height: math.unit(9, "feet"),
  32158. weight: math.unit(1.5, "tons"),
  32159. name: "Drake",
  32160. image: {
  32161. source: "./media/characters/arimphae/drake.svg",
  32162. extra: 1120/925,
  32163. bottom: 435/1555
  32164. }
  32165. },
  32166. },
  32167. [
  32168. {
  32169. name: "Small",
  32170. height: math.unit(26*5/9, "feet")
  32171. },
  32172. {
  32173. name: "Normal",
  32174. height: math.unit(26, "feet"),
  32175. default: true
  32176. },
  32177. ]
  32178. ))
  32179. characterMakers.push(() => makeCharacter(
  32180. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32181. {
  32182. front: {
  32183. height: math.unit(8 + 9/12, "feet"),
  32184. name: "Front",
  32185. image: {
  32186. source: "./media/characters/xander/front.svg",
  32187. extra: 1237/974,
  32188. bottom: 94/1331
  32189. }
  32190. },
  32191. },
  32192. [
  32193. {
  32194. name: "Normal",
  32195. height: math.unit(8 + 9/12, "feet"),
  32196. default: true
  32197. },
  32198. {
  32199. name: "Gaze Grabber",
  32200. height: math.unit(13 + 8/12, "feet")
  32201. },
  32202. {
  32203. name: "Jaw Dropper",
  32204. height: math.unit(27, "feet")
  32205. },
  32206. {
  32207. name: "Show Stopper",
  32208. height: math.unit(136, "feet")
  32209. },
  32210. {
  32211. name: "Superstar",
  32212. height: math.unit(1.9e6, "miles")
  32213. },
  32214. ]
  32215. ))
  32216. characterMakers.push(() => makeCharacter(
  32217. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32218. {
  32219. side: {
  32220. height: math.unit(2100, "feet"),
  32221. name: "Side",
  32222. image: {
  32223. source: "./media/characters/osiris/side.svg",
  32224. extra: 1105/939,
  32225. bottom: 167/1272
  32226. }
  32227. },
  32228. },
  32229. [
  32230. {
  32231. name: "Macro",
  32232. height: math.unit(2100, "feet"),
  32233. default: true
  32234. },
  32235. ]
  32236. ))
  32237. characterMakers.push(() => makeCharacter(
  32238. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32239. {
  32240. front: {
  32241. height: math.unit(6 + 8/12, "feet"),
  32242. weight: math.unit(225, "lb"),
  32243. name: "Front",
  32244. image: {
  32245. source: "./media/characters/rhys-londe/front.svg",
  32246. extra: 2258/2141,
  32247. bottom: 188/2446
  32248. }
  32249. },
  32250. back: {
  32251. height: math.unit(6 + 8/12, "feet"),
  32252. weight: math.unit(225, "lb"),
  32253. name: "Back",
  32254. image: {
  32255. source: "./media/characters/rhys-londe/back.svg",
  32256. extra: 2237/2137,
  32257. bottom: 63/2300
  32258. }
  32259. },
  32260. frontNsfw: {
  32261. height: math.unit(6 + 8/12, "feet"),
  32262. weight: math.unit(225, "lb"),
  32263. name: "Front (NSFW)",
  32264. image: {
  32265. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32266. extra: 2258/2141,
  32267. bottom: 188/2446
  32268. }
  32269. },
  32270. backNsfw: {
  32271. height: math.unit(6 + 8/12, "feet"),
  32272. weight: math.unit(225, "lb"),
  32273. name: "Back (NSFW)",
  32274. image: {
  32275. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32276. extra: 2237/2137,
  32277. bottom: 63/2300
  32278. }
  32279. },
  32280. dick: {
  32281. height: math.unit(30, "inches"),
  32282. name: "Dick",
  32283. image: {
  32284. source: "./media/characters/rhys-londe/dick.svg"
  32285. }
  32286. },
  32287. maw: {
  32288. height: math.unit(1.6, "feet"),
  32289. name: "Maw",
  32290. image: {
  32291. source: "./media/characters/rhys-londe/maw.svg"
  32292. }
  32293. },
  32294. },
  32295. [
  32296. {
  32297. name: "Normal",
  32298. height: math.unit(6 + 8/12, "feet"),
  32299. default: true
  32300. },
  32301. ]
  32302. ))
  32303. characterMakers.push(() => makeCharacter(
  32304. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32305. {
  32306. front: {
  32307. height: math.unit(3 + 10/12, "feet"),
  32308. weight: math.unit(90, "lb"),
  32309. name: "Front",
  32310. image: {
  32311. source: "./media/characters/taivas-ensim/front.svg",
  32312. extra: 1327/1216,
  32313. bottom: 96/1423
  32314. }
  32315. },
  32316. back: {
  32317. height: math.unit(3 + 10/12, "feet"),
  32318. weight: math.unit(90, "lb"),
  32319. name: "Back",
  32320. image: {
  32321. source: "./media/characters/taivas-ensim/back.svg",
  32322. extra: 1355/1247,
  32323. bottom: 11/1366
  32324. }
  32325. },
  32326. frontNsfw: {
  32327. height: math.unit(3 + 10/12, "feet"),
  32328. weight: math.unit(90, "lb"),
  32329. name: "Front (NSFW)",
  32330. image: {
  32331. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32332. extra: 1327/1216,
  32333. bottom: 96/1423
  32334. }
  32335. },
  32336. backNsfw: {
  32337. height: math.unit(3 + 10/12, "feet"),
  32338. weight: math.unit(90, "lb"),
  32339. name: "Back (NSFW)",
  32340. image: {
  32341. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32342. extra: 1355/1247,
  32343. bottom: 11/1366
  32344. }
  32345. },
  32346. },
  32347. [
  32348. {
  32349. name: "Normal",
  32350. height: math.unit(3 + 10/12, "feet"),
  32351. default: true
  32352. },
  32353. ]
  32354. ))
  32355. characterMakers.push(() => makeCharacter(
  32356. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32357. {
  32358. front: {
  32359. height: math.unit(9 + 6/12, "feet"),
  32360. weight: math.unit(940, "lb"),
  32361. name: "Front",
  32362. image: {
  32363. source: "./media/characters/byliss/front.svg",
  32364. extra: 1327/1290,
  32365. bottom: 82/1409
  32366. }
  32367. },
  32368. back: {
  32369. height: math.unit(9 + 6/12, "feet"),
  32370. weight: math.unit(940, "lb"),
  32371. name: "Back",
  32372. image: {
  32373. source: "./media/characters/byliss/back.svg",
  32374. extra: 1376/1349,
  32375. bottom: 9/1385
  32376. }
  32377. },
  32378. frontNsfw: {
  32379. height: math.unit(9 + 6/12, "feet"),
  32380. weight: math.unit(940, "lb"),
  32381. name: "Front (NSFW)",
  32382. image: {
  32383. source: "./media/characters/byliss/front-nsfw.svg",
  32384. extra: 1327/1290,
  32385. bottom: 82/1409
  32386. }
  32387. },
  32388. backNsfw: {
  32389. height: math.unit(9 + 6/12, "feet"),
  32390. weight: math.unit(940, "lb"),
  32391. name: "Back (NSFW)",
  32392. image: {
  32393. source: "./media/characters/byliss/back-nsfw.svg",
  32394. extra: 1376/1349,
  32395. bottom: 9/1385
  32396. }
  32397. },
  32398. },
  32399. [
  32400. {
  32401. name: "Normal",
  32402. height: math.unit(9 + 6/12, "feet"),
  32403. default: true
  32404. },
  32405. ]
  32406. ))
  32407. characterMakers.push(() => makeCharacter(
  32408. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32409. {
  32410. front: {
  32411. height: math.unit(5 + 2/12, "feet"),
  32412. weight: math.unit(200, "lb"),
  32413. name: "Front",
  32414. image: {
  32415. source: "./media/characters/noraly/front.svg",
  32416. extra: 4985/4773,
  32417. bottom: 150/5135
  32418. }
  32419. },
  32420. full: {
  32421. height: math.unit(5 + 2/12, "feet"),
  32422. weight: math.unit(164, "lb"),
  32423. name: "Full",
  32424. image: {
  32425. source: "./media/characters/noraly/full.svg",
  32426. extra: 1114/1059,
  32427. bottom: 35/1149
  32428. }
  32429. },
  32430. fuller: {
  32431. height: math.unit(5 + 2/12, "feet"),
  32432. weight: math.unit(230, "lb"),
  32433. name: "Fuller",
  32434. image: {
  32435. source: "./media/characters/noraly/fuller.svg",
  32436. extra: 1114/1059,
  32437. bottom: 35/1149
  32438. }
  32439. },
  32440. fullest: {
  32441. height: math.unit(5 + 2/12, "feet"),
  32442. weight: math.unit(300, "lb"),
  32443. name: "Fullest",
  32444. image: {
  32445. source: "./media/characters/noraly/fullest.svg",
  32446. extra: 1114/1059,
  32447. bottom: 35/1149
  32448. }
  32449. },
  32450. },
  32451. [
  32452. {
  32453. name: "Normal",
  32454. height: math.unit(5 + 2/12, "feet"),
  32455. default: true
  32456. },
  32457. ]
  32458. ))
  32459. characterMakers.push(() => makeCharacter(
  32460. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32461. {
  32462. front: {
  32463. height: math.unit(5 + 2/12, "feet"),
  32464. weight: math.unit(210, "lb"),
  32465. name: "Front",
  32466. image: {
  32467. source: "./media/characters/pera/front.svg",
  32468. extra: 1560/1531,
  32469. bottom: 165/1725
  32470. }
  32471. },
  32472. back: {
  32473. height: math.unit(5 + 2/12, "feet"),
  32474. weight: math.unit(210, "lb"),
  32475. name: "Back",
  32476. image: {
  32477. source: "./media/characters/pera/back.svg",
  32478. extra: 1523/1493,
  32479. bottom: 152/1675
  32480. }
  32481. },
  32482. dick: {
  32483. height: math.unit(2.4, "feet"),
  32484. name: "Dick",
  32485. image: {
  32486. source: "./media/characters/pera/dick.svg"
  32487. }
  32488. },
  32489. },
  32490. [
  32491. {
  32492. name: "Normal",
  32493. height: math.unit(5 + 2/12, "feet"),
  32494. default: true
  32495. },
  32496. ]
  32497. ))
  32498. characterMakers.push(() => makeCharacter(
  32499. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32500. {
  32501. front: {
  32502. height: math.unit(12, "feet"),
  32503. weight: math.unit(3200, "lb"),
  32504. name: "Front",
  32505. image: {
  32506. source: "./media/characters/julian/front.svg",
  32507. extra: 2962/2701,
  32508. bottom: 184/3146
  32509. }
  32510. },
  32511. maw: {
  32512. height: math.unit(5.35, "feet"),
  32513. name: "Maw",
  32514. image: {
  32515. source: "./media/characters/julian/maw.svg"
  32516. }
  32517. },
  32518. paw: {
  32519. height: math.unit(3.07, "feet"),
  32520. name: "Paw",
  32521. image: {
  32522. source: "./media/characters/julian/paw.svg"
  32523. }
  32524. },
  32525. },
  32526. [
  32527. {
  32528. name: "Default",
  32529. height: math.unit(12, "feet"),
  32530. default: true
  32531. },
  32532. {
  32533. name: "Big",
  32534. height: math.unit(50, "feet")
  32535. },
  32536. {
  32537. name: "Really Big",
  32538. height: math.unit(1, "mile")
  32539. },
  32540. {
  32541. name: "Extremely Big",
  32542. height: math.unit(100, "miles")
  32543. },
  32544. {
  32545. name: "Planet Hugger",
  32546. height: math.unit(200, "megameters")
  32547. },
  32548. {
  32549. name: "Unreasonably Big",
  32550. height: math.unit(1e300, "meters")
  32551. },
  32552. ]
  32553. ))
  32554. characterMakers.push(() => makeCharacter(
  32555. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32556. {
  32557. solgooleo: {
  32558. height: math.unit(4, "meters"),
  32559. weight: math.unit(6000*1.5, "kg"),
  32560. volume: math.unit(6000, "liters"),
  32561. name: "Solgooleo",
  32562. image: {
  32563. source: "./media/characters/pi/solgooleo.svg",
  32564. extra: 388/331,
  32565. bottom: 29/417
  32566. }
  32567. },
  32568. },
  32569. [
  32570. {
  32571. name: "Normal",
  32572. height: math.unit(4, "meters"),
  32573. default: true
  32574. },
  32575. ]
  32576. ))
  32577. characterMakers.push(() => makeCharacter(
  32578. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32579. {
  32580. front: {
  32581. height: math.unit(8 + 2/12, "feet"),
  32582. weight: math.unit(4, "tons"),
  32583. name: "Front",
  32584. image: {
  32585. source: "./media/characters/shaun/front.svg",
  32586. extra: 1550/1505,
  32587. bottom: 353/1903
  32588. }
  32589. },
  32590. },
  32591. [
  32592. {
  32593. name: "Lorg",
  32594. height: math.unit(8 + 2/12, "feet"),
  32595. default: true
  32596. },
  32597. ]
  32598. ))
  32599. characterMakers.push(() => makeCharacter(
  32600. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32601. {
  32602. front: {
  32603. height: math.unit(7, "feet"),
  32604. name: "Front",
  32605. image: {
  32606. source: "./media/characters/sini/front.svg",
  32607. extra: 726/678,
  32608. bottom: 35/761
  32609. }
  32610. },
  32611. back: {
  32612. height: math.unit(7, "feet"),
  32613. name: "Back",
  32614. image: {
  32615. source: "./media/characters/sini/back.svg",
  32616. extra: 743/701,
  32617. bottom: 12/755
  32618. }
  32619. },
  32620. mawAnthro: {
  32621. height: math.unit(2.14, "feet"),
  32622. name: "Maw (Anthro)",
  32623. image: {
  32624. source: "./media/characters/sini/maw-anthro.svg"
  32625. }
  32626. },
  32627. dick: {
  32628. height: math.unit(1.45, "feet"),
  32629. name: "Dick (Anthro)",
  32630. image: {
  32631. source: "./media/characters/sini/dick-anthro.svg"
  32632. }
  32633. },
  32634. feral: {
  32635. height: math.unit(16, "feet"),
  32636. name: "Feral",
  32637. image: {
  32638. source: "./media/characters/sini/feral.svg",
  32639. extra: 814/605,
  32640. bottom: 11/825
  32641. }
  32642. },
  32643. mawFeral: {
  32644. height: math.unit(5.66, "feet"),
  32645. name: "Maw-feral",
  32646. image: {
  32647. source: "./media/characters/sini/maw-feral.svg"
  32648. }
  32649. },
  32650. footFeral: {
  32651. height: math.unit(5.17, "feet"),
  32652. name: "Foot-feral",
  32653. image: {
  32654. source: "./media/characters/sini/foot-feral.svg"
  32655. }
  32656. },
  32657. },
  32658. [
  32659. {
  32660. name: "Normal",
  32661. height: math.unit(7, "feet"),
  32662. default: true
  32663. },
  32664. ]
  32665. ))
  32666. characterMakers.push(() => makeCharacter(
  32667. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32668. {
  32669. side: {
  32670. height: math.unit(13, "meters"),
  32671. weight: math.unit(9072, "kg"),
  32672. name: "Side",
  32673. image: {
  32674. source: "./media/characters/raylldo/side.svg",
  32675. extra: 403/344,
  32676. bottom: 42/445
  32677. }
  32678. },
  32679. leaping: {
  32680. height: math.unit(12.3, "meters"),
  32681. weight: math.unit(9072, "kg"),
  32682. name: "Leaping",
  32683. image: {
  32684. source: "./media/characters/raylldo/leaping.svg",
  32685. extra: 470/249,
  32686. bottom: 13/483
  32687. }
  32688. },
  32689. flying: {
  32690. height: math.unit(18, "meters"),
  32691. weight: math.unit(9072, "kg"),
  32692. name: "Flying",
  32693. image: {
  32694. source: "./media/characters/raylldo/flying.svg"
  32695. }
  32696. },
  32697. head: {
  32698. height: math.unit(5.85, "meters"),
  32699. name: "Head",
  32700. image: {
  32701. source: "./media/characters/raylldo/head.svg"
  32702. }
  32703. },
  32704. maw: {
  32705. height: math.unit(5.32, "meters"),
  32706. name: "Maw",
  32707. image: {
  32708. source: "./media/characters/raylldo/maw.svg"
  32709. }
  32710. },
  32711. eye: {
  32712. height: math.unit(0.54, "meters"),
  32713. name: "Eye",
  32714. image: {
  32715. source: "./media/characters/raylldo/eye.svg"
  32716. }
  32717. },
  32718. },
  32719. [
  32720. {
  32721. name: "Normal",
  32722. height: math.unit(13, "meters"),
  32723. default: true
  32724. },
  32725. ]
  32726. ))
  32727. characterMakers.push(() => makeCharacter(
  32728. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32729. {
  32730. anthroFront: {
  32731. height: math.unit(9, "feet"),
  32732. weight: math.unit(600, "lb"),
  32733. name: "Anthro (Front)",
  32734. image: {
  32735. source: "./media/characters/glint/anthro-front.svg",
  32736. extra: 1097/1018,
  32737. bottom: 28/1125
  32738. }
  32739. },
  32740. anthroBack: {
  32741. height: math.unit(9, "feet"),
  32742. weight: math.unit(600, "lb"),
  32743. name: "Anthro (Back)",
  32744. image: {
  32745. source: "./media/characters/glint/anthro-back.svg",
  32746. extra: 1154/997,
  32747. bottom: 36/1190
  32748. }
  32749. },
  32750. feral: {
  32751. height: math.unit(11, "feet"),
  32752. weight: math.unit(50000, "lb"),
  32753. name: "Feral",
  32754. image: {
  32755. source: "./media/characters/glint/feral.svg",
  32756. extra: 3035/1585,
  32757. bottom: 1169/4204
  32758. }
  32759. },
  32760. dickAnthro: {
  32761. height: math.unit(0.7, "meters"),
  32762. name: "Dick (Anthro)",
  32763. image: {
  32764. source: "./media/characters/glint/dick-anthro.svg"
  32765. }
  32766. },
  32767. dickFeral: {
  32768. height: math.unit(2.65, "meters"),
  32769. name: "Dick (Feral)",
  32770. image: {
  32771. source: "./media/characters/glint/dick-feral.svg"
  32772. }
  32773. },
  32774. slitHidden: {
  32775. height: math.unit(5.85, "meters"),
  32776. name: "Slit (Hidden)",
  32777. image: {
  32778. source: "./media/characters/glint/slit-hidden.svg"
  32779. }
  32780. },
  32781. slitErect: {
  32782. height: math.unit(5.85, "meters"),
  32783. name: "Slit (Erect)",
  32784. image: {
  32785. source: "./media/characters/glint/slit-erect.svg"
  32786. }
  32787. },
  32788. mawAnthro: {
  32789. height: math.unit(0.63, "meters"),
  32790. name: "Maw (Anthro)",
  32791. image: {
  32792. source: "./media/characters/glint/maw.svg"
  32793. }
  32794. },
  32795. mawFeral: {
  32796. height: math.unit(2.89, "meters"),
  32797. name: "Maw (Feral)",
  32798. image: {
  32799. source: "./media/characters/glint/maw.svg"
  32800. }
  32801. },
  32802. },
  32803. [
  32804. {
  32805. name: "Normal",
  32806. height: math.unit(9, "feet"),
  32807. default: true
  32808. },
  32809. ]
  32810. ))
  32811. characterMakers.push(() => makeCharacter(
  32812. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32813. {
  32814. side: {
  32815. height: math.unit(15, "feet"),
  32816. weight: math.unit(5000, "kg"),
  32817. name: "Side",
  32818. image: {
  32819. source: "./media/characters/kairne/side.svg",
  32820. extra: 979/811,
  32821. bottom: 13/992
  32822. }
  32823. },
  32824. front: {
  32825. height: math.unit(15, "feet"),
  32826. weight: math.unit(5000, "kg"),
  32827. name: "Front",
  32828. image: {
  32829. source: "./media/characters/kairne/front.svg",
  32830. extra: 908/814,
  32831. bottom: 26/934
  32832. }
  32833. },
  32834. sideNsfw: {
  32835. height: math.unit(15, "feet"),
  32836. weight: math.unit(5000, "kg"),
  32837. name: "Side (NSFW)",
  32838. image: {
  32839. source: "./media/characters/kairne/side-nsfw.svg",
  32840. extra: 979/811,
  32841. bottom: 13/992
  32842. }
  32843. },
  32844. frontNsfw: {
  32845. height: math.unit(15, "feet"),
  32846. weight: math.unit(5000, "kg"),
  32847. name: "Front (NSFW)",
  32848. image: {
  32849. source: "./media/characters/kairne/front-nsfw.svg",
  32850. extra: 908/814,
  32851. bottom: 26/934
  32852. }
  32853. },
  32854. dickCaged: {
  32855. height: math.unit(0.65, "meters"),
  32856. name: "Dick-caged",
  32857. image: {
  32858. source: "./media/characters/kairne/dick-caged.svg"
  32859. }
  32860. },
  32861. dick: {
  32862. height: math.unit(0.79, "meters"),
  32863. name: "Dick",
  32864. image: {
  32865. source: "./media/characters/kairne/dick.svg"
  32866. }
  32867. },
  32868. genitals: {
  32869. height: math.unit(1.29, "meters"),
  32870. name: "Genitals",
  32871. image: {
  32872. source: "./media/characters/kairne/genitals.svg"
  32873. }
  32874. },
  32875. maw: {
  32876. height: math.unit(1.73, "meters"),
  32877. name: "Maw",
  32878. image: {
  32879. source: "./media/characters/kairne/maw.svg"
  32880. }
  32881. },
  32882. },
  32883. [
  32884. {
  32885. name: "Normal",
  32886. height: math.unit(15, "feet"),
  32887. default: true
  32888. },
  32889. ]
  32890. ))
  32891. characterMakers.push(() => makeCharacter(
  32892. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32893. {
  32894. front: {
  32895. height: math.unit(5 + 8/12, "feet"),
  32896. weight: math.unit(139, "lb"),
  32897. name: "Front",
  32898. image: {
  32899. source: "./media/characters/biscuit-jackal/front.svg",
  32900. extra: 2106/1961,
  32901. bottom: 58/2164
  32902. }
  32903. },
  32904. back: {
  32905. height: math.unit(5 + 8/12, "feet"),
  32906. weight: math.unit(139, "lb"),
  32907. name: "Back",
  32908. image: {
  32909. source: "./media/characters/biscuit-jackal/back.svg",
  32910. extra: 2132/1976,
  32911. bottom: 57/2189
  32912. }
  32913. },
  32914. werejackal: {
  32915. height: math.unit(6 + 3/12, "feet"),
  32916. weight: math.unit(188, "lb"),
  32917. name: "Werejackal",
  32918. image: {
  32919. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32920. extra: 2373/2178,
  32921. bottom: 53/2426
  32922. }
  32923. },
  32924. },
  32925. [
  32926. {
  32927. name: "Normal",
  32928. height: math.unit(5 + 8/12, "feet"),
  32929. default: true
  32930. },
  32931. ]
  32932. ))
  32933. characterMakers.push(() => makeCharacter(
  32934. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32935. {
  32936. front: {
  32937. height: math.unit(140, "cm"),
  32938. weight: math.unit(45, "kg"),
  32939. name: "Front",
  32940. image: {
  32941. source: "./media/characters/tayra-white/front.svg",
  32942. extra: 2229/2192,
  32943. bottom: 75/2304
  32944. }
  32945. },
  32946. },
  32947. [
  32948. {
  32949. name: "Normal",
  32950. height: math.unit(140, "cm"),
  32951. default: true
  32952. },
  32953. ]
  32954. ))
  32955. characterMakers.push(() => makeCharacter(
  32956. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32957. {
  32958. front: {
  32959. height: math.unit(4 + 5/12, "feet"),
  32960. name: "Front",
  32961. image: {
  32962. source: "./media/characters/scoop/front.svg",
  32963. extra: 1257/1136,
  32964. bottom: 69/1326
  32965. }
  32966. },
  32967. back: {
  32968. height: math.unit(4 + 5/12, "feet"),
  32969. name: "Back",
  32970. image: {
  32971. source: "./media/characters/scoop/back.svg",
  32972. extra: 1321/1152,
  32973. bottom: 32/1353
  32974. }
  32975. },
  32976. maw: {
  32977. height: math.unit(0.68, "feet"),
  32978. name: "Maw",
  32979. image: {
  32980. source: "./media/characters/scoop/maw.svg"
  32981. }
  32982. },
  32983. },
  32984. [
  32985. {
  32986. name: "Really Small",
  32987. height: math.unit(1, "mm")
  32988. },
  32989. {
  32990. name: "Micro",
  32991. height: math.unit(1, "inch")
  32992. },
  32993. {
  32994. name: "Normal",
  32995. height: math.unit(4 + 5/12, "feet"),
  32996. default: true
  32997. },
  32998. {
  32999. name: "Macro",
  33000. height: math.unit(200, "feet")
  33001. },
  33002. {
  33003. name: "Megamacro",
  33004. height: math.unit(3240, "feet")
  33005. },
  33006. {
  33007. name: "Teramacro",
  33008. height: math.unit(2500, "miles")
  33009. },
  33010. ]
  33011. ))
  33012. characterMakers.push(() => makeCharacter(
  33013. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33014. {
  33015. front: {
  33016. height: math.unit(15 + 7/12, "feet"),
  33017. name: "Front",
  33018. image: {
  33019. source: "./media/characters/saphinara/front.svg",
  33020. extra: 604/546,
  33021. bottom: 19/623
  33022. }
  33023. },
  33024. side: {
  33025. height: math.unit(15 + 7/12, "feet"),
  33026. name: "Side",
  33027. image: {
  33028. source: "./media/characters/saphinara/side.svg",
  33029. extra: 605/547,
  33030. bottom: 6/611
  33031. }
  33032. },
  33033. back: {
  33034. height: math.unit(15 + 7/12, "feet"),
  33035. name: "Back",
  33036. image: {
  33037. source: "./media/characters/saphinara/back.svg",
  33038. extra: 591/531,
  33039. bottom: 13/604
  33040. }
  33041. },
  33042. frontTail: {
  33043. height: math.unit(15 + 7/12, "feet"),
  33044. name: "Front (Full Tail)",
  33045. image: {
  33046. source: "./media/characters/saphinara/front-tail.svg",
  33047. extra: 748/547,
  33048. bottom: 66/814
  33049. }
  33050. },
  33051. },
  33052. [
  33053. {
  33054. name: "Normal",
  33055. height: math.unit(15 + 7/12, "feet"),
  33056. default: true
  33057. },
  33058. {
  33059. name: "Angry",
  33060. height: math.unit(30 + 6/12, "feet")
  33061. },
  33062. {
  33063. name: "Enraged",
  33064. height: math.unit(102 + 1/12, "feet")
  33065. },
  33066. ]
  33067. ))
  33068. characterMakers.push(() => makeCharacter(
  33069. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33070. {
  33071. front: {
  33072. height: math.unit(6 + 8/12, "feet"),
  33073. weight: math.unit(300, "lb"),
  33074. name: "Front",
  33075. image: {
  33076. source: "./media/characters/jrain/front.svg",
  33077. extra: 3039/2865,
  33078. bottom: 399/3438
  33079. }
  33080. },
  33081. back: {
  33082. height: math.unit(6 + 8/12, "feet"),
  33083. weight: math.unit(300, "lb"),
  33084. name: "Back",
  33085. image: {
  33086. source: "./media/characters/jrain/back.svg",
  33087. extra: 3089/2938,
  33088. bottom: 172/3261
  33089. }
  33090. },
  33091. head: {
  33092. height: math.unit(2.14, "feet"),
  33093. name: "Head",
  33094. image: {
  33095. source: "./media/characters/jrain/head.svg"
  33096. }
  33097. },
  33098. maw: {
  33099. height: math.unit(1.77, "feet"),
  33100. name: "Maw",
  33101. image: {
  33102. source: "./media/characters/jrain/maw.svg"
  33103. }
  33104. },
  33105. leftHand: {
  33106. height: math.unit(1.1, "feet"),
  33107. name: "Left Hand",
  33108. image: {
  33109. source: "./media/characters/jrain/left-hand.svg"
  33110. }
  33111. },
  33112. rightHand: {
  33113. height: math.unit(1.1, "feet"),
  33114. name: "Right Hand",
  33115. image: {
  33116. source: "./media/characters/jrain/right-hand.svg"
  33117. }
  33118. },
  33119. eye: {
  33120. height: math.unit(0.35, "feet"),
  33121. name: "Eye",
  33122. image: {
  33123. source: "./media/characters/jrain/eye.svg"
  33124. }
  33125. },
  33126. },
  33127. [
  33128. {
  33129. name: "Normal",
  33130. height: math.unit(6 + 8/12, "feet"),
  33131. default: true
  33132. },
  33133. {
  33134. name: "Casually Large",
  33135. height: math.unit(25, "feet")
  33136. },
  33137. {
  33138. name: "Giant",
  33139. height: math.unit(100, "feet")
  33140. },
  33141. {
  33142. name: "Kaiju",
  33143. height: math.unit(300, "feet")
  33144. },
  33145. ]
  33146. ))
  33147. characterMakers.push(() => makeCharacter(
  33148. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33149. {
  33150. dragon: {
  33151. height: math.unit(5, "meters"),
  33152. name: "Dragon",
  33153. image: {
  33154. source: "./media/characters/sabrina/dragon.svg",
  33155. extra: 3670 / 2365,
  33156. bottom: 333 / 4003
  33157. }
  33158. },
  33159. gryphon: {
  33160. height: math.unit(3, "meters"),
  33161. name: "Gryphon",
  33162. image: {
  33163. source: "./media/characters/sabrina/gryphon.svg",
  33164. extra: 1576 / 945,
  33165. bottom: 71 / 1647
  33166. }
  33167. },
  33168. snake: {
  33169. height: math.unit(12, "meters"),
  33170. name: "Snake",
  33171. image: {
  33172. source: "./media/characters/sabrina/snake.svg",
  33173. extra: 1758 / 1320,
  33174. bottom: 186 / 1944
  33175. }
  33176. },
  33177. collar: {
  33178. height: math.unit(1.86, "meters"),
  33179. name: "Collar",
  33180. image: {
  33181. source: "./media/characters/sabrina/collar.svg"
  33182. }
  33183. },
  33184. eye: {
  33185. height: math.unit(0.53, "meters"),
  33186. name: "Eye",
  33187. image: {
  33188. source: "./media/characters/sabrina/eye.svg"
  33189. }
  33190. },
  33191. foot: {
  33192. height: math.unit(1.86, "meters"),
  33193. name: "Foot",
  33194. image: {
  33195. source: "./media/characters/sabrina/foot.svg"
  33196. }
  33197. },
  33198. hand: {
  33199. height: math.unit(1.32, "meters"),
  33200. name: "Hand",
  33201. image: {
  33202. source: "./media/characters/sabrina/hand.svg"
  33203. }
  33204. },
  33205. head: {
  33206. height: math.unit(2.44, "meters"),
  33207. name: "Head",
  33208. image: {
  33209. source: "./media/characters/sabrina/head.svg"
  33210. }
  33211. },
  33212. headAngry: {
  33213. height: math.unit(2.44, "meters"),
  33214. name: "Head (Angry))",
  33215. image: {
  33216. source: "./media/characters/sabrina/head-angry.svg"
  33217. }
  33218. },
  33219. maw: {
  33220. height: math.unit(1.65, "meters"),
  33221. name: "Maw",
  33222. image: {
  33223. source: "./media/characters/sabrina/maw.svg"
  33224. }
  33225. },
  33226. spikes: {
  33227. height: math.unit(1.69, "meters"),
  33228. name: "Spikes",
  33229. image: {
  33230. source: "./media/characters/sabrina/spikes.svg"
  33231. }
  33232. },
  33233. stomach: {
  33234. height: math.unit(1.15, "meters"),
  33235. name: "Stomach",
  33236. image: {
  33237. source: "./media/characters/sabrina/stomach.svg"
  33238. }
  33239. },
  33240. tongue: {
  33241. height: math.unit(1.27, "meters"),
  33242. name: "Tongue",
  33243. image: {
  33244. source: "./media/characters/sabrina/tongue.svg"
  33245. }
  33246. },
  33247. wingDorsal: {
  33248. height: math.unit(4.85, "meters"),
  33249. name: "Wing (Dorsal)",
  33250. image: {
  33251. source: "./media/characters/sabrina/wing-dorsal.svg"
  33252. }
  33253. },
  33254. wingVentral: {
  33255. height: math.unit(4.85, "meters"),
  33256. name: "Wing (Ventral)",
  33257. image: {
  33258. source: "./media/characters/sabrina/wing-ventral.svg"
  33259. }
  33260. },
  33261. },
  33262. [
  33263. {
  33264. name: "Normal",
  33265. height: math.unit(5, "meters"),
  33266. default: true
  33267. },
  33268. ]
  33269. ))
  33270. characterMakers.push(() => makeCharacter(
  33271. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33272. {
  33273. frontMaid: {
  33274. height: math.unit(5 + 5/12, "feet"),
  33275. weight: math.unit(130, "lb"),
  33276. name: "Front (Maid)",
  33277. image: {
  33278. source: "./media/characters/midnight-tales/front-maid.svg",
  33279. extra: 489/454,
  33280. bottom: 61/550
  33281. }
  33282. },
  33283. frontFormal: {
  33284. height: math.unit(5 + 5/12, "feet"),
  33285. weight: math.unit(130, "lb"),
  33286. name: "Front (Formal)",
  33287. image: {
  33288. source: "./media/characters/midnight-tales/front-formal.svg",
  33289. extra: 489/454,
  33290. bottom: 61/550
  33291. }
  33292. },
  33293. back: {
  33294. height: math.unit(5 + 5/12, "feet"),
  33295. weight: math.unit(130, "lb"),
  33296. name: "Back",
  33297. image: {
  33298. source: "./media/characters/midnight-tales/back.svg",
  33299. extra: 498/456,
  33300. bottom: 33/531
  33301. }
  33302. },
  33303. frontBeast: {
  33304. height: math.unit(40, "feet"),
  33305. weight: math.unit(64000, "lb"),
  33306. name: "Front (Beast)",
  33307. image: {
  33308. source: "./media/characters/midnight-tales/front-beast.svg",
  33309. extra: 927/860,
  33310. bottom: 53/980
  33311. }
  33312. },
  33313. backBeast: {
  33314. height: math.unit(40, "feet"),
  33315. weight: math.unit(64000, "lb"),
  33316. name: "Back (Beast)",
  33317. image: {
  33318. source: "./media/characters/midnight-tales/back-beast.svg",
  33319. extra: 929/855,
  33320. bottom: 16/945
  33321. }
  33322. },
  33323. footBeast: {
  33324. height: math.unit(6.7, "feet"),
  33325. name: "Foot (Beast)",
  33326. image: {
  33327. source: "./media/characters/midnight-tales/foot-beast.svg"
  33328. }
  33329. },
  33330. headBeast: {
  33331. height: math.unit(8, "feet"),
  33332. name: "Head (Beast)",
  33333. image: {
  33334. source: "./media/characters/midnight-tales/head-beast.svg"
  33335. }
  33336. },
  33337. },
  33338. [
  33339. {
  33340. name: "Normal",
  33341. height: math.unit(5 + 5 / 12, "feet"),
  33342. default: true
  33343. },
  33344. {
  33345. name: "Macro",
  33346. height: math.unit(25, "feet")
  33347. },
  33348. ]
  33349. ))
  33350. characterMakers.push(() => makeCharacter(
  33351. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33352. {
  33353. front: {
  33354. height: math.unit(5 + 10/12, "feet"),
  33355. name: "Front",
  33356. image: {
  33357. source: "./media/characters/argon/front.svg",
  33358. extra: 2009/1935,
  33359. bottom: 118/2127
  33360. }
  33361. },
  33362. back: {
  33363. height: math.unit(5 + 10/12, "feet"),
  33364. name: "Back",
  33365. image: {
  33366. source: "./media/characters/argon/back.svg",
  33367. extra: 2047/1992,
  33368. bottom: 20/2067
  33369. }
  33370. },
  33371. frontDressed: {
  33372. height: math.unit(5 + 10/12, "feet"),
  33373. name: "Front (Dressed)",
  33374. image: {
  33375. source: "./media/characters/argon/front-dressed.svg",
  33376. extra: 2009/1935,
  33377. bottom: 118/2127
  33378. }
  33379. },
  33380. },
  33381. [
  33382. {
  33383. name: "Normal",
  33384. height: math.unit(5 + 10/12, "feet"),
  33385. default: true
  33386. },
  33387. ]
  33388. ))
  33389. characterMakers.push(() => makeCharacter(
  33390. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33391. {
  33392. front: {
  33393. height: math.unit(8 + 6/12, "feet"),
  33394. weight: math.unit(1150, "lb"),
  33395. name: "Front",
  33396. image: {
  33397. source: "./media/characters/kichi/front.svg",
  33398. extra: 1267/1164,
  33399. bottom: 61/1328
  33400. }
  33401. },
  33402. back: {
  33403. height: math.unit(8 + 6/12, "feet"),
  33404. weight: math.unit(1150, "lb"),
  33405. name: "Back",
  33406. image: {
  33407. source: "./media/characters/kichi/back.svg",
  33408. extra: 1273/1166,
  33409. bottom: 33/1306
  33410. }
  33411. },
  33412. },
  33413. [
  33414. {
  33415. name: "Normal",
  33416. height: math.unit(8 + 6/12, "feet"),
  33417. default: true
  33418. },
  33419. ]
  33420. ))
  33421. characterMakers.push(() => makeCharacter(
  33422. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33423. {
  33424. front: {
  33425. height: math.unit(6, "feet"),
  33426. weight: math.unit(210, "lb"),
  33427. name: "Front",
  33428. image: {
  33429. source: "./media/characters/manetel-greyscale/front.svg",
  33430. extra: 350/312,
  33431. bottom: 8/358
  33432. }
  33433. },
  33434. },
  33435. [
  33436. {
  33437. name: "Micro",
  33438. height: math.unit(2, "inches")
  33439. },
  33440. {
  33441. name: "Normal",
  33442. height: math.unit(6, "feet"),
  33443. default: true
  33444. },
  33445. {
  33446. name: "Minimacro",
  33447. height: math.unit(17, "feet")
  33448. },
  33449. {
  33450. name: "Macro",
  33451. height: math.unit(117, "feet")
  33452. },
  33453. ]
  33454. ))
  33455. characterMakers.push(() => makeCharacter(
  33456. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33457. {
  33458. side: {
  33459. height: math.unit(5 + 1/12, "feet"),
  33460. weight: math.unit(418, "lb"),
  33461. name: "Side",
  33462. image: {
  33463. source: "./media/characters/softpurr/side.svg",
  33464. extra: 1993/1945,
  33465. bottom: 134/2127
  33466. }
  33467. },
  33468. front: {
  33469. height: math.unit(5 + 1/12, "feet"),
  33470. weight: math.unit(418, "lb"),
  33471. name: "Front",
  33472. image: {
  33473. source: "./media/characters/softpurr/front.svg",
  33474. extra: 1950/1856,
  33475. bottom: 174/2124
  33476. }
  33477. },
  33478. paw: {
  33479. height: math.unit(1, "feet"),
  33480. name: "Paw",
  33481. image: {
  33482. source: "./media/characters/softpurr/paw.svg"
  33483. }
  33484. },
  33485. },
  33486. [
  33487. {
  33488. name: "Normal",
  33489. height: math.unit(5 + 1/12, "feet"),
  33490. default: true
  33491. },
  33492. ]
  33493. ))
  33494. characterMakers.push(() => makeCharacter(
  33495. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33496. {
  33497. front: {
  33498. height: math.unit(260, "meters"),
  33499. name: "Front",
  33500. image: {
  33501. source: "./media/characters/anahita/front.svg",
  33502. extra: 665/635,
  33503. bottom: 89/754
  33504. }
  33505. },
  33506. },
  33507. [
  33508. {
  33509. name: "Macro",
  33510. height: math.unit(260, "meters"),
  33511. default: true
  33512. },
  33513. ]
  33514. ))
  33515. characterMakers.push(() => makeCharacter(
  33516. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33517. {
  33518. front: {
  33519. height: math.unit(4 + 10/12, "feet"),
  33520. weight: math.unit(160, "lb"),
  33521. name: "Front",
  33522. image: {
  33523. source: "./media/characters/chip-mouse/front.svg",
  33524. extra: 3528/3408,
  33525. bottom: 0/3528
  33526. }
  33527. },
  33528. frontNsfw: {
  33529. height: math.unit(4 + 10/12, "feet"),
  33530. weight: math.unit(160, "lb"),
  33531. name: "Front (NSFW)",
  33532. image: {
  33533. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33534. extra: 3528/3408,
  33535. bottom: 0/3528
  33536. }
  33537. },
  33538. },
  33539. [
  33540. {
  33541. name: "Normal",
  33542. height: math.unit(4 + 10/12, "feet"),
  33543. default: true
  33544. },
  33545. ]
  33546. ))
  33547. characterMakers.push(() => makeCharacter(
  33548. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33549. {
  33550. side: {
  33551. height: math.unit(10, "feet"),
  33552. weight: math.unit(14000, "lb"),
  33553. name: "Side",
  33554. image: {
  33555. source: "./media/characters/kremm/side.svg",
  33556. extra: 1390/1053,
  33557. bottom: 90/1480
  33558. }
  33559. },
  33560. gut: {
  33561. height: math.unit(5.8, "feet"),
  33562. name: "Gut",
  33563. image: {
  33564. source: "./media/characters/kremm/gut.svg"
  33565. }
  33566. },
  33567. ass: {
  33568. height: math.unit(6.1, "feet"),
  33569. name: "Ass",
  33570. image: {
  33571. source: "./media/characters/kremm/ass.svg"
  33572. }
  33573. },
  33574. jaws: {
  33575. height: math.unit(2.2, "feet"),
  33576. name: "Jaws",
  33577. image: {
  33578. source: "./media/characters/kremm/jaws.svg"
  33579. }
  33580. },
  33581. dick: {
  33582. height: math.unit(4.26, "feet"),
  33583. name: "Dick",
  33584. image: {
  33585. source: "./media/characters/kremm/dick.svg"
  33586. }
  33587. },
  33588. },
  33589. [
  33590. {
  33591. name: "Normal",
  33592. height: math.unit(10, "feet"),
  33593. default: true
  33594. },
  33595. ]
  33596. ))
  33597. characterMakers.push(() => makeCharacter(
  33598. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33599. {
  33600. front: {
  33601. height: math.unit(30, "stories"),
  33602. name: "Front",
  33603. image: {
  33604. source: "./media/characters/kai/front.svg",
  33605. extra: 1892/1718,
  33606. bottom: 162/2054
  33607. }
  33608. },
  33609. },
  33610. [
  33611. {
  33612. name: "Macro",
  33613. height: math.unit(30, "stories"),
  33614. default: true
  33615. },
  33616. ]
  33617. ))
  33618. characterMakers.push(() => makeCharacter(
  33619. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33620. {
  33621. front: {
  33622. height: math.unit(6 + 4/12, "feet"),
  33623. weight: math.unit(145, "lb"),
  33624. name: "Front",
  33625. image: {
  33626. source: "./media/characters/sykes/front.svg",
  33627. extra: 1321 / 1187,
  33628. bottom: 66 / 1387
  33629. }
  33630. },
  33631. back: {
  33632. height: math.unit(6 + 4/12, "feet"),
  33633. weight: math.unit(145, "lb"),
  33634. name: "Back",
  33635. image: {
  33636. source: "./media/characters/sykes/back.svg",
  33637. extra: 1326/1181,
  33638. bottom: 31/1357
  33639. }
  33640. },
  33641. handBack: {
  33642. height: math.unit(0.9, "feet"),
  33643. name: "Hand (Back)",
  33644. image: {
  33645. source: "./media/characters/sykes/hand-back.svg"
  33646. }
  33647. },
  33648. handFront: {
  33649. height: math.unit(0.839, "feet"),
  33650. name: "Hand (Front)",
  33651. image: {
  33652. source: "./media/characters/sykes/hand-front.svg"
  33653. }
  33654. },
  33655. leftFoot: {
  33656. height: math.unit(1.2, "feet"),
  33657. name: "Foot (Left)",
  33658. image: {
  33659. source: "./media/characters/sykes/foot-left.svg"
  33660. }
  33661. },
  33662. rightFoot: {
  33663. height: math.unit(1.2, "feet"),
  33664. name: "Foot (Right)",
  33665. image: {
  33666. source: "./media/characters/sykes/foot-right.svg"
  33667. }
  33668. },
  33669. maw: {
  33670. height: math.unit(1.93, "feet"),
  33671. name: "Maw",
  33672. image: {
  33673. source: "./media/characters/sykes/maw.svg"
  33674. }
  33675. },
  33676. teeth: {
  33677. height: math.unit(0.51, "feet"),
  33678. name: "Teeth",
  33679. image: {
  33680. source: "./media/characters/sykes/teeth.svg"
  33681. }
  33682. },
  33683. tongue: {
  33684. height: math.unit(2.13, "feet"),
  33685. name: "Tongue",
  33686. image: {
  33687. source: "./media/characters/sykes/tongue.svg"
  33688. }
  33689. },
  33690. uvula: {
  33691. height: math.unit(0.16, "feet"),
  33692. name: "Uvula",
  33693. image: {
  33694. source: "./media/characters/sykes/uvula.svg"
  33695. }
  33696. },
  33697. collar: {
  33698. height: math.unit(0.287, "feet"),
  33699. name: "Collar",
  33700. image: {
  33701. source: "./media/characters/sykes/collar.svg"
  33702. }
  33703. },
  33704. },
  33705. [
  33706. {
  33707. name: "Shrunken",
  33708. height: math.unit(5, "inches")
  33709. },
  33710. {
  33711. name: "Normal",
  33712. height: math.unit(6 + 4 / 12, "feet"),
  33713. default: true
  33714. },
  33715. {
  33716. name: "Big",
  33717. height: math.unit(15, "feet")
  33718. },
  33719. ]
  33720. ))
  33721. characterMakers.push(() => makeCharacter(
  33722. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33723. {
  33724. front: {
  33725. height: math.unit(5 + 8/12, "feet"),
  33726. weight: math.unit(190, "lb"),
  33727. name: "Front",
  33728. image: {
  33729. source: "./media/characters/oven-otter/front.svg",
  33730. extra: 1809/1740,
  33731. bottom: 181/1990
  33732. }
  33733. },
  33734. back: {
  33735. height: math.unit(5 + 8/12, "feet"),
  33736. weight: math.unit(190, "lb"),
  33737. name: "Back",
  33738. image: {
  33739. source: "./media/characters/oven-otter/back.svg",
  33740. extra: 1709/1635,
  33741. bottom: 118/1827
  33742. }
  33743. },
  33744. hand: {
  33745. height: math.unit(1.07, "feet"),
  33746. name: "Hand",
  33747. image: {
  33748. source: "./media/characters/oven-otter/hand.svg"
  33749. }
  33750. },
  33751. beans: {
  33752. height: math.unit(1.74, "feet"),
  33753. name: "Beans",
  33754. image: {
  33755. source: "./media/characters/oven-otter/beans.svg"
  33756. }
  33757. },
  33758. },
  33759. [
  33760. {
  33761. name: "Micro",
  33762. height: math.unit(0.5, "inches")
  33763. },
  33764. {
  33765. name: "Normal",
  33766. height: math.unit(5 + 8/12, "feet"),
  33767. default: true
  33768. },
  33769. {
  33770. name: "Macro",
  33771. height: math.unit(250, "feet")
  33772. },
  33773. {
  33774. name: "Really High",
  33775. height: math.unit(420, "feet")
  33776. },
  33777. ]
  33778. ))
  33779. characterMakers.push(() => makeCharacter(
  33780. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33781. {
  33782. front: {
  33783. height: math.unit(5, "meters"),
  33784. weight: math.unit(292000000000000, "kg"),
  33785. name: "Front",
  33786. image: {
  33787. source: "./media/characters/devourer/front.svg",
  33788. extra: 1800/1733,
  33789. bottom: 211/2011
  33790. }
  33791. },
  33792. maw: {
  33793. height: math.unit(1.1, "meter"),
  33794. name: "Maw",
  33795. image: {
  33796. source: "./media/characters/devourer/maw.svg"
  33797. }
  33798. },
  33799. },
  33800. [
  33801. {
  33802. name: "Small",
  33803. height: math.unit(3, "meters")
  33804. },
  33805. {
  33806. name: "Large",
  33807. height: math.unit(5, "meters"),
  33808. default: true
  33809. },
  33810. ]
  33811. ))
  33812. characterMakers.push(() => makeCharacter(
  33813. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33814. {
  33815. front: {
  33816. height: math.unit(6, "feet"),
  33817. weight: math.unit(400, "lb"),
  33818. name: "Front",
  33819. image: {
  33820. source: "./media/characters/ellarby/front.svg",
  33821. extra: 1909/1763,
  33822. bottom: 80/1989
  33823. }
  33824. },
  33825. back: {
  33826. height: math.unit(6, "feet"),
  33827. weight: math.unit(400, "lb"),
  33828. name: "Back",
  33829. image: {
  33830. source: "./media/characters/ellarby/back.svg",
  33831. extra: 1914/1784,
  33832. bottom: 172/2086
  33833. }
  33834. },
  33835. },
  33836. [
  33837. {
  33838. name: "Mischief",
  33839. height: math.unit(18, "inches")
  33840. },
  33841. {
  33842. name: "Trouble",
  33843. height: math.unit(12, "feet")
  33844. },
  33845. {
  33846. name: "Havoc",
  33847. height: math.unit(200, "feet"),
  33848. default: true
  33849. },
  33850. {
  33851. name: "Pandemonium",
  33852. height: math.unit(1, "mile")
  33853. },
  33854. {
  33855. name: "Catastrophe",
  33856. height: math.unit(100, "miles")
  33857. },
  33858. ]
  33859. ))
  33860. characterMakers.push(() => makeCharacter(
  33861. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33862. {
  33863. front: {
  33864. height: math.unit(4.7, "meters"),
  33865. weight: math.unit(6500, "kg"),
  33866. name: "Front",
  33867. image: {
  33868. source: "./media/characters/vex/front.svg",
  33869. extra: 1288/1140,
  33870. bottom: 100/1388
  33871. }
  33872. },
  33873. },
  33874. [
  33875. {
  33876. name: "Normal",
  33877. height: math.unit(4.7, "meters"),
  33878. default: true
  33879. },
  33880. ]
  33881. ))
  33882. characterMakers.push(() => makeCharacter(
  33883. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33884. {
  33885. normal: {
  33886. height: math.unit(6, "feet"),
  33887. weight: math.unit(350, "lb"),
  33888. name: "Normal",
  33889. image: {
  33890. source: "./media/characters/teshy/normal.svg",
  33891. extra: 1795/1735,
  33892. bottom: 16/1811
  33893. }
  33894. },
  33895. monsterFront: {
  33896. height: math.unit(12, "feet"),
  33897. weight: math.unit(4700, "lb"),
  33898. name: "Monster (Front)",
  33899. image: {
  33900. source: "./media/characters/teshy/monster-front.svg",
  33901. extra: 2042/2034,
  33902. bottom: 128/2170
  33903. }
  33904. },
  33905. monsterSide: {
  33906. height: math.unit(12, "feet"),
  33907. weight: math.unit(4700, "lb"),
  33908. name: "Monster (Side)",
  33909. image: {
  33910. source: "./media/characters/teshy/monster-side.svg",
  33911. extra: 2067/2056,
  33912. bottom: 70/2137
  33913. }
  33914. },
  33915. monsterBack: {
  33916. height: math.unit(12, "feet"),
  33917. weight: math.unit(4700, "lb"),
  33918. name: "Monster (Back)",
  33919. image: {
  33920. source: "./media/characters/teshy/monster-back.svg",
  33921. extra: 1921/1914,
  33922. bottom: 171/2092
  33923. }
  33924. },
  33925. },
  33926. [
  33927. {
  33928. name: "Normal",
  33929. height: math.unit(6, "feet"),
  33930. default: true
  33931. },
  33932. ]
  33933. ))
  33934. characterMakers.push(() => makeCharacter(
  33935. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33936. {
  33937. front: {
  33938. height: math.unit(6, "feet"),
  33939. name: "Front",
  33940. image: {
  33941. source: "./media/characters/ramey/front.svg",
  33942. extra: 790/787,
  33943. bottom: 27/817
  33944. }
  33945. },
  33946. },
  33947. [
  33948. {
  33949. name: "Normal",
  33950. height: math.unit(6, "feet"),
  33951. default: true
  33952. },
  33953. ]
  33954. ))
  33955. characterMakers.push(() => makeCharacter(
  33956. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33957. {
  33958. front: {
  33959. height: math.unit(5 + 5/12, "feet"),
  33960. weight: math.unit(120, "lb"),
  33961. name: "Front",
  33962. image: {
  33963. source: "./media/characters/phirae/front.svg",
  33964. extra: 2491/2436,
  33965. bottom: 38/2529
  33966. }
  33967. },
  33968. },
  33969. [
  33970. {
  33971. name: "Normal",
  33972. height: math.unit(5 + 5/12, "feet"),
  33973. default: true
  33974. },
  33975. ]
  33976. ))
  33977. characterMakers.push(() => makeCharacter(
  33978. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  33979. {
  33980. front: {
  33981. height: math.unit(5 + 3/12, "feet"),
  33982. name: "Front",
  33983. image: {
  33984. source: "./media/characters/stagglas/front.svg",
  33985. extra: 962/882,
  33986. bottom: 53/1015
  33987. }
  33988. },
  33989. feral: {
  33990. height: math.unit(335, "cm"),
  33991. name: "Feral",
  33992. image: {
  33993. source: "./media/characters/stagglas/feral.svg",
  33994. extra: 1732/1090,
  33995. bottom: 48/1780
  33996. }
  33997. },
  33998. },
  33999. [
  34000. {
  34001. name: "Normal",
  34002. height: math.unit(5 + 3/12, "feet"),
  34003. default: true
  34004. },
  34005. ]
  34006. ))
  34007. characterMakers.push(() => makeCharacter(
  34008. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  34009. {
  34010. front: {
  34011. height: math.unit(5 + 4/12, "feet"),
  34012. weight: math.unit(145, "lb"),
  34013. name: "Front",
  34014. image: {
  34015. source: "./media/characters/starra/front.svg",
  34016. extra: 1790/1691,
  34017. bottom: 91/1881
  34018. }
  34019. },
  34020. },
  34021. [
  34022. {
  34023. name: "Normal",
  34024. height: math.unit(5 + 4/12, "feet"),
  34025. default: true
  34026. },
  34027. ]
  34028. ))
  34029. characterMakers.push(() => makeCharacter(
  34030. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34031. {
  34032. front: {
  34033. height: math.unit(2.2, "meters"),
  34034. name: "Front",
  34035. image: {
  34036. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  34037. extra: 1194/1005,
  34038. bottom: 25/1219
  34039. }
  34040. },
  34041. },
  34042. [
  34043. {
  34044. name: "Normal",
  34045. height: math.unit(2.2, "meters"),
  34046. default: true
  34047. },
  34048. ]
  34049. ))
  34050. characterMakers.push(() => makeCharacter(
  34051. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34052. {
  34053. side: {
  34054. height: math.unit(8 + 2/12, "feet"),
  34055. weight: math.unit(1240, "lb"),
  34056. name: "Side",
  34057. image: {
  34058. source: "./media/characters/mika-valentine/side.svg",
  34059. extra: 2670/2501,
  34060. bottom: 250/2920
  34061. }
  34062. },
  34063. },
  34064. [
  34065. {
  34066. name: "Normal",
  34067. height: math.unit(8 + 2/12, "feet"),
  34068. default: true
  34069. },
  34070. ]
  34071. ))
  34072. characterMakers.push(() => makeCharacter(
  34073. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34074. {
  34075. front: {
  34076. height: math.unit(7 + 2/12, "feet"),
  34077. name: "Front",
  34078. image: {
  34079. source: "./media/characters/xoltol/front.svg",
  34080. extra: 2212/2124,
  34081. bottom: 84/2296
  34082. }
  34083. },
  34084. side: {
  34085. height: math.unit(7 + 2/12, "feet"),
  34086. name: "Side",
  34087. image: {
  34088. source: "./media/characters/xoltol/side.svg",
  34089. extra: 2273/2197,
  34090. bottom: 26/2299
  34091. }
  34092. },
  34093. hand: {
  34094. height: math.unit(2.5, "feet"),
  34095. name: "Hand",
  34096. image: {
  34097. source: "./media/characters/xoltol/hand.svg"
  34098. }
  34099. },
  34100. },
  34101. [
  34102. {
  34103. name: "Small-ish",
  34104. height: math.unit(5 + 11/12, "feet")
  34105. },
  34106. {
  34107. name: "Normal",
  34108. height: math.unit(7 + 2/12, "feet")
  34109. },
  34110. {
  34111. name: "\"Macro\"",
  34112. height: math.unit(14 + 9/12, "feet"),
  34113. default: true
  34114. },
  34115. {
  34116. name: "Alternate Height",
  34117. height: math.unit(20, "feet")
  34118. },
  34119. {
  34120. name: "Actually Macro",
  34121. height: math.unit(100, "feet")
  34122. },
  34123. ]
  34124. ))
  34125. characterMakers.push(() => makeCharacter(
  34126. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34127. {
  34128. front: {
  34129. height: math.unit(5 + 2/12, "feet"),
  34130. name: "Front",
  34131. image: {
  34132. source: "./media/characters/kotetsu-redwood/front.svg",
  34133. extra: 1053/942,
  34134. bottom: 60/1113
  34135. }
  34136. },
  34137. },
  34138. [
  34139. {
  34140. name: "Normal",
  34141. height: math.unit(5 + 2/12, "feet"),
  34142. default: true
  34143. },
  34144. ]
  34145. ))
  34146. characterMakers.push(() => makeCharacter(
  34147. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34148. {
  34149. front: {
  34150. height: math.unit(2.4, "meters"),
  34151. weight: math.unit(125, "kg"),
  34152. name: "Front",
  34153. image: {
  34154. source: "./media/characters/lilith/front.svg",
  34155. extra: 1590/1513,
  34156. bottom: 203/1793
  34157. }
  34158. },
  34159. },
  34160. [
  34161. {
  34162. name: "Humanoid",
  34163. height: math.unit(2.4, "meters")
  34164. },
  34165. {
  34166. name: "Normal",
  34167. height: math.unit(6, "meters"),
  34168. default: true
  34169. },
  34170. {
  34171. name: "Largest",
  34172. height: math.unit(55, "meters")
  34173. },
  34174. ]
  34175. ))
  34176. characterMakers.push(() => makeCharacter(
  34177. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34178. {
  34179. front: {
  34180. height: math.unit(8 + 4/12, "feet"),
  34181. weight: math.unit(535, "lb"),
  34182. name: "Front",
  34183. image: {
  34184. source: "./media/characters/beh'kah-bolger/front.svg",
  34185. extra: 1660/1603,
  34186. bottom: 37/1697
  34187. }
  34188. },
  34189. },
  34190. [
  34191. {
  34192. name: "Normal",
  34193. height: math.unit(8 + 4/12, "feet"),
  34194. default: true
  34195. },
  34196. {
  34197. name: "Kaiju",
  34198. height: math.unit(250, "feet")
  34199. },
  34200. {
  34201. name: "Still Growing",
  34202. height: math.unit(10, "miles")
  34203. },
  34204. {
  34205. name: "Continental",
  34206. height: math.unit(5000, "miles")
  34207. },
  34208. {
  34209. name: "Final Form",
  34210. height: math.unit(2500000, "miles")
  34211. },
  34212. ]
  34213. ))
  34214. characterMakers.push(() => makeCharacter(
  34215. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34216. {
  34217. front: {
  34218. height: math.unit(7 + 2/12, "feet"),
  34219. weight: math.unit(230, "kg"),
  34220. name: "Front",
  34221. image: {
  34222. source: "./media/characters/tatyana-milewska/front.svg",
  34223. extra: 1199/1150,
  34224. bottom: 86/1285
  34225. }
  34226. },
  34227. },
  34228. [
  34229. {
  34230. name: "Normal",
  34231. height: math.unit(7 + 2/12, "feet"),
  34232. default: true
  34233. },
  34234. {
  34235. name: "Big",
  34236. height: math.unit(12, "feet")
  34237. },
  34238. {
  34239. name: "Minimacro",
  34240. height: math.unit(20, "feet")
  34241. },
  34242. {
  34243. name: "Macro",
  34244. height: math.unit(120, "feet")
  34245. },
  34246. ]
  34247. ))
  34248. characterMakers.push(() => makeCharacter(
  34249. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34250. {
  34251. front: {
  34252. height: math.unit(7 + 8/12, "feet"),
  34253. weight: math.unit(152, "kg"),
  34254. name: "Front",
  34255. image: {
  34256. source: "./media/characters/helen-arri/front.svg",
  34257. extra: 440/423,
  34258. bottom: 14/454
  34259. }
  34260. },
  34261. back: {
  34262. height: math.unit(7 + 8/12, "feet"),
  34263. weight: math.unit(152, "kg"),
  34264. name: "Back",
  34265. image: {
  34266. source: "./media/characters/helen-arri/back.svg",
  34267. extra: 443/426,
  34268. bottom: 8/451
  34269. }
  34270. },
  34271. },
  34272. [
  34273. {
  34274. name: "Normal",
  34275. height: math.unit(7 + 8/12, "feet"),
  34276. default: true
  34277. },
  34278. {
  34279. name: "Big",
  34280. height: math.unit(14, "feet")
  34281. },
  34282. {
  34283. name: "Minimacro",
  34284. height: math.unit(24, "feet")
  34285. },
  34286. {
  34287. name: "Macro",
  34288. height: math.unit(140, "feet")
  34289. },
  34290. ]
  34291. ))
  34292. characterMakers.push(() => makeCharacter(
  34293. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34294. {
  34295. front: {
  34296. height: math.unit(6, "meters"),
  34297. name: "Front",
  34298. image: {
  34299. source: "./media/characters/ehanu-rehu/front.svg",
  34300. extra: 1800/1800,
  34301. bottom: 59/1859
  34302. }
  34303. },
  34304. },
  34305. [
  34306. {
  34307. name: "Normal",
  34308. height: math.unit(6, "meters"),
  34309. default: true
  34310. },
  34311. ]
  34312. ))
  34313. characterMakers.push(() => makeCharacter(
  34314. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34315. {
  34316. front: {
  34317. height: math.unit(7 + 3/12, "feet"),
  34318. name: "Front",
  34319. image: {
  34320. source: "./media/characters/renholder/front.svg",
  34321. extra: 3096/2960,
  34322. bottom: 250/3346
  34323. }
  34324. },
  34325. },
  34326. [
  34327. {
  34328. name: "Normal Bat",
  34329. height: math.unit(7 + 3/12, "feet"),
  34330. default: true
  34331. },
  34332. {
  34333. name: "Slightly Tall Bat",
  34334. height: math.unit(100, "feet")
  34335. },
  34336. {
  34337. name: "Big Bat",
  34338. height: math.unit(1000, "feet")
  34339. },
  34340. {
  34341. name: "City-Sized Bat",
  34342. height: math.unit(200000, "feet")
  34343. },
  34344. {
  34345. name: "Bigger Bat",
  34346. height: math.unit(10000, "miles")
  34347. },
  34348. {
  34349. name: "Solar Sized Bat",
  34350. height: math.unit(100, "AU")
  34351. },
  34352. {
  34353. name: "Galactic Bat",
  34354. height: math.unit(200000, "lightyears")
  34355. },
  34356. {
  34357. name: "Universally Known Bat",
  34358. height: math.unit(1, "universe")
  34359. },
  34360. ]
  34361. ))
  34362. characterMakers.push(() => makeCharacter(
  34363. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34364. {
  34365. front: {
  34366. height: math.unit(6 + 11/12, "feet"),
  34367. weight: math.unit(250, "lb"),
  34368. name: "Front",
  34369. image: {
  34370. source: "./media/characters/cookiecat/front.svg",
  34371. extra: 893/827,
  34372. bottom: 14/907
  34373. }
  34374. },
  34375. },
  34376. [
  34377. {
  34378. name: "Micro",
  34379. height: math.unit(3, "inches")
  34380. },
  34381. {
  34382. name: "Normal",
  34383. height: math.unit(6 + 11/12, "feet"),
  34384. default: true
  34385. },
  34386. {
  34387. name: "Macro",
  34388. height: math.unit(100, "feet")
  34389. },
  34390. {
  34391. name: "Macro+",
  34392. height: math.unit(404, "feet")
  34393. },
  34394. {
  34395. name: "Megamacro",
  34396. height: math.unit(165, "miles")
  34397. },
  34398. {
  34399. name: "Planetary",
  34400. height: math.unit(4600, "miles")
  34401. },
  34402. ]
  34403. ))
  34404. characterMakers.push(() => makeCharacter(
  34405. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34406. {
  34407. front: {
  34408. height: math.unit(10 + 3/12, "feet"),
  34409. weight: math.unit(1500, "lb"),
  34410. name: "Front",
  34411. image: {
  34412. source: "./media/characters/tux-kusanagi/front.svg",
  34413. extra: 944/840,
  34414. bottom: 39/983
  34415. }
  34416. },
  34417. back: {
  34418. height: math.unit(10 + 3/12, "feet"),
  34419. weight: math.unit(1500, "lb"),
  34420. name: "Back",
  34421. image: {
  34422. source: "./media/characters/tux-kusanagi/back.svg",
  34423. extra: 941/842,
  34424. bottom: 28/969
  34425. }
  34426. },
  34427. rump: {
  34428. height: math.unit(5.25, "feet"),
  34429. name: "Rump",
  34430. image: {
  34431. source: "./media/characters/tux-kusanagi/rump.svg"
  34432. }
  34433. },
  34434. beak: {
  34435. height: math.unit(1.54, "feet"),
  34436. name: "Beak",
  34437. image: {
  34438. source: "./media/characters/tux-kusanagi/beak.svg"
  34439. }
  34440. },
  34441. },
  34442. [
  34443. {
  34444. name: "Normal",
  34445. height: math.unit(10 + 3/12, "feet"),
  34446. default: true
  34447. },
  34448. ]
  34449. ))
  34450. characterMakers.push(() => makeCharacter(
  34451. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34452. {
  34453. front: {
  34454. height: math.unit(58, "feet"),
  34455. weight: math.unit(200, "tons"),
  34456. name: "Front",
  34457. image: {
  34458. source: "./media/characters/uzarmazari/front.svg",
  34459. extra: 1575/1455,
  34460. bottom: 152/1727
  34461. }
  34462. },
  34463. back: {
  34464. height: math.unit(58, "feet"),
  34465. weight: math.unit(200, "tons"),
  34466. name: "Back",
  34467. image: {
  34468. source: "./media/characters/uzarmazari/back.svg",
  34469. extra: 1585/1510,
  34470. bottom: 157/1742
  34471. }
  34472. },
  34473. head: {
  34474. height: math.unit(26, "feet"),
  34475. name: "Head",
  34476. image: {
  34477. source: "./media/characters/uzarmazari/head.svg"
  34478. }
  34479. },
  34480. },
  34481. [
  34482. {
  34483. name: "Normal",
  34484. height: math.unit(58, "feet"),
  34485. default: true
  34486. },
  34487. ]
  34488. ))
  34489. characterMakers.push(() => makeCharacter(
  34490. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34491. {
  34492. side: {
  34493. height: math.unit(15, "feet"),
  34494. name: "Side",
  34495. image: {
  34496. source: "./media/characters/akitu/side.svg",
  34497. extra: 1421/1321,
  34498. bottom: 157/1578
  34499. }
  34500. },
  34501. front: {
  34502. height: math.unit(15, "feet"),
  34503. name: "Front",
  34504. image: {
  34505. source: "./media/characters/akitu/front.svg",
  34506. extra: 1435/1326,
  34507. bottom: 232/1667
  34508. }
  34509. },
  34510. },
  34511. [
  34512. {
  34513. name: "Normal",
  34514. height: math.unit(15, "feet"),
  34515. default: true
  34516. },
  34517. ]
  34518. ))
  34519. characterMakers.push(() => makeCharacter(
  34520. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34521. {
  34522. front: {
  34523. height: math.unit(10 + 8/12, "feet"),
  34524. name: "Front",
  34525. image: {
  34526. source: "./media/characters/azalie-croixland/front.svg",
  34527. extra: 1972/1856,
  34528. bottom: 31/2003
  34529. }
  34530. },
  34531. },
  34532. [
  34533. {
  34534. name: "Original Height",
  34535. height: math.unit(5 + 4/12, "feet")
  34536. },
  34537. {
  34538. name: "Normal Height",
  34539. height: math.unit(10 + 8/12, "feet"),
  34540. default: true
  34541. },
  34542. ]
  34543. ))
  34544. characterMakers.push(() => makeCharacter(
  34545. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34546. {
  34547. side: {
  34548. height: math.unit(7 + 1/12, "feet"),
  34549. weight: math.unit(245, "lb"),
  34550. name: "Side",
  34551. image: {
  34552. source: "./media/characters/kavus-kazian/side.svg",
  34553. extra: 349/342,
  34554. bottom: 15/364
  34555. }
  34556. },
  34557. },
  34558. [
  34559. {
  34560. name: "Normal",
  34561. height: math.unit(7 + 1/12, "feet"),
  34562. default: true
  34563. },
  34564. ]
  34565. ))
  34566. characterMakers.push(() => makeCharacter(
  34567. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34568. {
  34569. normal: {
  34570. height: math.unit(5 + 11/12, "feet"),
  34571. name: "Normal",
  34572. image: {
  34573. source: "./media/characters/moonlight-rose/normal.svg",
  34574. extra: 1979/1835,
  34575. bottom: 14/1993
  34576. }
  34577. },
  34578. demon: {
  34579. height: math.unit(5, "km"),
  34580. name: "Demon",
  34581. image: {
  34582. source: "./media/characters/moonlight-rose/demon.svg",
  34583. extra: 986/916,
  34584. bottom: 28/1014
  34585. }
  34586. },
  34587. },
  34588. [
  34589. {
  34590. name: "\"Natural\" height",
  34591. height: math.unit(5 + 11/12, "feet")
  34592. },
  34593. {
  34594. name: "Comfortable Size",
  34595. height: math.unit(40, "meters")
  34596. },
  34597. {
  34598. name: "Common Size",
  34599. height: math.unit(50, "km"),
  34600. default: true
  34601. },
  34602. {
  34603. name: "Demonic",
  34604. height: math.unit(1.24415e+21, "meters")
  34605. },
  34606. ]
  34607. ))
  34608. characterMakers.push(() => makeCharacter(
  34609. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34610. {
  34611. front: {
  34612. height: math.unit(16, "feet"),
  34613. weight: math.unit(610, "kg"),
  34614. name: "Front",
  34615. image: {
  34616. source: "./media/characters/huckle/front.svg",
  34617. extra: 1731/1625,
  34618. bottom: 33/1764
  34619. }
  34620. },
  34621. back: {
  34622. height: math.unit(16, "feet"),
  34623. weight: math.unit(610, "kg"),
  34624. name: "Back",
  34625. image: {
  34626. source: "./media/characters/huckle/back.svg",
  34627. extra: 1738/1651,
  34628. bottom: 37/1775
  34629. }
  34630. },
  34631. laughing: {
  34632. height: math.unit(3.75, "feet"),
  34633. name: "Laughing",
  34634. image: {
  34635. source: "./media/characters/huckle/laughing.svg"
  34636. }
  34637. },
  34638. angry: {
  34639. height: math.unit(4.15, "feet"),
  34640. name: "Angry",
  34641. image: {
  34642. source: "./media/characters/huckle/angry.svg"
  34643. }
  34644. },
  34645. },
  34646. [
  34647. {
  34648. name: "Normal",
  34649. height: math.unit(16, "feet"),
  34650. default: true
  34651. },
  34652. {
  34653. name: "Mini Macro",
  34654. height: math.unit(463, "feet")
  34655. },
  34656. {
  34657. name: "Macro",
  34658. height: math.unit(1680, "meters")
  34659. },
  34660. {
  34661. name: "Mega Macro",
  34662. height: math.unit(175, "km")
  34663. },
  34664. {
  34665. name: "Terra Macro",
  34666. height: math.unit(32, "gigameters")
  34667. },
  34668. {
  34669. name: "Multiverse+",
  34670. height: math.unit(2.56e23, "yottameters")
  34671. },
  34672. ]
  34673. ))
  34674. characterMakers.push(() => makeCharacter(
  34675. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34676. {
  34677. front: {
  34678. height: math.unit(6 + 9/12, "feet"),
  34679. weight: math.unit(280, "lb"),
  34680. name: "Front",
  34681. image: {
  34682. source: "./media/characters/candy/front.svg",
  34683. extra: 234/217,
  34684. bottom: 11/245
  34685. }
  34686. },
  34687. },
  34688. [
  34689. {
  34690. name: "Really Small",
  34691. height: math.unit(0.1, "nm")
  34692. },
  34693. {
  34694. name: "Micro",
  34695. height: math.unit(2, "inches")
  34696. },
  34697. {
  34698. name: "Normal",
  34699. height: math.unit(6 + 9/12, "feet"),
  34700. default: true
  34701. },
  34702. {
  34703. name: "Small Macro",
  34704. height: math.unit(69, "feet")
  34705. },
  34706. {
  34707. name: "Macro",
  34708. height: math.unit(160, "feet")
  34709. },
  34710. {
  34711. name: "Megamacro",
  34712. height: math.unit(22000, "miles")
  34713. },
  34714. {
  34715. name: "Gigamacro",
  34716. height: math.unit(50000, "miles")
  34717. },
  34718. ]
  34719. ))
  34720. characterMakers.push(() => makeCharacter(
  34721. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  34722. {
  34723. front: {
  34724. height: math.unit(4, "feet"),
  34725. weight: math.unit(90, "lb"),
  34726. name: "Front",
  34727. image: {
  34728. source: "./media/characters/joey-mcdonald/front.svg",
  34729. extra: 1059/852,
  34730. bottom: 33/1092
  34731. }
  34732. },
  34733. back: {
  34734. height: math.unit(4, "feet"),
  34735. weight: math.unit(90, "lb"),
  34736. name: "Back",
  34737. image: {
  34738. source: "./media/characters/joey-mcdonald/back.svg",
  34739. extra: 1077/879,
  34740. bottom: 5/1082
  34741. }
  34742. },
  34743. frontKobold: {
  34744. height: math.unit(4, "feet"),
  34745. weight: math.unit(100, "lb"),
  34746. name: "Front-kobold",
  34747. image: {
  34748. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  34749. extra: 1480/1367,
  34750. bottom: 0/1480
  34751. }
  34752. },
  34753. backKobold: {
  34754. height: math.unit(4, "feet"),
  34755. weight: math.unit(100, "lb"),
  34756. name: "Back-kobold",
  34757. image: {
  34758. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  34759. extra: 1449/1361,
  34760. bottom: 0/1449
  34761. }
  34762. },
  34763. },
  34764. [
  34765. {
  34766. name: "Normal",
  34767. height: math.unit(4, "feet"),
  34768. default: true
  34769. },
  34770. ]
  34771. ))
  34772. characterMakers.push(() => makeCharacter(
  34773. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34774. {
  34775. front: {
  34776. height: math.unit(12 + 6/12, "feet"),
  34777. name: "Front",
  34778. image: {
  34779. source: "./media/characters/kass-lockheed/front.svg",
  34780. extra: 354/343,
  34781. bottom: 9/363
  34782. }
  34783. },
  34784. back: {
  34785. height: math.unit(12 + 6/12, "feet"),
  34786. name: "Back",
  34787. image: {
  34788. source: "./media/characters/kass-lockheed/back.svg",
  34789. extra: 364/352,
  34790. bottom: 3/367
  34791. }
  34792. },
  34793. dick: {
  34794. height: math.unit(3.12, "feet"),
  34795. name: "Dick",
  34796. image: {
  34797. source: "./media/characters/kass-lockheed/dick.svg"
  34798. }
  34799. },
  34800. head: {
  34801. height: math.unit(2.6, "feet"),
  34802. name: "Head",
  34803. image: {
  34804. source: "./media/characters/kass-lockheed/head.svg"
  34805. }
  34806. },
  34807. bleh: {
  34808. height: math.unit(2.85, "feet"),
  34809. name: "Bleh",
  34810. image: {
  34811. source: "./media/characters/kass-lockheed/bleh.svg"
  34812. }
  34813. },
  34814. smug: {
  34815. height: math.unit(2.85, "feet"),
  34816. name: "Smug",
  34817. image: {
  34818. source: "./media/characters/kass-lockheed/smug.svg"
  34819. }
  34820. },
  34821. },
  34822. [
  34823. {
  34824. name: "Normal",
  34825. height: math.unit(12 + 6/12, "feet"),
  34826. default: true
  34827. },
  34828. ]
  34829. ))
  34830. characterMakers.push(() => makeCharacter(
  34831. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34832. {
  34833. front: {
  34834. height: math.unit(6 + 2/12, "feet"),
  34835. name: "Front",
  34836. image: {
  34837. source: "./media/characters/taylor/front.svg",
  34838. extra: 639/495,
  34839. bottom: 12/651
  34840. }
  34841. },
  34842. },
  34843. [
  34844. {
  34845. name: "Normal",
  34846. height: math.unit(6 + 2/12, "feet"),
  34847. default: true
  34848. },
  34849. {
  34850. name: "Big",
  34851. height: math.unit(15, "feet")
  34852. },
  34853. {
  34854. name: "Lorg",
  34855. height: math.unit(80, "feet")
  34856. },
  34857. {
  34858. name: "Too Lorg",
  34859. height: math.unit(120, "feet")
  34860. },
  34861. ]
  34862. ))
  34863. characterMakers.push(() => makeCharacter(
  34864. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34865. {
  34866. front: {
  34867. height: math.unit(15, "feet"),
  34868. name: "Front",
  34869. image: {
  34870. source: "./media/characters/kaizer/front.svg",
  34871. extra: 1612/1436,
  34872. bottom: 43/1655
  34873. }
  34874. },
  34875. },
  34876. [
  34877. {
  34878. name: "Normal",
  34879. height: math.unit(15, "feet"),
  34880. default: true
  34881. },
  34882. ]
  34883. ))
  34884. characterMakers.push(() => makeCharacter(
  34885. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34886. {
  34887. front: {
  34888. height: math.unit(2, "feet"),
  34889. weight: math.unit(30, "lb"),
  34890. name: "Front",
  34891. image: {
  34892. source: "./media/characters/sandy/front.svg",
  34893. extra: 1439/1307,
  34894. bottom: 194/1633
  34895. }
  34896. },
  34897. },
  34898. [
  34899. {
  34900. name: "Normal",
  34901. height: math.unit(2, "feet"),
  34902. default: true
  34903. },
  34904. ]
  34905. ))
  34906. characterMakers.push(() => makeCharacter(
  34907. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34908. {
  34909. front: {
  34910. height: math.unit(3, "feet"),
  34911. name: "Front",
  34912. image: {
  34913. source: "./media/characters/mellvi/front.svg",
  34914. extra: 1831/1630,
  34915. bottom: 58/1889
  34916. }
  34917. },
  34918. },
  34919. [
  34920. {
  34921. name: "Normal",
  34922. height: math.unit(3, "feet"),
  34923. default: true
  34924. },
  34925. ]
  34926. ))
  34927. characterMakers.push(() => makeCharacter(
  34928. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34929. {
  34930. front: {
  34931. height: math.unit(5 + 11/12, "feet"),
  34932. weight: math.unit(200, "lb"),
  34933. name: "Front",
  34934. image: {
  34935. source: "./media/characters/shirou/front.svg",
  34936. extra: 2491/2383,
  34937. bottom: 189/2680
  34938. }
  34939. },
  34940. back: {
  34941. height: math.unit(5 + 11/12, "feet"),
  34942. weight: math.unit(200, "lb"),
  34943. name: "Back",
  34944. image: {
  34945. source: "./media/characters/shirou/back.svg",
  34946. extra: 2554/2450,
  34947. bottom: 76/2630
  34948. }
  34949. },
  34950. },
  34951. [
  34952. {
  34953. name: "Normal",
  34954. height: math.unit(5 + 11/12, "feet"),
  34955. default: true
  34956. },
  34957. ]
  34958. ))
  34959. characterMakers.push(() => makeCharacter(
  34960. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34961. {
  34962. front: {
  34963. height: math.unit(6 + 3/12, "feet"),
  34964. weight: math.unit(177, "lb"),
  34965. name: "Front",
  34966. image: {
  34967. source: "./media/characters/noryu/front.svg",
  34968. extra: 973/885,
  34969. bottom: 10/983
  34970. }
  34971. },
  34972. },
  34973. [
  34974. {
  34975. name: "Normal",
  34976. height: math.unit(6 + 3/12, "feet"),
  34977. default: true
  34978. },
  34979. ]
  34980. ))
  34981. characterMakers.push(() => makeCharacter(
  34982. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34983. {
  34984. front: {
  34985. height: math.unit(5 + 6/12, "feet"),
  34986. weight: math.unit(170, "lb"),
  34987. name: "Front",
  34988. image: {
  34989. source: "./media/characters/mevolas-rubenido/front.svg",
  34990. extra: 2109/1901,
  34991. bottom: 96/2205
  34992. }
  34993. },
  34994. },
  34995. [
  34996. {
  34997. name: "Normal",
  34998. height: math.unit(5 + 6/12, "feet"),
  34999. default: true
  35000. },
  35001. ]
  35002. ))
  35003. characterMakers.push(() => makeCharacter(
  35004. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  35005. {
  35006. front: {
  35007. height: math.unit(100, "feet"),
  35008. name: "Front",
  35009. image: {
  35010. source: "./media/characters/dee/front.svg",
  35011. extra: 2153/2036,
  35012. bottom: 59/2212
  35013. }
  35014. },
  35015. back: {
  35016. height: math.unit(100, "feet"),
  35017. name: "Back",
  35018. image: {
  35019. source: "./media/characters/dee/back.svg",
  35020. extra: 2183/2058,
  35021. bottom: 75/2258
  35022. }
  35023. },
  35024. foot: {
  35025. height: math.unit(19.43, "feet"),
  35026. name: "Foot",
  35027. image: {
  35028. source: "./media/characters/dee/foot.svg"
  35029. }
  35030. },
  35031. hoof: {
  35032. height: math.unit(20.6, "feet"),
  35033. name: "Hoof",
  35034. image: {
  35035. source: "./media/characters/dee/hoof.svg"
  35036. }
  35037. },
  35038. },
  35039. [
  35040. {
  35041. name: "Macro",
  35042. height: math.unit(100, "feet"),
  35043. default: true
  35044. },
  35045. ]
  35046. ))
  35047. characterMakers.push(() => makeCharacter(
  35048. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35049. {
  35050. front: {
  35051. height: math.unit(5 + 6/12, "feet"),
  35052. name: "Front",
  35053. image: {
  35054. source: "./media/characters/teh/front.svg",
  35055. extra: 1002/847,
  35056. bottom: 62/1064
  35057. }
  35058. },
  35059. },
  35060. [
  35061. {
  35062. name: "Normal",
  35063. height: math.unit(5 + 6/12, "feet"),
  35064. default: true
  35065. },
  35066. ]
  35067. ))
  35068. characterMakers.push(() => makeCharacter(
  35069. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35070. {
  35071. side: {
  35072. height: math.unit(6 + 1/12, "feet"),
  35073. weight: math.unit(204, "lb"),
  35074. name: "Side",
  35075. image: {
  35076. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35077. extra: 974/775,
  35078. bottom: 169/1143
  35079. }
  35080. },
  35081. sitting: {
  35082. height: math.unit(6 + 2/12, "feet"),
  35083. weight: math.unit(204, "lb"),
  35084. name: "Sitting",
  35085. image: {
  35086. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35087. extra: 1175/964,
  35088. bottom: 378/1553
  35089. }
  35090. },
  35091. },
  35092. [
  35093. {
  35094. name: "Normal",
  35095. height: math.unit(6 + 1/12, "feet"),
  35096. default: true
  35097. },
  35098. ]
  35099. ))
  35100. characterMakers.push(() => makeCharacter(
  35101. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35102. {
  35103. front: {
  35104. height: math.unit(6, "inches"),
  35105. name: "Front",
  35106. image: {
  35107. source: "./media/characters/tululi/front.svg",
  35108. extra: 1997/1876,
  35109. bottom: 20/2017
  35110. }
  35111. },
  35112. },
  35113. [
  35114. {
  35115. name: "Normal",
  35116. height: math.unit(6, "inches"),
  35117. default: true
  35118. },
  35119. ]
  35120. ))
  35121. characterMakers.push(() => makeCharacter(
  35122. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35123. {
  35124. front: {
  35125. height: math.unit(4 + 1/12, "feet"),
  35126. name: "Front",
  35127. image: {
  35128. source: "./media/characters/star/front.svg",
  35129. extra: 1493/1189,
  35130. bottom: 48/1541
  35131. }
  35132. },
  35133. },
  35134. [
  35135. {
  35136. name: "Normal",
  35137. height: math.unit(4 + 1/12, "feet"),
  35138. default: true
  35139. },
  35140. ]
  35141. ))
  35142. characterMakers.push(() => makeCharacter(
  35143. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35144. {
  35145. front: {
  35146. height: math.unit(6 + 3/12, "feet"),
  35147. name: "Front",
  35148. image: {
  35149. source: "./media/characters/comet/front.svg",
  35150. extra: 1681/1462,
  35151. bottom: 26/1707
  35152. }
  35153. },
  35154. },
  35155. [
  35156. {
  35157. name: "Normal",
  35158. height: math.unit(6 + 3/12, "feet"),
  35159. default: true
  35160. },
  35161. ]
  35162. ))
  35163. characterMakers.push(() => makeCharacter(
  35164. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35165. {
  35166. front: {
  35167. height: math.unit(950, "feet"),
  35168. name: "Front",
  35169. image: {
  35170. source: "./media/characters/vortex/front.svg",
  35171. extra: 1497/1434,
  35172. bottom: 56/1553
  35173. }
  35174. },
  35175. maw: {
  35176. height: math.unit(285, "feet"),
  35177. name: "Maw",
  35178. image: {
  35179. source: "./media/characters/vortex/maw.svg"
  35180. }
  35181. },
  35182. },
  35183. [
  35184. {
  35185. name: "Macro",
  35186. height: math.unit(950, "feet"),
  35187. default: true
  35188. },
  35189. ]
  35190. ))
  35191. characterMakers.push(() => makeCharacter(
  35192. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35193. {
  35194. front: {
  35195. height: math.unit(600, "feet"),
  35196. weight: math.unit(0.02, "grams"),
  35197. name: "Front",
  35198. image: {
  35199. source: "./media/characters/doodle/front.svg",
  35200. extra: 1578/1413,
  35201. bottom: 37/1615
  35202. }
  35203. },
  35204. },
  35205. [
  35206. {
  35207. name: "Macro",
  35208. height: math.unit(600, "feet"),
  35209. default: true
  35210. },
  35211. ]
  35212. ))
  35213. characterMakers.push(() => makeCharacter(
  35214. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35215. {
  35216. front: {
  35217. height: math.unit(6 + 6/12, "feet"),
  35218. name: "Front",
  35219. image: {
  35220. source: "./media/characters/jai/front.svg",
  35221. extra: 1645/1534,
  35222. bottom: 115/1760
  35223. }
  35224. },
  35225. },
  35226. [
  35227. {
  35228. name: "Normal",
  35229. height: math.unit(6 + 6/12, "feet"),
  35230. default: true
  35231. },
  35232. ]
  35233. ))
  35234. characterMakers.push(() => makeCharacter(
  35235. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35236. {
  35237. front: {
  35238. height: math.unit(6 + 8/12, "feet"),
  35239. name: "Front",
  35240. image: {
  35241. source: "./media/characters/pixel/front.svg",
  35242. extra: 1900/1735,
  35243. bottom: 63/1963
  35244. }
  35245. },
  35246. },
  35247. [
  35248. {
  35249. name: "Normal",
  35250. height: math.unit(6 + 8/12, "feet"),
  35251. default: true
  35252. },
  35253. ]
  35254. ))
  35255. characterMakers.push(() => makeCharacter(
  35256. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35257. {
  35258. front: {
  35259. height: math.unit(4 + 11/12, "feet"),
  35260. weight: math.unit(111, "lb"),
  35261. name: "Front",
  35262. image: {
  35263. source: "./media/characters/rhett/front.svg",
  35264. extra: 1682/1586,
  35265. bottom: 92/1774
  35266. }
  35267. },
  35268. },
  35269. [
  35270. {
  35271. name: "Mini",
  35272. height: math.unit(1 + 1/12, "feet")
  35273. },
  35274. {
  35275. name: "Normal",
  35276. height: math.unit(4 + 11/12, "feet"),
  35277. default: true
  35278. },
  35279. ]
  35280. ))
  35281. characterMakers.push(() => makeCharacter(
  35282. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35283. {
  35284. front: {
  35285. height: math.unit(3 + 3/12, "feet"),
  35286. name: "Front",
  35287. image: {
  35288. source: "./media/characters/penny/front.svg",
  35289. extra: 1406/1311,
  35290. bottom: 26/1432
  35291. }
  35292. },
  35293. },
  35294. [
  35295. {
  35296. name: "Normal",
  35297. height: math.unit(3 + 3/12, "feet"),
  35298. default: true
  35299. },
  35300. ]
  35301. ))
  35302. characterMakers.push(() => makeCharacter(
  35303. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35304. {
  35305. front: {
  35306. height: math.unit(4 + 11/12, "feet"),
  35307. name: "Front",
  35308. image: {
  35309. source: "./media/characters/monty/front.svg",
  35310. extra: 1479/1209,
  35311. bottom: 0/1479
  35312. }
  35313. },
  35314. },
  35315. [
  35316. {
  35317. name: "Normal",
  35318. height: math.unit(4 + 11/12, "feet"),
  35319. default: true
  35320. },
  35321. ]
  35322. ))
  35323. characterMakers.push(() => makeCharacter(
  35324. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35325. {
  35326. front: {
  35327. height: math.unit(8 + 4/12, "feet"),
  35328. name: "Front",
  35329. image: {
  35330. source: "./media/characters/sterling/front.svg",
  35331. extra: 1420/1236,
  35332. bottom: 27/1447
  35333. }
  35334. },
  35335. },
  35336. [
  35337. {
  35338. name: "Normal",
  35339. height: math.unit(8 + 4/12, "feet"),
  35340. default: true
  35341. },
  35342. ]
  35343. ))
  35344. characterMakers.push(() => makeCharacter(
  35345. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35346. {
  35347. front: {
  35348. height: math.unit(15, "feet"),
  35349. name: "Front",
  35350. image: {
  35351. source: "./media/characters/marble/front.svg",
  35352. extra: 973/937,
  35353. bottom: 32/1005
  35354. }
  35355. },
  35356. },
  35357. [
  35358. {
  35359. name: "Normal",
  35360. height: math.unit(15, "feet"),
  35361. default: true
  35362. },
  35363. ]
  35364. ))
  35365. characterMakers.push(() => makeCharacter(
  35366. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35367. {
  35368. front: {
  35369. height: math.unit(3, "inches"),
  35370. name: "Front",
  35371. image: {
  35372. source: "./media/characters/powder/front.svg",
  35373. extra: 1504/1334,
  35374. bottom: 518/2022
  35375. }
  35376. },
  35377. },
  35378. [
  35379. {
  35380. name: "Normal",
  35381. height: math.unit(3, "inches"),
  35382. default: true
  35383. },
  35384. ]
  35385. ))
  35386. characterMakers.push(() => makeCharacter(
  35387. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35388. {
  35389. front: {
  35390. height: math.unit(4 + 5/12, "feet"),
  35391. name: "Front",
  35392. image: {
  35393. source: "./media/characters/joey-raccoon/front.svg",
  35394. extra: 1273/1197,
  35395. bottom: 0/1273
  35396. }
  35397. },
  35398. },
  35399. [
  35400. {
  35401. name: "Normal",
  35402. height: math.unit(4 + 5/12, "feet"),
  35403. default: true
  35404. },
  35405. ]
  35406. ))
  35407. characterMakers.push(() => makeCharacter(
  35408. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35409. {
  35410. front: {
  35411. height: math.unit(8 + 4/12, "feet"),
  35412. name: "Front",
  35413. image: {
  35414. source: "./media/characters/vick/front.svg",
  35415. extra: 2187/2118,
  35416. bottom: 47/2234
  35417. }
  35418. },
  35419. },
  35420. [
  35421. {
  35422. name: "Normal",
  35423. height: math.unit(8 + 4/12, "feet"),
  35424. default: true
  35425. },
  35426. ]
  35427. ))
  35428. characterMakers.push(() => makeCharacter(
  35429. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35430. {
  35431. front: {
  35432. height: math.unit(5 + 5/12, "feet"),
  35433. name: "Front",
  35434. image: {
  35435. source: "./media/characters/mitsy/front.svg",
  35436. extra: 1842/1695,
  35437. bottom: 0/1842
  35438. }
  35439. },
  35440. },
  35441. [
  35442. {
  35443. name: "Normal",
  35444. height: math.unit(5 + 5/12, "feet"),
  35445. default: true
  35446. },
  35447. ]
  35448. ))
  35449. characterMakers.push(() => makeCharacter(
  35450. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35451. {
  35452. front: {
  35453. height: math.unit(6 + 3/12, "feet"),
  35454. name: "Front",
  35455. image: {
  35456. source: "./media/characters/silvy/front.svg",
  35457. extra: 1995/1836,
  35458. bottom: 225/2220
  35459. }
  35460. },
  35461. },
  35462. [
  35463. {
  35464. name: "Normal",
  35465. height: math.unit(6 + 3/12, "feet"),
  35466. default: true
  35467. },
  35468. ]
  35469. ))
  35470. characterMakers.push(() => makeCharacter(
  35471. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35472. {
  35473. front: {
  35474. height: math.unit(3 + 8/12, "feet"),
  35475. name: "Front",
  35476. image: {
  35477. source: "./media/characters/rodney/front.svg",
  35478. extra: 1956/1747,
  35479. bottom: 31/1987
  35480. }
  35481. },
  35482. frontDressed: {
  35483. height: math.unit(2.9, "feet"),
  35484. name: "Front (Dressed)",
  35485. image: {
  35486. source: "./media/characters/rodney/front-dressed.svg",
  35487. extra: 1382/1241,
  35488. bottom: 385/1767
  35489. }
  35490. },
  35491. },
  35492. [
  35493. {
  35494. name: "Normal",
  35495. height: math.unit(3 + 8/12, "feet"),
  35496. default: true
  35497. },
  35498. ]
  35499. ))
  35500. characterMakers.push(() => makeCharacter(
  35501. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35502. {
  35503. front: {
  35504. height: math.unit(5 + 9/12, "feet"),
  35505. weight: math.unit(194, "lbs"),
  35506. name: "Front",
  35507. image: {
  35508. source: "./media/characters/zakail-sudekai/front.svg",
  35509. extra: 2696/2533,
  35510. bottom: 248/2944
  35511. }
  35512. },
  35513. maw: {
  35514. height: math.unit(1.35, "feet"),
  35515. name: "Maw",
  35516. image: {
  35517. source: "./media/characters/zakail-sudekai/maw.svg"
  35518. }
  35519. },
  35520. },
  35521. [
  35522. {
  35523. name: "Normal",
  35524. height: math.unit(5 + 9/12, "feet"),
  35525. default: true
  35526. },
  35527. ]
  35528. ))
  35529. characterMakers.push(() => makeCharacter(
  35530. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35531. {
  35532. front: {
  35533. height: math.unit(8 + 4/12, "feet"),
  35534. weight: math.unit(1200, "lb"),
  35535. name: "Front",
  35536. image: {
  35537. source: "./media/characters/eleanor/front.svg",
  35538. extra: 1226/1192,
  35539. bottom: 52/1278
  35540. }
  35541. },
  35542. back: {
  35543. height: math.unit(8 + 4/12, "feet"),
  35544. weight: math.unit(1200, "lb"),
  35545. name: "Back",
  35546. image: {
  35547. source: "./media/characters/eleanor/back.svg",
  35548. extra: 1242/1184,
  35549. bottom: 60/1302
  35550. }
  35551. },
  35552. head: {
  35553. height: math.unit(2.62, "feet"),
  35554. name: "Head",
  35555. image: {
  35556. source: "./media/characters/eleanor/head.svg"
  35557. }
  35558. },
  35559. },
  35560. [
  35561. {
  35562. name: "Normal",
  35563. height: math.unit(8 + 4/12, "feet"),
  35564. default: true
  35565. },
  35566. ]
  35567. ))
  35568. characterMakers.push(() => makeCharacter(
  35569. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35570. {
  35571. front: {
  35572. height: math.unit(8 + 4/12, "feet"),
  35573. weight: math.unit(750, "lb"),
  35574. name: "Front",
  35575. image: {
  35576. source: "./media/characters/tanya/front.svg",
  35577. extra: 1749/1615,
  35578. bottom: 33/1782
  35579. }
  35580. },
  35581. },
  35582. [
  35583. {
  35584. name: "Normal",
  35585. height: math.unit(8 + 4/12, "feet"),
  35586. default: true
  35587. },
  35588. ]
  35589. ))
  35590. characterMakers.push(() => makeCharacter(
  35591. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35592. {
  35593. front: {
  35594. height: math.unit(5, "feet"),
  35595. weight: math.unit(225, "lb"),
  35596. name: "Front",
  35597. image: {
  35598. source: "./media/characters/cindy/front.svg",
  35599. extra: 1320/1250,
  35600. bottom: 42/1362
  35601. }
  35602. },
  35603. frontDressed: {
  35604. height: math.unit(5, "feet"),
  35605. weight: math.unit(225, "lb"),
  35606. name: "Front (Dressed)",
  35607. image: {
  35608. source: "./media/characters/cindy/front-dressed.svg",
  35609. extra: 1320/1250,
  35610. bottom: 42/1362
  35611. }
  35612. },
  35613. back: {
  35614. height: math.unit(5, "feet"),
  35615. weight: math.unit(225, "lb"),
  35616. name: "Back",
  35617. image: {
  35618. source: "./media/characters/cindy/back.svg",
  35619. extra: 1384/1346,
  35620. bottom: 14/1398
  35621. }
  35622. },
  35623. },
  35624. [
  35625. {
  35626. name: "Normal",
  35627. height: math.unit(5, "feet"),
  35628. default: true
  35629. },
  35630. ]
  35631. ))
  35632. characterMakers.push(() => makeCharacter(
  35633. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35634. {
  35635. front: {
  35636. height: math.unit(6 + 9/12, "feet"),
  35637. weight: math.unit(440, "lb"),
  35638. name: "Front",
  35639. image: {
  35640. source: "./media/characters/wilbur-owen/front.svg",
  35641. extra: 1575/1448,
  35642. bottom: 72/1647
  35643. }
  35644. },
  35645. back: {
  35646. height: math.unit(6 + 9/12, "feet"),
  35647. weight: math.unit(440, "lb"),
  35648. name: "Back",
  35649. image: {
  35650. source: "./media/characters/wilbur-owen/back.svg",
  35651. extra: 1578/1445,
  35652. bottom: 36/1614
  35653. }
  35654. },
  35655. },
  35656. [
  35657. {
  35658. name: "Normal",
  35659. height: math.unit(6 + 9/12, "feet"),
  35660. default: true
  35661. },
  35662. ]
  35663. ))
  35664. characterMakers.push(() => makeCharacter(
  35665. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35666. {
  35667. front: {
  35668. height: math.unit(6 + 5/12, "feet"),
  35669. weight: math.unit(650, "lb"),
  35670. name: "Front",
  35671. image: {
  35672. source: "./media/characters/keegan/front.svg",
  35673. extra: 2387/2198,
  35674. bottom: 33/2420
  35675. }
  35676. },
  35677. side: {
  35678. height: math.unit(6 + 5/12, "feet"),
  35679. weight: math.unit(650, "lb"),
  35680. name: "Side",
  35681. image: {
  35682. source: "./media/characters/keegan/side.svg",
  35683. extra: 2390/2202,
  35684. bottom: 47/2437
  35685. }
  35686. },
  35687. back: {
  35688. height: math.unit(6 + 5/12, "feet"),
  35689. weight: math.unit(650, "lb"),
  35690. name: "Back",
  35691. image: {
  35692. source: "./media/characters/keegan/back.svg",
  35693. extra: 2418/2268,
  35694. bottom: 15/2433
  35695. }
  35696. },
  35697. frontSfw: {
  35698. height: math.unit(6 + 5/12, "feet"),
  35699. weight: math.unit(650, "lb"),
  35700. name: "Front (SFW)",
  35701. image: {
  35702. source: "./media/characters/keegan/front-sfw.svg",
  35703. extra: 2387/2198,
  35704. bottom: 33/2420
  35705. }
  35706. },
  35707. beans: {
  35708. height: math.unit(1.85, "feet"),
  35709. name: "Beans",
  35710. image: {
  35711. source: "./media/characters/keegan/beans.svg"
  35712. }
  35713. },
  35714. },
  35715. [
  35716. {
  35717. name: "Normal",
  35718. height: math.unit(6 + 5/12, "feet"),
  35719. default: true
  35720. },
  35721. ]
  35722. ))
  35723. characterMakers.push(() => makeCharacter(
  35724. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35725. {
  35726. front: {
  35727. height: math.unit(9, "feet"),
  35728. name: "Front",
  35729. image: {
  35730. source: "./media/characters/colton/front.svg",
  35731. extra: 1589/1326,
  35732. bottom: 139/1728
  35733. }
  35734. },
  35735. },
  35736. [
  35737. {
  35738. name: "Normal",
  35739. height: math.unit(9, "feet"),
  35740. default: true
  35741. },
  35742. ]
  35743. ))
  35744. characterMakers.push(() => makeCharacter(
  35745. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35746. {
  35747. front: {
  35748. height: math.unit(2 + 9/12, "feet"),
  35749. name: "Front",
  35750. image: {
  35751. source: "./media/characters/bora/front.svg",
  35752. extra: 1265/1250,
  35753. bottom: 24/1289
  35754. }
  35755. },
  35756. },
  35757. [
  35758. {
  35759. name: "Normal",
  35760. height: math.unit(2 + 9/12, "feet"),
  35761. default: true
  35762. },
  35763. ]
  35764. ))
  35765. characterMakers.push(() => makeCharacter(
  35766. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35767. {
  35768. front: {
  35769. height: math.unit(8, "feet"),
  35770. name: "Front",
  35771. image: {
  35772. source: "./media/characters/myu-myu/front.svg",
  35773. extra: 1949/1857,
  35774. bottom: 90/2039
  35775. }
  35776. },
  35777. },
  35778. [
  35779. {
  35780. name: "Normal",
  35781. height: math.unit(8, "feet"),
  35782. default: true
  35783. },
  35784. {
  35785. name: "Big",
  35786. height: math.unit(15, "feet")
  35787. },
  35788. {
  35789. name: "BIG",
  35790. height: math.unit(25, "feet")
  35791. },
  35792. ]
  35793. ))
  35794. characterMakers.push(() => makeCharacter(
  35795. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35796. {
  35797. side: {
  35798. height: math.unit(7 + 5/12, "feet"),
  35799. weight: math.unit(2800, "lb"),
  35800. name: "Side",
  35801. image: {
  35802. source: "./media/characters/haloren/side.svg",
  35803. extra: 1793/409,
  35804. bottom: 59/1852
  35805. }
  35806. },
  35807. frontPaw: {
  35808. height: math.unit(2.36, "feet"),
  35809. name: "Front paw",
  35810. image: {
  35811. source: "./media/characters/haloren/front-paw.svg"
  35812. }
  35813. },
  35814. hindPaw: {
  35815. height: math.unit(3.18, "feet"),
  35816. name: "Hind paw",
  35817. image: {
  35818. source: "./media/characters/haloren/hind-paw.svg"
  35819. }
  35820. },
  35821. maw: {
  35822. height: math.unit(5.05, "feet"),
  35823. name: "Maw",
  35824. image: {
  35825. source: "./media/characters/haloren/maw.svg"
  35826. }
  35827. },
  35828. dick: {
  35829. height: math.unit(2.90, "feet"),
  35830. name: "Dick",
  35831. image: {
  35832. source: "./media/characters/haloren/dick.svg"
  35833. }
  35834. },
  35835. },
  35836. [
  35837. {
  35838. name: "Normal",
  35839. height: math.unit(7 + 5/12, "feet"),
  35840. default: true
  35841. },
  35842. {
  35843. name: "Enhanced",
  35844. height: math.unit(14 + 3/12, "feet")
  35845. },
  35846. ]
  35847. ))
  35848. characterMakers.push(() => makeCharacter(
  35849. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35850. {
  35851. front: {
  35852. height: math.unit(171, "cm"),
  35853. name: "Front",
  35854. image: {
  35855. source: "./media/characters/kimmy/front.svg",
  35856. extra: 1491/1435,
  35857. bottom: 53/1544
  35858. }
  35859. },
  35860. },
  35861. [
  35862. {
  35863. name: "Small",
  35864. height: math.unit(9, "cm")
  35865. },
  35866. {
  35867. name: "Normal",
  35868. height: math.unit(171, "cm"),
  35869. default: true
  35870. },
  35871. ]
  35872. ))
  35873. characterMakers.push(() => makeCharacter(
  35874. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35875. {
  35876. front: {
  35877. height: math.unit(8, "feet"),
  35878. weight: math.unit(300, "lb"),
  35879. name: "Front",
  35880. image: {
  35881. source: "./media/characters/galeboomer/front.svg",
  35882. extra: 4651/4415,
  35883. bottom: 162/4813
  35884. }
  35885. },
  35886. back: {
  35887. height: math.unit(8, "feet"),
  35888. weight: math.unit(300, "lb"),
  35889. name: "Back",
  35890. image: {
  35891. source: "./media/characters/galeboomer/back.svg",
  35892. extra: 4544/4314,
  35893. bottom: 16/4560
  35894. }
  35895. },
  35896. frontAlt: {
  35897. height: math.unit(8, "feet"),
  35898. weight: math.unit(300, "lb"),
  35899. name: "Front (Alt)",
  35900. image: {
  35901. source: "./media/characters/galeboomer/front-alt.svg",
  35902. extra: 4458/4228,
  35903. bottom: 68/4526
  35904. }
  35905. },
  35906. maw: {
  35907. height: math.unit(1.2, "feet"),
  35908. name: "Maw",
  35909. image: {
  35910. source: "./media/characters/galeboomer/maw.svg"
  35911. }
  35912. },
  35913. },
  35914. [
  35915. {
  35916. name: "Normal",
  35917. height: math.unit(8, "feet"),
  35918. default: true
  35919. },
  35920. ]
  35921. ))
  35922. characterMakers.push(() => makeCharacter(
  35923. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35924. {
  35925. front: {
  35926. height: math.unit(5 + 9/12, "feet"),
  35927. weight: math.unit(120, "lb"),
  35928. name: "Front",
  35929. image: {
  35930. source: "./media/characters/chyr/front.svg",
  35931. extra: 1323/1254,
  35932. bottom: 63/1386
  35933. }
  35934. },
  35935. back: {
  35936. height: math.unit(5 + 9/12, "feet"),
  35937. weight: math.unit(120, "lb"),
  35938. name: "Back",
  35939. image: {
  35940. source: "./media/characters/chyr/back.svg",
  35941. extra: 1323/1252,
  35942. bottom: 48/1371
  35943. }
  35944. },
  35945. },
  35946. [
  35947. {
  35948. name: "Normal",
  35949. height: math.unit(5 + 9/12, "feet"),
  35950. default: true
  35951. },
  35952. ]
  35953. ))
  35954. characterMakers.push(() => makeCharacter(
  35955. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35956. {
  35957. front: {
  35958. height: math.unit(7, "feet"),
  35959. weight: math.unit(310, "lb"),
  35960. name: "Front",
  35961. image: {
  35962. source: "./media/characters/solarus/front.svg",
  35963. extra: 2415/2021,
  35964. bottom: 103/2518
  35965. }
  35966. },
  35967. back: {
  35968. height: math.unit(7, "feet"),
  35969. weight: math.unit(310, "lb"),
  35970. name: "Back",
  35971. image: {
  35972. source: "./media/characters/solarus/back.svg",
  35973. extra: 2463/2089,
  35974. bottom: 79/2542
  35975. }
  35976. },
  35977. },
  35978. [
  35979. {
  35980. name: "Normal",
  35981. height: math.unit(7, "feet"),
  35982. default: true
  35983. },
  35984. ]
  35985. ))
  35986. characterMakers.push(() => makeCharacter(
  35987. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35988. {
  35989. front: {
  35990. height: math.unit(16, "feet"),
  35991. name: "Front",
  35992. image: {
  35993. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35994. extra: 1844/1780,
  35995. bottom: 58/1902
  35996. }
  35997. },
  35998. winterCoat: {
  35999. height: math.unit(16, "feet"),
  36000. name: "Winter Coat",
  36001. image: {
  36002. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  36003. extra: 1807/1775,
  36004. bottom: 69/1876
  36005. }
  36006. },
  36007. },
  36008. [
  36009. {
  36010. name: "Normal",
  36011. height: math.unit(16, "feet"),
  36012. default: true
  36013. },
  36014. {
  36015. name: "Chicago Size",
  36016. height: math.unit(560, "feet")
  36017. },
  36018. ]
  36019. ))
  36020. characterMakers.push(() => makeCharacter(
  36021. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  36022. {
  36023. front: {
  36024. height: math.unit(11 + 6/12, "feet"),
  36025. weight: math.unit(1366, "lb"),
  36026. name: "Front",
  36027. image: {
  36028. source: "./media/characters/lexor/front.svg",
  36029. extra: 1560/1481,
  36030. bottom: 211/1771
  36031. }
  36032. },
  36033. back: {
  36034. height: math.unit(11 + 6/12, "feet"),
  36035. weight: math.unit(1366, "lb"),
  36036. name: "Back",
  36037. image: {
  36038. source: "./media/characters/lexor/back.svg",
  36039. extra: 1614/1533,
  36040. bottom: 76/1690
  36041. }
  36042. },
  36043. maw: {
  36044. height: math.unit(3, "feet"),
  36045. name: "Maw",
  36046. image: {
  36047. source: "./media/characters/lexor/maw.svg"
  36048. }
  36049. },
  36050. dick: {
  36051. height: math.unit(2.59, "feet"),
  36052. name: "Dick",
  36053. image: {
  36054. source: "./media/characters/lexor/dick.svg"
  36055. }
  36056. },
  36057. },
  36058. [
  36059. {
  36060. name: "Normal",
  36061. height: math.unit(11 + 6/12, "feet"),
  36062. default: true
  36063. },
  36064. ]
  36065. ))
  36066. characterMakers.push(() => makeCharacter(
  36067. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36068. {
  36069. front: {
  36070. height: math.unit(5 + 8/12, "feet"),
  36071. name: "Front",
  36072. image: {
  36073. source: "./media/characters/magnum/front.svg",
  36074. extra: 942/855,
  36075. bottom: 26/968
  36076. }
  36077. },
  36078. },
  36079. [
  36080. {
  36081. name: "Normal",
  36082. height: math.unit(5 + 8/12, "feet"),
  36083. default: true
  36084. },
  36085. ]
  36086. ))
  36087. characterMakers.push(() => makeCharacter(
  36088. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36089. {
  36090. front: {
  36091. height: math.unit(18 + 4/12, "feet"),
  36092. weight: math.unit(1500, "kg"),
  36093. name: "Front",
  36094. image: {
  36095. source: "./media/characters/solas-sharpsman/front.svg",
  36096. extra: 1698/1589,
  36097. bottom: 0/1698
  36098. }
  36099. },
  36100. },
  36101. [
  36102. {
  36103. name: "Normal",
  36104. height: math.unit(18 + 4/12, "feet"),
  36105. default: true
  36106. },
  36107. ]
  36108. ))
  36109. characterMakers.push(() => makeCharacter(
  36110. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36111. {
  36112. front: {
  36113. height: math.unit(5 + 5/12, "feet"),
  36114. weight: math.unit(180, "lb"),
  36115. name: "Front",
  36116. image: {
  36117. source: "./media/characters/october/front.svg",
  36118. extra: 1800/1650,
  36119. bottom: 0/1800
  36120. }
  36121. },
  36122. frontNsfw: {
  36123. height: math.unit(5 + 5/12, "feet"),
  36124. weight: math.unit(180, "lb"),
  36125. name: "Front (NSFW)",
  36126. image: {
  36127. source: "./media/characters/october/front-nsfw.svg",
  36128. extra: 1392/1307,
  36129. bottom: 42/1434
  36130. }
  36131. },
  36132. },
  36133. [
  36134. {
  36135. name: "Normal",
  36136. height: math.unit(5 + 5/12, "feet"),
  36137. default: true
  36138. },
  36139. ]
  36140. ))
  36141. characterMakers.push(() => makeCharacter(
  36142. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36143. {
  36144. front: {
  36145. height: math.unit(8 + 6/12, "feet"),
  36146. name: "Front",
  36147. image: {
  36148. source: "./media/characters/essynkardi/front.svg",
  36149. extra: 1914/1846,
  36150. bottom: 22/1936
  36151. }
  36152. },
  36153. },
  36154. [
  36155. {
  36156. name: "Normal",
  36157. height: math.unit(8 + 6/12, "feet"),
  36158. default: true
  36159. },
  36160. ]
  36161. ))
  36162. characterMakers.push(() => makeCharacter(
  36163. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36164. {
  36165. front: {
  36166. height: math.unit(6 + 6/12, "feet"),
  36167. weight: math.unit(7, "lb"),
  36168. name: "Front",
  36169. image: {
  36170. source: "./media/characters/icky/front.svg",
  36171. extra: 813/782,
  36172. bottom: 66/879
  36173. }
  36174. },
  36175. back: {
  36176. height: math.unit(6 + 6/12, "feet"),
  36177. weight: math.unit(7, "lb"),
  36178. name: "Back",
  36179. image: {
  36180. source: "./media/characters/icky/back.svg",
  36181. extra: 754/735,
  36182. bottom: 56/810
  36183. }
  36184. },
  36185. },
  36186. [
  36187. {
  36188. name: "Normal",
  36189. height: math.unit(6 + 6/12, "feet"),
  36190. default: true
  36191. },
  36192. ]
  36193. ))
  36194. characterMakers.push(() => makeCharacter(
  36195. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36196. {
  36197. front: {
  36198. height: math.unit(15, "feet"),
  36199. name: "Front",
  36200. image: {
  36201. source: "./media/characters/rojas/front.svg",
  36202. extra: 1462/1408,
  36203. bottom: 95/1557
  36204. }
  36205. },
  36206. back: {
  36207. height: math.unit(15, "feet"),
  36208. name: "Back",
  36209. image: {
  36210. source: "./media/characters/rojas/back.svg",
  36211. extra: 1023/954,
  36212. bottom: 28/1051
  36213. }
  36214. },
  36215. },
  36216. [
  36217. {
  36218. name: "Normal",
  36219. height: math.unit(15, "feet"),
  36220. default: true
  36221. },
  36222. ]
  36223. ))
  36224. characterMakers.push(() => makeCharacter(
  36225. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36226. {
  36227. frontHuman: {
  36228. height: math.unit(5 + 7/12, "feet"),
  36229. name: "Front (Human)",
  36230. image: {
  36231. source: "./media/characters/alek-dryagan/front-human.svg",
  36232. extra: 1687/1667,
  36233. bottom: 69/1756
  36234. }
  36235. },
  36236. backHuman: {
  36237. height: math.unit(5 + 7/12, "feet"),
  36238. name: "Back (Human)",
  36239. image: {
  36240. source: "./media/characters/alek-dryagan/back-human.svg",
  36241. extra: 1670/1649,
  36242. bottom: 65/1735
  36243. }
  36244. },
  36245. frontDemi: {
  36246. height: math.unit(65, "feet"),
  36247. name: "Front (Demi)",
  36248. image: {
  36249. source: "./media/characters/alek-dryagan/front-demi.svg",
  36250. extra: 1669/1642,
  36251. bottom: 49/1718
  36252. }
  36253. },
  36254. backDemi: {
  36255. height: math.unit(65, "feet"),
  36256. name: "Back (Demi)",
  36257. image: {
  36258. source: "./media/characters/alek-dryagan/back-demi.svg",
  36259. extra: 1658/1637,
  36260. bottom: 40/1698
  36261. }
  36262. },
  36263. mawHuman: {
  36264. height: math.unit(0.3, "feet"),
  36265. name: "Maw (Human)",
  36266. image: {
  36267. source: "./media/characters/alek-dryagan/maw-human.svg"
  36268. }
  36269. },
  36270. mawDemi: {
  36271. height: math.unit(3.8, "feet"),
  36272. name: "Maw (Demi)",
  36273. image: {
  36274. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36275. }
  36276. },
  36277. },
  36278. [
  36279. {
  36280. name: "Normal",
  36281. height: math.unit(5 + 7/12, "feet"),
  36282. default: true
  36283. },
  36284. ]
  36285. ))
  36286. characterMakers.push(() => makeCharacter(
  36287. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36288. {
  36289. frontHuman: {
  36290. height: math.unit(5 + 2/12, "feet"),
  36291. name: "Front (Human)",
  36292. image: {
  36293. source: "./media/characters/gen/front-human.svg",
  36294. extra: 1627/1538,
  36295. bottom: 71/1698
  36296. }
  36297. },
  36298. backHuman: {
  36299. height: math.unit(5 + 2/12, "feet"),
  36300. name: "Back (Human)",
  36301. image: {
  36302. source: "./media/characters/gen/back-human.svg",
  36303. extra: 1638/1548,
  36304. bottom: 69/1707
  36305. }
  36306. },
  36307. frontDemi: {
  36308. height: math.unit(5 + 2/12, "feet"),
  36309. name: "Front (Demi)",
  36310. image: {
  36311. source: "./media/characters/gen/front-demi.svg",
  36312. extra: 1627/1538,
  36313. bottom: 71/1698
  36314. }
  36315. },
  36316. backDemi: {
  36317. height: math.unit(5 + 2/12, "feet"),
  36318. name: "Back (Demi)",
  36319. image: {
  36320. source: "./media/characters/gen/back-demi.svg",
  36321. extra: 1638/1548,
  36322. bottom: 69/1707
  36323. }
  36324. },
  36325. },
  36326. [
  36327. {
  36328. name: "Normal",
  36329. height: math.unit(5 + 2/12, "feet"),
  36330. default: true
  36331. },
  36332. ]
  36333. ))
  36334. characterMakers.push(() => makeCharacter(
  36335. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36336. {
  36337. frontImp: {
  36338. height: math.unit(1 + 11/12, "feet"),
  36339. name: "Front (Imp)",
  36340. image: {
  36341. source: "./media/characters/max-kobold/front-imp.svg",
  36342. extra: 1238/1134,
  36343. bottom: 81/1319
  36344. }
  36345. },
  36346. backImp: {
  36347. height: math.unit(1 + 11/12, "feet"),
  36348. name: "Back (Imp)",
  36349. image: {
  36350. source: "./media/characters/max-kobold/back-imp.svg",
  36351. extra: 1334/1175,
  36352. bottom: 34/1368
  36353. }
  36354. },
  36355. frontDemi: {
  36356. height: math.unit(5 + 9/12, "feet"),
  36357. name: "Front (Demi)",
  36358. image: {
  36359. source: "./media/characters/max-kobold/front-demi.svg",
  36360. extra: 1715/1685,
  36361. bottom: 54/1769
  36362. }
  36363. },
  36364. backDemi: {
  36365. height: math.unit(5 + 9/12, "feet"),
  36366. name: "Back (Demi)",
  36367. image: {
  36368. source: "./media/characters/max-kobold/back-demi.svg",
  36369. extra: 1752/1729,
  36370. bottom: 41/1793
  36371. }
  36372. },
  36373. handImp: {
  36374. height: math.unit(0.45, "feet"),
  36375. name: "Hand (Imp)",
  36376. image: {
  36377. source: "./media/characters/max-kobold/hand.svg"
  36378. }
  36379. },
  36380. pawImp: {
  36381. height: math.unit(0.46, "feet"),
  36382. name: "Paw (Imp)",
  36383. image: {
  36384. source: "./media/characters/max-kobold/paw.svg"
  36385. }
  36386. },
  36387. handDemi: {
  36388. height: math.unit(0.80, "feet"),
  36389. name: "Hand (Demi)",
  36390. image: {
  36391. source: "./media/characters/max-kobold/hand.svg"
  36392. }
  36393. },
  36394. pawDemi: {
  36395. height: math.unit(1.1, "feet"),
  36396. name: "Paw (Demi)",
  36397. image: {
  36398. source: "./media/characters/max-kobold/paw.svg"
  36399. }
  36400. },
  36401. headImp: {
  36402. height: math.unit(1.33, "feet"),
  36403. name: "Head (Imp)",
  36404. image: {
  36405. source: "./media/characters/max-kobold/head-imp.svg"
  36406. }
  36407. },
  36408. mawImp: {
  36409. height: math.unit(0.75, "feet"),
  36410. name: "Maw (Imp)",
  36411. image: {
  36412. source: "./media/characters/max-kobold/maw-imp.svg"
  36413. }
  36414. },
  36415. mawDemi: {
  36416. height: math.unit(0.42, "feet"),
  36417. name: "Maw (Demi)",
  36418. image: {
  36419. source: "./media/characters/max-kobold/maw-demi.svg"
  36420. }
  36421. },
  36422. },
  36423. [
  36424. {
  36425. name: "Normal",
  36426. height: math.unit(1 + 11/12, "feet"),
  36427. default: true
  36428. },
  36429. ]
  36430. ))
  36431. characterMakers.push(() => makeCharacter(
  36432. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36433. {
  36434. front: {
  36435. height: math.unit(7 + 5/12, "feet"),
  36436. name: "Front",
  36437. image: {
  36438. source: "./media/characters/carbon/front.svg",
  36439. extra: 1754/1689,
  36440. bottom: 65/1819
  36441. }
  36442. },
  36443. back: {
  36444. height: math.unit(7 + 5/12, "feet"),
  36445. name: "Back",
  36446. image: {
  36447. source: "./media/characters/carbon/back.svg",
  36448. extra: 1762/1695,
  36449. bottom: 24/1786
  36450. }
  36451. },
  36452. frontGigantamax: {
  36453. height: math.unit(150, "feet"),
  36454. name: "Front (Gigantamax)",
  36455. image: {
  36456. source: "./media/characters/carbon/front-gigantamax.svg",
  36457. extra: 1826/1669,
  36458. bottom: 59/1885
  36459. }
  36460. },
  36461. backGigantamax: {
  36462. height: math.unit(150, "feet"),
  36463. name: "Back (Gigantamax)",
  36464. image: {
  36465. source: "./media/characters/carbon/back-gigantamax.svg",
  36466. extra: 1796/1653,
  36467. bottom: 53/1849
  36468. }
  36469. },
  36470. maw: {
  36471. height: math.unit(0.48, "feet"),
  36472. name: "Maw",
  36473. image: {
  36474. source: "./media/characters/carbon/maw.svg"
  36475. }
  36476. },
  36477. mawGigantamax: {
  36478. height: math.unit(7.5, "feet"),
  36479. name: "Maw (Gigantamax)",
  36480. image: {
  36481. source: "./media/characters/carbon/maw-gigantamax.svg"
  36482. }
  36483. },
  36484. },
  36485. [
  36486. {
  36487. name: "Normal",
  36488. height: math.unit(7 + 5/12, "feet"),
  36489. default: true
  36490. },
  36491. ]
  36492. ))
  36493. characterMakers.push(() => makeCharacter(
  36494. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36495. {
  36496. front: {
  36497. height: math.unit(6, "feet"),
  36498. name: "Front",
  36499. image: {
  36500. source: "./media/characters/maverick/front.svg",
  36501. extra: 1672/1661,
  36502. bottom: 85/1757
  36503. }
  36504. },
  36505. back: {
  36506. height: math.unit(6, "feet"),
  36507. name: "Back",
  36508. image: {
  36509. source: "./media/characters/maverick/back.svg",
  36510. extra: 1642/1631,
  36511. bottom: 38/1680
  36512. }
  36513. },
  36514. },
  36515. [
  36516. {
  36517. name: "Normal",
  36518. height: math.unit(6, "feet"),
  36519. default: true
  36520. },
  36521. ]
  36522. ))
  36523. characterMakers.push(() => makeCharacter(
  36524. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36525. {
  36526. front: {
  36527. height: math.unit(15, "feet"),
  36528. weight: math.unit(615, "lb"),
  36529. name: "Front",
  36530. image: {
  36531. source: "./media/characters/grockle/front.svg",
  36532. extra: 1535/1427,
  36533. bottom: 56/1591
  36534. }
  36535. },
  36536. },
  36537. [
  36538. {
  36539. name: "Normal",
  36540. height: math.unit(15, "feet"),
  36541. default: true
  36542. },
  36543. {
  36544. name: "Large",
  36545. height: math.unit(150, "feet")
  36546. },
  36547. {
  36548. name: "Macro",
  36549. height: math.unit(1876, "feet")
  36550. },
  36551. {
  36552. name: "Mega Macro",
  36553. height: math.unit(121940, "feet")
  36554. },
  36555. {
  36556. name: "Giga Macro",
  36557. height: math.unit(750, "km")
  36558. },
  36559. {
  36560. name: "Tera Macro",
  36561. height: math.unit(750000, "km")
  36562. },
  36563. {
  36564. name: "Galactic",
  36565. height: math.unit(1.4e5, "km")
  36566. },
  36567. {
  36568. name: "Godlike",
  36569. height: math.unit(9.8e280, "galaxies")
  36570. },
  36571. ]
  36572. ))
  36573. characterMakers.push(() => makeCharacter(
  36574. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36575. {
  36576. front: {
  36577. height: math.unit(11, "meters"),
  36578. weight: math.unit(20, "tonnes"),
  36579. name: "Front",
  36580. image: {
  36581. source: "./media/characters/alistair/front.svg",
  36582. extra: 1265/1009,
  36583. bottom: 93/1358
  36584. }
  36585. },
  36586. },
  36587. [
  36588. {
  36589. name: "Normal",
  36590. height: math.unit(11, "meters"),
  36591. default: true
  36592. },
  36593. ]
  36594. ))
  36595. characterMakers.push(() => makeCharacter(
  36596. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36597. {
  36598. front: {
  36599. height: math.unit(5 + 8/12, "feet"),
  36600. name: "Front",
  36601. image: {
  36602. source: "./media/characters/haruka/front.svg",
  36603. extra: 2012/1952,
  36604. bottom: 0/2012
  36605. }
  36606. },
  36607. },
  36608. [
  36609. {
  36610. name: "Normal",
  36611. height: math.unit(5 + 8/12, "feet"),
  36612. default: true
  36613. },
  36614. ]
  36615. ))
  36616. characterMakers.push(() => makeCharacter(
  36617. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36618. {
  36619. back: {
  36620. height: math.unit(9, "feet"),
  36621. name: "Back",
  36622. image: {
  36623. source: "./media/characters/vivian-sylveon/back.svg",
  36624. extra: 1853/1714,
  36625. bottom: 0/1853
  36626. }
  36627. },
  36628. },
  36629. [
  36630. {
  36631. name: "Normal",
  36632. height: math.unit(9, "feet"),
  36633. default: true
  36634. },
  36635. {
  36636. name: "Macro",
  36637. height: math.unit(500, "feet")
  36638. },
  36639. {
  36640. name: "Megamacro",
  36641. height: math.unit(600, "miles")
  36642. },
  36643. {
  36644. name: "Gigamacro",
  36645. height: math.unit(30000, "miles")
  36646. },
  36647. ]
  36648. ))
  36649. characterMakers.push(() => makeCharacter(
  36650. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36651. {
  36652. anthro: {
  36653. height: math.unit(5 + 10/12, "feet"),
  36654. weight: math.unit(100, "lb"),
  36655. name: "Anthro",
  36656. image: {
  36657. source: "./media/characters/daiki/anthro.svg",
  36658. extra: 1115/1027,
  36659. bottom: 69/1184
  36660. }
  36661. },
  36662. feral: {
  36663. height: math.unit(200, "feet"),
  36664. name: "Feral",
  36665. image: {
  36666. source: "./media/characters/daiki/feral.svg",
  36667. extra: 1256/313,
  36668. bottom: 39/1295
  36669. }
  36670. },
  36671. feralHead: {
  36672. height: math.unit(171, "feet"),
  36673. name: "Feral Head",
  36674. image: {
  36675. source: "./media/characters/daiki/feral-head.svg"
  36676. }
  36677. },
  36678. manaDragon: {
  36679. height: math.unit(170, "meters"),
  36680. name: "Mana-dragon",
  36681. image: {
  36682. source: "./media/characters/daiki/mana-dragon.svg",
  36683. extra: 763/420,
  36684. bottom: 97/860
  36685. }
  36686. },
  36687. },
  36688. [
  36689. {
  36690. name: "Normal",
  36691. height: math.unit(5 + 10/12, "feet"),
  36692. default: true
  36693. },
  36694. ]
  36695. ))
  36696. characterMakers.push(() => makeCharacter(
  36697. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36698. {
  36699. fullyEquippedFront: {
  36700. height: math.unit(3 + 1/12, "feet"),
  36701. weight: math.unit(24, "lb"),
  36702. name: "Fully Equipped (Front)",
  36703. image: {
  36704. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36705. extra: 687/605,
  36706. bottom: 18/705
  36707. }
  36708. },
  36709. fullyEquippedBack: {
  36710. height: math.unit(3 + 1/12, "feet"),
  36711. weight: math.unit(24, "lb"),
  36712. name: "Fully Equipped (Back)",
  36713. image: {
  36714. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36715. extra: 689/590,
  36716. bottom: 18/707
  36717. }
  36718. },
  36719. dailyWear: {
  36720. height: math.unit(3 + 1/12, "feet"),
  36721. weight: math.unit(24, "lb"),
  36722. name: "Daily Wear",
  36723. image: {
  36724. source: "./media/characters/tea-spot/daily-wear.svg",
  36725. extra: 701/620,
  36726. bottom: 21/722
  36727. }
  36728. },
  36729. maidWork: {
  36730. height: math.unit(3 + 1/12, "feet"),
  36731. weight: math.unit(24, "lb"),
  36732. name: "Maid Work",
  36733. image: {
  36734. source: "./media/characters/tea-spot/maid-work.svg",
  36735. extra: 693/609,
  36736. bottom: 15/708
  36737. }
  36738. },
  36739. },
  36740. [
  36741. {
  36742. name: "Normal",
  36743. height: math.unit(3 + 1/12, "feet"),
  36744. default: true
  36745. },
  36746. ]
  36747. ))
  36748. characterMakers.push(() => makeCharacter(
  36749. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36750. {
  36751. front: {
  36752. height: math.unit(175, "cm"),
  36753. weight: math.unit(75, "kg"),
  36754. name: "Front",
  36755. image: {
  36756. source: "./media/characters/chee/front.svg",
  36757. extra: 1796/1740,
  36758. bottom: 40/1836
  36759. }
  36760. },
  36761. },
  36762. [
  36763. {
  36764. name: "Micro-Micro",
  36765. height: math.unit(1, "nm")
  36766. },
  36767. {
  36768. name: "Micro-erst",
  36769. height: math.unit(1, "micrometer")
  36770. },
  36771. {
  36772. name: "Micro-er",
  36773. height: math.unit(1, "cm")
  36774. },
  36775. {
  36776. name: "Normal",
  36777. height: math.unit(175, "cm"),
  36778. default: true
  36779. },
  36780. {
  36781. name: "Macro",
  36782. height: math.unit(100, "m")
  36783. },
  36784. {
  36785. name: "Macro-er",
  36786. height: math.unit(1, "km")
  36787. },
  36788. {
  36789. name: "Macro-erst",
  36790. height: math.unit(10, "km")
  36791. },
  36792. {
  36793. name: "Macro-Macro",
  36794. height: math.unit(100, "km")
  36795. },
  36796. ]
  36797. ))
  36798. characterMakers.push(() => makeCharacter(
  36799. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36800. {
  36801. front: {
  36802. height: math.unit(11 + 9/12, "feet"),
  36803. weight: math.unit(935, "lb"),
  36804. name: "Front",
  36805. image: {
  36806. source: "./media/characters/kingsley/front.svg",
  36807. extra: 1803/1674,
  36808. bottom: 127/1930
  36809. }
  36810. },
  36811. frontNude: {
  36812. height: math.unit(11 + 9/12, "feet"),
  36813. weight: math.unit(935, "lb"),
  36814. name: "Front (Nude)",
  36815. image: {
  36816. source: "./media/characters/kingsley/front-nude.svg",
  36817. extra: 1803/1674,
  36818. bottom: 127/1930
  36819. }
  36820. },
  36821. },
  36822. [
  36823. {
  36824. name: "Normal",
  36825. height: math.unit(11 + 9/12, "feet"),
  36826. default: true
  36827. },
  36828. ]
  36829. ))
  36830. characterMakers.push(() => makeCharacter(
  36831. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36832. {
  36833. side: {
  36834. height: math.unit(9, "feet"),
  36835. name: "Side",
  36836. image: {
  36837. source: "./media/characters/rymel/side.svg",
  36838. extra: 792/469,
  36839. bottom: 121/913
  36840. }
  36841. },
  36842. maw: {
  36843. height: math.unit(2.4, "meters"),
  36844. name: "Maw",
  36845. image: {
  36846. source: "./media/characters/rymel/maw.svg"
  36847. }
  36848. },
  36849. },
  36850. [
  36851. {
  36852. name: "House Drake",
  36853. height: math.unit(2, "feet")
  36854. },
  36855. {
  36856. name: "Reduced",
  36857. height: math.unit(4.5, "feet")
  36858. },
  36859. {
  36860. name: "Normal",
  36861. height: math.unit(9, "feet"),
  36862. default: true
  36863. },
  36864. ]
  36865. ))
  36866. characterMakers.push(() => makeCharacter(
  36867. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36868. {
  36869. front: {
  36870. height: math.unit(1.74, "meters"),
  36871. weight: math.unit(55, "kg"),
  36872. name: "Front",
  36873. image: {
  36874. source: "./media/characters/rubus/front.svg",
  36875. extra: 1894/1742,
  36876. bottom: 44/1938
  36877. }
  36878. },
  36879. },
  36880. [
  36881. {
  36882. name: "Normal",
  36883. height: math.unit(1.74, "meters"),
  36884. default: true
  36885. },
  36886. ]
  36887. ))
  36888. characterMakers.push(() => makeCharacter(
  36889. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36890. {
  36891. front: {
  36892. height: math.unit(5 + 2/12, "feet"),
  36893. weight: math.unit(112, "lb"),
  36894. name: "Front",
  36895. image: {
  36896. source: "./media/characters/cassie-kingston/front.svg",
  36897. extra: 1438/1390,
  36898. bottom: 47/1485
  36899. }
  36900. },
  36901. },
  36902. [
  36903. {
  36904. name: "Normal",
  36905. height: math.unit(5 + 2/12, "feet"),
  36906. default: true
  36907. },
  36908. {
  36909. name: "Macro",
  36910. height: math.unit(128, "feet")
  36911. },
  36912. {
  36913. name: "Megamacro",
  36914. height: math.unit(2.56, "miles")
  36915. },
  36916. ]
  36917. ))
  36918. characterMakers.push(() => makeCharacter(
  36919. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36920. {
  36921. front: {
  36922. height: math.unit(7, "feet"),
  36923. name: "Front",
  36924. image: {
  36925. source: "./media/characters/fox/front.svg",
  36926. extra: 1798/1703,
  36927. bottom: 55/1853
  36928. }
  36929. },
  36930. back: {
  36931. height: math.unit(7, "feet"),
  36932. name: "Back",
  36933. image: {
  36934. source: "./media/characters/fox/back.svg",
  36935. extra: 1748/1649,
  36936. bottom: 32/1780
  36937. }
  36938. },
  36939. head: {
  36940. height: math.unit(1.95, "feet"),
  36941. name: "Head",
  36942. image: {
  36943. source: "./media/characters/fox/head.svg"
  36944. }
  36945. },
  36946. dick: {
  36947. height: math.unit(1.33, "feet"),
  36948. name: "Dick",
  36949. image: {
  36950. source: "./media/characters/fox/dick.svg"
  36951. }
  36952. },
  36953. foot: {
  36954. height: math.unit(1, "feet"),
  36955. name: "Foot",
  36956. image: {
  36957. source: "./media/characters/fox/foot.svg"
  36958. }
  36959. },
  36960. paw: {
  36961. height: math.unit(0.92, "feet"),
  36962. name: "Paw",
  36963. image: {
  36964. source: "./media/characters/fox/paw.svg"
  36965. }
  36966. },
  36967. },
  36968. [
  36969. {
  36970. name: "Small",
  36971. height: math.unit(3, "inches")
  36972. },
  36973. {
  36974. name: "\"Realistic\"",
  36975. height: math.unit(7, "feet")
  36976. },
  36977. {
  36978. name: "Normal",
  36979. height: math.unit(150, "feet"),
  36980. default: true
  36981. },
  36982. {
  36983. name: "BIG",
  36984. height: math.unit(1200, "feet")
  36985. },
  36986. {
  36987. name: "👀",
  36988. height: math.unit(5, "miles")
  36989. },
  36990. {
  36991. name: "👀👀👀",
  36992. height: math.unit(64, "miles")
  36993. },
  36994. ]
  36995. ))
  36996. characterMakers.push(() => makeCharacter(
  36997. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36998. {
  36999. front: {
  37000. height: math.unit(625, "feet"),
  37001. name: "Front",
  37002. image: {
  37003. source: "./media/characters/asonja-rossa/front.svg",
  37004. extra: 1833/1686,
  37005. bottom: 24/1857
  37006. }
  37007. },
  37008. back: {
  37009. height: math.unit(625, "feet"),
  37010. name: "Back",
  37011. image: {
  37012. source: "./media/characters/asonja-rossa/back.svg",
  37013. extra: 1852/1753,
  37014. bottom: 26/1878
  37015. }
  37016. },
  37017. },
  37018. [
  37019. {
  37020. name: "Macro",
  37021. height: math.unit(625, "feet"),
  37022. default: true
  37023. },
  37024. ]
  37025. ))
  37026. characterMakers.push(() => makeCharacter(
  37027. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  37028. {
  37029. side: {
  37030. height: math.unit(8, "feet"),
  37031. name: "Side",
  37032. image: {
  37033. source: "./media/characters/rezukii/side.svg",
  37034. extra: 979/542,
  37035. bottom: 87/1066
  37036. }
  37037. },
  37038. sitting: {
  37039. height: math.unit(14.6, "feet"),
  37040. name: "Sitting",
  37041. image: {
  37042. source: "./media/characters/rezukii/sitting.svg",
  37043. extra: 1023/813,
  37044. bottom: 45/1068
  37045. }
  37046. },
  37047. },
  37048. [
  37049. {
  37050. name: "Tiny",
  37051. height: math.unit(2, "feet")
  37052. },
  37053. {
  37054. name: "Smol",
  37055. height: math.unit(4, "feet")
  37056. },
  37057. {
  37058. name: "Normal",
  37059. height: math.unit(8, "feet"),
  37060. default: true
  37061. },
  37062. {
  37063. name: "Big",
  37064. height: math.unit(12, "feet")
  37065. },
  37066. {
  37067. name: "Macro",
  37068. height: math.unit(30, "feet")
  37069. },
  37070. ]
  37071. ))
  37072. characterMakers.push(() => makeCharacter(
  37073. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37074. {
  37075. front: {
  37076. height: math.unit(14, "feet"),
  37077. weight: math.unit(9.5, "tonnes"),
  37078. name: "Front",
  37079. image: {
  37080. source: "./media/characters/dawnheart/front.svg",
  37081. extra: 2792/2675,
  37082. bottom: 64/2856
  37083. }
  37084. },
  37085. },
  37086. [
  37087. {
  37088. name: "Normal",
  37089. height: math.unit(14, "feet"),
  37090. default: true
  37091. },
  37092. ]
  37093. ))
  37094. characterMakers.push(() => makeCharacter(
  37095. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37096. {
  37097. front: {
  37098. height: math.unit(1.7, "m"),
  37099. name: "Front",
  37100. image: {
  37101. source: "./media/characters/gladi/front.svg",
  37102. extra: 1460/1362,
  37103. bottom: 19/1479
  37104. }
  37105. },
  37106. back: {
  37107. height: math.unit(1.7, "m"),
  37108. name: "Back",
  37109. image: {
  37110. source: "./media/characters/gladi/back.svg",
  37111. extra: 1459/1357,
  37112. bottom: 12/1471
  37113. }
  37114. },
  37115. feral: {
  37116. height: math.unit(2.05, "m"),
  37117. name: "Feral",
  37118. image: {
  37119. source: "./media/characters/gladi/feral.svg",
  37120. extra: 821/557,
  37121. bottom: 91/912
  37122. }
  37123. },
  37124. },
  37125. [
  37126. {
  37127. name: "Shortest",
  37128. height: math.unit(70, "cm")
  37129. },
  37130. {
  37131. name: "Normal",
  37132. height: math.unit(1.7, "m")
  37133. },
  37134. {
  37135. name: "Macro",
  37136. height: math.unit(10, "m"),
  37137. default: true
  37138. },
  37139. {
  37140. name: "Tallest",
  37141. height: math.unit(200, "m")
  37142. },
  37143. ]
  37144. ))
  37145. characterMakers.push(() => makeCharacter(
  37146. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37147. {
  37148. front: {
  37149. height: math.unit(5 + 7/12, "feet"),
  37150. weight: math.unit(2, "tons"),
  37151. name: "Front",
  37152. image: {
  37153. source: "./media/characters/erdno/front.svg",
  37154. extra: 1234/1129,
  37155. bottom: 35/1269
  37156. }
  37157. },
  37158. angled: {
  37159. height: math.unit(5 + 7/12, "feet"),
  37160. weight: math.unit(2, "tons"),
  37161. name: "Angled",
  37162. image: {
  37163. source: "./media/characters/erdno/angled.svg",
  37164. extra: 1185/1139,
  37165. bottom: 36/1221
  37166. }
  37167. },
  37168. side: {
  37169. height: math.unit(5 + 7/12, "feet"),
  37170. weight: math.unit(2, "tons"),
  37171. name: "Side",
  37172. image: {
  37173. source: "./media/characters/erdno/side.svg",
  37174. extra: 1191/1144,
  37175. bottom: 40/1231
  37176. }
  37177. },
  37178. back: {
  37179. height: math.unit(5 + 7/12, "feet"),
  37180. weight: math.unit(2, "tons"),
  37181. name: "Back",
  37182. image: {
  37183. source: "./media/characters/erdno/back.svg",
  37184. extra: 1202/1146,
  37185. bottom: 17/1219
  37186. }
  37187. },
  37188. frontNsfw: {
  37189. height: math.unit(5 + 7/12, "feet"),
  37190. weight: math.unit(2, "tons"),
  37191. name: "Front (NSFW)",
  37192. image: {
  37193. source: "./media/characters/erdno/front-nsfw.svg",
  37194. extra: 1234/1129,
  37195. bottom: 35/1269
  37196. }
  37197. },
  37198. angledNsfw: {
  37199. height: math.unit(5 + 7/12, "feet"),
  37200. weight: math.unit(2, "tons"),
  37201. name: "Angled (NSFW)",
  37202. image: {
  37203. source: "./media/characters/erdno/angled-nsfw.svg",
  37204. extra: 1185/1139,
  37205. bottom: 36/1221
  37206. }
  37207. },
  37208. sideNsfw: {
  37209. height: math.unit(5 + 7/12, "feet"),
  37210. weight: math.unit(2, "tons"),
  37211. name: "Side (NSFW)",
  37212. image: {
  37213. source: "./media/characters/erdno/side-nsfw.svg",
  37214. extra: 1191/1144,
  37215. bottom: 40/1231
  37216. }
  37217. },
  37218. backNsfw: {
  37219. height: math.unit(5 + 7/12, "feet"),
  37220. weight: math.unit(2, "tons"),
  37221. name: "Back (NSFW)",
  37222. image: {
  37223. source: "./media/characters/erdno/back-nsfw.svg",
  37224. extra: 1202/1146,
  37225. bottom: 17/1219
  37226. }
  37227. },
  37228. frontHyper: {
  37229. height: math.unit(5 + 7/12, "feet"),
  37230. weight: math.unit(2, "tons"),
  37231. name: "Front (Hyper)",
  37232. image: {
  37233. source: "./media/characters/erdno/front-hyper.svg",
  37234. extra: 1298/1136,
  37235. bottom: 35/1333
  37236. }
  37237. },
  37238. },
  37239. [
  37240. {
  37241. name: "Normal",
  37242. height: math.unit(5 + 7/12, "feet"),
  37243. default: true
  37244. },
  37245. {
  37246. name: "Big",
  37247. height: math.unit(5.7, "meters")
  37248. },
  37249. {
  37250. name: "Macro",
  37251. height: math.unit(5.7, "kilometers")
  37252. },
  37253. {
  37254. name: "Megamacro",
  37255. height: math.unit(5.7, "earths")
  37256. },
  37257. ]
  37258. ))
  37259. characterMakers.push(() => makeCharacter(
  37260. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37261. {
  37262. front: {
  37263. height: math.unit(5 + 10/12, "feet"),
  37264. weight: math.unit(150, "lb"),
  37265. name: "Front",
  37266. image: {
  37267. source: "./media/characters/jamie/front.svg",
  37268. extra: 1908/1768,
  37269. bottom: 19/1927
  37270. }
  37271. },
  37272. },
  37273. [
  37274. {
  37275. name: "Minimum",
  37276. height: math.unit(2, "cm")
  37277. },
  37278. {
  37279. name: "Micro",
  37280. height: math.unit(3, "inches")
  37281. },
  37282. {
  37283. name: "Normal",
  37284. height: math.unit(5 + 10/12, "feet"),
  37285. default: true
  37286. },
  37287. {
  37288. name: "Macro",
  37289. height: math.unit(150, "feet")
  37290. },
  37291. {
  37292. name: "Megamacro",
  37293. height: math.unit(10000, "m")
  37294. },
  37295. ]
  37296. ))
  37297. characterMakers.push(() => makeCharacter(
  37298. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37299. {
  37300. front: {
  37301. height: math.unit(2, "meters"),
  37302. weight: math.unit(100, "kg"),
  37303. name: "Front",
  37304. image: {
  37305. source: "./media/characters/shiron/front.svg",
  37306. extra: 2103/1985,
  37307. bottom: 98/2201
  37308. }
  37309. },
  37310. back: {
  37311. height: math.unit(2, "meters"),
  37312. weight: math.unit(100, "kg"),
  37313. name: "Back",
  37314. image: {
  37315. source: "./media/characters/shiron/back.svg",
  37316. extra: 2110/2015,
  37317. bottom: 89/2199
  37318. }
  37319. },
  37320. hand: {
  37321. height: math.unit(0.96, "feet"),
  37322. name: "Hand",
  37323. image: {
  37324. source: "./media/characters/shiron/hand.svg"
  37325. }
  37326. },
  37327. foot: {
  37328. height: math.unit(1.464, "feet"),
  37329. name: "Foot",
  37330. image: {
  37331. source: "./media/characters/shiron/foot.svg"
  37332. }
  37333. },
  37334. },
  37335. [
  37336. {
  37337. name: "Normal",
  37338. height: math.unit(2, "meters")
  37339. },
  37340. {
  37341. name: "Macro",
  37342. height: math.unit(500, "meters"),
  37343. default: true
  37344. },
  37345. {
  37346. name: "Megamacro",
  37347. height: math.unit(20, "km")
  37348. },
  37349. ]
  37350. ))
  37351. characterMakers.push(() => makeCharacter(
  37352. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37353. {
  37354. front: {
  37355. height: math.unit(6, "feet"),
  37356. name: "Front",
  37357. image: {
  37358. source: "./media/characters/sam/front.svg",
  37359. extra: 849/826,
  37360. bottom: 19/868
  37361. }
  37362. },
  37363. },
  37364. [
  37365. {
  37366. name: "Normal",
  37367. height: math.unit(6, "feet"),
  37368. default: true
  37369. },
  37370. ]
  37371. ))
  37372. characterMakers.push(() => makeCharacter(
  37373. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37374. {
  37375. front: {
  37376. height: math.unit(8 + 4/12, "feet"),
  37377. weight: math.unit(122, "kg"),
  37378. name: "Front",
  37379. image: {
  37380. source: "./media/characters/namori-kurogawa/front.svg",
  37381. extra: 1894/1576,
  37382. bottom: 34/1928
  37383. }
  37384. },
  37385. },
  37386. [
  37387. {
  37388. name: "Normal",
  37389. height: math.unit(8 + 4/12, "feet"),
  37390. default: true
  37391. },
  37392. ]
  37393. ))
  37394. characterMakers.push(() => makeCharacter(
  37395. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37396. {
  37397. front: {
  37398. height: math.unit(9, "feet"),
  37399. weight: math.unit(621, "lb"),
  37400. name: "Front",
  37401. image: {
  37402. source: "./media/characters/unmru/front.svg",
  37403. extra: 1853/1747,
  37404. bottom: 73/1926
  37405. }
  37406. },
  37407. side: {
  37408. height: math.unit(9, "feet"),
  37409. weight: math.unit(621, "lb"),
  37410. name: "Side",
  37411. image: {
  37412. source: "./media/characters/unmru/side.svg",
  37413. extra: 1781/1671,
  37414. bottom: 127/1908
  37415. }
  37416. },
  37417. back: {
  37418. height: math.unit(9, "feet"),
  37419. weight: math.unit(621, "lb"),
  37420. name: "Back",
  37421. image: {
  37422. source: "./media/characters/unmru/back.svg",
  37423. extra: 1894/1765,
  37424. bottom: 75/1969
  37425. }
  37426. },
  37427. dick: {
  37428. height: math.unit(3, "feet"),
  37429. weight: math.unit(35, "lb"),
  37430. name: "Dick",
  37431. image: {
  37432. source: "./media/characters/unmru/dick.svg"
  37433. }
  37434. },
  37435. },
  37436. [
  37437. {
  37438. name: "Normal",
  37439. height: math.unit(9, "feet")
  37440. },
  37441. {
  37442. name: "Natural",
  37443. height: math.unit(27, "feet"),
  37444. default: true
  37445. },
  37446. {
  37447. name: "Giant",
  37448. height: math.unit(90, "feet")
  37449. },
  37450. {
  37451. name: "Kaiju",
  37452. height: math.unit(270, "feet")
  37453. },
  37454. {
  37455. name: "Macro",
  37456. height: math.unit(900, "feet")
  37457. },
  37458. {
  37459. name: "Macro+",
  37460. height: math.unit(2700, "feet")
  37461. },
  37462. {
  37463. name: "Megamacro",
  37464. height: math.unit(9000, "feet")
  37465. },
  37466. {
  37467. name: "City-Crushing",
  37468. height: math.unit(27000, "feet")
  37469. },
  37470. {
  37471. name: "Mountain-Mashing",
  37472. height: math.unit(90000, "feet")
  37473. },
  37474. {
  37475. name: "Earth-Eclipsing",
  37476. height: math.unit(2.7e8, "feet")
  37477. },
  37478. {
  37479. name: "Sol-Swallowing",
  37480. height: math.unit(9e10, "feet")
  37481. },
  37482. {
  37483. name: "Majoris-Munching",
  37484. height: math.unit(2.7e13, "feet")
  37485. },
  37486. ]
  37487. ))
  37488. characterMakers.push(() => makeCharacter(
  37489. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37490. {
  37491. front: {
  37492. height: math.unit(1, "inch"),
  37493. name: "Front",
  37494. image: {
  37495. source: "./media/characters/squeaks-mouse/front.svg",
  37496. extra: 352/308,
  37497. bottom: 25/377
  37498. }
  37499. },
  37500. },
  37501. [
  37502. {
  37503. name: "Micro",
  37504. height: math.unit(1, "inch"),
  37505. default: true
  37506. },
  37507. ]
  37508. ))
  37509. characterMakers.push(() => makeCharacter(
  37510. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37511. {
  37512. side: {
  37513. height: math.unit(35, "feet"),
  37514. name: "Side",
  37515. image: {
  37516. source: "./media/characters/sayko/side.svg",
  37517. extra: 1697/1021,
  37518. bottom: 82/1779
  37519. }
  37520. },
  37521. head: {
  37522. height: math.unit(16, "feet"),
  37523. name: "Head",
  37524. image: {
  37525. source: "./media/characters/sayko/head.svg"
  37526. }
  37527. },
  37528. forepaw: {
  37529. height: math.unit(7.85, "feet"),
  37530. name: "Forepaw",
  37531. image: {
  37532. source: "./media/characters/sayko/forepaw.svg"
  37533. }
  37534. },
  37535. hindpaw: {
  37536. height: math.unit(8.8, "feet"),
  37537. name: "Hindpaw",
  37538. image: {
  37539. source: "./media/characters/sayko/hindpaw.svg"
  37540. }
  37541. },
  37542. },
  37543. [
  37544. {
  37545. name: "Normal",
  37546. height: math.unit(35, "feet"),
  37547. default: true
  37548. },
  37549. {
  37550. name: "Colossus",
  37551. height: math.unit(100, "meters")
  37552. },
  37553. {
  37554. name: "\"Small\" Deity",
  37555. height: math.unit(1, "km")
  37556. },
  37557. {
  37558. name: "\"Large\" Deity",
  37559. height: math.unit(15, "km")
  37560. },
  37561. ]
  37562. ))
  37563. characterMakers.push(() => makeCharacter(
  37564. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37565. {
  37566. front: {
  37567. height: math.unit(6, "feet"),
  37568. weight: math.unit(250, "lb"),
  37569. name: "Front",
  37570. image: {
  37571. source: "./media/characters/mukiro/front.svg",
  37572. extra: 1368/1310,
  37573. bottom: 34/1402
  37574. }
  37575. },
  37576. },
  37577. [
  37578. {
  37579. name: "Normal",
  37580. height: math.unit(6, "feet"),
  37581. default: true
  37582. },
  37583. ]
  37584. ))
  37585. characterMakers.push(() => makeCharacter(
  37586. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37587. {
  37588. front: {
  37589. height: math.unit(12 + 4/12, "feet"),
  37590. name: "Front",
  37591. image: {
  37592. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37593. extra: 1346/1311,
  37594. bottom: 65/1411
  37595. }
  37596. },
  37597. },
  37598. [
  37599. {
  37600. name: "Base",
  37601. height: math.unit(12 + 4/12, "feet"),
  37602. default: true
  37603. },
  37604. {
  37605. name: "Macro",
  37606. height: math.unit(150, "feet")
  37607. },
  37608. {
  37609. name: "Mega",
  37610. height: math.unit(2, "miles")
  37611. },
  37612. {
  37613. name: "Demi God",
  37614. height: math.unit(4, "AU")
  37615. },
  37616. {
  37617. name: "God Size",
  37618. height: math.unit(1, "universe")
  37619. },
  37620. ]
  37621. ))
  37622. characterMakers.push(() => makeCharacter(
  37623. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37624. {
  37625. front: {
  37626. height: math.unit(3 + 3/12, "feet"),
  37627. weight: math.unit(88, "lb"),
  37628. name: "Front",
  37629. image: {
  37630. source: "./media/characters/trey/front.svg",
  37631. extra: 1815/1509,
  37632. bottom: 60/1875
  37633. }
  37634. },
  37635. },
  37636. [
  37637. {
  37638. name: "Normal",
  37639. height: math.unit(3 + 3/12, "feet"),
  37640. default: true
  37641. },
  37642. ]
  37643. ))
  37644. characterMakers.push(() => makeCharacter(
  37645. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37646. {
  37647. front: {
  37648. height: math.unit(4, "meters"),
  37649. name: "Front",
  37650. image: {
  37651. source: "./media/characters/adelonda/front.svg",
  37652. extra: 1077/982,
  37653. bottom: 39/1116
  37654. }
  37655. },
  37656. back: {
  37657. height: math.unit(4, "meters"),
  37658. name: "Back",
  37659. image: {
  37660. source: "./media/characters/adelonda/back.svg",
  37661. extra: 1105/1003,
  37662. bottom: 25/1130
  37663. }
  37664. },
  37665. },
  37666. [
  37667. {
  37668. name: "Normal",
  37669. height: math.unit(4, "meters"),
  37670. default: true
  37671. },
  37672. ]
  37673. ))
  37674. characterMakers.push(() => makeCharacter(
  37675. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37676. {
  37677. front: {
  37678. height: math.unit(8 + 4/12, "feet"),
  37679. weight: math.unit(670, "lb"),
  37680. name: "Front",
  37681. image: {
  37682. source: "./media/characters/acadiel/front.svg",
  37683. extra: 1901/1595,
  37684. bottom: 142/2043
  37685. }
  37686. },
  37687. },
  37688. [
  37689. {
  37690. name: "Normal",
  37691. height: math.unit(8 + 4/12, "feet"),
  37692. default: true
  37693. },
  37694. {
  37695. name: "Macro",
  37696. height: math.unit(200, "feet")
  37697. },
  37698. ]
  37699. ))
  37700. characterMakers.push(() => makeCharacter(
  37701. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37702. {
  37703. front: {
  37704. height: math.unit(6 + 2/12, "feet"),
  37705. weight: math.unit(185, "lb"),
  37706. name: "Front",
  37707. image: {
  37708. source: "./media/characters/kayne-ein/front.svg",
  37709. extra: 1780/1560,
  37710. bottom: 81/1861
  37711. }
  37712. },
  37713. },
  37714. [
  37715. {
  37716. name: "Normal",
  37717. height: math.unit(6 + 2/12, "feet"),
  37718. default: true
  37719. },
  37720. {
  37721. name: "Transformation Stage",
  37722. height: math.unit(15, "feet")
  37723. },
  37724. {
  37725. name: "Macro",
  37726. height: math.unit(150, "feet")
  37727. },
  37728. {
  37729. name: "Earth's Shadow",
  37730. height: math.unit(6200, "miles")
  37731. },
  37732. {
  37733. name: "Universal Demon",
  37734. height: math.unit(28e9, "parsecs")
  37735. },
  37736. {
  37737. name: "Multiverse God",
  37738. height: math.unit(3, "multiverses")
  37739. },
  37740. ]
  37741. ))
  37742. characterMakers.push(() => makeCharacter(
  37743. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37744. {
  37745. front: {
  37746. height: math.unit(5 + 5/12, "feet"),
  37747. name: "Front",
  37748. image: {
  37749. source: "./media/characters/fawn/front.svg",
  37750. extra: 1873/1731,
  37751. bottom: 95/1968
  37752. }
  37753. },
  37754. back: {
  37755. height: math.unit(5 + 5/12, "feet"),
  37756. name: "Back",
  37757. image: {
  37758. source: "./media/characters/fawn/back.svg",
  37759. extra: 1813/1700,
  37760. bottom: 14/1827
  37761. }
  37762. },
  37763. hoof: {
  37764. height: math.unit(1.45, "feet"),
  37765. name: "Hoof",
  37766. image: {
  37767. source: "./media/characters/fawn/hoof.svg"
  37768. }
  37769. },
  37770. },
  37771. [
  37772. {
  37773. name: "Normal",
  37774. height: math.unit(5 + 5/12, "feet"),
  37775. default: true
  37776. },
  37777. ]
  37778. ))
  37779. characterMakers.push(() => makeCharacter(
  37780. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37781. {
  37782. front: {
  37783. height: math.unit(2 + 5/12, "feet"),
  37784. name: "Front",
  37785. image: {
  37786. source: "./media/characters/orion/front.svg",
  37787. extra: 1366/1304,
  37788. bottom: 43/1409
  37789. }
  37790. },
  37791. paw: {
  37792. height: math.unit(0.52, "feet"),
  37793. name: "Paw",
  37794. image: {
  37795. source: "./media/characters/orion/paw.svg"
  37796. }
  37797. },
  37798. },
  37799. [
  37800. {
  37801. name: "Normal",
  37802. height: math.unit(2 + 5/12, "feet"),
  37803. default: true
  37804. },
  37805. ]
  37806. ))
  37807. characterMakers.push(() => makeCharacter(
  37808. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37809. {
  37810. front: {
  37811. height: math.unit(5 + 10/12, "feet"),
  37812. name: "Front",
  37813. image: {
  37814. source: "./media/characters/vera/front.svg",
  37815. extra: 1680/1575,
  37816. bottom: 49/1729
  37817. }
  37818. },
  37819. back: {
  37820. height: math.unit(5 + 10/12, "feet"),
  37821. name: "Back",
  37822. image: {
  37823. source: "./media/characters/vera/back.svg",
  37824. extra: 1700/1588,
  37825. bottom: 18/1718
  37826. }
  37827. },
  37828. arcanine: {
  37829. height: math.unit(6 + 8/12, "feet"),
  37830. name: "Arcanine",
  37831. image: {
  37832. source: "./media/characters/vera/arcanine.svg",
  37833. extra: 1590/1511,
  37834. bottom: 71/1661
  37835. }
  37836. },
  37837. maw: {
  37838. height: math.unit(0.82, "feet"),
  37839. name: "Maw",
  37840. image: {
  37841. source: "./media/characters/vera/maw.svg"
  37842. }
  37843. },
  37844. mawArcanine: {
  37845. height: math.unit(0.97, "feet"),
  37846. name: "Maw (Arcanine)",
  37847. image: {
  37848. source: "./media/characters/vera/maw-arcanine.svg"
  37849. }
  37850. },
  37851. paw: {
  37852. height: math.unit(0.75, "feet"),
  37853. name: "Paw",
  37854. image: {
  37855. source: "./media/characters/vera/paw.svg"
  37856. }
  37857. },
  37858. pawprint: {
  37859. height: math.unit(0.52, "feet"),
  37860. name: "Pawprint",
  37861. image: {
  37862. source: "./media/characters/vera/pawprint.svg"
  37863. }
  37864. },
  37865. },
  37866. [
  37867. {
  37868. name: "Normal",
  37869. height: math.unit(5 + 10/12, "feet"),
  37870. default: true
  37871. },
  37872. {
  37873. name: "Macro",
  37874. height: math.unit(75, "feet")
  37875. },
  37876. ]
  37877. ))
  37878. characterMakers.push(() => makeCharacter(
  37879. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37880. {
  37881. front: {
  37882. height: math.unit(4, "feet"),
  37883. weight: math.unit(40, "lb"),
  37884. name: "Front",
  37885. image: {
  37886. source: "./media/characters/orvan-rabbit/front.svg",
  37887. extra: 1896/1642,
  37888. bottom: 29/1925
  37889. }
  37890. },
  37891. },
  37892. [
  37893. {
  37894. name: "Normal",
  37895. height: math.unit(4, "feet"),
  37896. default: true
  37897. },
  37898. ]
  37899. ))
  37900. characterMakers.push(() => makeCharacter(
  37901. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37902. {
  37903. front: {
  37904. height: math.unit(6, "feet"),
  37905. weight: math.unit(168, "lb"),
  37906. name: "Front",
  37907. image: {
  37908. source: "./media/characters/lisa/front.svg",
  37909. extra: 2065/1867,
  37910. bottom: 46/2111
  37911. }
  37912. },
  37913. back: {
  37914. height: math.unit(6, "feet"),
  37915. weight: math.unit(168, "lb"),
  37916. name: "Back",
  37917. image: {
  37918. source: "./media/characters/lisa/back.svg",
  37919. extra: 1982/1838,
  37920. bottom: 29/2011
  37921. }
  37922. },
  37923. maw: {
  37924. height: math.unit(0.81, "feet"),
  37925. name: "Maw",
  37926. image: {
  37927. source: "./media/characters/lisa/maw.svg"
  37928. }
  37929. },
  37930. paw: {
  37931. height: math.unit(0.9, "feet"),
  37932. name: "Paw",
  37933. image: {
  37934. source: "./media/characters/lisa/paw.svg"
  37935. }
  37936. },
  37937. caribousune: {
  37938. height: math.unit(7 + 2/12, "feet"),
  37939. weight: math.unit(268, "lb"),
  37940. name: "Caribousune",
  37941. image: {
  37942. source: "./media/characters/lisa/caribousune.svg",
  37943. extra: 1843/1633,
  37944. bottom: 29/1872
  37945. }
  37946. },
  37947. frontCaribousune: {
  37948. height: math.unit(7 + 2/12, "feet"),
  37949. weight: math.unit(268, "lb"),
  37950. name: "Front (Caribousune)",
  37951. image: {
  37952. source: "./media/characters/lisa/front-caribousune.svg",
  37953. extra: 1818/1638,
  37954. bottom: 52/1870
  37955. }
  37956. },
  37957. sideCaribousune: {
  37958. height: math.unit(7 + 2/12, "feet"),
  37959. weight: math.unit(268, "lb"),
  37960. name: "Side (Caribousune)",
  37961. image: {
  37962. source: "./media/characters/lisa/side-caribousune.svg",
  37963. extra: 1851/1635,
  37964. bottom: 16/1867
  37965. }
  37966. },
  37967. backCaribousune: {
  37968. height: math.unit(7 + 2/12, "feet"),
  37969. weight: math.unit(268, "lb"),
  37970. name: "Back (Caribousune)",
  37971. image: {
  37972. source: "./media/characters/lisa/back-caribousune.svg",
  37973. extra: 1801/1604,
  37974. bottom: 44/1845
  37975. }
  37976. },
  37977. caribou: {
  37978. height: math.unit(7 + 2/12, "feet"),
  37979. weight: math.unit(268, "lb"),
  37980. name: "Caribou",
  37981. image: {
  37982. source: "./media/characters/lisa/caribou.svg",
  37983. extra: 1843/1633,
  37984. bottom: 29/1872
  37985. }
  37986. },
  37987. frontCaribou: {
  37988. height: math.unit(7 + 2/12, "feet"),
  37989. weight: math.unit(268, "lb"),
  37990. name: "Front (Caribou)",
  37991. image: {
  37992. source: "./media/characters/lisa/front-caribou.svg",
  37993. extra: 1818/1638,
  37994. bottom: 52/1870
  37995. }
  37996. },
  37997. sideCaribou: {
  37998. height: math.unit(7 + 2/12, "feet"),
  37999. weight: math.unit(268, "lb"),
  38000. name: "Side (Caribou)",
  38001. image: {
  38002. source: "./media/characters/lisa/side-caribou.svg",
  38003. extra: 1851/1635,
  38004. bottom: 16/1867
  38005. }
  38006. },
  38007. backCaribou: {
  38008. height: math.unit(7 + 2/12, "feet"),
  38009. weight: math.unit(268, "lb"),
  38010. name: "Back (Caribou)",
  38011. image: {
  38012. source: "./media/characters/lisa/back-caribou.svg",
  38013. extra: 1801/1604,
  38014. bottom: 44/1845
  38015. }
  38016. },
  38017. mawCaribou: {
  38018. height: math.unit(1.45, "feet"),
  38019. name: "Maw (Caribou)",
  38020. image: {
  38021. source: "./media/characters/lisa/maw-caribou.svg"
  38022. }
  38023. },
  38024. mawCaribousune: {
  38025. height: math.unit(1.45, "feet"),
  38026. name: "Maw (Caribousune)",
  38027. image: {
  38028. source: "./media/characters/lisa/maw-caribousune.svg"
  38029. }
  38030. },
  38031. pawCaribousune: {
  38032. height: math.unit(1.61, "feet"),
  38033. name: "Paw (Caribou)",
  38034. image: {
  38035. source: "./media/characters/lisa/paw-caribousune.svg"
  38036. }
  38037. },
  38038. },
  38039. [
  38040. {
  38041. name: "Normal",
  38042. height: math.unit(6, "feet")
  38043. },
  38044. {
  38045. name: "God Size",
  38046. height: math.unit(72, "feet"),
  38047. default: true
  38048. },
  38049. {
  38050. name: "Towering",
  38051. height: math.unit(288, "feet")
  38052. },
  38053. {
  38054. name: "City Size",
  38055. height: math.unit(48384, "feet")
  38056. },
  38057. {
  38058. name: "Continental",
  38059. height: math.unit(4200, "miles")
  38060. },
  38061. {
  38062. name: "Planet Eater",
  38063. height: math.unit(42, "earths")
  38064. },
  38065. {
  38066. name: "Star Swallower",
  38067. height: math.unit(42, "solarradii")
  38068. },
  38069. {
  38070. name: "System Swallower",
  38071. height: math.unit(84000, "AU")
  38072. },
  38073. {
  38074. name: "Galaxy Gobbler",
  38075. height: math.unit(42, "galaxies")
  38076. },
  38077. {
  38078. name: "Universe Devourer",
  38079. height: math.unit(42, "universes")
  38080. },
  38081. {
  38082. name: "Multiverse Muncher",
  38083. height: math.unit(42, "multiverses")
  38084. },
  38085. ]
  38086. ))
  38087. characterMakers.push(() => makeCharacter(
  38088. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38089. {
  38090. front: {
  38091. height: math.unit(36, "feet"),
  38092. name: "Front",
  38093. image: {
  38094. source: "./media/characters/shadow-rat/front.svg",
  38095. extra: 1845/1758,
  38096. bottom: 83/1928
  38097. }
  38098. },
  38099. },
  38100. [
  38101. {
  38102. name: "Macro",
  38103. height: math.unit(36, "feet"),
  38104. default: true
  38105. },
  38106. ]
  38107. ))
  38108. characterMakers.push(() => makeCharacter(
  38109. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38110. {
  38111. side: {
  38112. height: math.unit(8, "feet"),
  38113. weight: math.unit(2630, "lb"),
  38114. name: "Side",
  38115. image: {
  38116. source: "./media/characters/torallia/side.svg",
  38117. extra: 2164/2021,
  38118. bottom: 371/2535
  38119. }
  38120. },
  38121. },
  38122. [
  38123. {
  38124. name: "Mortal Interaction",
  38125. height: math.unit(8, "feet")
  38126. },
  38127. {
  38128. name: "Natural",
  38129. height: math.unit(24, "feet"),
  38130. default: true
  38131. },
  38132. {
  38133. name: "Giant",
  38134. height: math.unit(80, "feet")
  38135. },
  38136. {
  38137. name: "Kaiju",
  38138. height: math.unit(240, "feet")
  38139. },
  38140. {
  38141. name: "Macro",
  38142. height: math.unit(800, "feet")
  38143. },
  38144. {
  38145. name: "Macro+",
  38146. height: math.unit(2400, "feet")
  38147. },
  38148. {
  38149. name: "Macro++",
  38150. height: math.unit(8000, "feet")
  38151. },
  38152. {
  38153. name: "City-Crushing",
  38154. height: math.unit(24000, "feet")
  38155. },
  38156. {
  38157. name: "Mountain-Mashing",
  38158. height: math.unit(80000, "feet")
  38159. },
  38160. {
  38161. name: "District Demolisher",
  38162. height: math.unit(240000, "feet")
  38163. },
  38164. {
  38165. name: "Tri-County Terror",
  38166. height: math.unit(800000, "feet")
  38167. },
  38168. {
  38169. name: "State Smasher",
  38170. height: math.unit(2.4e6, "feet")
  38171. },
  38172. {
  38173. name: "Nation Nemesis",
  38174. height: math.unit(8e6, "feet")
  38175. },
  38176. {
  38177. name: "Continent Cracker",
  38178. height: math.unit(2.4e7, "feet")
  38179. },
  38180. {
  38181. name: "Planet-Pillaging",
  38182. height: math.unit(8e7, "feet")
  38183. },
  38184. {
  38185. name: "Earth-Eclipsing",
  38186. height: math.unit(2.4e8, "feet")
  38187. },
  38188. {
  38189. name: "Jovian-Jostling",
  38190. height: math.unit(8e8, "feet")
  38191. },
  38192. {
  38193. name: "Gas Giant Gulper",
  38194. height: math.unit(2.4e9, "feet")
  38195. },
  38196. {
  38197. name: "Astral Annihilator",
  38198. height: math.unit(8e9, "feet")
  38199. },
  38200. {
  38201. name: "Celestial Conqueror",
  38202. height: math.unit(2.4e10, "feet")
  38203. },
  38204. {
  38205. name: "Sol-Swallowing",
  38206. height: math.unit(8e10, "feet")
  38207. },
  38208. {
  38209. name: "Hunter of the Heavens",
  38210. height: math.unit(2.4e13, "feet")
  38211. },
  38212. ]
  38213. ))
  38214. characterMakers.push(() => makeCharacter(
  38215. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38216. {
  38217. front: {
  38218. height: math.unit(6 + 8/12, "feet"),
  38219. name: "Front",
  38220. image: {
  38221. source: "./media/characters/rebecca-pawlson/front.svg",
  38222. extra: 1737/1596,
  38223. bottom: 107/1844
  38224. }
  38225. },
  38226. back: {
  38227. height: math.unit(6 + 8/12, "feet"),
  38228. name: "Back",
  38229. image: {
  38230. source: "./media/characters/rebecca-pawlson/back.svg",
  38231. extra: 1702/1523,
  38232. bottom: 86/1788
  38233. }
  38234. },
  38235. },
  38236. [
  38237. {
  38238. name: "Normal",
  38239. height: math.unit(6 + 8/12, "feet")
  38240. },
  38241. {
  38242. name: "Mini Macro",
  38243. height: math.unit(10, "feet"),
  38244. default: true
  38245. },
  38246. {
  38247. name: "Macro",
  38248. height: math.unit(100, "feet")
  38249. },
  38250. {
  38251. name: "Mega Macro",
  38252. height: math.unit(2500, "feet")
  38253. },
  38254. {
  38255. name: "Giga Macro",
  38256. height: math.unit(50, "miles")
  38257. },
  38258. ]
  38259. ))
  38260. characterMakers.push(() => makeCharacter(
  38261. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38262. {
  38263. front: {
  38264. height: math.unit(7 + 6/12, "feet"),
  38265. weight: math.unit(600, "lb"),
  38266. name: "Front",
  38267. image: {
  38268. source: "./media/characters/moxie-nova/front.svg",
  38269. extra: 1734/1652,
  38270. bottom: 41/1775
  38271. }
  38272. },
  38273. },
  38274. [
  38275. {
  38276. name: "Normal",
  38277. height: math.unit(7 + 6/12, "feet"),
  38278. default: true
  38279. },
  38280. ]
  38281. ))
  38282. characterMakers.push(() => makeCharacter(
  38283. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38284. {
  38285. goat: {
  38286. height: math.unit(4, "feet"),
  38287. weight: math.unit(180, "lb"),
  38288. name: "Goat",
  38289. image: {
  38290. source: "./media/characters/tiffany/goat.svg",
  38291. extra: 1845/1595,
  38292. bottom: 106/1951
  38293. }
  38294. },
  38295. front: {
  38296. height: math.unit(5, "feet"),
  38297. weight: math.unit(150, "lb"),
  38298. name: "Foxcoon",
  38299. image: {
  38300. source: "./media/characters/tiffany/foxcoon.svg",
  38301. extra: 1941/1845,
  38302. bottom: 58/1999
  38303. }
  38304. },
  38305. },
  38306. [
  38307. {
  38308. name: "Normal",
  38309. height: math.unit(5, "feet"),
  38310. default: true
  38311. },
  38312. ]
  38313. ))
  38314. characterMakers.push(() => makeCharacter(
  38315. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38316. {
  38317. front: {
  38318. height: math.unit(8, "feet"),
  38319. weight: math.unit(300, "lb"),
  38320. name: "Front",
  38321. image: {
  38322. source: "./media/characters/raxinath/front.svg",
  38323. extra: 1407/1309,
  38324. bottom: 39/1446
  38325. }
  38326. },
  38327. back: {
  38328. height: math.unit(8, "feet"),
  38329. weight: math.unit(300, "lb"),
  38330. name: "Back",
  38331. image: {
  38332. source: "./media/characters/raxinath/back.svg",
  38333. extra: 1405/1315,
  38334. bottom: 9/1414
  38335. }
  38336. },
  38337. },
  38338. [
  38339. {
  38340. name: "Speck",
  38341. height: math.unit(0.5, "nm")
  38342. },
  38343. {
  38344. name: "Micro",
  38345. height: math.unit(3, "inches")
  38346. },
  38347. {
  38348. name: "Kobold",
  38349. height: math.unit(3, "feet")
  38350. },
  38351. {
  38352. name: "Normal",
  38353. height: math.unit(8, "feet"),
  38354. default: true
  38355. },
  38356. {
  38357. name: "Giant",
  38358. height: math.unit(50, "feet")
  38359. },
  38360. {
  38361. name: "Macro",
  38362. height: math.unit(1000, "feet")
  38363. },
  38364. {
  38365. name: "Megamacro",
  38366. height: math.unit(1, "mile")
  38367. },
  38368. ]
  38369. ))
  38370. characterMakers.push(() => makeCharacter(
  38371. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38372. {
  38373. front: {
  38374. height: math.unit(10, "feet"),
  38375. weight: math.unit(1442, "lb"),
  38376. name: "Front",
  38377. image: {
  38378. source: "./media/characters/mal-dragon/front.svg",
  38379. extra: 1515/1444,
  38380. bottom: 113/1628
  38381. }
  38382. },
  38383. back: {
  38384. height: math.unit(10, "feet"),
  38385. weight: math.unit(1442, "lb"),
  38386. name: "Back",
  38387. image: {
  38388. source: "./media/characters/mal-dragon/back.svg",
  38389. extra: 1527/1434,
  38390. bottom: 25/1552
  38391. }
  38392. },
  38393. },
  38394. [
  38395. {
  38396. name: "Mortal Interaction",
  38397. height: math.unit(10, "feet"),
  38398. default: true
  38399. },
  38400. {
  38401. name: "Large",
  38402. height: math.unit(30, "feet")
  38403. },
  38404. {
  38405. name: "Kaiju",
  38406. height: math.unit(300, "feet")
  38407. },
  38408. {
  38409. name: "Megamacro",
  38410. height: math.unit(10000, "feet")
  38411. },
  38412. {
  38413. name: "Continent Cracker",
  38414. height: math.unit(30000000, "feet")
  38415. },
  38416. {
  38417. name: "Sol-Swallowing",
  38418. height: math.unit(1e11, "feet")
  38419. },
  38420. {
  38421. name: "Light Universal",
  38422. height: math.unit(5, "universes")
  38423. },
  38424. {
  38425. name: "Universe Atoms",
  38426. height: math.unit(1.829e9, "universes")
  38427. },
  38428. {
  38429. name: "Light Multiversal",
  38430. height: math.unit(5, "multiverses")
  38431. },
  38432. {
  38433. name: "Multiverse Atoms",
  38434. height: math.unit(1.829e9, "multiverses")
  38435. },
  38436. {
  38437. name: "Fabric of Time",
  38438. height: math.unit(1e262, "multiverses")
  38439. },
  38440. ]
  38441. ))
  38442. characterMakers.push(() => makeCharacter(
  38443. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38444. {
  38445. front: {
  38446. height: math.unit(9, "feet"),
  38447. weight: math.unit(1050, "lb"),
  38448. name: "Front",
  38449. image: {
  38450. source: "./media/characters/tabitha/front.svg",
  38451. extra: 2083/1994,
  38452. bottom: 68/2151
  38453. }
  38454. },
  38455. },
  38456. [
  38457. {
  38458. name: "Baseline",
  38459. height: math.unit(9, "feet"),
  38460. default: true
  38461. },
  38462. {
  38463. name: "Giant",
  38464. height: math.unit(90, "feet")
  38465. },
  38466. {
  38467. name: "Macro",
  38468. height: math.unit(900, "feet")
  38469. },
  38470. {
  38471. name: "Megamacro",
  38472. height: math.unit(9000, "feet")
  38473. },
  38474. {
  38475. name: "City-Crushing",
  38476. height: math.unit(27000, "feet")
  38477. },
  38478. {
  38479. name: "Mountain-Mashing",
  38480. height: math.unit(90000, "feet")
  38481. },
  38482. {
  38483. name: "Nation Nemesis",
  38484. height: math.unit(9e6, "feet")
  38485. },
  38486. {
  38487. name: "Continent Cracker",
  38488. height: math.unit(27e6, "feet")
  38489. },
  38490. {
  38491. name: "Earth-Eclipsing",
  38492. height: math.unit(2.7e8, "feet")
  38493. },
  38494. {
  38495. name: "Gas Giant Gulper",
  38496. height: math.unit(2.7e9, "feet")
  38497. },
  38498. {
  38499. name: "Sol-Swallowing",
  38500. height: math.unit(9e10, "feet")
  38501. },
  38502. {
  38503. name: "Galaxy Gulper",
  38504. height: math.unit(9, "galaxies")
  38505. },
  38506. {
  38507. name: "Cosmos Churner",
  38508. height: math.unit(9, "universes")
  38509. },
  38510. ]
  38511. ))
  38512. characterMakers.push(() => makeCharacter(
  38513. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38514. {
  38515. front: {
  38516. height: math.unit(160, "cm"),
  38517. weight: math.unit(55, "kg"),
  38518. name: "Front",
  38519. image: {
  38520. source: "./media/characters/tow/front.svg",
  38521. extra: 1751/1722,
  38522. bottom: 74/1825
  38523. }
  38524. },
  38525. },
  38526. [
  38527. {
  38528. name: "Norm",
  38529. height: math.unit(160, "cm")
  38530. },
  38531. {
  38532. name: "Casual",
  38533. height: math.unit(3200, "m"),
  38534. default: true
  38535. },
  38536. {
  38537. name: "Show-Off",
  38538. height: math.unit(160, "km")
  38539. },
  38540. ]
  38541. ))
  38542. characterMakers.push(() => makeCharacter(
  38543. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38544. {
  38545. front: {
  38546. height: math.unit(7 + 11/12, "feet"),
  38547. weight: math.unit(342.8, "lb"),
  38548. name: "Front",
  38549. image: {
  38550. source: "./media/characters/vivian-orca-dragon/front.svg",
  38551. extra: 1890/1865,
  38552. bottom: 28/1918
  38553. }
  38554. },
  38555. },
  38556. [
  38557. {
  38558. name: "Micro",
  38559. height: math.unit(5, "inches")
  38560. },
  38561. {
  38562. name: "Normal",
  38563. height: math.unit(7 + 11/12, "feet"),
  38564. default: true
  38565. },
  38566. {
  38567. name: "Macro",
  38568. height: math.unit(395 + 7/12, "feet")
  38569. },
  38570. ]
  38571. ))
  38572. characterMakers.push(() => makeCharacter(
  38573. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38574. {
  38575. side: {
  38576. height: math.unit(10, "feet"),
  38577. weight: math.unit(1442, "lb"),
  38578. name: "Side",
  38579. image: {
  38580. source: "./media/characters/lotherakon/side.svg",
  38581. extra: 1604/1497,
  38582. bottom: 89/1693
  38583. }
  38584. },
  38585. },
  38586. [
  38587. {
  38588. name: "Mortal Interaction",
  38589. height: math.unit(10, "feet")
  38590. },
  38591. {
  38592. name: "Large",
  38593. height: math.unit(30, "feet"),
  38594. default: true
  38595. },
  38596. {
  38597. name: "Giant",
  38598. height: math.unit(100, "feet")
  38599. },
  38600. {
  38601. name: "Kaiju",
  38602. height: math.unit(300, "feet")
  38603. },
  38604. {
  38605. name: "Macro",
  38606. height: math.unit(1000, "feet")
  38607. },
  38608. {
  38609. name: "Macro+",
  38610. height: math.unit(3000, "feet")
  38611. },
  38612. {
  38613. name: "Megamacro",
  38614. height: math.unit(10000, "feet")
  38615. },
  38616. {
  38617. name: "City-Crushing",
  38618. height: math.unit(30000, "feet")
  38619. },
  38620. {
  38621. name: "Continent Cracker",
  38622. height: math.unit(30e6, "feet")
  38623. },
  38624. {
  38625. name: "Earth Eclipsing",
  38626. height: math.unit(3e8, "feet")
  38627. },
  38628. {
  38629. name: "Gas Giant Gulper",
  38630. height: math.unit(3e9, "feet")
  38631. },
  38632. {
  38633. name: "Sol-Swallowing",
  38634. height: math.unit(1e11, "feet")
  38635. },
  38636. {
  38637. name: "System Swallower",
  38638. height: math.unit(3e14, "feet")
  38639. },
  38640. {
  38641. name: "Galaxy Gulper",
  38642. height: math.unit(10, "galaxies")
  38643. },
  38644. {
  38645. name: "Light Universal",
  38646. height: math.unit(5, "universes")
  38647. },
  38648. {
  38649. name: "Universe Palm",
  38650. height: math.unit(20, "universes")
  38651. },
  38652. {
  38653. name: "Light Multiversal",
  38654. height: math.unit(5, "multiverses")
  38655. },
  38656. {
  38657. name: "Multiverse Palm",
  38658. height: math.unit(20, "multiverses")
  38659. },
  38660. {
  38661. name: "Inferno Incarnate",
  38662. height: math.unit(1e7, "multiverses")
  38663. },
  38664. ]
  38665. ))
  38666. characterMakers.push(() => makeCharacter(
  38667. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38668. {
  38669. front: {
  38670. height: math.unit(8, "feet"),
  38671. weight: math.unit(1200, "lb"),
  38672. name: "Front",
  38673. image: {
  38674. source: "./media/characters/malithee/front.svg",
  38675. extra: 1675/1640,
  38676. bottom: 162/1837
  38677. }
  38678. },
  38679. },
  38680. [
  38681. {
  38682. name: "Mortal Interaction",
  38683. height: math.unit(8, "feet"),
  38684. default: true
  38685. },
  38686. {
  38687. name: "Large",
  38688. height: math.unit(24, "feet")
  38689. },
  38690. {
  38691. name: "Kaiju",
  38692. height: math.unit(240, "feet")
  38693. },
  38694. {
  38695. name: "Megamacro",
  38696. height: math.unit(8000, "feet")
  38697. },
  38698. {
  38699. name: "Continent Cracker",
  38700. height: math.unit(24e6, "feet")
  38701. },
  38702. {
  38703. name: "Earth-Eclipsing",
  38704. height: math.unit(2.4e8, "feet")
  38705. },
  38706. {
  38707. name: "Sol-Swallowing",
  38708. height: math.unit(8e10, "feet")
  38709. },
  38710. {
  38711. name: "Galaxy Gulper",
  38712. height: math.unit(8, "galaxies")
  38713. },
  38714. {
  38715. name: "Light Universal",
  38716. height: math.unit(4, "universes")
  38717. },
  38718. {
  38719. name: "Universe Atoms",
  38720. height: math.unit(1.829e9, "universes")
  38721. },
  38722. {
  38723. name: "Light Multiversal",
  38724. height: math.unit(4, "multiverses")
  38725. },
  38726. {
  38727. name: "Multiverse Atoms",
  38728. height: math.unit(1.829e9, "multiverses")
  38729. },
  38730. {
  38731. name: "Nigh-Omnipresence",
  38732. height: math.unit(8e261, "multiverses")
  38733. },
  38734. ]
  38735. ))
  38736. characterMakers.push(() => makeCharacter(
  38737. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38738. {
  38739. front: {
  38740. height: math.unit(10, "feet"),
  38741. weight: math.unit(1500, "lb"),
  38742. name: "Front",
  38743. image: {
  38744. source: "./media/characters/miles-thestia/front.svg",
  38745. extra: 1812/1727,
  38746. bottom: 86/1898
  38747. }
  38748. },
  38749. back: {
  38750. height: math.unit(10, "feet"),
  38751. weight: math.unit(1500, "lb"),
  38752. name: "Back",
  38753. image: {
  38754. source: "./media/characters/miles-thestia/back.svg",
  38755. extra: 1799/1690,
  38756. bottom: 47/1846
  38757. }
  38758. },
  38759. frontNsfw: {
  38760. height: math.unit(10, "feet"),
  38761. weight: math.unit(1500, "lb"),
  38762. name: "Front (NSFW)",
  38763. image: {
  38764. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38765. extra: 1812/1727,
  38766. bottom: 86/1898
  38767. }
  38768. },
  38769. },
  38770. [
  38771. {
  38772. name: "Mini-Macro",
  38773. height: math.unit(10, "feet"),
  38774. default: true
  38775. },
  38776. ]
  38777. ))
  38778. characterMakers.push(() => makeCharacter(
  38779. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38780. {
  38781. front: {
  38782. height: math.unit(25, "feet"),
  38783. name: "Front",
  38784. image: {
  38785. source: "./media/characters/titan-s-wulf/front.svg",
  38786. extra: 1560/1484,
  38787. bottom: 76/1636
  38788. }
  38789. },
  38790. },
  38791. [
  38792. {
  38793. name: "Smallest",
  38794. height: math.unit(25, "feet"),
  38795. default: true
  38796. },
  38797. {
  38798. name: "Normal",
  38799. height: math.unit(200, "feet")
  38800. },
  38801. {
  38802. name: "Macro",
  38803. height: math.unit(200000, "feet")
  38804. },
  38805. {
  38806. name: "Multiversal Original",
  38807. height: math.unit(10000, "multiverses")
  38808. },
  38809. ]
  38810. ))
  38811. characterMakers.push(() => makeCharacter(
  38812. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38813. {
  38814. front: {
  38815. height: math.unit(8, "feet"),
  38816. weight: math.unit(553, "lb"),
  38817. name: "Front",
  38818. image: {
  38819. source: "./media/characters/tawendeh/front.svg",
  38820. extra: 2365/2268,
  38821. bottom: 83/2448
  38822. }
  38823. },
  38824. frontClothed: {
  38825. height: math.unit(8, "feet"),
  38826. weight: math.unit(553, "lb"),
  38827. name: "Front (Clothed)",
  38828. image: {
  38829. source: "./media/characters/tawendeh/front-clothed.svg",
  38830. extra: 2365/2268,
  38831. bottom: 83/2448
  38832. }
  38833. },
  38834. back: {
  38835. height: math.unit(8, "feet"),
  38836. weight: math.unit(553, "lb"),
  38837. name: "Back",
  38838. image: {
  38839. source: "./media/characters/tawendeh/back.svg",
  38840. extra: 2397/2294,
  38841. bottom: 42/2439
  38842. }
  38843. },
  38844. },
  38845. [
  38846. {
  38847. name: "Mortal Interaction",
  38848. height: math.unit(8, "feet"),
  38849. default: true
  38850. },
  38851. {
  38852. name: "Giant",
  38853. height: math.unit(80, "feet")
  38854. },
  38855. {
  38856. name: "Macro",
  38857. height: math.unit(800, "feet")
  38858. },
  38859. {
  38860. name: "Megamacro",
  38861. height: math.unit(8000, "feet")
  38862. },
  38863. {
  38864. name: "City-Crushing",
  38865. height: math.unit(24000, "feet")
  38866. },
  38867. {
  38868. name: "Mountain-Mashing",
  38869. height: math.unit(80000, "feet")
  38870. },
  38871. {
  38872. name: "Nation Nemesis",
  38873. height: math.unit(8e6, "feet")
  38874. },
  38875. {
  38876. name: "Continent Cracker",
  38877. height: math.unit(24e6, "feet")
  38878. },
  38879. {
  38880. name: "Earth-Eclipsing",
  38881. height: math.unit(2.4e8, "feet")
  38882. },
  38883. {
  38884. name: "Gas Giant Gulper",
  38885. height: math.unit(2.4e9, "feet")
  38886. },
  38887. {
  38888. name: "Sol-Swallowing",
  38889. height: math.unit(8e10, "feet")
  38890. },
  38891. {
  38892. name: "Galaxy Gulper",
  38893. height: math.unit(8, "galaxies")
  38894. },
  38895. {
  38896. name: "Cosmos Churner",
  38897. height: math.unit(8, "universes")
  38898. },
  38899. {
  38900. name: "Omnipotent Otter",
  38901. height: math.unit(80, "universes")
  38902. },
  38903. ]
  38904. ))
  38905. characterMakers.push(() => makeCharacter(
  38906. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38907. {
  38908. front: {
  38909. height: math.unit(2.6, "meters"),
  38910. weight: math.unit(900, "kg"),
  38911. name: "Front",
  38912. image: {
  38913. source: "./media/characters/neesha/front.svg",
  38914. extra: 1803/1653,
  38915. bottom: 128/1931
  38916. }
  38917. },
  38918. },
  38919. [
  38920. {
  38921. name: "Normal",
  38922. height: math.unit(2.6, "meters"),
  38923. default: true
  38924. },
  38925. {
  38926. name: "Macro",
  38927. height: math.unit(50, "meters")
  38928. },
  38929. ]
  38930. ))
  38931. characterMakers.push(() => makeCharacter(
  38932. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38933. {
  38934. front: {
  38935. height: math.unit(5, "feet"),
  38936. weight: math.unit(185, "lb"),
  38937. name: "Front",
  38938. image: {
  38939. source: "./media/characters/kyera/front.svg",
  38940. extra: 1875/1790,
  38941. bottom: 96/1971
  38942. }
  38943. },
  38944. },
  38945. [
  38946. {
  38947. name: "Normal",
  38948. height: math.unit(5, "feet"),
  38949. default: true
  38950. },
  38951. ]
  38952. ))
  38953. characterMakers.push(() => makeCharacter(
  38954. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38955. {
  38956. front: {
  38957. height: math.unit(7 + 6/12, "feet"),
  38958. weight: math.unit(540, "lb"),
  38959. name: "Front",
  38960. image: {
  38961. source: "./media/characters/yuko/front.svg",
  38962. extra: 1282/1222,
  38963. bottom: 101/1383
  38964. }
  38965. },
  38966. frontClothed: {
  38967. height: math.unit(7 + 6/12, "feet"),
  38968. weight: math.unit(540, "lb"),
  38969. name: "Front (Clothed)",
  38970. image: {
  38971. source: "./media/characters/yuko/front-clothed.svg",
  38972. extra: 1282/1222,
  38973. bottom: 101/1383
  38974. }
  38975. },
  38976. },
  38977. [
  38978. {
  38979. name: "Normal",
  38980. height: math.unit(7 + 6/12, "feet"),
  38981. default: true
  38982. },
  38983. {
  38984. name: "Macro",
  38985. height: math.unit(26 + 9/12, "feet")
  38986. },
  38987. {
  38988. name: "Megamacro",
  38989. height: math.unit(300, "feet")
  38990. },
  38991. {
  38992. name: "Gigamacro",
  38993. height: math.unit(5000, "feet")
  38994. },
  38995. {
  38996. name: "Planetary",
  38997. height: math.unit(10000, "miles")
  38998. },
  38999. ]
  39000. ))
  39001. characterMakers.push(() => makeCharacter(
  39002. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  39003. {
  39004. front: {
  39005. height: math.unit(8 + 2/12, "feet"),
  39006. weight: math.unit(600, "lb"),
  39007. name: "Front",
  39008. image: {
  39009. source: "./media/characters/deam-nitrel/front.svg",
  39010. extra: 1308/1234,
  39011. bottom: 125/1433
  39012. }
  39013. },
  39014. },
  39015. [
  39016. {
  39017. name: "Normal",
  39018. height: math.unit(8 + 2/12, "feet"),
  39019. default: true
  39020. },
  39021. ]
  39022. ))
  39023. characterMakers.push(() => makeCharacter(
  39024. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  39025. {
  39026. front: {
  39027. height: math.unit(6.1, "feet"),
  39028. weight: math.unit(180, "lb"),
  39029. name: "Front",
  39030. image: {
  39031. source: "./media/characters/skyress/front.svg",
  39032. extra: 1045/915,
  39033. bottom: 28/1073
  39034. }
  39035. },
  39036. maw: {
  39037. height: math.unit(1, "feet"),
  39038. name: "Maw",
  39039. image: {
  39040. source: "./media/characters/skyress/maw.svg"
  39041. }
  39042. },
  39043. },
  39044. [
  39045. {
  39046. name: "Normal",
  39047. height: math.unit(6.1, "feet"),
  39048. default: true
  39049. },
  39050. {
  39051. name: "Macro",
  39052. height: math.unit(200, "feet")
  39053. },
  39054. ]
  39055. ))
  39056. characterMakers.push(() => makeCharacter(
  39057. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39058. {
  39059. front: {
  39060. height: math.unit(4 + 2/12, "feet"),
  39061. weight: math.unit(40, "kg"),
  39062. name: "Front",
  39063. image: {
  39064. source: "./media/characters/amethyst-jones/front.svg",
  39065. extra: 1220/1150,
  39066. bottom: 101/1321
  39067. }
  39068. },
  39069. },
  39070. [
  39071. {
  39072. name: "Normal",
  39073. height: math.unit(4 + 2/12, "feet"),
  39074. default: true
  39075. },
  39076. ]
  39077. ))
  39078. characterMakers.push(() => makeCharacter(
  39079. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39080. {
  39081. front: {
  39082. height: math.unit(1.7, "m"),
  39083. weight: math.unit(135, "lb"),
  39084. name: "Front",
  39085. image: {
  39086. source: "./media/characters/jade/front.svg",
  39087. extra: 1818/1767,
  39088. bottom: 32/1850
  39089. }
  39090. },
  39091. back: {
  39092. height: math.unit(1.7, "m"),
  39093. weight: math.unit(135, "lb"),
  39094. name: "Back",
  39095. image: {
  39096. source: "./media/characters/jade/back.svg",
  39097. extra: 1869/1809,
  39098. bottom: 35/1904
  39099. }
  39100. },
  39101. hand: {
  39102. height: math.unit(0.24, "m"),
  39103. name: "Hand",
  39104. image: {
  39105. source: "./media/characters/jade/hand.svg"
  39106. }
  39107. },
  39108. foot: {
  39109. height: math.unit(0.263, "m"),
  39110. name: "Foot",
  39111. image: {
  39112. source: "./media/characters/jade/foot.svg"
  39113. }
  39114. },
  39115. dick: {
  39116. height: math.unit(0.47, "m"),
  39117. name: "Dick",
  39118. image: {
  39119. source: "./media/characters/jade/dick.svg"
  39120. }
  39121. },
  39122. },
  39123. [
  39124. {
  39125. name: "Micro",
  39126. height: math.unit(22, "cm")
  39127. },
  39128. {
  39129. name: "Normal",
  39130. height: math.unit(1.7, "m"),
  39131. default: true
  39132. },
  39133. {
  39134. name: "Macro",
  39135. height: math.unit(152, "m")
  39136. },
  39137. ]
  39138. ))
  39139. characterMakers.push(() => makeCharacter(
  39140. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39141. {
  39142. front: {
  39143. height: math.unit(100, "miles"),
  39144. weight: math.unit(20000, "tons"),
  39145. name: "Front",
  39146. image: {
  39147. source: "./media/characters/cookie/front.svg",
  39148. extra: 1125/1070,
  39149. bottom: 30/1155
  39150. }
  39151. },
  39152. },
  39153. [
  39154. {
  39155. name: "Big",
  39156. height: math.unit(50, "feet")
  39157. },
  39158. {
  39159. name: "Macro",
  39160. height: math.unit(100, "miles"),
  39161. default: true
  39162. },
  39163. {
  39164. name: "Megamacro",
  39165. height: math.unit(90000, "miles")
  39166. },
  39167. ]
  39168. ))
  39169. characterMakers.push(() => makeCharacter(
  39170. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39171. {
  39172. front: {
  39173. height: math.unit(6, "feet"),
  39174. weight: math.unit(145, "lb"),
  39175. name: "Front",
  39176. image: {
  39177. source: "./media/characters/farzian/front.svg",
  39178. extra: 1902/1693,
  39179. bottom: 108/2010
  39180. }
  39181. },
  39182. },
  39183. [
  39184. {
  39185. name: "Macro",
  39186. height: math.unit(500, "feet"),
  39187. default: true
  39188. },
  39189. ]
  39190. ))
  39191. characterMakers.push(() => makeCharacter(
  39192. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39193. {
  39194. front: {
  39195. height: math.unit(3 + 6/12, "feet"),
  39196. weight: math.unit(50, "lb"),
  39197. name: "Front",
  39198. image: {
  39199. source: "./media/characters/kimberly-tilson/front.svg",
  39200. extra: 1400/1322,
  39201. bottom: 36/1436
  39202. }
  39203. },
  39204. back: {
  39205. height: math.unit(3 + 6/12, "feet"),
  39206. weight: math.unit(50, "lb"),
  39207. name: "Back",
  39208. image: {
  39209. source: "./media/characters/kimberly-tilson/back.svg",
  39210. extra: 1370/1307,
  39211. bottom: 20/1390
  39212. }
  39213. },
  39214. },
  39215. [
  39216. {
  39217. name: "Normal",
  39218. height: math.unit(3 + 6/12, "feet"),
  39219. default: true
  39220. },
  39221. ]
  39222. ))
  39223. characterMakers.push(() => makeCharacter(
  39224. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39225. {
  39226. front: {
  39227. height: math.unit(1148, "feet"),
  39228. weight: math.unit(34057, "lb"),
  39229. name: "Front",
  39230. image: {
  39231. source: "./media/characters/harthos/front.svg",
  39232. extra: 1391/1339,
  39233. bottom: 13/1404
  39234. }
  39235. },
  39236. },
  39237. [
  39238. {
  39239. name: "Macro",
  39240. height: math.unit(1148, "feet"),
  39241. default: true
  39242. },
  39243. ]
  39244. ))
  39245. characterMakers.push(() => makeCharacter(
  39246. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39247. {
  39248. front: {
  39249. height: math.unit(15, "feet"),
  39250. name: "Front",
  39251. image: {
  39252. source: "./media/characters/hypatia/front.svg",
  39253. extra: 1653/1591,
  39254. bottom: 79/1732
  39255. }
  39256. },
  39257. },
  39258. [
  39259. {
  39260. name: "Normal",
  39261. height: math.unit(15, "feet")
  39262. },
  39263. {
  39264. name: "Small",
  39265. height: math.unit(300, "feet")
  39266. },
  39267. {
  39268. name: "Macro",
  39269. height: math.unit(2500, "feet"),
  39270. default: true
  39271. },
  39272. {
  39273. name: "Mega Macro",
  39274. height: math.unit(1500, "miles")
  39275. },
  39276. {
  39277. name: "Giga Macro",
  39278. height: math.unit(1.5e6, "miles")
  39279. },
  39280. ]
  39281. ))
  39282. characterMakers.push(() => makeCharacter(
  39283. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39284. {
  39285. front: {
  39286. height: math.unit(6, "feet"),
  39287. weight: math.unit(200, "lb"),
  39288. name: "Front",
  39289. image: {
  39290. source: "./media/characters/wulver/front.svg",
  39291. extra: 1724/1632,
  39292. bottom: 130/1854
  39293. }
  39294. },
  39295. frontNsfw: {
  39296. height: math.unit(6, "feet"),
  39297. weight: math.unit(200, "lb"),
  39298. name: "Front (NSFW)",
  39299. image: {
  39300. source: "./media/characters/wulver/front-nsfw.svg",
  39301. extra: 1724/1632,
  39302. bottom: 130/1854
  39303. }
  39304. },
  39305. },
  39306. [
  39307. {
  39308. name: "Human-Sized",
  39309. height: math.unit(6, "feet")
  39310. },
  39311. {
  39312. name: "Normal",
  39313. height: math.unit(4, "meters"),
  39314. default: true
  39315. },
  39316. {
  39317. name: "Large",
  39318. height: math.unit(6, "m")
  39319. },
  39320. ]
  39321. ))
  39322. characterMakers.push(() => makeCharacter(
  39323. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39324. {
  39325. front: {
  39326. height: math.unit(7, "feet"),
  39327. name: "Front",
  39328. image: {
  39329. source: "./media/characters/maru/front.svg",
  39330. extra: 1595/1570,
  39331. bottom: 0/1595
  39332. }
  39333. },
  39334. },
  39335. [
  39336. {
  39337. name: "Normal",
  39338. height: math.unit(7, "feet"),
  39339. default: true
  39340. },
  39341. {
  39342. name: "Macro",
  39343. height: math.unit(700, "feet")
  39344. },
  39345. {
  39346. name: "Mega Macro",
  39347. height: math.unit(25, "miles")
  39348. },
  39349. ]
  39350. ))
  39351. characterMakers.push(() => makeCharacter(
  39352. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39353. {
  39354. front: {
  39355. height: math.unit(6, "feet"),
  39356. weight: math.unit(170, "lb"),
  39357. name: "Front",
  39358. image: {
  39359. source: "./media/characters/xenon/front.svg",
  39360. extra: 1376/1305,
  39361. bottom: 56/1432
  39362. }
  39363. },
  39364. back: {
  39365. height: math.unit(6, "feet"),
  39366. weight: math.unit(170, "lb"),
  39367. name: "Back",
  39368. image: {
  39369. source: "./media/characters/xenon/back.svg",
  39370. extra: 1328/1259,
  39371. bottom: 95/1423
  39372. }
  39373. },
  39374. maw: {
  39375. height: math.unit(0.52, "feet"),
  39376. name: "Maw",
  39377. image: {
  39378. source: "./media/characters/xenon/maw.svg"
  39379. }
  39380. },
  39381. hand: {
  39382. height: math.unit(0.82, "feet"),
  39383. name: "Hand",
  39384. image: {
  39385. source: "./media/characters/xenon/hand.svg"
  39386. }
  39387. },
  39388. foot: {
  39389. height: math.unit(1.13, "feet"),
  39390. name: "Foot",
  39391. image: {
  39392. source: "./media/characters/xenon/foot.svg"
  39393. }
  39394. },
  39395. },
  39396. [
  39397. {
  39398. name: "Micro",
  39399. height: math.unit(0.8, "inches")
  39400. },
  39401. {
  39402. name: "Normal",
  39403. height: math.unit(6, "feet")
  39404. },
  39405. {
  39406. name: "Macro",
  39407. height: math.unit(50, "feet"),
  39408. default: true
  39409. },
  39410. {
  39411. name: "Macro+",
  39412. height: math.unit(250, "feet")
  39413. },
  39414. {
  39415. name: "Megamacro",
  39416. height: math.unit(1500, "feet")
  39417. },
  39418. ]
  39419. ))
  39420. characterMakers.push(() => makeCharacter(
  39421. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39422. {
  39423. front: {
  39424. height: math.unit(7 + 5/12, "feet"),
  39425. name: "Front",
  39426. image: {
  39427. source: "./media/characters/zane/front.svg",
  39428. extra: 1260/1203,
  39429. bottom: 94/1354
  39430. }
  39431. },
  39432. back: {
  39433. height: math.unit(5.05, "feet"),
  39434. name: "Back",
  39435. image: {
  39436. source: "./media/characters/zane/back.svg",
  39437. extra: 893/829,
  39438. bottom: 30/923
  39439. }
  39440. },
  39441. werewolf: {
  39442. height: math.unit(11, "feet"),
  39443. name: "Werewolf",
  39444. image: {
  39445. source: "./media/characters/zane/werewolf.svg",
  39446. extra: 1383/1323,
  39447. bottom: 89/1472
  39448. }
  39449. },
  39450. foot: {
  39451. height: math.unit(1.46, "feet"),
  39452. name: "Foot",
  39453. image: {
  39454. source: "./media/characters/zane/foot.svg"
  39455. }
  39456. },
  39457. footFront: {
  39458. height: math.unit(0.784, "feet"),
  39459. name: "Foot (Front)",
  39460. image: {
  39461. source: "./media/characters/zane/foot-front.svg"
  39462. }
  39463. },
  39464. dick: {
  39465. height: math.unit(1.95, "feet"),
  39466. name: "Dick",
  39467. image: {
  39468. source: "./media/characters/zane/dick.svg"
  39469. }
  39470. },
  39471. dickWerewolf: {
  39472. height: math.unit(3.77, "feet"),
  39473. name: "Dick (Werewolf)",
  39474. image: {
  39475. source: "./media/characters/zane/dick.svg"
  39476. }
  39477. },
  39478. },
  39479. [
  39480. {
  39481. name: "Normal",
  39482. height: math.unit(7 + 5/12, "feet"),
  39483. default: true
  39484. },
  39485. ]
  39486. ))
  39487. characterMakers.push(() => makeCharacter(
  39488. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39489. {
  39490. front: {
  39491. height: math.unit(6 + 2/12, "feet"),
  39492. weight: math.unit(284, "lb"),
  39493. name: "Front",
  39494. image: {
  39495. source: "./media/characters/benni-desparque/front.svg",
  39496. extra: 1353/1126,
  39497. bottom: 69/1422
  39498. }
  39499. },
  39500. },
  39501. [
  39502. {
  39503. name: "Civilian",
  39504. height: math.unit(6 + 2/12, "feet")
  39505. },
  39506. {
  39507. name: "Normal",
  39508. height: math.unit(98, "feet"),
  39509. default: true
  39510. },
  39511. {
  39512. name: "Kaiju Fighter",
  39513. height: math.unit(268, "feet")
  39514. },
  39515. ]
  39516. ))
  39517. characterMakers.push(() => makeCharacter(
  39518. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39519. {
  39520. front: {
  39521. height: math.unit(5, "feet"),
  39522. weight: math.unit(105, "lb"),
  39523. name: "Front",
  39524. image: {
  39525. source: "./media/characters/maxine/front.svg",
  39526. extra: 1386/1250,
  39527. bottom: 71/1457
  39528. }
  39529. },
  39530. },
  39531. [
  39532. {
  39533. name: "Normal",
  39534. height: math.unit(5, "feet"),
  39535. default: true
  39536. },
  39537. ]
  39538. ))
  39539. characterMakers.push(() => makeCharacter(
  39540. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39541. {
  39542. front: {
  39543. height: math.unit(11 + 7/12, "feet"),
  39544. weight: math.unit(9576, "lb"),
  39545. name: "Front",
  39546. image: {
  39547. source: "./media/characters/scaly/front.svg",
  39548. extra: 888/867,
  39549. bottom: 36/924
  39550. }
  39551. },
  39552. },
  39553. [
  39554. {
  39555. name: "Normal",
  39556. height: math.unit(11 + 7/12, "feet"),
  39557. default: true
  39558. },
  39559. ]
  39560. ))
  39561. characterMakers.push(() => makeCharacter(
  39562. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39563. {
  39564. front: {
  39565. height: math.unit(9, "inches"),
  39566. name: "Front",
  39567. image: {
  39568. source: "./media/characters/saelria/front.svg",
  39569. extra: 662/621,
  39570. bottom: 12/674
  39571. }
  39572. },
  39573. },
  39574. [
  39575. {
  39576. name: "Tiny",
  39577. height: math.unit(9, "inches"),
  39578. default: true
  39579. },
  39580. ]
  39581. ))
  39582. characterMakers.push(() => makeCharacter(
  39583. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39584. {
  39585. front: {
  39586. height: math.unit(80, "meters"),
  39587. weight: math.unit(7000, "tonnes"),
  39588. name: "Front",
  39589. image: {
  39590. source: "./media/characters/tef/front.svg",
  39591. extra: 2036/1991,
  39592. bottom: 54/2090
  39593. }
  39594. },
  39595. back: {
  39596. height: math.unit(80, "meters"),
  39597. weight: math.unit(7000, "tonnes"),
  39598. name: "Back",
  39599. image: {
  39600. source: "./media/characters/tef/back.svg",
  39601. extra: 2036/1991,
  39602. bottom: 54/2090
  39603. }
  39604. },
  39605. },
  39606. [
  39607. {
  39608. name: "Macro",
  39609. height: math.unit(80, "meters"),
  39610. default: true
  39611. },
  39612. ]
  39613. ))
  39614. characterMakers.push(() => makeCharacter(
  39615. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39616. {
  39617. front: {
  39618. height: math.unit(13, "feet"),
  39619. weight: math.unit(6, "tons"),
  39620. name: "Front",
  39621. image: {
  39622. source: "./media/characters/rover/front.svg",
  39623. extra: 1233/1156,
  39624. bottom: 50/1283
  39625. }
  39626. },
  39627. back: {
  39628. height: math.unit(13, "feet"),
  39629. weight: math.unit(6, "tons"),
  39630. name: "Back",
  39631. image: {
  39632. source: "./media/characters/rover/back.svg",
  39633. extra: 1327/1258,
  39634. bottom: 39/1366
  39635. }
  39636. },
  39637. },
  39638. [
  39639. {
  39640. name: "Normal",
  39641. height: math.unit(13, "feet"),
  39642. default: true
  39643. },
  39644. {
  39645. name: "Macro",
  39646. height: math.unit(1300, "feet")
  39647. },
  39648. {
  39649. name: "Megamacro",
  39650. height: math.unit(1300, "miles")
  39651. },
  39652. {
  39653. name: "Gigamacro",
  39654. height: math.unit(1300000, "miles")
  39655. },
  39656. ]
  39657. ))
  39658. characterMakers.push(() => makeCharacter(
  39659. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39660. {
  39661. front: {
  39662. height: math.unit(6, "feet"),
  39663. weight: math.unit(150, "lb"),
  39664. name: "Front",
  39665. image: {
  39666. source: "./media/characters/ariz/front.svg",
  39667. extra: 1401/1346,
  39668. bottom: 5/1406
  39669. }
  39670. },
  39671. },
  39672. [
  39673. {
  39674. name: "Normal",
  39675. height: math.unit(10, "feet"),
  39676. default: true
  39677. },
  39678. ]
  39679. ))
  39680. characterMakers.push(() => makeCharacter(
  39681. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39682. {
  39683. front: {
  39684. height: math.unit(6, "feet"),
  39685. weight: math.unit(140, "lb"),
  39686. name: "Front",
  39687. image: {
  39688. source: "./media/characters/sigrun/front.svg",
  39689. extra: 1418/1359,
  39690. bottom: 27/1445
  39691. }
  39692. },
  39693. },
  39694. [
  39695. {
  39696. name: "Macro",
  39697. height: math.unit(35, "feet"),
  39698. default: true
  39699. },
  39700. ]
  39701. ))
  39702. characterMakers.push(() => makeCharacter(
  39703. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39704. {
  39705. front: {
  39706. height: math.unit(6, "feet"),
  39707. weight: math.unit(150, "lb"),
  39708. name: "Front",
  39709. image: {
  39710. source: "./media/characters/numin/front.svg",
  39711. extra: 1433/1388,
  39712. bottom: 12/1445
  39713. }
  39714. },
  39715. },
  39716. [
  39717. {
  39718. name: "Macro",
  39719. height: math.unit(21.5, "km"),
  39720. default: true
  39721. },
  39722. ]
  39723. ))
  39724. characterMakers.push(() => makeCharacter(
  39725. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39726. {
  39727. front: {
  39728. height: math.unit(6, "feet"),
  39729. weight: math.unit(463, "lb"),
  39730. name: "Front",
  39731. image: {
  39732. source: "./media/characters/melwa/front.svg",
  39733. extra: 1307/1248,
  39734. bottom: 93/1400
  39735. }
  39736. },
  39737. },
  39738. [
  39739. {
  39740. name: "Macro",
  39741. height: math.unit(50, "meters"),
  39742. default: true
  39743. },
  39744. ]
  39745. ))
  39746. characterMakers.push(() => makeCharacter(
  39747. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39748. {
  39749. front: {
  39750. height: math.unit(325, "feet"),
  39751. name: "Front",
  39752. image: {
  39753. source: "./media/characters/zorkaiju/front.svg",
  39754. extra: 1955/1814,
  39755. bottom: 40/1995
  39756. }
  39757. },
  39758. frontExtended: {
  39759. height: math.unit(325, "feet"),
  39760. name: "Front (Extended)",
  39761. image: {
  39762. source: "./media/characters/zorkaiju/front-extended.svg",
  39763. extra: 1955/1814,
  39764. bottom: 40/1995
  39765. }
  39766. },
  39767. side: {
  39768. height: math.unit(325, "feet"),
  39769. name: "Side",
  39770. image: {
  39771. source: "./media/characters/zorkaiju/side.svg",
  39772. extra: 1495/1396,
  39773. bottom: 17/1512
  39774. }
  39775. },
  39776. sideExtended: {
  39777. height: math.unit(325, "feet"),
  39778. name: "Side (Extended)",
  39779. image: {
  39780. source: "./media/characters/zorkaiju/side-extended.svg",
  39781. extra: 1495/1396,
  39782. bottom: 17/1512
  39783. }
  39784. },
  39785. back: {
  39786. height: math.unit(325, "feet"),
  39787. name: "Back",
  39788. image: {
  39789. source: "./media/characters/zorkaiju/back.svg",
  39790. extra: 1959/1821,
  39791. bottom: 31/1990
  39792. }
  39793. },
  39794. backExtended: {
  39795. height: math.unit(325, "feet"),
  39796. name: "Back (Extended)",
  39797. image: {
  39798. source: "./media/characters/zorkaiju/back-extended.svg",
  39799. extra: 1959/1821,
  39800. bottom: 31/1990
  39801. }
  39802. },
  39803. hand: {
  39804. height: math.unit(58.4, "feet"),
  39805. name: "Hand",
  39806. image: {
  39807. source: "./media/characters/zorkaiju/hand.svg"
  39808. }
  39809. },
  39810. handExtended: {
  39811. height: math.unit(61.4, "feet"),
  39812. name: "Hand (Extended)",
  39813. image: {
  39814. source: "./media/characters/zorkaiju/hand-extended.svg"
  39815. }
  39816. },
  39817. foot: {
  39818. height: math.unit(95, "feet"),
  39819. name: "Foot",
  39820. image: {
  39821. source: "./media/characters/zorkaiju/foot.svg"
  39822. }
  39823. },
  39824. leftArm: {
  39825. height: math.unit(59, "feet"),
  39826. name: "Left Arm",
  39827. image: {
  39828. source: "./media/characters/zorkaiju/left-arm.svg"
  39829. }
  39830. },
  39831. rightArm: {
  39832. height: math.unit(59, "feet"),
  39833. name: "Right Arm",
  39834. image: {
  39835. source: "./media/characters/zorkaiju/right-arm.svg"
  39836. }
  39837. },
  39838. tail: {
  39839. height: math.unit(104, "feet"),
  39840. name: "Tail",
  39841. image: {
  39842. source: "./media/characters/zorkaiju/tail.svg"
  39843. }
  39844. },
  39845. tailExtended: {
  39846. height: math.unit(104, "feet"),
  39847. name: "Tail (Extended)",
  39848. image: {
  39849. source: "./media/characters/zorkaiju/tail-extended.svg"
  39850. }
  39851. },
  39852. tailBottom: {
  39853. height: math.unit(104, "feet"),
  39854. name: "Tail Bottom",
  39855. image: {
  39856. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39857. }
  39858. },
  39859. crystal: {
  39860. height: math.unit(27.54, "feet"),
  39861. name: "Crystal",
  39862. image: {
  39863. source: "./media/characters/zorkaiju/crystal.svg"
  39864. }
  39865. },
  39866. },
  39867. [
  39868. {
  39869. name: "Kaiju",
  39870. height: math.unit(325, "feet"),
  39871. default: true
  39872. },
  39873. ]
  39874. ))
  39875. characterMakers.push(() => makeCharacter(
  39876. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  39877. {
  39878. front: {
  39879. height: math.unit(6 + 1/12, "feet"),
  39880. weight: math.unit(115, "lb"),
  39881. name: "Front",
  39882. image: {
  39883. source: "./media/characters/bailey-belfry/front.svg",
  39884. extra: 1240/1121,
  39885. bottom: 101/1341
  39886. }
  39887. },
  39888. },
  39889. [
  39890. {
  39891. name: "Normal",
  39892. height: math.unit(6 + 1/12, "feet"),
  39893. default: true
  39894. },
  39895. ]
  39896. ))
  39897. characterMakers.push(() => makeCharacter(
  39898. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  39899. {
  39900. side: {
  39901. height: math.unit(4, "meters"),
  39902. weight: math.unit(250, "kg"),
  39903. name: "Side",
  39904. image: {
  39905. source: "./media/characters/blacky/side.svg",
  39906. extra: 1027/919,
  39907. bottom: 43/1070
  39908. }
  39909. },
  39910. maw: {
  39911. height: math.unit(1, "meters"),
  39912. name: "Maw",
  39913. image: {
  39914. source: "./media/characters/blacky/maw.svg"
  39915. }
  39916. },
  39917. paw: {
  39918. height: math.unit(1, "meters"),
  39919. name: "Paw",
  39920. image: {
  39921. source: "./media/characters/blacky/paw.svg"
  39922. }
  39923. },
  39924. },
  39925. [
  39926. {
  39927. name: "Normal",
  39928. height: math.unit(4, "meters"),
  39929. default: true
  39930. },
  39931. ]
  39932. ))
  39933. characterMakers.push(() => makeCharacter(
  39934. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  39935. {
  39936. front: {
  39937. height: math.unit(170, "cm"),
  39938. weight: math.unit(66, "kg"),
  39939. name: "Front",
  39940. image: {
  39941. source: "./media/characters/thux-ei/front.svg",
  39942. extra: 1109/1011,
  39943. bottom: 8/1117
  39944. }
  39945. },
  39946. },
  39947. [
  39948. {
  39949. name: "Normal",
  39950. height: math.unit(170, "cm"),
  39951. default: true
  39952. },
  39953. ]
  39954. ))
  39955. characterMakers.push(() => makeCharacter(
  39956. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  39957. {
  39958. front: {
  39959. height: math.unit(5, "feet"),
  39960. weight: math.unit(120, "lb"),
  39961. name: "Front",
  39962. image: {
  39963. source: "./media/characters/roxanne-voltaire/front.svg",
  39964. extra: 1901/1779,
  39965. bottom: 53/1954
  39966. }
  39967. },
  39968. },
  39969. [
  39970. {
  39971. name: "Normal",
  39972. height: math.unit(5, "feet"),
  39973. default: true
  39974. },
  39975. {
  39976. name: "Giant",
  39977. height: math.unit(50, "feet")
  39978. },
  39979. {
  39980. name: "Titan",
  39981. height: math.unit(500, "feet")
  39982. },
  39983. {
  39984. name: "Macro",
  39985. height: math.unit(5000, "feet")
  39986. },
  39987. {
  39988. name: "Megamacro",
  39989. height: math.unit(50000, "feet")
  39990. },
  39991. {
  39992. name: "Gigamacro",
  39993. height: math.unit(500000, "feet")
  39994. },
  39995. {
  39996. name: "Teramacro",
  39997. height: math.unit(5e6, "feet")
  39998. },
  39999. ]
  40000. ))
  40001. characterMakers.push(() => makeCharacter(
  40002. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  40003. {
  40004. front: {
  40005. height: math.unit(6 + 2/12, "feet"),
  40006. name: "Front",
  40007. image: {
  40008. source: "./media/characters/squeaks/front.svg",
  40009. extra: 1823/1768,
  40010. bottom: 138/1961
  40011. }
  40012. },
  40013. },
  40014. [
  40015. {
  40016. name: "Micro",
  40017. height: math.unit(0.5, "inches")
  40018. },
  40019. {
  40020. name: "Normal",
  40021. height: math.unit(6 + 2/12, "feet"),
  40022. default: true
  40023. },
  40024. {
  40025. name: "Macro",
  40026. height: math.unit(600, "feet")
  40027. },
  40028. ]
  40029. ))
  40030. characterMakers.push(() => makeCharacter(
  40031. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  40032. {
  40033. front: {
  40034. height: math.unit(1.72, "meters"),
  40035. name: "Front",
  40036. image: {
  40037. source: "./media/characters/archinger/front.svg",
  40038. extra: 1861/1675,
  40039. bottom: 125/1986
  40040. }
  40041. },
  40042. back: {
  40043. height: math.unit(1.72, "meters"),
  40044. name: "Back",
  40045. image: {
  40046. source: "./media/characters/archinger/back.svg",
  40047. extra: 1844/1701,
  40048. bottom: 104/1948
  40049. }
  40050. },
  40051. cock: {
  40052. height: math.unit(0.59, "feet"),
  40053. name: "Cock",
  40054. image: {
  40055. source: "./media/characters/archinger/cock.svg"
  40056. }
  40057. },
  40058. },
  40059. [
  40060. {
  40061. name: "Normal",
  40062. height: math.unit(1.72, "meters"),
  40063. default: true
  40064. },
  40065. {
  40066. name: "Macro",
  40067. height: math.unit(84, "meters")
  40068. },
  40069. {
  40070. name: "Macro+",
  40071. height: math.unit(112, "meters")
  40072. },
  40073. {
  40074. name: "Macro++",
  40075. height: math.unit(960, "meters")
  40076. },
  40077. {
  40078. name: "Macro+++",
  40079. height: math.unit(4, "km")
  40080. },
  40081. {
  40082. name: "Macro++++",
  40083. height: math.unit(48, "km")
  40084. },
  40085. {
  40086. name: "Macro+++++",
  40087. height: math.unit(4500, "km")
  40088. },
  40089. ]
  40090. ))
  40091. characterMakers.push(() => makeCharacter(
  40092. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40093. {
  40094. front: {
  40095. height: math.unit(5 + 5/12, "feet"),
  40096. name: "Front",
  40097. image: {
  40098. source: "./media/characters/alsnapz/front.svg",
  40099. extra: 1157/1065,
  40100. bottom: 42/1199
  40101. }
  40102. },
  40103. },
  40104. [
  40105. {
  40106. name: "Normal",
  40107. height: math.unit(5 + 5/12, "feet"),
  40108. default: true
  40109. },
  40110. ]
  40111. ))
  40112. characterMakers.push(() => makeCharacter(
  40113. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40114. {
  40115. side: {
  40116. height: math.unit(3.2, "earths"),
  40117. name: "Side",
  40118. image: {
  40119. source: "./media/characters/mag/side.svg",
  40120. extra: 1331/1008,
  40121. bottom: 52/1383
  40122. }
  40123. },
  40124. wing: {
  40125. height: math.unit(1.94, "earths"),
  40126. name: "Wing",
  40127. image: {
  40128. source: "./media/characters/mag/wing.svg"
  40129. }
  40130. },
  40131. dick: {
  40132. height: math.unit(1.8, "earths"),
  40133. name: "Dick",
  40134. image: {
  40135. source: "./media/characters/mag/dick.svg"
  40136. }
  40137. },
  40138. ass: {
  40139. height: math.unit(1.33, "earths"),
  40140. name: "Ass",
  40141. image: {
  40142. source: "./media/characters/mag/ass.svg"
  40143. }
  40144. },
  40145. head: {
  40146. height: math.unit(1.1, "earths"),
  40147. name: "Head",
  40148. image: {
  40149. source: "./media/characters/mag/head.svg"
  40150. }
  40151. },
  40152. maw: {
  40153. height: math.unit(1.62, "earths"),
  40154. name: "Maw",
  40155. image: {
  40156. source: "./media/characters/mag/maw.svg"
  40157. }
  40158. },
  40159. },
  40160. [
  40161. {
  40162. name: "Small",
  40163. height: math.unit(162, "feet")
  40164. },
  40165. {
  40166. name: "Normal",
  40167. height: math.unit(3.2, "earths"),
  40168. default: true
  40169. },
  40170. ]
  40171. ))
  40172. characterMakers.push(() => makeCharacter(
  40173. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40174. {
  40175. front: {
  40176. height: math.unit(512, "feet"),
  40177. weight: math.unit(63509, "tonnes"),
  40178. name: "Front",
  40179. image: {
  40180. source: "./media/characters/vorrel-harroc/front.svg",
  40181. extra: 1075/1063,
  40182. bottom: 62/1137
  40183. }
  40184. },
  40185. },
  40186. [
  40187. {
  40188. name: "Normal",
  40189. height: math.unit(10, "feet")
  40190. },
  40191. {
  40192. name: "Macro",
  40193. height: math.unit(512, "feet"),
  40194. default: true
  40195. },
  40196. {
  40197. name: "Megamacro",
  40198. height: math.unit(256, "miles")
  40199. },
  40200. {
  40201. name: "Gigamacro",
  40202. height: math.unit(4096, "miles")
  40203. },
  40204. ]
  40205. ))
  40206. characterMakers.push(() => makeCharacter(
  40207. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40208. {
  40209. side: {
  40210. height: math.unit(50, "feet"),
  40211. name: "Side",
  40212. image: {
  40213. source: "./media/characters/froimar/side.svg",
  40214. extra: 855/638,
  40215. bottom: 99/954
  40216. }
  40217. },
  40218. },
  40219. [
  40220. {
  40221. name: "Macro",
  40222. height: math.unit(50, "feet"),
  40223. default: true
  40224. },
  40225. ]
  40226. ))
  40227. characterMakers.push(() => makeCharacter(
  40228. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40229. {
  40230. front: {
  40231. height: math.unit(210, "miles"),
  40232. name: "Front",
  40233. image: {
  40234. source: "./media/characters/timothy/front.svg",
  40235. extra: 1007/943,
  40236. bottom: 62/1069
  40237. }
  40238. },
  40239. frontSkirt: {
  40240. height: math.unit(210, "miles"),
  40241. name: "Front (Skirt)",
  40242. image: {
  40243. source: "./media/characters/timothy/front-skirt.svg",
  40244. extra: 1007/943,
  40245. bottom: 62/1069
  40246. }
  40247. },
  40248. frontCoat: {
  40249. height: math.unit(210, "miles"),
  40250. name: "Front (Coat)",
  40251. image: {
  40252. source: "./media/characters/timothy/front-coat.svg",
  40253. extra: 1007/943,
  40254. bottom: 62/1069
  40255. }
  40256. },
  40257. },
  40258. [
  40259. {
  40260. name: "Macro",
  40261. height: math.unit(210, "miles"),
  40262. default: true
  40263. },
  40264. {
  40265. name: "Megamacro",
  40266. height: math.unit(210000, "miles")
  40267. },
  40268. ]
  40269. ))
  40270. characterMakers.push(() => makeCharacter(
  40271. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40272. {
  40273. front: {
  40274. height: math.unit(188, "feet"),
  40275. name: "Front",
  40276. image: {
  40277. source: "./media/characters/pyotr/front.svg",
  40278. extra: 1912/1826,
  40279. bottom: 18/1930
  40280. }
  40281. },
  40282. },
  40283. [
  40284. {
  40285. name: "Macro",
  40286. height: math.unit(188, "feet"),
  40287. default: true
  40288. },
  40289. {
  40290. name: "Megamacro",
  40291. height: math.unit(8, "miles")
  40292. },
  40293. ]
  40294. ))
  40295. characterMakers.push(() => makeCharacter(
  40296. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40297. {
  40298. side: {
  40299. height: math.unit(10, "feet"),
  40300. weight: math.unit(4500, "lb"),
  40301. name: "Side",
  40302. image: {
  40303. source: "./media/characters/ackart/side.svg",
  40304. extra: 1776/1668,
  40305. bottom: 116/1892
  40306. }
  40307. },
  40308. },
  40309. [
  40310. {
  40311. name: "Normal",
  40312. height: math.unit(10, "feet"),
  40313. default: true
  40314. },
  40315. ]
  40316. ))
  40317. characterMakers.push(() => makeCharacter(
  40318. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40319. {
  40320. side: {
  40321. height: math.unit(21, "feet"),
  40322. name: "Side",
  40323. image: {
  40324. source: "./media/characters/nolow/side.svg",
  40325. extra: 1484/1434,
  40326. bottom: 85/1569
  40327. }
  40328. },
  40329. sideErect: {
  40330. height: math.unit(21, "feet"),
  40331. name: "Side-erect",
  40332. image: {
  40333. source: "./media/characters/nolow/side-erect.svg",
  40334. extra: 1484/1434,
  40335. bottom: 85/1569
  40336. }
  40337. },
  40338. },
  40339. [
  40340. {
  40341. name: "Regular",
  40342. height: math.unit(12, "feet")
  40343. },
  40344. {
  40345. name: "Big Chee",
  40346. height: math.unit(21, "feet"),
  40347. default: true
  40348. },
  40349. ]
  40350. ))
  40351. characterMakers.push(() => makeCharacter(
  40352. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40353. {
  40354. front: {
  40355. height: math.unit(7, "feet"),
  40356. weight: math.unit(250, "lb"),
  40357. name: "Front",
  40358. image: {
  40359. source: "./media/characters/nines/front.svg",
  40360. extra: 1741/1607,
  40361. bottom: 41/1782
  40362. }
  40363. },
  40364. side: {
  40365. height: math.unit(7, "feet"),
  40366. weight: math.unit(250, "lb"),
  40367. name: "Side",
  40368. image: {
  40369. source: "./media/characters/nines/side.svg",
  40370. extra: 1854/1735,
  40371. bottom: 93/1947
  40372. }
  40373. },
  40374. back: {
  40375. height: math.unit(7, "feet"),
  40376. weight: math.unit(250, "lb"),
  40377. name: "Back",
  40378. image: {
  40379. source: "./media/characters/nines/back.svg",
  40380. extra: 1748/1615,
  40381. bottom: 20/1768
  40382. }
  40383. },
  40384. },
  40385. [
  40386. {
  40387. name: "Megamacro",
  40388. height: math.unit(99, "km"),
  40389. default: true
  40390. },
  40391. ]
  40392. ))
  40393. characterMakers.push(() => makeCharacter(
  40394. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40395. {
  40396. front: {
  40397. height: math.unit(5 + 10/12, "feet"),
  40398. weight: math.unit(210, "lb"),
  40399. name: "Front",
  40400. image: {
  40401. source: "./media/characters/zenith/front.svg",
  40402. extra: 1531/1452,
  40403. bottom: 198/1729
  40404. }
  40405. },
  40406. back: {
  40407. height: math.unit(5 + 10/12, "feet"),
  40408. weight: math.unit(210, "lb"),
  40409. name: "Back",
  40410. image: {
  40411. source: "./media/characters/zenith/back.svg",
  40412. extra: 1571/1487,
  40413. bottom: 75/1646
  40414. }
  40415. },
  40416. },
  40417. [
  40418. {
  40419. name: "Normal",
  40420. height: math.unit(5 + 10/12, "feet"),
  40421. default: true
  40422. }
  40423. ]
  40424. ))
  40425. characterMakers.push(() => makeCharacter(
  40426. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40427. {
  40428. front: {
  40429. height: math.unit(4, "feet"),
  40430. weight: math.unit(60, "lb"),
  40431. name: "Front",
  40432. image: {
  40433. source: "./media/characters/jasper/front.svg",
  40434. extra: 1450/1379,
  40435. bottom: 19/1469
  40436. }
  40437. },
  40438. },
  40439. [
  40440. {
  40441. name: "Normal",
  40442. height: math.unit(4, "feet"),
  40443. default: true
  40444. },
  40445. ]
  40446. ))
  40447. characterMakers.push(() => makeCharacter(
  40448. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40449. {
  40450. front: {
  40451. height: math.unit(6 + 5/12, "feet"),
  40452. weight: math.unit(290, "lb"),
  40453. name: "Front",
  40454. image: {
  40455. source: "./media/characters/tiberius-thyben/front.svg",
  40456. extra: 757/739,
  40457. bottom: 39/796
  40458. }
  40459. },
  40460. },
  40461. [
  40462. {
  40463. name: "Micro",
  40464. height: math.unit(1.5, "inches")
  40465. },
  40466. {
  40467. name: "Normal",
  40468. height: math.unit(6 + 5/12, "feet"),
  40469. default: true
  40470. },
  40471. {
  40472. name: "Macro",
  40473. height: math.unit(300, "feet")
  40474. },
  40475. ]
  40476. ))
  40477. characterMakers.push(() => makeCharacter(
  40478. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40479. {
  40480. front: {
  40481. height: math.unit(5 + 6/12, "feet"),
  40482. weight: math.unit(60, "kg"),
  40483. name: "Front",
  40484. image: {
  40485. source: "./media/characters/sabre/front.svg",
  40486. extra: 738/671,
  40487. bottom: 27/765
  40488. }
  40489. },
  40490. },
  40491. [
  40492. {
  40493. name: "Teeny",
  40494. height: math.unit(2, "inches")
  40495. },
  40496. {
  40497. name: "Smol",
  40498. height: math.unit(8, "inches")
  40499. },
  40500. {
  40501. name: "Normal",
  40502. height: math.unit(5 + 6/12, "feet"),
  40503. default: true
  40504. },
  40505. {
  40506. name: "Mini-Macro",
  40507. height: math.unit(15, "feet")
  40508. },
  40509. {
  40510. name: "Macro",
  40511. height: math.unit(50, "feet")
  40512. },
  40513. ]
  40514. ))
  40515. characterMakers.push(() => makeCharacter(
  40516. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40517. {
  40518. front: {
  40519. height: math.unit(6 + 4/12, "feet"),
  40520. weight: math.unit(170, "lb"),
  40521. name: "Front",
  40522. image: {
  40523. source: "./media/characters/charlie/front.svg",
  40524. extra: 1348/1228,
  40525. bottom: 15/1363
  40526. }
  40527. },
  40528. },
  40529. [
  40530. {
  40531. name: "Macro",
  40532. height: math.unit(1700, "meters"),
  40533. default: true
  40534. },
  40535. {
  40536. name: "MegaMacro",
  40537. height: math.unit(20400, "meters")
  40538. },
  40539. ]
  40540. ))
  40541. characterMakers.push(() => makeCharacter(
  40542. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40543. {
  40544. front: {
  40545. height: math.unit(6 + 3/12, "feet"),
  40546. weight: math.unit(185, "lb"),
  40547. name: "Front",
  40548. image: {
  40549. source: "./media/characters/susan-grant/front.svg",
  40550. extra: 1351/1327,
  40551. bottom: 26/1377
  40552. }
  40553. },
  40554. },
  40555. [
  40556. {
  40557. name: "Normal",
  40558. height: math.unit(6 + 3/12, "feet"),
  40559. default: true
  40560. },
  40561. {
  40562. name: "Macro",
  40563. height: math.unit(225, "feet")
  40564. },
  40565. {
  40566. name: "Macro+",
  40567. height: math.unit(900, "feet")
  40568. },
  40569. {
  40570. name: "MegaMacro",
  40571. height: math.unit(14400, "feet")
  40572. },
  40573. ]
  40574. ))
  40575. characterMakers.push(() => makeCharacter(
  40576. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40577. {
  40578. front: {
  40579. height: math.unit(5 + 4/12, "feet"),
  40580. weight: math.unit(110, "lb"),
  40581. name: "Front",
  40582. image: {
  40583. source: "./media/characters/axel-isanov/front.svg",
  40584. extra: 1096/1065,
  40585. bottom: 13/1109
  40586. }
  40587. },
  40588. },
  40589. [
  40590. {
  40591. name: "Normal",
  40592. height: math.unit(5 + 4/12, "feet"),
  40593. default: true
  40594. },
  40595. ]
  40596. ))
  40597. characterMakers.push(() => makeCharacter(
  40598. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40599. {
  40600. front: {
  40601. height: math.unit(9, "feet"),
  40602. weight: math.unit(467, "lb"),
  40603. name: "Front",
  40604. image: {
  40605. source: "./media/characters/necahual/front.svg",
  40606. extra: 920/873,
  40607. bottom: 26/946
  40608. }
  40609. },
  40610. back: {
  40611. height: math.unit(9, "feet"),
  40612. weight: math.unit(467, "lb"),
  40613. name: "Back",
  40614. image: {
  40615. source: "./media/characters/necahual/back.svg",
  40616. extra: 930/884,
  40617. bottom: 16/946
  40618. }
  40619. },
  40620. frontUnderwear: {
  40621. height: math.unit(9, "feet"),
  40622. weight: math.unit(467, "lb"),
  40623. name: "Front (Underwear)",
  40624. image: {
  40625. source: "./media/characters/necahual/front-underwear.svg",
  40626. extra: 920/873,
  40627. bottom: 26/946
  40628. }
  40629. },
  40630. frontDressed: {
  40631. height: math.unit(9, "feet"),
  40632. weight: math.unit(467, "lb"),
  40633. name: "Front (Dressed)",
  40634. image: {
  40635. source: "./media/characters/necahual/front-dressed.svg",
  40636. extra: 920/873,
  40637. bottom: 26/946
  40638. }
  40639. },
  40640. },
  40641. [
  40642. {
  40643. name: "Comprsesed",
  40644. height: math.unit(9, "feet")
  40645. },
  40646. {
  40647. name: "Natural",
  40648. height: math.unit(15, "feet"),
  40649. default: true
  40650. },
  40651. {
  40652. name: "Boosted",
  40653. height: math.unit(50, "feet")
  40654. },
  40655. {
  40656. name: "Boosted+",
  40657. height: math.unit(150, "feet")
  40658. },
  40659. {
  40660. name: "Max",
  40661. height: math.unit(500, "feet")
  40662. },
  40663. ]
  40664. ))
  40665. characterMakers.push(() => makeCharacter(
  40666. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40667. {
  40668. front: {
  40669. height: math.unit(22 + 1/12, "feet"),
  40670. weight: math.unit(3200, "lb"),
  40671. name: "Front",
  40672. image: {
  40673. source: "./media/characters/theo-acacia/front.svg",
  40674. extra: 1796/1741,
  40675. bottom: 83/1879
  40676. }
  40677. },
  40678. frontUnderwear: {
  40679. height: math.unit(22 + 1/12, "feet"),
  40680. weight: math.unit(3200, "lb"),
  40681. name: "Front (Underwear)",
  40682. image: {
  40683. source: "./media/characters/theo-acacia/front-underwear.svg",
  40684. extra: 1796/1741,
  40685. bottom: 83/1879
  40686. }
  40687. },
  40688. frontNude: {
  40689. height: math.unit(22 + 1/12, "feet"),
  40690. weight: math.unit(3200, "lb"),
  40691. name: "Front (Nude)",
  40692. image: {
  40693. source: "./media/characters/theo-acacia/front-nude.svg",
  40694. extra: 1796/1741,
  40695. bottom: 83/1879
  40696. }
  40697. },
  40698. },
  40699. [
  40700. {
  40701. name: "Normal",
  40702. height: math.unit(22 + 1/12, "feet"),
  40703. default: true
  40704. },
  40705. ]
  40706. ))
  40707. characterMakers.push(() => makeCharacter(
  40708. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40709. {
  40710. front: {
  40711. height: math.unit(20, "feet"),
  40712. name: "Front",
  40713. image: {
  40714. source: "./media/characters/astra/front.svg",
  40715. extra: 1850/1714,
  40716. bottom: 106/1956
  40717. }
  40718. },
  40719. frontUndressed: {
  40720. height: math.unit(20, "feet"),
  40721. name: "Front (Undressed)",
  40722. image: {
  40723. source: "./media/characters/astra/front-undressed.svg",
  40724. extra: 1926/1749,
  40725. bottom: 0/1926
  40726. }
  40727. },
  40728. hand: {
  40729. height: math.unit(1.53, "feet"),
  40730. name: "Hand",
  40731. image: {
  40732. source: "./media/characters/astra/hand.svg"
  40733. }
  40734. },
  40735. paw: {
  40736. height: math.unit(1.53, "feet"),
  40737. name: "Paw",
  40738. image: {
  40739. source: "./media/characters/astra/paw.svg"
  40740. }
  40741. },
  40742. },
  40743. [
  40744. {
  40745. name: "Smallest",
  40746. height: math.unit(20, "feet")
  40747. },
  40748. {
  40749. name: "Normal",
  40750. height: math.unit(1e9, "miles"),
  40751. default: true
  40752. },
  40753. {
  40754. name: "Larger",
  40755. height: math.unit(5, "multiverses")
  40756. },
  40757. {
  40758. name: "Largest",
  40759. height: math.unit(1e9, "multiverses")
  40760. },
  40761. ]
  40762. ))
  40763. characterMakers.push(() => makeCharacter(
  40764. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40765. {
  40766. front: {
  40767. height: math.unit(8, "feet"),
  40768. name: "Front",
  40769. image: {
  40770. source: "./media/characters/breanna/front.svg",
  40771. extra: 1912/1632,
  40772. bottom: 33/1945
  40773. }
  40774. },
  40775. },
  40776. [
  40777. {
  40778. name: "Smallest",
  40779. height: math.unit(8, "feet")
  40780. },
  40781. {
  40782. name: "Normal",
  40783. height: math.unit(1, "mile"),
  40784. default: true
  40785. },
  40786. {
  40787. name: "Maximum",
  40788. height: math.unit(1500000000000, "lightyears")
  40789. },
  40790. ]
  40791. ))
  40792. characterMakers.push(() => makeCharacter(
  40793. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  40794. {
  40795. front: {
  40796. height: math.unit(5 + 11/12, "feet"),
  40797. weight: math.unit(155, "lb"),
  40798. name: "Front",
  40799. image: {
  40800. source: "./media/characters/cai/front.svg",
  40801. extra: 1823/1702,
  40802. bottom: 32/1855
  40803. }
  40804. },
  40805. back: {
  40806. height: math.unit(5 + 11/12, "feet"),
  40807. weight: math.unit(155, "lb"),
  40808. name: "Back",
  40809. image: {
  40810. source: "./media/characters/cai/back.svg",
  40811. extra: 1809/1708,
  40812. bottom: 31/1840
  40813. }
  40814. },
  40815. },
  40816. [
  40817. {
  40818. name: "Normal",
  40819. height: math.unit(5 + 11/12, "feet"),
  40820. default: true
  40821. },
  40822. {
  40823. name: "Big",
  40824. height: math.unit(15, "feet")
  40825. },
  40826. {
  40827. name: "Macro",
  40828. height: math.unit(200, "feet")
  40829. },
  40830. ]
  40831. ))
  40832. characterMakers.push(() => makeCharacter(
  40833. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  40834. {
  40835. front: {
  40836. height: math.unit(5 + 6/12, "feet"),
  40837. weight: math.unit(160, "lb"),
  40838. name: "Front",
  40839. image: {
  40840. source: "./media/characters/zanna-virtuedòttir/front.svg",
  40841. extra: 1227/1174,
  40842. bottom: 37/1264
  40843. }
  40844. },
  40845. },
  40846. [
  40847. {
  40848. name: "Macro",
  40849. height: math.unit(444, "meters"),
  40850. default: true
  40851. },
  40852. ]
  40853. ))
  40854. characterMakers.push(() => makeCharacter(
  40855. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  40856. {
  40857. front: {
  40858. height: math.unit(18 + 7/12, "feet"),
  40859. name: "Front",
  40860. image: {
  40861. source: "./media/characters/rex/front.svg",
  40862. extra: 1941/1807,
  40863. bottom: 66/2007
  40864. }
  40865. },
  40866. back: {
  40867. height: math.unit(18 + 7/12, "feet"),
  40868. name: "Back",
  40869. image: {
  40870. source: "./media/characters/rex/back.svg",
  40871. extra: 1937/1822,
  40872. bottom: 42/1979
  40873. }
  40874. },
  40875. boot: {
  40876. height: math.unit(3.45, "feet"),
  40877. name: "Boot",
  40878. image: {
  40879. source: "./media/characters/rex/boot.svg"
  40880. }
  40881. },
  40882. paw: {
  40883. height: math.unit(4.17, "feet"),
  40884. name: "Paw",
  40885. image: {
  40886. source: "./media/characters/rex/paw.svg"
  40887. }
  40888. },
  40889. head: {
  40890. height: math.unit(6.728, "feet"),
  40891. name: "Head",
  40892. image: {
  40893. source: "./media/characters/rex/head.svg"
  40894. }
  40895. },
  40896. },
  40897. [
  40898. {
  40899. name: "Nano",
  40900. height: math.unit(18 + 7/12, "feet")
  40901. },
  40902. {
  40903. name: "Micro",
  40904. height: math.unit(1.5, "megameters")
  40905. },
  40906. {
  40907. name: "Normal",
  40908. height: math.unit(440, "megameters"),
  40909. default: true
  40910. },
  40911. {
  40912. name: "Macro",
  40913. height: math.unit(2.5, "gigameters")
  40914. },
  40915. {
  40916. name: "Gigamacro",
  40917. height: math.unit(2, "galaxies")
  40918. },
  40919. ]
  40920. ))
  40921. characterMakers.push(() => makeCharacter(
  40922. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  40923. {
  40924. side: {
  40925. height: math.unit(32, "feet"),
  40926. weight: math.unit(250000, "lb"),
  40927. name: "Side",
  40928. image: {
  40929. source: "./media/characters/silverwing/side.svg",
  40930. extra: 1100/1019,
  40931. bottom: 204/1304
  40932. }
  40933. },
  40934. },
  40935. [
  40936. {
  40937. name: "Normal",
  40938. height: math.unit(32, "feet"),
  40939. default: true
  40940. },
  40941. ]
  40942. ))
  40943. characterMakers.push(() => makeCharacter(
  40944. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  40945. {
  40946. front: {
  40947. height: math.unit(6 + 6/12, "feet"),
  40948. weight: math.unit(350, "lb"),
  40949. name: "Front",
  40950. image: {
  40951. source: "./media/characters/tristan-hawthorne/front.svg",
  40952. extra: 1159/1124,
  40953. bottom: 37/1196
  40954. }
  40955. },
  40956. },
  40957. [
  40958. {
  40959. name: "Normal",
  40960. height: math.unit(6 + 6/12, "feet"),
  40961. default: true
  40962. },
  40963. ]
  40964. ))
  40965. characterMakers.push(() => makeCharacter(
  40966. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  40967. {
  40968. front: {
  40969. height: math.unit(5 + 11/12, "feet"),
  40970. weight: math.unit(190, "lb"),
  40971. name: "Front",
  40972. image: {
  40973. source: "./media/characters/mizu/front.svg",
  40974. extra: 1988/1788,
  40975. bottom: 14/2002
  40976. }
  40977. },
  40978. },
  40979. [
  40980. {
  40981. name: "Normal",
  40982. height: math.unit(5 + 11/12, "feet"),
  40983. default: true
  40984. },
  40985. ]
  40986. ))
  40987. characterMakers.push(() => makeCharacter(
  40988. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  40989. {
  40990. front: {
  40991. height: math.unit(6, "feet"),
  40992. name: "Front",
  40993. image: {
  40994. source: "./media/characters/moonlight-rose-terra/front.svg",
  40995. extra: 1434/1252,
  40996. bottom: 48/1482
  40997. }
  40998. },
  40999. },
  41000. [
  41001. {
  41002. name: "TRAPPIST-1D",
  41003. height: math.unit(4992*2, "km")
  41004. },
  41005. {
  41006. name: "Earth",
  41007. height: math.unit(6367*2, "km"),
  41008. default: true
  41009. },
  41010. {
  41011. name: "Kepler-22b",
  41012. height: math.unit(15282*2, "km")
  41013. },
  41014. ]
  41015. ))
  41016. characterMakers.push(() => makeCharacter(
  41017. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  41018. {
  41019. front: {
  41020. height: math.unit(6, "feet"),
  41021. name: "Front",
  41022. image: {
  41023. source: "./media/characters/moonlight-rose-neptune/front.svg",
  41024. extra: 1851/1712,
  41025. bottom: 0/1851
  41026. }
  41027. },
  41028. },
  41029. [
  41030. {
  41031. name: "Enceladus",
  41032. height: math.unit(513*2, "km")
  41033. },
  41034. {
  41035. name: "Europe",
  41036. height: math.unit(1560*2, "km")
  41037. },
  41038. {
  41039. name: "Neptune",
  41040. height: math.unit(24622*2, "km"),
  41041. default: true
  41042. },
  41043. {
  41044. name: "CoRoT-9b",
  41045. height: math.unit(75067*2, "km")
  41046. },
  41047. ]
  41048. ))
  41049. characterMakers.push(() => makeCharacter(
  41050. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  41051. {
  41052. front: {
  41053. height: math.unit(6, "feet"),
  41054. name: "Front",
  41055. image: {
  41056. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  41057. extra: 1367/1286,
  41058. bottom: 55/1422
  41059. }
  41060. },
  41061. },
  41062. [
  41063. {
  41064. name: "Saturn",
  41065. height: math.unit(58232*2, "km")
  41066. },
  41067. {
  41068. name: "Jupiter",
  41069. height: math.unit(69911*2, "km"),
  41070. default: true
  41071. },
  41072. {
  41073. name: "HD 100546 b",
  41074. height: math.unit(482938, "km")
  41075. },
  41076. ]
  41077. ))
  41078. characterMakers.push(() => makeCharacter(
  41079. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41080. {
  41081. front: {
  41082. height: math.unit(1.7, "feet"),
  41083. weight: math.unit(50, "lb"),
  41084. name: "Front",
  41085. image: {
  41086. source: "./media/characters/dechroma/front.svg",
  41087. extra: 1095/859,
  41088. bottom: 64/1159
  41089. }
  41090. },
  41091. },
  41092. [
  41093. {
  41094. name: "Normal",
  41095. height: math.unit(1.7, "feet"),
  41096. default: true
  41097. },
  41098. ]
  41099. ))
  41100. characterMakers.push(() => makeCharacter(
  41101. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41102. {
  41103. side: {
  41104. height: math.unit(30, "feet"),
  41105. name: "Side",
  41106. image: {
  41107. source: "./media/characters/veluren-thanazel/side.svg",
  41108. extra: 1611/633,
  41109. bottom: 118/1729
  41110. }
  41111. },
  41112. front: {
  41113. height: math.unit(30, "feet"),
  41114. name: "Front",
  41115. image: {
  41116. source: "./media/characters/veluren-thanazel/front.svg",
  41117. extra: 1486/636,
  41118. bottom: 238/1724
  41119. }
  41120. },
  41121. head: {
  41122. height: math.unit(21.4, "feet"),
  41123. name: "Head",
  41124. image: {
  41125. source: "./media/characters/veluren-thanazel/head.svg"
  41126. }
  41127. },
  41128. genitals: {
  41129. height: math.unit(19.4, "feet"),
  41130. name: "Genitals",
  41131. image: {
  41132. source: "./media/characters/veluren-thanazel/genitals.svg"
  41133. }
  41134. },
  41135. },
  41136. [
  41137. {
  41138. name: "Social",
  41139. height: math.unit(6, "feet")
  41140. },
  41141. {
  41142. name: "Play",
  41143. height: math.unit(12, "feet")
  41144. },
  41145. {
  41146. name: "True",
  41147. height: math.unit(30, "feet"),
  41148. default: true
  41149. },
  41150. ]
  41151. ))
  41152. characterMakers.push(() => makeCharacter(
  41153. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41154. {
  41155. front: {
  41156. height: math.unit(7 + 6/12, "feet"),
  41157. weight: math.unit(500, "kg"),
  41158. name: "Front",
  41159. image: {
  41160. source: "./media/characters/arcturas/front.svg",
  41161. extra: 1700/1500,
  41162. bottom: 145/1845
  41163. }
  41164. },
  41165. },
  41166. [
  41167. {
  41168. name: "Normal",
  41169. height: math.unit(7 + 6/12, "feet"),
  41170. default: true
  41171. },
  41172. ]
  41173. ))
  41174. characterMakers.push(() => makeCharacter(
  41175. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41176. {
  41177. side: {
  41178. height: math.unit(6, "feet"),
  41179. weight: math.unit(2, "tons"),
  41180. name: "Side",
  41181. image: {
  41182. source: "./media/characters/vitaen/side.svg",
  41183. extra: 1157/617,
  41184. bottom: 122/1279
  41185. }
  41186. },
  41187. },
  41188. [
  41189. {
  41190. name: "Normal",
  41191. height: math.unit(6, "feet"),
  41192. default: true
  41193. },
  41194. ]
  41195. ))
  41196. characterMakers.push(() => makeCharacter(
  41197. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41198. {
  41199. front: {
  41200. height: math.unit(19, "feet"),
  41201. name: "Front",
  41202. image: {
  41203. source: "./media/characters/fia-dreamweaver/front.svg",
  41204. extra: 1630/1504,
  41205. bottom: 25/1655
  41206. }
  41207. },
  41208. },
  41209. [
  41210. {
  41211. name: "Normal",
  41212. height: math.unit(19, "feet"),
  41213. default: true
  41214. },
  41215. ]
  41216. ))
  41217. characterMakers.push(() => makeCharacter(
  41218. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41219. {
  41220. front: {
  41221. height: math.unit(5 + 4/12, "feet"),
  41222. name: "Front",
  41223. image: {
  41224. source: "./media/characters/artan/front.svg",
  41225. extra: 1618/1535,
  41226. bottom: 46/1664
  41227. }
  41228. },
  41229. back: {
  41230. height: math.unit(5 + 4/12, "feet"),
  41231. name: "Back",
  41232. image: {
  41233. source: "./media/characters/artan/back.svg",
  41234. extra: 1618/1543,
  41235. bottom: 31/1649
  41236. }
  41237. },
  41238. },
  41239. [
  41240. {
  41241. name: "Normal",
  41242. height: math.unit(5 + 4/12, "feet"),
  41243. default: true
  41244. },
  41245. ]
  41246. ))
  41247. characterMakers.push(() => makeCharacter(
  41248. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41249. {
  41250. side: {
  41251. height: math.unit(182, "cm"),
  41252. weight: math.unit(1000, "lb"),
  41253. name: "Side",
  41254. image: {
  41255. source: "./media/characters/silver-dragon/side.svg",
  41256. extra: 710/287,
  41257. bottom: 88/798
  41258. }
  41259. },
  41260. },
  41261. [
  41262. {
  41263. name: "Normal",
  41264. height: math.unit(182, "cm"),
  41265. default: true
  41266. },
  41267. ]
  41268. ))
  41269. characterMakers.push(() => makeCharacter(
  41270. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41271. {
  41272. side: {
  41273. height: math.unit(6 + 6/12, "feet"),
  41274. weight: math.unit(1.5, "tons"),
  41275. name: "Side",
  41276. image: {
  41277. source: "./media/characters/zephyr/side.svg",
  41278. extra: 1433/586,
  41279. bottom: 109/1542
  41280. }
  41281. },
  41282. },
  41283. [
  41284. {
  41285. name: "Normal",
  41286. height: math.unit(6 + 6/12, "feet"),
  41287. default: true
  41288. },
  41289. ]
  41290. ))
  41291. characterMakers.push(() => makeCharacter(
  41292. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41293. {
  41294. side: {
  41295. height: math.unit(1, "feet"),
  41296. name: "Side",
  41297. image: {
  41298. source: "./media/characters/vixye/side.svg",
  41299. extra: 632/541,
  41300. bottom: 0/632
  41301. }
  41302. },
  41303. },
  41304. [
  41305. {
  41306. name: "Normal",
  41307. height: math.unit(1, "feet"),
  41308. default: true
  41309. },
  41310. {
  41311. name: "True",
  41312. height: math.unit(1e15, "multiverses")
  41313. },
  41314. ]
  41315. ))
  41316. characterMakers.push(() => makeCharacter(
  41317. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41318. {
  41319. front: {
  41320. height: math.unit(8 + 2/12, "feet"),
  41321. weight: math.unit(650, "lb"),
  41322. name: "Front",
  41323. image: {
  41324. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41325. extra: 1174/1137,
  41326. bottom: 82/1256
  41327. }
  41328. },
  41329. back: {
  41330. height: math.unit(8 + 2/12, "feet"),
  41331. weight: math.unit(650, "lb"),
  41332. name: "Back",
  41333. image: {
  41334. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41335. extra: 1204/1157,
  41336. bottom: 46/1250
  41337. }
  41338. },
  41339. },
  41340. [
  41341. {
  41342. name: "Wildform",
  41343. height: math.unit(8 + 2/12, "feet"),
  41344. default: true
  41345. },
  41346. ]
  41347. ))
  41348. characterMakers.push(() => makeCharacter(
  41349. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41350. {
  41351. front: {
  41352. height: math.unit(18, "feet"),
  41353. name: "Front",
  41354. image: {
  41355. source: "./media/characters/cyphin/front.svg",
  41356. extra: 970/886,
  41357. bottom: 42/1012
  41358. }
  41359. },
  41360. back: {
  41361. height: math.unit(18, "feet"),
  41362. name: "Back",
  41363. image: {
  41364. source: "./media/characters/cyphin/back.svg",
  41365. extra: 1009/894,
  41366. bottom: 24/1033
  41367. }
  41368. },
  41369. head: {
  41370. height: math.unit(5.05, "feet"),
  41371. name: "Head",
  41372. image: {
  41373. source: "./media/characters/cyphin/head.svg"
  41374. }
  41375. },
  41376. tailbud: {
  41377. height: math.unit(5, "feet"),
  41378. name: "Tailbud",
  41379. image: {
  41380. source: "./media/characters/cyphin/tailbud.svg"
  41381. }
  41382. },
  41383. },
  41384. [
  41385. ]
  41386. ))
  41387. characterMakers.push(() => makeCharacter(
  41388. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41389. {
  41390. side: {
  41391. height: math.unit(10, "feet"),
  41392. weight: math.unit(6, "tons"),
  41393. name: "Side",
  41394. image: {
  41395. source: "./media/characters/raijin/side.svg",
  41396. extra: 1529/613,
  41397. bottom: 337/1866
  41398. }
  41399. },
  41400. },
  41401. [
  41402. {
  41403. name: "Normal",
  41404. height: math.unit(10, "feet"),
  41405. default: true
  41406. },
  41407. ]
  41408. ))
  41409. characterMakers.push(() => makeCharacter(
  41410. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41411. {
  41412. side: {
  41413. height: math.unit(9, "feet"),
  41414. name: "Side",
  41415. image: {
  41416. source: "./media/characters/nilghais/side.svg",
  41417. extra: 1047/744,
  41418. bottom: 91/1138
  41419. }
  41420. },
  41421. head: {
  41422. height: math.unit(3.14, "feet"),
  41423. name: "Head",
  41424. image: {
  41425. source: "./media/characters/nilghais/head.svg"
  41426. }
  41427. },
  41428. mouth: {
  41429. height: math.unit(4.6, "feet"),
  41430. name: "Mouth",
  41431. image: {
  41432. source: "./media/characters/nilghais/mouth.svg"
  41433. }
  41434. },
  41435. wings: {
  41436. height: math.unit(24, "feet"),
  41437. name: "Wings",
  41438. image: {
  41439. source: "./media/characters/nilghais/wings.svg"
  41440. }
  41441. },
  41442. ass: {
  41443. height: math.unit(6.12, "feet"),
  41444. name: "Ass",
  41445. image: {
  41446. source: "./media/characters/nilghais/ass.svg"
  41447. }
  41448. },
  41449. },
  41450. [
  41451. {
  41452. name: "Normal",
  41453. height: math.unit(9, "feet"),
  41454. default: true
  41455. },
  41456. ]
  41457. ))
  41458. characterMakers.push(() => makeCharacter(
  41459. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41460. {
  41461. regular: {
  41462. height: math.unit(16 + 2/12, "feet"),
  41463. weight: math.unit(2300, "lb"),
  41464. name: "Regular",
  41465. image: {
  41466. source: "./media/characters/zolgar/regular.svg",
  41467. extra: 1246/1004,
  41468. bottom: 124/1370
  41469. }
  41470. },
  41471. boxers: {
  41472. height: math.unit(16 + 2/12, "feet"),
  41473. weight: math.unit(2300, "lb"),
  41474. name: "Boxers",
  41475. image: {
  41476. source: "./media/characters/zolgar/boxers.svg",
  41477. extra: 1246/1004,
  41478. bottom: 124/1370
  41479. }
  41480. },
  41481. armored: {
  41482. height: math.unit(16 + 2/12, "feet"),
  41483. weight: math.unit(2300, "lb"),
  41484. name: "Armored",
  41485. image: {
  41486. source: "./media/characters/zolgar/armored.svg",
  41487. extra: 1246/1004,
  41488. bottom: 124/1370
  41489. }
  41490. },
  41491. goth: {
  41492. height: math.unit(16 + 2/12, "feet"),
  41493. weight: math.unit(2300, "lb"),
  41494. name: "Goth",
  41495. image: {
  41496. source: "./media/characters/zolgar/goth.svg",
  41497. extra: 1246/1004,
  41498. bottom: 124/1370
  41499. }
  41500. },
  41501. },
  41502. [
  41503. {
  41504. name: "Shrunken Down",
  41505. height: math.unit(9 + 2/12, "feet")
  41506. },
  41507. {
  41508. name: "Normal",
  41509. height: math.unit(16 + 2/12, "feet"),
  41510. default: true
  41511. },
  41512. ]
  41513. ))
  41514. characterMakers.push(() => makeCharacter(
  41515. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41516. {
  41517. front: {
  41518. height: math.unit(6, "feet"),
  41519. weight: math.unit(168, "lb"),
  41520. name: "Front",
  41521. image: {
  41522. source: "./media/characters/luca/front.svg",
  41523. extra: 841/667,
  41524. bottom: 102/943
  41525. }
  41526. },
  41527. },
  41528. [
  41529. {
  41530. name: "Normal",
  41531. height: math.unit(6, "feet"),
  41532. default: true
  41533. },
  41534. ]
  41535. ))
  41536. characterMakers.push(() => makeCharacter(
  41537. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41538. {
  41539. side: {
  41540. height: math.unit(7 + 3/12, "feet"),
  41541. weight: math.unit(312, "lb"),
  41542. name: "Side",
  41543. image: {
  41544. source: "./media/characters/zezo/side.svg",
  41545. extra: 1192/1067,
  41546. bottom: 63/1255
  41547. }
  41548. },
  41549. },
  41550. [
  41551. {
  41552. name: "Normal",
  41553. height: math.unit(7 + 3/12, "feet"),
  41554. default: true
  41555. },
  41556. ]
  41557. ))
  41558. characterMakers.push(() => makeCharacter(
  41559. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41560. {
  41561. front: {
  41562. height: math.unit(5 + 5/12, "feet"),
  41563. weight: math.unit(170, "lb"),
  41564. name: "Front",
  41565. image: {
  41566. source: "./media/characters/mayso/front.svg",
  41567. extra: 1215/1108,
  41568. bottom: 16/1231
  41569. }
  41570. },
  41571. },
  41572. [
  41573. {
  41574. name: "Normal",
  41575. height: math.unit(5 + 5/12, "feet"),
  41576. default: true
  41577. },
  41578. ]
  41579. ))
  41580. characterMakers.push(() => makeCharacter(
  41581. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41582. {
  41583. front: {
  41584. height: math.unit(4 + 3/12, "feet"),
  41585. weight: math.unit(80, "lb"),
  41586. name: "Front",
  41587. image: {
  41588. source: "./media/characters/hess/front.svg",
  41589. extra: 1200/1123,
  41590. bottom: 16/1216
  41591. }
  41592. },
  41593. },
  41594. [
  41595. {
  41596. name: "Normal",
  41597. height: math.unit(4 + 3/12, "feet"),
  41598. default: true
  41599. },
  41600. ]
  41601. ))
  41602. characterMakers.push(() => makeCharacter(
  41603. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41604. {
  41605. front: {
  41606. height: math.unit(1.9, "meters"),
  41607. name: "Front",
  41608. image: {
  41609. source: "./media/characters/ashgar/front.svg",
  41610. extra: 1177/1146,
  41611. bottom: 99/1276
  41612. }
  41613. },
  41614. back: {
  41615. height: math.unit(1.9, "meters"),
  41616. name: "Back",
  41617. image: {
  41618. source: "./media/characters/ashgar/back.svg",
  41619. extra: 1201/1183,
  41620. bottom: 53/1254
  41621. }
  41622. },
  41623. feral: {
  41624. height: math.unit(1.4, "meters"),
  41625. name: "Feral",
  41626. image: {
  41627. source: "./media/characters/ashgar/feral.svg",
  41628. extra: 370/345,
  41629. bottom: 45/415
  41630. }
  41631. },
  41632. },
  41633. [
  41634. {
  41635. name: "Normal",
  41636. height: math.unit(1.9, "meters"),
  41637. default: true
  41638. },
  41639. ]
  41640. ))
  41641. characterMakers.push(() => makeCharacter(
  41642. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  41643. {
  41644. regular: {
  41645. height: math.unit(6, "feet"),
  41646. weight: math.unit(220, "lb"),
  41647. name: "Regular",
  41648. image: {
  41649. source: "./media/characters/phillip/regular.svg",
  41650. extra: 1373/1277,
  41651. bottom: 75/1448
  41652. }
  41653. },
  41654. dressed: {
  41655. height: math.unit(6, "feet"),
  41656. weight: math.unit(220, "lb"),
  41657. name: "Dressed",
  41658. image: {
  41659. source: "./media/characters/phillip/dressed.svg",
  41660. extra: 1373/1277,
  41661. bottom: 75/1448
  41662. }
  41663. },
  41664. paw: {
  41665. height: math.unit(1.44, "feet"),
  41666. name: "Paw",
  41667. image: {
  41668. source: "./media/characters/phillip/paw.svg"
  41669. }
  41670. },
  41671. },
  41672. [
  41673. {
  41674. name: "Normal",
  41675. height: math.unit(6, "feet"),
  41676. default: true
  41677. },
  41678. ]
  41679. ))
  41680. characterMakers.push(() => makeCharacter(
  41681. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  41682. {
  41683. side: {
  41684. height: math.unit(42, "feet"),
  41685. name: "Side",
  41686. image: {
  41687. source: "./media/characters/uvula/side.svg",
  41688. extra: 683/586,
  41689. bottom: 60/743
  41690. }
  41691. },
  41692. front: {
  41693. height: math.unit(42, "feet"),
  41694. name: "Front",
  41695. image: {
  41696. source: "./media/characters/uvula/front.svg",
  41697. extra: 705/613,
  41698. bottom: 54/759
  41699. }
  41700. },
  41701. maw: {
  41702. height: math.unit(23.5, "feet"),
  41703. name: "Maw",
  41704. image: {
  41705. source: "./media/characters/uvula/maw.svg"
  41706. }
  41707. },
  41708. },
  41709. [
  41710. {
  41711. name: "Original Size",
  41712. height: math.unit(14, "inches")
  41713. },
  41714. {
  41715. name: "Human Size",
  41716. height: math.unit(6, "feet")
  41717. },
  41718. {
  41719. name: "Big",
  41720. height: math.unit(42, "feet"),
  41721. default: true
  41722. },
  41723. {
  41724. name: "Bigger",
  41725. height: math.unit(100, "feet")
  41726. },
  41727. ]
  41728. ))
  41729. characterMakers.push(() => makeCharacter(
  41730. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  41731. {
  41732. front: {
  41733. height: math.unit(5 + 11/12, "feet"),
  41734. name: "Front",
  41735. image: {
  41736. source: "./media/characters/lannah/front.svg",
  41737. extra: 1208/1113,
  41738. bottom: 97/1305
  41739. }
  41740. },
  41741. },
  41742. [
  41743. {
  41744. name: "Normal",
  41745. height: math.unit(5 + 11/12, "feet"),
  41746. default: true
  41747. },
  41748. ]
  41749. ))
  41750. characterMakers.push(() => makeCharacter(
  41751. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  41752. {
  41753. front: {
  41754. height: math.unit(6 + 3/12, "feet"),
  41755. weight: math.unit(3.5, "tons"),
  41756. name: "Front",
  41757. image: {
  41758. source: "./media/characters/emberflame/front.svg",
  41759. extra: 1198/672,
  41760. bottom: 82/1280
  41761. }
  41762. },
  41763. side: {
  41764. height: math.unit(6 + 3/12, "feet"),
  41765. weight: math.unit(3.5, "tons"),
  41766. name: "Side",
  41767. image: {
  41768. source: "./media/characters/emberflame/side.svg",
  41769. extra: 938/527,
  41770. bottom: 56/994
  41771. }
  41772. },
  41773. },
  41774. [
  41775. {
  41776. name: "Normal",
  41777. height: math.unit(6 + 3/12, "feet"),
  41778. default: true
  41779. },
  41780. ]
  41781. ))
  41782. characterMakers.push(() => makeCharacter(
  41783. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  41784. {
  41785. side: {
  41786. height: math.unit(17.5, "feet"),
  41787. weight: math.unit(35, "tons"),
  41788. name: "Side",
  41789. image: {
  41790. source: "./media/characters/sophie-ambrose/side.svg",
  41791. extra: 1573/1242,
  41792. bottom: 71/1644
  41793. }
  41794. },
  41795. maw: {
  41796. height: math.unit(7.4, "feet"),
  41797. name: "Maw",
  41798. image: {
  41799. source: "./media/characters/sophie-ambrose/maw.svg"
  41800. }
  41801. },
  41802. },
  41803. [
  41804. {
  41805. name: "Normal",
  41806. height: math.unit(17.5, "feet"),
  41807. default: true
  41808. },
  41809. ]
  41810. ))
  41811. characterMakers.push(() => makeCharacter(
  41812. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  41813. {
  41814. front: {
  41815. height: math.unit(280, "feet"),
  41816. weight: math.unit(550, "tons"),
  41817. name: "Front",
  41818. image: {
  41819. source: "./media/characters/king-mugi/front.svg",
  41820. extra: 1102/947,
  41821. bottom: 104/1206
  41822. }
  41823. },
  41824. },
  41825. [
  41826. {
  41827. name: "King Mugi",
  41828. height: math.unit(280, "feet"),
  41829. default: true
  41830. },
  41831. ]
  41832. ))
  41833. characterMakers.push(() => makeCharacter(
  41834. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  41835. {
  41836. front: {
  41837. height: math.unit(64, "meters"),
  41838. name: "Front",
  41839. image: {
  41840. source: "./media/characters/nova-fox/front.svg",
  41841. extra: 1310/1246,
  41842. bottom: 65/1375
  41843. }
  41844. },
  41845. },
  41846. [
  41847. {
  41848. name: "Macro",
  41849. height: math.unit(64, "meters"),
  41850. default: true
  41851. },
  41852. ]
  41853. ))
  41854. characterMakers.push(() => makeCharacter(
  41855. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  41856. {
  41857. front: {
  41858. height: math.unit(6 + 3/12, "feet"),
  41859. weight: math.unit(170, "lb"),
  41860. name: "Front",
  41861. image: {
  41862. source: "./media/characters/sam-bat/front.svg",
  41863. extra: 1601/1411,
  41864. bottom: 125/1726
  41865. }
  41866. },
  41867. back: {
  41868. height: math.unit(6 + 3/12, "feet"),
  41869. weight: math.unit(170, "lb"),
  41870. name: "Back",
  41871. image: {
  41872. source: "./media/characters/sam-bat/back.svg",
  41873. extra: 1577/1405,
  41874. bottom: 58/1635
  41875. }
  41876. },
  41877. },
  41878. [
  41879. {
  41880. name: "Normal",
  41881. height: math.unit(6 + 3/12, "feet"),
  41882. default: true
  41883. },
  41884. ]
  41885. ))
  41886. characterMakers.push(() => makeCharacter(
  41887. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  41888. {
  41889. front: {
  41890. height: math.unit(59, "feet"),
  41891. weight: math.unit(40000, "lb"),
  41892. name: "Front",
  41893. image: {
  41894. source: "./media/characters/inari/front.svg",
  41895. extra: 1884/1350,
  41896. bottom: 95/1979
  41897. }
  41898. },
  41899. },
  41900. [
  41901. {
  41902. name: "Gigantamax",
  41903. height: math.unit(59, "feet"),
  41904. default: true
  41905. },
  41906. ]
  41907. ))
  41908. characterMakers.push(() => makeCharacter(
  41909. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  41910. {
  41911. front: {
  41912. height: math.unit(5 + 8/12, "feet"),
  41913. name: "Front",
  41914. image: {
  41915. source: "./media/characters/elizabeth/front.svg",
  41916. extra: 1395/1298,
  41917. bottom: 54/1449
  41918. }
  41919. },
  41920. mouth: {
  41921. height: math.unit(1.97, "feet"),
  41922. name: "Mouth",
  41923. image: {
  41924. source: "./media/characters/elizabeth/mouth.svg"
  41925. }
  41926. },
  41927. foot: {
  41928. height: math.unit(1.17, "feet"),
  41929. name: "Foot",
  41930. image: {
  41931. source: "./media/characters/elizabeth/foot.svg"
  41932. }
  41933. },
  41934. },
  41935. [
  41936. {
  41937. name: "Normal",
  41938. height: math.unit(5 + 8/12, "feet"),
  41939. default: true
  41940. },
  41941. {
  41942. name: "Minimacro",
  41943. height: math.unit(18, "feet")
  41944. },
  41945. {
  41946. name: "Macro",
  41947. height: math.unit(180, "feet")
  41948. },
  41949. ]
  41950. ))
  41951. characterMakers.push(() => makeCharacter(
  41952. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  41953. {
  41954. front: {
  41955. height: math.unit(5 + 2/12, "feet"),
  41956. name: "Front",
  41957. image: {
  41958. source: "./media/characters/october-gossamer/front.svg",
  41959. extra: 505/454,
  41960. bottom: 7/512
  41961. }
  41962. },
  41963. back: {
  41964. height: math.unit(5 + 2/12, "feet"),
  41965. name: "Back",
  41966. image: {
  41967. source: "./media/characters/october-gossamer/back.svg",
  41968. extra: 501/454,
  41969. bottom: 11/512
  41970. }
  41971. },
  41972. },
  41973. [
  41974. {
  41975. name: "Normal",
  41976. height: math.unit(5 + 2/12, "feet"),
  41977. default: true
  41978. },
  41979. ]
  41980. ))
  41981. characterMakers.push(() => makeCharacter(
  41982. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  41983. {
  41984. front: {
  41985. height: math.unit(5, "feet"),
  41986. name: "Front",
  41987. image: {
  41988. source: "./media/characters/epiglottis/front.svg",
  41989. extra: 923/849,
  41990. bottom: 17/940
  41991. }
  41992. },
  41993. },
  41994. [
  41995. {
  41996. name: "Original Size",
  41997. height: math.unit(10, "inches")
  41998. },
  41999. {
  42000. name: "Human Size",
  42001. height: math.unit(5, "feet"),
  42002. default: true
  42003. },
  42004. {
  42005. name: "Big",
  42006. height: math.unit(25, "feet")
  42007. },
  42008. {
  42009. name: "Bigger",
  42010. height: math.unit(50, "feet")
  42011. },
  42012. {
  42013. name: "oh lawd",
  42014. height: math.unit(75, "feet")
  42015. },
  42016. ]
  42017. ))
  42018. characterMakers.push(() => makeCharacter(
  42019. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  42020. {
  42021. front: {
  42022. height: math.unit(2 + 4/12, "feet"),
  42023. weight: math.unit(60, "lb"),
  42024. name: "Front",
  42025. image: {
  42026. source: "./media/characters/lerm/front.svg",
  42027. extra: 796/790,
  42028. bottom: 79/875
  42029. }
  42030. },
  42031. },
  42032. [
  42033. {
  42034. name: "Normal",
  42035. height: math.unit(2 + 4/12, "feet"),
  42036. default: true
  42037. },
  42038. ]
  42039. ))
  42040. characterMakers.push(() => makeCharacter(
  42041. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42042. {
  42043. front: {
  42044. height: math.unit(5.5, "feet"),
  42045. weight: math.unit(130, "lb"),
  42046. name: "Front",
  42047. image: {
  42048. source: "./media/characters/xena-nebadon/front.svg",
  42049. extra: 1828/1730,
  42050. bottom: 79/1907
  42051. }
  42052. },
  42053. },
  42054. [
  42055. {
  42056. name: "Tiny Puppy",
  42057. height: math.unit(3, "inches")
  42058. },
  42059. {
  42060. name: "Normal",
  42061. height: math.unit(5.5, "feet"),
  42062. default: true
  42063. },
  42064. {
  42065. name: "Lotta Lady",
  42066. height: math.unit(12, "feet")
  42067. },
  42068. {
  42069. name: "Pretty Big",
  42070. height: math.unit(100, "feet")
  42071. },
  42072. {
  42073. name: "Big",
  42074. height: math.unit(500, "feet")
  42075. },
  42076. {
  42077. name: "Skyscraper Toys",
  42078. height: math.unit(2500, "feet")
  42079. },
  42080. {
  42081. name: "Plane Catcher",
  42082. height: math.unit(8, "miles")
  42083. },
  42084. {
  42085. name: "Planet Toys",
  42086. height: math.unit(15, "earths")
  42087. },
  42088. {
  42089. name: "Stardust",
  42090. height: math.unit(0.25, "galaxies")
  42091. },
  42092. {
  42093. name: "Snacks",
  42094. height: math.unit(70, "universes")
  42095. },
  42096. ]
  42097. ))
  42098. characterMakers.push(() => makeCharacter(
  42099. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42100. {
  42101. front: {
  42102. height: math.unit(1.6, "meters"),
  42103. weight: math.unit(60, "kg"),
  42104. name: "Front",
  42105. image: {
  42106. source: "./media/characters/bounty/front.svg",
  42107. extra: 1426/1308,
  42108. bottom: 15/1441
  42109. }
  42110. },
  42111. },
  42112. [
  42113. {
  42114. name: "Normal",
  42115. height: math.unit(1.6, "meters"),
  42116. default: true
  42117. },
  42118. {
  42119. name: "Macro",
  42120. height: math.unit(300, "meters")
  42121. },
  42122. ]
  42123. ))
  42124. characterMakers.push(() => makeCharacter(
  42125. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42126. {
  42127. front: {
  42128. height: math.unit(2 + 8/12, "feet"),
  42129. weight: math.unit(15, "lb"),
  42130. name: "Front",
  42131. image: {
  42132. source: "./media/characters/mochi/front.svg",
  42133. extra: 1022/852,
  42134. bottom: 435/1457
  42135. }
  42136. },
  42137. back: {
  42138. height: math.unit(2 + 8/12, "feet"),
  42139. weight: math.unit(15, "lb"),
  42140. name: "Back",
  42141. image: {
  42142. source: "./media/characters/mochi/back.svg",
  42143. extra: 1335/1119,
  42144. bottom: 39/1374
  42145. }
  42146. },
  42147. bird: {
  42148. height: math.unit(2 + 8/12, "feet"),
  42149. weight: math.unit(15, "lb"),
  42150. name: "Bird",
  42151. image: {
  42152. source: "./media/characters/mochi/bird.svg",
  42153. extra: 1251/1113,
  42154. bottom: 178/1429
  42155. }
  42156. },
  42157. kaiju: {
  42158. height: math.unit(154, "feet"),
  42159. weight: math.unit(1e7, "lb"),
  42160. name: "Kaiju",
  42161. image: {
  42162. source: "./media/characters/mochi/kaiju.svg",
  42163. extra: 460/324,
  42164. bottom: 40/500
  42165. }
  42166. },
  42167. head: {
  42168. height: math.unit(1.21, "feet"),
  42169. name: "Head",
  42170. image: {
  42171. source: "./media/characters/mochi/head.svg"
  42172. }
  42173. },
  42174. alternateTail: {
  42175. height: math.unit(2 + 8/12, "feet"),
  42176. weight: math.unit(45, "lb"),
  42177. name: "Alternate Tail",
  42178. image: {
  42179. source: "./media/characters/mochi/alternate-tail.svg",
  42180. extra: 139/76,
  42181. bottom: 45/184
  42182. }
  42183. },
  42184. },
  42185. [
  42186. {
  42187. name: "Micro",
  42188. height: math.unit(2, "inches")
  42189. },
  42190. {
  42191. name: "Normal",
  42192. height: math.unit(2 + 8/12, "feet"),
  42193. default: true
  42194. },
  42195. {
  42196. name: "Macro",
  42197. height: math.unit(106, "feet")
  42198. },
  42199. ]
  42200. ))
  42201. characterMakers.push(() => makeCharacter(
  42202. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42203. {
  42204. front: {
  42205. height: math.unit(5.67, "feet"),
  42206. weight: math.unit(135, "lb"),
  42207. name: "Front",
  42208. image: {
  42209. source: "./media/characters/sarel/front.svg",
  42210. extra: 865/788,
  42211. bottom: 97/962
  42212. }
  42213. },
  42214. back: {
  42215. height: math.unit(5.67, "feet"),
  42216. weight: math.unit(135, "lb"),
  42217. name: "Back",
  42218. image: {
  42219. source: "./media/characters/sarel/back.svg",
  42220. extra: 857/777,
  42221. bottom: 32/889
  42222. }
  42223. },
  42224. chozoan: {
  42225. height: math.unit(5.67, "feet"),
  42226. weight: math.unit(135, "lb"),
  42227. name: "Chozoan",
  42228. image: {
  42229. source: "./media/characters/sarel/chozoan.svg",
  42230. extra: 865/788,
  42231. bottom: 97/962
  42232. }
  42233. },
  42234. current: {
  42235. height: math.unit(5.67, "feet"),
  42236. weight: math.unit(135, "lb"),
  42237. name: "Current",
  42238. image: {
  42239. source: "./media/characters/sarel/current.svg",
  42240. extra: 865/788,
  42241. bottom: 97/962
  42242. }
  42243. },
  42244. head: {
  42245. height: math.unit(1.77, "feet"),
  42246. name: "Head",
  42247. image: {
  42248. source: "./media/characters/sarel/head.svg"
  42249. }
  42250. },
  42251. claws: {
  42252. height: math.unit(1.8, "feet"),
  42253. name: "Claws",
  42254. image: {
  42255. source: "./media/characters/sarel/claws.svg"
  42256. }
  42257. },
  42258. clawsAlt: {
  42259. height: math.unit(1.8, "feet"),
  42260. name: "Claws-alt",
  42261. image: {
  42262. source: "./media/characters/sarel/claws-alt.svg"
  42263. }
  42264. },
  42265. },
  42266. [
  42267. {
  42268. name: "Normal",
  42269. height: math.unit(5.67, "feet"),
  42270. default: true
  42271. },
  42272. ]
  42273. ))
  42274. characterMakers.push(() => makeCharacter(
  42275. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42276. {
  42277. front: {
  42278. height: math.unit(5500, "feet"),
  42279. name: "Front",
  42280. image: {
  42281. source: "./media/characters/alyonia/front.svg",
  42282. extra: 1200/1135,
  42283. bottom: 29/1229
  42284. }
  42285. },
  42286. back: {
  42287. height: math.unit(5500, "feet"),
  42288. name: "Back",
  42289. image: {
  42290. source: "./media/characters/alyonia/back.svg",
  42291. extra: 1205/1138,
  42292. bottom: 10/1215
  42293. }
  42294. },
  42295. },
  42296. [
  42297. {
  42298. name: "Small",
  42299. height: math.unit(10, "feet")
  42300. },
  42301. {
  42302. name: "Macro",
  42303. height: math.unit(500, "feet")
  42304. },
  42305. {
  42306. name: "Mega Macro",
  42307. height: math.unit(5500, "feet"),
  42308. default: true
  42309. },
  42310. {
  42311. name: "Mega Macro+",
  42312. height: math.unit(500000, "feet")
  42313. },
  42314. {
  42315. name: "Giga Macro",
  42316. height: math.unit(3000, "miles")
  42317. },
  42318. {
  42319. name: "Tera Macro",
  42320. height: math.unit(2.8e6, "miles")
  42321. },
  42322. {
  42323. name: "Galactic",
  42324. height: math.unit(120000, "lightyears")
  42325. },
  42326. ]
  42327. ))
  42328. characterMakers.push(() => makeCharacter(
  42329. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42330. {
  42331. werewolf: {
  42332. height: math.unit(8, "feet"),
  42333. weight: math.unit(425, "lb"),
  42334. name: "Werewolf",
  42335. image: {
  42336. source: "./media/characters/autumn/werewolf.svg",
  42337. extra: 2154/2031,
  42338. bottom: 160/2314
  42339. }
  42340. },
  42341. human: {
  42342. height: math.unit(5 + 8/12, "feet"),
  42343. weight: math.unit(150, "lb"),
  42344. name: "Human",
  42345. image: {
  42346. source: "./media/characters/autumn/human.svg",
  42347. extra: 1200/1149,
  42348. bottom: 30/1230
  42349. }
  42350. },
  42351. },
  42352. [
  42353. {
  42354. name: "Normal",
  42355. height: math.unit(8, "feet"),
  42356. default: true
  42357. },
  42358. ]
  42359. ))
  42360. characterMakers.push(() => makeCharacter(
  42361. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42362. {
  42363. front: {
  42364. height: math.unit(8 + 5/12, "feet"),
  42365. weight: math.unit(825, "lb"),
  42366. name: "Front",
  42367. image: {
  42368. source: "./media/characters/cobalt-charizard/front.svg",
  42369. extra: 1268/1155,
  42370. bottom: 122/1390
  42371. }
  42372. },
  42373. side: {
  42374. height: math.unit(8 + 5/12, "feet"),
  42375. weight: math.unit(825, "lb"),
  42376. name: "Side",
  42377. image: {
  42378. source: "./media/characters/cobalt-charizard/side.svg",
  42379. extra: 1348/1257,
  42380. bottom: 58/1406
  42381. }
  42382. },
  42383. gMax: {
  42384. height: math.unit(134 + 11/12, "feet"),
  42385. name: "G-Max",
  42386. image: {
  42387. source: "./media/characters/cobalt-charizard/g-max.svg",
  42388. extra: 1835/1541,
  42389. bottom: 151/1986
  42390. }
  42391. },
  42392. },
  42393. [
  42394. {
  42395. name: "Normal",
  42396. height: math.unit(8 + 5/12, "feet"),
  42397. default: true
  42398. },
  42399. ]
  42400. ))
  42401. characterMakers.push(() => makeCharacter(
  42402. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42403. {
  42404. front: {
  42405. height: math.unit(6 + 3/12, "feet"),
  42406. weight: math.unit(210, "lb"),
  42407. name: "Front",
  42408. image: {
  42409. source: "./media/characters/stella/front.svg",
  42410. extra: 3549/3335,
  42411. bottom: 51/3600
  42412. }
  42413. },
  42414. },
  42415. [
  42416. {
  42417. name: "Normal",
  42418. height: math.unit(6 + 3/12, "feet"),
  42419. default: true
  42420. },
  42421. ]
  42422. ))
  42423. characterMakers.push(() => makeCharacter(
  42424. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42425. {
  42426. front: {
  42427. height: math.unit(5, "feet"),
  42428. weight: math.unit(90, "lb"),
  42429. name: "Front",
  42430. image: {
  42431. source: "./media/characters/riley-bishop/front.svg",
  42432. extra: 1450/1428,
  42433. bottom: 152/1602
  42434. }
  42435. },
  42436. },
  42437. [
  42438. {
  42439. name: "Normal",
  42440. height: math.unit(5, "feet"),
  42441. default: true
  42442. },
  42443. ]
  42444. ))
  42445. characterMakers.push(() => makeCharacter(
  42446. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42447. {
  42448. side: {
  42449. height: math.unit(8 + 2/12, "feet"),
  42450. weight: math.unit(500, "kg"),
  42451. name: "Side",
  42452. image: {
  42453. source: "./media/characters/theo-arcanine/side.svg",
  42454. extra: 1342/1074,
  42455. bottom: 111/1453
  42456. }
  42457. },
  42458. },
  42459. [
  42460. {
  42461. name: "Normal",
  42462. height: math.unit(8 + 2/12, "feet"),
  42463. default: true
  42464. },
  42465. ]
  42466. ))
  42467. characterMakers.push(() => makeCharacter(
  42468. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  42469. {
  42470. front: {
  42471. height: math.unit(4, "feet"),
  42472. name: "Front",
  42473. image: {
  42474. source: "./media/characters/kali/front.svg",
  42475. extra: 1921/1357,
  42476. bottom: 70/1991
  42477. }
  42478. },
  42479. },
  42480. [
  42481. {
  42482. name: "Normal",
  42483. height: math.unit(4, "feet"),
  42484. default: true
  42485. },
  42486. {
  42487. name: "Macro",
  42488. height: math.unit(32, "meters")
  42489. },
  42490. {
  42491. name: "Macro+",
  42492. height: math.unit(150, "meters")
  42493. },
  42494. {
  42495. name: "Megamacro",
  42496. height: math.unit(7500, "meters")
  42497. },
  42498. {
  42499. name: "Megamacro+",
  42500. height: math.unit(80, "kilometers")
  42501. },
  42502. ]
  42503. ))
  42504. characterMakers.push(() => makeCharacter(
  42505. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  42506. {
  42507. side: {
  42508. height: math.unit(5 + 11/12, "feet"),
  42509. weight: math.unit(236, "lb"),
  42510. name: "Side",
  42511. image: {
  42512. source: "./media/characters/gapp/side.svg",
  42513. extra: 775/340,
  42514. bottom: 58/833
  42515. }
  42516. },
  42517. mouth: {
  42518. height: math.unit(2.98, "feet"),
  42519. name: "Mouth",
  42520. image: {
  42521. source: "./media/characters/gapp/mouth.svg"
  42522. }
  42523. },
  42524. },
  42525. [
  42526. {
  42527. name: "Normal",
  42528. height: math.unit(5 + 1/12, "feet"),
  42529. default: true
  42530. },
  42531. ]
  42532. ))
  42533. characterMakers.push(() => makeCharacter(
  42534. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  42535. {
  42536. front: {
  42537. height: math.unit(6, "feet"),
  42538. name: "Front",
  42539. image: {
  42540. source: "./media/characters/persephone/front.svg",
  42541. extra: 1895/1717,
  42542. bottom: 96/1991
  42543. }
  42544. },
  42545. back: {
  42546. height: math.unit(6, "feet"),
  42547. name: "Back",
  42548. image: {
  42549. source: "./media/characters/persephone/back.svg",
  42550. extra: 1868/1679,
  42551. bottom: 26/1894
  42552. }
  42553. },
  42554. casual: {
  42555. height: math.unit(6, "feet"),
  42556. name: "Casual",
  42557. image: {
  42558. source: "./media/characters/persephone/casual.svg",
  42559. extra: 1713/1541,
  42560. bottom: 76/1789
  42561. }
  42562. },
  42563. },
  42564. [
  42565. {
  42566. name: "Human Size",
  42567. height: math.unit(6, "feet")
  42568. },
  42569. {
  42570. name: "Big Steppy",
  42571. height: math.unit(600, "meters"),
  42572. default: true
  42573. },
  42574. {
  42575. name: "Galaxy Brain",
  42576. height: math.unit(1, "zettameter")
  42577. },
  42578. ]
  42579. ))
  42580. characterMakers.push(() => makeCharacter(
  42581. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  42582. {
  42583. front: {
  42584. height: math.unit(1.85, "meters"),
  42585. name: "Front",
  42586. image: {
  42587. source: "./media/characters/riley-foxthing/front.svg",
  42588. extra: 1495/1354,
  42589. bottom: 122/1617
  42590. }
  42591. },
  42592. frontAlt: {
  42593. height: math.unit(1.85, "meters"),
  42594. name: "Front (Alt)",
  42595. image: {
  42596. source: "./media/characters/riley-foxthing/front-alt.svg",
  42597. extra: 1572/1389,
  42598. bottom: 116/1688
  42599. }
  42600. },
  42601. },
  42602. [
  42603. {
  42604. name: "Normal Sized",
  42605. height: math.unit(1.85, "meters"),
  42606. default: true
  42607. },
  42608. {
  42609. name: "Quite Sizable",
  42610. height: math.unit(5, "meters")
  42611. },
  42612. {
  42613. name: "Rather Large",
  42614. height: math.unit(20, "meters")
  42615. },
  42616. {
  42617. name: "Macro",
  42618. height: math.unit(450, "meters")
  42619. },
  42620. {
  42621. name: "Giga",
  42622. height: math.unit(5, "km")
  42623. },
  42624. ]
  42625. ))
  42626. characterMakers.push(() => makeCharacter(
  42627. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  42628. {
  42629. front: {
  42630. height: math.unit(6, "feet"),
  42631. weight: math.unit(200, "lb"),
  42632. name: "Front",
  42633. image: {
  42634. source: "./media/characters/blizzard/front.svg",
  42635. extra: 1136/990,
  42636. bottom: 136/1272
  42637. }
  42638. },
  42639. back: {
  42640. height: math.unit(6, "feet"),
  42641. weight: math.unit(200, "lb"),
  42642. name: "Back",
  42643. image: {
  42644. source: "./media/characters/blizzard/back.svg",
  42645. extra: 1175/1034,
  42646. bottom: 97/1272
  42647. }
  42648. },
  42649. sitting: {
  42650. height: math.unit(3.725, "feet"),
  42651. weight: math.unit(200, "lb"),
  42652. name: "Sitting",
  42653. image: {
  42654. source: "./media/characters/blizzard/sitting.svg",
  42655. extra: 581/485,
  42656. bottom: 90/671
  42657. }
  42658. },
  42659. frontWizard: {
  42660. height: math.unit(7.9, "feet"),
  42661. weight: math.unit(200, "lb"),
  42662. name: "Front (Wizard)",
  42663. image: {
  42664. source: "./media/characters/blizzard/front-wizard.svg"
  42665. }
  42666. },
  42667. backWizard: {
  42668. height: math.unit(7.9, "feet"),
  42669. weight: math.unit(200, "lb"),
  42670. name: "Back (Wizard)",
  42671. image: {
  42672. source: "./media/characters/blizzard/back-wizard.svg"
  42673. }
  42674. },
  42675. frontNsfw: {
  42676. height: math.unit(6, "feet"),
  42677. weight: math.unit(200, "lb"),
  42678. name: "Front (NSFW)",
  42679. image: {
  42680. source: "./media/characters/blizzard/front-nsfw.svg",
  42681. extra: 1136/990,
  42682. bottom: 136/1272
  42683. }
  42684. },
  42685. backNsfw: {
  42686. height: math.unit(6, "feet"),
  42687. weight: math.unit(200, "lb"),
  42688. name: "Back (NSFW)",
  42689. image: {
  42690. source: "./media/characters/blizzard/back-nsfw.svg",
  42691. extra: 1175/1034,
  42692. bottom: 97/1272
  42693. }
  42694. },
  42695. sittingNsfw: {
  42696. height: math.unit(3.725, "feet"),
  42697. weight: math.unit(200, "lb"),
  42698. name: "Sitting (NSFW)",
  42699. image: {
  42700. source: "./media/characters/blizzard/sitting-nsfw.svg",
  42701. extra: 581/485,
  42702. bottom: 90/671
  42703. }
  42704. },
  42705. wizardFrontNsfw: {
  42706. height: math.unit(7.9, "feet"),
  42707. weight: math.unit(200, "lb"),
  42708. name: "Wizard (Front, NSFW)",
  42709. image: {
  42710. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  42711. }
  42712. },
  42713. },
  42714. [
  42715. {
  42716. name: "Normal",
  42717. height: math.unit(6, "feet"),
  42718. default: true
  42719. },
  42720. ]
  42721. ))
  42722. characterMakers.push(() => makeCharacter(
  42723. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  42724. {
  42725. front: {
  42726. height: math.unit(5 + 2/12, "feet"),
  42727. name: "Front",
  42728. image: {
  42729. source: "./media/characters/lumi/front.svg",
  42730. extra: 1328/1268,
  42731. bottom: 103/1431
  42732. }
  42733. },
  42734. back: {
  42735. height: math.unit(5 + 2/12, "feet"),
  42736. name: "Back",
  42737. image: {
  42738. source: "./media/characters/lumi/back.svg",
  42739. extra: 1381/1327,
  42740. bottom: 43/1424
  42741. }
  42742. },
  42743. },
  42744. [
  42745. {
  42746. name: "Normal",
  42747. height: math.unit(5 + 2/12, "feet"),
  42748. default: true
  42749. },
  42750. ]
  42751. ))
  42752. characterMakers.push(() => makeCharacter(
  42753. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  42754. {
  42755. front: {
  42756. height: math.unit(5 + 9/12, "feet"),
  42757. name: "Front",
  42758. image: {
  42759. source: "./media/characters/aliya-cotton/front.svg",
  42760. extra: 577/564,
  42761. bottom: 29/606
  42762. }
  42763. },
  42764. },
  42765. [
  42766. {
  42767. name: "Normal",
  42768. height: math.unit(5 + 9/12, "feet"),
  42769. default: true
  42770. },
  42771. ]
  42772. ))
  42773. characterMakers.push(() => makeCharacter(
  42774. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  42775. {
  42776. front: {
  42777. height: math.unit(2.7, "meters"),
  42778. weight: math.unit(25000, "lb"),
  42779. name: "Front",
  42780. image: {
  42781. source: "./media/characters/noah-luxray/front.svg",
  42782. extra: 1644/825,
  42783. bottom: 339/1983
  42784. }
  42785. },
  42786. side: {
  42787. height: math.unit(2.97, "meters"),
  42788. weight: math.unit(25000, "lb"),
  42789. name: "Side",
  42790. image: {
  42791. source: "./media/characters/noah-luxray/side.svg",
  42792. extra: 1319/650,
  42793. bottom: 163/1482
  42794. }
  42795. },
  42796. dick: {
  42797. height: math.unit(7.4, "feet"),
  42798. weight: math.unit(2500, "lb"),
  42799. name: "Dick",
  42800. image: {
  42801. source: "./media/characters/noah-luxray/dick.svg"
  42802. }
  42803. },
  42804. dickAlt: {
  42805. height: math.unit(10.83, "feet"),
  42806. weight: math.unit(2500, "lb"),
  42807. name: "Dick-alt",
  42808. image: {
  42809. source: "./media/characters/noah-luxray/dick-alt.svg"
  42810. }
  42811. },
  42812. },
  42813. [
  42814. {
  42815. name: "BIG",
  42816. height: math.unit(2.7, "meters"),
  42817. default: true
  42818. },
  42819. ]
  42820. ))
  42821. characterMakers.push(() => makeCharacter(
  42822. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  42823. {
  42824. standing: {
  42825. height: math.unit(183, "cm"),
  42826. weight: math.unit(68, "kg"),
  42827. name: "Standing",
  42828. image: {
  42829. source: "./media/characters/arion/standing.svg",
  42830. extra: 1869/1807,
  42831. bottom: 93/1962
  42832. }
  42833. },
  42834. reclining: {
  42835. height: math.unit(70.5, "cm"),
  42836. weight: math.unit(68, "lb"),
  42837. name: "Reclining",
  42838. image: {
  42839. source: "./media/characters/arion/reclining.svg",
  42840. extra: 937/870,
  42841. bottom: 63/1000
  42842. }
  42843. },
  42844. },
  42845. [
  42846. {
  42847. name: "Colossus Size, Low",
  42848. height: math.unit(33, "meters"),
  42849. default: true
  42850. },
  42851. {
  42852. name: "Colossus Size, Mid",
  42853. height: math.unit(52, "meters")
  42854. },
  42855. {
  42856. name: "Colossus Size, High",
  42857. height: math.unit(60, "meters")
  42858. },
  42859. {
  42860. name: "Titan Size, Low",
  42861. height: math.unit(91, "meters"),
  42862. },
  42863. {
  42864. name: "Titan Size, Mid",
  42865. height: math.unit(122, "meters")
  42866. },
  42867. {
  42868. name: "Titan Size, High",
  42869. height: math.unit(162, "meters")
  42870. },
  42871. ]
  42872. ))
  42873. characterMakers.push(() => makeCharacter(
  42874. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  42875. {
  42876. front: {
  42877. height: math.unit(53, "meters"),
  42878. name: "Front",
  42879. image: {
  42880. source: "./media/characters/stellar-marbey/front.svg",
  42881. extra: 1913/1805,
  42882. bottom: 92/2005
  42883. }
  42884. },
  42885. back: {
  42886. height: math.unit(53, "meters"),
  42887. name: "Back",
  42888. image: {
  42889. source: "./media/characters/stellar-marbey/back.svg",
  42890. extra: 1960/1851,
  42891. bottom: 28/1988
  42892. }
  42893. },
  42894. mouth: {
  42895. height: math.unit(3.5, "meters"),
  42896. name: "Mouth",
  42897. image: {
  42898. source: "./media/characters/stellar-marbey/mouth.svg"
  42899. }
  42900. },
  42901. },
  42902. [
  42903. {
  42904. name: "Macro",
  42905. height: math.unit(53, "meters"),
  42906. default: true
  42907. },
  42908. ]
  42909. ))
  42910. characterMakers.push(() => makeCharacter(
  42911. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  42912. {
  42913. front: {
  42914. height: math.unit(8 + 1/12, "feet"),
  42915. weight: math.unit(233, "lb"),
  42916. name: "Front",
  42917. image: {
  42918. source: "./media/characters/matsu/front.svg",
  42919. extra: 832/772,
  42920. bottom: 40/872
  42921. }
  42922. },
  42923. back: {
  42924. height: math.unit(8 + 1/12, "feet"),
  42925. weight: math.unit(233, "lb"),
  42926. name: "Back",
  42927. image: {
  42928. source: "./media/characters/matsu/back.svg",
  42929. extra: 839/780,
  42930. bottom: 47/886
  42931. }
  42932. },
  42933. },
  42934. [
  42935. {
  42936. name: "Normal",
  42937. height: math.unit(8 + 1/12, "feet"),
  42938. default: true
  42939. },
  42940. ]
  42941. ))
  42942. characterMakers.push(() => makeCharacter(
  42943. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  42944. {
  42945. front: {
  42946. height: math.unit(4, "feet"),
  42947. weight: math.unit(148, "lb"),
  42948. name: "Front",
  42949. image: {
  42950. source: "./media/characters/thiz/front.svg",
  42951. extra: 1913/1748,
  42952. bottom: 62/1975
  42953. }
  42954. },
  42955. },
  42956. [
  42957. {
  42958. name: "Normal",
  42959. height: math.unit(4, "feet"),
  42960. default: true
  42961. },
  42962. ]
  42963. ))
  42964. characterMakers.push(() => makeCharacter(
  42965. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  42966. {
  42967. front: {
  42968. height: math.unit(7 + 6/12, "feet"),
  42969. weight: math.unit(267, "lb"),
  42970. name: "Front",
  42971. image: {
  42972. source: "./media/characters/marcel/front.svg",
  42973. extra: 1221/1096,
  42974. bottom: 76/1297
  42975. }
  42976. },
  42977. },
  42978. [
  42979. {
  42980. name: "Normal",
  42981. height: math.unit(7 + 6/12, "feet"),
  42982. default: true
  42983. },
  42984. ]
  42985. ))
  42986. characterMakers.push(() => makeCharacter(
  42987. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  42988. {
  42989. side: {
  42990. height: math.unit(42, "meters"),
  42991. name: "Side",
  42992. image: {
  42993. source: "./media/characters/flake/side.svg",
  42994. extra: 1525/1306,
  42995. bottom: 209/1734
  42996. }
  42997. },
  42998. },
  42999. [
  43000. {
  43001. name: "Normal",
  43002. height: math.unit(42, "meters"),
  43003. default: true
  43004. },
  43005. ]
  43006. ))
  43007. characterMakers.push(() => makeCharacter(
  43008. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  43009. {
  43010. dressed: {
  43011. height: math.unit(6 + 4/12, "feet"),
  43012. weight: math.unit(520, "lb"),
  43013. name: "Dressed",
  43014. image: {
  43015. source: "./media/characters/someonne/dressed.svg",
  43016. extra: 1020/1010,
  43017. bottom: 178/1198
  43018. }
  43019. },
  43020. undressed: {
  43021. height: math.unit(6 + 4/12, "feet"),
  43022. weight: math.unit(520, "lb"),
  43023. name: "Undressed",
  43024. image: {
  43025. source: "./media/characters/someonne/undressed.svg",
  43026. extra: 1019/1014,
  43027. bottom: 169/1188
  43028. }
  43029. },
  43030. },
  43031. [
  43032. {
  43033. name: "Normal",
  43034. height: math.unit(6 + 4/12, "feet"),
  43035. default: true
  43036. },
  43037. ]
  43038. ))
  43039. characterMakers.push(() => makeCharacter(
  43040. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43041. {
  43042. front: {
  43043. height: math.unit(3, "feet"),
  43044. weight: math.unit(30, "lb"),
  43045. name: "Front",
  43046. image: {
  43047. source: "./media/characters/till/front.svg",
  43048. extra: 892/823,
  43049. bottom: 55/947
  43050. }
  43051. },
  43052. },
  43053. [
  43054. {
  43055. name: "Normal",
  43056. height: math.unit(3, "feet"),
  43057. default: true
  43058. },
  43059. ]
  43060. ))
  43061. characterMakers.push(() => makeCharacter(
  43062. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43063. {
  43064. front: {
  43065. height: math.unit(9 + 8/12, "feet"),
  43066. weight: math.unit(800, "lb"),
  43067. name: "Front",
  43068. image: {
  43069. source: "./media/characters/sydney-heki/front.svg",
  43070. extra: 1360/1300,
  43071. bottom: 22/1382
  43072. }
  43073. },
  43074. back: {
  43075. height: math.unit(9 + 8/12, "feet"),
  43076. weight: math.unit(800, "lb"),
  43077. name: "Back",
  43078. image: {
  43079. source: "./media/characters/sydney-heki/back.svg",
  43080. extra: 1356/1293,
  43081. bottom: 12/1368
  43082. }
  43083. },
  43084. frontDressed: {
  43085. height: math.unit(9 + 8/12, "feet"),
  43086. weight: math.unit(800, "lb"),
  43087. name: "Front-dressed",
  43088. image: {
  43089. source: "./media/characters/sydney-heki/front-dressed.svg",
  43090. extra: 1360/1300,
  43091. bottom: 22/1382
  43092. }
  43093. },
  43094. },
  43095. [
  43096. {
  43097. name: "Normal",
  43098. height: math.unit(9 + 8/12, "feet"),
  43099. default: true
  43100. },
  43101. {
  43102. name: "Macro",
  43103. height: math.unit(500, "feet")
  43104. },
  43105. {
  43106. name: "Megamacro",
  43107. height: math.unit(3.6, "miles")
  43108. },
  43109. ]
  43110. ))
  43111. characterMakers.push(() => makeCharacter(
  43112. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43113. {
  43114. front: {
  43115. height: math.unit(200, "cm"),
  43116. weight: math.unit(250, "lb"),
  43117. name: "Front",
  43118. image: {
  43119. source: "./media/characters/fowler-karlsson/front.svg",
  43120. extra: 897/845,
  43121. bottom: 123/1020
  43122. }
  43123. },
  43124. back: {
  43125. height: math.unit(200, "cm"),
  43126. weight: math.unit(250, "lb"),
  43127. name: "Back",
  43128. image: {
  43129. source: "./media/characters/fowler-karlsson/back.svg",
  43130. extra: 999/944,
  43131. bottom: 26/1025
  43132. }
  43133. },
  43134. dick: {
  43135. height: math.unit(1.92, "feet"),
  43136. weight: math.unit(150, "lb"),
  43137. name: "Dick",
  43138. image: {
  43139. source: "./media/characters/fowler-karlsson/dick.svg"
  43140. }
  43141. },
  43142. },
  43143. [
  43144. {
  43145. name: "Normal",
  43146. height: math.unit(200, "cm"),
  43147. default: true
  43148. },
  43149. {
  43150. name: "Smaller Macro",
  43151. height: math.unit(90, "m")
  43152. },
  43153. {
  43154. name: "Macro",
  43155. height: math.unit(150, "m")
  43156. },
  43157. {
  43158. name: "Bigger Macro",
  43159. height: math.unit(300, "m")
  43160. },
  43161. ]
  43162. ))
  43163. characterMakers.push(() => makeCharacter(
  43164. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43165. {
  43166. side: {
  43167. height: math.unit(8 + 2/12, "feet"),
  43168. weight: math.unit(1, "tonne"),
  43169. name: "Side",
  43170. image: {
  43171. source: "./media/characters/rylide/side.svg",
  43172. extra: 1318/1034,
  43173. bottom: 106/1424
  43174. }
  43175. },
  43176. sitting: {
  43177. height: math.unit(303, "cm"),
  43178. weight: math.unit(1, "tonne"),
  43179. name: "Sitting",
  43180. image: {
  43181. source: "./media/characters/rylide/sitting.svg",
  43182. extra: 1303/1103,
  43183. bottom: 36/1339
  43184. }
  43185. },
  43186. },
  43187. [
  43188. {
  43189. name: "Normal",
  43190. height: math.unit(8 + 2/12, "feet"),
  43191. default: true
  43192. },
  43193. ]
  43194. ))
  43195. characterMakers.push(() => makeCharacter(
  43196. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43197. {
  43198. front: {
  43199. height: math.unit(5 + 10/12, "feet"),
  43200. weight: math.unit(160, "lb"),
  43201. name: "Front",
  43202. image: {
  43203. source: "./media/characters/pudask/front.svg",
  43204. extra: 1616/1590,
  43205. bottom: 161/1777
  43206. }
  43207. },
  43208. },
  43209. [
  43210. {
  43211. name: "Ferret Height",
  43212. height: math.unit(2 + 5/12, "feet")
  43213. },
  43214. {
  43215. name: "Canon Height",
  43216. height: math.unit(5 + 10/12, "feet"),
  43217. default: true
  43218. },
  43219. ]
  43220. ))
  43221. characterMakers.push(() => makeCharacter(
  43222. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43223. {
  43224. front: {
  43225. height: math.unit(3 + 6/12, "feet"),
  43226. weight: math.unit(60, "lb"),
  43227. name: "Front",
  43228. image: {
  43229. source: "./media/characters/ramita/front.svg",
  43230. extra: 1402/1232,
  43231. bottom: 62/1464
  43232. }
  43233. },
  43234. dressed: {
  43235. height: math.unit(3 + 6/12, "feet"),
  43236. weight: math.unit(60, "lb"),
  43237. name: "Dressed",
  43238. image: {
  43239. source: "./media/characters/ramita/dressed.svg",
  43240. extra: 1534/1249,
  43241. bottom: 50/1584
  43242. }
  43243. },
  43244. },
  43245. [
  43246. {
  43247. name: "Normal",
  43248. height: math.unit(3 + 6/12, "feet"),
  43249. default: true
  43250. },
  43251. ]
  43252. ))
  43253. characterMakers.push(() => makeCharacter(
  43254. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43255. {
  43256. front: {
  43257. height: math.unit(8, "feet"),
  43258. name: "Front",
  43259. image: {
  43260. source: "./media/characters/ark/front.svg",
  43261. extra: 772/693,
  43262. bottom: 45/817
  43263. }
  43264. },
  43265. },
  43266. [
  43267. {
  43268. name: "Normal",
  43269. height: math.unit(8, "feet"),
  43270. default: true
  43271. },
  43272. ]
  43273. ))
  43274. characterMakers.push(() => makeCharacter(
  43275. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43276. {
  43277. front: {
  43278. height: math.unit(6, "feet"),
  43279. weight: math.unit(250, "lb"),
  43280. volume: math.unit(5/8, "gallons"),
  43281. name: "Front",
  43282. image: {
  43283. source: "./media/characters/ludwig-horn/front.svg",
  43284. extra: 1782/1635,
  43285. bottom: 96/1878
  43286. }
  43287. },
  43288. back: {
  43289. height: math.unit(6, "feet"),
  43290. weight: math.unit(250, "lb"),
  43291. volume: math.unit(5/8, "gallons"),
  43292. name: "Back",
  43293. image: {
  43294. source: "./media/characters/ludwig-horn/back.svg",
  43295. extra: 1874/1729,
  43296. bottom: 27/1901
  43297. }
  43298. },
  43299. dick: {
  43300. height: math.unit(1.05, "feet"),
  43301. weight: math.unit(15, "lb"),
  43302. volume: math.unit(5/8, "gallons"),
  43303. name: "Dick",
  43304. image: {
  43305. source: "./media/characters/ludwig-horn/dick.svg"
  43306. }
  43307. },
  43308. },
  43309. [
  43310. {
  43311. name: "Small",
  43312. height: math.unit(6, "feet")
  43313. },
  43314. {
  43315. name: "Typical",
  43316. height: math.unit(12, "feet"),
  43317. default: true
  43318. },
  43319. {
  43320. name: "Building",
  43321. height: math.unit(80, "feet")
  43322. },
  43323. {
  43324. name: "Town",
  43325. height: math.unit(800, "feet")
  43326. },
  43327. {
  43328. name: "Kingdom",
  43329. height: math.unit(80000, "feet")
  43330. },
  43331. {
  43332. name: "Planet",
  43333. height: math.unit(8000000, "feet")
  43334. },
  43335. {
  43336. name: "Universe",
  43337. height: math.unit(8000000000, "feet")
  43338. },
  43339. {
  43340. name: "Transcended",
  43341. height: math.unit(8e27, "feet")
  43342. },
  43343. ]
  43344. ))
  43345. characterMakers.push(() => makeCharacter(
  43346. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43347. {
  43348. front: {
  43349. height: math.unit(5, "feet"),
  43350. weight: math.unit(50, "kg"),
  43351. name: "Front",
  43352. image: {
  43353. source: "./media/characters/biot-avery/front.svg",
  43354. extra: 1295/1232,
  43355. bottom: 86/1381
  43356. }
  43357. },
  43358. },
  43359. [
  43360. {
  43361. name: "Normal",
  43362. height: math.unit(5, "feet"),
  43363. default: true
  43364. },
  43365. ]
  43366. ))
  43367. characterMakers.push(() => makeCharacter(
  43368. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  43369. {
  43370. front: {
  43371. height: math.unit(6, "feet"),
  43372. name: "Front",
  43373. image: {
  43374. source: "./media/characters/kitsune-kiro/front.svg",
  43375. extra: 1270/1158,
  43376. bottom: 42/1312
  43377. }
  43378. },
  43379. frontAlt: {
  43380. height: math.unit(6, "feet"),
  43381. name: "Front-alt",
  43382. image: {
  43383. source: "./media/characters/kitsune-kiro/front-alt.svg",
  43384. extra: 1130/1081,
  43385. bottom: 36/1166
  43386. }
  43387. },
  43388. },
  43389. [
  43390. {
  43391. name: "Smol",
  43392. height: math.unit(3, "feet")
  43393. },
  43394. {
  43395. name: "Normal",
  43396. height: math.unit(6, "feet"),
  43397. default: true
  43398. },
  43399. ]
  43400. ))
  43401. characterMakers.push(() => makeCharacter(
  43402. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  43403. {
  43404. front: {
  43405. height: math.unit(6, "feet"),
  43406. weight: math.unit(125, "lb"),
  43407. name: "Front",
  43408. image: {
  43409. source: "./media/characters/jack-thatcher/front.svg",
  43410. extra: 1474/1370,
  43411. bottom: 26/1500
  43412. }
  43413. },
  43414. back: {
  43415. height: math.unit(6, "feet"),
  43416. weight: math.unit(125, "lb"),
  43417. name: "Back",
  43418. image: {
  43419. source: "./media/characters/jack-thatcher/back.svg",
  43420. extra: 1489/1384,
  43421. bottom: 18/1507
  43422. }
  43423. },
  43424. },
  43425. [
  43426. {
  43427. name: "Normal",
  43428. height: math.unit(6, "feet"),
  43429. default: true
  43430. },
  43431. {
  43432. name: "Macro",
  43433. height: math.unit(75, "feet")
  43434. },
  43435. {
  43436. name: "Macro-er",
  43437. height: math.unit(250, "feet")
  43438. },
  43439. ]
  43440. ))
  43441. characterMakers.push(() => makeCharacter(
  43442. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  43443. {
  43444. front: {
  43445. height: math.unit(7, "feet"),
  43446. weight: math.unit(110, "kg"),
  43447. name: "Front",
  43448. image: {
  43449. source: "./media/characters/max-hyper/front.svg",
  43450. extra: 1969/1881,
  43451. bottom: 49/2018
  43452. }
  43453. },
  43454. },
  43455. [
  43456. {
  43457. name: "Normal",
  43458. height: math.unit(7, "feet"),
  43459. default: true
  43460. },
  43461. ]
  43462. ))
  43463. characterMakers.push(() => makeCharacter(
  43464. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  43465. {
  43466. front: {
  43467. height: math.unit(5 + 5/12, "feet"),
  43468. weight: math.unit(160, "lb"),
  43469. name: "Front",
  43470. image: {
  43471. source: "./media/characters/spook/front.svg",
  43472. extra: 794/791,
  43473. bottom: 54/848
  43474. }
  43475. },
  43476. back: {
  43477. height: math.unit(5 + 5/12, "feet"),
  43478. weight: math.unit(160, "lb"),
  43479. name: "Back",
  43480. image: {
  43481. source: "./media/characters/spook/back.svg",
  43482. extra: 812/798,
  43483. bottom: 32/844
  43484. }
  43485. },
  43486. },
  43487. [
  43488. {
  43489. name: "Normal",
  43490. height: math.unit(5 + 5/12, "feet"),
  43491. default: true
  43492. },
  43493. ]
  43494. ))
  43495. characterMakers.push(() => makeCharacter(
  43496. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  43497. {
  43498. front: {
  43499. height: math.unit(18, "feet"),
  43500. name: "Front",
  43501. image: {
  43502. source: "./media/characters/xeaduulix/front.svg",
  43503. extra: 1380/1166,
  43504. bottom: 110/1490
  43505. }
  43506. },
  43507. back: {
  43508. height: math.unit(18, "feet"),
  43509. name: "Back",
  43510. image: {
  43511. source: "./media/characters/xeaduulix/back.svg",
  43512. extra: 1592/1170,
  43513. bottom: 128/1720
  43514. }
  43515. },
  43516. frontNsfw: {
  43517. height: math.unit(18, "feet"),
  43518. name: "Front (NSFW)",
  43519. image: {
  43520. source: "./media/characters/xeaduulix/front-nsfw.svg",
  43521. extra: 1380/1166,
  43522. bottom: 110/1490
  43523. }
  43524. },
  43525. backNsfw: {
  43526. height: math.unit(18, "feet"),
  43527. name: "Back (NSFW)",
  43528. image: {
  43529. source: "./media/characters/xeaduulix/back-nsfw.svg",
  43530. extra: 1592/1170,
  43531. bottom: 128/1720
  43532. }
  43533. },
  43534. },
  43535. [
  43536. {
  43537. name: "Normal",
  43538. height: math.unit(18, "feet"),
  43539. default: true
  43540. },
  43541. ]
  43542. ))
  43543. characterMakers.push(() => makeCharacter(
  43544. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  43545. {
  43546. spreadWings: {
  43547. height: math.unit(20, "feet"),
  43548. name: "Spread Wings",
  43549. image: {
  43550. source: "./media/characters/fledge/spread-wings.svg",
  43551. extra: 693/635,
  43552. bottom: 26/719
  43553. }
  43554. },
  43555. front: {
  43556. height: math.unit(20, "feet"),
  43557. name: "Front",
  43558. image: {
  43559. source: "./media/characters/fledge/front.svg",
  43560. extra: 684/637,
  43561. bottom: 18/702
  43562. }
  43563. },
  43564. frontAlt: {
  43565. height: math.unit(20, "feet"),
  43566. name: "Front (Alt)",
  43567. image: {
  43568. source: "./media/characters/fledge/front-alt.svg",
  43569. extra: 708/664,
  43570. bottom: 13/721
  43571. }
  43572. },
  43573. back: {
  43574. height: math.unit(20, "feet"),
  43575. name: "Back",
  43576. image: {
  43577. source: "./media/characters/fledge/back.svg",
  43578. extra: 718/634,
  43579. bottom: 22/740
  43580. }
  43581. },
  43582. head: {
  43583. height: math.unit(5.55, "feet"),
  43584. name: "Head",
  43585. image: {
  43586. source: "./media/characters/fledge/head.svg"
  43587. }
  43588. },
  43589. headAlt: {
  43590. height: math.unit(5.1, "feet"),
  43591. name: "Head (Alt)",
  43592. image: {
  43593. source: "./media/characters/fledge/head-alt.svg"
  43594. }
  43595. },
  43596. },
  43597. [
  43598. {
  43599. name: "Small",
  43600. height: math.unit(6 + 2/12, "feet")
  43601. },
  43602. {
  43603. name: "Big",
  43604. height: math.unit(20, "feet"),
  43605. default: true
  43606. },
  43607. {
  43608. name: "Giant",
  43609. height: math.unit(100, "feet")
  43610. },
  43611. {
  43612. name: "Macro",
  43613. height: math.unit(200, "feet")
  43614. },
  43615. ]
  43616. ))
  43617. characterMakers.push(() => makeCharacter(
  43618. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  43619. {
  43620. front: {
  43621. height: math.unit(1, "meter"),
  43622. name: "Front",
  43623. image: {
  43624. source: "./media/characters/atlas-morenai/front.svg",
  43625. extra: 1275/1043,
  43626. bottom: 19/1294
  43627. }
  43628. },
  43629. back: {
  43630. height: math.unit(1, "meter"),
  43631. name: "Back",
  43632. image: {
  43633. source: "./media/characters/atlas-morenai/back.svg",
  43634. extra: 1141/1001,
  43635. bottom: 25/1166
  43636. }
  43637. },
  43638. },
  43639. [
  43640. {
  43641. name: "Normal",
  43642. height: math.unit(1, "meter"),
  43643. default: true
  43644. },
  43645. {
  43646. name: "Magic-Infused",
  43647. height: math.unit(5, "meters")
  43648. },
  43649. ]
  43650. ))
  43651. characterMakers.push(() => makeCharacter(
  43652. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  43653. {
  43654. front: {
  43655. height: math.unit(5, "meters"),
  43656. name: "Front",
  43657. image: {
  43658. source: "./media/characters/cintia/front.svg",
  43659. extra: 1312/1228,
  43660. bottom: 38/1350
  43661. }
  43662. },
  43663. back: {
  43664. height: math.unit(5, "meters"),
  43665. name: "Back",
  43666. image: {
  43667. source: "./media/characters/cintia/back.svg",
  43668. extra: 1260/1166,
  43669. bottom: 98/1358
  43670. }
  43671. },
  43672. frontDick: {
  43673. height: math.unit(5, "meters"),
  43674. name: "Front (Dick)",
  43675. image: {
  43676. source: "./media/characters/cintia/front-dick.svg",
  43677. extra: 1312/1228,
  43678. bottom: 38/1350
  43679. }
  43680. },
  43681. backDick: {
  43682. height: math.unit(5, "meters"),
  43683. name: "Back (Dick)",
  43684. image: {
  43685. source: "./media/characters/cintia/back-dick.svg",
  43686. extra: 1260/1166,
  43687. bottom: 98/1358
  43688. }
  43689. },
  43690. bust: {
  43691. height: math.unit(1.97, "meters"),
  43692. name: "Bust",
  43693. image: {
  43694. source: "./media/characters/cintia/bust.svg",
  43695. extra: 617/565,
  43696. bottom: 0/617
  43697. }
  43698. },
  43699. },
  43700. [
  43701. {
  43702. name: "Normal",
  43703. height: math.unit(5, "meters"),
  43704. default: true
  43705. },
  43706. ]
  43707. ))
  43708. characterMakers.push(() => makeCharacter(
  43709. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  43710. {
  43711. side: {
  43712. height: math.unit(100, "feet"),
  43713. name: "Side",
  43714. image: {
  43715. source: "./media/characters/denora/side.svg",
  43716. extra: 875/803,
  43717. bottom: 9/884
  43718. }
  43719. },
  43720. },
  43721. [
  43722. {
  43723. name: "Standard",
  43724. height: math.unit(100, "feet"),
  43725. default: true
  43726. },
  43727. {
  43728. name: "Grand",
  43729. height: math.unit(1000, "feet")
  43730. },
  43731. {
  43732. name: "Conquering",
  43733. height: math.unit(10000, "feet")
  43734. },
  43735. ]
  43736. ))
  43737. characterMakers.push(() => makeCharacter(
  43738. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  43739. {
  43740. dressed: {
  43741. height: math.unit(8 + 5/12, "feet"),
  43742. weight: math.unit(700, "lb"),
  43743. name: "Dressed",
  43744. image: {
  43745. source: "./media/characters/kiva/dressed.svg",
  43746. extra: 1102/1055,
  43747. bottom: 60/1162
  43748. }
  43749. },
  43750. nude: {
  43751. height: math.unit(8 + 5/12, "feet"),
  43752. weight: math.unit(700, "lb"),
  43753. name: "Nude",
  43754. image: {
  43755. source: "./media/characters/kiva/nude.svg",
  43756. extra: 1102/1055,
  43757. bottom: 60/1162
  43758. }
  43759. },
  43760. },
  43761. [
  43762. {
  43763. name: "Base Height",
  43764. height: math.unit(8 + 5/12, "feet"),
  43765. default: true
  43766. },
  43767. {
  43768. name: "Macro",
  43769. height: math.unit(100, "feet")
  43770. },
  43771. {
  43772. name: "Max",
  43773. height: math.unit(3280, "feet")
  43774. },
  43775. ]
  43776. ))
  43777. characterMakers.push(() => makeCharacter(
  43778. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  43779. {
  43780. front: {
  43781. height: math.unit(6 + 8/12, "feet"),
  43782. weight: math.unit(250, "lb"),
  43783. name: "Front",
  43784. image: {
  43785. source: "./media/characters/ztragon/front.svg",
  43786. extra: 1825/1684,
  43787. bottom: 98/1923
  43788. }
  43789. },
  43790. },
  43791. [
  43792. {
  43793. name: "Normal",
  43794. height: math.unit(6 + 8/12, "feet"),
  43795. default: true
  43796. },
  43797. {
  43798. name: "Macro",
  43799. height: math.unit(80, "feet")
  43800. },
  43801. ]
  43802. ))
  43803. characterMakers.push(() => makeCharacter(
  43804. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  43805. {
  43806. front: {
  43807. height: math.unit(10.4, "feet"),
  43808. weight: math.unit(2, "tons"),
  43809. name: "Front",
  43810. image: {
  43811. source: "./media/characters/yesenia/front.svg",
  43812. extra: 1479/1474,
  43813. bottom: 233/1712
  43814. }
  43815. },
  43816. },
  43817. [
  43818. {
  43819. name: "Normal",
  43820. height: math.unit(10.4, "feet"),
  43821. default: true
  43822. },
  43823. ]
  43824. ))
  43825. characterMakers.push(() => makeCharacter(
  43826. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  43827. {
  43828. normal: {
  43829. height: math.unit(6 + 1/12, "feet"),
  43830. weight: math.unit(180, "lb"),
  43831. name: "Normal",
  43832. image: {
  43833. source: "./media/characters/leanne-lycheborne/normal.svg",
  43834. extra: 1748/1660,
  43835. bottom: 98/1846
  43836. }
  43837. },
  43838. were: {
  43839. height: math.unit(12, "feet"),
  43840. weight: math.unit(1600, "lb"),
  43841. name: "Were",
  43842. image: {
  43843. source: "./media/characters/leanne-lycheborne/were.svg",
  43844. extra: 1485/1432,
  43845. bottom: 66/1551
  43846. }
  43847. },
  43848. },
  43849. [
  43850. {
  43851. name: "Normal",
  43852. height: math.unit(6 + 1/12, "feet"),
  43853. default: true
  43854. },
  43855. ]
  43856. ))
  43857. characterMakers.push(() => makeCharacter(
  43858. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  43859. {
  43860. side: {
  43861. height: math.unit(13, "feet"),
  43862. name: "Side",
  43863. image: {
  43864. source: "./media/characters/kira-tyler/side.svg",
  43865. extra: 693/393,
  43866. bottom: 58/751
  43867. }
  43868. },
  43869. },
  43870. [
  43871. {
  43872. name: "Normal",
  43873. height: math.unit(13, "feet"),
  43874. default: true
  43875. },
  43876. ]
  43877. ))
  43878. characterMakers.push(() => makeCharacter(
  43879. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  43880. {
  43881. front: {
  43882. height: math.unit(10.3, "feet"),
  43883. weight: math.unit(150, "lb"),
  43884. name: "Front",
  43885. image: {
  43886. source: "./media/characters/blaze/front.svg",
  43887. extra: 1378/1286,
  43888. bottom: 172/1550
  43889. }
  43890. },
  43891. },
  43892. [
  43893. {
  43894. name: "Normal",
  43895. height: math.unit(10.3, "feet"),
  43896. default: true
  43897. },
  43898. ]
  43899. ))
  43900. characterMakers.push(() => makeCharacter(
  43901. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  43902. {
  43903. side: {
  43904. height: math.unit(2, "meters"),
  43905. weight: math.unit(400, "kg"),
  43906. name: "Side",
  43907. image: {
  43908. source: "./media/characters/anu/side.svg",
  43909. extra: 506/394,
  43910. bottom: 18/524
  43911. }
  43912. },
  43913. },
  43914. [
  43915. {
  43916. name: "Humanoid",
  43917. height: math.unit(2, "meters")
  43918. },
  43919. {
  43920. name: "Normal",
  43921. height: math.unit(5, "meters"),
  43922. default: true
  43923. },
  43924. ]
  43925. ))
  43926. characterMakers.push(() => makeCharacter(
  43927. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  43928. {
  43929. front: {
  43930. height: math.unit(5 + 5/12, "feet"),
  43931. weight: math.unit(170, "lb"),
  43932. name: "Front",
  43933. image: {
  43934. source: "./media/characters/synx-the-lynx/front.svg",
  43935. extra: 1893/1745,
  43936. bottom: 17/1910
  43937. }
  43938. },
  43939. side: {
  43940. height: math.unit(5 + 5/12, "feet"),
  43941. weight: math.unit(170, "lb"),
  43942. name: "Side",
  43943. image: {
  43944. source: "./media/characters/synx-the-lynx/side.svg",
  43945. extra: 1884/1740,
  43946. bottom: 39/1923
  43947. }
  43948. },
  43949. back: {
  43950. height: math.unit(5 + 5/12, "feet"),
  43951. weight: math.unit(170, "lb"),
  43952. name: "Back",
  43953. image: {
  43954. source: "./media/characters/synx-the-lynx/back.svg",
  43955. extra: 1903/1755,
  43956. bottom: 14/1917
  43957. }
  43958. },
  43959. },
  43960. [
  43961. {
  43962. name: "Normal",
  43963. height: math.unit(5 + 5/12, "feet"),
  43964. default: true
  43965. },
  43966. ]
  43967. ))
  43968. characterMakers.push(() => makeCharacter(
  43969. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  43970. {
  43971. back: {
  43972. height: math.unit(15, "feet"),
  43973. name: "Back",
  43974. image: {
  43975. source: "./media/characters/nadezda-fex/back.svg",
  43976. extra: 1695/1481,
  43977. bottom: 25/1720
  43978. }
  43979. },
  43980. },
  43981. [
  43982. {
  43983. name: "Normal",
  43984. height: math.unit(15, "feet"),
  43985. default: true
  43986. },
  43987. {
  43988. name: "Macro",
  43989. height: math.unit(2.5, "miles")
  43990. },
  43991. {
  43992. name: "Goddess",
  43993. height: math.unit(2, "multiverses")
  43994. },
  43995. ]
  43996. ))
  43997. //characters
  43998. function makeCharacters() {
  43999. const results = [];
  44000. characterMakers.forEach(character => {
  44001. results.push(character());
  44002. });
  44003. return results;
  44004. }