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

49663 строки
1.2 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.energyNeed) {
  46. views[key].attributes.capacity = {
  47. name: "Food Intake",
  48. power: 3,
  49. type: "energy",
  50. base: value.energyNeed
  51. }
  52. }
  53. });
  54. return createEntityMaker(info, views, defaultSizes, forms);
  55. }
  56. const speciesData = {
  57. animal: {
  58. name: "Animal"
  59. },
  60. dog: {
  61. name: "Dog",
  62. parents: [
  63. "canine"
  64. ]
  65. },
  66. canine: {
  67. name: "Canine",
  68. parents: [
  69. "mammal"
  70. ]
  71. },
  72. crux: {
  73. name: "Crux",
  74. parents: [
  75. "mammal"
  76. ]
  77. },
  78. mammal: {
  79. name: "Mammal",
  80. parents: [
  81. "animal"
  82. ]
  83. },
  84. "rough-collie": {
  85. name: "Rough Collie",
  86. parents: [
  87. "dog"
  88. ]
  89. },
  90. dragon: {
  91. name: "Dragon",
  92. parents: [
  93. "reptile"
  94. ]
  95. },
  96. reptile: {
  97. name: "Reptile",
  98. parents: [
  99. "animal"
  100. ]
  101. },
  102. woodpecker: {
  103. name: "Woodpecker",
  104. parents: [
  105. "avian"
  106. ]
  107. },
  108. avian: {
  109. name: "Avian",
  110. parents: [
  111. "animal"
  112. ]
  113. },
  114. kitsune: {
  115. name: "Kitsune",
  116. parents: [
  117. "fox"
  118. ]
  119. },
  120. fox: {
  121. name: "Fox",
  122. parents: [
  123. "mammal"
  124. ]
  125. },
  126. pokemon: {
  127. name: "Pokemon"
  128. },
  129. tiger: {
  130. name: "Tiger",
  131. parents: [
  132. "cat"
  133. ]
  134. },
  135. cat: {
  136. name: "Cat",
  137. parents: [
  138. "feliform"
  139. ]
  140. },
  141. "blue-jay": {
  142. name: "Blue Jay",
  143. parents: [
  144. "avian"
  145. ]
  146. },
  147. wolf: {
  148. name: "Wolf",
  149. parents: [
  150. "mammal"
  151. ]
  152. },
  153. coyote: {
  154. name: "Coyote",
  155. parents: [
  156. "mammal"
  157. ]
  158. },
  159. raccoon: {
  160. name: "Raccoon",
  161. parents: [
  162. "mammal"
  163. ]
  164. },
  165. weasel: {
  166. name: "Weasel",
  167. parents: [
  168. "mustelid"
  169. ]
  170. },
  171. "red-panda": {
  172. name: "Red Panda",
  173. parents: [
  174. "mammal"
  175. ]
  176. },
  177. dolphin: {
  178. name: "Dolphin",
  179. parents: [
  180. "mammal"
  181. ]
  182. },
  183. "african-wild-dog": {
  184. name: "African Wild Dog",
  185. parents: [
  186. "canine"
  187. ]
  188. },
  189. "hyena": {
  190. name: "Hyena",
  191. parents: [
  192. "feliform"
  193. ]
  194. },
  195. "carbuncle": {
  196. name: "Carbuncle",
  197. parents: [
  198. "animal"
  199. ]
  200. },
  201. bat: {
  202. name: "Bat",
  203. parents: [
  204. "mammal"
  205. ]
  206. },
  207. "leaf-nosed-bat": {
  208. name: "Leaf-Nosed Bat",
  209. parents: [
  210. "bat"
  211. ]
  212. },
  213. "fish": {
  214. name: "Fish",
  215. parents: [
  216. "animal"
  217. ]
  218. },
  219. "ram": {
  220. name: "Ram",
  221. parents: [
  222. "mammal"
  223. ]
  224. },
  225. "demon": {
  226. name: "Demon",
  227. parents: [
  228. "supernatural"
  229. ]
  230. },
  231. "cougar": {
  232. name: "Cougar",
  233. parents: [
  234. "cat"
  235. ]
  236. },
  237. "goat": {
  238. name: "Goat",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "lion": {
  244. name: "Lion",
  245. parents: [
  246. "cat"
  247. ]
  248. },
  249. "harpy-eager": {
  250. name: "Harpy Eagle",
  251. parents: [
  252. "avian"
  253. ]
  254. },
  255. "deer": {
  256. name: "Deer",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "phoenix": {
  262. name: "Phoenix",
  263. parents: [
  264. "avian"
  265. ]
  266. },
  267. "aeromorph": {
  268. name: "Aeromorph",
  269. parents: [
  270. "machine"
  271. ]
  272. },
  273. "machine": {
  274. name: "Machine",
  275. },
  276. "android": {
  277. name: "Android",
  278. parents: [
  279. "machine"
  280. ]
  281. },
  282. "jackal": {
  283. name: "Jackal",
  284. parents: [
  285. "canine"
  286. ]
  287. },
  288. "corvid": {
  289. name: "Corvid",
  290. parents: [
  291. "avian"
  292. ]
  293. },
  294. "pharaoh-hound": {
  295. name: "Pharaoh Hound",
  296. parents: [
  297. "dog"
  298. ]
  299. },
  300. "skunk": {
  301. name: "Skunk",
  302. parents: [
  303. "mammal"
  304. ]
  305. },
  306. "shark": {
  307. name: "Shark",
  308. parents: [
  309. "fish"
  310. ]
  311. },
  312. "black-panther": {
  313. name: "Black Panther",
  314. parents: [
  315. "cat"
  316. ]
  317. },
  318. "umbra": {
  319. name: "Umbra",
  320. parents: [
  321. "animal"
  322. ]
  323. },
  324. "raven": {
  325. name: "Raven",
  326. parents: [
  327. "corvid"
  328. ]
  329. },
  330. "snow-leopard": {
  331. name: "Snow Leopard",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "barbary-lion": {
  337. name: "Barbary Lion",
  338. parents: [
  339. "lion"
  340. ]
  341. },
  342. "dra'gal": {
  343. name: "Dra'Gal",
  344. parents: [
  345. "mammal"
  346. ]
  347. },
  348. "german-shepherd": {
  349. name: "German Shepherd",
  350. parents: [
  351. "dog"
  352. ]
  353. },
  354. "bayleef": {
  355. name: "Bayleef",
  356. parents: [
  357. "pokemon"
  358. ]
  359. },
  360. "mouse": {
  361. name: "Mouse",
  362. parents: [
  363. "rodent"
  364. ]
  365. },
  366. "rat": {
  367. name: "Rat",
  368. parents: [
  369. "mammal"
  370. ]
  371. },
  372. "hoshiko-beast": {
  373. name: "Hoshiko Beast",
  374. parents: ["animal"]
  375. },
  376. "snow-jugani": {
  377. name: "Snow Jugani",
  378. parents: ["cat"]
  379. },
  380. "patamon": {
  381. name: "Patamon",
  382. parents: ["digimon"]
  383. },
  384. "digimon": {
  385. name: "Digimon",
  386. },
  387. "jugani": {
  388. name: "Jugani",
  389. parents: ["cat"]
  390. },
  391. "luxray": {
  392. name: "Luxray",
  393. parents: ["pokemon"]
  394. },
  395. "mech": {
  396. name: "Mech",
  397. parents: ["machine"]
  398. },
  399. "zoid": {
  400. name: "Zoid",
  401. parents: ["mech"]
  402. },
  403. "monster": {
  404. name: "Monster",
  405. parents: ["animal"]
  406. },
  407. "foo-dog": {
  408. name: "Foo Dog",
  409. parents: ["mammal"]
  410. },
  411. "elephant": {
  412. name: "Elephant",
  413. parents: ["mammal"]
  414. },
  415. "eagle": {
  416. name: "Eagle",
  417. parents: ["avian"]
  418. },
  419. "cow": {
  420. name: "Cow",
  421. parents: ["mammal"]
  422. },
  423. "crocodile": {
  424. name: "Crocodile",
  425. parents: ["reptile"]
  426. },
  427. "borzoi": {
  428. name: "Borzoi",
  429. parents: ["dog"]
  430. },
  431. "snake": {
  432. name: "Snake",
  433. parents: ["reptile"]
  434. },
  435. "horned-bush-viper": {
  436. name: "Horned Bush Viper",
  437. parents: ["snake"]
  438. },
  439. "cobra": {
  440. name: "Cobra",
  441. parents: ["snake"]
  442. },
  443. "harpy-eagle": {
  444. name: "Harpy Eagle",
  445. parents: ["eagle"]
  446. },
  447. "raptor": {
  448. name: "Raptor",
  449. parents: ["dinosaur"]
  450. },
  451. "dinosaur": {
  452. name: "Dinosaur",
  453. parents: ["reptile"]
  454. },
  455. "veilhound": {
  456. name: "Veilhound",
  457. parents: ["hellhound"]
  458. },
  459. "hellhound": {
  460. name: "Hellhound",
  461. parents: ["canine", "demon"]
  462. },
  463. "insect": {
  464. name: "Insect",
  465. parents: ["animal"]
  466. },
  467. "beetle": {
  468. name: "Beetle",
  469. parents: ["insect"]
  470. },
  471. "moth": {
  472. name: "Moth",
  473. parents: ["insect"]
  474. },
  475. "eastern-dragon": {
  476. name: "Eastern Dragon",
  477. parents: ["dragon"]
  478. },
  479. "jaguar": {
  480. name: "Jaguar",
  481. parents: ["cat"]
  482. },
  483. "horse": {
  484. name: "Horse",
  485. parents: ["mammal"]
  486. },
  487. "sergal": {
  488. name: "Sergal",
  489. parents: ["mammal"]
  490. },
  491. "gryphon": {
  492. name: "Gryphon",
  493. parents: ["lion", "eagle"]
  494. },
  495. "robot": {
  496. name: "Robot",
  497. parents: ["machine"]
  498. },
  499. "medihound": {
  500. name: "Medihound",
  501. parents: ["robot", "dog"]
  502. },
  503. "sylveon": {
  504. name: "Sylveon",
  505. parents: ["pokemon"]
  506. },
  507. "catgirl": {
  508. name: "Catgirl",
  509. parents: ["mammal"]
  510. },
  511. "cowgirl": {
  512. name: "Cowgirl",
  513. parents: ["mammal"]
  514. },
  515. "pony": {
  516. name: "Pony",
  517. parents: ["horse"]
  518. },
  519. "rabbit": {
  520. name: "Rabbit",
  521. parents: ["leporidae"]
  522. },
  523. "fennec-fox": {
  524. name: "Fennec Fox",
  525. parents: ["fox"]
  526. },
  527. "azodian": {
  528. name: "Azodian",
  529. parents: ["mouse"]
  530. },
  531. "shiba-inu": {
  532. name: "Shiba Inu",
  533. parents: ["dog"]
  534. },
  535. "changeling": {
  536. name: "Changeling",
  537. parents: ["insect"]
  538. },
  539. "cheetah": {
  540. name: "Cheetah",
  541. parents: ["cat"]
  542. },
  543. "golden-jackal": {
  544. name: "Golden Jackal",
  545. parents: ["jackal"]
  546. },
  547. "manectric": {
  548. name: "Manectric",
  549. parents: ["pokemon"]
  550. },
  551. "rat": {
  552. name: "Rat",
  553. parents: ["rodent"]
  554. },
  555. "rodent": {
  556. name: "Rodent",
  557. parents: ["mammal"]
  558. },
  559. "octocoon": {
  560. name: "Octocoon",
  561. parents: ["raccoon", "octopus"]
  562. },
  563. "octopus": {
  564. name: "Octopus",
  565. parents: ["fish"]
  566. },
  567. "werewolf": {
  568. name: "Werewolf",
  569. parents: ["wolf", "werebeast"]
  570. },
  571. "werebeast": {
  572. name: "Werebeast",
  573. parents: ["monster"]
  574. },
  575. "meerkat": {
  576. name: "Meerkat",
  577. parents: ["mammal"]
  578. },
  579. "human": {
  580. name: "Human",
  581. parents: ["mammal"]
  582. },
  583. "geth": {
  584. name: "Geth",
  585. parents: ["android"]
  586. },
  587. "husky": {
  588. name: "Husky",
  589. parents: ["dog"]
  590. },
  591. "long-eared-bat": {
  592. name: "Long Eared Bat",
  593. parents: ["bat"]
  594. },
  595. "lizard": {
  596. name: "Lizard",
  597. parents: ["reptile"]
  598. },
  599. "salamander": {
  600. name: "Salamander",
  601. parents: ["lizard"]
  602. },
  603. "chameleon": {
  604. name: "Chameleon",
  605. parents: ["lizard"]
  606. },
  607. "gecko": {
  608. name: "Gecko",
  609. parents: ["lizard"]
  610. },
  611. "kobold": {
  612. name: "Kobold",
  613. parents: ["reptile"]
  614. },
  615. "charizard": {
  616. name: "Charizard",
  617. parents: ["pokemon"]
  618. },
  619. "lugia": {
  620. name: "Lugia",
  621. parents: ["pokemon"]
  622. },
  623. "cerberus": {
  624. name: "Cerberus",
  625. parents: ["dog"]
  626. },
  627. "tyrantrum": {
  628. name: "Tyrantrum",
  629. parents: ["pokemon"]
  630. },
  631. "lemur": {
  632. name: "Lemur",
  633. parents: ["mammal"]
  634. },
  635. "kelpie": {
  636. name: "Kelpie",
  637. parents: ["horse", "monster"]
  638. },
  639. "labrador": {
  640. name: "Labrador",
  641. parents: ["dog"]
  642. },
  643. "sylveon": {
  644. name: "Sylveon",
  645. parents: ["eeveelution"]
  646. },
  647. "eeveelution": {
  648. name: "Eeveelution",
  649. parents: ["pokemon"]
  650. },
  651. "polar-bear": {
  652. name: "Polar Bear",
  653. parents: ["bear"]
  654. },
  655. "bear": {
  656. name: "Bear",
  657. parents: ["mammal"]
  658. },
  659. "absol": {
  660. name: "Absol",
  661. parents: ["pokemon"]
  662. },
  663. "wolver": {
  664. name: "Wolver",
  665. parents: ["mammal"]
  666. },
  667. "rottweiler": {
  668. name: "Rottweiler",
  669. parents: ["dog"]
  670. },
  671. "zebra": {
  672. name: "Zebra",
  673. parents: ["horse"]
  674. },
  675. "yoshi": {
  676. name: "Yoshi",
  677. parents: ["lizard"]
  678. },
  679. "lynx": {
  680. name: "Lynx",
  681. parents: ["cat"]
  682. },
  683. "unknown": {
  684. name: "Unknown",
  685. parents: []
  686. },
  687. "thylacine": {
  688. name: "Thylacine",
  689. parents: ["mammal"]
  690. },
  691. "gabumon": {
  692. name: "Gabumon",
  693. parents: ["digimon"]
  694. },
  695. "border-collie": {
  696. name: "Border Collie",
  697. parents: ["dog"]
  698. },
  699. "imp": {
  700. name: "Imp",
  701. parents: ["demon"]
  702. },
  703. "kangaroo": {
  704. name: "Kangaroo",
  705. parents: ["marsupial"]
  706. },
  707. "renamon": {
  708. name: "Renamon",
  709. parents: ["digimon"]
  710. },
  711. "candy-orca-dragon": {
  712. name: "Candy Orca Dragon",
  713. parents: ["fish", "dragon", "candy"]
  714. },
  715. "sabertooth-tiger": {
  716. name: "Sabertooth Tiger",
  717. parents: ["cat"]
  718. },
  719. "espurr": {
  720. name: "Espurr",
  721. parents: ["pokemon"]
  722. },
  723. "otter": {
  724. name: "Otter",
  725. parents: ["mustelid"]
  726. },
  727. "elemental": {
  728. name: "Elemental",
  729. parents: ["mammal"]
  730. },
  731. "mew": {
  732. name: "Mew",
  733. parents: ["pokemon"]
  734. },
  735. "goodra": {
  736. name: "Goodra",
  737. parents: ["pokemon"]
  738. },
  739. "fairy": {
  740. name: "Fairy",
  741. parents: ["magical"]
  742. },
  743. "typhlosion": {
  744. name: "Typhlosion",
  745. parents: ["pokemon"]
  746. },
  747. "magical": {
  748. name: "Magical",
  749. parents: []
  750. },
  751. "xenomorph": {
  752. name: "Xenomorph",
  753. parents: ["monster", "alien"]
  754. },
  755. "charr": {
  756. name: "Charr",
  757. parents: ["cat"]
  758. },
  759. "siberian-husky": {
  760. name: "Siberian Husky",
  761. parents: ["husky"]
  762. },
  763. "alligator": {
  764. name: "Alligator",
  765. parents: ["reptile"]
  766. },
  767. "bernese-mountain-dog": {
  768. name: "Bernese Mountain Dog",
  769. parents: ["dog"]
  770. },
  771. "reshiram": {
  772. name: "Reshiram",
  773. parents: ["pokemon"]
  774. },
  775. "grizzly-bear": {
  776. name: "Grizzly Bear",
  777. parents: ["bear"]
  778. },
  779. "water-monitor": {
  780. name: "Water Monitor",
  781. parents: ["lizard"]
  782. },
  783. "banchofossa": {
  784. name: "Banchofossa",
  785. parents: ["mammal"]
  786. },
  787. "kirin": {
  788. name: "Kirin",
  789. parents: ["monster"]
  790. },
  791. "quilava": {
  792. name: "Quilava",
  793. parents: ["pokemon"]
  794. },
  795. "seviper": {
  796. name: "Seviper",
  797. parents: ["pokemon"]
  798. },
  799. "flying-fox": {
  800. name: "Flying Fox",
  801. parents: ["bat"]
  802. },
  803. "keynain": {
  804. name: "Keynain",
  805. parents: ["avian"]
  806. },
  807. "lucario": {
  808. name: "Lucario",
  809. parents: ["pokemon"]
  810. },
  811. "siamese-cat": {
  812. name: "Siamese Cat",
  813. parents: ["cat"]
  814. },
  815. "spider": {
  816. name: "Spider",
  817. parents: ["insect"]
  818. },
  819. "samurott": {
  820. name: "Samurott",
  821. parents: ["pokemon"]
  822. },
  823. "megalodon": {
  824. name: "Megalodon",
  825. parents: ["shark"]
  826. },
  827. "unicorn": {
  828. name: "Unicorn",
  829. parents: ["horse"]
  830. },
  831. "greninja": {
  832. name: "Greninja",
  833. parents: ["pokemon"]
  834. },
  835. "water-dragon": {
  836. name: "Water Dragon",
  837. parents: ["dragon"]
  838. },
  839. "cross-fox": {
  840. name: "Cross Fox",
  841. parents: ["fox"]
  842. },
  843. "synth": {
  844. name: "Synth",
  845. parents: ["machine"]
  846. },
  847. "construct": {
  848. name: "Construct",
  849. parents: []
  850. },
  851. "mexican-wolf": {
  852. name: "Mexican Wolf",
  853. parents: ["wolf"]
  854. },
  855. "leopard": {
  856. name: "Leopard",
  857. parents: ["cat"]
  858. },
  859. "pig": {
  860. name: "Pig",
  861. parents: ["mammal"]
  862. },
  863. "ampharos": {
  864. name: "Ampharos",
  865. parents: ["pokemon"]
  866. },
  867. "orca": {
  868. name: "Orca",
  869. parents: ["fish"]
  870. },
  871. "lycanroc": {
  872. name: "Lycanroc",
  873. parents: ["pokemon"]
  874. },
  875. "surkanu": {
  876. name: "Surkanu",
  877. parents: ["monster"]
  878. },
  879. "seal": {
  880. name: "Seal",
  881. parents: ["mammal"]
  882. },
  883. "keldeo": {
  884. name: "Keldeo",
  885. parents: ["pokemon"]
  886. },
  887. "great-dane": {
  888. name: "Great Dane",
  889. parents: ["dog"]
  890. },
  891. "black-backed-jackal": {
  892. name: "Black Backed Jackal",
  893. parents: ["jackal"]
  894. },
  895. "sheep": {
  896. name: "Sheep",
  897. parents: ["mammal"]
  898. },
  899. "leopard-seal": {
  900. name: "Leopard Seal",
  901. parents: ["seal"]
  902. },
  903. "zoroark": {
  904. name: "Zoroark",
  905. parents: ["pokemon"]
  906. },
  907. "maned-wolf": {
  908. name: "Maned Wolf",
  909. parents: ["canine"]
  910. },
  911. "dracha": {
  912. name: "Dracha",
  913. parents: ["dragon"]
  914. },
  915. "wolxi": {
  916. name: "Wolxi",
  917. parents: ["mammal", "alien"]
  918. },
  919. "dratini": {
  920. name: "Dratini",
  921. parents: ["pokemon", "dragon"]
  922. },
  923. "skaven": {
  924. name: "Skaven",
  925. parents: ["rat"]
  926. },
  927. "mongoose": {
  928. name: "Mongoose",
  929. parents: ["mammal"]
  930. },
  931. "lopunny": {
  932. name: "Lopunny",
  933. parents: ["pokemon", "rabbit"]
  934. },
  935. "feraligatr": {
  936. name: "Feraligatr",
  937. parents: ["pokemon", "alligator"]
  938. },
  939. "houndoom": {
  940. name: "Houndoom",
  941. parents: ["pokemon", "dog"]
  942. },
  943. "protogen": {
  944. name: "Protogen",
  945. parents: ["machine"]
  946. },
  947. "saint-bernard": {
  948. name: "Saint Bernard",
  949. parents: ["dog"]
  950. },
  951. "crow": {
  952. name: "Crow",
  953. parents: ["corvid"]
  954. },
  955. "delphox": {
  956. name: "Delphox",
  957. parents: ["pokemon", "fox"]
  958. },
  959. "moose": {
  960. name: "Moose",
  961. parents: ["mammal"]
  962. },
  963. "joraxian": {
  964. name: "Joraxian",
  965. parents: ["monster", "canine", "demon"]
  966. },
  967. "nimbat": {
  968. name: "Nimbat",
  969. parents: ["mammal"]
  970. },
  971. "aardwolf": {
  972. name: "Aardwolf",
  973. parents: ["canine"]
  974. },
  975. "fluudrani": {
  976. name: "Fluudrani",
  977. parents: ["animal"]
  978. },
  979. "arcanine": {
  980. name: "Arcanine",
  981. parents: ["pokemon", "dog"]
  982. },
  983. "inteleon": {
  984. name: "Inteleon",
  985. parents: ["pokemon", "fish"]
  986. },
  987. "ninetales": {
  988. name: "Ninetales",
  989. parents: ["pokemon", "kitsune"]
  990. },
  991. "tigrex": {
  992. name: "Tigrex",
  993. parents: ["tiger"]
  994. },
  995. "zorua": {
  996. name: "Zorua",
  997. parents: ["pokemon", "fox"]
  998. },
  999. "vulpix": {
  1000. name: "Vulpix",
  1001. parents: ["pokemon", "fox"]
  1002. },
  1003. "barghest": {
  1004. name: "Barghest",
  1005. parents: ["monster"]
  1006. },
  1007. "gray-wolf": {
  1008. name: "Gray Wolf",
  1009. parents: ["wolf"]
  1010. },
  1011. "ruppells-fox": {
  1012. name: "Rüppell's Fox",
  1013. parents: ["fox"]
  1014. },
  1015. "bull-terrier": {
  1016. name: "Bull Terrier",
  1017. parents: ["dog"]
  1018. },
  1019. "european-honey-buzzard": {
  1020. name: "European Honey Buzzard",
  1021. parents: ["avian"]
  1022. },
  1023. "t-rex": {
  1024. name: "Tyrannosaurus Rex",
  1025. parents: ["dinosaur"]
  1026. },
  1027. "mactarian": {
  1028. name: "Mactarian",
  1029. parents: ["shark", "monster"]
  1030. },
  1031. "mewtwo-y": {
  1032. name: "Mewtwo Y",
  1033. parents: ["mewtwo"]
  1034. },
  1035. "mewtwo": {
  1036. name: "Mewtwo",
  1037. parents: ["pokemon"]
  1038. },
  1039. "eevee": {
  1040. name: "Eevee",
  1041. parents: ["eeveelution"]
  1042. },
  1043. "mienshao": {
  1044. name: "Mienshao",
  1045. parents: ["pokemon"]
  1046. },
  1047. "sugar-glider": {
  1048. name: "Sugar Glider",
  1049. parents: ["opossum"]
  1050. },
  1051. "spectral-bat": {
  1052. name: "Spectral Bat",
  1053. parents: ["bat"]
  1054. },
  1055. "scolipede": {
  1056. name: "Scolipede",
  1057. parents: ["pokemon", "insect"]
  1058. },
  1059. "jackalope": {
  1060. name: "Jackalope",
  1061. parents: ["rabbit", "antelope"]
  1062. },
  1063. "caracal": {
  1064. name: "Caracal",
  1065. parents: ["cat"]
  1066. },
  1067. "stoat": {
  1068. name: "Stoat",
  1069. parents: ["mammal"]
  1070. },
  1071. "african-golden-cat": {
  1072. name: "African Golden Cat",
  1073. parents: ["cat"]
  1074. },
  1075. "gigantosaurus": {
  1076. name: "Gigantosaurus",
  1077. parents: ["dinosaur"]
  1078. },
  1079. "zorgoia": {
  1080. name: "Zorgoia",
  1081. parents: ["mammal"]
  1082. },
  1083. "monitor-lizard": {
  1084. name: "Monitor Lizard",
  1085. parents: ["lizard"]
  1086. },
  1087. "ziralkia": {
  1088. name: "Ziralkia",
  1089. parents: ["mammal"]
  1090. },
  1091. "kiiasi": {
  1092. name: "Kiiasi",
  1093. parents: ["animal"]
  1094. },
  1095. "synx": {
  1096. name: "Synx",
  1097. parents: ["monster"]
  1098. },
  1099. "panther": {
  1100. name: "Panther",
  1101. parents: ["cat"]
  1102. },
  1103. "azumarill": {
  1104. name: "Azumarill",
  1105. parents: ["pokemon"]
  1106. },
  1107. "river-snaptail": {
  1108. name: "River Snaptail",
  1109. parents: ["otter", "crocodile"]
  1110. },
  1111. "great-blue-heron": {
  1112. name: "Great Blue Heron",
  1113. parents: ["avian"]
  1114. },
  1115. "smeargle": {
  1116. name: "Smeargle",
  1117. parents: ["pokemon"]
  1118. },
  1119. "vendeilen": {
  1120. name: "Vendeilen",
  1121. parents: ["monster"]
  1122. },
  1123. "ventura": {
  1124. name: "Ventura",
  1125. parents: ["canine"]
  1126. },
  1127. "clouded-leopard": {
  1128. name: "Clouded Leopard",
  1129. parents: ["leopard"]
  1130. },
  1131. "argonian": {
  1132. name: "Argonian",
  1133. parents: ["lizard"]
  1134. },
  1135. "salazzle": {
  1136. name: "Salazzle",
  1137. parents: ["pokemon", "lizard"]
  1138. },
  1139. "je-stoff-drachen": {
  1140. name: "Je-Stoff Drachen",
  1141. parents: ["dragon"]
  1142. },
  1143. "finnish-spitz-dog": {
  1144. name: "Finnish Spitz Dog",
  1145. parents: ["dog"]
  1146. },
  1147. "gray-fox": {
  1148. name: "Gray Fox",
  1149. parents: ["fox"]
  1150. },
  1151. "opossum": {
  1152. name: "Opossum",
  1153. parents: ["mammal"]
  1154. },
  1155. "antelope": {
  1156. name: "Antelope",
  1157. parents: ["mammal"]
  1158. },
  1159. "weavile": {
  1160. name: "Weavile",
  1161. parents: ["pokemon"]
  1162. },
  1163. "pikachu": {
  1164. name: "Pikachu",
  1165. parents: ["pokemon", "mouse"]
  1166. },
  1167. "grovyle": {
  1168. name: "Grovyle",
  1169. parents: ["pokemon", "plant"]
  1170. },
  1171. "sthara": {
  1172. name: "Sthara",
  1173. parents: ["snow-leopard", "reptile"]
  1174. },
  1175. "star-warrior": {
  1176. name: "Star Warrior",
  1177. parents: ["magical"]
  1178. },
  1179. "dragonoid": {
  1180. name: "Dragonoid",
  1181. parents: ["dragon"]
  1182. },
  1183. "suicune": {
  1184. name: "Suicune",
  1185. parents: ["pokemon"]
  1186. },
  1187. "vole": {
  1188. name: "Vole",
  1189. parents: ["mammal"]
  1190. },
  1191. "blaziken": {
  1192. name: "Blaziken",
  1193. parents: ["pokemon", "avian"]
  1194. },
  1195. "buizel": {
  1196. name: "Buizel",
  1197. parents: ["pokemon", "fish"]
  1198. },
  1199. "floatzel": {
  1200. name: "Floatzel",
  1201. parents: ["pokemon", "fish"]
  1202. },
  1203. "umok": {
  1204. name: "Umok",
  1205. parents: ["avian"]
  1206. },
  1207. "sea-monster": {
  1208. name: "Sea Monster",
  1209. parents: ["monster", "fish"]
  1210. },
  1211. "egyptian-vulture": {
  1212. name: "Egyptian Vulture",
  1213. parents: ["avian"]
  1214. },
  1215. "doberman": {
  1216. name: "Doberman",
  1217. parents: ["dog"]
  1218. },
  1219. "zangoose": {
  1220. name: "Zangoose",
  1221. parents: ["pokemon", "mongoose"]
  1222. },
  1223. "mongoose": {
  1224. name: "Mongoose",
  1225. parents: ["mammal"]
  1226. },
  1227. "wickerbeast": {
  1228. name: "Wickerbeast",
  1229. parents: ["monster"]
  1230. },
  1231. "zenari": {
  1232. name: "Zenari",
  1233. parents: ["lizard"]
  1234. },
  1235. "plant": {
  1236. name: "Plant",
  1237. parents: []
  1238. },
  1239. "raskatox": {
  1240. name: "Raskatox",
  1241. parents: ["raccoon", "skunk", "cat", "fox"]
  1242. },
  1243. "mikromare": {
  1244. name: "mikromare",
  1245. parents: ["alien"]
  1246. },
  1247. "alien": {
  1248. name: "Alien",
  1249. parents: ["animal"]
  1250. },
  1251. "deity": {
  1252. name: "Deity",
  1253. parents: []
  1254. },
  1255. "skarlan": {
  1256. name: "Skarlan",
  1257. parents: ["slug", "dragon"]
  1258. },
  1259. "slug": {
  1260. name: "Slug",
  1261. parents: ["mollusk"]
  1262. },
  1263. "mollusk": {
  1264. name: "Mollusk",
  1265. parents: ["animal"]
  1266. },
  1267. "chimera": {
  1268. name: "Chimera",
  1269. parents: ["monster"]
  1270. },
  1271. "gestalt": {
  1272. name: "Gestalt",
  1273. parents: ["construct"]
  1274. },
  1275. "mimic": {
  1276. name: "Mimic",
  1277. parents: ["monster"]
  1278. },
  1279. "calico-rat": {
  1280. name: "Calico Rat",
  1281. parents: ["rat"]
  1282. },
  1283. "panda": {
  1284. name: "Panda",
  1285. parents: ["mammal"]
  1286. },
  1287. "oni": {
  1288. name: "Oni",
  1289. parents: ["monster"]
  1290. },
  1291. "pegasus": {
  1292. name: "Pegasus",
  1293. parents: ["horse"]
  1294. },
  1295. "vulpera": {
  1296. name: "Vulpera",
  1297. parents: ["fennec-fox"]
  1298. },
  1299. "ceratosaurus": {
  1300. name: "Ceratosaurus",
  1301. parents: ["dinosaur"]
  1302. },
  1303. "nykur": {
  1304. name: "Nykur",
  1305. parents: ["horse", "monster"]
  1306. },
  1307. "giraffe": {
  1308. name: "Giraffe",
  1309. parents: ["mammal"]
  1310. },
  1311. "tauren": {
  1312. name: "Tauren",
  1313. parents: ["cow"]
  1314. },
  1315. "draconi": {
  1316. name: "Draconi",
  1317. parents: ["alien", "cat", "cyborg"]
  1318. },
  1319. "dire-wolf": {
  1320. name: "Dire Wolf",
  1321. parents: ["wolf"]
  1322. },
  1323. "ferromorph": {
  1324. name: "Ferromorph",
  1325. parents: ["construct"]
  1326. },
  1327. "meowth": {
  1328. name: "Meowth",
  1329. parents: ["cat", "pokemon"]
  1330. },
  1331. "pavodragon": {
  1332. name: "Pavodragon",
  1333. parents: ["dragon"]
  1334. },
  1335. "aaltranae": {
  1336. name: "Aaltranae",
  1337. parents: ["dragon"]
  1338. },
  1339. "cyborg": {
  1340. name: "Cyborg",
  1341. parents: ["machine"]
  1342. },
  1343. "draptor": {
  1344. name: "Draptor",
  1345. parents: ["dragon"]
  1346. },
  1347. "candy": {
  1348. name: "Candy",
  1349. parents: []
  1350. },
  1351. "drenath": {
  1352. name: "Drenath",
  1353. parents: ["dragon", "snake", "rabbit"]
  1354. },
  1355. "coyju": {
  1356. name: "Coyju",
  1357. parents: ["coyote", "kaiju"]
  1358. },
  1359. "kaiju": {
  1360. name: "Kaiju",
  1361. parents: ["monster"]
  1362. },
  1363. "nickit": {
  1364. name: "Nickit",
  1365. parents: ["pokemon", "cat"]
  1366. },
  1367. "lopunny": {
  1368. name: "Lopunny",
  1369. parents: ["pokemon", "rabbit"]
  1370. },
  1371. "korean-jindo-dog": {
  1372. name: "Korean Jindo Dog",
  1373. parents: ["dog"]
  1374. },
  1375. "naga": {
  1376. name: "Naga",
  1377. parents: ["snake", "monster"]
  1378. },
  1379. "undead": {
  1380. name: "Undead",
  1381. parents: ["monster"]
  1382. },
  1383. "whale": {
  1384. name: "Whale",
  1385. parents: ["fish"]
  1386. },
  1387. "gelato-bee": {
  1388. name: "Gelato Bee",
  1389. parents: ["bee"]
  1390. },
  1391. "bee": {
  1392. name: "Bee",
  1393. parents: ["insect"]
  1394. },
  1395. "gardevoir": {
  1396. name: "Gardevoir",
  1397. parents: ["pokemon"]
  1398. },
  1399. "ant": {
  1400. name: "Ant",
  1401. parents: ["insect"]
  1402. },
  1403. "frog": {
  1404. name: "Frog",
  1405. parents: ["amphibian"]
  1406. },
  1407. "amphibian": {
  1408. name: "Amphibian",
  1409. parents: ["animal"]
  1410. },
  1411. "pangolin": {
  1412. name: "Pangolin",
  1413. parents: ["mammal"]
  1414. },
  1415. "uragi'viidorn": {
  1416. name: "Uragi'viidorn",
  1417. parents: ["avian", "bear"]
  1418. },
  1419. "gryphdelphais": {
  1420. name: "Gryphdelphais",
  1421. parents: ["dolphin", "gryphon"]
  1422. },
  1423. "plush": {
  1424. name: "Plush",
  1425. parents: ["construct"]
  1426. },
  1427. "draiger": {
  1428. name: "Draiger",
  1429. parents: ["dragon","tiger"]
  1430. },
  1431. "foxsky": {
  1432. name: "Foxsky",
  1433. parents: ["fox", "husky"]
  1434. },
  1435. "umbreon": {
  1436. name: "Umbreon",
  1437. parents: ["eeveelution"]
  1438. },
  1439. "slime-dragon": {
  1440. name: "Slime Dragon",
  1441. parents: ["dragon", "goo"]
  1442. },
  1443. "enderman": {
  1444. name: "Enderman",
  1445. parents: ["monster"]
  1446. },
  1447. "gremlin": {
  1448. name: "Gremlin",
  1449. parents: ["monster"]
  1450. },
  1451. "dragonsune": {
  1452. name: "Dragonsune",
  1453. parents: ["dragon", "kitsune"]
  1454. },
  1455. "ghost": {
  1456. name: "Ghost",
  1457. parents: ["supernatural"]
  1458. },
  1459. "false-vampire-bat": {
  1460. name: "False Vampire Bat",
  1461. parents: ["bat"]
  1462. },
  1463. "succubus": {
  1464. name: "Succubus",
  1465. parents: ["demon"]
  1466. },
  1467. "mia": {
  1468. name: "Mia",
  1469. parents: ["canine"]
  1470. },
  1471. "rainbow": {
  1472. name: "Rainbow",
  1473. parents: ["monster"]
  1474. },
  1475. "solgaleo": {
  1476. name: "Solgaleo",
  1477. parents: ["pokemon"]
  1478. },
  1479. "lucent-nargacuga": {
  1480. name: "Lucent Nargacuga",
  1481. parents: ["monster-hunter"]
  1482. },
  1483. "monster-hunter": {
  1484. name: "Monster Hunter",
  1485. parents: ["monster"]
  1486. },
  1487. "leviathan": {
  1488. "name": "Leviathan",
  1489. "url": "sea-monster"
  1490. },
  1491. "bull": {
  1492. name: "Bull",
  1493. parents: ["mammal"]
  1494. },
  1495. "tanuki": {
  1496. name: "Tanuki",
  1497. parents: ["monster"]
  1498. },
  1499. "chakat": {
  1500. name: "Chakat",
  1501. parents: ["cat"]
  1502. },
  1503. "hydra": {
  1504. name: "Hydra",
  1505. parents: ["monster"]
  1506. },
  1507. "zigzagoon": {
  1508. name: "Zigzagoon",
  1509. parents: ["raccoon", "pokemon"]
  1510. },
  1511. "vulture": {
  1512. name: "Vulture",
  1513. parents: ["avian"]
  1514. },
  1515. "eastern-dragon": {
  1516. name: "Eastern Dragon",
  1517. parents: ["dragon"]
  1518. },
  1519. "gryffon": {
  1520. name: "Gryffon",
  1521. parents: ["phoenix", "red-panda"]
  1522. },
  1523. "amtsvane": {
  1524. name: "Amtsvane",
  1525. parents: ["reptile"]
  1526. },
  1527. "kigavi": {
  1528. name: "Kigavi",
  1529. parents: ["avian"]
  1530. },
  1531. "turian": {
  1532. name: "Turian",
  1533. parents: ["avian"]
  1534. },
  1535. "zeraora": {
  1536. name: "Zeraora",
  1537. parents: ["pokemon"]
  1538. },
  1539. "sandshrew": {
  1540. name: "Sandshrew",
  1541. parents: ["pokemon", "pangolin"]
  1542. },
  1543. "valais-blacknose-sheep": {
  1544. name: "Valais Blacknose Sheep",
  1545. parents: ["sheep"]
  1546. },
  1547. "novaleit": {
  1548. name: "Novaleit",
  1549. parents: ["mammal"]
  1550. },
  1551. "dunnoh": {
  1552. name: "Dunnoh",
  1553. parents: ["mammal"]
  1554. },
  1555. "lunaral-dragon": {
  1556. name: "Lunaral Dragon",
  1557. parents: ["dragon"]
  1558. },
  1559. "arctic-wolf": {
  1560. name: "Arctic Wolf",
  1561. parents: ["wolf"]
  1562. },
  1563. "donkey": {
  1564. name: "Donkey",
  1565. parents: ["horse"]
  1566. },
  1567. "chinchilla": {
  1568. name: "Chinchilla",
  1569. parents: ["rodent"]
  1570. },
  1571. "felkin": {
  1572. name: "Felkin",
  1573. parents: ["dragon"]
  1574. },
  1575. "tykeriel": {
  1576. name: "Tykeriel",
  1577. parents: ["avian"]
  1578. },
  1579. "folf": {
  1580. name: "Folf",
  1581. parents: ["fox", "wolf"]
  1582. },
  1583. "pooltoy": {
  1584. name: "Pooltoy",
  1585. parents: ["construct"]
  1586. },
  1587. "demi": {
  1588. name: "Demi",
  1589. parents: ["human"]
  1590. },
  1591. "stegosaurus": {
  1592. name: "Stegosaurus",
  1593. parents: ["dinosaur"]
  1594. },
  1595. "computer-virus": {
  1596. name: "Computer Virus",
  1597. parents: ["program"]
  1598. },
  1599. "program": {
  1600. name: "Program",
  1601. parents: ["construct"]
  1602. },
  1603. "space-springhare": {
  1604. name: "Space Springhare",
  1605. parents: ["hare"]
  1606. },
  1607. "river-drake": {
  1608. name: "River Drake",
  1609. parents: ["dragon"]
  1610. },
  1611. "djinn": {
  1612. "name": "Djinn",
  1613. "url": "supernatural"
  1614. },
  1615. "supernatural": {
  1616. name: "Supernatural",
  1617. parents: ["monster"]
  1618. },
  1619. "grasshopper-mouse": {
  1620. name: "Grasshopper Mouse",
  1621. parents: ["mouse"]
  1622. },
  1623. "somali-cat": {
  1624. name: "Somali Cat",
  1625. parents: ["cat"]
  1626. },
  1627. "minccino": {
  1628. name: "Minccino",
  1629. parents: ["pokemon", "chinchilla"]
  1630. },
  1631. "pine-marten": {
  1632. name: "Pine Marten",
  1633. parents: ["marten"]
  1634. },
  1635. "marten": {
  1636. name: "Marten",
  1637. parents: ["mustelid"]
  1638. },
  1639. "mustelid": {
  1640. name: "Mustelid",
  1641. parents: ["mammal"]
  1642. },
  1643. "caribou": {
  1644. name: "Caribou",
  1645. parents: ["deer"]
  1646. },
  1647. "gnoll": {
  1648. name: "Gnoll",
  1649. parents: ["hyena", "monster"]
  1650. },
  1651. "peacekeeper": {
  1652. name: "Peacekeeper",
  1653. parents: ["human"]
  1654. },
  1655. "river-otter": {
  1656. name: "River Otter",
  1657. parents: ["otter"]
  1658. },
  1659. "dhole": {
  1660. name: "Dhole",
  1661. parents: ["canine"]
  1662. },
  1663. "springbok": {
  1664. name: "Springbok",
  1665. parents: ["antelope"]
  1666. },
  1667. "marsupial": {
  1668. name: "Marsupial",
  1669. parents: ["mammal"]
  1670. },
  1671. "townsend-big-eared-bat": {
  1672. name: "Townsend Big-eared Bat",
  1673. parents: ["bat"]
  1674. },
  1675. "squirrel": {
  1676. name: "Squirrel",
  1677. parents: ["rodent"]
  1678. },
  1679. "magpie": {
  1680. name: "Magpie",
  1681. parents: ["corvid"]
  1682. },
  1683. "civet": {
  1684. name: "Civet",
  1685. parents: ["feliform"]
  1686. },
  1687. "feliform": {
  1688. name: "Feliform",
  1689. parents: ["mammal"]
  1690. },
  1691. "tiefling": {
  1692. name: "Tiefling",
  1693. parents: ["devil"]
  1694. },
  1695. "devil": {
  1696. name: "Devil",
  1697. parents: ["supernatural"]
  1698. },
  1699. "sika-deer": {
  1700. name: "Sika Deer",
  1701. parents: ["deer"]
  1702. },
  1703. "vaporeon": {
  1704. name: "Vaporeon",
  1705. parents: ["eeveelution"]
  1706. },
  1707. "leafeon": {
  1708. name: "Leafeon",
  1709. parents: ["eeveelution"]
  1710. },
  1711. "jolteon": {
  1712. name: "Jolteon",
  1713. parents: ["eeveelution"]
  1714. },
  1715. "spireborn": {
  1716. name: "Spireborn",
  1717. parents: ["zorgoia"]
  1718. },
  1719. "vampire": {
  1720. name: "Vampire",
  1721. parents: ["monster"]
  1722. },
  1723. "extraplanar": {
  1724. name: "Extraplanar",
  1725. parents: []
  1726. },
  1727. "goo": {
  1728. name: "Goo",
  1729. parents: []
  1730. },
  1731. "skink": {
  1732. name: "Skink",
  1733. parents: ["lizard"]
  1734. },
  1735. "bat-eared-fox": {
  1736. name: "Bat-eared Fox",
  1737. parents: ["fox"]
  1738. },
  1739. "belted-kingfisher": {
  1740. name: "Belted Kingfisher",
  1741. parents: ["avian"]
  1742. },
  1743. "omnifalcon": {
  1744. name: "Omnifalcon",
  1745. parents: ["gryphon", "falcon", "harpy-eagle"]
  1746. },
  1747. "falcon": {
  1748. name: "Falcon",
  1749. parents: ["avian"]
  1750. },
  1751. "avali": {
  1752. name: "Avali",
  1753. parents: ["avian", "alien"]
  1754. },
  1755. "arctic-fox": {
  1756. name: "Arctic Fox",
  1757. parents: ["fox"]
  1758. },
  1759. "snow-tiger": {
  1760. name: "Snow Tiger",
  1761. parents: ["tiger"]
  1762. },
  1763. "marble-fox": {
  1764. name: "Marble Fox",
  1765. parents: ["fox"]
  1766. },
  1767. "king-wickerbeast": {
  1768. name: "King Wickerbeast",
  1769. parents: ["wickerbeast"]
  1770. },
  1771. "wickerbeast": {
  1772. name: "Wickerbeast",
  1773. parents: ["mammal"]
  1774. },
  1775. "european-polecat": {
  1776. name: "European Polecat",
  1777. parents: ["mustelid"]
  1778. },
  1779. "teshari": {
  1780. name: "Teshari",
  1781. parents: ["avian", "raptor"]
  1782. },
  1783. "alicorn": {
  1784. name: "Alicorn",
  1785. parents: ["horse"]
  1786. },
  1787. "atlas-moth": {
  1788. name: "Atlas Moth",
  1789. parents: ["moth"]
  1790. },
  1791. "owlbear": {
  1792. name: "Owlbear",
  1793. parents: ["owl", "bear", "monster"]
  1794. },
  1795. "owl": {
  1796. name: "Owl",
  1797. parents: ["avian"]
  1798. },
  1799. "silvertongue": {
  1800. name: "Silvertongue",
  1801. parents: ["reptile"]
  1802. },
  1803. "ahuizotl": {
  1804. name: "Ahuizotl",
  1805. parents: ["monster"]
  1806. },
  1807. "ender-dragon": {
  1808. name: "Ender Dragon",
  1809. parents: ["dragon"]
  1810. },
  1811. "bruhathkayosaurus": {
  1812. name: "Bruhathkayosaurus",
  1813. parents: ["sauropod"]
  1814. },
  1815. "sauropod": {
  1816. name: "Sauropod",
  1817. parents: ["dinosaur"]
  1818. },
  1819. "black-sable-antelope": {
  1820. name: "Black Sable Antelope",
  1821. parents: ["antelope"]
  1822. },
  1823. "slime": {
  1824. name: "Slime",
  1825. parents: ["goo"]
  1826. },
  1827. "utahraptor": {
  1828. name: "Utahraptor",
  1829. parents: ["raptor"]
  1830. },
  1831. "indian-giant-squirrel": {
  1832. name: "Indian Giant Squirrel",
  1833. parents: ["squirrel"]
  1834. },
  1835. "golden-retriever": {
  1836. name: "Golden Retriever",
  1837. parents: ["dog"]
  1838. },
  1839. "triceratops": {
  1840. name: "Triceratops",
  1841. parents: ["dinosaur"]
  1842. },
  1843. "drake": {
  1844. name: "Drake",
  1845. parents: ["dragon"]
  1846. },
  1847. "okapi": {
  1848. name: "Okapi",
  1849. parents: ["giraffe"]
  1850. },
  1851. "arctic-hare": {
  1852. name: "Arctic Hare",
  1853. parents: ["hare"]
  1854. },
  1855. "hare": {
  1856. name: "Hare",
  1857. parents: ["leporidae"]
  1858. },
  1859. "leporidae": {
  1860. name: "Leporidae",
  1861. parents: ["mammal"]
  1862. },
  1863. "leopard-gecko": {
  1864. name: "Leopard Gecko",
  1865. parents: ["gecko"]
  1866. },
  1867. "dreamspawn": {
  1868. name: "Dreamspawn",
  1869. parents: ["illusion"]
  1870. },
  1871. "illusion": {
  1872. name: "Illusion",
  1873. parents: []
  1874. },
  1875. "purrloin": {
  1876. name: "Purrloin",
  1877. parents: ["cat", "pokemon"]
  1878. },
  1879. "noivern": {
  1880. name: "Noivern",
  1881. parents: ["bat", "dragon", "pokemon"]
  1882. },
  1883. "hedgehog": {
  1884. name: "Hedgehog",
  1885. parents: ["mammal"]
  1886. },
  1887. "liger": {
  1888. name: "Liger",
  1889. parents: ["lion", "tiger", "hybrid"]
  1890. },
  1891. "hybrid": {
  1892. name: "Hybrid",
  1893. parents: []
  1894. },
  1895. "drider": {
  1896. name: "Drider",
  1897. parents: ["spider"]
  1898. },
  1899. "sabresune": {
  1900. name: "Sabresune",
  1901. parents: ["kitsune", "sabertooth-tiger"]
  1902. },
  1903. "ditto": {
  1904. name: "Ditto",
  1905. parents: ["pokemon", "goo"]
  1906. },
  1907. }
  1908. //species
  1909. function getSpeciesInfo(speciesList) {
  1910. let result = new Set();
  1911. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1912. result.add(entry)
  1913. });
  1914. return Array.from(result);
  1915. };
  1916. function getSpeciesInfoHelper(species) {
  1917. if (!speciesData[species]) {
  1918. console.warn(species + " doesn't exist");
  1919. return [];
  1920. }
  1921. if (speciesData[species].parents) {
  1922. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1923. } else {
  1924. return [species];
  1925. }
  1926. }
  1927. characterMakers.push(() => makeCharacter(
  1928. {
  1929. name: "Fen",
  1930. species: ["crux"],
  1931. description: {
  1932. title: "Bio",
  1933. text: "Very furry. Sheds on everything."
  1934. },
  1935. tags: [
  1936. "anthro",
  1937. "goo"
  1938. ]
  1939. },
  1940. {
  1941. front: {
  1942. height: math.unit(12, "feet"),
  1943. weight: math.unit(2400, "lb"),
  1944. name: "Front",
  1945. image: {
  1946. source: "./media/characters/fen/front.svg",
  1947. extra: 1804/1562,
  1948. bottom: 205/2009
  1949. }
  1950. },
  1951. diving: {
  1952. height: math.unit(4.9, "meters"),
  1953. weight: math.unit(2400, "lb"),
  1954. name: "Diving",
  1955. image: {
  1956. source: "./media/characters/fen/diving.svg"
  1957. }
  1958. },
  1959. goo: {
  1960. height: math.unit(12, "feet"),
  1961. weight: math.unit(3600, "lb"),
  1962. volume: math.unit(1000, "liters"),
  1963. capacity: math.unit(6, "people"),
  1964. name: "Goo",
  1965. image: {
  1966. source: "./media/characters/fen/goo.svg",
  1967. extra: 1307/1071,
  1968. bottom: 134/1441
  1969. }
  1970. },
  1971. maw: {
  1972. height: math.unit(5.03, "feet"),
  1973. name: "Maw",
  1974. image: {
  1975. source: "./media/characters/fen/maw.svg"
  1976. }
  1977. },
  1978. gooCeiling: {
  1979. height: math.unit(6.6, "feet"),
  1980. weight: math.unit(3000, "lb"),
  1981. volume: math.unit(1000, "liters"),
  1982. capacity: math.unit(6, "people"),
  1983. name: "Goo (Ceiling)",
  1984. image: {
  1985. source: "./media/characters/fen/goo-ceiling.svg"
  1986. }
  1987. },
  1988. back: {
  1989. height: math.unit(12, "feet"),
  1990. weight: math.unit(2400, "lb"),
  1991. name: "Back",
  1992. image: {
  1993. source: "./media/characters/fen/back.svg",
  1994. },
  1995. info: {
  1996. description: {
  1997. mode: "append",
  1998. text: "\n\nHe is not currently looking at you."
  1999. }
  2000. }
  2001. },
  2002. full: {
  2003. height: math.unit(1.6, "meter"),
  2004. weight: math.unit(3200, "lb"),
  2005. name: "Full",
  2006. image: {
  2007. source: "./media/characters/fen/full.svg",
  2008. extra: 1133/859,
  2009. bottom: 145/1278
  2010. },
  2011. info: {
  2012. description: {
  2013. mode: "append",
  2014. text: "\n\nMunch."
  2015. }
  2016. }
  2017. },
  2018. gooLounging: {
  2019. height: math.unit(4.53, "feet"),
  2020. weight: math.unit(3000, "lb"),
  2021. capacity: math.unit(6, "people"),
  2022. name: "Goo (Lounging)",
  2023. image: {
  2024. source: "./media/characters/fen/goo-lounging.svg",
  2025. bottom: 116 / 613
  2026. }
  2027. },
  2028. lounging: {
  2029. height: math.unit(10.52, "feet"),
  2030. weight: math.unit(2400, "lb"),
  2031. name: "Lounging",
  2032. image: {
  2033. source: "./media/characters/fen/lounging.svg"
  2034. }
  2035. },
  2036. },
  2037. [
  2038. {
  2039. name: "Small",
  2040. height: math.unit(2.2428, "meter")
  2041. },
  2042. {
  2043. name: "Normal",
  2044. height: math.unit(12, "feet"),
  2045. default: true,
  2046. },
  2047. {
  2048. name: "Big",
  2049. height: math.unit(20, "feet")
  2050. },
  2051. {
  2052. name: "Minimacro",
  2053. height: math.unit(40, "feet"),
  2054. info: {
  2055. description: {
  2056. mode: "append",
  2057. text: "\n\nTOO DAMN BIG"
  2058. }
  2059. }
  2060. },
  2061. {
  2062. name: "Macro",
  2063. height: math.unit(100, "feet"),
  2064. info: {
  2065. description: {
  2066. mode: "append",
  2067. text: "\n\nTOO DAMN BIG"
  2068. }
  2069. }
  2070. },
  2071. {
  2072. name: "Megamacro",
  2073. height: math.unit(2, "miles")
  2074. },
  2075. {
  2076. name: "Gigamacro",
  2077. height: math.unit(10, "earths")
  2078. },
  2079. ]
  2080. ))
  2081. characterMakers.push(() => makeCharacter(
  2082. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2083. {
  2084. front: {
  2085. height: math.unit(183, "cm"),
  2086. weight: math.unit(80, "kg"),
  2087. name: "Front",
  2088. image: {
  2089. source: "./media/characters/sofia-fluttertail/front.svg",
  2090. bottom: 0.01,
  2091. extra: 2154 / 2081
  2092. }
  2093. },
  2094. frontAlt: {
  2095. height: math.unit(183, "cm"),
  2096. weight: math.unit(80, "kg"),
  2097. name: "Front (alt)",
  2098. image: {
  2099. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2100. }
  2101. },
  2102. back: {
  2103. height: math.unit(183, "cm"),
  2104. weight: math.unit(80, "kg"),
  2105. name: "Back",
  2106. image: {
  2107. source: "./media/characters/sofia-fluttertail/back.svg"
  2108. }
  2109. },
  2110. kneeling: {
  2111. height: math.unit(125, "cm"),
  2112. weight: math.unit(80, "kg"),
  2113. name: "Kneeling",
  2114. image: {
  2115. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2116. extra: 1033 / 977,
  2117. bottom: 23.7 / 1057
  2118. }
  2119. },
  2120. maw: {
  2121. height: math.unit(183 / 5, "cm"),
  2122. name: "Maw",
  2123. image: {
  2124. source: "./media/characters/sofia-fluttertail/maw.svg"
  2125. }
  2126. },
  2127. mawcloseup: {
  2128. height: math.unit(183 / 5 * 0.41, "cm"),
  2129. name: "Maw (Closeup)",
  2130. image: {
  2131. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2132. }
  2133. },
  2134. paws: {
  2135. height: math.unit(1.17, "feet"),
  2136. name: "Paws",
  2137. image: {
  2138. source: "./media/characters/sofia-fluttertail/paws.svg",
  2139. extra: 851 / 851,
  2140. bottom: 17 / 868
  2141. }
  2142. },
  2143. },
  2144. [
  2145. {
  2146. name: "Normal",
  2147. height: math.unit(1.83, "meter")
  2148. },
  2149. {
  2150. name: "Size Thief",
  2151. height: math.unit(18, "feet")
  2152. },
  2153. {
  2154. name: "50 Foot Collie",
  2155. height: math.unit(50, "feet")
  2156. },
  2157. {
  2158. name: "Macro",
  2159. height: math.unit(96, "feet"),
  2160. default: true
  2161. },
  2162. {
  2163. name: "Megamerger",
  2164. height: math.unit(650, "feet")
  2165. },
  2166. ]
  2167. ))
  2168. characterMakers.push(() => makeCharacter(
  2169. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2170. {
  2171. front: {
  2172. height: math.unit(7, "feet"),
  2173. weight: math.unit(100, "kg"),
  2174. name: "Front",
  2175. image: {
  2176. source: "./media/characters/march/front.svg",
  2177. extra: 1992/1851,
  2178. bottom: 39/2031
  2179. }
  2180. },
  2181. foot: {
  2182. height: math.unit(0.9, "feet"),
  2183. name: "Foot",
  2184. image: {
  2185. source: "./media/characters/march/foot.svg"
  2186. }
  2187. },
  2188. },
  2189. [
  2190. {
  2191. name: "Normal",
  2192. height: math.unit(7.9, "feet")
  2193. },
  2194. {
  2195. name: "Macro",
  2196. height: math.unit(220, "meters")
  2197. },
  2198. {
  2199. name: "Megamacro",
  2200. height: math.unit(2.98, "km"),
  2201. default: true
  2202. },
  2203. {
  2204. name: "Gigamacro",
  2205. height: math.unit(15963, "km")
  2206. },
  2207. {
  2208. name: "Teramacro",
  2209. height: math.unit(2980000000, "km")
  2210. },
  2211. {
  2212. name: "Examacro",
  2213. height: math.unit(250, "parsecs")
  2214. },
  2215. ]
  2216. ))
  2217. characterMakers.push(() => makeCharacter(
  2218. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2219. {
  2220. front: {
  2221. height: math.unit(6, "feet"),
  2222. weight: math.unit(60, "kg"),
  2223. name: "Front",
  2224. image: {
  2225. source: "./media/characters/noir/front.svg",
  2226. extra: 1,
  2227. bottom: 0.032
  2228. }
  2229. },
  2230. },
  2231. [
  2232. {
  2233. name: "Normal",
  2234. height: math.unit(6.6, "feet")
  2235. },
  2236. {
  2237. name: "Macro",
  2238. height: math.unit(500, "feet")
  2239. },
  2240. {
  2241. name: "Megamacro",
  2242. height: math.unit(2.5, "km"),
  2243. default: true
  2244. },
  2245. {
  2246. name: "Gigamacro",
  2247. height: math.unit(22500, "km")
  2248. },
  2249. {
  2250. name: "Teramacro",
  2251. height: math.unit(2500000000, "km")
  2252. },
  2253. {
  2254. name: "Examacro",
  2255. height: math.unit(200, "parsecs")
  2256. },
  2257. ]
  2258. ))
  2259. characterMakers.push(() => makeCharacter(
  2260. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2261. {
  2262. front: {
  2263. height: math.unit(7, "feet"),
  2264. weight: math.unit(100, "kg"),
  2265. name: "Front",
  2266. image: {
  2267. source: "./media/characters/okuri/front.svg",
  2268. extra: 739/665,
  2269. bottom: 39/778
  2270. }
  2271. },
  2272. back: {
  2273. height: math.unit(7, "feet"),
  2274. weight: math.unit(100, "kg"),
  2275. name: "Back",
  2276. image: {
  2277. source: "./media/characters/okuri/back.svg",
  2278. extra: 734/653,
  2279. bottom: 13/747
  2280. }
  2281. },
  2282. sitting: {
  2283. height: math.unit(2.95, "feet"),
  2284. weight: math.unit(100, "kg"),
  2285. name: "Sitting",
  2286. image: {
  2287. source: "./media/characters/okuri/sitting.svg",
  2288. extra: 370/318,
  2289. bottom: 99/469
  2290. }
  2291. },
  2292. },
  2293. [
  2294. {
  2295. name: "Smallest",
  2296. height: math.unit(5 + 2/12, "feet")
  2297. },
  2298. {
  2299. name: "Smaller",
  2300. height: math.unit(300, "feet")
  2301. },
  2302. {
  2303. name: "Small",
  2304. height: math.unit(1000, "feet")
  2305. },
  2306. {
  2307. name: "Macro",
  2308. height: math.unit(1, "mile")
  2309. },
  2310. {
  2311. name: "Mega Macro (Small)",
  2312. height: math.unit(20, "km")
  2313. },
  2314. {
  2315. name: "Mega Macro (Large)",
  2316. height: math.unit(600, "km")
  2317. },
  2318. {
  2319. name: "Giga Macro",
  2320. height: math.unit(10000, "km")
  2321. },
  2322. {
  2323. name: "Normal",
  2324. height: math.unit(577560, "km"),
  2325. default: true
  2326. },
  2327. {
  2328. name: "Large",
  2329. height: math.unit(4, "galaxies")
  2330. },
  2331. {
  2332. name: "Largest",
  2333. height: math.unit(15, "multiverses")
  2334. },
  2335. ]
  2336. ))
  2337. characterMakers.push(() => makeCharacter(
  2338. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2339. {
  2340. front: {
  2341. height: math.unit(7, "feet"),
  2342. weight: math.unit(100, "kg"),
  2343. name: "Front",
  2344. image: {
  2345. source: "./media/characters/manny/front.svg",
  2346. extra: 1,
  2347. bottom: 0.06
  2348. }
  2349. },
  2350. back: {
  2351. height: math.unit(7, "feet"),
  2352. weight: math.unit(100, "kg"),
  2353. name: "Back",
  2354. image: {
  2355. source: "./media/characters/manny/back.svg",
  2356. extra: 1,
  2357. bottom: 0.014
  2358. }
  2359. },
  2360. },
  2361. [
  2362. {
  2363. name: "Normal",
  2364. height: math.unit(7, "feet"),
  2365. },
  2366. {
  2367. name: "Macro",
  2368. height: math.unit(78, "feet"),
  2369. default: true
  2370. },
  2371. {
  2372. name: "Macro+",
  2373. height: math.unit(300, "meters")
  2374. },
  2375. {
  2376. name: "Macro++",
  2377. height: math.unit(2400, "meters")
  2378. },
  2379. {
  2380. name: "Megamacro",
  2381. height: math.unit(5167, "meters")
  2382. },
  2383. {
  2384. name: "Gigamacro",
  2385. height: math.unit(41769, "miles")
  2386. },
  2387. ]
  2388. ))
  2389. characterMakers.push(() => makeCharacter(
  2390. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2391. {
  2392. front: {
  2393. height: math.unit(7, "feet"),
  2394. weight: math.unit(100, "kg"),
  2395. name: "Front",
  2396. image: {
  2397. source: "./media/characters/adake/front-1.svg"
  2398. }
  2399. },
  2400. frontAlt: {
  2401. height: math.unit(7, "feet"),
  2402. weight: math.unit(100, "kg"),
  2403. name: "Front (Alt)",
  2404. image: {
  2405. source: "./media/characters/adake/front-2.svg",
  2406. extra: 1,
  2407. bottom: 0.01
  2408. }
  2409. },
  2410. back: {
  2411. height: math.unit(7, "feet"),
  2412. weight: math.unit(100, "kg"),
  2413. name: "Back",
  2414. image: {
  2415. source: "./media/characters/adake/back.svg",
  2416. }
  2417. },
  2418. kneel: {
  2419. height: math.unit(5.385, "feet"),
  2420. weight: math.unit(100, "kg"),
  2421. name: "Kneeling",
  2422. image: {
  2423. source: "./media/characters/adake/kneel.svg",
  2424. bottom: 0.052
  2425. }
  2426. },
  2427. },
  2428. [
  2429. {
  2430. name: "Normal",
  2431. height: math.unit(7, "feet"),
  2432. },
  2433. {
  2434. name: "Macro",
  2435. height: math.unit(78, "feet"),
  2436. default: true
  2437. },
  2438. {
  2439. name: "Macro+",
  2440. height: math.unit(300, "meters")
  2441. },
  2442. {
  2443. name: "Macro++",
  2444. height: math.unit(2400, "meters")
  2445. },
  2446. {
  2447. name: "Megamacro",
  2448. height: math.unit(5167, "meters")
  2449. },
  2450. {
  2451. name: "Gigamacro",
  2452. height: math.unit(41769, "miles")
  2453. },
  2454. ]
  2455. ))
  2456. characterMakers.push(() => makeCharacter(
  2457. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2458. {
  2459. front: {
  2460. height: math.unit(1.65, "meters"),
  2461. weight: math.unit(50, "kg"),
  2462. name: "Front",
  2463. image: {
  2464. source: "./media/characters/elijah/front.svg",
  2465. extra: 858 / 830,
  2466. bottom: 95.5 / 953.8559
  2467. }
  2468. },
  2469. back: {
  2470. height: math.unit(1.65, "meters"),
  2471. weight: math.unit(50, "kg"),
  2472. name: "Back",
  2473. image: {
  2474. source: "./media/characters/elijah/back.svg",
  2475. extra: 895 / 850,
  2476. bottom: 5.3 / 897.956
  2477. }
  2478. },
  2479. frontNsfw: {
  2480. height: math.unit(1.65, "meters"),
  2481. weight: math.unit(50, "kg"),
  2482. name: "Front (NSFW)",
  2483. image: {
  2484. source: "./media/characters/elijah/front-nsfw.svg",
  2485. extra: 858 / 830,
  2486. bottom: 95.5 / 953.8559
  2487. }
  2488. },
  2489. backNsfw: {
  2490. height: math.unit(1.65, "meters"),
  2491. weight: math.unit(50, "kg"),
  2492. name: "Back (NSFW)",
  2493. image: {
  2494. source: "./media/characters/elijah/back-nsfw.svg",
  2495. extra: 895 / 850,
  2496. bottom: 5.3 / 897.956
  2497. }
  2498. },
  2499. dick: {
  2500. height: math.unit(1, "feet"),
  2501. name: "Dick",
  2502. image: {
  2503. source: "./media/characters/elijah/dick.svg"
  2504. }
  2505. },
  2506. beakOpen: {
  2507. height: math.unit(1.25, "feet"),
  2508. name: "Beak (Open)",
  2509. image: {
  2510. source: "./media/characters/elijah/beak-open.svg"
  2511. }
  2512. },
  2513. beakShut: {
  2514. height: math.unit(1.25, "feet"),
  2515. name: "Beak (Shut)",
  2516. image: {
  2517. source: "./media/characters/elijah/beak-shut.svg"
  2518. }
  2519. },
  2520. footFlexing: {
  2521. height: math.unit(1.61, "feet"),
  2522. name: "Foot (Flexing)",
  2523. image: {
  2524. source: "./media/characters/elijah/foot-flexing.svg"
  2525. }
  2526. },
  2527. footStepping: {
  2528. height: math.unit(1.44, "feet"),
  2529. name: "Foot (Stepping)",
  2530. image: {
  2531. source: "./media/characters/elijah/foot-stepping.svg"
  2532. }
  2533. },
  2534. plantigradeLeg: {
  2535. height: math.unit(2.34, "feet"),
  2536. name: "Plantigrade Leg",
  2537. image: {
  2538. source: "./media/characters/elijah/plantigrade-leg.svg"
  2539. }
  2540. },
  2541. plantigradeFootLeft: {
  2542. height: math.unit(0.9, "feet"),
  2543. name: "Plantigrade Foot (Left)",
  2544. image: {
  2545. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2546. }
  2547. },
  2548. plantigradeFootRight: {
  2549. height: math.unit(0.9, "feet"),
  2550. name: "Plantigrade Foot (Right)",
  2551. image: {
  2552. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2553. }
  2554. },
  2555. },
  2556. [
  2557. {
  2558. name: "Normal",
  2559. height: math.unit(1.65, "meters")
  2560. },
  2561. {
  2562. name: "Macro",
  2563. height: math.unit(55, "meters"),
  2564. default: true
  2565. },
  2566. {
  2567. name: "Macro+",
  2568. height: math.unit(105, "meters")
  2569. },
  2570. ]
  2571. ))
  2572. characterMakers.push(() => makeCharacter(
  2573. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2574. {
  2575. front: {
  2576. height: math.unit(7 + 2/12, "feet"),
  2577. weight: math.unit(320, "kg"),
  2578. name: "Front",
  2579. image: {
  2580. source: "./media/characters/rai/front.svg",
  2581. extra: 1802/1696,
  2582. bottom: 68/1870
  2583. }
  2584. },
  2585. frontDressed: {
  2586. height: math.unit(7 + 2/12, "feet"),
  2587. weight: math.unit(320, "kg"),
  2588. name: "Front (Dressed)",
  2589. image: {
  2590. source: "./media/characters/rai/front-dressed.svg",
  2591. extra: 1802/1696,
  2592. bottom: 68/1870
  2593. }
  2594. },
  2595. side: {
  2596. height: math.unit(7 + 2/12, "feet"),
  2597. weight: math.unit(320, "kg"),
  2598. name: "Side",
  2599. image: {
  2600. source: "./media/characters/rai/side.svg",
  2601. extra: 1789/1710,
  2602. bottom: 115/1904
  2603. }
  2604. },
  2605. back: {
  2606. height: math.unit(7 + 2/12, "feet"),
  2607. weight: math.unit(320, "kg"),
  2608. name: "Back",
  2609. image: {
  2610. source: "./media/characters/rai/back.svg",
  2611. extra: 1770/1707,
  2612. bottom: 28/1798
  2613. }
  2614. },
  2615. feral: {
  2616. height: math.unit(9.5, "feet"),
  2617. weight: math.unit(640, "kg"),
  2618. name: "Feral",
  2619. image: {
  2620. source: "./media/characters/rai/feral.svg",
  2621. extra: 945/553,
  2622. bottom: 176/1121
  2623. }
  2624. },
  2625. dragon: {
  2626. height: math.unit(23, "feet"),
  2627. weight: math.unit(50000, "lb"),
  2628. name: "Dragon",
  2629. image: {
  2630. source: "./media/characters/rai/dragon.svg",
  2631. extra: 2498 / 2030,
  2632. bottom: 85.2 / 2584
  2633. }
  2634. },
  2635. maw: {
  2636. height: math.unit(1.69, "feet"),
  2637. name: "Maw",
  2638. image: {
  2639. source: "./media/characters/rai/maw.svg"
  2640. }
  2641. },
  2642. },
  2643. [
  2644. {
  2645. name: "Normal",
  2646. height: math.unit(7 + 2/12, "feet")
  2647. },
  2648. {
  2649. name: "Big",
  2650. height: math.unit(11, "feet")
  2651. },
  2652. {
  2653. name: "Macro",
  2654. height: math.unit(302, "feet"),
  2655. default: true
  2656. },
  2657. ]
  2658. ))
  2659. characterMakers.push(() => makeCharacter(
  2660. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2661. {
  2662. frontDressed: {
  2663. height: math.unit(216, "feet"),
  2664. weight: math.unit(7000000, "lb"),
  2665. name: "Front (Dressed)",
  2666. image: {
  2667. source: "./media/characters/jazzy/front-dressed.svg",
  2668. extra: 2738 / 2651,
  2669. bottom: 41.8 / 2786
  2670. }
  2671. },
  2672. backDressed: {
  2673. height: math.unit(216, "feet"),
  2674. weight: math.unit(7000000, "lb"),
  2675. name: "Back (Dressed)",
  2676. image: {
  2677. source: "./media/characters/jazzy/back-dressed.svg",
  2678. extra: 2775 / 2673,
  2679. bottom: 36.8 / 2817
  2680. }
  2681. },
  2682. front: {
  2683. height: math.unit(216, "feet"),
  2684. weight: math.unit(7000000, "lb"),
  2685. name: "Front",
  2686. image: {
  2687. source: "./media/characters/jazzy/front.svg",
  2688. extra: 2738 / 2651,
  2689. bottom: 41.8 / 2786
  2690. }
  2691. },
  2692. back: {
  2693. height: math.unit(216, "feet"),
  2694. weight: math.unit(7000000, "lb"),
  2695. name: "Back",
  2696. image: {
  2697. source: "./media/characters/jazzy/back.svg",
  2698. extra: 2775 / 2673,
  2699. bottom: 36.8 / 2817
  2700. }
  2701. },
  2702. maw: {
  2703. height: math.unit(20, "feet"),
  2704. name: "Maw",
  2705. image: {
  2706. source: "./media/characters/jazzy/maw.svg"
  2707. }
  2708. },
  2709. paws: {
  2710. height: math.unit(27.5, "feet"),
  2711. name: "Paws",
  2712. image: {
  2713. source: "./media/characters/jazzy/paws.svg"
  2714. }
  2715. },
  2716. eye: {
  2717. height: math.unit(4.4, "feet"),
  2718. name: "Eye",
  2719. image: {
  2720. source: "./media/characters/jazzy/eye.svg"
  2721. }
  2722. },
  2723. droneOffense: {
  2724. height: math.unit(9.5, "inches"),
  2725. name: "Drone (Offense)",
  2726. image: {
  2727. source: "./media/characters/jazzy/drone-offense.svg"
  2728. }
  2729. },
  2730. droneRecon: {
  2731. height: math.unit(9.5, "inches"),
  2732. name: "Drone (Recon)",
  2733. image: {
  2734. source: "./media/characters/jazzy/drone-recon.svg"
  2735. }
  2736. },
  2737. droneDefense: {
  2738. height: math.unit(9.5, "inches"),
  2739. name: "Drone (Defense)",
  2740. image: {
  2741. source: "./media/characters/jazzy/drone-defense.svg"
  2742. }
  2743. },
  2744. },
  2745. [
  2746. {
  2747. name: "Macro",
  2748. height: math.unit(216, "feet"),
  2749. default: true
  2750. },
  2751. ]
  2752. ))
  2753. characterMakers.push(() => makeCharacter(
  2754. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2755. {
  2756. front: {
  2757. height: math.unit(9 + 6/12, "feet"),
  2758. weight: math.unit(700, "lb"),
  2759. name: "Front",
  2760. image: {
  2761. source: "./media/characters/flamm/front.svg",
  2762. extra: 1751/1632,
  2763. bottom: 46/1797
  2764. }
  2765. },
  2766. buff: {
  2767. height: math.unit(9 + 6/12, "feet"),
  2768. weight: math.unit(950, "lb"),
  2769. name: "Buff",
  2770. image: {
  2771. source: "./media/characters/flamm/buff.svg",
  2772. extra: 3018/2874,
  2773. bottom: 221/3239
  2774. }
  2775. },
  2776. },
  2777. [
  2778. {
  2779. name: "Normal",
  2780. height: math.unit(9.5, "feet")
  2781. },
  2782. {
  2783. name: "Macro",
  2784. height: math.unit(200, "feet"),
  2785. default: true
  2786. },
  2787. ]
  2788. ))
  2789. characterMakers.push(() => makeCharacter(
  2790. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2791. {
  2792. front: {
  2793. height: math.unit(5 + 3/12, "feet"),
  2794. weight: math.unit(60, "kg"),
  2795. name: "Front",
  2796. image: {
  2797. source: "./media/characters/zephiro/front.svg",
  2798. extra: 2309 / 2162,
  2799. bottom: 0.069
  2800. }
  2801. },
  2802. side: {
  2803. height: math.unit(5 + 3/12, "feet"),
  2804. weight: math.unit(60, "kg"),
  2805. name: "Side",
  2806. image: {
  2807. source: "./media/characters/zephiro/side.svg",
  2808. extra: 2403 / 2279,
  2809. bottom: 0.015
  2810. }
  2811. },
  2812. back: {
  2813. height: math.unit(5 + 3/12, "feet"),
  2814. weight: math.unit(60, "kg"),
  2815. name: "Back",
  2816. image: {
  2817. source: "./media/characters/zephiro/back.svg",
  2818. extra: 2373 / 2244,
  2819. bottom: 0.013
  2820. }
  2821. },
  2822. hand: {
  2823. height: math.unit(0.68, "feet"),
  2824. name: "Hand",
  2825. image: {
  2826. source: "./media/characters/zephiro/hand.svg"
  2827. }
  2828. },
  2829. paw: {
  2830. height: math.unit(1, "feet"),
  2831. name: "Paw",
  2832. image: {
  2833. source: "./media/characters/zephiro/paw.svg"
  2834. }
  2835. },
  2836. beans: {
  2837. height: math.unit(0.93, "feet"),
  2838. name: "Beans",
  2839. image: {
  2840. source: "./media/characters/zephiro/beans.svg"
  2841. }
  2842. },
  2843. },
  2844. [
  2845. {
  2846. name: "Micro",
  2847. height: math.unit(3, "inches")
  2848. },
  2849. {
  2850. name: "Normal",
  2851. height: math.unit(5 + 3 / 12, "feet"),
  2852. default: true
  2853. },
  2854. {
  2855. name: "Macro",
  2856. height: math.unit(118, "feet")
  2857. },
  2858. ]
  2859. ))
  2860. characterMakers.push(() => makeCharacter(
  2861. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2862. {
  2863. front: {
  2864. height: math.unit(5, "feet"),
  2865. weight: math.unit(90, "kg"),
  2866. name: "Front",
  2867. image: {
  2868. source: "./media/characters/fory/front.svg",
  2869. extra: 2862 / 2674,
  2870. bottom: 180 / 3043.8
  2871. }
  2872. },
  2873. back: {
  2874. height: math.unit(5, "feet"),
  2875. weight: math.unit(90, "kg"),
  2876. name: "Back",
  2877. image: {
  2878. source: "./media/characters/fory/back.svg",
  2879. extra: 2962 / 2791,
  2880. bottom: 106 / 3071.8
  2881. }
  2882. },
  2883. foot: {
  2884. height: math.unit(2.14, "feet"),
  2885. name: "Foot",
  2886. image: {
  2887. source: "./media/characters/fory/foot.svg"
  2888. }
  2889. },
  2890. },
  2891. [
  2892. {
  2893. name: "Normal",
  2894. height: math.unit(5, "feet")
  2895. },
  2896. {
  2897. name: "Macro",
  2898. height: math.unit(50, "feet"),
  2899. default: true
  2900. },
  2901. {
  2902. name: "Megamacro",
  2903. height: math.unit(10, "miles")
  2904. },
  2905. {
  2906. name: "Gigamacro",
  2907. height: math.unit(5, "earths")
  2908. },
  2909. ]
  2910. ))
  2911. characterMakers.push(() => makeCharacter(
  2912. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2913. {
  2914. front: {
  2915. height: math.unit(7, "feet"),
  2916. weight: math.unit(90, "kg"),
  2917. name: "Front",
  2918. image: {
  2919. source: "./media/characters/kurrikage/front.svg",
  2920. extra: 1845/1733,
  2921. bottom: 119/1964
  2922. }
  2923. },
  2924. back: {
  2925. height: math.unit(7, "feet"),
  2926. weight: math.unit(90, "kg"),
  2927. name: "Back",
  2928. image: {
  2929. source: "./media/characters/kurrikage/back.svg",
  2930. extra: 1790/1677,
  2931. bottom: 61/1851
  2932. }
  2933. },
  2934. dressed: {
  2935. height: math.unit(7, "feet"),
  2936. weight: math.unit(90, "kg"),
  2937. name: "Dressed",
  2938. image: {
  2939. source: "./media/characters/kurrikage/dressed.svg",
  2940. extra: 1845/1733,
  2941. bottom: 119/1964
  2942. }
  2943. },
  2944. foot: {
  2945. height: math.unit(1.5, "feet"),
  2946. name: "Foot",
  2947. image: {
  2948. source: "./media/characters/kurrikage/foot.svg"
  2949. }
  2950. },
  2951. staff: {
  2952. height: math.unit(6.7, "feet"),
  2953. name: "Staff",
  2954. image: {
  2955. source: "./media/characters/kurrikage/staff.svg"
  2956. }
  2957. },
  2958. peek: {
  2959. height: math.unit(1.05, "feet"),
  2960. name: "Peeking",
  2961. image: {
  2962. source: "./media/characters/kurrikage/peek.svg",
  2963. bottom: 0.08
  2964. }
  2965. },
  2966. },
  2967. [
  2968. {
  2969. name: "Normal",
  2970. height: math.unit(12, "feet"),
  2971. default: true
  2972. },
  2973. {
  2974. name: "Big",
  2975. height: math.unit(20, "feet")
  2976. },
  2977. {
  2978. name: "Macro",
  2979. height: math.unit(500, "feet")
  2980. },
  2981. {
  2982. name: "Megamacro",
  2983. height: math.unit(20, "miles")
  2984. },
  2985. ]
  2986. ))
  2987. characterMakers.push(() => makeCharacter(
  2988. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2989. {
  2990. front: {
  2991. height: math.unit(6, "feet"),
  2992. weight: math.unit(75, "kg"),
  2993. name: "Front",
  2994. image: {
  2995. source: "./media/characters/shingo/front.svg",
  2996. extra: 1900/1825,
  2997. bottom: 82/1982
  2998. }
  2999. },
  3000. side: {
  3001. height: math.unit(6, "feet"),
  3002. weight: math.unit(75, "kg"),
  3003. name: "Side",
  3004. image: {
  3005. source: "./media/characters/shingo/side.svg",
  3006. extra: 1930/1865,
  3007. bottom: 16/1946
  3008. }
  3009. },
  3010. back: {
  3011. height: math.unit(6, "feet"),
  3012. weight: math.unit(75, "kg"),
  3013. name: "Back",
  3014. image: {
  3015. source: "./media/characters/shingo/back.svg",
  3016. extra: 1922/1852,
  3017. bottom: 16/1938
  3018. }
  3019. },
  3020. frontDressed: {
  3021. height: math.unit(6, "feet"),
  3022. weight: math.unit(150, "lb"),
  3023. name: "Front-dressed",
  3024. image: {
  3025. source: "./media/characters/shingo/front-dressed.svg",
  3026. extra: 1900/1825,
  3027. bottom: 82/1982
  3028. }
  3029. },
  3030. paw: {
  3031. height: math.unit(1.29, "feet"),
  3032. name: "Paw",
  3033. image: {
  3034. source: "./media/characters/shingo/paw.svg"
  3035. }
  3036. },
  3037. hand: {
  3038. height: math.unit(1.07, "feet"),
  3039. name: "Hand",
  3040. image: {
  3041. source: "./media/characters/shingo/hand.svg"
  3042. }
  3043. },
  3044. frontAlt: {
  3045. height: math.unit(6, "feet"),
  3046. weight: math.unit(75, "kg"),
  3047. name: "Front (Alt)",
  3048. image: {
  3049. source: "./media/characters/shingo/front-alt.svg",
  3050. extra: 3511 / 3338,
  3051. bottom: 0.005
  3052. }
  3053. },
  3054. frontAlt2: {
  3055. height: math.unit(6, "feet"),
  3056. weight: math.unit(75, "kg"),
  3057. name: "Front (Alt 2)",
  3058. image: {
  3059. source: "./media/characters/shingo/front-alt-2.svg",
  3060. extra: 706/681,
  3061. bottom: 11/717
  3062. }
  3063. },
  3064. pawAlt: {
  3065. height: math.unit(1, "feet"),
  3066. name: "Paw (Alt)",
  3067. image: {
  3068. source: "./media/characters/shingo/paw-alt.svg"
  3069. }
  3070. },
  3071. },
  3072. [
  3073. {
  3074. name: "Micro",
  3075. height: math.unit(4, "inches")
  3076. },
  3077. {
  3078. name: "Normal",
  3079. height: math.unit(6, "feet"),
  3080. default: true
  3081. },
  3082. {
  3083. name: "Macro",
  3084. height: math.unit(108, "feet")
  3085. },
  3086. {
  3087. name: "Macro+",
  3088. height: math.unit(1500, "feet")
  3089. },
  3090. ]
  3091. ))
  3092. characterMakers.push(() => makeCharacter(
  3093. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3094. {
  3095. side: {
  3096. height: math.unit(6, "feet"),
  3097. weight: math.unit(75, "kg"),
  3098. name: "Side",
  3099. image: {
  3100. source: "./media/characters/aigey/side.svg"
  3101. }
  3102. },
  3103. },
  3104. [
  3105. {
  3106. name: "Macro",
  3107. height: math.unit(200, "feet"),
  3108. default: true
  3109. },
  3110. {
  3111. name: "Megamacro",
  3112. height: math.unit(100, "miles")
  3113. },
  3114. ]
  3115. )
  3116. )
  3117. characterMakers.push(() => makeCharacter(
  3118. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3119. {
  3120. front: {
  3121. height: math.unit(5 + 5 / 12, "feet"),
  3122. weight: math.unit(75, "kg"),
  3123. name: "Front",
  3124. image: {
  3125. source: "./media/characters/natasha/front.svg",
  3126. extra: 859 / 824,
  3127. bottom: 23 / 879.6
  3128. }
  3129. },
  3130. frontNsfw: {
  3131. height: math.unit(5 + 5 / 12, "feet"),
  3132. weight: math.unit(75, "kg"),
  3133. name: "Front (NSFW)",
  3134. image: {
  3135. source: "./media/characters/natasha/front-nsfw.svg",
  3136. extra: 859 / 824,
  3137. bottom: 23 / 879.6
  3138. }
  3139. },
  3140. frontErect: {
  3141. height: math.unit(5 + 5 / 12, "feet"),
  3142. weight: math.unit(75, "kg"),
  3143. name: "Front (Erect)",
  3144. image: {
  3145. source: "./media/characters/natasha/front-erect.svg",
  3146. extra: 859 / 824,
  3147. bottom: 23 / 879.6
  3148. }
  3149. },
  3150. back: {
  3151. height: math.unit(5 + 5 / 12, "feet"),
  3152. weight: math.unit(75, "kg"),
  3153. name: "Back",
  3154. image: {
  3155. source: "./media/characters/natasha/back.svg",
  3156. extra: 887.9 / 852.6,
  3157. bottom: 9.7 / 896.4
  3158. }
  3159. },
  3160. backAlt: {
  3161. height: math.unit(5 + 5 / 12, "feet"),
  3162. weight: math.unit(75, "kg"),
  3163. name: "Back (Alt)",
  3164. image: {
  3165. source: "./media/characters/natasha/back-alt.svg",
  3166. extra: 1236.7 / 1192,
  3167. bottom: 22.3 / 1258.2
  3168. }
  3169. },
  3170. dick: {
  3171. height: math.unit(1.772, "feet"),
  3172. name: "Dick",
  3173. image: {
  3174. source: "./media/characters/natasha/dick.svg"
  3175. }
  3176. },
  3177. paw: {
  3178. height: math.unit(0.250, "meters"),
  3179. name: "Paw",
  3180. image: {
  3181. source: "./media/characters/natasha/paw.svg"
  3182. }
  3183. },
  3184. },
  3185. [
  3186. {
  3187. name: "Normal",
  3188. height: math.unit(5 + 5 / 12, "feet")
  3189. },
  3190. {
  3191. name: "Large",
  3192. height: math.unit(12, "feet")
  3193. },
  3194. {
  3195. name: "Macro",
  3196. height: math.unit(100, "feet"),
  3197. default: true
  3198. },
  3199. {
  3200. name: "Macro+",
  3201. height: math.unit(260, "feet")
  3202. },
  3203. {
  3204. name: "Macro++",
  3205. height: math.unit(1, "mile")
  3206. },
  3207. ]
  3208. ))
  3209. characterMakers.push(() => makeCharacter(
  3210. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3211. {
  3212. front: {
  3213. height: math.unit(6, "feet"),
  3214. weight: math.unit(75, "kg"),
  3215. name: "Front",
  3216. image: {
  3217. source: "./media/characters/malik/front.svg"
  3218. }
  3219. },
  3220. side: {
  3221. height: math.unit(6, "feet"),
  3222. weight: math.unit(75, "kg"),
  3223. name: "Side",
  3224. image: {
  3225. source: "./media/characters/malik/side.svg",
  3226. extra: 1.1539
  3227. }
  3228. },
  3229. back: {
  3230. height: math.unit(6, "feet"),
  3231. weight: math.unit(75, "kg"),
  3232. name: "Back",
  3233. image: {
  3234. source: "./media/characters/malik/back.svg"
  3235. }
  3236. },
  3237. },
  3238. [
  3239. {
  3240. name: "Macro",
  3241. height: math.unit(156, "feet"),
  3242. default: true
  3243. },
  3244. {
  3245. name: "Macro+",
  3246. height: math.unit(1188, "feet")
  3247. },
  3248. ]
  3249. ))
  3250. characterMakers.push(() => makeCharacter(
  3251. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3252. {
  3253. front: {
  3254. height: math.unit(6, "feet"),
  3255. weight: math.unit(75, "kg"),
  3256. name: "Front",
  3257. image: {
  3258. source: "./media/characters/sefer/front.svg",
  3259. extra: 848 / 659,
  3260. bottom: 28.3 / 876.442
  3261. }
  3262. },
  3263. back: {
  3264. height: math.unit(6, "feet"),
  3265. weight: math.unit(75, "kg"),
  3266. name: "Back",
  3267. image: {
  3268. source: "./media/characters/sefer/back.svg",
  3269. extra: 864 / 695,
  3270. bottom: 10 / 871
  3271. }
  3272. },
  3273. frontDressed: {
  3274. height: math.unit(6, "feet"),
  3275. weight: math.unit(75, "kg"),
  3276. name: "Front (Dressed)",
  3277. image: {
  3278. source: "./media/characters/sefer/front-dressed.svg",
  3279. extra: 839 / 653,
  3280. bottom: 37.6 / 878
  3281. }
  3282. },
  3283. },
  3284. [
  3285. {
  3286. name: "Normal",
  3287. height: math.unit(6, "feet"),
  3288. default: true
  3289. },
  3290. ]
  3291. ))
  3292. characterMakers.push(() => makeCharacter(
  3293. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3294. {
  3295. body: {
  3296. height: math.unit(2.2428, "meter"),
  3297. weight: math.unit(124.738, "kg"),
  3298. name: "Body",
  3299. image: {
  3300. extra: 1225 / 1050,
  3301. source: "./media/characters/north/front.svg"
  3302. }
  3303. }
  3304. },
  3305. [
  3306. {
  3307. name: "Micro",
  3308. height: math.unit(4, "inches")
  3309. },
  3310. {
  3311. name: "Macro",
  3312. height: math.unit(63, "meters")
  3313. },
  3314. {
  3315. name: "Megamacro",
  3316. height: math.unit(101, "miles"),
  3317. default: true
  3318. }
  3319. ]
  3320. ))
  3321. characterMakers.push(() => makeCharacter(
  3322. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3323. {
  3324. angled: {
  3325. height: math.unit(4, "meter"),
  3326. weight: math.unit(150, "kg"),
  3327. name: "Angled",
  3328. image: {
  3329. source: "./media/characters/talan/angled-sfw.svg",
  3330. bottom: 29 / 3734
  3331. }
  3332. },
  3333. angledNsfw: {
  3334. height: math.unit(4, "meter"),
  3335. weight: math.unit(150, "kg"),
  3336. name: "Angled (NSFW)",
  3337. image: {
  3338. source: "./media/characters/talan/angled-nsfw.svg",
  3339. bottom: 29 / 3734
  3340. }
  3341. },
  3342. frontNsfw: {
  3343. height: math.unit(4, "meter"),
  3344. weight: math.unit(150, "kg"),
  3345. name: "Front (NSFW)",
  3346. image: {
  3347. source: "./media/characters/talan/front-nsfw.svg",
  3348. bottom: 29 / 3734
  3349. }
  3350. },
  3351. sideNsfw: {
  3352. height: math.unit(4, "meter"),
  3353. weight: math.unit(150, "kg"),
  3354. name: "Side (NSFW)",
  3355. image: {
  3356. source: "./media/characters/talan/side-nsfw.svg",
  3357. bottom: 29 / 3734
  3358. }
  3359. },
  3360. back: {
  3361. height: math.unit(4, "meter"),
  3362. weight: math.unit(150, "kg"),
  3363. name: "Back",
  3364. image: {
  3365. source: "./media/characters/talan/back.svg"
  3366. }
  3367. },
  3368. dickBottom: {
  3369. height: math.unit(0.621, "meter"),
  3370. name: "Dick (Bottom)",
  3371. image: {
  3372. source: "./media/characters/talan/dick-bottom.svg"
  3373. }
  3374. },
  3375. dickTop: {
  3376. height: math.unit(0.621, "meter"),
  3377. name: "Dick (Top)",
  3378. image: {
  3379. source: "./media/characters/talan/dick-top.svg"
  3380. }
  3381. },
  3382. dickSide: {
  3383. height: math.unit(0.305, "meter"),
  3384. name: "Dick (Side)",
  3385. image: {
  3386. source: "./media/characters/talan/dick-side.svg"
  3387. }
  3388. },
  3389. dickFront: {
  3390. height: math.unit(0.305, "meter"),
  3391. name: "Dick (Front)",
  3392. image: {
  3393. source: "./media/characters/talan/dick-front.svg"
  3394. }
  3395. },
  3396. },
  3397. [
  3398. {
  3399. name: "Normal",
  3400. height: math.unit(4, "meters")
  3401. },
  3402. {
  3403. name: "Macro",
  3404. height: math.unit(100, "meters")
  3405. },
  3406. {
  3407. name: "Megamacro",
  3408. height: math.unit(2, "miles"),
  3409. default: true
  3410. },
  3411. {
  3412. name: "Gigamacro",
  3413. height: math.unit(5000, "miles")
  3414. },
  3415. {
  3416. name: "Teramacro",
  3417. height: math.unit(100, "parsecs")
  3418. }
  3419. ]
  3420. ))
  3421. characterMakers.push(() => makeCharacter(
  3422. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3423. {
  3424. front: {
  3425. height: math.unit(2, "meter"),
  3426. weight: math.unit(90, "kg"),
  3427. name: "Front",
  3428. image: {
  3429. source: "./media/characters/gael'rathus/front.svg"
  3430. }
  3431. },
  3432. frontAlt: {
  3433. height: math.unit(2, "meter"),
  3434. weight: math.unit(90, "kg"),
  3435. name: "Front (alt)",
  3436. image: {
  3437. source: "./media/characters/gael'rathus/front-alt.svg"
  3438. }
  3439. },
  3440. frontAlt2: {
  3441. height: math.unit(2, "meter"),
  3442. weight: math.unit(90, "kg"),
  3443. name: "Front (alt 2)",
  3444. image: {
  3445. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3446. }
  3447. }
  3448. },
  3449. [
  3450. {
  3451. name: "Normal",
  3452. height: math.unit(9, "feet"),
  3453. default: true
  3454. },
  3455. {
  3456. name: "Large",
  3457. height: math.unit(25, "feet")
  3458. },
  3459. {
  3460. name: "Macro",
  3461. height: math.unit(0.25, "miles")
  3462. },
  3463. {
  3464. name: "Megamacro",
  3465. height: math.unit(10, "miles")
  3466. }
  3467. ]
  3468. ))
  3469. characterMakers.push(() => makeCharacter(
  3470. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3471. {
  3472. side: {
  3473. height: math.unit(2, "meter"),
  3474. weight: math.unit(140, "kg"),
  3475. name: "Side",
  3476. image: {
  3477. source: "./media/characters/sosha/side.svg",
  3478. bottom: 0.042
  3479. }
  3480. },
  3481. },
  3482. [
  3483. {
  3484. name: "Normal",
  3485. height: math.unit(12, "feet"),
  3486. default: true
  3487. }
  3488. ]
  3489. ))
  3490. characterMakers.push(() => makeCharacter(
  3491. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3492. {
  3493. side: {
  3494. height: math.unit(5 + 5 / 12, "feet"),
  3495. weight: math.unit(170, "kg"),
  3496. name: "Side",
  3497. image: {
  3498. source: "./media/characters/runnola/side.svg",
  3499. extra: 741 / 448,
  3500. bottom: 0.05
  3501. }
  3502. },
  3503. },
  3504. [
  3505. {
  3506. name: "Small",
  3507. height: math.unit(3, "feet")
  3508. },
  3509. {
  3510. name: "Normal",
  3511. height: math.unit(5 + 5 / 12, "feet"),
  3512. default: true
  3513. },
  3514. {
  3515. name: "Big",
  3516. height: math.unit(10, "feet")
  3517. },
  3518. ]
  3519. ))
  3520. characterMakers.push(() => makeCharacter(
  3521. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3522. {
  3523. front: {
  3524. height: math.unit(2, "meter"),
  3525. weight: math.unit(50, "kg"),
  3526. name: "Front",
  3527. image: {
  3528. source: "./media/characters/kurribird/front.svg",
  3529. bottom: 0.015
  3530. }
  3531. },
  3532. frontAlt: {
  3533. height: math.unit(1.5, "meter"),
  3534. weight: math.unit(50, "kg"),
  3535. name: "Front (Alt)",
  3536. image: {
  3537. source: "./media/characters/kurribird/front-alt.svg",
  3538. extra: 1.45
  3539. }
  3540. },
  3541. },
  3542. [
  3543. {
  3544. name: "Normal",
  3545. height: math.unit(7, "feet")
  3546. },
  3547. {
  3548. name: "Big",
  3549. height: math.unit(12, "feet"),
  3550. default: true
  3551. },
  3552. {
  3553. name: "Macro",
  3554. height: math.unit(1500, "feet")
  3555. },
  3556. {
  3557. name: "Megamacro",
  3558. height: math.unit(2, "miles")
  3559. }
  3560. ]
  3561. ))
  3562. characterMakers.push(() => makeCharacter(
  3563. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], 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/elbial/front.svg",
  3571. extra: 1643 / 1556,
  3572. bottom: 60.2 / 1696
  3573. }
  3574. },
  3575. side: {
  3576. height: math.unit(2, "meter"),
  3577. weight: math.unit(80, "kg"),
  3578. name: "Side",
  3579. image: {
  3580. source: "./media/characters/elbial/side.svg",
  3581. extra: 1601/1528,
  3582. bottom: 97/1698
  3583. }
  3584. },
  3585. back: {
  3586. height: math.unit(2, "meter"),
  3587. weight: math.unit(80, "kg"),
  3588. name: "Back",
  3589. image: {
  3590. source: "./media/characters/elbial/back.svg",
  3591. extra: 1653/1569,
  3592. bottom: 20/1673
  3593. }
  3594. },
  3595. frontDressed: {
  3596. height: math.unit(2, "meter"),
  3597. weight: math.unit(80, "kg"),
  3598. name: "Front (Dressed)",
  3599. image: {
  3600. source: "./media/characters/elbial/front-dressed.svg",
  3601. extra: 1638/1569,
  3602. bottom: 70/1708
  3603. }
  3604. },
  3605. genitals: {
  3606. height: math.unit(2 / 3.367, "meter"),
  3607. name: "Genitals",
  3608. image: {
  3609. source: "./media/characters/elbial/genitals.svg"
  3610. }
  3611. },
  3612. },
  3613. [
  3614. {
  3615. name: "Large",
  3616. height: math.unit(100, "feet")
  3617. },
  3618. {
  3619. name: "Macro",
  3620. height: math.unit(500, "feet"),
  3621. default: true
  3622. },
  3623. {
  3624. name: "Megamacro",
  3625. height: math.unit(10, "miles")
  3626. },
  3627. {
  3628. name: "Gigamacro",
  3629. height: math.unit(25000, "miles")
  3630. },
  3631. {
  3632. name: "Full-Size",
  3633. height: math.unit(8000000, "gigaparsecs")
  3634. }
  3635. ]
  3636. ))
  3637. characterMakers.push(() => makeCharacter(
  3638. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3639. {
  3640. front: {
  3641. height: math.unit(2, "meter"),
  3642. weight: math.unit(60, "kg"),
  3643. name: "Front",
  3644. image: {
  3645. source: "./media/characters/noah/front.svg"
  3646. }
  3647. },
  3648. talons: {
  3649. height: math.unit(0.315, "meter"),
  3650. name: "Talons",
  3651. image: {
  3652. source: "./media/characters/noah/talons.svg"
  3653. }
  3654. }
  3655. },
  3656. [
  3657. {
  3658. name: "Large",
  3659. height: math.unit(50, "feet")
  3660. },
  3661. {
  3662. name: "Macro",
  3663. height: math.unit(750, "feet"),
  3664. default: true
  3665. },
  3666. {
  3667. name: "Megamacro",
  3668. height: math.unit(50, "miles")
  3669. },
  3670. {
  3671. name: "Gigamacro",
  3672. height: math.unit(100000, "miles")
  3673. },
  3674. {
  3675. name: "Full-Size",
  3676. height: math.unit(3000000000, "miles")
  3677. }
  3678. ]
  3679. ))
  3680. characterMakers.push(() => makeCharacter(
  3681. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3682. {
  3683. front: {
  3684. height: math.unit(2, "meter"),
  3685. weight: math.unit(80, "kg"),
  3686. name: "Front",
  3687. image: {
  3688. source: "./media/characters/natalya/front.svg"
  3689. }
  3690. },
  3691. back: {
  3692. height: math.unit(2, "meter"),
  3693. weight: math.unit(80, "kg"),
  3694. name: "Back",
  3695. image: {
  3696. source: "./media/characters/natalya/back.svg"
  3697. }
  3698. }
  3699. },
  3700. [
  3701. {
  3702. name: "Normal",
  3703. height: math.unit(150, "feet"),
  3704. default: true
  3705. },
  3706. {
  3707. name: "Megamacro",
  3708. height: math.unit(5, "miles")
  3709. },
  3710. {
  3711. name: "Full-Size",
  3712. height: math.unit(600, "kiloparsecs")
  3713. }
  3714. ]
  3715. ))
  3716. characterMakers.push(() => makeCharacter(
  3717. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3718. {
  3719. front: {
  3720. height: math.unit(2, "meter"),
  3721. weight: math.unit(50, "kg"),
  3722. name: "Front",
  3723. image: {
  3724. source: "./media/characters/erestrebah/front.svg",
  3725. extra: 1262/1162,
  3726. bottom: 96/1358
  3727. }
  3728. },
  3729. back: {
  3730. height: math.unit(2, "meter"),
  3731. weight: math.unit(50, "kg"),
  3732. name: "Back",
  3733. image: {
  3734. source: "./media/characters/erestrebah/back.svg",
  3735. extra: 1257/1139,
  3736. bottom: 13/1270
  3737. }
  3738. },
  3739. wing: {
  3740. height: math.unit(2, "meter"),
  3741. weight: math.unit(50, "kg"),
  3742. name: "Wing",
  3743. image: {
  3744. source: "./media/characters/erestrebah/wing.svg",
  3745. extra: 1262/1162,
  3746. bottom: 96/1358
  3747. }
  3748. },
  3749. mouth: {
  3750. height: math.unit(0.39, "feet"),
  3751. name: "Mouth",
  3752. image: {
  3753. source: "./media/characters/erestrebah/mouth.svg"
  3754. }
  3755. }
  3756. },
  3757. [
  3758. {
  3759. name: "Normal",
  3760. height: math.unit(10, "feet")
  3761. },
  3762. {
  3763. name: "Large",
  3764. height: math.unit(50, "feet"),
  3765. default: true
  3766. },
  3767. {
  3768. name: "Macro",
  3769. height: math.unit(300, "feet")
  3770. },
  3771. {
  3772. name: "Macro+",
  3773. height: math.unit(750, "feet")
  3774. },
  3775. {
  3776. name: "Megamacro",
  3777. height: math.unit(3, "miles")
  3778. }
  3779. ]
  3780. ))
  3781. characterMakers.push(() => makeCharacter(
  3782. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3783. {
  3784. front: {
  3785. height: math.unit(2, "meter"),
  3786. weight: math.unit(80, "kg"),
  3787. name: "Front",
  3788. image: {
  3789. source: "./media/characters/jennifer/front.svg",
  3790. bottom: 0.11,
  3791. extra: 1.16
  3792. }
  3793. },
  3794. frontAlt: {
  3795. height: math.unit(2, "meter"),
  3796. weight: math.unit(80, "kg"),
  3797. name: "Front (Alt)",
  3798. image: {
  3799. source: "./media/characters/jennifer/front-alt.svg"
  3800. }
  3801. }
  3802. },
  3803. [
  3804. {
  3805. name: "Canon Height",
  3806. height: math.unit(120, "feet"),
  3807. default: true
  3808. },
  3809. {
  3810. name: "Macro+",
  3811. height: math.unit(300, "feet")
  3812. },
  3813. {
  3814. name: "Megamacro",
  3815. height: math.unit(20000, "feet")
  3816. }
  3817. ]
  3818. ))
  3819. characterMakers.push(() => makeCharacter(
  3820. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3821. {
  3822. front: {
  3823. height: math.unit(2, "meter"),
  3824. weight: math.unit(50, "kg"),
  3825. name: "Front",
  3826. image: {
  3827. source: "./media/characters/kalista/front.svg",
  3828. extra: 1314/1145,
  3829. bottom: 101/1415
  3830. }
  3831. },
  3832. back: {
  3833. height: math.unit(2, "meter"),
  3834. weight: math.unit(50, "kg"),
  3835. name: "Back",
  3836. image: {
  3837. source: "./media/characters/kalista/back.svg",
  3838. extra: 1366 / 1156,
  3839. bottom: 33.9 / 1362.78
  3840. }
  3841. }
  3842. },
  3843. [
  3844. {
  3845. name: "Uncomfortably Small",
  3846. height: math.unit(10, "feet")
  3847. },
  3848. {
  3849. name: "Small",
  3850. height: math.unit(30, "feet")
  3851. },
  3852. {
  3853. name: "Macro",
  3854. height: math.unit(100, "feet"),
  3855. default: true
  3856. },
  3857. {
  3858. name: "Macro+",
  3859. height: math.unit(2000, "feet")
  3860. },
  3861. {
  3862. name: "True Form",
  3863. height: math.unit(8924, "miles")
  3864. }
  3865. ]
  3866. ))
  3867. characterMakers.push(() => makeCharacter(
  3868. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3869. {
  3870. front: {
  3871. height: math.unit(2, "meter"),
  3872. weight: math.unit(120, "kg"),
  3873. name: "Front",
  3874. image: {
  3875. source: "./media/characters/ggv/front.svg"
  3876. }
  3877. },
  3878. side: {
  3879. height: math.unit(2, "meter"),
  3880. weight: math.unit(120, "kg"),
  3881. name: "Side",
  3882. image: {
  3883. source: "./media/characters/ggv/side.svg"
  3884. }
  3885. }
  3886. },
  3887. [
  3888. {
  3889. name: "Extremely Puny",
  3890. height: math.unit(9 + 5 / 12, "feet")
  3891. },
  3892. {
  3893. name: "Horribly Small",
  3894. height: math.unit(47.7, "miles"),
  3895. default: true
  3896. },
  3897. {
  3898. name: "Reasonably Sized",
  3899. height: math.unit(25000, "parsecs")
  3900. },
  3901. {
  3902. name: "Slightly Uncompressed",
  3903. height: math.unit(7.77e31, "parsecs")
  3904. },
  3905. {
  3906. name: "Omniversal",
  3907. height: math.unit(1e300, "meters")
  3908. },
  3909. ]
  3910. ))
  3911. characterMakers.push(() => makeCharacter(
  3912. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3913. {
  3914. front: {
  3915. height: math.unit(2, "meter"),
  3916. weight: math.unit(75, "lb"),
  3917. name: "Front",
  3918. image: {
  3919. source: "./media/characters/napalm/front.svg"
  3920. }
  3921. },
  3922. back: {
  3923. height: math.unit(2, "meter"),
  3924. weight: math.unit(75, "lb"),
  3925. name: "Back",
  3926. image: {
  3927. source: "./media/characters/napalm/back.svg"
  3928. }
  3929. }
  3930. },
  3931. [
  3932. {
  3933. name: "Standard",
  3934. height: math.unit(55, "feet"),
  3935. default: true
  3936. }
  3937. ]
  3938. ))
  3939. characterMakers.push(() => makeCharacter(
  3940. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3941. {
  3942. front: {
  3943. height: math.unit(7 + 5 / 6, "feet"),
  3944. weight: math.unit(325, "lb"),
  3945. name: "Front",
  3946. image: {
  3947. source: "./media/characters/asana/front.svg",
  3948. extra: 1133 / 1060,
  3949. bottom: 15.2 / 1148.6
  3950. }
  3951. },
  3952. back: {
  3953. height: math.unit(7 + 5 / 6, "feet"),
  3954. weight: math.unit(325, "lb"),
  3955. name: "Back",
  3956. image: {
  3957. source: "./media/characters/asana/back.svg",
  3958. extra: 1114 / 1043,
  3959. bottom: 5 / 1120
  3960. }
  3961. },
  3962. dressedDark: {
  3963. height: math.unit(7 + 5 / 6, "feet"),
  3964. weight: math.unit(325, "lb"),
  3965. name: "Dressed (Dark)",
  3966. image: {
  3967. source: "./media/characters/asana/dressed-dark.svg",
  3968. extra: 1133 / 1060,
  3969. bottom: 15.2 / 1148.6
  3970. }
  3971. },
  3972. dressedLight: {
  3973. height: math.unit(7 + 5 / 6, "feet"),
  3974. weight: math.unit(325, "lb"),
  3975. name: "Dressed (Light)",
  3976. image: {
  3977. source: "./media/characters/asana/dressed-light.svg",
  3978. extra: 1133 / 1060,
  3979. bottom: 15.2 / 1148.6
  3980. }
  3981. },
  3982. },
  3983. [
  3984. {
  3985. name: "Standard",
  3986. height: math.unit(7 + 5 / 6, "feet"),
  3987. default: true
  3988. },
  3989. {
  3990. name: "Large",
  3991. height: math.unit(10, "meters")
  3992. },
  3993. {
  3994. name: "Macro",
  3995. height: math.unit(2500, "meters")
  3996. },
  3997. {
  3998. name: "Megamacro",
  3999. height: math.unit(5e6, "meters")
  4000. },
  4001. {
  4002. name: "Examacro",
  4003. height: math.unit(5e12, "lightyears")
  4004. },
  4005. {
  4006. name: "Max Size",
  4007. height: math.unit(1e31, "lightyears")
  4008. }
  4009. ]
  4010. ))
  4011. characterMakers.push(() => makeCharacter(
  4012. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4013. {
  4014. front: {
  4015. height: math.unit(2, "meter"),
  4016. weight: math.unit(60, "kg"),
  4017. name: "Front",
  4018. image: {
  4019. source: "./media/characters/ebony/front.svg",
  4020. bottom: 0.03,
  4021. extra: 1045 / 810 + 0.03
  4022. }
  4023. },
  4024. side: {
  4025. height: math.unit(2, "meter"),
  4026. weight: math.unit(60, "kg"),
  4027. name: "Side",
  4028. image: {
  4029. source: "./media/characters/ebony/side.svg",
  4030. bottom: 0.03,
  4031. extra: 1045 / 810 + 0.03
  4032. }
  4033. },
  4034. back: {
  4035. height: math.unit(2, "meter"),
  4036. weight: math.unit(60, "kg"),
  4037. name: "Back",
  4038. image: {
  4039. source: "./media/characters/ebony/back.svg",
  4040. bottom: 0.01,
  4041. extra: 1045 / 810 + 0.01
  4042. }
  4043. },
  4044. },
  4045. [
  4046. // TODO check why I did this lol
  4047. {
  4048. name: "Standard",
  4049. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4050. default: true
  4051. },
  4052. {
  4053. name: "Macro",
  4054. height: math.unit(200, "feet")
  4055. },
  4056. {
  4057. name: "Gigamacro",
  4058. height: math.unit(13000, "km")
  4059. }
  4060. ]
  4061. ))
  4062. characterMakers.push(() => makeCharacter(
  4063. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4064. {
  4065. front: {
  4066. height: math.unit(6, "feet"),
  4067. weight: math.unit(175, "lb"),
  4068. name: "Front",
  4069. image: {
  4070. source: "./media/characters/mountain/front.svg",
  4071. extra: 972 / 955,
  4072. bottom: 64 / 1036.6
  4073. }
  4074. },
  4075. back: {
  4076. height: math.unit(6, "feet"),
  4077. weight: math.unit(175, "lb"),
  4078. name: "Back",
  4079. image: {
  4080. source: "./media/characters/mountain/back.svg",
  4081. extra: 970 / 950,
  4082. bottom: 28.25 / 999
  4083. }
  4084. },
  4085. },
  4086. [
  4087. {
  4088. name: "Large",
  4089. height: math.unit(20, "meters")
  4090. },
  4091. {
  4092. name: "Macro",
  4093. height: math.unit(300, "meters")
  4094. },
  4095. {
  4096. name: "Gigamacro",
  4097. height: math.unit(10000, "km"),
  4098. default: true
  4099. },
  4100. {
  4101. name: "Examacro",
  4102. height: math.unit(10e9, "lightyears")
  4103. }
  4104. ]
  4105. ))
  4106. characterMakers.push(() => makeCharacter(
  4107. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4108. {
  4109. front: {
  4110. height: math.unit(8, "feet"),
  4111. weight: math.unit(500, "lb"),
  4112. name: "Front",
  4113. image: {
  4114. source: "./media/characters/rick/front.svg"
  4115. }
  4116. }
  4117. },
  4118. [
  4119. {
  4120. name: "Normal",
  4121. height: math.unit(8, "feet"),
  4122. default: true
  4123. },
  4124. {
  4125. name: "Macro",
  4126. height: math.unit(5, "km")
  4127. }
  4128. ]
  4129. ))
  4130. characterMakers.push(() => makeCharacter(
  4131. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4132. {
  4133. front: {
  4134. height: math.unit(8, "feet"),
  4135. weight: math.unit(120, "lb"),
  4136. name: "Front",
  4137. image: {
  4138. source: "./media/characters/ona/front.svg"
  4139. }
  4140. },
  4141. frontAlt: {
  4142. height: math.unit(8, "feet"),
  4143. weight: math.unit(120, "lb"),
  4144. name: "Front (Alt)",
  4145. image: {
  4146. source: "./media/characters/ona/front-alt.svg"
  4147. }
  4148. },
  4149. back: {
  4150. height: math.unit(8, "feet"),
  4151. weight: math.unit(120, "lb"),
  4152. name: "Back",
  4153. image: {
  4154. source: "./media/characters/ona/back.svg"
  4155. }
  4156. },
  4157. foot: {
  4158. height: math.unit(1.1, "feet"),
  4159. name: "Foot",
  4160. image: {
  4161. source: "./media/characters/ona/foot.svg"
  4162. }
  4163. }
  4164. },
  4165. [
  4166. {
  4167. name: "Megamacro",
  4168. height: math.unit(70, "km"),
  4169. default: true
  4170. },
  4171. {
  4172. name: "Gigamacro",
  4173. height: math.unit(681818, "miles")
  4174. },
  4175. {
  4176. name: "Examacro",
  4177. height: math.unit(3800000, "lightyears")
  4178. },
  4179. ]
  4180. ))
  4181. characterMakers.push(() => makeCharacter(
  4182. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4183. {
  4184. front: {
  4185. height: math.unit(12, "feet"),
  4186. weight: math.unit(3000, "lb"),
  4187. name: "Front",
  4188. image: {
  4189. source: "./media/characters/mech/front.svg",
  4190. extra: 2900 / 2770,
  4191. bottom: 110 / 3010
  4192. }
  4193. },
  4194. back: {
  4195. height: math.unit(12, "feet"),
  4196. weight: math.unit(3000, "lb"),
  4197. name: "Back",
  4198. image: {
  4199. source: "./media/characters/mech/back.svg",
  4200. extra: 3011 / 2890,
  4201. bottom: 94 / 3105
  4202. }
  4203. },
  4204. maw: {
  4205. height: math.unit(3.07, "feet"),
  4206. name: "Maw",
  4207. image: {
  4208. source: "./media/characters/mech/maw.svg"
  4209. }
  4210. },
  4211. head: {
  4212. height: math.unit(2.82, "feet"),
  4213. name: "Head",
  4214. image: {
  4215. source: "./media/characters/mech/head.svg"
  4216. }
  4217. },
  4218. dick: {
  4219. height: math.unit(1.43, "feet"),
  4220. name: "Dick",
  4221. image: {
  4222. source: "./media/characters/mech/dick.svg"
  4223. }
  4224. },
  4225. },
  4226. [
  4227. {
  4228. name: "Normal",
  4229. height: math.unit(12, "feet")
  4230. },
  4231. {
  4232. name: "Macro",
  4233. height: math.unit(300, "feet"),
  4234. default: true
  4235. },
  4236. {
  4237. name: "Macro+",
  4238. height: math.unit(1500, "feet")
  4239. },
  4240. ]
  4241. ))
  4242. characterMakers.push(() => makeCharacter(
  4243. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4244. {
  4245. front: {
  4246. height: math.unit(1.3, "meter"),
  4247. weight: math.unit(30, "kg"),
  4248. name: "Front",
  4249. image: {
  4250. source: "./media/characters/gregory/front.svg",
  4251. }
  4252. }
  4253. },
  4254. [
  4255. {
  4256. name: "Normal",
  4257. height: math.unit(1.3, "meter"),
  4258. default: true
  4259. },
  4260. {
  4261. name: "Macro",
  4262. height: math.unit(20, "meter")
  4263. }
  4264. ]
  4265. ))
  4266. characterMakers.push(() => makeCharacter(
  4267. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4268. {
  4269. front: {
  4270. height: math.unit(2.8, "meter"),
  4271. weight: math.unit(200, "kg"),
  4272. name: "Front",
  4273. image: {
  4274. source: "./media/characters/elory/front.svg",
  4275. }
  4276. }
  4277. },
  4278. [
  4279. {
  4280. name: "Normal",
  4281. height: math.unit(2.8, "meter"),
  4282. default: true
  4283. },
  4284. {
  4285. name: "Macro",
  4286. height: math.unit(38, "meter")
  4287. }
  4288. ]
  4289. ))
  4290. characterMakers.push(() => makeCharacter(
  4291. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4292. {
  4293. front: {
  4294. height: math.unit(470, "feet"),
  4295. weight: math.unit(924, "tons"),
  4296. name: "Front",
  4297. image: {
  4298. source: "./media/characters/angelpatamon/front.svg",
  4299. }
  4300. }
  4301. },
  4302. [
  4303. {
  4304. name: "Normal",
  4305. height: math.unit(470, "feet"),
  4306. default: true
  4307. },
  4308. {
  4309. name: "Deity Size I",
  4310. height: math.unit(28651.2, "km")
  4311. },
  4312. {
  4313. name: "Deity Size II",
  4314. height: math.unit(171907.2, "km")
  4315. }
  4316. ]
  4317. ))
  4318. characterMakers.push(() => makeCharacter(
  4319. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4320. {
  4321. side: {
  4322. height: math.unit(7.2, "meter"),
  4323. weight: math.unit(8.2, "tons"),
  4324. name: "Side",
  4325. image: {
  4326. source: "./media/characters/cryae/side.svg",
  4327. extra: 3500 / 1500
  4328. }
  4329. }
  4330. },
  4331. [
  4332. {
  4333. name: "Normal",
  4334. height: math.unit(7.2, "meter"),
  4335. default: true
  4336. }
  4337. ]
  4338. ))
  4339. characterMakers.push(() => makeCharacter(
  4340. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4341. {
  4342. front: {
  4343. height: math.unit(6, "feet"),
  4344. weight: math.unit(175, "lb"),
  4345. name: "Front",
  4346. image: {
  4347. source: "./media/characters/xera/front.svg",
  4348. extra: 2377 / 1972,
  4349. bottom: 75.5 / 2452
  4350. }
  4351. },
  4352. side: {
  4353. height: math.unit(6, "feet"),
  4354. weight: math.unit(175, "lb"),
  4355. name: "Side",
  4356. image: {
  4357. source: "./media/characters/xera/side.svg",
  4358. extra: 2345 / 2019,
  4359. bottom: 39.7 / 2384
  4360. }
  4361. },
  4362. back: {
  4363. height: math.unit(6, "feet"),
  4364. weight: math.unit(175, "lb"),
  4365. name: "Back",
  4366. image: {
  4367. source: "./media/characters/xera/back.svg",
  4368. extra: 2095 / 1984,
  4369. bottom: 67 / 2166
  4370. }
  4371. },
  4372. },
  4373. [
  4374. {
  4375. name: "Small",
  4376. height: math.unit(10, "feet")
  4377. },
  4378. {
  4379. name: "Macro",
  4380. height: math.unit(500, "meters"),
  4381. default: true
  4382. },
  4383. {
  4384. name: "Macro+",
  4385. height: math.unit(10, "km")
  4386. },
  4387. {
  4388. name: "Gigamacro",
  4389. height: math.unit(25000, "km")
  4390. },
  4391. {
  4392. name: "Teramacro",
  4393. height: math.unit(3e6, "km")
  4394. }
  4395. ]
  4396. ))
  4397. characterMakers.push(() => makeCharacter(
  4398. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4399. {
  4400. front: {
  4401. height: math.unit(6, "feet"),
  4402. weight: math.unit(175, "lb"),
  4403. name: "Front",
  4404. image: {
  4405. source: "./media/characters/nebula/front.svg",
  4406. extra: 2566 / 2362,
  4407. bottom: 81 / 2644
  4408. }
  4409. }
  4410. },
  4411. [
  4412. {
  4413. name: "Small",
  4414. height: math.unit(4.5, "meters")
  4415. },
  4416. {
  4417. name: "Macro",
  4418. height: math.unit(1500, "meters"),
  4419. default: true
  4420. },
  4421. {
  4422. name: "Megamacro",
  4423. height: math.unit(150, "km")
  4424. },
  4425. {
  4426. name: "Gigamacro",
  4427. height: math.unit(27000, "km")
  4428. }
  4429. ]
  4430. ))
  4431. characterMakers.push(() => makeCharacter(
  4432. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4433. {
  4434. front: {
  4435. height: math.unit(6, "feet"),
  4436. weight: math.unit(225, "lb"),
  4437. name: "Front",
  4438. image: {
  4439. source: "./media/characters/abysgar/front.svg"
  4440. }
  4441. }
  4442. },
  4443. [
  4444. {
  4445. name: "Small",
  4446. height: math.unit(4.5, "meters")
  4447. },
  4448. {
  4449. name: "Macro",
  4450. height: math.unit(1250, "meters"),
  4451. default: true
  4452. },
  4453. {
  4454. name: "Megamacro",
  4455. height: math.unit(125, "km")
  4456. },
  4457. {
  4458. name: "Gigamacro",
  4459. height: math.unit(26000, "km")
  4460. }
  4461. ]
  4462. ))
  4463. characterMakers.push(() => makeCharacter(
  4464. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4465. {
  4466. front: {
  4467. height: math.unit(6, "feet"),
  4468. weight: math.unit(180, "lb"),
  4469. name: "Front",
  4470. image: {
  4471. source: "./media/characters/yakuz/front.svg"
  4472. }
  4473. }
  4474. },
  4475. [
  4476. {
  4477. name: "Small",
  4478. height: math.unit(5, "meters")
  4479. },
  4480. {
  4481. name: "Macro",
  4482. height: math.unit(1500, "meters"),
  4483. default: true
  4484. },
  4485. {
  4486. name: "Megamacro",
  4487. height: math.unit(200, "km")
  4488. },
  4489. {
  4490. name: "Gigamacro",
  4491. height: math.unit(100000, "km")
  4492. }
  4493. ]
  4494. ))
  4495. characterMakers.push(() => makeCharacter(
  4496. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4497. {
  4498. front: {
  4499. height: math.unit(6, "feet"),
  4500. weight: math.unit(175, "lb"),
  4501. name: "Front",
  4502. image: {
  4503. source: "./media/characters/mirova/front.svg",
  4504. extra: 3334 / 3071,
  4505. bottom: 42 / 3375.6
  4506. }
  4507. }
  4508. },
  4509. [
  4510. {
  4511. name: "Small",
  4512. height: math.unit(5, "meters")
  4513. },
  4514. {
  4515. name: "Macro",
  4516. height: math.unit(900, "meters"),
  4517. default: true
  4518. },
  4519. {
  4520. name: "Megamacro",
  4521. height: math.unit(135, "km")
  4522. },
  4523. {
  4524. name: "Gigamacro",
  4525. height: math.unit(20000, "km")
  4526. }
  4527. ]
  4528. ))
  4529. characterMakers.push(() => makeCharacter(
  4530. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4531. {
  4532. side: {
  4533. height: math.unit(28.35, "feet"),
  4534. weight: math.unit(99.75, "tons"),
  4535. name: "Side",
  4536. image: {
  4537. source: "./media/characters/asana-mech/side.svg",
  4538. extra: 923 / 699,
  4539. bottom: 50 / 975
  4540. }
  4541. },
  4542. chaingun: {
  4543. height: math.unit(7, "feet"),
  4544. weight: math.unit(2400, "lb"),
  4545. name: "Chaingun",
  4546. image: {
  4547. source: "./media/characters/asana-mech/chaingun.svg"
  4548. }
  4549. },
  4550. laser: {
  4551. height: math.unit(7.12, "feet"),
  4552. weight: math.unit(2000, "lb"),
  4553. name: "Laser",
  4554. image: {
  4555. source: "./media/characters/asana-mech/laser.svg"
  4556. }
  4557. },
  4558. },
  4559. [
  4560. {
  4561. name: "Normal",
  4562. height: math.unit(28.35, "feet"),
  4563. default: true
  4564. },
  4565. {
  4566. name: "Macro",
  4567. height: math.unit(2500, "feet")
  4568. },
  4569. {
  4570. name: "Megamacro",
  4571. height: math.unit(25, "miles")
  4572. },
  4573. {
  4574. name: "Examacro",
  4575. height: math.unit(6e8, "lightyears")
  4576. },
  4577. ]
  4578. ))
  4579. characterMakers.push(() => makeCharacter(
  4580. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4581. {
  4582. front: {
  4583. height: math.unit(5, "meters"),
  4584. weight: math.unit(1000, "kg"),
  4585. name: "Front",
  4586. image: {
  4587. source: "./media/characters/asche/front.svg",
  4588. extra: 1258 / 1190,
  4589. bottom: 47 / 1305
  4590. }
  4591. },
  4592. frontUnderwear: {
  4593. height: math.unit(5, "meters"),
  4594. weight: math.unit(1000, "kg"),
  4595. name: "Front (Underwear)",
  4596. image: {
  4597. source: "./media/characters/asche/front-underwear.svg",
  4598. extra: 1258 / 1190,
  4599. bottom: 47 / 1305
  4600. }
  4601. },
  4602. frontDressed: {
  4603. height: math.unit(5, "meters"),
  4604. weight: math.unit(1000, "kg"),
  4605. name: "Front (Dressed)",
  4606. image: {
  4607. source: "./media/characters/asche/front-dressed.svg",
  4608. extra: 1258 / 1190,
  4609. bottom: 47 / 1305
  4610. }
  4611. },
  4612. frontArmor: {
  4613. height: math.unit(5, "meters"),
  4614. weight: math.unit(1000, "kg"),
  4615. name: "Front (Armored)",
  4616. image: {
  4617. source: "./media/characters/asche/front-armored.svg",
  4618. extra: 1374 / 1308,
  4619. bottom: 23 / 1397
  4620. }
  4621. },
  4622. mp724: {
  4623. height: math.unit(0.96, "meters"),
  4624. weight: math.unit(38, "kg"),
  4625. name: "H&K MP724",
  4626. image: {
  4627. source: "./media/characters/asche/h&k-mp724.svg"
  4628. }
  4629. },
  4630. side: {
  4631. height: math.unit(5, "meters"),
  4632. weight: math.unit(1000, "kg"),
  4633. name: "Side",
  4634. image: {
  4635. source: "./media/characters/asche/side.svg",
  4636. extra: 1717 / 1609,
  4637. bottom: 0.005
  4638. }
  4639. },
  4640. back: {
  4641. height: math.unit(5, "meters"),
  4642. weight: math.unit(1000, "kg"),
  4643. name: "Back",
  4644. image: {
  4645. source: "./media/characters/asche/back.svg",
  4646. extra: 1570 / 1501
  4647. }
  4648. },
  4649. },
  4650. [
  4651. {
  4652. name: "DEFCON 5",
  4653. height: math.unit(5, "meters")
  4654. },
  4655. {
  4656. name: "DEFCON 4",
  4657. height: math.unit(500, "meters"),
  4658. default: true
  4659. },
  4660. {
  4661. name: "DEFCON 3",
  4662. height: math.unit(5, "km")
  4663. },
  4664. {
  4665. name: "DEFCON 2",
  4666. height: math.unit(500, "km")
  4667. },
  4668. {
  4669. name: "DEFCON 1",
  4670. height: math.unit(500000, "km")
  4671. },
  4672. {
  4673. name: "DEFCON 0",
  4674. height: math.unit(3, "gigaparsecs")
  4675. },
  4676. ]
  4677. ))
  4678. characterMakers.push(() => makeCharacter(
  4679. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4680. {
  4681. front: {
  4682. height: math.unit(2, "meters"),
  4683. weight: math.unit(76, "kg"),
  4684. name: "Front",
  4685. image: {
  4686. source: "./media/characters/gale/front.svg"
  4687. }
  4688. },
  4689. frontAlt1: {
  4690. height: math.unit(2, "meters"),
  4691. weight: math.unit(76, "kg"),
  4692. name: "Front (Alt 1)",
  4693. image: {
  4694. source: "./media/characters/gale/front-alt-1.svg"
  4695. }
  4696. },
  4697. frontAlt2: {
  4698. height: math.unit(2, "meters"),
  4699. weight: math.unit(76, "kg"),
  4700. name: "Front (Alt 2)",
  4701. image: {
  4702. source: "./media/characters/gale/front-alt-2.svg"
  4703. }
  4704. },
  4705. },
  4706. [
  4707. {
  4708. name: "Normal",
  4709. height: math.unit(7, "feet")
  4710. },
  4711. {
  4712. name: "Macro",
  4713. height: math.unit(150, "feet"),
  4714. default: true
  4715. },
  4716. {
  4717. name: "Macro+",
  4718. height: math.unit(300, "feet")
  4719. },
  4720. ]
  4721. ))
  4722. characterMakers.push(() => makeCharacter(
  4723. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4724. {
  4725. front: {
  4726. height: math.unit(5 + 10/12, "feet"),
  4727. weight: math.unit(67, "kg"),
  4728. name: "Front",
  4729. image: {
  4730. source: "./media/characters/draylen/front.svg",
  4731. extra: 832/777,
  4732. bottom: 85/917
  4733. }
  4734. }
  4735. },
  4736. [
  4737. {
  4738. name: "Normal",
  4739. height: math.unit(5 + 10/12, "feet")
  4740. },
  4741. {
  4742. name: "Macro",
  4743. height: math.unit(150, "feet"),
  4744. default: true
  4745. }
  4746. ]
  4747. ))
  4748. characterMakers.push(() => makeCharacter(
  4749. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4750. {
  4751. front: {
  4752. height: math.unit(7 + 9 / 12, "feet"),
  4753. weight: math.unit(379, "lbs"),
  4754. name: "Front",
  4755. image: {
  4756. source: "./media/characters/chez/front.svg"
  4757. }
  4758. },
  4759. side: {
  4760. height: math.unit(7 + 9 / 12, "feet"),
  4761. weight: math.unit(379, "lbs"),
  4762. name: "Side",
  4763. image: {
  4764. source: "./media/characters/chez/side.svg"
  4765. }
  4766. }
  4767. },
  4768. [
  4769. {
  4770. name: "Normal",
  4771. height: math.unit(7 + 9 / 12, "feet"),
  4772. default: true
  4773. },
  4774. {
  4775. name: "God King",
  4776. height: math.unit(9750000, "meters")
  4777. }
  4778. ]
  4779. ))
  4780. characterMakers.push(() => makeCharacter(
  4781. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4782. {
  4783. front: {
  4784. height: math.unit(6, "feet"),
  4785. weight: math.unit(275, "lbs"),
  4786. name: "Front",
  4787. image: {
  4788. source: "./media/characters/kaylum/front.svg",
  4789. bottom: 0.01,
  4790. extra: 1166 / 1031
  4791. }
  4792. },
  4793. frontWingless: {
  4794. height: math.unit(6, "feet"),
  4795. weight: math.unit(275, "lbs"),
  4796. name: "Front (Wingless)",
  4797. image: {
  4798. source: "./media/characters/kaylum/front-wingless.svg",
  4799. bottom: 0.01,
  4800. extra: 1117 / 1031
  4801. }
  4802. }
  4803. },
  4804. [
  4805. {
  4806. name: "Normal",
  4807. height: math.unit(3.05, "meters")
  4808. },
  4809. {
  4810. name: "Master",
  4811. height: math.unit(5.5, "meters")
  4812. },
  4813. {
  4814. name: "Rampage",
  4815. height: math.unit(19, "meters")
  4816. },
  4817. {
  4818. name: "Macro Lite",
  4819. height: math.unit(37, "meters")
  4820. },
  4821. {
  4822. name: "Hyper Predator",
  4823. height: math.unit(61, "meters")
  4824. },
  4825. {
  4826. name: "Macro",
  4827. height: math.unit(138, "meters"),
  4828. default: true
  4829. }
  4830. ]
  4831. ))
  4832. characterMakers.push(() => makeCharacter(
  4833. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4834. {
  4835. front: {
  4836. height: math.unit(5 + 5 / 12, "feet"),
  4837. weight: math.unit(120, "lbs"),
  4838. name: "Front",
  4839. image: {
  4840. source: "./media/characters/geta/front.svg",
  4841. extra: 1003/933,
  4842. bottom: 21/1024
  4843. }
  4844. },
  4845. paw: {
  4846. height: math.unit(0.35, "feet"),
  4847. name: "Paw",
  4848. image: {
  4849. source: "./media/characters/geta/paw.svg"
  4850. }
  4851. },
  4852. },
  4853. [
  4854. {
  4855. name: "Micro",
  4856. height: math.unit(3, "inches"),
  4857. default: true
  4858. },
  4859. {
  4860. name: "Normal",
  4861. height: math.unit(5 + 5 / 12, "feet")
  4862. }
  4863. ]
  4864. ))
  4865. characterMakers.push(() => makeCharacter(
  4866. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4867. {
  4868. front: {
  4869. height: math.unit(6, "feet"),
  4870. weight: math.unit(300, "lbs"),
  4871. name: "Front",
  4872. image: {
  4873. source: "./media/characters/tyrnn/front.svg"
  4874. }
  4875. }
  4876. },
  4877. [
  4878. {
  4879. name: "Main Height",
  4880. height: math.unit(355, "feet"),
  4881. default: true
  4882. },
  4883. {
  4884. name: "Fave. Height",
  4885. height: math.unit(2400, "feet")
  4886. }
  4887. ]
  4888. ))
  4889. characterMakers.push(() => makeCharacter(
  4890. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4891. {
  4892. front: {
  4893. height: math.unit(6, "feet"),
  4894. weight: math.unit(300, "lbs"),
  4895. name: "Front",
  4896. image: {
  4897. source: "./media/characters/appledectomy/front.svg"
  4898. }
  4899. }
  4900. },
  4901. [
  4902. {
  4903. name: "Macro",
  4904. height: math.unit(2500, "feet")
  4905. },
  4906. {
  4907. name: "Megamacro",
  4908. height: math.unit(50, "miles"),
  4909. default: true
  4910. },
  4911. {
  4912. name: "Gigamacro",
  4913. height: math.unit(5000, "miles")
  4914. },
  4915. {
  4916. name: "Teramacro",
  4917. height: math.unit(250000, "miles")
  4918. },
  4919. ]
  4920. ))
  4921. characterMakers.push(() => makeCharacter(
  4922. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4923. {
  4924. front: {
  4925. height: math.unit(6, "feet"),
  4926. weight: math.unit(200, "lbs"),
  4927. name: "Front",
  4928. image: {
  4929. source: "./media/characters/vulpes/front.svg",
  4930. extra: 573 / 543,
  4931. bottom: 0.033
  4932. }
  4933. },
  4934. side: {
  4935. height: math.unit(6, "feet"),
  4936. weight: math.unit(200, "lbs"),
  4937. name: "Side",
  4938. image: {
  4939. source: "./media/characters/vulpes/side.svg",
  4940. extra: 577 / 549,
  4941. bottom: 11 / 588
  4942. }
  4943. },
  4944. back: {
  4945. height: math.unit(6, "feet"),
  4946. weight: math.unit(200, "lbs"),
  4947. name: "Back",
  4948. image: {
  4949. source: "./media/characters/vulpes/back.svg",
  4950. extra: 573 / 549,
  4951. bottom: 20 / 593
  4952. }
  4953. },
  4954. feet: {
  4955. height: math.unit(1.276, "feet"),
  4956. name: "Feet",
  4957. image: {
  4958. source: "./media/characters/vulpes/feet.svg"
  4959. }
  4960. },
  4961. maw: {
  4962. height: math.unit(1.18, "feet"),
  4963. name: "Maw",
  4964. image: {
  4965. source: "./media/characters/vulpes/maw.svg"
  4966. }
  4967. },
  4968. },
  4969. [
  4970. {
  4971. name: "Micro",
  4972. height: math.unit(2, "inches")
  4973. },
  4974. {
  4975. name: "Normal",
  4976. height: math.unit(6.3, "feet")
  4977. },
  4978. {
  4979. name: "Macro",
  4980. height: math.unit(850, "feet")
  4981. },
  4982. {
  4983. name: "Megamacro",
  4984. height: math.unit(7500, "feet"),
  4985. default: true
  4986. },
  4987. {
  4988. name: "Gigamacro",
  4989. height: math.unit(570000, "miles")
  4990. }
  4991. ]
  4992. ))
  4993. characterMakers.push(() => makeCharacter(
  4994. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4995. {
  4996. front: {
  4997. height: math.unit(6, "feet"),
  4998. weight: math.unit(210, "lbs"),
  4999. name: "Front",
  5000. image: {
  5001. source: "./media/characters/rain-fallen/front.svg"
  5002. }
  5003. },
  5004. side: {
  5005. height: math.unit(6, "feet"),
  5006. weight: math.unit(210, "lbs"),
  5007. name: "Side",
  5008. image: {
  5009. source: "./media/characters/rain-fallen/side.svg"
  5010. }
  5011. },
  5012. back: {
  5013. height: math.unit(6, "feet"),
  5014. weight: math.unit(210, "lbs"),
  5015. name: "Back",
  5016. image: {
  5017. source: "./media/characters/rain-fallen/back.svg"
  5018. }
  5019. },
  5020. feral: {
  5021. height: math.unit(9, "feet"),
  5022. weight: math.unit(700, "lbs"),
  5023. name: "Feral",
  5024. image: {
  5025. source: "./media/characters/rain-fallen/feral.svg"
  5026. }
  5027. },
  5028. },
  5029. [
  5030. {
  5031. name: "Meddling with Mortals",
  5032. height: math.unit(8 + 8/12, "feet")
  5033. },
  5034. {
  5035. name: "Normal",
  5036. height: math.unit(5, "meter")
  5037. },
  5038. {
  5039. name: "Macro",
  5040. height: math.unit(150, "meter"),
  5041. default: true
  5042. },
  5043. {
  5044. name: "Megamacro",
  5045. height: math.unit(278e6, "meter")
  5046. },
  5047. {
  5048. name: "Gigamacro",
  5049. height: math.unit(2e9, "meter")
  5050. },
  5051. {
  5052. name: "Teramacro",
  5053. height: math.unit(8e12, "meter")
  5054. },
  5055. {
  5056. name: "Devourer",
  5057. height: math.unit(14, "zettameters")
  5058. },
  5059. {
  5060. name: "Scarlet King",
  5061. height: math.unit(18, "yottameters")
  5062. },
  5063. {
  5064. name: "Void",
  5065. height: math.unit(1e88, "yottameters")
  5066. }
  5067. ]
  5068. ))
  5069. characterMakers.push(() => makeCharacter(
  5070. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5071. {
  5072. standing: {
  5073. height: math.unit(6, "feet"),
  5074. weight: math.unit(180, "lbs"),
  5075. name: "Standing",
  5076. image: {
  5077. source: "./media/characters/zaakira/standing.svg",
  5078. extra: 1599/1504,
  5079. bottom: 39/1638
  5080. }
  5081. },
  5082. laying: {
  5083. height: math.unit(3, "feet"),
  5084. weight: math.unit(180, "lbs"),
  5085. name: "Laying",
  5086. image: {
  5087. source: "./media/characters/zaakira/laying.svg"
  5088. }
  5089. },
  5090. },
  5091. [
  5092. {
  5093. name: "Normal",
  5094. height: math.unit(12, "feet")
  5095. },
  5096. {
  5097. name: "Macro",
  5098. height: math.unit(279, "feet"),
  5099. default: true
  5100. }
  5101. ]
  5102. ))
  5103. characterMakers.push(() => makeCharacter(
  5104. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5105. {
  5106. femSfw: {
  5107. height: math.unit(8, "feet"),
  5108. weight: math.unit(350, "lb"),
  5109. name: "Fem",
  5110. image: {
  5111. source: "./media/characters/sigvald/fem-sfw.svg",
  5112. extra: 182 / 164,
  5113. bottom: 8.7 / 190.5
  5114. }
  5115. },
  5116. femNsfw: {
  5117. height: math.unit(8, "feet"),
  5118. weight: math.unit(350, "lb"),
  5119. name: "Fem (NSFW)",
  5120. image: {
  5121. source: "./media/characters/sigvald/fem-nsfw.svg",
  5122. extra: 182 / 164,
  5123. bottom: 8.7 / 190.5
  5124. }
  5125. },
  5126. maleNsfw: {
  5127. height: math.unit(8, "feet"),
  5128. weight: math.unit(350, "lb"),
  5129. name: "Male (NSFW)",
  5130. image: {
  5131. source: "./media/characters/sigvald/male-nsfw.svg",
  5132. extra: 182 / 164,
  5133. bottom: 8.7 / 190.5
  5134. }
  5135. },
  5136. hermNsfw: {
  5137. height: math.unit(8, "feet"),
  5138. weight: math.unit(350, "lb"),
  5139. name: "Herm (NSFW)",
  5140. image: {
  5141. source: "./media/characters/sigvald/herm-nsfw.svg",
  5142. extra: 182 / 164,
  5143. bottom: 8.7 / 190.5
  5144. }
  5145. },
  5146. dick: {
  5147. height: math.unit(2.36, "feet"),
  5148. name: "Dick",
  5149. image: {
  5150. source: "./media/characters/sigvald/dick.svg"
  5151. }
  5152. },
  5153. eye: {
  5154. height: math.unit(0.31, "feet"),
  5155. name: "Eye",
  5156. image: {
  5157. source: "./media/characters/sigvald/eye.svg"
  5158. }
  5159. },
  5160. mouth: {
  5161. height: math.unit(0.92, "feet"),
  5162. name: "Mouth",
  5163. image: {
  5164. source: "./media/characters/sigvald/mouth.svg"
  5165. }
  5166. },
  5167. paws: {
  5168. height: math.unit(2.2, "feet"),
  5169. name: "Paws",
  5170. image: {
  5171. source: "./media/characters/sigvald/paws.svg"
  5172. }
  5173. }
  5174. },
  5175. [
  5176. {
  5177. name: "Normal",
  5178. height: math.unit(8, "feet")
  5179. },
  5180. {
  5181. name: "Large",
  5182. height: math.unit(12, "feet")
  5183. },
  5184. {
  5185. name: "Larger",
  5186. height: math.unit(20, "feet")
  5187. },
  5188. {
  5189. name: "Macro",
  5190. height: math.unit(150, "feet")
  5191. },
  5192. {
  5193. name: "Macro+",
  5194. height: math.unit(200, "feet"),
  5195. default: true
  5196. },
  5197. ]
  5198. ))
  5199. characterMakers.push(() => makeCharacter(
  5200. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5201. {
  5202. side: {
  5203. height: math.unit(12, "feet"),
  5204. weight: math.unit(2000, "kg"),
  5205. name: "Side",
  5206. image: {
  5207. source: "./media/characters/scott/side.svg",
  5208. extra: 754 / 724,
  5209. bottom: 0.069
  5210. }
  5211. },
  5212. upright: {
  5213. height: math.unit(12, "feet"),
  5214. weight: math.unit(2000, "kg"),
  5215. name: "Upright",
  5216. image: {
  5217. source: "./media/characters/scott/upright.svg",
  5218. extra: 3881 / 3722,
  5219. bottom: 0.05
  5220. }
  5221. },
  5222. },
  5223. [
  5224. {
  5225. name: "Normal",
  5226. height: math.unit(12, "feet"),
  5227. default: true
  5228. },
  5229. ]
  5230. ))
  5231. characterMakers.push(() => makeCharacter(
  5232. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5233. {
  5234. side: {
  5235. height: math.unit(8, "meters"),
  5236. weight: math.unit(84755, "lbs"),
  5237. name: "Side",
  5238. image: {
  5239. source: "./media/characters/tobias/side.svg",
  5240. extra: 1474 / 1096,
  5241. bottom: 38.9 / 1513.1235
  5242. }
  5243. },
  5244. },
  5245. [
  5246. {
  5247. name: "Normal",
  5248. height: math.unit(8, "meters"),
  5249. default: true
  5250. },
  5251. ]
  5252. ))
  5253. characterMakers.push(() => makeCharacter(
  5254. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5255. {
  5256. front: {
  5257. height: math.unit(5.5, "feet"),
  5258. weight: math.unit(400, "lbs"),
  5259. name: "Front",
  5260. image: {
  5261. source: "./media/characters/kieran/front.svg",
  5262. extra: 2694 / 2364,
  5263. bottom: 217 / 2908
  5264. }
  5265. },
  5266. side: {
  5267. height: math.unit(5.5, "feet"),
  5268. weight: math.unit(400, "lbs"),
  5269. name: "Side",
  5270. image: {
  5271. source: "./media/characters/kieran/side.svg",
  5272. extra: 875 / 777,
  5273. bottom: 84.6 / 959
  5274. }
  5275. },
  5276. },
  5277. [
  5278. {
  5279. name: "Normal",
  5280. height: math.unit(5.5, "feet"),
  5281. default: true
  5282. },
  5283. ]
  5284. ))
  5285. characterMakers.push(() => makeCharacter(
  5286. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5287. {
  5288. side: {
  5289. height: math.unit(2, "meters"),
  5290. weight: math.unit(70, "kg"),
  5291. name: "Side",
  5292. image: {
  5293. source: "./media/characters/sanya/side.svg",
  5294. bottom: 0.02,
  5295. extra: 1.02
  5296. }
  5297. },
  5298. },
  5299. [
  5300. {
  5301. name: "Small",
  5302. height: math.unit(2, "meters")
  5303. },
  5304. {
  5305. name: "Normal",
  5306. height: math.unit(3, "meters")
  5307. },
  5308. {
  5309. name: "Macro",
  5310. height: math.unit(16, "meters"),
  5311. default: true
  5312. },
  5313. ]
  5314. ))
  5315. characterMakers.push(() => makeCharacter(
  5316. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5317. {
  5318. front: {
  5319. height: math.unit(2, "meters"),
  5320. weight: math.unit(120, "kg"),
  5321. name: "Front",
  5322. image: {
  5323. source: "./media/characters/miranda/front.svg",
  5324. extra: 195 / 185,
  5325. bottom: 10.9 / 206.5
  5326. }
  5327. },
  5328. back: {
  5329. height: math.unit(2, "meters"),
  5330. weight: math.unit(120, "kg"),
  5331. name: "Back",
  5332. image: {
  5333. source: "./media/characters/miranda/back.svg",
  5334. extra: 201 / 193,
  5335. bottom: 2.3 / 203.7
  5336. }
  5337. },
  5338. },
  5339. [
  5340. {
  5341. name: "Normal",
  5342. height: math.unit(10, "feet"),
  5343. default: true
  5344. }
  5345. ]
  5346. ))
  5347. characterMakers.push(() => makeCharacter(
  5348. { name: "James", species: ["deer"], tags: ["anthro"] },
  5349. {
  5350. side: {
  5351. height: math.unit(2, "meters"),
  5352. weight: math.unit(100, "kg"),
  5353. name: "Front",
  5354. image: {
  5355. source: "./media/characters/james/front.svg",
  5356. extra: 10 / 8.5
  5357. }
  5358. },
  5359. },
  5360. [
  5361. {
  5362. name: "Normal",
  5363. height: math.unit(8.5, "feet"),
  5364. default: true
  5365. }
  5366. ]
  5367. ))
  5368. characterMakers.push(() => makeCharacter(
  5369. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5370. {
  5371. side: {
  5372. height: math.unit(9.5, "feet"),
  5373. weight: math.unit(2500, "lbs"),
  5374. name: "Side",
  5375. image: {
  5376. source: "./media/characters/heather/side.svg"
  5377. }
  5378. },
  5379. },
  5380. [
  5381. {
  5382. name: "Normal",
  5383. height: math.unit(9.5, "feet"),
  5384. default: true
  5385. }
  5386. ]
  5387. ))
  5388. characterMakers.push(() => makeCharacter(
  5389. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5390. {
  5391. side: {
  5392. height: math.unit(6.5, "feet"),
  5393. weight: math.unit(400, "lbs"),
  5394. name: "Side",
  5395. image: {
  5396. source: "./media/characters/lukas/side.svg",
  5397. extra: 7.25 / 6.5
  5398. }
  5399. },
  5400. },
  5401. [
  5402. {
  5403. name: "Normal",
  5404. height: math.unit(6.5, "feet"),
  5405. default: true
  5406. }
  5407. ]
  5408. ))
  5409. characterMakers.push(() => makeCharacter(
  5410. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5411. {
  5412. side: {
  5413. height: math.unit(5, "feet"),
  5414. weight: math.unit(3000, "lbs"),
  5415. name: "Side",
  5416. image: {
  5417. source: "./media/characters/louise/side.svg"
  5418. }
  5419. },
  5420. },
  5421. [
  5422. {
  5423. name: "Normal",
  5424. height: math.unit(5, "feet"),
  5425. default: true
  5426. }
  5427. ]
  5428. ))
  5429. characterMakers.push(() => makeCharacter(
  5430. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5431. {
  5432. side: {
  5433. height: math.unit(6, "feet"),
  5434. weight: math.unit(150, "lbs"),
  5435. name: "Side",
  5436. image: {
  5437. source: "./media/characters/ramona/side.svg",
  5438. extra: 871/854,
  5439. bottom: 41/912
  5440. }
  5441. },
  5442. },
  5443. [
  5444. {
  5445. name: "Normal",
  5446. height: math.unit(5.3, "meters"),
  5447. default: true
  5448. },
  5449. {
  5450. name: "Macro",
  5451. height: math.unit(20, "stories")
  5452. },
  5453. {
  5454. name: "Macro+",
  5455. height: math.unit(50, "stories")
  5456. },
  5457. ]
  5458. ))
  5459. characterMakers.push(() => makeCharacter(
  5460. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5461. {
  5462. standing: {
  5463. height: math.unit(5.75, "feet"),
  5464. weight: math.unit(160, "lbs"),
  5465. name: "Standing",
  5466. image: {
  5467. source: "./media/characters/deerpuff/standing.svg",
  5468. extra: 682 / 624
  5469. }
  5470. },
  5471. sitting: {
  5472. height: math.unit(5.75 / 1.79, "feet"),
  5473. weight: math.unit(160, "lbs"),
  5474. name: "Sitting",
  5475. image: {
  5476. source: "./media/characters/deerpuff/sitting.svg",
  5477. bottom: 44 / 400,
  5478. extra: 1
  5479. }
  5480. },
  5481. taurLaying: {
  5482. height: math.unit(6, "feet"),
  5483. weight: math.unit(400, "lbs"),
  5484. name: "Taur (Laying)",
  5485. image: {
  5486. source: "./media/characters/deerpuff/taur-laying.svg"
  5487. }
  5488. },
  5489. },
  5490. [
  5491. {
  5492. name: "Puffball",
  5493. height: math.unit(6, "inches")
  5494. },
  5495. {
  5496. name: "Normalpuff",
  5497. height: math.unit(5.75, "feet")
  5498. },
  5499. {
  5500. name: "Macropuff",
  5501. height: math.unit(1500, "feet"),
  5502. default: true
  5503. },
  5504. {
  5505. name: "Megapuff",
  5506. height: math.unit(500, "miles")
  5507. },
  5508. {
  5509. name: "Gigapuff",
  5510. height: math.unit(250000, "miles")
  5511. },
  5512. {
  5513. name: "Omegapuff",
  5514. height: math.unit(1000, "lightyears")
  5515. },
  5516. ]
  5517. ))
  5518. characterMakers.push(() => makeCharacter(
  5519. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5520. {
  5521. stomping: {
  5522. height: math.unit(6, "feet"),
  5523. weight: math.unit(170, "lbs"),
  5524. name: "Stomping",
  5525. image: {
  5526. source: "./media/characters/vivian/stomping.svg"
  5527. }
  5528. },
  5529. sitting: {
  5530. height: math.unit(6 / 1.75, "feet"),
  5531. weight: math.unit(170, "lbs"),
  5532. name: "Sitting",
  5533. image: {
  5534. source: "./media/characters/vivian/sitting.svg",
  5535. bottom: 1 / 6.4,
  5536. extra: 1,
  5537. }
  5538. },
  5539. },
  5540. [
  5541. {
  5542. name: "Normal",
  5543. height: math.unit(7, "feet"),
  5544. default: true
  5545. },
  5546. {
  5547. name: "Macro",
  5548. height: math.unit(10, "stories")
  5549. },
  5550. {
  5551. name: "Macro+",
  5552. height: math.unit(30, "stories")
  5553. },
  5554. {
  5555. name: "Megamacro",
  5556. height: math.unit(10, "miles")
  5557. },
  5558. {
  5559. name: "Megamacro+",
  5560. height: math.unit(2750000, "meters")
  5561. },
  5562. ]
  5563. ))
  5564. characterMakers.push(() => makeCharacter(
  5565. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5566. {
  5567. front: {
  5568. height: math.unit(6, "feet"),
  5569. weight: math.unit(160, "lbs"),
  5570. name: "Front",
  5571. image: {
  5572. source: "./media/characters/prince/front.svg",
  5573. extra: 3400 / 3000
  5574. }
  5575. },
  5576. jumping: {
  5577. height: math.unit(6, "feet"),
  5578. weight: math.unit(160, "lbs"),
  5579. name: "Jumping",
  5580. image: {
  5581. source: "./media/characters/prince/jump.svg",
  5582. extra: 2555 / 2134
  5583. }
  5584. },
  5585. },
  5586. [
  5587. {
  5588. name: "Normal",
  5589. height: math.unit(7.75, "feet"),
  5590. default: true
  5591. },
  5592. {
  5593. name: "Not cute",
  5594. height: math.unit(17, "feet")
  5595. },
  5596. {
  5597. name: "I said NOT",
  5598. height: math.unit(91, "feet")
  5599. },
  5600. {
  5601. name: "Please stop",
  5602. height: math.unit(560, "feet")
  5603. },
  5604. {
  5605. name: "What have you done",
  5606. height: math.unit(2200, "feet")
  5607. },
  5608. {
  5609. name: "Deer God",
  5610. height: math.unit(3.6, "miles")
  5611. },
  5612. ]
  5613. ))
  5614. characterMakers.push(() => makeCharacter(
  5615. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5616. {
  5617. standing: {
  5618. height: math.unit(6, "feet"),
  5619. weight: math.unit(300, "lbs"),
  5620. name: "Standing",
  5621. image: {
  5622. source: "./media/characters/psymon/standing.svg",
  5623. extra: 1888 / 1810,
  5624. bottom: 0.05
  5625. }
  5626. },
  5627. slithering: {
  5628. height: math.unit(6, "feet"),
  5629. weight: math.unit(300, "lbs"),
  5630. name: "Slithering",
  5631. image: {
  5632. source: "./media/characters/psymon/slithering.svg",
  5633. extra: 1330 / 1224
  5634. }
  5635. },
  5636. slitheringAlt: {
  5637. height: math.unit(6, "feet"),
  5638. weight: math.unit(300, "lbs"),
  5639. name: "Slithering (Alt)",
  5640. image: {
  5641. source: "./media/characters/psymon/slithering-alt.svg",
  5642. extra: 1330 / 1224
  5643. }
  5644. },
  5645. },
  5646. [
  5647. {
  5648. name: "Normal",
  5649. height: math.unit(11.25, "feet"),
  5650. default: true
  5651. },
  5652. {
  5653. name: "Large",
  5654. height: math.unit(27, "feet")
  5655. },
  5656. {
  5657. name: "Giant",
  5658. height: math.unit(87, "feet")
  5659. },
  5660. {
  5661. name: "Macro",
  5662. height: math.unit(365, "feet")
  5663. },
  5664. {
  5665. name: "Megamacro",
  5666. height: math.unit(3, "miles")
  5667. },
  5668. {
  5669. name: "World Serpent",
  5670. height: math.unit(8000, "miles")
  5671. },
  5672. ]
  5673. ))
  5674. characterMakers.push(() => makeCharacter(
  5675. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5676. {
  5677. front: {
  5678. height: math.unit(6, "feet"),
  5679. weight: math.unit(180, "lbs"),
  5680. name: "Front",
  5681. image: {
  5682. source: "./media/characters/daimos/front.svg",
  5683. extra: 4160 / 3897,
  5684. bottom: 0.021
  5685. }
  5686. }
  5687. },
  5688. [
  5689. {
  5690. name: "Normal",
  5691. height: math.unit(8, "feet"),
  5692. default: true
  5693. },
  5694. {
  5695. name: "Big Dog",
  5696. height: math.unit(22, "feet")
  5697. },
  5698. {
  5699. name: "Macro",
  5700. height: math.unit(127, "feet")
  5701. },
  5702. {
  5703. name: "Megamacro",
  5704. height: math.unit(3600, "feet")
  5705. },
  5706. ]
  5707. ))
  5708. characterMakers.push(() => makeCharacter(
  5709. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5710. {
  5711. side: {
  5712. height: math.unit(6, "feet"),
  5713. weight: math.unit(180, "lbs"),
  5714. name: "Side",
  5715. image: {
  5716. source: "./media/characters/blake/side.svg",
  5717. extra: 1212 / 1120,
  5718. bottom: 0.05
  5719. }
  5720. },
  5721. crouched: {
  5722. height: math.unit(6 * 0.57, "feet"),
  5723. weight: math.unit(180, "lbs"),
  5724. name: "Crouched",
  5725. image: {
  5726. source: "./media/characters/blake/crouched.svg",
  5727. extra: 840 / 587,
  5728. bottom: 0.04
  5729. }
  5730. },
  5731. bent: {
  5732. height: math.unit(6 * 0.75, "feet"),
  5733. weight: math.unit(180, "lbs"),
  5734. name: "Bent",
  5735. image: {
  5736. source: "./media/characters/blake/bent.svg",
  5737. extra: 592 / 544,
  5738. bottom: 0.035
  5739. }
  5740. },
  5741. },
  5742. [
  5743. {
  5744. name: "Normal",
  5745. height: math.unit(8 + 1 / 6, "feet"),
  5746. default: true
  5747. },
  5748. {
  5749. name: "Big Backside",
  5750. height: math.unit(37, "feet")
  5751. },
  5752. {
  5753. name: "Subway Shredder",
  5754. height: math.unit(72, "feet")
  5755. },
  5756. {
  5757. name: "City Carver",
  5758. height: math.unit(1675, "feet")
  5759. },
  5760. {
  5761. name: "Tectonic Tweaker",
  5762. height: math.unit(2300, "miles")
  5763. },
  5764. ]
  5765. ))
  5766. characterMakers.push(() => makeCharacter(
  5767. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5768. {
  5769. front: {
  5770. height: math.unit(6, "feet"),
  5771. weight: math.unit(180, "lbs"),
  5772. name: "Front",
  5773. image: {
  5774. source: "./media/characters/guisetto/front.svg",
  5775. extra: 856 / 817,
  5776. bottom: 0.06
  5777. }
  5778. },
  5779. airborne: {
  5780. height: math.unit(6, "feet"),
  5781. weight: math.unit(180, "lbs"),
  5782. name: "Airborne",
  5783. image: {
  5784. source: "./media/characters/guisetto/airborne.svg",
  5785. extra: 584 / 525
  5786. }
  5787. },
  5788. },
  5789. [
  5790. {
  5791. name: "Normal",
  5792. height: math.unit(10 + 11 / 12, "feet"),
  5793. default: true
  5794. },
  5795. {
  5796. name: "Large",
  5797. height: math.unit(35, "feet")
  5798. },
  5799. {
  5800. name: "Macro",
  5801. height: math.unit(475, "feet")
  5802. },
  5803. ]
  5804. ))
  5805. characterMakers.push(() => makeCharacter(
  5806. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5807. {
  5808. front: {
  5809. height: math.unit(6, "feet"),
  5810. weight: math.unit(180, "lbs"),
  5811. name: "Front",
  5812. image: {
  5813. source: "./media/characters/luxor/front.svg",
  5814. extra: 2940 / 2152
  5815. }
  5816. },
  5817. back: {
  5818. height: math.unit(6, "feet"),
  5819. weight: math.unit(180, "lbs"),
  5820. name: "Back",
  5821. image: {
  5822. source: "./media/characters/luxor/back.svg",
  5823. extra: 1083 / 960
  5824. }
  5825. },
  5826. },
  5827. [
  5828. {
  5829. name: "Normal",
  5830. height: math.unit(5 + 5 / 6, "feet"),
  5831. default: true
  5832. },
  5833. {
  5834. name: "Lamp",
  5835. height: math.unit(50, "feet")
  5836. },
  5837. {
  5838. name: "Lämp",
  5839. height: math.unit(300, "feet")
  5840. },
  5841. {
  5842. name: "The sun is a lamp",
  5843. height: math.unit(250000, "miles")
  5844. },
  5845. ]
  5846. ))
  5847. characterMakers.push(() => makeCharacter(
  5848. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5849. {
  5850. front: {
  5851. height: math.unit(6, "feet"),
  5852. weight: math.unit(50, "lbs"),
  5853. name: "Front",
  5854. image: {
  5855. source: "./media/characters/huoyan/front.svg"
  5856. }
  5857. },
  5858. side: {
  5859. height: math.unit(6, "feet"),
  5860. weight: math.unit(180, "lbs"),
  5861. name: "Side",
  5862. image: {
  5863. source: "./media/characters/huoyan/side.svg"
  5864. }
  5865. },
  5866. },
  5867. [
  5868. {
  5869. name: "Chef",
  5870. height: math.unit(9, "feet")
  5871. },
  5872. {
  5873. name: "Normal",
  5874. height: math.unit(65, "feet"),
  5875. default: true
  5876. },
  5877. {
  5878. name: "Macro",
  5879. height: math.unit(780, "feet")
  5880. },
  5881. {
  5882. name: "Flaming Mountain",
  5883. height: math.unit(4.8, "miles")
  5884. },
  5885. {
  5886. name: "Celestial",
  5887. height: math.unit(765000, "miles")
  5888. },
  5889. ]
  5890. ))
  5891. characterMakers.push(() => makeCharacter(
  5892. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5893. {
  5894. front: {
  5895. height: math.unit(5 + 3 / 4, "feet"),
  5896. weight: math.unit(120, "lbs"),
  5897. name: "Front",
  5898. image: {
  5899. source: "./media/characters/tails/front.svg"
  5900. }
  5901. }
  5902. },
  5903. [
  5904. {
  5905. name: "Normal",
  5906. height: math.unit(5 + 3 / 4, "feet"),
  5907. default: true
  5908. }
  5909. ]
  5910. ))
  5911. characterMakers.push(() => makeCharacter(
  5912. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5913. {
  5914. front: {
  5915. height: math.unit(4, "feet"),
  5916. weight: math.unit(50, "lbs"),
  5917. name: "Front",
  5918. image: {
  5919. source: "./media/characters/rainy/front.svg"
  5920. }
  5921. }
  5922. },
  5923. [
  5924. {
  5925. name: "Macro",
  5926. height: math.unit(800, "feet"),
  5927. default: true
  5928. }
  5929. ]
  5930. ))
  5931. characterMakers.push(() => makeCharacter(
  5932. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5933. {
  5934. front: {
  5935. height: math.unit(6, "feet"),
  5936. weight: math.unit(150, "lbs"),
  5937. name: "Front",
  5938. image: {
  5939. source: "./media/characters/rainier/front.svg"
  5940. }
  5941. }
  5942. },
  5943. [
  5944. {
  5945. name: "Micro",
  5946. height: math.unit(2, "mm"),
  5947. default: true
  5948. }
  5949. ]
  5950. ))
  5951. characterMakers.push(() => makeCharacter(
  5952. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5953. {
  5954. front: {
  5955. height: math.unit(8 + 4/12, "feet"),
  5956. name: "Front",
  5957. image: {
  5958. source: "./media/characters/andy-renard/front.svg",
  5959. extra: 1839/1726,
  5960. bottom: 134/1973
  5961. }
  5962. },
  5963. back: {
  5964. height: math.unit(8 + 4/12, "feet"),
  5965. name: "Back",
  5966. image: {
  5967. source: "./media/characters/andy-renard/back.svg",
  5968. extra: 1838/1710,
  5969. bottom: 105/1943
  5970. }
  5971. },
  5972. },
  5973. [
  5974. {
  5975. name: "Tall",
  5976. height: math.unit(8 + 4/12, "feet")
  5977. },
  5978. {
  5979. name: "Mini Macro",
  5980. height: math.unit(15, "feet"),
  5981. default: true
  5982. },
  5983. {
  5984. name: "Macro",
  5985. height: math.unit(100, "feet")
  5986. },
  5987. {
  5988. name: "Mega Macro",
  5989. height: math.unit(1000, "feet")
  5990. },
  5991. {
  5992. name: "Giga Macro",
  5993. height: math.unit(10, "miles")
  5994. },
  5995. {
  5996. name: "God Macro",
  5997. height: math.unit(1, "multiverse")
  5998. },
  5999. ]
  6000. ))
  6001. characterMakers.push(() => makeCharacter(
  6002. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6003. {
  6004. front: {
  6005. height: math.unit(6, "feet"),
  6006. weight: math.unit(210, "lbs"),
  6007. name: "Front",
  6008. image: {
  6009. source: "./media/characters/cimmaron/front-sfw.svg",
  6010. extra: 701 / 676,
  6011. bottom: 0.046
  6012. }
  6013. },
  6014. back: {
  6015. height: math.unit(6, "feet"),
  6016. weight: math.unit(210, "lbs"),
  6017. name: "Back",
  6018. image: {
  6019. source: "./media/characters/cimmaron/back-sfw.svg",
  6020. extra: 701 / 676,
  6021. bottom: 0.046
  6022. }
  6023. },
  6024. frontNsfw: {
  6025. height: math.unit(6, "feet"),
  6026. weight: math.unit(210, "lbs"),
  6027. name: "Front (NSFW)",
  6028. image: {
  6029. source: "./media/characters/cimmaron/front-nsfw.svg",
  6030. extra: 701 / 676,
  6031. bottom: 0.046
  6032. }
  6033. },
  6034. backNsfw: {
  6035. height: math.unit(6, "feet"),
  6036. weight: math.unit(210, "lbs"),
  6037. name: "Back (NSFW)",
  6038. image: {
  6039. source: "./media/characters/cimmaron/back-nsfw.svg",
  6040. extra: 701 / 676,
  6041. bottom: 0.046
  6042. }
  6043. },
  6044. dick: {
  6045. height: math.unit(1.714, "feet"),
  6046. name: "Dick",
  6047. image: {
  6048. source: "./media/characters/cimmaron/dick.svg"
  6049. }
  6050. },
  6051. },
  6052. [
  6053. {
  6054. name: "Normal",
  6055. height: math.unit(6, "feet"),
  6056. default: true
  6057. },
  6058. {
  6059. name: "Macro Mayor",
  6060. height: math.unit(350, "meters")
  6061. },
  6062. ]
  6063. ))
  6064. characterMakers.push(() => makeCharacter(
  6065. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6066. {
  6067. front: {
  6068. height: math.unit(6, "feet"),
  6069. weight: math.unit(200, "lbs"),
  6070. name: "Front",
  6071. image: {
  6072. source: "./media/characters/akari/front.svg",
  6073. extra: 962 / 901,
  6074. bottom: 0.04
  6075. }
  6076. }
  6077. },
  6078. [
  6079. {
  6080. name: "Micro",
  6081. height: math.unit(5, "inches"),
  6082. default: true
  6083. },
  6084. {
  6085. name: "Normal",
  6086. height: math.unit(7, "feet")
  6087. },
  6088. ]
  6089. ))
  6090. characterMakers.push(() => makeCharacter(
  6091. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6092. {
  6093. front: {
  6094. height: math.unit(6, "feet"),
  6095. weight: math.unit(140, "lbs"),
  6096. name: "Front",
  6097. image: {
  6098. source: "./media/characters/cynosura/front.svg",
  6099. extra: 896 / 847
  6100. }
  6101. },
  6102. back: {
  6103. height: math.unit(6, "feet"),
  6104. weight: math.unit(140, "lbs"),
  6105. name: "Back",
  6106. image: {
  6107. source: "./media/characters/cynosura/back.svg",
  6108. extra: 1365 / 1250
  6109. }
  6110. },
  6111. },
  6112. [
  6113. {
  6114. name: "Micro",
  6115. height: math.unit(4, "inches")
  6116. },
  6117. {
  6118. name: "Normal",
  6119. height: math.unit(5.75, "feet"),
  6120. default: true
  6121. },
  6122. {
  6123. name: "Tall",
  6124. height: math.unit(10, "feet")
  6125. },
  6126. {
  6127. name: "Big",
  6128. height: math.unit(20, "feet")
  6129. },
  6130. {
  6131. name: "Macro",
  6132. height: math.unit(50, "feet")
  6133. },
  6134. ]
  6135. ))
  6136. characterMakers.push(() => makeCharacter(
  6137. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6138. {
  6139. front: {
  6140. height: math.unit(13 + 2/12, "feet"),
  6141. weight: math.unit(800, "kg"),
  6142. name: "Front",
  6143. image: {
  6144. source: "./media/characters/gin/front.svg",
  6145. extra: 1312/1191,
  6146. bottom: 45/1357
  6147. }
  6148. },
  6149. mouth: {
  6150. height: math.unit(2.39 * 1.8, "feet"),
  6151. name: "Mouth",
  6152. image: {
  6153. source: "./media/characters/gin/mouth.svg"
  6154. }
  6155. },
  6156. hand: {
  6157. height: math.unit(1.57 * 2.19, "feet"),
  6158. name: "Hand",
  6159. image: {
  6160. source: "./media/characters/gin/hand.svg"
  6161. }
  6162. },
  6163. foot: {
  6164. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6165. name: "Foot",
  6166. image: {
  6167. source: "./media/characters/gin/foot.svg"
  6168. }
  6169. },
  6170. sole: {
  6171. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6172. name: "Sole",
  6173. image: {
  6174. source: "./media/characters/gin/sole.svg"
  6175. }
  6176. },
  6177. },
  6178. [
  6179. {
  6180. name: "Very Small",
  6181. height: math.unit(13 + 2 / 12, "feet")
  6182. },
  6183. {
  6184. name: "Micro",
  6185. height: math.unit(600, "miles")
  6186. },
  6187. {
  6188. name: "Regular",
  6189. height: math.unit(20, "earths"),
  6190. default: true
  6191. },
  6192. {
  6193. name: "Macro",
  6194. height: math.unit(2.2, "solarradii")
  6195. },
  6196. {
  6197. name: "Teramacro",
  6198. height: math.unit(1.2, "galaxies")
  6199. },
  6200. {
  6201. name: "Omegamacro",
  6202. height: math.unit(200, "universes")
  6203. },
  6204. ]
  6205. ))
  6206. characterMakers.push(() => makeCharacter(
  6207. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6208. {
  6209. front: {
  6210. height: math.unit(6 + 1 / 6, "feet"),
  6211. weight: math.unit(178, "lbs"),
  6212. name: "Front",
  6213. image: {
  6214. source: "./media/characters/guy/front.svg"
  6215. }
  6216. }
  6217. },
  6218. [
  6219. {
  6220. name: "Normal",
  6221. height: math.unit(6 + 1 / 6, "feet"),
  6222. default: true
  6223. },
  6224. {
  6225. name: "Large",
  6226. height: math.unit(25 + 7 / 12, "feet")
  6227. },
  6228. {
  6229. name: "Macro",
  6230. height: math.unit(60 + 9 / 12, "feet")
  6231. },
  6232. {
  6233. name: "Macro+",
  6234. height: math.unit(246, "feet")
  6235. },
  6236. {
  6237. name: "Macro++",
  6238. height: math.unit(878, "feet")
  6239. }
  6240. ]
  6241. ))
  6242. characterMakers.push(() => makeCharacter(
  6243. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6244. {
  6245. front: {
  6246. height: math.unit(9, "feet"),
  6247. weight: math.unit(800, "lbs"),
  6248. name: "Front",
  6249. image: {
  6250. source: "./media/characters/tiberius/front.svg",
  6251. extra: 2295 / 2071
  6252. }
  6253. },
  6254. back: {
  6255. height: math.unit(9, "feet"),
  6256. weight: math.unit(800, "lbs"),
  6257. name: "Back",
  6258. image: {
  6259. source: "./media/characters/tiberius/back.svg",
  6260. extra: 2373 / 2160
  6261. }
  6262. },
  6263. },
  6264. [
  6265. {
  6266. name: "Normal",
  6267. height: math.unit(9, "feet"),
  6268. default: true
  6269. }
  6270. ]
  6271. ))
  6272. characterMakers.push(() => makeCharacter(
  6273. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6274. {
  6275. front: {
  6276. height: math.unit(6, "feet"),
  6277. weight: math.unit(600, "lbs"),
  6278. name: "Front",
  6279. image: {
  6280. source: "./media/characters/surgo/front.svg",
  6281. extra: 3591 / 2227
  6282. }
  6283. },
  6284. back: {
  6285. height: math.unit(6, "feet"),
  6286. weight: math.unit(600, "lbs"),
  6287. name: "Back",
  6288. image: {
  6289. source: "./media/characters/surgo/back.svg",
  6290. extra: 3557 / 2228
  6291. }
  6292. },
  6293. laying: {
  6294. height: math.unit(6 * 0.85, "feet"),
  6295. weight: math.unit(600, "lbs"),
  6296. name: "Laying",
  6297. image: {
  6298. source: "./media/characters/surgo/laying.svg"
  6299. }
  6300. },
  6301. },
  6302. [
  6303. {
  6304. name: "Normal",
  6305. height: math.unit(6, "feet"),
  6306. default: true
  6307. }
  6308. ]
  6309. ))
  6310. characterMakers.push(() => makeCharacter(
  6311. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6312. {
  6313. side: {
  6314. height: math.unit(6, "feet"),
  6315. weight: math.unit(150, "lbs"),
  6316. name: "Side",
  6317. image: {
  6318. source: "./media/characters/cibus/side.svg",
  6319. extra: 800 / 400
  6320. }
  6321. },
  6322. },
  6323. [
  6324. {
  6325. name: "Normal",
  6326. height: math.unit(6, "feet"),
  6327. default: true
  6328. }
  6329. ]
  6330. ))
  6331. characterMakers.push(() => makeCharacter(
  6332. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6333. {
  6334. front: {
  6335. height: math.unit(6, "feet"),
  6336. weight: math.unit(240, "lbs"),
  6337. name: "Front",
  6338. image: {
  6339. source: "./media/characters/nibbles/front.svg"
  6340. }
  6341. },
  6342. side: {
  6343. height: math.unit(6, "feet"),
  6344. weight: math.unit(240, "lbs"),
  6345. name: "Side",
  6346. image: {
  6347. source: "./media/characters/nibbles/side.svg"
  6348. }
  6349. },
  6350. },
  6351. [
  6352. {
  6353. name: "Normal",
  6354. height: math.unit(9, "feet"),
  6355. default: true
  6356. }
  6357. ]
  6358. ))
  6359. characterMakers.push(() => makeCharacter(
  6360. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6361. {
  6362. side: {
  6363. height: math.unit(5 + 1 / 6, "feet"),
  6364. weight: math.unit(130, "lbs"),
  6365. name: "Side",
  6366. image: {
  6367. source: "./media/characters/rikky/side.svg",
  6368. extra: 851 / 801
  6369. }
  6370. },
  6371. },
  6372. [
  6373. {
  6374. name: "Normal",
  6375. height: math.unit(5 + 1 / 6, "feet")
  6376. },
  6377. {
  6378. name: "Macro",
  6379. height: math.unit(152, "feet"),
  6380. default: true
  6381. },
  6382. {
  6383. name: "Megamacro",
  6384. height: math.unit(7, "miles")
  6385. }
  6386. ]
  6387. ))
  6388. characterMakers.push(() => makeCharacter(
  6389. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6390. {
  6391. side: {
  6392. height: math.unit(370, "cm"),
  6393. weight: math.unit(350, "lbs"),
  6394. name: "Side",
  6395. image: {
  6396. source: "./media/characters/malfressa/side.svg"
  6397. }
  6398. },
  6399. walking: {
  6400. height: math.unit(370, "cm"),
  6401. weight: math.unit(350, "lbs"),
  6402. name: "Walking",
  6403. image: {
  6404. source: "./media/characters/malfressa/walking.svg"
  6405. }
  6406. },
  6407. feral: {
  6408. height: math.unit(2500, "cm"),
  6409. weight: math.unit(100000, "lbs"),
  6410. name: "Feral",
  6411. image: {
  6412. source: "./media/characters/malfressa/feral.svg",
  6413. extra: 2108 / 837,
  6414. bottom: 0.02
  6415. }
  6416. },
  6417. },
  6418. [
  6419. {
  6420. name: "Normal",
  6421. height: math.unit(370, "cm")
  6422. },
  6423. {
  6424. name: "Macro",
  6425. height: math.unit(300, "meters"),
  6426. default: true
  6427. }
  6428. ]
  6429. ))
  6430. characterMakers.push(() => makeCharacter(
  6431. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6432. {
  6433. front: {
  6434. height: math.unit(6, "feet"),
  6435. weight: math.unit(60, "kg"),
  6436. name: "Front",
  6437. image: {
  6438. source: "./media/characters/jaro/front.svg",
  6439. extra: 845/817,
  6440. bottom: 45/890
  6441. }
  6442. },
  6443. back: {
  6444. height: math.unit(6, "feet"),
  6445. weight: math.unit(60, "kg"),
  6446. name: "Back",
  6447. image: {
  6448. source: "./media/characters/jaro/back.svg",
  6449. extra: 847/817,
  6450. bottom: 34/881
  6451. }
  6452. },
  6453. },
  6454. [
  6455. {
  6456. name: "Micro",
  6457. height: math.unit(7, "inches")
  6458. },
  6459. {
  6460. name: "Normal",
  6461. height: math.unit(5.5, "feet"),
  6462. default: true
  6463. },
  6464. {
  6465. name: "Minimacro",
  6466. height: math.unit(20, "feet")
  6467. },
  6468. {
  6469. name: "Macro",
  6470. height: math.unit(200, "meters")
  6471. }
  6472. ]
  6473. ))
  6474. characterMakers.push(() => makeCharacter(
  6475. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6476. {
  6477. front: {
  6478. height: math.unit(6, "feet"),
  6479. weight: math.unit(195, "lb"),
  6480. name: "Front",
  6481. image: {
  6482. source: "./media/characters/rogue/front.svg"
  6483. }
  6484. },
  6485. },
  6486. [
  6487. {
  6488. name: "Macro",
  6489. height: math.unit(90, "feet"),
  6490. default: true
  6491. },
  6492. ]
  6493. ))
  6494. characterMakers.push(() => makeCharacter(
  6495. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6496. {
  6497. front: {
  6498. height: math.unit(5 + 8 / 12, "feet"),
  6499. weight: math.unit(140, "lb"),
  6500. name: "Front",
  6501. image: {
  6502. source: "./media/characters/piper/front.svg",
  6503. extra: 3948/3655,
  6504. bottom: 0/3948
  6505. }
  6506. },
  6507. },
  6508. [
  6509. {
  6510. name: "Micro",
  6511. height: math.unit(2, "inches")
  6512. },
  6513. {
  6514. name: "Normal",
  6515. height: math.unit(5 + 8 / 12, "feet")
  6516. },
  6517. {
  6518. name: "Macro",
  6519. height: math.unit(250, "feet"),
  6520. default: true
  6521. },
  6522. {
  6523. name: "Megamacro",
  6524. height: math.unit(7, "miles")
  6525. },
  6526. ]
  6527. ))
  6528. characterMakers.push(() => makeCharacter(
  6529. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6530. {
  6531. front: {
  6532. height: math.unit(6, "feet"),
  6533. weight: math.unit(220, "lb"),
  6534. name: "Front",
  6535. image: {
  6536. source: "./media/characters/gemini/front.svg"
  6537. }
  6538. },
  6539. back: {
  6540. height: math.unit(6, "feet"),
  6541. weight: math.unit(220, "lb"),
  6542. name: "Back",
  6543. image: {
  6544. source: "./media/characters/gemini/back.svg"
  6545. }
  6546. },
  6547. kneeling: {
  6548. height: math.unit(6 / 1.5, "feet"),
  6549. weight: math.unit(220, "lb"),
  6550. name: "Kneeling",
  6551. image: {
  6552. source: "./media/characters/gemini/kneeling.svg",
  6553. bottom: 0.02
  6554. }
  6555. },
  6556. },
  6557. [
  6558. {
  6559. name: "Macro",
  6560. height: math.unit(300, "meters"),
  6561. default: true
  6562. },
  6563. {
  6564. name: "Megamacro",
  6565. height: math.unit(6900, "meters")
  6566. },
  6567. ]
  6568. ))
  6569. characterMakers.push(() => makeCharacter(
  6570. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6571. {
  6572. anthro: {
  6573. height: math.unit(2.35, "meters"),
  6574. weight: math.unit(73, "kg"),
  6575. name: "Anthro",
  6576. image: {
  6577. source: "./media/characters/alicia/anthro.svg",
  6578. extra: 2571 / 2385,
  6579. bottom: 75 / 2648
  6580. }
  6581. },
  6582. paw: {
  6583. height: math.unit(1.32, "feet"),
  6584. name: "Paw",
  6585. image: {
  6586. source: "./media/characters/alicia/paw.svg"
  6587. }
  6588. },
  6589. feral: {
  6590. height: math.unit(1.69, "meters"),
  6591. weight: math.unit(73, "kg"),
  6592. name: "Feral",
  6593. image: {
  6594. source: "./media/characters/alicia/feral.svg",
  6595. extra: 2123 / 1715,
  6596. bottom: 222 / 2349
  6597. }
  6598. },
  6599. },
  6600. [
  6601. {
  6602. name: "Normal",
  6603. height: math.unit(2.35, "meters")
  6604. },
  6605. {
  6606. name: "Macro",
  6607. height: math.unit(60, "meters"),
  6608. default: true
  6609. },
  6610. {
  6611. name: "Megamacro",
  6612. height: math.unit(10000, "kilometers")
  6613. },
  6614. ]
  6615. ))
  6616. characterMakers.push(() => makeCharacter(
  6617. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6618. {
  6619. front: {
  6620. height: math.unit(7, "feet"),
  6621. weight: math.unit(250, "lbs"),
  6622. name: "Front",
  6623. image: {
  6624. source: "./media/characters/archy/front.svg"
  6625. }
  6626. }
  6627. },
  6628. [
  6629. {
  6630. name: "Micro",
  6631. height: math.unit(1, "inch")
  6632. },
  6633. {
  6634. name: "Shorty",
  6635. height: math.unit(5, "feet")
  6636. },
  6637. {
  6638. name: "Normal",
  6639. height: math.unit(7, "feet")
  6640. },
  6641. {
  6642. name: "Macro",
  6643. height: math.unit(600, "meters"),
  6644. default: true
  6645. },
  6646. {
  6647. name: "Megamacro",
  6648. height: math.unit(1, "mile")
  6649. },
  6650. ]
  6651. ))
  6652. characterMakers.push(() => makeCharacter(
  6653. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6654. {
  6655. front: {
  6656. height: math.unit(1.65, "meters"),
  6657. weight: math.unit(74, "kg"),
  6658. name: "Front",
  6659. image: {
  6660. source: "./media/characters/berri/front.svg",
  6661. extra: 857 / 837,
  6662. bottom: 18 / 877
  6663. }
  6664. },
  6665. bum: {
  6666. height: math.unit(1.46, "feet"),
  6667. name: "Bum",
  6668. image: {
  6669. source: "./media/characters/berri/bum.svg"
  6670. }
  6671. },
  6672. mouth: {
  6673. height: math.unit(0.44, "feet"),
  6674. name: "Mouth",
  6675. image: {
  6676. source: "./media/characters/berri/mouth.svg"
  6677. }
  6678. },
  6679. paw: {
  6680. height: math.unit(0.826, "feet"),
  6681. name: "Paw",
  6682. image: {
  6683. source: "./media/characters/berri/paw.svg"
  6684. }
  6685. },
  6686. },
  6687. [
  6688. {
  6689. name: "Normal",
  6690. height: math.unit(1.65, "meters")
  6691. },
  6692. {
  6693. name: "Macro",
  6694. height: math.unit(60, "m"),
  6695. default: true
  6696. },
  6697. {
  6698. name: "Megamacro",
  6699. height: math.unit(9.213, "km")
  6700. },
  6701. {
  6702. name: "Planet Eater",
  6703. height: math.unit(489, "megameters")
  6704. },
  6705. {
  6706. name: "Teramacro",
  6707. height: math.unit(2471635000000, "meters")
  6708. },
  6709. {
  6710. name: "Examacro",
  6711. height: math.unit(8.0624e+26, "meters")
  6712. }
  6713. ]
  6714. ))
  6715. characterMakers.push(() => makeCharacter(
  6716. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6717. {
  6718. front: {
  6719. height: math.unit(1.72, "meters"),
  6720. weight: math.unit(68, "kg"),
  6721. name: "Front",
  6722. image: {
  6723. source: "./media/characters/lexi/front.svg"
  6724. }
  6725. }
  6726. },
  6727. [
  6728. {
  6729. name: "Very Smol",
  6730. height: math.unit(10, "mm")
  6731. },
  6732. {
  6733. name: "Micro",
  6734. height: math.unit(6.8, "cm"),
  6735. default: true
  6736. },
  6737. {
  6738. name: "Normal",
  6739. height: math.unit(1.72, "m")
  6740. }
  6741. ]
  6742. ))
  6743. characterMakers.push(() => makeCharacter(
  6744. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6745. {
  6746. front: {
  6747. height: math.unit(1.69, "meters"),
  6748. weight: math.unit(68, "kg"),
  6749. name: "Front",
  6750. image: {
  6751. source: "./media/characters/martin/front.svg",
  6752. extra: 596 / 581
  6753. }
  6754. }
  6755. },
  6756. [
  6757. {
  6758. name: "Micro",
  6759. height: math.unit(6.85, "cm"),
  6760. default: true
  6761. },
  6762. {
  6763. name: "Normal",
  6764. height: math.unit(1.69, "m")
  6765. }
  6766. ]
  6767. ))
  6768. characterMakers.push(() => makeCharacter(
  6769. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6770. {
  6771. front: {
  6772. height: math.unit(1.69, "meters"),
  6773. weight: math.unit(68, "kg"),
  6774. name: "Front",
  6775. image: {
  6776. source: "./media/characters/juno/front.svg"
  6777. }
  6778. }
  6779. },
  6780. [
  6781. {
  6782. name: "Micro",
  6783. height: math.unit(7, "cm")
  6784. },
  6785. {
  6786. name: "Normal",
  6787. height: math.unit(1.89, "m")
  6788. },
  6789. {
  6790. name: "Macro",
  6791. height: math.unit(353, "meters"),
  6792. default: true
  6793. }
  6794. ]
  6795. ))
  6796. characterMakers.push(() => makeCharacter(
  6797. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6798. {
  6799. front: {
  6800. height: math.unit(1.93, "meters"),
  6801. weight: math.unit(83, "kg"),
  6802. name: "Front",
  6803. image: {
  6804. source: "./media/characters/samantha/front.svg"
  6805. }
  6806. },
  6807. frontClothed: {
  6808. height: math.unit(1.93, "meters"),
  6809. weight: math.unit(83, "kg"),
  6810. name: "Front (Clothed)",
  6811. image: {
  6812. source: "./media/characters/samantha/front-clothed.svg"
  6813. }
  6814. },
  6815. back: {
  6816. height: math.unit(1.93, "meters"),
  6817. weight: math.unit(83, "kg"),
  6818. name: "Back",
  6819. image: {
  6820. source: "./media/characters/samantha/back.svg"
  6821. }
  6822. },
  6823. },
  6824. [
  6825. {
  6826. name: "Normal",
  6827. height: math.unit(1.93, "m")
  6828. },
  6829. {
  6830. name: "Macro",
  6831. height: math.unit(74, "meters"),
  6832. default: true
  6833. },
  6834. {
  6835. name: "Macro+",
  6836. height: math.unit(223, "meters"),
  6837. },
  6838. {
  6839. name: "Megamacro",
  6840. height: math.unit(8381, "meters"),
  6841. },
  6842. {
  6843. name: "Megamacro+",
  6844. height: math.unit(12000, "kilometers")
  6845. },
  6846. ]
  6847. ))
  6848. characterMakers.push(() => makeCharacter(
  6849. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6850. {
  6851. front: {
  6852. height: math.unit(1.92, "meters"),
  6853. weight: math.unit(80, "kg"),
  6854. name: "Front",
  6855. image: {
  6856. source: "./media/characters/dr-clay/front.svg"
  6857. }
  6858. },
  6859. frontClothed: {
  6860. height: math.unit(1.92, "meters"),
  6861. weight: math.unit(80, "kg"),
  6862. name: "Front (Clothed)",
  6863. image: {
  6864. source: "./media/characters/dr-clay/front-clothed.svg"
  6865. }
  6866. }
  6867. },
  6868. [
  6869. {
  6870. name: "Normal",
  6871. height: math.unit(1.92, "m")
  6872. },
  6873. {
  6874. name: "Macro",
  6875. height: math.unit(214, "meters"),
  6876. default: true
  6877. },
  6878. {
  6879. name: "Macro+",
  6880. height: math.unit(12.237, "meters"),
  6881. },
  6882. {
  6883. name: "Megamacro",
  6884. height: math.unit(557, "megameters"),
  6885. },
  6886. {
  6887. name: "Unimaginable",
  6888. height: math.unit(120e9, "lightyears")
  6889. },
  6890. ]
  6891. ))
  6892. characterMakers.push(() => makeCharacter(
  6893. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6894. {
  6895. front: {
  6896. height: math.unit(2, "meters"),
  6897. weight: math.unit(80, "kg"),
  6898. name: "Front",
  6899. image: {
  6900. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6901. }
  6902. }
  6903. },
  6904. [
  6905. {
  6906. name: "Teramacro",
  6907. height: math.unit(500000, "lightyears"),
  6908. default: true
  6909. },
  6910. ]
  6911. ))
  6912. characterMakers.push(() => makeCharacter(
  6913. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6914. {
  6915. crux: {
  6916. height: math.unit(2, "meters"),
  6917. weight: math.unit(150, "kg"),
  6918. name: "Crux",
  6919. image: {
  6920. source: "./media/characters/vemus/crux.svg",
  6921. extra: 1074/936,
  6922. bottom: 23/1097
  6923. }
  6924. },
  6925. skunkTanuki: {
  6926. height: math.unit(2, "meters"),
  6927. weight: math.unit(150, "kg"),
  6928. name: "Skunk-Tanuki",
  6929. image: {
  6930. source: "./media/characters/vemus/skunk-tanuki.svg",
  6931. extra: 926/893,
  6932. bottom: 20/946
  6933. }
  6934. },
  6935. },
  6936. [
  6937. {
  6938. name: "Normal",
  6939. height: math.unit(3.75, "meters"),
  6940. default: true
  6941. },
  6942. {
  6943. name: "Big",
  6944. height: math.unit(8, "meters")
  6945. },
  6946. {
  6947. name: "Macro",
  6948. height: math.unit(100, "meters")
  6949. },
  6950. {
  6951. name: "Macro+",
  6952. height: math.unit(1500, "meters")
  6953. },
  6954. {
  6955. name: "Stellar",
  6956. height: math.unit(14e8, "meters")
  6957. },
  6958. ]
  6959. ))
  6960. characterMakers.push(() => makeCharacter(
  6961. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6962. {
  6963. front: {
  6964. height: math.unit(2, "meters"),
  6965. weight: math.unit(70, "kg"),
  6966. name: "Front",
  6967. image: {
  6968. source: "./media/characters/beherit/front.svg",
  6969. extra: 1234/1109,
  6970. bottom: 55/1289
  6971. }
  6972. }
  6973. },
  6974. [
  6975. {
  6976. name: "Normal",
  6977. height: math.unit(6, "feet")
  6978. },
  6979. {
  6980. name: "Lorg",
  6981. height: math.unit(25, "feet"),
  6982. default: true
  6983. },
  6984. {
  6985. name: "Lorger",
  6986. height: math.unit(75, "feet")
  6987. },
  6988. {
  6989. name: "Macro",
  6990. height: math.unit(200, "meters")
  6991. },
  6992. ]
  6993. ))
  6994. characterMakers.push(() => makeCharacter(
  6995. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6996. {
  6997. front: {
  6998. height: math.unit(2, "meters"),
  6999. weight: math.unit(150, "kg"),
  7000. name: "Front",
  7001. image: {
  7002. source: "./media/characters/everett/front.svg",
  7003. extra: 1017/866,
  7004. bottom: 86/1103
  7005. }
  7006. },
  7007. paw: {
  7008. height: math.unit(2 / 3.6, "meters"),
  7009. name: "Paw",
  7010. image: {
  7011. source: "./media/characters/everett/paw.svg"
  7012. }
  7013. },
  7014. },
  7015. [
  7016. {
  7017. name: "Normal",
  7018. height: math.unit(15, "feet"),
  7019. default: true
  7020. },
  7021. {
  7022. name: "Lorg",
  7023. height: math.unit(70, "feet"),
  7024. default: true
  7025. },
  7026. {
  7027. name: "Lorger",
  7028. height: math.unit(250, "feet")
  7029. },
  7030. {
  7031. name: "Macro",
  7032. height: math.unit(500, "meters")
  7033. },
  7034. ]
  7035. ))
  7036. characterMakers.push(() => makeCharacter(
  7037. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7038. {
  7039. front: {
  7040. height: math.unit(2, "meters"),
  7041. weight: math.unit(86, "kg"),
  7042. name: "Front",
  7043. image: {
  7044. source: "./media/characters/rose/front.svg",
  7045. extra: 1785/1636,
  7046. bottom: 30/1815
  7047. }
  7048. },
  7049. frontSporty: {
  7050. height: math.unit(2, "meters"),
  7051. weight: math.unit(86, "kg"),
  7052. name: "Front (Sporty)",
  7053. image: {
  7054. source: "./media/characters/rose/front-sporty.svg",
  7055. extra: 350/335,
  7056. bottom: 10/360
  7057. }
  7058. },
  7059. frontAlt: {
  7060. height: math.unit(1.6, "meters"),
  7061. weight: math.unit(86, "kg"),
  7062. name: "Front (Alt)",
  7063. image: {
  7064. source: "./media/characters/rose/front-alt.svg",
  7065. extra: 299/283,
  7066. bottom: 3/302
  7067. }
  7068. },
  7069. plush: {
  7070. height: math.unit(2, "meters"),
  7071. weight: math.unit(86/3, "kg"),
  7072. name: "Plush",
  7073. image: {
  7074. source: "./media/characters/rose/plush.svg",
  7075. extra: 361/337,
  7076. bottom: 11/372
  7077. }
  7078. },
  7079. },
  7080. [
  7081. {
  7082. name: "True Micro",
  7083. height: math.unit(9, "cm")
  7084. },
  7085. {
  7086. name: "Micro",
  7087. height: math.unit(16, "cm")
  7088. },
  7089. {
  7090. name: "Normal",
  7091. height: math.unit(1.85, "meters"),
  7092. default: true
  7093. },
  7094. {
  7095. name: "Mini-Macro",
  7096. height: math.unit(5, "meters")
  7097. },
  7098. {
  7099. name: "Macro",
  7100. height: math.unit(15, "meters")
  7101. },
  7102. {
  7103. name: "True Macro",
  7104. height: math.unit(40, "meters")
  7105. },
  7106. {
  7107. name: "City Scale",
  7108. height: math.unit(1, "km")
  7109. },
  7110. ]
  7111. ))
  7112. characterMakers.push(() => makeCharacter(
  7113. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7114. {
  7115. front: {
  7116. height: math.unit(2, "meters"),
  7117. weight: math.unit(350, "lbs"),
  7118. name: "Front",
  7119. image: {
  7120. source: "./media/characters/regal/front.svg"
  7121. }
  7122. },
  7123. back: {
  7124. height: math.unit(2, "meters"),
  7125. weight: math.unit(350, "lbs"),
  7126. name: "Back",
  7127. image: {
  7128. source: "./media/characters/regal/back.svg"
  7129. }
  7130. },
  7131. },
  7132. [
  7133. {
  7134. name: "Macro",
  7135. height: math.unit(350, "feet"),
  7136. default: true
  7137. }
  7138. ]
  7139. ))
  7140. characterMakers.push(() => makeCharacter(
  7141. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7142. {
  7143. front: {
  7144. height: math.unit(4 + 11 / 12, "feet"),
  7145. weight: math.unit(100, "lbs"),
  7146. name: "Front",
  7147. image: {
  7148. source: "./media/characters/opal/front.svg"
  7149. }
  7150. },
  7151. frontAlt: {
  7152. height: math.unit(4 + 11 / 12, "feet"),
  7153. weight: math.unit(100, "lbs"),
  7154. name: "Front (Alt)",
  7155. image: {
  7156. source: "./media/characters/opal/front-alt.svg"
  7157. }
  7158. },
  7159. },
  7160. [
  7161. {
  7162. name: "Small",
  7163. height: math.unit(4 + 11 / 12, "feet")
  7164. },
  7165. {
  7166. name: "Normal",
  7167. height: math.unit(20, "feet"),
  7168. default: true
  7169. },
  7170. {
  7171. name: "Macro",
  7172. height: math.unit(120, "feet")
  7173. },
  7174. {
  7175. name: "Megamacro",
  7176. height: math.unit(80, "miles")
  7177. },
  7178. {
  7179. name: "True Size",
  7180. height: math.unit(100000, "lightyears")
  7181. },
  7182. ]
  7183. ))
  7184. characterMakers.push(() => makeCharacter(
  7185. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7186. {
  7187. front: {
  7188. height: math.unit(6, "feet"),
  7189. weight: math.unit(200, "lbs"),
  7190. name: "Front",
  7191. image: {
  7192. source: "./media/characters/vector-wuff/front.svg"
  7193. }
  7194. }
  7195. },
  7196. [
  7197. {
  7198. name: "Normal",
  7199. height: math.unit(2.8, "meters")
  7200. },
  7201. {
  7202. name: "Macro",
  7203. height: math.unit(450, "meters"),
  7204. default: true
  7205. },
  7206. {
  7207. name: "Megamacro",
  7208. height: math.unit(15, "kilometers")
  7209. }
  7210. ]
  7211. ))
  7212. characterMakers.push(() => makeCharacter(
  7213. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7214. {
  7215. front: {
  7216. height: math.unit(6, "feet"),
  7217. weight: math.unit(256, "lbs"),
  7218. name: "Front",
  7219. image: {
  7220. source: "./media/characters/dannik/front.svg"
  7221. }
  7222. }
  7223. },
  7224. [
  7225. {
  7226. name: "Macro",
  7227. height: math.unit(69.57, "meters"),
  7228. default: true
  7229. },
  7230. ]
  7231. ))
  7232. characterMakers.push(() => makeCharacter(
  7233. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7234. {
  7235. front: {
  7236. height: math.unit(6, "feet"),
  7237. weight: math.unit(120, "lbs"),
  7238. name: "Front",
  7239. image: {
  7240. source: "./media/characters/azura-saharah/front.svg"
  7241. }
  7242. },
  7243. back: {
  7244. height: math.unit(6, "feet"),
  7245. weight: math.unit(120, "lbs"),
  7246. name: "Back",
  7247. image: {
  7248. source: "./media/characters/azura-saharah/back.svg"
  7249. }
  7250. },
  7251. },
  7252. [
  7253. {
  7254. name: "Macro",
  7255. height: math.unit(100, "feet"),
  7256. default: true
  7257. },
  7258. ]
  7259. ))
  7260. characterMakers.push(() => makeCharacter(
  7261. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7262. {
  7263. side: {
  7264. height: math.unit(5 + 4 / 12, "feet"),
  7265. weight: math.unit(163, "lbs"),
  7266. name: "Side",
  7267. image: {
  7268. source: "./media/characters/kennedy/side.svg"
  7269. }
  7270. }
  7271. },
  7272. [
  7273. {
  7274. name: "Standard Doggo",
  7275. height: math.unit(5 + 4 / 12, "feet")
  7276. },
  7277. {
  7278. name: "Big Doggo",
  7279. height: math.unit(25 + 3 / 12, "feet"),
  7280. default: true
  7281. },
  7282. ]
  7283. ))
  7284. characterMakers.push(() => makeCharacter(
  7285. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7286. {
  7287. front: {
  7288. height: math.unit(5 + 5/12, "feet"),
  7289. weight: math.unit(100, "lbs"),
  7290. name: "Front",
  7291. image: {
  7292. source: "./media/characters/odios-de-lunar/front.svg",
  7293. extra: 1468/1323,
  7294. bottom: 22/1490
  7295. }
  7296. }
  7297. },
  7298. [
  7299. {
  7300. name: "Micro",
  7301. height: math.unit(3, "inches")
  7302. },
  7303. {
  7304. name: "Normal",
  7305. height: math.unit(5.5, "feet"),
  7306. default: true
  7307. },
  7308. {
  7309. name: "Macro",
  7310. height: math.unit(100, "feet")
  7311. },
  7312. ]
  7313. ))
  7314. characterMakers.push(() => makeCharacter(
  7315. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7316. {
  7317. back: {
  7318. height: math.unit(6, "feet"),
  7319. weight: math.unit(220, "lbs"),
  7320. name: "Back",
  7321. image: {
  7322. source: "./media/characters/mandake/back.svg"
  7323. }
  7324. }
  7325. },
  7326. [
  7327. {
  7328. name: "Normal",
  7329. height: math.unit(7, "feet"),
  7330. default: true
  7331. },
  7332. {
  7333. name: "Macro",
  7334. height: math.unit(78, "feet")
  7335. },
  7336. {
  7337. name: "Macro+",
  7338. height: math.unit(300, "meters")
  7339. },
  7340. {
  7341. name: "Macro++",
  7342. height: math.unit(2400, "feet")
  7343. },
  7344. {
  7345. name: "Megamacro",
  7346. height: math.unit(5167, "meters")
  7347. },
  7348. {
  7349. name: "Gigamacro",
  7350. height: math.unit(41769, "miles")
  7351. },
  7352. ]
  7353. ))
  7354. characterMakers.push(() => makeCharacter(
  7355. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7356. {
  7357. front: {
  7358. height: math.unit(6, "feet"),
  7359. weight: math.unit(120, "lbs"),
  7360. name: "Front",
  7361. image: {
  7362. source: "./media/characters/yozey/front.svg"
  7363. }
  7364. },
  7365. frontAlt: {
  7366. height: math.unit(6, "feet"),
  7367. weight: math.unit(120, "lbs"),
  7368. name: "Front (Alt)",
  7369. image: {
  7370. source: "./media/characters/yozey/front-alt.svg"
  7371. }
  7372. },
  7373. side: {
  7374. height: math.unit(6, "feet"),
  7375. weight: math.unit(120, "lbs"),
  7376. name: "Side",
  7377. image: {
  7378. source: "./media/characters/yozey/side.svg"
  7379. }
  7380. },
  7381. },
  7382. [
  7383. {
  7384. name: "Micro",
  7385. height: math.unit(3, "inches"),
  7386. default: true
  7387. },
  7388. {
  7389. name: "Normal",
  7390. height: math.unit(6, "feet")
  7391. }
  7392. ]
  7393. ))
  7394. characterMakers.push(() => makeCharacter(
  7395. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7396. {
  7397. front: {
  7398. height: math.unit(6, "feet"),
  7399. weight: math.unit(103, "lbs"),
  7400. name: "Front",
  7401. image: {
  7402. source: "./media/characters/valeska-voss/front.svg"
  7403. }
  7404. }
  7405. },
  7406. [
  7407. {
  7408. name: "Mini-Sized Sub",
  7409. height: math.unit(3.1, "inches")
  7410. },
  7411. {
  7412. name: "Mid-Sized Sub",
  7413. height: math.unit(6.2, "inches")
  7414. },
  7415. {
  7416. name: "Full-Sized Sub",
  7417. height: math.unit(9.3, "inches")
  7418. },
  7419. {
  7420. name: "Normal",
  7421. height: math.unit(5 + 2 / 12, "foot"),
  7422. default: true
  7423. },
  7424. ]
  7425. ))
  7426. characterMakers.push(() => makeCharacter(
  7427. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7428. {
  7429. front: {
  7430. height: math.unit(6, "feet"),
  7431. weight: math.unit(160, "lbs"),
  7432. name: "Front",
  7433. image: {
  7434. source: "./media/characters/gene-zeta/front.svg",
  7435. extra: 3006 / 2826,
  7436. bottom: 182 / 3188
  7437. }
  7438. }
  7439. },
  7440. [
  7441. {
  7442. name: "Micro",
  7443. height: math.unit(6, "inches")
  7444. },
  7445. {
  7446. name: "Normal",
  7447. height: math.unit(5 + 11 / 12, "foot"),
  7448. default: true
  7449. },
  7450. {
  7451. name: "Macro",
  7452. height: math.unit(140, "feet")
  7453. },
  7454. {
  7455. name: "Supercharged",
  7456. height: math.unit(2500, "feet")
  7457. },
  7458. ]
  7459. ))
  7460. characterMakers.push(() => makeCharacter(
  7461. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7462. {
  7463. front: {
  7464. height: math.unit(6, "feet"),
  7465. weight: math.unit(350, "lbs"),
  7466. name: "Front",
  7467. image: {
  7468. source: "./media/characters/razinox/front.svg",
  7469. extra: 1686 / 1548,
  7470. bottom: 28.2 / 1868
  7471. }
  7472. },
  7473. back: {
  7474. height: math.unit(6, "feet"),
  7475. weight: math.unit(350, "lbs"),
  7476. name: "Back",
  7477. image: {
  7478. source: "./media/characters/razinox/back.svg",
  7479. extra: 1660 / 1590,
  7480. bottom: 15 / 1665
  7481. }
  7482. },
  7483. },
  7484. [
  7485. {
  7486. name: "Normal",
  7487. height: math.unit(10 + 8 / 12, "foot")
  7488. },
  7489. {
  7490. name: "Minimacro",
  7491. height: math.unit(15, "foot")
  7492. },
  7493. {
  7494. name: "Macro",
  7495. height: math.unit(60, "foot"),
  7496. default: true
  7497. },
  7498. {
  7499. name: "Megamacro",
  7500. height: math.unit(5, "miles")
  7501. },
  7502. {
  7503. name: "Gigamacro",
  7504. height: math.unit(6000, "miles")
  7505. },
  7506. ]
  7507. ))
  7508. characterMakers.push(() => makeCharacter(
  7509. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7510. {
  7511. front: {
  7512. height: math.unit(6, "feet"),
  7513. weight: math.unit(150, "lbs"),
  7514. name: "Front",
  7515. image: {
  7516. source: "./media/characters/cobalt/front.svg"
  7517. }
  7518. }
  7519. },
  7520. [
  7521. {
  7522. name: "Normal",
  7523. height: math.unit(8 + 1 / 12, "foot")
  7524. },
  7525. {
  7526. name: "Macro",
  7527. height: math.unit(111, "foot"),
  7528. default: true
  7529. },
  7530. {
  7531. name: "Supracosmic",
  7532. height: math.unit(1e42, "feet")
  7533. },
  7534. ]
  7535. ))
  7536. characterMakers.push(() => makeCharacter(
  7537. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7538. {
  7539. front: {
  7540. height: math.unit(6, "feet"),
  7541. weight: math.unit(140, "lbs"),
  7542. name: "Front",
  7543. image: {
  7544. source: "./media/characters/amanda/front.svg"
  7545. }
  7546. }
  7547. },
  7548. [
  7549. {
  7550. name: "Micro",
  7551. height: math.unit(5, "inches"),
  7552. default: true
  7553. },
  7554. ]
  7555. ))
  7556. characterMakers.push(() => makeCharacter(
  7557. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7558. {
  7559. front: {
  7560. height: math.unit(2.75, "meters"),
  7561. weight: math.unit(1200, "lb"),
  7562. name: "Front",
  7563. image: {
  7564. source: "./media/characters/teal/front.svg",
  7565. extra: 2463 / 2320,
  7566. bottom: 166 / 2629
  7567. }
  7568. },
  7569. back: {
  7570. height: math.unit(2.75, "meters"),
  7571. weight: math.unit(1200, "lb"),
  7572. name: "Back",
  7573. image: {
  7574. source: "./media/characters/teal/back.svg",
  7575. extra: 2580 / 2489,
  7576. bottom: 151 / 2731
  7577. }
  7578. },
  7579. sitting: {
  7580. height: math.unit(1.9, "meters"),
  7581. weight: math.unit(1200, "lb"),
  7582. name: "Sitting",
  7583. image: {
  7584. source: "./media/characters/teal/sitting.svg",
  7585. extra: 623 / 590,
  7586. bottom: 121 / 744
  7587. }
  7588. },
  7589. standing: {
  7590. height: math.unit(2.75, "meters"),
  7591. weight: math.unit(1200, "lb"),
  7592. name: "Standing",
  7593. image: {
  7594. source: "./media/characters/teal/standing.svg",
  7595. extra: 923 / 893,
  7596. bottom: 60 / 983
  7597. }
  7598. },
  7599. stretching: {
  7600. height: math.unit(3.65, "meters"),
  7601. weight: math.unit(1200, "lb"),
  7602. name: "Stretching",
  7603. image: {
  7604. source: "./media/characters/teal/stretching.svg",
  7605. extra: 1276 / 1244,
  7606. bottom: 0 / 1276
  7607. }
  7608. },
  7609. legged: {
  7610. height: math.unit(1.3, "meters"),
  7611. weight: math.unit(100, "lb"),
  7612. name: "Legged",
  7613. image: {
  7614. source: "./media/characters/teal/legged.svg",
  7615. extra: 462 / 437,
  7616. bottom: 24 / 486
  7617. }
  7618. },
  7619. naga: {
  7620. height: math.unit(5.4, "meters"),
  7621. weight: math.unit(4000, "lb"),
  7622. name: "Naga",
  7623. image: {
  7624. source: "./media/characters/teal/naga.svg",
  7625. extra: 1902 / 1858,
  7626. bottom: 0 / 1902
  7627. }
  7628. },
  7629. hand: {
  7630. height: math.unit(0.52, "meters"),
  7631. name: "Hand",
  7632. image: {
  7633. source: "./media/characters/teal/hand.svg"
  7634. }
  7635. },
  7636. maw: {
  7637. height: math.unit(0.43, "meters"),
  7638. name: "Maw",
  7639. image: {
  7640. source: "./media/characters/teal/maw.svg"
  7641. }
  7642. },
  7643. slit: {
  7644. height: math.unit(0.25, "meters"),
  7645. name: "Slit",
  7646. image: {
  7647. source: "./media/characters/teal/slit.svg"
  7648. }
  7649. },
  7650. },
  7651. [
  7652. {
  7653. name: "Normal",
  7654. height: math.unit(2.75, "meters"),
  7655. default: true
  7656. },
  7657. {
  7658. name: "Macro",
  7659. height: math.unit(300, "feet")
  7660. },
  7661. {
  7662. name: "Macro+",
  7663. height: math.unit(2000, "feet")
  7664. },
  7665. ]
  7666. ))
  7667. characterMakers.push(() => makeCharacter(
  7668. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7669. {
  7670. frontCat: {
  7671. height: math.unit(6, "feet"),
  7672. weight: math.unit(180, "lbs"),
  7673. name: "Front (Cat)",
  7674. image: {
  7675. source: "./media/characters/ravin-amulet/front-cat.svg"
  7676. }
  7677. },
  7678. frontCatAlt: {
  7679. height: math.unit(6, "feet"),
  7680. weight: math.unit(180, "lbs"),
  7681. name: "Front (Alt, Cat)",
  7682. image: {
  7683. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7684. }
  7685. },
  7686. frontWerewolf: {
  7687. height: math.unit(6 * 1.2, "feet"),
  7688. weight: math.unit(225, "lbs"),
  7689. name: "Front (Werewolf)",
  7690. image: {
  7691. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7692. }
  7693. },
  7694. backWerewolf: {
  7695. height: math.unit(6 * 1.2, "feet"),
  7696. weight: math.unit(225, "lbs"),
  7697. name: "Back (Werewolf)",
  7698. image: {
  7699. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7700. }
  7701. },
  7702. },
  7703. [
  7704. {
  7705. name: "Nano",
  7706. height: math.unit(1, "micrometer")
  7707. },
  7708. {
  7709. name: "Micro",
  7710. height: math.unit(1, "inch")
  7711. },
  7712. {
  7713. name: "Normal",
  7714. height: math.unit(6, "feet"),
  7715. default: true
  7716. },
  7717. {
  7718. name: "Macro",
  7719. height: math.unit(60, "feet")
  7720. }
  7721. ]
  7722. ))
  7723. characterMakers.push(() => makeCharacter(
  7724. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7725. {
  7726. front: {
  7727. height: math.unit(6, "feet"),
  7728. weight: math.unit(165, "lbs"),
  7729. name: "Front",
  7730. image: {
  7731. source: "./media/characters/fluoresce/front.svg"
  7732. }
  7733. }
  7734. },
  7735. [
  7736. {
  7737. name: "Micro",
  7738. height: math.unit(6, "cm")
  7739. },
  7740. {
  7741. name: "Normal",
  7742. height: math.unit(5 + 7 / 12, "feet"),
  7743. default: true
  7744. },
  7745. {
  7746. name: "Macro",
  7747. height: math.unit(56, "feet")
  7748. },
  7749. {
  7750. name: "Megamacro",
  7751. height: math.unit(1.9, "miles")
  7752. },
  7753. ]
  7754. ))
  7755. characterMakers.push(() => makeCharacter(
  7756. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7757. {
  7758. front: {
  7759. height: math.unit(9 + 6 / 12, "feet"),
  7760. weight: math.unit(523, "lbs"),
  7761. name: "Side",
  7762. image: {
  7763. source: "./media/characters/aurora/side.svg"
  7764. }
  7765. }
  7766. },
  7767. [
  7768. {
  7769. name: "Normal",
  7770. height: math.unit(9 + 6 / 12, "feet")
  7771. },
  7772. {
  7773. name: "Macro",
  7774. height: math.unit(96, "feet"),
  7775. default: true
  7776. },
  7777. {
  7778. name: "Macro+",
  7779. height: math.unit(243, "feet")
  7780. },
  7781. ]
  7782. ))
  7783. characterMakers.push(() => makeCharacter(
  7784. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7785. {
  7786. front: {
  7787. height: math.unit(194, "cm"),
  7788. weight: math.unit(90, "kg"),
  7789. name: "Front",
  7790. image: {
  7791. source: "./media/characters/ranek/front.svg",
  7792. extra: 1862/1791,
  7793. bottom: 80/1942
  7794. }
  7795. },
  7796. back: {
  7797. height: math.unit(194, "cm"),
  7798. weight: math.unit(90, "kg"),
  7799. name: "Back",
  7800. image: {
  7801. source: "./media/characters/ranek/back.svg",
  7802. extra: 1853/1787,
  7803. bottom: 74/1927
  7804. }
  7805. },
  7806. feral: {
  7807. height: math.unit(30, "cm"),
  7808. weight: math.unit(1.6, "lbs"),
  7809. name: "Feral",
  7810. image: {
  7811. source: "./media/characters/ranek/feral.svg",
  7812. extra: 990/631,
  7813. bottom: 29/1019
  7814. }
  7815. },
  7816. },
  7817. [
  7818. {
  7819. name: "Normal",
  7820. height: math.unit(194, "cm"),
  7821. default: true
  7822. },
  7823. {
  7824. name: "Macro",
  7825. height: math.unit(100, "meters")
  7826. },
  7827. ]
  7828. ))
  7829. characterMakers.push(() => makeCharacter(
  7830. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7831. {
  7832. front: {
  7833. height: math.unit(5 + 6 / 12, "feet"),
  7834. weight: math.unit(153, "lbs"),
  7835. name: "Front",
  7836. image: {
  7837. source: "./media/characters/andrew-cooper/front.svg"
  7838. }
  7839. },
  7840. },
  7841. [
  7842. {
  7843. name: "Nano",
  7844. height: math.unit(1, "mm")
  7845. },
  7846. {
  7847. name: "Micro",
  7848. height: math.unit(2, "inches")
  7849. },
  7850. {
  7851. name: "Normal",
  7852. height: math.unit(5 + 6 / 12, "feet"),
  7853. default: true
  7854. }
  7855. ]
  7856. ))
  7857. characterMakers.push(() => makeCharacter(
  7858. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7859. {
  7860. front: {
  7861. height: math.unit(6, "feet"),
  7862. weight: math.unit(180, "lbs"),
  7863. name: "Front",
  7864. image: {
  7865. source: "./media/characters/akane-sato/front.svg",
  7866. extra: 1219 / 1140
  7867. }
  7868. },
  7869. back: {
  7870. height: math.unit(6, "feet"),
  7871. weight: math.unit(180, "lbs"),
  7872. name: "Back",
  7873. image: {
  7874. source: "./media/characters/akane-sato/back.svg",
  7875. extra: 1219 / 1170
  7876. }
  7877. },
  7878. },
  7879. [
  7880. {
  7881. name: "Normal",
  7882. height: math.unit(2.5, "meters")
  7883. },
  7884. {
  7885. name: "Macro",
  7886. height: math.unit(250, "meters"),
  7887. default: true
  7888. },
  7889. {
  7890. name: "Megamacro",
  7891. height: math.unit(25, "km")
  7892. },
  7893. ]
  7894. ))
  7895. characterMakers.push(() => makeCharacter(
  7896. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7897. {
  7898. front: {
  7899. height: math.unit(6, "feet"),
  7900. weight: math.unit(65, "kg"),
  7901. name: "Front",
  7902. image: {
  7903. source: "./media/characters/rook/front.svg",
  7904. extra: 960 / 950
  7905. }
  7906. }
  7907. },
  7908. [
  7909. {
  7910. name: "Normal",
  7911. height: math.unit(8.8, "feet")
  7912. },
  7913. {
  7914. name: "Macro",
  7915. height: math.unit(88, "feet"),
  7916. default: true
  7917. },
  7918. {
  7919. name: "Megamacro",
  7920. height: math.unit(8, "miles")
  7921. },
  7922. ]
  7923. ))
  7924. characterMakers.push(() => makeCharacter(
  7925. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7926. {
  7927. front: {
  7928. height: math.unit(12 + 2 / 12, "feet"),
  7929. weight: math.unit(808, "lbs"),
  7930. name: "Front",
  7931. image: {
  7932. source: "./media/characters/prodigy/front.svg"
  7933. }
  7934. }
  7935. },
  7936. [
  7937. {
  7938. name: "Normal",
  7939. height: math.unit(12 + 2 / 12, "feet"),
  7940. default: true
  7941. },
  7942. {
  7943. name: "Macro",
  7944. height: math.unit(143, "feet")
  7945. },
  7946. {
  7947. name: "Macro+",
  7948. height: math.unit(400, "feet")
  7949. },
  7950. ]
  7951. ))
  7952. characterMakers.push(() => makeCharacter(
  7953. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7954. {
  7955. front: {
  7956. height: math.unit(6, "feet"),
  7957. weight: math.unit(225, "lbs"),
  7958. name: "Front",
  7959. image: {
  7960. source: "./media/characters/daniel/front.svg"
  7961. }
  7962. },
  7963. leaning: {
  7964. height: math.unit(6, "feet"),
  7965. weight: math.unit(225, "lbs"),
  7966. name: "Leaning",
  7967. image: {
  7968. source: "./media/characters/daniel/leaning.svg"
  7969. }
  7970. },
  7971. },
  7972. [
  7973. {
  7974. name: "Macro",
  7975. height: math.unit(1000, "feet"),
  7976. default: true
  7977. },
  7978. ]
  7979. ))
  7980. characterMakers.push(() => makeCharacter(
  7981. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7982. {
  7983. front: {
  7984. height: math.unit(6, "feet"),
  7985. weight: math.unit(88, "lbs"),
  7986. name: "Front",
  7987. image: {
  7988. source: "./media/characters/chiros/front.svg",
  7989. extra: 306 / 226
  7990. }
  7991. },
  7992. side: {
  7993. height: math.unit(6, "feet"),
  7994. weight: math.unit(88, "lbs"),
  7995. name: "Side",
  7996. image: {
  7997. source: "./media/characters/chiros/side.svg",
  7998. extra: 306 / 226
  7999. }
  8000. },
  8001. },
  8002. [
  8003. {
  8004. name: "Normal",
  8005. height: math.unit(6, "cm"),
  8006. default: true
  8007. },
  8008. ]
  8009. ))
  8010. characterMakers.push(() => makeCharacter(
  8011. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8012. {
  8013. front: {
  8014. height: math.unit(6, "feet"),
  8015. weight: math.unit(100, "lbs"),
  8016. name: "Front",
  8017. image: {
  8018. source: "./media/characters/selka/front.svg",
  8019. extra: 947 / 887
  8020. }
  8021. }
  8022. },
  8023. [
  8024. {
  8025. name: "Normal",
  8026. height: math.unit(5, "cm"),
  8027. default: true
  8028. },
  8029. ]
  8030. ))
  8031. characterMakers.push(() => makeCharacter(
  8032. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8033. {
  8034. front: {
  8035. height: math.unit(8 + 3 / 12, "feet"),
  8036. weight: math.unit(424, "lbs"),
  8037. name: "Front",
  8038. image: {
  8039. source: "./media/characters/verin/front.svg",
  8040. extra: 1845 / 1550
  8041. }
  8042. },
  8043. frontArmored: {
  8044. height: math.unit(8 + 3 / 12, "feet"),
  8045. weight: math.unit(424, "lbs"),
  8046. name: "Front (Armored)",
  8047. image: {
  8048. source: "./media/characters/verin/front-armor.svg",
  8049. extra: 1845 / 1550,
  8050. bottom: 0.01
  8051. }
  8052. },
  8053. back: {
  8054. height: math.unit(8 + 3 / 12, "feet"),
  8055. weight: math.unit(424, "lbs"),
  8056. name: "Back",
  8057. image: {
  8058. source: "./media/characters/verin/back.svg",
  8059. bottom: 0.1,
  8060. extra: 1
  8061. }
  8062. },
  8063. foot: {
  8064. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8065. name: "Foot",
  8066. image: {
  8067. source: "./media/characters/verin/foot.svg"
  8068. }
  8069. },
  8070. },
  8071. [
  8072. {
  8073. name: "Normal",
  8074. height: math.unit(8 + 3 / 12, "feet")
  8075. },
  8076. {
  8077. name: "Minimacro",
  8078. height: math.unit(21, "feet"),
  8079. default: true
  8080. },
  8081. {
  8082. name: "Macro",
  8083. height: math.unit(626, "feet")
  8084. },
  8085. ]
  8086. ))
  8087. characterMakers.push(() => makeCharacter(
  8088. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8089. {
  8090. front: {
  8091. height: math.unit(2.718, "meters"),
  8092. weight: math.unit(150, "lbs"),
  8093. name: "Front",
  8094. image: {
  8095. source: "./media/characters/sovrim-terraquian/front.svg",
  8096. extra: 1752/1689,
  8097. bottom: 36/1788
  8098. }
  8099. },
  8100. back: {
  8101. height: math.unit(2.718, "meters"),
  8102. weight: math.unit(150, "lbs"),
  8103. name: "Back",
  8104. image: {
  8105. source: "./media/characters/sovrim-terraquian/back.svg",
  8106. extra: 1698/1657,
  8107. bottom: 58/1756
  8108. }
  8109. },
  8110. tongue: {
  8111. height: math.unit(2.865, "feet"),
  8112. name: "Tongue",
  8113. image: {
  8114. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8115. }
  8116. },
  8117. hand: {
  8118. height: math.unit(1.61, "feet"),
  8119. name: "Hand",
  8120. image: {
  8121. source: "./media/characters/sovrim-terraquian/hand.svg"
  8122. }
  8123. },
  8124. foot: {
  8125. height: math.unit(1.05, "feet"),
  8126. name: "Foot",
  8127. image: {
  8128. source: "./media/characters/sovrim-terraquian/foot.svg"
  8129. }
  8130. },
  8131. footAlt: {
  8132. height: math.unit(0.88, "feet"),
  8133. name: "Foot (Alt)",
  8134. image: {
  8135. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8136. }
  8137. },
  8138. },
  8139. [
  8140. {
  8141. name: "Micro",
  8142. height: math.unit(2, "inches")
  8143. },
  8144. {
  8145. name: "Small",
  8146. height: math.unit(1, "meter")
  8147. },
  8148. {
  8149. name: "Normal",
  8150. height: math.unit(Math.E, "meters"),
  8151. default: true
  8152. },
  8153. {
  8154. name: "Macro",
  8155. height: math.unit(20, "meters")
  8156. },
  8157. {
  8158. name: "Macro+",
  8159. height: math.unit(400, "meters")
  8160. },
  8161. ]
  8162. ))
  8163. characterMakers.push(() => makeCharacter(
  8164. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8165. {
  8166. front: {
  8167. height: math.unit(7, "feet"),
  8168. weight: math.unit(489, "lbs"),
  8169. name: "Front",
  8170. image: {
  8171. source: "./media/characters/reece-silvermane/front.svg",
  8172. bottom: 0.02,
  8173. extra: 1
  8174. }
  8175. },
  8176. },
  8177. [
  8178. {
  8179. name: "Macro",
  8180. height: math.unit(1.5, "miles"),
  8181. default: true
  8182. },
  8183. ]
  8184. ))
  8185. characterMakers.push(() => makeCharacter(
  8186. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8187. {
  8188. front: {
  8189. height: math.unit(6, "feet"),
  8190. weight: math.unit(78, "kg"),
  8191. name: "Front",
  8192. image: {
  8193. source: "./media/characters/kane/front.svg",
  8194. extra: 978 / 899
  8195. }
  8196. },
  8197. },
  8198. [
  8199. {
  8200. name: "Normal",
  8201. height: math.unit(2.1, "m"),
  8202. },
  8203. {
  8204. name: "Macro",
  8205. height: math.unit(1, "km"),
  8206. default: true
  8207. },
  8208. ]
  8209. ))
  8210. characterMakers.push(() => makeCharacter(
  8211. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8212. {
  8213. front: {
  8214. height: math.unit(6, "feet"),
  8215. weight: math.unit(200, "kg"),
  8216. name: "Front",
  8217. image: {
  8218. source: "./media/characters/tegon/front.svg",
  8219. bottom: 0.01,
  8220. extra: 1
  8221. }
  8222. },
  8223. },
  8224. [
  8225. {
  8226. name: "Micro",
  8227. height: math.unit(1, "inch")
  8228. },
  8229. {
  8230. name: "Normal",
  8231. height: math.unit(6 + 3 / 12, "feet"),
  8232. default: true
  8233. },
  8234. {
  8235. name: "Macro",
  8236. height: math.unit(300, "feet")
  8237. },
  8238. {
  8239. name: "Megamacro",
  8240. height: math.unit(69, "miles")
  8241. },
  8242. ]
  8243. ))
  8244. characterMakers.push(() => makeCharacter(
  8245. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8246. {
  8247. side: {
  8248. height: math.unit(6, "feet"),
  8249. weight: math.unit(2304, "lbs"),
  8250. name: "Side",
  8251. image: {
  8252. source: "./media/characters/arcturax/side.svg",
  8253. extra: 790 / 376,
  8254. bottom: 0.01
  8255. }
  8256. },
  8257. },
  8258. [
  8259. {
  8260. name: "Micro",
  8261. height: math.unit(2, "inch")
  8262. },
  8263. {
  8264. name: "Normal",
  8265. height: math.unit(6, "feet")
  8266. },
  8267. {
  8268. name: "Macro",
  8269. height: math.unit(39, "feet"),
  8270. default: true
  8271. },
  8272. {
  8273. name: "Megamacro",
  8274. height: math.unit(7, "miles")
  8275. },
  8276. ]
  8277. ))
  8278. characterMakers.push(() => makeCharacter(
  8279. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8280. {
  8281. front: {
  8282. height: math.unit(6, "feet"),
  8283. weight: math.unit(50, "lbs"),
  8284. name: "Front",
  8285. image: {
  8286. source: "./media/characters/sentri/front.svg",
  8287. extra: 1750 / 1570,
  8288. bottom: 0.025
  8289. }
  8290. },
  8291. frontAlt: {
  8292. height: math.unit(6, "feet"),
  8293. weight: math.unit(50, "lbs"),
  8294. name: "Front (Alt)",
  8295. image: {
  8296. source: "./media/characters/sentri/front-alt.svg",
  8297. extra: 1750 / 1570,
  8298. bottom: 0.025
  8299. }
  8300. },
  8301. },
  8302. [
  8303. {
  8304. name: "Normal",
  8305. height: math.unit(15, "feet"),
  8306. default: true
  8307. },
  8308. {
  8309. name: "Macro",
  8310. height: math.unit(2500, "feet")
  8311. }
  8312. ]
  8313. ))
  8314. characterMakers.push(() => makeCharacter(
  8315. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8316. {
  8317. front: {
  8318. height: math.unit(5 + 8 / 12, "feet"),
  8319. weight: math.unit(130, "lbs"),
  8320. name: "Front",
  8321. image: {
  8322. source: "./media/characters/corvin/front.svg",
  8323. extra: 1803 / 1629
  8324. }
  8325. },
  8326. frontShirt: {
  8327. height: math.unit(5 + 8 / 12, "feet"),
  8328. weight: math.unit(130, "lbs"),
  8329. name: "Front (Shirt)",
  8330. image: {
  8331. source: "./media/characters/corvin/front-shirt.svg",
  8332. extra: 1803 / 1629
  8333. }
  8334. },
  8335. frontPoncho: {
  8336. height: math.unit(5 + 8 / 12, "feet"),
  8337. weight: math.unit(130, "lbs"),
  8338. name: "Front (Poncho)",
  8339. image: {
  8340. source: "./media/characters/corvin/front-poncho.svg",
  8341. extra: 1803 / 1629
  8342. }
  8343. },
  8344. side: {
  8345. height: math.unit(5 + 8 / 12, "feet"),
  8346. weight: math.unit(130, "lbs"),
  8347. name: "Side",
  8348. image: {
  8349. source: "./media/characters/corvin/side.svg",
  8350. extra: 1012 / 945
  8351. }
  8352. },
  8353. back: {
  8354. height: math.unit(5 + 8 / 12, "feet"),
  8355. weight: math.unit(130, "lbs"),
  8356. name: "Back",
  8357. image: {
  8358. source: "./media/characters/corvin/back.svg",
  8359. extra: 1803 / 1629
  8360. }
  8361. },
  8362. },
  8363. [
  8364. {
  8365. name: "Micro",
  8366. height: math.unit(3, "inches")
  8367. },
  8368. {
  8369. name: "Normal",
  8370. height: math.unit(5 + 8 / 12, "feet")
  8371. },
  8372. {
  8373. name: "Macro",
  8374. height: math.unit(300, "feet"),
  8375. default: true
  8376. },
  8377. {
  8378. name: "Megamacro",
  8379. height: math.unit(500, "miles")
  8380. }
  8381. ]
  8382. ))
  8383. characterMakers.push(() => makeCharacter(
  8384. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8385. {
  8386. front: {
  8387. height: math.unit(6, "feet"),
  8388. weight: math.unit(135, "lbs"),
  8389. name: "Front",
  8390. image: {
  8391. source: "./media/characters/q/front.svg",
  8392. extra: 854 / 752,
  8393. bottom: 0.005
  8394. }
  8395. },
  8396. back: {
  8397. height: math.unit(6, "feet"),
  8398. weight: math.unit(130, "lbs"),
  8399. name: "Back",
  8400. image: {
  8401. source: "./media/characters/q/back.svg",
  8402. extra: 854 / 752
  8403. }
  8404. },
  8405. },
  8406. [
  8407. {
  8408. name: "Macro",
  8409. height: math.unit(90, "feet"),
  8410. default: true
  8411. },
  8412. {
  8413. name: "Extra Macro",
  8414. height: math.unit(300, "feet"),
  8415. },
  8416. {
  8417. name: "BIG WALF",
  8418. height: math.unit(750, "feet"),
  8419. },
  8420. ]
  8421. ))
  8422. characterMakers.push(() => makeCharacter(
  8423. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8424. {
  8425. front: {
  8426. height: math.unit(6, "feet"),
  8427. weight: math.unit(150, "lbs"),
  8428. name: "Front",
  8429. image: {
  8430. source: "./media/characters/carley/front.svg",
  8431. extra: 3927 / 3540,
  8432. bottom: 29.2 / 735
  8433. }
  8434. }
  8435. },
  8436. [
  8437. {
  8438. name: "Normal",
  8439. height: math.unit(6 + 3 / 12, "feet")
  8440. },
  8441. {
  8442. name: "Macro",
  8443. height: math.unit(185, "feet"),
  8444. default: true
  8445. },
  8446. {
  8447. name: "Megamacro",
  8448. height: math.unit(8, "miles"),
  8449. },
  8450. ]
  8451. ))
  8452. characterMakers.push(() => makeCharacter(
  8453. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8454. {
  8455. front: {
  8456. height: math.unit(3, "feet"),
  8457. weight: math.unit(28, "lbs"),
  8458. name: "Front",
  8459. image: {
  8460. source: "./media/characters/citrine/front.svg"
  8461. }
  8462. }
  8463. },
  8464. [
  8465. {
  8466. name: "Normal",
  8467. height: math.unit(3, "feet"),
  8468. default: true
  8469. }
  8470. ]
  8471. ))
  8472. characterMakers.push(() => makeCharacter(
  8473. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8474. {
  8475. front: {
  8476. height: math.unit(14, "feet"),
  8477. weight: math.unit(1450, "kg"),
  8478. capacity: math.unit(15, "people"),
  8479. name: "Front",
  8480. image: {
  8481. source: "./media/characters/aura-starwind/front.svg",
  8482. extra: 1440/1327,
  8483. bottom: 11/1451
  8484. }
  8485. },
  8486. side: {
  8487. height: math.unit(14, "feet"),
  8488. weight: math.unit(1450, "kg"),
  8489. capacity: math.unit(15, "people"),
  8490. name: "Side",
  8491. image: {
  8492. source: "./media/characters/aura-starwind/side.svg",
  8493. extra: 1654 / 1497
  8494. }
  8495. },
  8496. taur: {
  8497. height: math.unit(18, "feet"),
  8498. weight: math.unit(5500, "kg"),
  8499. capacity: math.unit(50, "people"),
  8500. name: "Taur",
  8501. image: {
  8502. source: "./media/characters/aura-starwind/taur.svg",
  8503. extra: 1760 / 1650
  8504. }
  8505. },
  8506. feral: {
  8507. height: math.unit(46, "feet"),
  8508. weight: math.unit(25000, "kg"),
  8509. capacity: math.unit(120, "people"),
  8510. name: "Feral",
  8511. image: {
  8512. source: "./media/characters/aura-starwind/feral.svg"
  8513. }
  8514. },
  8515. },
  8516. [
  8517. {
  8518. name: "Normal",
  8519. height: math.unit(14, "feet"),
  8520. default: true
  8521. },
  8522. {
  8523. name: "Macro",
  8524. height: math.unit(50, "meters")
  8525. },
  8526. {
  8527. name: "Megamacro",
  8528. height: math.unit(5000, "meters")
  8529. },
  8530. {
  8531. name: "Gigamacro",
  8532. height: math.unit(100000, "kilometers")
  8533. },
  8534. ]
  8535. ))
  8536. characterMakers.push(() => makeCharacter(
  8537. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8538. {
  8539. front: {
  8540. height: math.unit(2 + 7 / 12, "feet"),
  8541. weight: math.unit(32, "lbs"),
  8542. name: "Front",
  8543. image: {
  8544. source: "./media/characters/rivet/front.svg",
  8545. extra: 1716 / 1658,
  8546. bottom: 0.03
  8547. }
  8548. },
  8549. foot: {
  8550. height: math.unit(0.551, "feet"),
  8551. name: "Rivet's Foot",
  8552. image: {
  8553. source: "./media/characters/rivet/foot.svg"
  8554. },
  8555. rename: true
  8556. }
  8557. },
  8558. [
  8559. {
  8560. name: "Micro",
  8561. height: math.unit(1.5, "inches"),
  8562. },
  8563. {
  8564. name: "Normal",
  8565. height: math.unit(2 + 7 / 12, "feet"),
  8566. default: true
  8567. },
  8568. {
  8569. name: "Macro",
  8570. height: math.unit(85, "feet")
  8571. },
  8572. {
  8573. name: "Megamacro",
  8574. height: math.unit(2.2, "km")
  8575. }
  8576. ]
  8577. ))
  8578. characterMakers.push(() => makeCharacter(
  8579. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8580. {
  8581. front: {
  8582. height: math.unit(5 + 9 / 12, "feet"),
  8583. weight: math.unit(150, "lbs"),
  8584. name: "Front",
  8585. image: {
  8586. source: "./media/characters/coffee/front.svg",
  8587. extra: 3666 / 3032,
  8588. bottom: 0.04
  8589. }
  8590. },
  8591. foot: {
  8592. height: math.unit(1.29, "feet"),
  8593. name: "Foot",
  8594. image: {
  8595. source: "./media/characters/coffee/foot.svg"
  8596. }
  8597. },
  8598. },
  8599. [
  8600. {
  8601. name: "Micro",
  8602. height: math.unit(2, "inches"),
  8603. },
  8604. {
  8605. name: "Normal",
  8606. height: math.unit(5 + 9 / 12, "feet"),
  8607. default: true
  8608. },
  8609. {
  8610. name: "Macro",
  8611. height: math.unit(800, "feet")
  8612. },
  8613. {
  8614. name: "Megamacro",
  8615. height: math.unit(25, "miles")
  8616. }
  8617. ]
  8618. ))
  8619. characterMakers.push(() => makeCharacter(
  8620. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8621. {
  8622. front: {
  8623. height: math.unit(6, "feet"),
  8624. weight: math.unit(200, "lbs"),
  8625. name: "Front",
  8626. image: {
  8627. source: "./media/characters/chari-gal/front.svg",
  8628. extra: 1568 / 1385,
  8629. bottom: 0.047
  8630. }
  8631. },
  8632. gigantamax: {
  8633. height: math.unit(6 * 16, "feet"),
  8634. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8635. name: "Gigantamax",
  8636. image: {
  8637. source: "./media/characters/chari-gal/gigantamax.svg",
  8638. extra: 1124 / 888,
  8639. bottom: 0.03
  8640. }
  8641. },
  8642. },
  8643. [
  8644. {
  8645. name: "Normal",
  8646. height: math.unit(5 + 7 / 12, "feet")
  8647. },
  8648. {
  8649. name: "Macro",
  8650. height: math.unit(200, "feet"),
  8651. default: true
  8652. }
  8653. ]
  8654. ))
  8655. characterMakers.push(() => makeCharacter(
  8656. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8657. {
  8658. front: {
  8659. height: math.unit(6, "feet"),
  8660. weight: math.unit(150, "lbs"),
  8661. name: "Front",
  8662. image: {
  8663. source: "./media/characters/nova/front.svg",
  8664. extra: 5000 / 4722,
  8665. bottom: 0.02
  8666. }
  8667. }
  8668. },
  8669. [
  8670. {
  8671. name: "Micro-",
  8672. height: math.unit(0.8, "inches")
  8673. },
  8674. {
  8675. name: "Micro",
  8676. height: math.unit(2, "inches"),
  8677. default: true
  8678. },
  8679. ]
  8680. ))
  8681. characterMakers.push(() => makeCharacter(
  8682. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8683. {
  8684. front: {
  8685. height: math.unit(3 + 1 / 12, "feet"),
  8686. weight: math.unit(21.7, "lbs"),
  8687. name: "Front",
  8688. image: {
  8689. source: "./media/characters/argent/front.svg",
  8690. extra: 1471 / 1331,
  8691. bottom: 100.8 / 1575.5
  8692. }
  8693. }
  8694. },
  8695. [
  8696. {
  8697. name: "Micro",
  8698. height: math.unit(2, "inches")
  8699. },
  8700. {
  8701. name: "Normal",
  8702. height: math.unit(3 + 1 / 12, "feet"),
  8703. default: true
  8704. },
  8705. {
  8706. name: "Macro",
  8707. height: math.unit(120, "feet")
  8708. },
  8709. ]
  8710. ))
  8711. characterMakers.push(() => makeCharacter(
  8712. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8713. {
  8714. lamp: {
  8715. height: math.unit(7 * 1559 / 989, "feet"),
  8716. name: "Magic Lamp",
  8717. image: {
  8718. source: "./media/characters/mira-al-cul/lamp.svg",
  8719. extra: 1617 / 1559
  8720. }
  8721. },
  8722. front: {
  8723. height: math.unit(7, "feet"),
  8724. name: "Front",
  8725. image: {
  8726. source: "./media/characters/mira-al-cul/front.svg",
  8727. extra: 1044 / 990
  8728. }
  8729. },
  8730. },
  8731. [
  8732. {
  8733. name: "Heavily Restricted",
  8734. height: math.unit(7 * 1559 / 989, "feet")
  8735. },
  8736. {
  8737. name: "Freshly Freed",
  8738. height: math.unit(50 * 1559 / 989, "feet")
  8739. },
  8740. {
  8741. name: "World Encompassing",
  8742. height: math.unit(10000 * 1559 / 989, "miles")
  8743. },
  8744. {
  8745. name: "Galactic",
  8746. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8747. },
  8748. {
  8749. name: "Palmed Universe",
  8750. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8751. default: true
  8752. },
  8753. {
  8754. name: "Multiversal Matriarch",
  8755. height: math.unit(8.87e10, "yottameters")
  8756. },
  8757. {
  8758. name: "Void Mother",
  8759. height: math.unit(3.14e110, "yottaparsecs")
  8760. },
  8761. {
  8762. name: "Toying with Transcendence",
  8763. height: math.unit(1e307, "meters")
  8764. },
  8765. ]
  8766. ))
  8767. characterMakers.push(() => makeCharacter(
  8768. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8769. {
  8770. front: {
  8771. height: math.unit(17 + 1 / 12, "feet"),
  8772. weight: math.unit(476.2 * 5, "lbs"),
  8773. name: "Front",
  8774. image: {
  8775. source: "./media/characters/kuro-shi-uchū/front.svg",
  8776. extra: 2329 / 1835,
  8777. bottom: 0.02
  8778. }
  8779. },
  8780. },
  8781. [
  8782. {
  8783. name: "Micro",
  8784. height: math.unit(2, "inches")
  8785. },
  8786. {
  8787. name: "Normal",
  8788. height: math.unit(12, "meters")
  8789. },
  8790. {
  8791. name: "Planetary",
  8792. height: math.unit(0.00929, "AU"),
  8793. default: true
  8794. },
  8795. {
  8796. name: "Universal",
  8797. height: math.unit(20, "gigaparsecs")
  8798. },
  8799. ]
  8800. ))
  8801. characterMakers.push(() => makeCharacter(
  8802. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8803. {
  8804. front: {
  8805. height: math.unit(5 + 2 / 12, "feet"),
  8806. weight: math.unit(120, "lbs"),
  8807. name: "Front",
  8808. image: {
  8809. source: "./media/characters/katherine/front.svg",
  8810. extra: 2075 / 1969
  8811. }
  8812. },
  8813. dress: {
  8814. height: math.unit(5 + 2 / 12, "feet"),
  8815. weight: math.unit(120, "lbs"),
  8816. name: "Dress",
  8817. image: {
  8818. source: "./media/characters/katherine/dress.svg",
  8819. extra: 2258 / 2064
  8820. }
  8821. },
  8822. },
  8823. [
  8824. {
  8825. name: "Micro",
  8826. height: math.unit(1, "inches"),
  8827. default: true
  8828. },
  8829. {
  8830. name: "Normal",
  8831. height: math.unit(5 + 2 / 12, "feet")
  8832. },
  8833. {
  8834. name: "Macro",
  8835. height: math.unit(100, "meters")
  8836. },
  8837. {
  8838. name: "Megamacro",
  8839. height: math.unit(80, "miles")
  8840. },
  8841. ]
  8842. ))
  8843. characterMakers.push(() => makeCharacter(
  8844. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8845. {
  8846. front: {
  8847. height: math.unit(7 + 8 / 12, "feet"),
  8848. weight: math.unit(250, "lbs"),
  8849. name: "Front",
  8850. image: {
  8851. source: "./media/characters/yevis/front.svg",
  8852. extra: 1938 / 1755
  8853. }
  8854. }
  8855. },
  8856. [
  8857. {
  8858. name: "Mortal",
  8859. height: math.unit(7 + 8 / 12, "feet")
  8860. },
  8861. {
  8862. name: "Battle",
  8863. height: math.unit(25 + 11 / 12, "feet")
  8864. },
  8865. {
  8866. name: "Wrath",
  8867. height: math.unit(1654 + 11 / 12, "feet")
  8868. },
  8869. {
  8870. name: "Planet Destroyer",
  8871. height: math.unit(12000, "miles")
  8872. },
  8873. {
  8874. name: "Galaxy Conqueror",
  8875. height: math.unit(1.45, "zettameters"),
  8876. default: true
  8877. },
  8878. {
  8879. name: "Universal War",
  8880. height: math.unit(184, "gigaparsecs")
  8881. },
  8882. {
  8883. name: "Eternity War",
  8884. height: math.unit(1.98e55, "yottaparsecs")
  8885. },
  8886. ]
  8887. ))
  8888. characterMakers.push(() => makeCharacter(
  8889. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8890. {
  8891. front: {
  8892. height: math.unit(5 + 8 / 12, "feet"),
  8893. weight: math.unit(63, "kg"),
  8894. name: "Front",
  8895. image: {
  8896. source: "./media/characters/xavier/front.svg",
  8897. extra: 944 / 883
  8898. }
  8899. },
  8900. frontStretch: {
  8901. height: math.unit(5 + 8 / 12, "feet"),
  8902. weight: math.unit(63, "kg"),
  8903. name: "Stretching",
  8904. image: {
  8905. source: "./media/characters/xavier/front-stretch.svg",
  8906. extra: 962 / 820
  8907. }
  8908. },
  8909. },
  8910. [
  8911. {
  8912. name: "Normal",
  8913. height: math.unit(5 + 8 / 12, "feet")
  8914. },
  8915. {
  8916. name: "Macro",
  8917. height: math.unit(100, "meters"),
  8918. default: true
  8919. },
  8920. {
  8921. name: "McLargeHuge",
  8922. height: math.unit(10, "miles")
  8923. },
  8924. ]
  8925. ))
  8926. characterMakers.push(() => makeCharacter(
  8927. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8928. {
  8929. front: {
  8930. height: math.unit(5 + 5 / 12, "feet"),
  8931. weight: math.unit(150, "lb"),
  8932. name: "Front",
  8933. image: {
  8934. source: "./media/characters/joshii/front.svg",
  8935. extra: 765 / 653,
  8936. bottom: 51 / 816
  8937. }
  8938. },
  8939. foot: {
  8940. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8941. name: "Foot",
  8942. image: {
  8943. source: "./media/characters/joshii/foot.svg"
  8944. }
  8945. },
  8946. },
  8947. [
  8948. {
  8949. name: "Micro",
  8950. height: math.unit(2, "inches"),
  8951. default: true
  8952. },
  8953. {
  8954. name: "Normal",
  8955. height: math.unit(5 + 5 / 12, "feet")
  8956. },
  8957. {
  8958. name: "Macro",
  8959. height: math.unit(785, "feet")
  8960. },
  8961. {
  8962. name: "Megamacro",
  8963. height: math.unit(24.5, "miles")
  8964. },
  8965. ]
  8966. ))
  8967. characterMakers.push(() => makeCharacter(
  8968. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8969. {
  8970. front: {
  8971. height: math.unit(6, "feet"),
  8972. weight: math.unit(150, "lb"),
  8973. name: "Front",
  8974. image: {
  8975. source: "./media/characters/goddess-elizabeth/front.svg",
  8976. extra: 1800 / 1525,
  8977. bottom: 0.005
  8978. }
  8979. },
  8980. foot: {
  8981. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8982. name: "Foot",
  8983. image: {
  8984. source: "./media/characters/goddess-elizabeth/foot.svg"
  8985. }
  8986. },
  8987. mouth: {
  8988. height: math.unit(6, "feet"),
  8989. name: "Mouth",
  8990. image: {
  8991. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8992. }
  8993. },
  8994. },
  8995. [
  8996. {
  8997. name: "Micro",
  8998. height: math.unit(12, "feet")
  8999. },
  9000. {
  9001. name: "Normal",
  9002. height: math.unit(80, "miles"),
  9003. default: true
  9004. },
  9005. {
  9006. name: "Macro",
  9007. height: math.unit(15000, "parsecs")
  9008. },
  9009. ]
  9010. ))
  9011. characterMakers.push(() => makeCharacter(
  9012. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9013. {
  9014. front: {
  9015. height: math.unit(5 + 9 / 12, "feet"),
  9016. weight: math.unit(144, "lb"),
  9017. name: "Front",
  9018. image: {
  9019. source: "./media/characters/kara/front.svg"
  9020. }
  9021. },
  9022. feet: {
  9023. height: math.unit(6 / 6.765, "feet"),
  9024. name: "Kara's Feet",
  9025. rename: true,
  9026. image: {
  9027. source: "./media/characters/kara/feet.svg"
  9028. }
  9029. },
  9030. },
  9031. [
  9032. {
  9033. name: "Normal",
  9034. height: math.unit(5 + 9 / 12, "feet")
  9035. },
  9036. {
  9037. name: "Macro",
  9038. height: math.unit(174, "feet"),
  9039. default: true
  9040. },
  9041. ]
  9042. ))
  9043. characterMakers.push(() => makeCharacter(
  9044. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9045. {
  9046. front: {
  9047. height: math.unit(18, "feet"),
  9048. weight: math.unit(4050, "lb"),
  9049. name: "Front",
  9050. image: {
  9051. source: "./media/characters/tyrone/front.svg",
  9052. extra: 2405 / 2270,
  9053. bottom: 182 / 2587
  9054. }
  9055. },
  9056. },
  9057. [
  9058. {
  9059. name: "Normal",
  9060. height: math.unit(18, "feet"),
  9061. default: true
  9062. },
  9063. {
  9064. name: "Macro",
  9065. height: math.unit(300, "feet")
  9066. },
  9067. {
  9068. name: "Megamacro",
  9069. height: math.unit(15, "km")
  9070. },
  9071. {
  9072. name: "Gigamacro",
  9073. height: math.unit(500, "km")
  9074. },
  9075. {
  9076. name: "Teramacro",
  9077. height: math.unit(0.5, "gigameters")
  9078. },
  9079. {
  9080. name: "Omnimacro",
  9081. height: math.unit(1e252, "yottauniverse")
  9082. },
  9083. ]
  9084. ))
  9085. characterMakers.push(() => makeCharacter(
  9086. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9087. {
  9088. front: {
  9089. height: math.unit(7 + 8 / 12, "feet"),
  9090. weight: math.unit(120, "lb"),
  9091. name: "Front",
  9092. image: {
  9093. source: "./media/characters/danny/front.svg",
  9094. extra: 1490 / 1350
  9095. }
  9096. },
  9097. back: {
  9098. height: math.unit(7 + 8 / 12, "feet"),
  9099. weight: math.unit(120, "lb"),
  9100. name: "Back",
  9101. image: {
  9102. source: "./media/characters/danny/back.svg",
  9103. extra: 1490 / 1350
  9104. }
  9105. },
  9106. },
  9107. [
  9108. {
  9109. name: "Normal",
  9110. height: math.unit(7 + 8 / 12, "feet"),
  9111. default: true
  9112. },
  9113. ]
  9114. ))
  9115. characterMakers.push(() => makeCharacter(
  9116. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9117. {
  9118. front: {
  9119. height: math.unit(3.5, "inches"),
  9120. weight: math.unit(19, "grams"),
  9121. name: "Front",
  9122. image: {
  9123. source: "./media/characters/mallow/front.svg",
  9124. extra: 471 / 431
  9125. }
  9126. },
  9127. back: {
  9128. height: math.unit(3.5, "inches"),
  9129. weight: math.unit(19, "grams"),
  9130. name: "Back",
  9131. image: {
  9132. source: "./media/characters/mallow/back.svg",
  9133. extra: 471 / 431
  9134. }
  9135. },
  9136. },
  9137. [
  9138. {
  9139. name: "Normal",
  9140. height: math.unit(3.5, "inches"),
  9141. default: true
  9142. },
  9143. ]
  9144. ))
  9145. characterMakers.push(() => makeCharacter(
  9146. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9147. {
  9148. front: {
  9149. height: math.unit(9, "feet"),
  9150. weight: math.unit(230, "kg"),
  9151. name: "Front",
  9152. image: {
  9153. source: "./media/characters/starry-aqua/front.svg"
  9154. }
  9155. },
  9156. back: {
  9157. height: math.unit(9, "feet"),
  9158. weight: math.unit(230, "kg"),
  9159. name: "Back",
  9160. image: {
  9161. source: "./media/characters/starry-aqua/back.svg"
  9162. }
  9163. },
  9164. hand: {
  9165. height: math.unit(9 * 0.1168, "feet"),
  9166. name: "Hand",
  9167. image: {
  9168. source: "./media/characters/starry-aqua/hand.svg"
  9169. }
  9170. },
  9171. foot: {
  9172. height: math.unit(9 * 0.18, "feet"),
  9173. name: "Foot",
  9174. image: {
  9175. source: "./media/characters/starry-aqua/foot.svg"
  9176. }
  9177. }
  9178. },
  9179. [
  9180. {
  9181. name: "Micro",
  9182. height: math.unit(3, "inches")
  9183. },
  9184. {
  9185. name: "Normal",
  9186. height: math.unit(9, "feet")
  9187. },
  9188. {
  9189. name: "Macro",
  9190. height: math.unit(300, "feet"),
  9191. default: true
  9192. },
  9193. {
  9194. name: "Megamacro",
  9195. height: math.unit(3200, "feet")
  9196. }
  9197. ]
  9198. ))
  9199. characterMakers.push(() => makeCharacter(
  9200. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9201. {
  9202. front: {
  9203. height: math.unit(15, "feet"),
  9204. weight: math.unit(5026, "lb"),
  9205. name: "Front",
  9206. image: {
  9207. source: "./media/characters/luka-towers/front.svg",
  9208. extra: 1269/1133,
  9209. bottom: 51/1320
  9210. }
  9211. },
  9212. },
  9213. [
  9214. {
  9215. name: "Normal",
  9216. height: math.unit(15, "feet"),
  9217. default: true
  9218. },
  9219. {
  9220. name: "Minimacro",
  9221. height: math.unit(25, "feet")
  9222. },
  9223. {
  9224. name: "Macro",
  9225. height: math.unit(320, "feet")
  9226. },
  9227. {
  9228. name: "Megamacro",
  9229. height: math.unit(35000, "feet")
  9230. },
  9231. {
  9232. name: "Gigamacro",
  9233. height: math.unit(4000, "miles")
  9234. },
  9235. {
  9236. name: "Teramacro",
  9237. height: math.unit(15000, "miles")
  9238. },
  9239. ]
  9240. ))
  9241. characterMakers.push(() => makeCharacter(
  9242. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9243. {
  9244. front: {
  9245. height: math.unit(6, "feet"),
  9246. weight: math.unit(150, "lb"),
  9247. name: "Front",
  9248. image: {
  9249. source: "./media/characters/natalie-nightring/front.svg",
  9250. extra: 1,
  9251. bottom: 0.06
  9252. }
  9253. },
  9254. },
  9255. [
  9256. {
  9257. name: "Uh Oh",
  9258. height: math.unit(0.1, "mm")
  9259. },
  9260. {
  9261. name: "Small",
  9262. height: math.unit(3, "inches")
  9263. },
  9264. {
  9265. name: "Human Scale",
  9266. height: math.unit(6, "feet")
  9267. },
  9268. {
  9269. name: "Librarian",
  9270. height: math.unit(50, "feet"),
  9271. default: true
  9272. },
  9273. {
  9274. name: "Immense",
  9275. height: math.unit(200, "miles")
  9276. },
  9277. ]
  9278. ))
  9279. characterMakers.push(() => makeCharacter(
  9280. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9281. {
  9282. front: {
  9283. height: math.unit(6, "feet"),
  9284. weight: math.unit(180, "lbs"),
  9285. name: "Front",
  9286. image: {
  9287. source: "./media/characters/danni-rosie/front.svg",
  9288. extra: 1260 / 1128,
  9289. bottom: 0.022
  9290. }
  9291. },
  9292. },
  9293. [
  9294. {
  9295. name: "Micro",
  9296. height: math.unit(2, "inches"),
  9297. default: true
  9298. },
  9299. ]
  9300. ))
  9301. characterMakers.push(() => makeCharacter(
  9302. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9303. {
  9304. front: {
  9305. height: math.unit(5 + 9 / 12, "feet"),
  9306. weight: math.unit(220, "lb"),
  9307. name: "Front",
  9308. image: {
  9309. source: "./media/characters/samantha-kruse/front.svg",
  9310. extra: (985 / 935),
  9311. bottom: 0.03
  9312. }
  9313. },
  9314. frontUndressed: {
  9315. height: math.unit(5 + 9 / 12, "feet"),
  9316. weight: math.unit(220, "lb"),
  9317. name: "Front (Undressed)",
  9318. image: {
  9319. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9320. extra: (973 / 923),
  9321. bottom: 0.025
  9322. }
  9323. },
  9324. fat: {
  9325. height: math.unit(5 + 9 / 12, "feet"),
  9326. weight: math.unit(900, "lb"),
  9327. name: "Front (Fat)",
  9328. image: {
  9329. source: "./media/characters/samantha-kruse/fat.svg",
  9330. extra: 2688 / 2561
  9331. }
  9332. },
  9333. },
  9334. [
  9335. {
  9336. name: "Normal",
  9337. height: math.unit(5 + 9 / 12, "feet"),
  9338. default: true
  9339. }
  9340. ]
  9341. ))
  9342. characterMakers.push(() => makeCharacter(
  9343. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9344. {
  9345. back: {
  9346. height: math.unit(5 + 4 / 12, "feet"),
  9347. weight: math.unit(4963, "lb"),
  9348. name: "Back",
  9349. image: {
  9350. source: "./media/characters/amelia-rosie/back.svg",
  9351. extra: 1113 / 963,
  9352. bottom: 0.01
  9353. }
  9354. },
  9355. },
  9356. [
  9357. {
  9358. name: "Level 0",
  9359. height: math.unit(5 + 4 / 12, "feet")
  9360. },
  9361. {
  9362. name: "Level 1",
  9363. height: math.unit(164597, "feet"),
  9364. default: true
  9365. },
  9366. {
  9367. name: "Level 2",
  9368. height: math.unit(956243, "miles")
  9369. },
  9370. {
  9371. name: "Level 3",
  9372. height: math.unit(29421709423, "miles")
  9373. },
  9374. {
  9375. name: "Level 4",
  9376. height: math.unit(154, "lightyears")
  9377. },
  9378. {
  9379. name: "Level 5",
  9380. height: math.unit(4738272, "lightyears")
  9381. },
  9382. {
  9383. name: "Level 6",
  9384. height: math.unit(145787152896, "lightyears")
  9385. },
  9386. ]
  9387. ))
  9388. characterMakers.push(() => makeCharacter(
  9389. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9390. {
  9391. front: {
  9392. height: math.unit(5 + 11 / 12, "feet"),
  9393. weight: math.unit(65, "kg"),
  9394. name: "Front",
  9395. image: {
  9396. source: "./media/characters/rook-kitara/front.svg",
  9397. extra: 1347 / 1274,
  9398. bottom: 0.005
  9399. }
  9400. },
  9401. },
  9402. [
  9403. {
  9404. name: "Totally Unfair",
  9405. height: math.unit(1.8, "mm")
  9406. },
  9407. {
  9408. name: "Lap Rookie",
  9409. height: math.unit(1.4, "feet")
  9410. },
  9411. {
  9412. name: "Normal",
  9413. height: math.unit(5 + 11 / 12, "feet"),
  9414. default: true
  9415. },
  9416. {
  9417. name: "How Did This Happen",
  9418. height: math.unit(80, "miles")
  9419. }
  9420. ]
  9421. ))
  9422. characterMakers.push(() => makeCharacter(
  9423. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9424. {
  9425. front: {
  9426. height: math.unit(7, "feet"),
  9427. weight: math.unit(300, "lb"),
  9428. name: "Front",
  9429. image: {
  9430. source: "./media/characters/pisces/front.svg",
  9431. extra: 2255 / 2115,
  9432. bottom: 0.03
  9433. }
  9434. },
  9435. back: {
  9436. height: math.unit(7, "feet"),
  9437. weight: math.unit(300, "lb"),
  9438. name: "Back",
  9439. image: {
  9440. source: "./media/characters/pisces/back.svg",
  9441. extra: 2146 / 2055,
  9442. bottom: 0.04
  9443. }
  9444. },
  9445. },
  9446. [
  9447. {
  9448. name: "Normal",
  9449. height: math.unit(7, "feet"),
  9450. default: true
  9451. },
  9452. {
  9453. name: "Swimming Pool",
  9454. height: math.unit(12.2, "meters")
  9455. },
  9456. {
  9457. name: "Olympic Swimming Pool",
  9458. height: math.unit(56.3, "meters")
  9459. },
  9460. {
  9461. name: "Lake Superior",
  9462. height: math.unit(93900, "meters")
  9463. },
  9464. {
  9465. name: "Mediterranean Sea",
  9466. height: math.unit(644457, "meters")
  9467. },
  9468. {
  9469. name: "World's Oceans",
  9470. height: math.unit(4567491, "meters")
  9471. },
  9472. ]
  9473. ))
  9474. characterMakers.push(() => makeCharacter(
  9475. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9476. {
  9477. front: {
  9478. height: math.unit(2.3, "meters"),
  9479. weight: math.unit(120, "kg"),
  9480. name: "Front",
  9481. image: {
  9482. source: "./media/characters/zelas/front.svg"
  9483. }
  9484. },
  9485. side: {
  9486. height: math.unit(2.3, "meters"),
  9487. weight: math.unit(120, "kg"),
  9488. name: "Side",
  9489. image: {
  9490. source: "./media/characters/zelas/side.svg"
  9491. }
  9492. },
  9493. back: {
  9494. height: math.unit(2.3, "meters"),
  9495. weight: math.unit(120, "kg"),
  9496. name: "Back",
  9497. image: {
  9498. source: "./media/characters/zelas/back.svg"
  9499. }
  9500. },
  9501. foot: {
  9502. height: math.unit(1.116, "feet"),
  9503. name: "Foot",
  9504. image: {
  9505. source: "./media/characters/zelas/foot.svg"
  9506. }
  9507. },
  9508. },
  9509. [
  9510. {
  9511. name: "Normal",
  9512. height: math.unit(2.3, "meters")
  9513. },
  9514. {
  9515. name: "Macro",
  9516. height: math.unit(30, "meters"),
  9517. default: true
  9518. },
  9519. ]
  9520. ))
  9521. characterMakers.push(() => makeCharacter(
  9522. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9523. {
  9524. front: {
  9525. height: math.unit(1, "inch"),
  9526. weight: math.unit(0.21, "grams"),
  9527. name: "Front",
  9528. image: {
  9529. source: "./media/characters/talbot/front.svg",
  9530. extra: 594 / 544
  9531. }
  9532. },
  9533. },
  9534. [
  9535. {
  9536. name: "Micro",
  9537. height: math.unit(1, "inch"),
  9538. default: true
  9539. },
  9540. ]
  9541. ))
  9542. characterMakers.push(() => makeCharacter(
  9543. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9544. {
  9545. front: {
  9546. height: math.unit(3 + 3 / 12, "feet"),
  9547. weight: math.unit(51.8, "lb"),
  9548. name: "Front",
  9549. image: {
  9550. source: "./media/characters/fliss/front.svg",
  9551. extra: 840 / 640
  9552. }
  9553. },
  9554. },
  9555. [
  9556. {
  9557. name: "Teeny Tiny",
  9558. height: math.unit(1, "mm")
  9559. },
  9560. {
  9561. name: "Small",
  9562. height: math.unit(1, "inch"),
  9563. default: true
  9564. },
  9565. {
  9566. name: "Standard Sylveon",
  9567. height: math.unit(3 + 3 / 12, "feet")
  9568. },
  9569. {
  9570. name: "Large Nuisance",
  9571. height: math.unit(33, "feet")
  9572. },
  9573. {
  9574. name: "City Filler",
  9575. height: math.unit(3000, "feet")
  9576. },
  9577. {
  9578. name: "New Horizon",
  9579. height: math.unit(6000, "miles")
  9580. },
  9581. ]
  9582. ))
  9583. characterMakers.push(() => makeCharacter(
  9584. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9585. {
  9586. front: {
  9587. height: math.unit(5, "cm"),
  9588. weight: math.unit(1.94, "g"),
  9589. name: "Front",
  9590. image: {
  9591. source: "./media/characters/fleta/front.svg",
  9592. extra: 835 / 803
  9593. }
  9594. },
  9595. back: {
  9596. height: math.unit(5, "cm"),
  9597. weight: math.unit(1.94, "g"),
  9598. name: "Back",
  9599. image: {
  9600. source: "./media/characters/fleta/back.svg",
  9601. extra: 835 / 803
  9602. }
  9603. },
  9604. },
  9605. [
  9606. {
  9607. name: "Micro",
  9608. height: math.unit(5, "cm"),
  9609. default: true
  9610. },
  9611. ]
  9612. ))
  9613. characterMakers.push(() => makeCharacter(
  9614. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9615. {
  9616. front: {
  9617. height: math.unit(6, "feet"),
  9618. weight: math.unit(225, "lb"),
  9619. name: "Front",
  9620. image: {
  9621. source: "./media/characters/dominic/front.svg",
  9622. extra: 1770 / 1620,
  9623. bottom: 0.025
  9624. }
  9625. },
  9626. back: {
  9627. height: math.unit(6, "feet"),
  9628. weight: math.unit(225, "lb"),
  9629. name: "Back",
  9630. image: {
  9631. source: "./media/characters/dominic/back.svg",
  9632. extra: 1745 / 1620,
  9633. bottom: 0.065
  9634. }
  9635. },
  9636. },
  9637. [
  9638. {
  9639. name: "Nano",
  9640. height: math.unit(0.1, "mm")
  9641. },
  9642. {
  9643. name: "Micro-",
  9644. height: math.unit(1, "mm")
  9645. },
  9646. {
  9647. name: "Micro",
  9648. height: math.unit(4, "inches")
  9649. },
  9650. {
  9651. name: "Normal",
  9652. height: math.unit(6 + 4 / 12, "feet"),
  9653. default: true
  9654. },
  9655. {
  9656. name: "Macro",
  9657. height: math.unit(115, "feet")
  9658. },
  9659. {
  9660. name: "Macro+",
  9661. height: math.unit(955, "feet")
  9662. },
  9663. {
  9664. name: "Megamacro",
  9665. height: math.unit(8990, "feet")
  9666. },
  9667. {
  9668. name: "Gigmacro",
  9669. height: math.unit(9310, "miles")
  9670. },
  9671. {
  9672. name: "Teramacro",
  9673. height: math.unit(1567005010, "miles")
  9674. },
  9675. {
  9676. name: "Examacro",
  9677. height: math.unit(1425, "parsecs")
  9678. },
  9679. ]
  9680. ))
  9681. characterMakers.push(() => makeCharacter(
  9682. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9683. {
  9684. front: {
  9685. height: math.unit(400, "feet"),
  9686. weight: math.unit(44444444, "lb"),
  9687. name: "Front",
  9688. image: {
  9689. source: "./media/characters/major-colonel/front.svg"
  9690. }
  9691. },
  9692. back: {
  9693. height: math.unit(400, "feet"),
  9694. weight: math.unit(44444444, "lb"),
  9695. name: "Back",
  9696. image: {
  9697. source: "./media/characters/major-colonel/back.svg"
  9698. }
  9699. },
  9700. },
  9701. [
  9702. {
  9703. name: "Macro",
  9704. height: math.unit(400, "feet"),
  9705. default: true
  9706. },
  9707. ]
  9708. ))
  9709. characterMakers.push(() => makeCharacter(
  9710. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9711. {
  9712. catFront: {
  9713. height: math.unit(6, "feet"),
  9714. weight: math.unit(120, "lb"),
  9715. name: "Front (Cat Side)",
  9716. image: {
  9717. source: "./media/characters/axel-lycan/cat-front.svg",
  9718. extra: 430 / 402,
  9719. bottom: 43 / 472.35
  9720. }
  9721. },
  9722. catBack: {
  9723. height: math.unit(6, "feet"),
  9724. weight: math.unit(120, "lb"),
  9725. name: "Back (Cat Side)",
  9726. image: {
  9727. source: "./media/characters/axel-lycan/cat-back.svg",
  9728. extra: 447 / 419,
  9729. bottom: 23.3 / 469
  9730. }
  9731. },
  9732. wolfFront: {
  9733. height: math.unit(6, "feet"),
  9734. weight: math.unit(120, "lb"),
  9735. name: "Front (Wolf Side)",
  9736. image: {
  9737. source: "./media/characters/axel-lycan/wolf-front.svg",
  9738. extra: 485 / 456,
  9739. bottom: 19 / 504
  9740. }
  9741. },
  9742. wolfBack: {
  9743. height: math.unit(6, "feet"),
  9744. weight: math.unit(120, "lb"),
  9745. name: "Back (Wolf Side)",
  9746. image: {
  9747. source: "./media/characters/axel-lycan/wolf-back.svg",
  9748. extra: 475 / 438,
  9749. bottom: 39.2 / 514
  9750. }
  9751. },
  9752. },
  9753. [
  9754. {
  9755. name: "Macro",
  9756. height: math.unit(1, "km"),
  9757. default: true
  9758. },
  9759. ]
  9760. ))
  9761. characterMakers.push(() => makeCharacter(
  9762. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9763. {
  9764. front: {
  9765. height: math.unit(5 + 9 / 12, "feet"),
  9766. weight: math.unit(175, "lb"),
  9767. name: "Front",
  9768. image: {
  9769. source: "./media/characters/vanrel-hyena/front.svg",
  9770. extra: 1086 / 1010,
  9771. bottom: 0.04
  9772. }
  9773. },
  9774. },
  9775. [
  9776. {
  9777. name: "Normal",
  9778. height: math.unit(5 + 9 / 12, "feet"),
  9779. default: true
  9780. },
  9781. ]
  9782. ))
  9783. characterMakers.push(() => makeCharacter(
  9784. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9785. {
  9786. front: {
  9787. height: math.unit(6, "feet"),
  9788. weight: math.unit(103, "lb"),
  9789. name: "Front",
  9790. image: {
  9791. source: "./media/characters/abbott-absol/front.svg",
  9792. extra: 2010 / 1842
  9793. }
  9794. },
  9795. },
  9796. [
  9797. {
  9798. name: "Megamicro",
  9799. height: math.unit(0.1, "mm")
  9800. },
  9801. {
  9802. name: "Micro",
  9803. height: math.unit(1, "inch")
  9804. },
  9805. {
  9806. name: "Normal",
  9807. height: math.unit(6, "feet"),
  9808. default: true
  9809. },
  9810. ]
  9811. ))
  9812. characterMakers.push(() => makeCharacter(
  9813. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9814. {
  9815. front: {
  9816. height: math.unit(6, "feet"),
  9817. weight: math.unit(264, "lb"),
  9818. name: "Front",
  9819. image: {
  9820. source: "./media/characters/hector/front.svg",
  9821. extra: 2280 / 2130,
  9822. bottom: 0.07
  9823. }
  9824. },
  9825. },
  9826. [
  9827. {
  9828. name: "Normal",
  9829. height: math.unit(12.25, "foot"),
  9830. default: true
  9831. },
  9832. {
  9833. name: "Macro",
  9834. height: math.unit(160, "feet")
  9835. },
  9836. ]
  9837. ))
  9838. characterMakers.push(() => makeCharacter(
  9839. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9840. {
  9841. front: {
  9842. height: math.unit(6, "feet"),
  9843. weight: math.unit(150, "lb"),
  9844. name: "Front",
  9845. image: {
  9846. source: "./media/characters/sal/front.svg",
  9847. extra: 1846 / 1699,
  9848. bottom: 0.04
  9849. }
  9850. },
  9851. },
  9852. [
  9853. {
  9854. name: "Megamacro",
  9855. height: math.unit(10, "miles"),
  9856. default: true
  9857. },
  9858. ]
  9859. ))
  9860. characterMakers.push(() => makeCharacter(
  9861. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9862. {
  9863. front: {
  9864. height: math.unit(3, "meters"),
  9865. weight: math.unit(450, "kg"),
  9866. name: "front",
  9867. image: {
  9868. source: "./media/characters/ranger/front.svg",
  9869. extra: 2401 / 2243,
  9870. bottom: 0.05
  9871. }
  9872. },
  9873. },
  9874. [
  9875. {
  9876. name: "Normal",
  9877. height: math.unit(3, "meters"),
  9878. default: true
  9879. },
  9880. ]
  9881. ))
  9882. characterMakers.push(() => makeCharacter(
  9883. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9884. {
  9885. front: {
  9886. height: math.unit(14, "feet"),
  9887. weight: math.unit(800, "kg"),
  9888. name: "Front",
  9889. image: {
  9890. source: "./media/characters/theresa/front.svg",
  9891. extra: 3575 / 3346,
  9892. bottom: 0.03
  9893. }
  9894. },
  9895. },
  9896. [
  9897. {
  9898. name: "Normal",
  9899. height: math.unit(14, "feet"),
  9900. default: true
  9901. },
  9902. ]
  9903. ))
  9904. characterMakers.push(() => makeCharacter(
  9905. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9906. {
  9907. front: {
  9908. height: math.unit(6, "feet"),
  9909. weight: math.unit(3, "kg"),
  9910. name: "Front",
  9911. image: {
  9912. source: "./media/characters/ine/front.svg",
  9913. extra: 678 / 539,
  9914. bottom: 0.023
  9915. }
  9916. },
  9917. },
  9918. [
  9919. {
  9920. name: "Normal",
  9921. height: math.unit(2.265, "feet"),
  9922. default: true
  9923. },
  9924. ]
  9925. ))
  9926. characterMakers.push(() => makeCharacter(
  9927. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9928. {
  9929. front: {
  9930. height: math.unit(5, "feet"),
  9931. weight: math.unit(30, "kg"),
  9932. name: "Front",
  9933. image: {
  9934. source: "./media/characters/vial/front.svg",
  9935. extra: 1365 / 1277,
  9936. bottom: 0.04
  9937. }
  9938. },
  9939. },
  9940. [
  9941. {
  9942. name: "Normal",
  9943. height: math.unit(5, "feet"),
  9944. default: true
  9945. },
  9946. ]
  9947. ))
  9948. characterMakers.push(() => makeCharacter(
  9949. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9950. {
  9951. side: {
  9952. height: math.unit(3.4, "meters"),
  9953. weight: math.unit(1000, "lb"),
  9954. name: "Side",
  9955. image: {
  9956. source: "./media/characters/rovoska/side.svg",
  9957. extra: 4403 / 1515
  9958. }
  9959. },
  9960. },
  9961. [
  9962. {
  9963. name: "Normal",
  9964. height: math.unit(3.4, "meters"),
  9965. default: true
  9966. },
  9967. ]
  9968. ))
  9969. characterMakers.push(() => makeCharacter(
  9970. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9971. {
  9972. front: {
  9973. height: math.unit(8, "feet"),
  9974. weight: math.unit(315, "lb"),
  9975. name: "Front",
  9976. image: {
  9977. source: "./media/characters/gunner-rotthbauer/front.svg"
  9978. }
  9979. },
  9980. back: {
  9981. height: math.unit(8, "feet"),
  9982. weight: math.unit(315, "lb"),
  9983. name: "Back",
  9984. image: {
  9985. source: "./media/characters/gunner-rotthbauer/back.svg"
  9986. }
  9987. },
  9988. },
  9989. [
  9990. {
  9991. name: "Micro",
  9992. height: math.unit(3.5, "inches")
  9993. },
  9994. {
  9995. name: "Normal",
  9996. height: math.unit(8, "feet"),
  9997. default: true
  9998. },
  9999. {
  10000. name: "Macro",
  10001. height: math.unit(250, "feet")
  10002. },
  10003. {
  10004. name: "Megamacro",
  10005. height: math.unit(1, "AU")
  10006. },
  10007. ]
  10008. ))
  10009. characterMakers.push(() => makeCharacter(
  10010. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10011. {
  10012. front: {
  10013. height: math.unit(5 + 5 / 12, "feet"),
  10014. weight: math.unit(140, "lb"),
  10015. name: "Front",
  10016. image: {
  10017. source: "./media/characters/allatia/front.svg",
  10018. extra: 1227 / 1180,
  10019. bottom: 0.027
  10020. }
  10021. },
  10022. },
  10023. [
  10024. {
  10025. name: "Normal",
  10026. height: math.unit(5 + 5 / 12, "feet")
  10027. },
  10028. {
  10029. name: "Macro",
  10030. height: math.unit(250, "feet"),
  10031. default: true
  10032. },
  10033. {
  10034. name: "Megamacro",
  10035. height: math.unit(8, "miles")
  10036. }
  10037. ]
  10038. ))
  10039. characterMakers.push(() => makeCharacter(
  10040. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10041. {
  10042. front: {
  10043. height: math.unit(6, "feet"),
  10044. weight: math.unit(120, "lb"),
  10045. name: "Front",
  10046. image: {
  10047. source: "./media/characters/tene/front.svg",
  10048. extra: 814/750,
  10049. bottom: 36/850
  10050. }
  10051. },
  10052. stomping: {
  10053. height: math.unit(2.025, "meters"),
  10054. weight: math.unit(120, "lb"),
  10055. name: "Stomping",
  10056. image: {
  10057. source: "./media/characters/tene/stomping.svg",
  10058. extra: 885/821,
  10059. bottom: 15/900
  10060. }
  10061. },
  10062. sitting: {
  10063. height: math.unit(1, "meter"),
  10064. weight: math.unit(120, "lb"),
  10065. name: "Sitting",
  10066. image: {
  10067. source: "./media/characters/tene/sitting.svg",
  10068. extra: 396/366,
  10069. bottom: 79/475
  10070. }
  10071. },
  10072. smiling: {
  10073. height: math.unit(1.2, "feet"),
  10074. name: "Smiling",
  10075. image: {
  10076. source: "./media/characters/tene/smiling.svg",
  10077. extra: 1364/1071,
  10078. bottom: 0/1364
  10079. }
  10080. },
  10081. smug: {
  10082. height: math.unit(1.3, "feet"),
  10083. name: "Smug",
  10084. image: {
  10085. source: "./media/characters/tene/smug.svg",
  10086. extra: 1323/1082,
  10087. bottom: 0/1323
  10088. }
  10089. },
  10090. feral: {
  10091. height: math.unit(3.9, "feet"),
  10092. weight: math.unit(250, "lb"),
  10093. name: "Feral",
  10094. image: {
  10095. source: "./media/characters/tene/feral.svg",
  10096. extra: 717 / 458,
  10097. bottom: 0.179
  10098. }
  10099. },
  10100. },
  10101. [
  10102. {
  10103. name: "Normal",
  10104. height: math.unit(6, "feet")
  10105. },
  10106. {
  10107. name: "Macro",
  10108. height: math.unit(300, "feet"),
  10109. default: true
  10110. },
  10111. {
  10112. name: "Megamacro",
  10113. height: math.unit(5, "miles")
  10114. },
  10115. ]
  10116. ))
  10117. characterMakers.push(() => makeCharacter(
  10118. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10119. {
  10120. side: {
  10121. height: math.unit(6, "feet"),
  10122. name: "Side",
  10123. image: {
  10124. source: "./media/characters/evander/side.svg",
  10125. extra: 877 / 477
  10126. }
  10127. },
  10128. },
  10129. [
  10130. {
  10131. name: "Normal",
  10132. height: math.unit(0.83, "meters"),
  10133. default: true
  10134. },
  10135. ]
  10136. ))
  10137. characterMakers.push(() => makeCharacter(
  10138. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10139. {
  10140. front: {
  10141. height: math.unit(12, "feet"),
  10142. weight: math.unit(1000, "lb"),
  10143. name: "Front",
  10144. image: {
  10145. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10146. extra: 1762 / 1611
  10147. }
  10148. },
  10149. back: {
  10150. height: math.unit(12, "feet"),
  10151. weight: math.unit(1000, "lb"),
  10152. name: "Back",
  10153. image: {
  10154. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10155. extra: 1762 / 1611
  10156. }
  10157. },
  10158. },
  10159. [
  10160. {
  10161. name: "Normal",
  10162. height: math.unit(12, "feet"),
  10163. default: true
  10164. },
  10165. {
  10166. name: "Kaiju",
  10167. height: math.unit(150, "feet")
  10168. },
  10169. ]
  10170. ))
  10171. characterMakers.push(() => makeCharacter(
  10172. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10173. {
  10174. front: {
  10175. height: math.unit(6, "feet"),
  10176. weight: math.unit(150, "lb"),
  10177. name: "Front",
  10178. image: {
  10179. source: "./media/characters/zero-alurus/front.svg"
  10180. }
  10181. },
  10182. back: {
  10183. height: math.unit(6, "feet"),
  10184. weight: math.unit(150, "lb"),
  10185. name: "Back",
  10186. image: {
  10187. source: "./media/characters/zero-alurus/back.svg"
  10188. }
  10189. },
  10190. },
  10191. [
  10192. {
  10193. name: "Normal",
  10194. height: math.unit(5 + 10 / 12, "feet")
  10195. },
  10196. {
  10197. name: "Macro",
  10198. height: math.unit(60, "feet"),
  10199. default: true
  10200. },
  10201. {
  10202. name: "Macro+",
  10203. height: math.unit(450, "feet")
  10204. },
  10205. ]
  10206. ))
  10207. characterMakers.push(() => makeCharacter(
  10208. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10209. {
  10210. front: {
  10211. height: math.unit(6, "feet"),
  10212. weight: math.unit(200, "lb"),
  10213. name: "Front",
  10214. image: {
  10215. source: "./media/characters/mega-shi/front.svg",
  10216. extra: 1279 / 1250,
  10217. bottom: 0.02
  10218. }
  10219. },
  10220. back: {
  10221. height: math.unit(6, "feet"),
  10222. weight: math.unit(200, "lb"),
  10223. name: "Back",
  10224. image: {
  10225. source: "./media/characters/mega-shi/back.svg",
  10226. extra: 1279 / 1250,
  10227. bottom: 0.02
  10228. }
  10229. },
  10230. },
  10231. [
  10232. {
  10233. name: "Micro",
  10234. height: math.unit(16 + 6 / 12, "feet")
  10235. },
  10236. {
  10237. name: "Third Dimension",
  10238. height: math.unit(40, "meters")
  10239. },
  10240. {
  10241. name: "Normal",
  10242. height: math.unit(660, "feet"),
  10243. default: true
  10244. },
  10245. {
  10246. name: "Megamacro",
  10247. height: math.unit(10, "miles")
  10248. },
  10249. {
  10250. name: "Planetary Launch",
  10251. height: math.unit(500, "miles")
  10252. },
  10253. {
  10254. name: "Interstellar",
  10255. height: math.unit(1e9, "miles")
  10256. },
  10257. {
  10258. name: "Leaving the Universe",
  10259. height: math.unit(1, "gigaparsec")
  10260. },
  10261. {
  10262. name: "Travelling Universes",
  10263. height: math.unit(30e15, "parsecs")
  10264. },
  10265. ]
  10266. ))
  10267. characterMakers.push(() => makeCharacter(
  10268. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10269. {
  10270. front: {
  10271. height: math.unit(5 + 4/12, "feet"),
  10272. weight: math.unit(120, "lb"),
  10273. name: "Front",
  10274. image: {
  10275. source: "./media/characters/odyssey/front.svg",
  10276. extra: 1747/1571,
  10277. bottom: 47/1794
  10278. }
  10279. },
  10280. side: {
  10281. height: math.unit(5.1, "feet"),
  10282. weight: math.unit(120, "lb"),
  10283. name: "Side",
  10284. image: {
  10285. source: "./media/characters/odyssey/side.svg",
  10286. extra: 1847/1619,
  10287. bottom: 47/1894
  10288. }
  10289. },
  10290. lounging: {
  10291. height: math.unit(1.464, "feet"),
  10292. weight: math.unit(120, "lb"),
  10293. name: "Lounging",
  10294. image: {
  10295. source: "./media/characters/odyssey/lounging.svg",
  10296. extra: 1235/837,
  10297. bottom: 551/1786
  10298. }
  10299. },
  10300. },
  10301. [
  10302. {
  10303. name: "Normal",
  10304. height: math.unit(5 + 4 / 12, "feet")
  10305. },
  10306. {
  10307. name: "Macro",
  10308. height: math.unit(1, "km")
  10309. },
  10310. {
  10311. name: "Megamacro",
  10312. height: math.unit(3000, "km")
  10313. },
  10314. {
  10315. name: "Gigamacro",
  10316. height: math.unit(1, "AU"),
  10317. default: true
  10318. },
  10319. {
  10320. name: "Omniversal",
  10321. height: math.unit(100e14, "lightyears")
  10322. },
  10323. ]
  10324. ))
  10325. characterMakers.push(() => makeCharacter(
  10326. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10327. {
  10328. front: {
  10329. height: math.unit(6, "feet"),
  10330. weight: math.unit(300, "lb"),
  10331. name: "Front",
  10332. image: {
  10333. source: "./media/characters/mekuto/front.svg",
  10334. extra: 921 / 832,
  10335. bottom: 0.03
  10336. }
  10337. },
  10338. hand: {
  10339. height: math.unit(6 / 10.24, "feet"),
  10340. name: "Hand",
  10341. image: {
  10342. source: "./media/characters/mekuto/hand.svg"
  10343. }
  10344. },
  10345. foot: {
  10346. height: math.unit(6 / 5.05, "feet"),
  10347. name: "Foot",
  10348. image: {
  10349. source: "./media/characters/mekuto/foot.svg"
  10350. }
  10351. },
  10352. },
  10353. [
  10354. {
  10355. name: "Minimicro",
  10356. height: math.unit(0.2, "inches")
  10357. },
  10358. {
  10359. name: "Micro",
  10360. height: math.unit(1.5, "inches")
  10361. },
  10362. {
  10363. name: "Normal",
  10364. height: math.unit(5 + 11 / 12, "feet"),
  10365. default: true
  10366. },
  10367. {
  10368. name: "Minimacro",
  10369. height: math.unit(17 + 9 / 12, "feet")
  10370. },
  10371. {
  10372. name: "Macro",
  10373. height: math.unit(177.5, "feet")
  10374. },
  10375. {
  10376. name: "Megamacro",
  10377. height: math.unit(152, "miles")
  10378. },
  10379. ]
  10380. ))
  10381. characterMakers.push(() => makeCharacter(
  10382. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10383. {
  10384. front: {
  10385. height: math.unit(6.5, "inches"),
  10386. weight: math.unit(13, "oz"),
  10387. name: "Front",
  10388. image: {
  10389. source: "./media/characters/dafydd-tomos/front.svg",
  10390. extra: 2990 / 2603,
  10391. bottom: 0.03
  10392. }
  10393. },
  10394. },
  10395. [
  10396. {
  10397. name: "Micro",
  10398. height: math.unit(6.5, "inches"),
  10399. default: true
  10400. },
  10401. ]
  10402. ))
  10403. characterMakers.push(() => makeCharacter(
  10404. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10405. {
  10406. front: {
  10407. height: math.unit(6, "feet"),
  10408. weight: math.unit(150, "lb"),
  10409. name: "Front",
  10410. image: {
  10411. source: "./media/characters/splinter/front.svg",
  10412. extra: 2990 / 2882,
  10413. bottom: 0.04
  10414. }
  10415. },
  10416. back: {
  10417. height: math.unit(6, "feet"),
  10418. weight: math.unit(150, "lb"),
  10419. name: "Back",
  10420. image: {
  10421. source: "./media/characters/splinter/back.svg",
  10422. extra: 2990 / 2882,
  10423. bottom: 0.04
  10424. }
  10425. },
  10426. },
  10427. [
  10428. {
  10429. name: "Normal",
  10430. height: math.unit(6, "feet")
  10431. },
  10432. {
  10433. name: "Macro",
  10434. height: math.unit(230, "meters"),
  10435. default: true
  10436. },
  10437. ]
  10438. ))
  10439. characterMakers.push(() => makeCharacter(
  10440. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10441. {
  10442. front: {
  10443. height: math.unit(4 + 10 / 12, "feet"),
  10444. weight: math.unit(480, "lb"),
  10445. name: "Front",
  10446. image: {
  10447. source: "./media/characters/snow-gabumon/front.svg",
  10448. extra: 1140 / 963,
  10449. bottom: 0.058
  10450. }
  10451. },
  10452. back: {
  10453. height: math.unit(4 + 10 / 12, "feet"),
  10454. weight: math.unit(480, "lb"),
  10455. name: "Back",
  10456. image: {
  10457. source: "./media/characters/snow-gabumon/back.svg",
  10458. extra: 1115 / 962,
  10459. bottom: 0.041
  10460. }
  10461. },
  10462. frontUndresed: {
  10463. height: math.unit(4 + 10 / 12, "feet"),
  10464. weight: math.unit(480, "lb"),
  10465. name: "Front (Undressed)",
  10466. image: {
  10467. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10468. extra: 1061 / 960,
  10469. bottom: 0.045
  10470. }
  10471. },
  10472. },
  10473. [
  10474. {
  10475. name: "Micro",
  10476. height: math.unit(1, "inch")
  10477. },
  10478. {
  10479. name: "Normal",
  10480. height: math.unit(4 + 10 / 12, "feet"),
  10481. default: true
  10482. },
  10483. {
  10484. name: "Macro",
  10485. height: math.unit(200, "feet")
  10486. },
  10487. {
  10488. name: "Megamacro",
  10489. height: math.unit(120, "miles")
  10490. },
  10491. {
  10492. name: "Gigamacro",
  10493. height: math.unit(9800, "miles")
  10494. },
  10495. ]
  10496. ))
  10497. characterMakers.push(() => makeCharacter(
  10498. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10499. {
  10500. front: {
  10501. height: math.unit(1.7, "meters"),
  10502. weight: math.unit(140, "lb"),
  10503. name: "Front",
  10504. image: {
  10505. source: "./media/characters/moody/front.svg",
  10506. extra: 3226 / 3007,
  10507. bottom: 0.087
  10508. }
  10509. },
  10510. },
  10511. [
  10512. {
  10513. name: "Micro",
  10514. height: math.unit(1, "mm")
  10515. },
  10516. {
  10517. name: "Normal",
  10518. height: math.unit(1.7, "meters"),
  10519. default: true
  10520. },
  10521. {
  10522. name: "Macro",
  10523. height: math.unit(80, "meters")
  10524. },
  10525. {
  10526. name: "Macro+",
  10527. height: math.unit(500, "meters")
  10528. },
  10529. ]
  10530. ))
  10531. characterMakers.push(() => makeCharacter(
  10532. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10533. {
  10534. front: {
  10535. height: math.unit(6, "feet"),
  10536. weight: math.unit(150, "lb"),
  10537. name: "Front",
  10538. image: {
  10539. source: "./media/characters/zyas/front.svg",
  10540. extra: 1180 / 1120,
  10541. bottom: 0.045
  10542. }
  10543. },
  10544. },
  10545. [
  10546. {
  10547. name: "Normal",
  10548. height: math.unit(10, "feet"),
  10549. default: true
  10550. },
  10551. {
  10552. name: "Macro",
  10553. height: math.unit(500, "feet")
  10554. },
  10555. {
  10556. name: "Megamacro",
  10557. height: math.unit(5, "miles")
  10558. },
  10559. {
  10560. name: "Teramacro",
  10561. height: math.unit(150000, "miles")
  10562. },
  10563. ]
  10564. ))
  10565. characterMakers.push(() => makeCharacter(
  10566. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10567. {
  10568. front: {
  10569. height: math.unit(6, "feet"),
  10570. weight: math.unit(150, "lb"),
  10571. name: "Front",
  10572. image: {
  10573. source: "./media/characters/cuon/front.svg",
  10574. extra: 1390 / 1320,
  10575. bottom: 0.008
  10576. }
  10577. },
  10578. },
  10579. [
  10580. {
  10581. name: "Micro",
  10582. height: math.unit(3, "inches")
  10583. },
  10584. {
  10585. name: "Normal",
  10586. height: math.unit(18 + 9 / 12, "feet"),
  10587. default: true
  10588. },
  10589. {
  10590. name: "Macro",
  10591. height: math.unit(360, "feet")
  10592. },
  10593. {
  10594. name: "Megamacro",
  10595. height: math.unit(360, "miles")
  10596. },
  10597. ]
  10598. ))
  10599. characterMakers.push(() => makeCharacter(
  10600. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10601. {
  10602. front: {
  10603. height: math.unit(2.4, "meters"),
  10604. weight: math.unit(70, "kg"),
  10605. name: "Front",
  10606. image: {
  10607. source: "./media/characters/nyanuxk/front.svg",
  10608. extra: 1172 / 1084,
  10609. bottom: 0.065
  10610. }
  10611. },
  10612. side: {
  10613. height: math.unit(2.4, "meters"),
  10614. weight: math.unit(70, "kg"),
  10615. name: "Side",
  10616. image: {
  10617. source: "./media/characters/nyanuxk/side.svg",
  10618. extra: 1190 / 1132,
  10619. bottom: 0.007
  10620. }
  10621. },
  10622. back: {
  10623. height: math.unit(2.4, "meters"),
  10624. weight: math.unit(70, "kg"),
  10625. name: "Back",
  10626. image: {
  10627. source: "./media/characters/nyanuxk/back.svg",
  10628. extra: 1200 / 1141,
  10629. bottom: 0.015
  10630. }
  10631. },
  10632. foot: {
  10633. height: math.unit(0.52, "meters"),
  10634. name: "Foot",
  10635. image: {
  10636. source: "./media/characters/nyanuxk/foot.svg"
  10637. }
  10638. },
  10639. },
  10640. [
  10641. {
  10642. name: "Micro",
  10643. height: math.unit(2, "cm")
  10644. },
  10645. {
  10646. name: "Normal",
  10647. height: math.unit(2.4, "meters"),
  10648. default: true
  10649. },
  10650. {
  10651. name: "Smaller Macro",
  10652. height: math.unit(120, "meters")
  10653. },
  10654. {
  10655. name: "Bigger Macro",
  10656. height: math.unit(1.2, "km")
  10657. },
  10658. {
  10659. name: "Megamacro",
  10660. height: math.unit(15, "kilometers")
  10661. },
  10662. {
  10663. name: "Gigamacro",
  10664. height: math.unit(2000, "km")
  10665. },
  10666. {
  10667. name: "Teramacro",
  10668. height: math.unit(500000, "km")
  10669. },
  10670. ]
  10671. ))
  10672. characterMakers.push(() => makeCharacter(
  10673. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10674. {
  10675. side: {
  10676. height: math.unit(6, "feet"),
  10677. name: "Side",
  10678. image: {
  10679. source: "./media/characters/ailbhe/side.svg",
  10680. extra: 757 / 464,
  10681. bottom: 0.041
  10682. }
  10683. },
  10684. },
  10685. [
  10686. {
  10687. name: "Normal",
  10688. height: math.unit(1.07, "meters"),
  10689. default: true
  10690. },
  10691. ]
  10692. ))
  10693. characterMakers.push(() => makeCharacter(
  10694. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10695. {
  10696. front: {
  10697. height: math.unit(6, "feet"),
  10698. weight: math.unit(120, "kg"),
  10699. name: "Front",
  10700. image: {
  10701. source: "./media/characters/zevulfius/front.svg",
  10702. extra: 965 / 903
  10703. }
  10704. },
  10705. side: {
  10706. height: math.unit(6, "feet"),
  10707. weight: math.unit(120, "kg"),
  10708. name: "Side",
  10709. image: {
  10710. source: "./media/characters/zevulfius/side.svg",
  10711. extra: 939 / 900
  10712. }
  10713. },
  10714. back: {
  10715. height: math.unit(6, "feet"),
  10716. weight: math.unit(120, "kg"),
  10717. name: "Back",
  10718. image: {
  10719. source: "./media/characters/zevulfius/back.svg",
  10720. extra: 918 / 854,
  10721. bottom: 0.005
  10722. }
  10723. },
  10724. foot: {
  10725. height: math.unit(6 / 3.72, "feet"),
  10726. name: "Foot",
  10727. image: {
  10728. source: "./media/characters/zevulfius/foot.svg"
  10729. }
  10730. },
  10731. },
  10732. [
  10733. {
  10734. name: "Macro",
  10735. height: math.unit(750, "meters")
  10736. },
  10737. {
  10738. name: "Megamacro",
  10739. height: math.unit(20, "km"),
  10740. default: true
  10741. },
  10742. {
  10743. name: "Gigamacro",
  10744. height: math.unit(2000, "km")
  10745. },
  10746. {
  10747. name: "Teramacro",
  10748. height: math.unit(250000, "km")
  10749. },
  10750. ]
  10751. ))
  10752. characterMakers.push(() => makeCharacter(
  10753. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10754. {
  10755. front: {
  10756. height: math.unit(100, "feet"),
  10757. weight: math.unit(350, "kg"),
  10758. name: "Front",
  10759. image: {
  10760. source: "./media/characters/rikes/front.svg",
  10761. extra: 1565 / 1483,
  10762. bottom: 0.017
  10763. }
  10764. },
  10765. },
  10766. [
  10767. {
  10768. name: "Macro",
  10769. height: math.unit(100, "feet"),
  10770. default: true
  10771. },
  10772. ]
  10773. ))
  10774. characterMakers.push(() => makeCharacter(
  10775. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10776. {
  10777. front: {
  10778. height: math.unit(8, "feet"),
  10779. weight: math.unit(356, "lb"),
  10780. name: "Front",
  10781. image: {
  10782. source: "./media/characters/adam-silver-mane/front.svg",
  10783. extra: 1036/937,
  10784. bottom: 63/1099
  10785. }
  10786. },
  10787. side: {
  10788. height: math.unit(8, "feet"),
  10789. weight: math.unit(356, "lb"),
  10790. name: "Side",
  10791. image: {
  10792. source: "./media/characters/adam-silver-mane/side.svg",
  10793. extra: 997/901,
  10794. bottom: 59/1056
  10795. }
  10796. },
  10797. frontNsfw: {
  10798. height: math.unit(8, "feet"),
  10799. weight: math.unit(356, "lb"),
  10800. name: "Front (NSFW)",
  10801. image: {
  10802. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10803. extra: 1036/937,
  10804. bottom: 63/1099
  10805. }
  10806. },
  10807. sideNsfw: {
  10808. height: math.unit(8, "feet"),
  10809. weight: math.unit(356, "lb"),
  10810. name: "Side (NSFW)",
  10811. image: {
  10812. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10813. extra: 997/901,
  10814. bottom: 59/1056
  10815. }
  10816. },
  10817. dick: {
  10818. height: math.unit(2.1, "feet"),
  10819. name: "Dick",
  10820. image: {
  10821. source: "./media/characters/adam-silver-mane/dick.svg"
  10822. }
  10823. },
  10824. taur: {
  10825. height: math.unit(16, "feet"),
  10826. weight: math.unit(1500, "kg"),
  10827. name: "Taur",
  10828. image: {
  10829. source: "./media/characters/adam-silver-mane/taur.svg",
  10830. extra: 1713 / 1571,
  10831. bottom: 0.01
  10832. }
  10833. },
  10834. },
  10835. [
  10836. {
  10837. name: "Normal",
  10838. height: math.unit(8, "feet")
  10839. },
  10840. {
  10841. name: "Minimacro",
  10842. height: math.unit(80, "feet")
  10843. },
  10844. {
  10845. name: "MDA",
  10846. height: math.unit(80, "meters")
  10847. },
  10848. {
  10849. name: "Macro",
  10850. height: math.unit(800, "feet"),
  10851. default: true
  10852. },
  10853. {
  10854. name: "Megamacro",
  10855. height: math.unit(8000, "feet")
  10856. },
  10857. {
  10858. name: "Gigamacro",
  10859. height: math.unit(800, "miles")
  10860. },
  10861. {
  10862. name: "Teramacro",
  10863. height: math.unit(80000, "miles")
  10864. },
  10865. {
  10866. name: "Celestial",
  10867. height: math.unit(8e6, "miles")
  10868. },
  10869. {
  10870. name: "Star Dragon",
  10871. height: math.unit(800000, "parsecs")
  10872. },
  10873. {
  10874. name: "Godly",
  10875. height: math.unit(800, "teraparsecs")
  10876. },
  10877. ]
  10878. ))
  10879. characterMakers.push(() => makeCharacter(
  10880. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10881. {
  10882. front: {
  10883. height: math.unit(6, "feet"),
  10884. weight: math.unit(150, "lb"),
  10885. name: "Front",
  10886. image: {
  10887. source: "./media/characters/ky'owin/front.svg",
  10888. extra: 3888 / 3068,
  10889. bottom: 0.015
  10890. }
  10891. },
  10892. },
  10893. [
  10894. {
  10895. name: "Normal",
  10896. height: math.unit(6 + 8 / 12, "feet")
  10897. },
  10898. {
  10899. name: "Large",
  10900. height: math.unit(68, "feet")
  10901. },
  10902. {
  10903. name: "Macro",
  10904. height: math.unit(132, "feet")
  10905. },
  10906. {
  10907. name: "Macro+",
  10908. height: math.unit(340, "feet")
  10909. },
  10910. {
  10911. name: "Macro++",
  10912. height: math.unit(680, "feet"),
  10913. default: true
  10914. },
  10915. {
  10916. name: "Megamacro",
  10917. height: math.unit(1, "mile")
  10918. },
  10919. {
  10920. name: "Megamacro+",
  10921. height: math.unit(10, "miles")
  10922. },
  10923. ]
  10924. ))
  10925. characterMakers.push(() => makeCharacter(
  10926. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10927. {
  10928. front: {
  10929. height: math.unit(4, "feet"),
  10930. weight: math.unit(50, "lb"),
  10931. name: "Front",
  10932. image: {
  10933. source: "./media/characters/mal/front.svg",
  10934. extra: 785 / 724,
  10935. bottom: 0.07
  10936. }
  10937. },
  10938. },
  10939. [
  10940. {
  10941. name: "Micro",
  10942. height: math.unit(4, "inches")
  10943. },
  10944. {
  10945. name: "Normal",
  10946. height: math.unit(4, "feet"),
  10947. default: true
  10948. },
  10949. {
  10950. name: "Macro",
  10951. height: math.unit(200, "feet")
  10952. },
  10953. ]
  10954. ))
  10955. characterMakers.push(() => makeCharacter(
  10956. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10957. {
  10958. front: {
  10959. height: math.unit(6, "feet"),
  10960. weight: math.unit(150, "lb"),
  10961. name: "Front",
  10962. image: {
  10963. source: "./media/characters/jordan-deware/front.svg",
  10964. extra: 1191 / 1012
  10965. }
  10966. },
  10967. },
  10968. [
  10969. {
  10970. name: "Nano",
  10971. height: math.unit(0.01, "mm")
  10972. },
  10973. {
  10974. name: "Minimicro",
  10975. height: math.unit(1, "mm")
  10976. },
  10977. {
  10978. name: "Micro",
  10979. height: math.unit(0.5, "inches")
  10980. },
  10981. {
  10982. name: "Normal",
  10983. height: math.unit(4, "feet"),
  10984. default: true
  10985. },
  10986. {
  10987. name: "Minimacro",
  10988. height: math.unit(40, "meters")
  10989. },
  10990. {
  10991. name: "Small Macro",
  10992. height: math.unit(400, "meters")
  10993. },
  10994. {
  10995. name: "Macro",
  10996. height: math.unit(4, "miles")
  10997. },
  10998. {
  10999. name: "Megamacro",
  11000. height: math.unit(40, "miles")
  11001. },
  11002. {
  11003. name: "Megamacro+",
  11004. height: math.unit(400, "miles")
  11005. },
  11006. {
  11007. name: "Gigamacro",
  11008. height: math.unit(400000, "miles")
  11009. },
  11010. ]
  11011. ))
  11012. characterMakers.push(() => makeCharacter(
  11013. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11014. {
  11015. side: {
  11016. height: math.unit(6, "feet"),
  11017. weight: math.unit(150, "lb"),
  11018. name: "Side",
  11019. image: {
  11020. source: "./media/characters/kimiko/side.svg",
  11021. extra: 600 / 358
  11022. }
  11023. },
  11024. },
  11025. [
  11026. {
  11027. name: "Normal",
  11028. height: math.unit(15, "feet"),
  11029. default: true
  11030. },
  11031. {
  11032. name: "Macro",
  11033. height: math.unit(220, "feet")
  11034. },
  11035. {
  11036. name: "Macro+",
  11037. height: math.unit(1450, "feet")
  11038. },
  11039. {
  11040. name: "Megamacro",
  11041. height: math.unit(11500, "feet")
  11042. },
  11043. {
  11044. name: "Gigamacro",
  11045. height: math.unit(9500, "miles")
  11046. },
  11047. {
  11048. name: "Teramacro",
  11049. height: math.unit(2208005005, "miles")
  11050. },
  11051. {
  11052. name: "Examacro",
  11053. height: math.unit(2750, "parsecs")
  11054. },
  11055. {
  11056. name: "Zettamacro",
  11057. height: math.unit(101500, "parsecs")
  11058. },
  11059. ]
  11060. ))
  11061. characterMakers.push(() => makeCharacter(
  11062. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11063. {
  11064. front: {
  11065. height: math.unit(6, "feet"),
  11066. weight: math.unit(70, "kg"),
  11067. name: "Front",
  11068. image: {
  11069. source: "./media/characters/andrew-sleepy/front.svg"
  11070. }
  11071. },
  11072. side: {
  11073. height: math.unit(6, "feet"),
  11074. weight: math.unit(70, "kg"),
  11075. name: "Side",
  11076. image: {
  11077. source: "./media/characters/andrew-sleepy/side.svg"
  11078. }
  11079. },
  11080. },
  11081. [
  11082. {
  11083. name: "Micro",
  11084. height: math.unit(1, "mm"),
  11085. default: true
  11086. },
  11087. ]
  11088. ))
  11089. characterMakers.push(() => makeCharacter(
  11090. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11091. {
  11092. front: {
  11093. height: math.unit(6, "feet"),
  11094. weight: math.unit(150, "lb"),
  11095. name: "Front",
  11096. image: {
  11097. source: "./media/characters/judio/front.svg",
  11098. extra: 1258 / 1110
  11099. }
  11100. },
  11101. },
  11102. [
  11103. {
  11104. name: "Normal",
  11105. height: math.unit(5 + 6 / 12, "feet")
  11106. },
  11107. {
  11108. name: "Macro",
  11109. height: math.unit(1000, "feet"),
  11110. default: true
  11111. },
  11112. {
  11113. name: "Megamacro",
  11114. height: math.unit(10, "miles")
  11115. },
  11116. ]
  11117. ))
  11118. characterMakers.push(() => makeCharacter(
  11119. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11120. {
  11121. frontDressed: {
  11122. height: math.unit(6, "feet"),
  11123. weight: math.unit(68, "kg"),
  11124. name: "Front (Dressed)",
  11125. image: {
  11126. source: "./media/characters/nomaxice/front-dressed.svg",
  11127. extra: 1137/824,
  11128. bottom: 74/1211
  11129. }
  11130. },
  11131. frontShorts: {
  11132. height: math.unit(6, "feet"),
  11133. weight: math.unit(68, "kg"),
  11134. name: "Front (Shorts)",
  11135. image: {
  11136. source: "./media/characters/nomaxice/front-shorts.svg",
  11137. extra: 1137/824,
  11138. bottom: 74/1211
  11139. }
  11140. },
  11141. back: {
  11142. height: math.unit(6, "feet"),
  11143. weight: math.unit(68, "kg"),
  11144. name: "Back",
  11145. image: {
  11146. source: "./media/characters/nomaxice/back.svg",
  11147. extra: 822/786,
  11148. bottom: 39/861
  11149. }
  11150. },
  11151. hand: {
  11152. height: math.unit(0.565, "feet"),
  11153. name: "Hand",
  11154. image: {
  11155. source: "./media/characters/nomaxice/hand.svg"
  11156. }
  11157. },
  11158. foot: {
  11159. height: math.unit(1, "feet"),
  11160. name: "Foot",
  11161. image: {
  11162. source: "./media/characters/nomaxice/foot.svg"
  11163. }
  11164. },
  11165. },
  11166. [
  11167. {
  11168. name: "Micro",
  11169. height: math.unit(8, "cm")
  11170. },
  11171. {
  11172. name: "Norm",
  11173. height: math.unit(1.82, "m")
  11174. },
  11175. {
  11176. name: "Norm+",
  11177. height: math.unit(8.8, "feet"),
  11178. default: true
  11179. },
  11180. {
  11181. name: "Big",
  11182. height: math.unit(8, "meters")
  11183. },
  11184. {
  11185. name: "Macro",
  11186. height: math.unit(18, "meters")
  11187. },
  11188. {
  11189. name: "Macro+",
  11190. height: math.unit(88, "meters")
  11191. },
  11192. ]
  11193. ))
  11194. characterMakers.push(() => makeCharacter(
  11195. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11196. {
  11197. front: {
  11198. height: math.unit(12, "feet"),
  11199. weight: math.unit(1.5, "tons"),
  11200. name: "Front",
  11201. image: {
  11202. source: "./media/characters/dydros/front.svg",
  11203. extra: 863 / 800,
  11204. bottom: 0.015
  11205. }
  11206. },
  11207. back: {
  11208. height: math.unit(12, "feet"),
  11209. weight: math.unit(1.5, "tons"),
  11210. name: "Back",
  11211. image: {
  11212. source: "./media/characters/dydros/back.svg",
  11213. extra: 900 / 843,
  11214. bottom: 0.005
  11215. }
  11216. },
  11217. },
  11218. [
  11219. {
  11220. name: "Normal",
  11221. height: math.unit(12, "feet"),
  11222. default: true
  11223. },
  11224. ]
  11225. ))
  11226. characterMakers.push(() => makeCharacter(
  11227. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11228. {
  11229. front: {
  11230. height: math.unit(6, "feet"),
  11231. weight: math.unit(100, "kg"),
  11232. name: "Front",
  11233. image: {
  11234. source: "./media/characters/riggi/front.svg",
  11235. extra: 5787 / 5303
  11236. }
  11237. },
  11238. hyper: {
  11239. height: math.unit(6 * 5 / 3, "feet"),
  11240. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11241. name: "Hyper",
  11242. image: {
  11243. source: "./media/characters/riggi/hyper.svg",
  11244. extra: 3595 / 3485
  11245. }
  11246. },
  11247. },
  11248. [
  11249. {
  11250. name: "Small Macro",
  11251. height: math.unit(50, "feet")
  11252. },
  11253. {
  11254. name: "Default",
  11255. height: math.unit(200, "feet"),
  11256. default: true
  11257. },
  11258. {
  11259. name: "Loom",
  11260. height: math.unit(10000, "feet")
  11261. },
  11262. {
  11263. name: "Cruising Altitude",
  11264. height: math.unit(30000, "feet")
  11265. },
  11266. {
  11267. name: "Megamacro",
  11268. height: math.unit(100, "miles")
  11269. },
  11270. {
  11271. name: "Continent Sized",
  11272. height: math.unit(2800, "miles")
  11273. },
  11274. {
  11275. name: "Earth Sized",
  11276. height: math.unit(8000, "miles")
  11277. },
  11278. ]
  11279. ))
  11280. characterMakers.push(() => makeCharacter(
  11281. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11282. {
  11283. front: {
  11284. height: math.unit(6, "feet"),
  11285. weight: math.unit(250, "lb"),
  11286. name: "Front",
  11287. image: {
  11288. source: "./media/characters/alexi/front.svg",
  11289. extra: 3483 / 3291,
  11290. bottom: 0.04
  11291. }
  11292. },
  11293. back: {
  11294. height: math.unit(6, "feet"),
  11295. weight: math.unit(250, "lb"),
  11296. name: "Back",
  11297. image: {
  11298. source: "./media/characters/alexi/back.svg",
  11299. extra: 3533 / 3356,
  11300. bottom: 0.021
  11301. }
  11302. },
  11303. frontTransforming: {
  11304. height: math.unit(8.58, "feet"),
  11305. weight: math.unit(1300, "lb"),
  11306. name: "Transforming",
  11307. image: {
  11308. source: "./media/characters/alexi/front-transforming.svg",
  11309. extra: 437 / 409,
  11310. bottom: 19 / 458.66
  11311. }
  11312. },
  11313. frontTransformed: {
  11314. height: math.unit(12.5, "feet"),
  11315. weight: math.unit(4000, "lb"),
  11316. name: "Transformed",
  11317. image: {
  11318. source: "./media/characters/alexi/front-transformed.svg",
  11319. extra: 639 / 614,
  11320. bottom: 30.55 / 671
  11321. }
  11322. },
  11323. },
  11324. [
  11325. {
  11326. name: "Normal",
  11327. height: math.unit(14, "feet"),
  11328. default: true
  11329. },
  11330. {
  11331. name: "Minimacro",
  11332. height: math.unit(30, "meters")
  11333. },
  11334. {
  11335. name: "Macro",
  11336. height: math.unit(500, "meters")
  11337. },
  11338. {
  11339. name: "Megamacro",
  11340. height: math.unit(9000, "km")
  11341. },
  11342. {
  11343. name: "Teramacro",
  11344. height: math.unit(384000, "km")
  11345. },
  11346. ]
  11347. ))
  11348. characterMakers.push(() => makeCharacter(
  11349. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11350. {
  11351. front: {
  11352. height: math.unit(6, "feet"),
  11353. weight: math.unit(150, "lb"),
  11354. name: "Front",
  11355. image: {
  11356. source: "./media/characters/kayroo/front.svg",
  11357. extra: 1153 / 1038,
  11358. bottom: 0.06
  11359. }
  11360. },
  11361. foot: {
  11362. height: math.unit(6, "feet"),
  11363. weight: math.unit(150, "lb"),
  11364. name: "Foot",
  11365. image: {
  11366. source: "./media/characters/kayroo/foot.svg"
  11367. }
  11368. },
  11369. },
  11370. [
  11371. {
  11372. name: "Normal",
  11373. height: math.unit(8, "feet"),
  11374. default: true
  11375. },
  11376. {
  11377. name: "Minimacro",
  11378. height: math.unit(250, "feet")
  11379. },
  11380. {
  11381. name: "Macro",
  11382. height: math.unit(2800, "feet")
  11383. },
  11384. {
  11385. name: "Megamacro",
  11386. height: math.unit(5200, "feet")
  11387. },
  11388. {
  11389. name: "Gigamacro",
  11390. height: math.unit(27000, "feet")
  11391. },
  11392. {
  11393. name: "Omega",
  11394. height: math.unit(45000, "feet")
  11395. },
  11396. ]
  11397. ))
  11398. characterMakers.push(() => makeCharacter(
  11399. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11400. {
  11401. front: {
  11402. height: math.unit(18, "feet"),
  11403. weight: math.unit(5800, "lb"),
  11404. name: "Front",
  11405. image: {
  11406. source: "./media/characters/rhys/front.svg",
  11407. extra: 3386 / 3090,
  11408. bottom: 0.07
  11409. }
  11410. },
  11411. },
  11412. [
  11413. {
  11414. name: "Normal",
  11415. height: math.unit(18, "feet"),
  11416. default: true
  11417. },
  11418. {
  11419. name: "Working Size",
  11420. height: math.unit(200, "feet")
  11421. },
  11422. {
  11423. name: "Demolition Size",
  11424. height: math.unit(2000, "feet")
  11425. },
  11426. {
  11427. name: "Maximum Licensed Size",
  11428. height: math.unit(5, "miles")
  11429. },
  11430. {
  11431. name: "Maximum Observed Size",
  11432. height: math.unit(10, "yottameters")
  11433. },
  11434. ]
  11435. ))
  11436. characterMakers.push(() => makeCharacter(
  11437. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11438. {
  11439. front: {
  11440. height: math.unit(6, "feet"),
  11441. weight: math.unit(250, "lb"),
  11442. name: "Front",
  11443. image: {
  11444. source: "./media/characters/toto/front.svg",
  11445. extra: 527 / 479,
  11446. bottom: 0.05
  11447. }
  11448. },
  11449. },
  11450. [
  11451. {
  11452. name: "Micro",
  11453. height: math.unit(3, "feet")
  11454. },
  11455. {
  11456. name: "Normal",
  11457. height: math.unit(10, "feet")
  11458. },
  11459. {
  11460. name: "Macro",
  11461. height: math.unit(150, "feet"),
  11462. default: true
  11463. },
  11464. {
  11465. name: "Megamacro",
  11466. height: math.unit(1200, "feet")
  11467. },
  11468. ]
  11469. ))
  11470. characterMakers.push(() => makeCharacter(
  11471. { name: "King", species: ["lion"], tags: ["anthro"] },
  11472. {
  11473. back: {
  11474. height: math.unit(6, "feet"),
  11475. weight: math.unit(150, "lb"),
  11476. name: "Back",
  11477. image: {
  11478. source: "./media/characters/king/back.svg"
  11479. }
  11480. },
  11481. },
  11482. [
  11483. {
  11484. name: "Micro",
  11485. height: math.unit(2, "inches")
  11486. },
  11487. {
  11488. name: "Normal",
  11489. height: math.unit(8, "feet")
  11490. },
  11491. {
  11492. name: "Macro",
  11493. height: math.unit(200, "feet"),
  11494. default: true
  11495. },
  11496. {
  11497. name: "Megamacro",
  11498. height: math.unit(50, "miles")
  11499. },
  11500. ]
  11501. ))
  11502. characterMakers.push(() => makeCharacter(
  11503. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11504. {
  11505. front: {
  11506. height: math.unit(11, "feet"),
  11507. weight: math.unit(1400, "lb"),
  11508. name: "Front",
  11509. image: {
  11510. source: "./media/characters/cordite/front.svg",
  11511. extra: 1919/1827,
  11512. bottom: 40/1959
  11513. }
  11514. },
  11515. side: {
  11516. height: math.unit(11, "feet"),
  11517. weight: math.unit(1400, "lb"),
  11518. name: "Side",
  11519. image: {
  11520. source: "./media/characters/cordite/side.svg",
  11521. extra: 1908/1793,
  11522. bottom: 38/1946
  11523. }
  11524. },
  11525. back: {
  11526. height: math.unit(11, "feet"),
  11527. weight: math.unit(1400, "lb"),
  11528. name: "Back",
  11529. image: {
  11530. source: "./media/characters/cordite/back.svg",
  11531. extra: 1938/1837,
  11532. bottom: 10/1948
  11533. }
  11534. },
  11535. feral: {
  11536. height: math.unit(2, "feet"),
  11537. weight: math.unit(90, "lb"),
  11538. name: "Feral",
  11539. image: {
  11540. source: "./media/characters/cordite/feral.svg",
  11541. extra: 1260 / 755,
  11542. bottom: 0.05
  11543. }
  11544. },
  11545. },
  11546. [
  11547. {
  11548. name: "Normal",
  11549. height: math.unit(11, "feet"),
  11550. default: true
  11551. },
  11552. ]
  11553. ))
  11554. characterMakers.push(() => makeCharacter(
  11555. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11556. {
  11557. front: {
  11558. height: math.unit(6, "feet"),
  11559. weight: math.unit(150, "lb"),
  11560. name: "Front",
  11561. image: {
  11562. source: "./media/characters/pianostrong/front.svg",
  11563. extra: 6577 / 6254,
  11564. bottom: 0.02
  11565. }
  11566. },
  11567. side: {
  11568. height: math.unit(6, "feet"),
  11569. weight: math.unit(150, "lb"),
  11570. name: "Side",
  11571. image: {
  11572. source: "./media/characters/pianostrong/side.svg",
  11573. extra: 6106 / 5730
  11574. }
  11575. },
  11576. back: {
  11577. height: math.unit(6, "feet"),
  11578. weight: math.unit(150, "lb"),
  11579. name: "Back",
  11580. image: {
  11581. source: "./media/characters/pianostrong/back.svg",
  11582. extra: 6085 / 5733,
  11583. bottom: 0.01
  11584. }
  11585. },
  11586. },
  11587. [
  11588. {
  11589. name: "Macro",
  11590. height: math.unit(100, "feet")
  11591. },
  11592. {
  11593. name: "Macro+",
  11594. height: math.unit(300, "feet"),
  11595. default: true
  11596. },
  11597. {
  11598. name: "Macro++",
  11599. height: math.unit(1000, "feet")
  11600. },
  11601. ]
  11602. ))
  11603. characterMakers.push(() => makeCharacter(
  11604. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11605. {
  11606. front: {
  11607. height: math.unit(6, "feet"),
  11608. weight: math.unit(150, "lb"),
  11609. name: "Front",
  11610. image: {
  11611. source: "./media/characters/kona/front.svg",
  11612. extra: 2960 / 2629,
  11613. bottom: 0.005
  11614. }
  11615. },
  11616. },
  11617. [
  11618. {
  11619. name: "Normal",
  11620. height: math.unit(11 + 8 / 12, "feet")
  11621. },
  11622. {
  11623. name: "Macro",
  11624. height: math.unit(850, "feet"),
  11625. default: true
  11626. },
  11627. {
  11628. name: "Macro+",
  11629. height: math.unit(1.5, "km"),
  11630. default: true
  11631. },
  11632. {
  11633. name: "Megamacro",
  11634. height: math.unit(80, "miles")
  11635. },
  11636. {
  11637. name: "Gigamacro",
  11638. height: math.unit(3500, "miles")
  11639. },
  11640. ]
  11641. ))
  11642. characterMakers.push(() => makeCharacter(
  11643. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11644. {
  11645. side: {
  11646. height: math.unit(1.9, "meters"),
  11647. weight: math.unit(326, "kg"),
  11648. name: "Side",
  11649. image: {
  11650. source: "./media/characters/levi/side.svg",
  11651. extra: 1704 / 1334,
  11652. bottom: 0.02
  11653. }
  11654. },
  11655. },
  11656. [
  11657. {
  11658. name: "Normal",
  11659. height: math.unit(1.9, "meters"),
  11660. default: true
  11661. },
  11662. {
  11663. name: "Macro",
  11664. height: math.unit(20, "meters")
  11665. },
  11666. {
  11667. name: "Macro+",
  11668. height: math.unit(200, "meters")
  11669. },
  11670. {
  11671. name: "Megamacro",
  11672. height: math.unit(2, "km")
  11673. },
  11674. {
  11675. name: "Megamacro+",
  11676. height: math.unit(20, "km")
  11677. },
  11678. {
  11679. name: "Gigamacro",
  11680. height: math.unit(2500, "km")
  11681. },
  11682. {
  11683. name: "Gigamacro+",
  11684. height: math.unit(120000, "km")
  11685. },
  11686. {
  11687. name: "Teramacro",
  11688. height: math.unit(7.77e6, "km")
  11689. },
  11690. ]
  11691. ))
  11692. characterMakers.push(() => makeCharacter(
  11693. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11694. {
  11695. front: {
  11696. height: math.unit(6 + 4/12, "feet"),
  11697. weight: math.unit(190, "lb"),
  11698. name: "Front",
  11699. image: {
  11700. source: "./media/characters/bmc/front.svg",
  11701. extra: 1626/1472,
  11702. bottom: 79/1705
  11703. }
  11704. },
  11705. back: {
  11706. height: math.unit(6 + 4/12, "feet"),
  11707. weight: math.unit(190, "lb"),
  11708. name: "Back",
  11709. image: {
  11710. source: "./media/characters/bmc/back.svg",
  11711. extra: 1640/1479,
  11712. bottom: 45/1685
  11713. }
  11714. },
  11715. frontArmor: {
  11716. height: math.unit(6 + 4/12, "feet"),
  11717. weight: math.unit(190, "lb"),
  11718. name: "Front-armor",
  11719. image: {
  11720. source: "./media/characters/bmc/front-armor.svg",
  11721. extra: 1538/1468,
  11722. bottom: 79/1617
  11723. }
  11724. },
  11725. },
  11726. [
  11727. {
  11728. name: "Human-sized",
  11729. height: math.unit(6 + 4 / 12, "feet")
  11730. },
  11731. {
  11732. name: "Interactive Size",
  11733. height: math.unit(25, "feet")
  11734. },
  11735. {
  11736. name: "Small",
  11737. height: math.unit(250, "feet")
  11738. },
  11739. {
  11740. name: "Normal",
  11741. height: math.unit(1250, "feet"),
  11742. default: true
  11743. },
  11744. {
  11745. name: "Good Day",
  11746. height: math.unit(88, "miles")
  11747. },
  11748. {
  11749. name: "Largest Measured Size",
  11750. height: math.unit(105.960, "galaxies")
  11751. },
  11752. ]
  11753. ))
  11754. characterMakers.push(() => makeCharacter(
  11755. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11756. {
  11757. front: {
  11758. height: math.unit(20, "feet"),
  11759. weight: math.unit(2016, "kg"),
  11760. name: "Front",
  11761. image: {
  11762. source: "./media/characters/sven-the-kaiju/front.svg",
  11763. extra: 1277/1250,
  11764. bottom: 35/1312
  11765. }
  11766. },
  11767. mouth: {
  11768. height: math.unit(1.85, "feet"),
  11769. name: "Mouth",
  11770. image: {
  11771. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11772. }
  11773. },
  11774. },
  11775. [
  11776. {
  11777. name: "Fairy",
  11778. height: math.unit(6, "inches")
  11779. },
  11780. {
  11781. name: "Normal",
  11782. height: math.unit(20, "feet"),
  11783. default: true
  11784. },
  11785. {
  11786. name: "Rampage",
  11787. height: math.unit(200, "feet")
  11788. },
  11789. {
  11790. name: "Archfey Forest Guardian",
  11791. height: math.unit(1, "mile")
  11792. },
  11793. ]
  11794. ))
  11795. characterMakers.push(() => makeCharacter(
  11796. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11797. {
  11798. front: {
  11799. height: math.unit(4, "meters"),
  11800. weight: math.unit(2, "tons"),
  11801. name: "Front",
  11802. image: {
  11803. source: "./media/characters/marik/front.svg",
  11804. extra: 1057 / 1003,
  11805. bottom: 0.08
  11806. }
  11807. },
  11808. },
  11809. [
  11810. {
  11811. name: "Normal",
  11812. height: math.unit(4, "meters"),
  11813. default: true
  11814. },
  11815. {
  11816. name: "Macro",
  11817. height: math.unit(20, "meters")
  11818. },
  11819. {
  11820. name: "Megamacro",
  11821. height: math.unit(50, "km")
  11822. },
  11823. {
  11824. name: "Gigamacro",
  11825. height: math.unit(100, "km")
  11826. },
  11827. {
  11828. name: "Alpha Macro",
  11829. height: math.unit(7.88e7, "yottameters")
  11830. },
  11831. ]
  11832. ))
  11833. characterMakers.push(() => makeCharacter(
  11834. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11835. {
  11836. front: {
  11837. height: math.unit(6, "feet"),
  11838. weight: math.unit(110, "lb"),
  11839. name: "Front",
  11840. image: {
  11841. source: "./media/characters/mel/front.svg",
  11842. extra: 736 / 617,
  11843. bottom: 0.017
  11844. }
  11845. },
  11846. },
  11847. [
  11848. {
  11849. name: "Pico",
  11850. height: math.unit(3, "pm")
  11851. },
  11852. {
  11853. name: "Nano",
  11854. height: math.unit(3, "nm")
  11855. },
  11856. {
  11857. name: "Micro",
  11858. height: math.unit(0.3, "mm"),
  11859. default: true
  11860. },
  11861. {
  11862. name: "Micro+",
  11863. height: math.unit(3, "mm")
  11864. },
  11865. {
  11866. name: "Normal",
  11867. height: math.unit(5 + 10.5 / 12, "feet")
  11868. },
  11869. ]
  11870. ))
  11871. characterMakers.push(() => makeCharacter(
  11872. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11873. {
  11874. kaiju: {
  11875. height: math.unit(1.75, "meters"),
  11876. weight: math.unit(55, "kg"),
  11877. name: "Kaiju",
  11878. image: {
  11879. source: "./media/characters/lykonous/kaiju.svg",
  11880. extra: 1055 / 946,
  11881. bottom: 0.135
  11882. }
  11883. },
  11884. },
  11885. [
  11886. {
  11887. name: "Normal",
  11888. height: math.unit(2.5, "meters"),
  11889. default: true
  11890. },
  11891. {
  11892. name: "Kaiju Dragon",
  11893. height: math.unit(60, "meters")
  11894. },
  11895. {
  11896. name: "Mega Kaiju",
  11897. height: math.unit(120, "km")
  11898. },
  11899. {
  11900. name: "Giga Kaiju",
  11901. height: math.unit(200, "megameters")
  11902. },
  11903. {
  11904. name: "Terra Kaiju",
  11905. height: math.unit(400, "gigameters")
  11906. },
  11907. {
  11908. name: "Kaiju Dragon God",
  11909. height: math.unit(13000, "exaparsecs")
  11910. },
  11911. ]
  11912. ))
  11913. characterMakers.push(() => makeCharacter(
  11914. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11915. {
  11916. front: {
  11917. height: math.unit(6, "feet"),
  11918. weight: math.unit(150, "lb"),
  11919. name: "Front",
  11920. image: {
  11921. source: "./media/characters/blü/front.svg",
  11922. extra: 1883 / 1564,
  11923. bottom: 0.031
  11924. }
  11925. },
  11926. },
  11927. [
  11928. {
  11929. name: "Normal",
  11930. height: math.unit(13, "feet"),
  11931. default: true
  11932. },
  11933. {
  11934. name: "Big Boi",
  11935. height: math.unit(150, "meters")
  11936. },
  11937. {
  11938. name: "Mini Stomper",
  11939. height: math.unit(300, "meters")
  11940. },
  11941. {
  11942. name: "Macro",
  11943. height: math.unit(1000, "meters")
  11944. },
  11945. {
  11946. name: "Megamacro",
  11947. height: math.unit(11000, "meters")
  11948. },
  11949. {
  11950. name: "Gigamacro",
  11951. height: math.unit(11000, "km")
  11952. },
  11953. {
  11954. name: "Teramacro",
  11955. height: math.unit(420000, "km")
  11956. },
  11957. {
  11958. name: "Examacro",
  11959. height: math.unit(120, "parsecs")
  11960. },
  11961. {
  11962. name: "God Tho",
  11963. height: math.unit(98000000000, "parsecs")
  11964. },
  11965. ]
  11966. ))
  11967. characterMakers.push(() => makeCharacter(
  11968. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11969. {
  11970. taurFront: {
  11971. height: math.unit(6, "feet"),
  11972. weight: math.unit(200, "lb"),
  11973. name: "Taur (Front)",
  11974. image: {
  11975. source: "./media/characters/scales/taur-front.svg",
  11976. extra: 1,
  11977. bottom: 0.05
  11978. }
  11979. },
  11980. taurBack: {
  11981. height: math.unit(6, "feet"),
  11982. weight: math.unit(200, "lb"),
  11983. name: "Taur (Back)",
  11984. image: {
  11985. source: "./media/characters/scales/taur-back.svg",
  11986. extra: 1,
  11987. bottom: 0.08
  11988. }
  11989. },
  11990. anthro: {
  11991. height: math.unit(6 * 7 / 12, "feet"),
  11992. weight: math.unit(100, "lb"),
  11993. name: "Anthro",
  11994. image: {
  11995. source: "./media/characters/scales/anthro.svg",
  11996. extra: 1,
  11997. bottom: 0.06
  11998. }
  11999. },
  12000. },
  12001. [
  12002. {
  12003. name: "Normal",
  12004. height: math.unit(12, "feet"),
  12005. default: true
  12006. },
  12007. ]
  12008. ))
  12009. characterMakers.push(() => makeCharacter(
  12010. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12011. {
  12012. front: {
  12013. height: math.unit(6, "feet"),
  12014. weight: math.unit(150, "lb"),
  12015. name: "Front",
  12016. image: {
  12017. source: "./media/characters/koragos/front.svg",
  12018. extra: 841 / 794,
  12019. bottom: 0.035
  12020. }
  12021. },
  12022. back: {
  12023. height: math.unit(6, "feet"),
  12024. weight: math.unit(150, "lb"),
  12025. name: "Back",
  12026. image: {
  12027. source: "./media/characters/koragos/back.svg",
  12028. extra: 841 / 810,
  12029. bottom: 0.022
  12030. }
  12031. },
  12032. },
  12033. [
  12034. {
  12035. name: "Normal",
  12036. height: math.unit(6 + 11 / 12, "feet"),
  12037. default: true
  12038. },
  12039. {
  12040. name: "Macro",
  12041. height: math.unit(490, "feet")
  12042. },
  12043. {
  12044. name: "Megamacro",
  12045. height: math.unit(10, "miles")
  12046. },
  12047. {
  12048. name: "Gigamacro",
  12049. height: math.unit(50, "miles")
  12050. },
  12051. ]
  12052. ))
  12053. characterMakers.push(() => makeCharacter(
  12054. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12055. {
  12056. front: {
  12057. height: math.unit(6, "feet"),
  12058. weight: math.unit(250, "lb"),
  12059. name: "Front",
  12060. image: {
  12061. source: "./media/characters/xylrem/front.svg",
  12062. extra: 3323 / 3050,
  12063. bottom: 0.065
  12064. }
  12065. },
  12066. },
  12067. [
  12068. {
  12069. name: "Micro",
  12070. height: math.unit(4, "feet")
  12071. },
  12072. {
  12073. name: "Normal",
  12074. height: math.unit(16, "feet"),
  12075. default: true
  12076. },
  12077. {
  12078. name: "Macro",
  12079. height: math.unit(2720, "feet")
  12080. },
  12081. {
  12082. name: "Megamacro",
  12083. height: math.unit(25000, "miles")
  12084. },
  12085. ]
  12086. ))
  12087. characterMakers.push(() => makeCharacter(
  12088. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12089. {
  12090. front: {
  12091. height: math.unit(8, "feet"),
  12092. weight: math.unit(250, "kg"),
  12093. name: "Front",
  12094. image: {
  12095. source: "./media/characters/ikideru/front.svg",
  12096. extra: 930 / 870,
  12097. bottom: 0.087
  12098. }
  12099. },
  12100. back: {
  12101. height: math.unit(8, "feet"),
  12102. weight: math.unit(250, "kg"),
  12103. name: "Back",
  12104. image: {
  12105. source: "./media/characters/ikideru/back.svg",
  12106. extra: 919 / 852,
  12107. bottom: 0.055
  12108. }
  12109. },
  12110. },
  12111. [
  12112. {
  12113. name: "Rare",
  12114. height: math.unit(8, "feet"),
  12115. default: true
  12116. },
  12117. {
  12118. name: "Playful Loom",
  12119. height: math.unit(80, "feet")
  12120. },
  12121. {
  12122. name: "City Leaner",
  12123. height: math.unit(230, "feet")
  12124. },
  12125. {
  12126. name: "Megamacro",
  12127. height: math.unit(2500, "feet")
  12128. },
  12129. {
  12130. name: "Gigamacro",
  12131. height: math.unit(26400, "feet")
  12132. },
  12133. {
  12134. name: "Tectonic Shifter",
  12135. height: math.unit(1.7, "megameters")
  12136. },
  12137. {
  12138. name: "Planet Carer",
  12139. height: math.unit(21, "megameters")
  12140. },
  12141. {
  12142. name: "God",
  12143. height: math.unit(11157.22, "parsecs")
  12144. },
  12145. ]
  12146. ))
  12147. characterMakers.push(() => makeCharacter(
  12148. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12149. {
  12150. front: {
  12151. height: math.unit(6, "feet"),
  12152. weight: math.unit(120, "lb"),
  12153. name: "Front",
  12154. image: {
  12155. source: "./media/characters/neo/front.svg"
  12156. }
  12157. },
  12158. },
  12159. [
  12160. {
  12161. name: "Micro",
  12162. height: math.unit(2, "inches"),
  12163. default: true
  12164. },
  12165. {
  12166. name: "Human Size",
  12167. height: math.unit(5 + 8 / 12, "feet")
  12168. },
  12169. ]
  12170. ))
  12171. characterMakers.push(() => makeCharacter(
  12172. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12173. {
  12174. front: {
  12175. height: math.unit(13 + 10 / 12, "feet"),
  12176. weight: math.unit(5320, "lb"),
  12177. name: "Front",
  12178. image: {
  12179. source: "./media/characters/chauncey-chantz/front.svg",
  12180. extra: 1587 / 1435,
  12181. bottom: 0.02
  12182. }
  12183. },
  12184. },
  12185. [
  12186. {
  12187. name: "Normal",
  12188. height: math.unit(13 + 10 / 12, "feet"),
  12189. default: true
  12190. },
  12191. {
  12192. name: "Macro",
  12193. height: math.unit(45, "feet")
  12194. },
  12195. {
  12196. name: "Megamacro",
  12197. height: math.unit(250, "miles")
  12198. },
  12199. {
  12200. name: "Planetary",
  12201. height: math.unit(10000, "miles")
  12202. },
  12203. {
  12204. name: "Galactic",
  12205. height: math.unit(40000, "parsecs")
  12206. },
  12207. {
  12208. name: "Universal",
  12209. height: math.unit(1, "yottameter")
  12210. },
  12211. ]
  12212. ))
  12213. characterMakers.push(() => makeCharacter(
  12214. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12215. {
  12216. front: {
  12217. height: math.unit(6, "feet"),
  12218. weight: math.unit(150, "lb"),
  12219. name: "Front",
  12220. image: {
  12221. source: "./media/characters/epifox/front.svg",
  12222. extra: 1,
  12223. bottom: 0.075
  12224. }
  12225. },
  12226. },
  12227. [
  12228. {
  12229. name: "Micro",
  12230. height: math.unit(6, "inches")
  12231. },
  12232. {
  12233. name: "Normal",
  12234. height: math.unit(12, "feet"),
  12235. default: true
  12236. },
  12237. {
  12238. name: "Macro",
  12239. height: math.unit(3810, "feet")
  12240. },
  12241. {
  12242. name: "Megamacro",
  12243. height: math.unit(500, "miles")
  12244. },
  12245. ]
  12246. ))
  12247. characterMakers.push(() => makeCharacter(
  12248. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12249. {
  12250. front: {
  12251. height: math.unit(1.8796, "m"),
  12252. weight: math.unit(230, "lb"),
  12253. name: "Front",
  12254. image: {
  12255. source: "./media/characters/colin-t/front.svg",
  12256. extra: 1272 / 1193,
  12257. bottom: 0.07
  12258. }
  12259. },
  12260. },
  12261. [
  12262. {
  12263. name: "Micro",
  12264. height: math.unit(0.571, "meters")
  12265. },
  12266. {
  12267. name: "Normal",
  12268. height: math.unit(1.8796, "meters"),
  12269. default: true
  12270. },
  12271. {
  12272. name: "Tall",
  12273. height: math.unit(4, "meters")
  12274. },
  12275. {
  12276. name: "Macro",
  12277. height: math.unit(67.241, "meters")
  12278. },
  12279. {
  12280. name: "Megamacro",
  12281. height: math.unit(371.856, "meters")
  12282. },
  12283. {
  12284. name: "Planetary",
  12285. height: math.unit(12631.5689, "km")
  12286. },
  12287. ]
  12288. ))
  12289. characterMakers.push(() => makeCharacter(
  12290. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12291. {
  12292. front: {
  12293. height: math.unit(1.85, "meters"),
  12294. weight: math.unit(80, "kg"),
  12295. name: "Front",
  12296. image: {
  12297. source: "./media/characters/matvei/front.svg",
  12298. extra: 614 / 594,
  12299. bottom: 0.01
  12300. }
  12301. },
  12302. },
  12303. [
  12304. {
  12305. name: "Normal",
  12306. height: math.unit(1.85, "meters"),
  12307. default: true
  12308. },
  12309. ]
  12310. ))
  12311. characterMakers.push(() => makeCharacter(
  12312. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12313. {
  12314. front: {
  12315. height: math.unit(5 + 9 / 12, "feet"),
  12316. weight: math.unit(70, "lb"),
  12317. name: "Front",
  12318. image: {
  12319. source: "./media/characters/quincy/front.svg",
  12320. extra: 3041 / 2751
  12321. }
  12322. },
  12323. back: {
  12324. height: math.unit(5 + 9 / 12, "feet"),
  12325. weight: math.unit(70, "lb"),
  12326. name: "Back",
  12327. image: {
  12328. source: "./media/characters/quincy/back.svg",
  12329. extra: 3041 / 2751
  12330. }
  12331. },
  12332. flying: {
  12333. height: math.unit(5 + 4 / 12, "feet"),
  12334. weight: math.unit(70, "lb"),
  12335. name: "Flying",
  12336. image: {
  12337. source: "./media/characters/quincy/flying.svg",
  12338. extra: 1044 / 930
  12339. }
  12340. },
  12341. },
  12342. [
  12343. {
  12344. name: "Micro",
  12345. height: math.unit(3, "cm")
  12346. },
  12347. {
  12348. name: "Normal",
  12349. height: math.unit(5 + 9 / 12, "feet")
  12350. },
  12351. {
  12352. name: "Macro",
  12353. height: math.unit(200, "meters"),
  12354. default: true
  12355. },
  12356. {
  12357. name: "Megamacro",
  12358. height: math.unit(1000, "meters")
  12359. },
  12360. ]
  12361. ))
  12362. characterMakers.push(() => makeCharacter(
  12363. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12364. {
  12365. front: {
  12366. height: math.unit(3 + 11/12, "feet"),
  12367. weight: math.unit(50, "lb"),
  12368. name: "Front",
  12369. image: {
  12370. source: "./media/characters/vanrel/front.svg",
  12371. extra: 1104/949,
  12372. bottom: 52/1156
  12373. }
  12374. },
  12375. back: {
  12376. height: math.unit(3 + 11/12, "feet"),
  12377. weight: math.unit(50, "lb"),
  12378. name: "Back",
  12379. image: {
  12380. source: "./media/characters/vanrel/back.svg",
  12381. extra: 1119/976,
  12382. bottom: 37/1156
  12383. }
  12384. },
  12385. tome: {
  12386. height: math.unit(1.35, "feet"),
  12387. weight: math.unit(10, "lb"),
  12388. name: "Vanrel's Tome",
  12389. rename: true,
  12390. image: {
  12391. source: "./media/characters/vanrel/tome.svg"
  12392. }
  12393. },
  12394. beans: {
  12395. height: math.unit(0.89, "feet"),
  12396. name: "Beans",
  12397. image: {
  12398. source: "./media/characters/vanrel/beans.svg"
  12399. }
  12400. },
  12401. },
  12402. [
  12403. {
  12404. name: "Normal",
  12405. height: math.unit(3 + 11/12, "feet"),
  12406. default: true
  12407. },
  12408. ]
  12409. ))
  12410. characterMakers.push(() => makeCharacter(
  12411. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12412. {
  12413. front: {
  12414. height: math.unit(7 + 5 / 12, "feet"),
  12415. name: "Front",
  12416. image: {
  12417. source: "./media/characters/kuiper-vanrel/front.svg",
  12418. extra: 1219/1169,
  12419. bottom: 69/1288
  12420. }
  12421. },
  12422. back: {
  12423. height: math.unit(7 + 5 / 12, "feet"),
  12424. name: "Back",
  12425. image: {
  12426. source: "./media/characters/kuiper-vanrel/back.svg",
  12427. extra: 1236/1193,
  12428. bottom: 27/1263
  12429. }
  12430. },
  12431. foot: {
  12432. height: math.unit(0.55, "meters"),
  12433. name: "Foot",
  12434. image: {
  12435. source: "./media/characters/kuiper-vanrel/foot.svg",
  12436. }
  12437. },
  12438. battle: {
  12439. height: math.unit(6.824, "feet"),
  12440. name: "Battle",
  12441. image: {
  12442. source: "./media/characters/kuiper-vanrel/battle.svg",
  12443. extra: 1466 / 1327,
  12444. bottom: 29 / 1492.5
  12445. }
  12446. },
  12447. meerkui: {
  12448. height: math.unit(18, "inches"),
  12449. name: "Meerkui",
  12450. image: {
  12451. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12452. extra: 1354/1289,
  12453. bottom: 69/1423
  12454. }
  12455. },
  12456. },
  12457. [
  12458. {
  12459. name: "Normal",
  12460. height: math.unit(7 + 5 / 12, "feet"),
  12461. default: true
  12462. },
  12463. ]
  12464. ))
  12465. characterMakers.push(() => makeCharacter(
  12466. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12467. {
  12468. front: {
  12469. height: math.unit(8 + 5 / 12, "feet"),
  12470. name: "Front",
  12471. image: {
  12472. source: "./media/characters/keset-vanrel/front.svg",
  12473. extra: 1231/1148,
  12474. bottom: 82/1313
  12475. }
  12476. },
  12477. back: {
  12478. height: math.unit(8 + 5 / 12, "feet"),
  12479. name: "Back",
  12480. image: {
  12481. source: "./media/characters/keset-vanrel/back.svg",
  12482. extra: 1240/1174,
  12483. bottom: 33/1273
  12484. }
  12485. },
  12486. hand: {
  12487. height: math.unit(0.6, "meters"),
  12488. name: "Hand",
  12489. image: {
  12490. source: "./media/characters/keset-vanrel/hand.svg"
  12491. }
  12492. },
  12493. foot: {
  12494. height: math.unit(0.94978, "meters"),
  12495. name: "Foot",
  12496. image: {
  12497. source: "./media/characters/keset-vanrel/foot.svg"
  12498. }
  12499. },
  12500. battle: {
  12501. height: math.unit(7.408, "feet"),
  12502. name: "Battle",
  12503. image: {
  12504. source: "./media/characters/keset-vanrel/battle.svg",
  12505. extra: 1890 / 1386,
  12506. bottom: 73.28 / 1970
  12507. }
  12508. },
  12509. },
  12510. [
  12511. {
  12512. name: "Normal",
  12513. height: math.unit(8 + 5 / 12, "feet"),
  12514. default: true
  12515. },
  12516. ]
  12517. ))
  12518. characterMakers.push(() => makeCharacter(
  12519. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12520. {
  12521. front: {
  12522. height: math.unit(6, "feet"),
  12523. weight: math.unit(150, "lb"),
  12524. name: "Front",
  12525. image: {
  12526. source: "./media/characters/neos/front.svg",
  12527. extra: 1696 / 992,
  12528. bottom: 0.14
  12529. }
  12530. },
  12531. },
  12532. [
  12533. {
  12534. name: "Normal",
  12535. height: math.unit(54, "cm"),
  12536. default: true
  12537. },
  12538. {
  12539. name: "Macro",
  12540. height: math.unit(100, "m")
  12541. },
  12542. {
  12543. name: "Megamacro",
  12544. height: math.unit(10, "km")
  12545. },
  12546. {
  12547. name: "Megamacro+",
  12548. height: math.unit(100, "km")
  12549. },
  12550. {
  12551. name: "Gigamacro",
  12552. height: math.unit(100, "Mm")
  12553. },
  12554. {
  12555. name: "Teramacro",
  12556. height: math.unit(100, "Gm")
  12557. },
  12558. {
  12559. name: "Examacro",
  12560. height: math.unit(100, "Em")
  12561. },
  12562. {
  12563. name: "Godly",
  12564. height: math.unit(10000, "Ym")
  12565. },
  12566. {
  12567. name: "Beyond Godly",
  12568. height: math.unit(25, "multiverses")
  12569. },
  12570. ]
  12571. ))
  12572. characterMakers.push(() => makeCharacter(
  12573. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12574. {
  12575. feminine: {
  12576. height: math.unit(5, "feet"),
  12577. weight: math.unit(100, "lb"),
  12578. name: "Feminine",
  12579. image: {
  12580. source: "./media/characters/sammy-mouse/feminine.svg",
  12581. extra: 2526 / 2425,
  12582. bottom: 0.123
  12583. }
  12584. },
  12585. masculine: {
  12586. height: math.unit(5, "feet"),
  12587. weight: math.unit(100, "lb"),
  12588. name: "Masculine",
  12589. image: {
  12590. source: "./media/characters/sammy-mouse/masculine.svg",
  12591. extra: 2526 / 2425,
  12592. bottom: 0.123
  12593. }
  12594. },
  12595. },
  12596. [
  12597. {
  12598. name: "Micro",
  12599. height: math.unit(5, "inches")
  12600. },
  12601. {
  12602. name: "Normal",
  12603. height: math.unit(5, "feet"),
  12604. default: true
  12605. },
  12606. {
  12607. name: "Macro",
  12608. height: math.unit(60, "feet")
  12609. },
  12610. ]
  12611. ))
  12612. characterMakers.push(() => makeCharacter(
  12613. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12614. {
  12615. front: {
  12616. height: math.unit(4, "feet"),
  12617. weight: math.unit(50, "lb"),
  12618. name: "Front",
  12619. image: {
  12620. source: "./media/characters/kole/front.svg",
  12621. extra: 1423 / 1303,
  12622. bottom: 0.025
  12623. }
  12624. },
  12625. back: {
  12626. height: math.unit(4, "feet"),
  12627. weight: math.unit(50, "lb"),
  12628. name: "Back",
  12629. image: {
  12630. source: "./media/characters/kole/back.svg",
  12631. extra: 1426 / 1280,
  12632. bottom: 0.02
  12633. }
  12634. },
  12635. },
  12636. [
  12637. {
  12638. name: "Normal",
  12639. height: math.unit(4, "feet"),
  12640. default: true
  12641. },
  12642. ]
  12643. ))
  12644. characterMakers.push(() => makeCharacter(
  12645. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12646. {
  12647. front: {
  12648. height: math.unit(2.5, "feet"),
  12649. weight: math.unit(32, "lb"),
  12650. name: "Front",
  12651. image: {
  12652. source: "./media/characters/rufran/front.svg",
  12653. extra: 1313/885,
  12654. bottom: 94/1407
  12655. }
  12656. },
  12657. side: {
  12658. height: math.unit(2.5, "feet"),
  12659. weight: math.unit(32, "lb"),
  12660. name: "Side",
  12661. image: {
  12662. source: "./media/characters/rufran/side.svg",
  12663. extra: 1109/852,
  12664. bottom: 118/1227
  12665. }
  12666. },
  12667. back: {
  12668. height: math.unit(2.5, "feet"),
  12669. weight: math.unit(32, "lb"),
  12670. name: "Back",
  12671. image: {
  12672. source: "./media/characters/rufran/back.svg",
  12673. extra: 1280/878,
  12674. bottom: 131/1411
  12675. }
  12676. },
  12677. mouth: {
  12678. height: math.unit(1.13, "feet"),
  12679. name: "Mouth",
  12680. image: {
  12681. source: "./media/characters/rufran/mouth.svg"
  12682. }
  12683. },
  12684. foot: {
  12685. height: math.unit(1.33, "feet"),
  12686. name: "Foot",
  12687. image: {
  12688. source: "./media/characters/rufran/foot.svg"
  12689. }
  12690. },
  12691. koboldFront: {
  12692. height: math.unit(2 + 6 / 12, "feet"),
  12693. weight: math.unit(20, "lb"),
  12694. name: "Front (Kobold)",
  12695. image: {
  12696. source: "./media/characters/rufran/kobold-front.svg",
  12697. extra: 2041 / 1839,
  12698. bottom: 0.055
  12699. }
  12700. },
  12701. koboldBack: {
  12702. height: math.unit(2 + 6 / 12, "feet"),
  12703. weight: math.unit(20, "lb"),
  12704. name: "Back (Kobold)",
  12705. image: {
  12706. source: "./media/characters/rufran/kobold-back.svg",
  12707. extra: 2054 / 1839,
  12708. bottom: 0.01
  12709. }
  12710. },
  12711. koboldHand: {
  12712. height: math.unit(0.2166, "meters"),
  12713. name: "Hand (Kobold)",
  12714. image: {
  12715. source: "./media/characters/rufran/kobold-hand.svg"
  12716. }
  12717. },
  12718. koboldFoot: {
  12719. height: math.unit(0.185, "meters"),
  12720. name: "Foot (Kobold)",
  12721. image: {
  12722. source: "./media/characters/rufran/kobold-foot.svg"
  12723. }
  12724. },
  12725. },
  12726. [
  12727. {
  12728. name: "Micro",
  12729. height: math.unit(1, "inch")
  12730. },
  12731. {
  12732. name: "Normal",
  12733. height: math.unit(2 + 6 / 12, "feet"),
  12734. default: true
  12735. },
  12736. {
  12737. name: "Big",
  12738. height: math.unit(60, "feet")
  12739. },
  12740. {
  12741. name: "Macro",
  12742. height: math.unit(325, "feet")
  12743. },
  12744. ]
  12745. ))
  12746. characterMakers.push(() => makeCharacter(
  12747. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12748. {
  12749. front: {
  12750. height: math.unit(0.3, "meters"),
  12751. weight: math.unit(3.5, "kg"),
  12752. name: "Front",
  12753. image: {
  12754. source: "./media/characters/chip/front.svg",
  12755. extra: 748 / 674
  12756. }
  12757. },
  12758. },
  12759. [
  12760. {
  12761. name: "Micro",
  12762. height: math.unit(1, "inch"),
  12763. default: true
  12764. },
  12765. ]
  12766. ))
  12767. characterMakers.push(() => makeCharacter(
  12768. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12769. {
  12770. side: {
  12771. height: math.unit(2.3, "meters"),
  12772. weight: math.unit(3500, "lb"),
  12773. name: "Side",
  12774. image: {
  12775. source: "./media/characters/torvid/side.svg",
  12776. extra: 1972 / 722,
  12777. bottom: 0.035
  12778. }
  12779. },
  12780. },
  12781. [
  12782. {
  12783. name: "Normal",
  12784. height: math.unit(2.3, "meters"),
  12785. default: true
  12786. },
  12787. ]
  12788. ))
  12789. characterMakers.push(() => makeCharacter(
  12790. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12791. {
  12792. front: {
  12793. height: math.unit(2, "meters"),
  12794. weight: math.unit(150.5, "kg"),
  12795. name: "Front",
  12796. image: {
  12797. source: "./media/characters/susan/front.svg",
  12798. extra: 693 / 635,
  12799. bottom: 0.05
  12800. }
  12801. },
  12802. },
  12803. [
  12804. {
  12805. name: "Megamacro",
  12806. height: math.unit(505, "miles"),
  12807. default: true
  12808. },
  12809. ]
  12810. ))
  12811. characterMakers.push(() => makeCharacter(
  12812. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12813. {
  12814. front: {
  12815. height: math.unit(6, "feet"),
  12816. weight: math.unit(150, "lb"),
  12817. name: "Front",
  12818. image: {
  12819. source: "./media/characters/raindrops/front.svg",
  12820. extra: 2655 / 2461,
  12821. bottom: 49 / 2705
  12822. }
  12823. },
  12824. back: {
  12825. height: math.unit(6, "feet"),
  12826. weight: math.unit(150, "lb"),
  12827. name: "Back",
  12828. image: {
  12829. source: "./media/characters/raindrops/back.svg",
  12830. extra: 2574 / 2400,
  12831. bottom: 65 / 2634
  12832. }
  12833. },
  12834. },
  12835. [
  12836. {
  12837. name: "Micro",
  12838. height: math.unit(6, "inches")
  12839. },
  12840. {
  12841. name: "Normal",
  12842. height: math.unit(6 + 2 / 12, "feet")
  12843. },
  12844. {
  12845. name: "Macro",
  12846. height: math.unit(131, "feet"),
  12847. default: true
  12848. },
  12849. {
  12850. name: "Megamacro",
  12851. height: math.unit(15, "miles")
  12852. },
  12853. {
  12854. name: "Gigamacro",
  12855. height: math.unit(4000, "miles")
  12856. },
  12857. {
  12858. name: "Teramacro",
  12859. height: math.unit(315000, "miles")
  12860. },
  12861. ]
  12862. ))
  12863. characterMakers.push(() => makeCharacter(
  12864. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12865. {
  12866. front: {
  12867. height: math.unit(2.794, "meters"),
  12868. weight: math.unit(325, "kg"),
  12869. name: "Front",
  12870. image: {
  12871. source: "./media/characters/tezwa/front.svg",
  12872. extra: 2083 / 1906,
  12873. bottom: 0.031
  12874. }
  12875. },
  12876. foot: {
  12877. height: math.unit(0.687, "meters"),
  12878. name: "Foot",
  12879. image: {
  12880. source: "./media/characters/tezwa/foot.svg"
  12881. }
  12882. },
  12883. },
  12884. [
  12885. {
  12886. name: "Normal",
  12887. height: math.unit(9 + 2 / 12, "feet"),
  12888. default: true
  12889. },
  12890. ]
  12891. ))
  12892. characterMakers.push(() => makeCharacter(
  12893. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12894. {
  12895. front: {
  12896. height: math.unit(58, "feet"),
  12897. weight: math.unit(89000, "lb"),
  12898. name: "Front",
  12899. image: {
  12900. source: "./media/characters/typhus/front.svg",
  12901. extra: 816 / 800,
  12902. bottom: 0.065
  12903. }
  12904. },
  12905. },
  12906. [
  12907. {
  12908. name: "Macro",
  12909. height: math.unit(58, "feet"),
  12910. default: true
  12911. },
  12912. ]
  12913. ))
  12914. characterMakers.push(() => makeCharacter(
  12915. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12916. {
  12917. front: {
  12918. height: math.unit(12, "feet"),
  12919. weight: math.unit(6, "tonnes"),
  12920. name: "Front",
  12921. image: {
  12922. source: "./media/characters/lyra-von-wulf/front.svg",
  12923. extra: 1,
  12924. bottom: 0.10
  12925. }
  12926. },
  12927. frontMecha: {
  12928. height: math.unit(12, "feet"),
  12929. weight: math.unit(12, "tonnes"),
  12930. name: "Front (Mecha)",
  12931. image: {
  12932. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12933. extra: 1,
  12934. bottom: 0.042
  12935. }
  12936. },
  12937. maw: {
  12938. height: math.unit(2.2, "feet"),
  12939. name: "Maw",
  12940. image: {
  12941. source: "./media/characters/lyra-von-wulf/maw.svg"
  12942. }
  12943. },
  12944. },
  12945. [
  12946. {
  12947. name: "Normal",
  12948. height: math.unit(12, "feet"),
  12949. default: true
  12950. },
  12951. {
  12952. name: "Classic",
  12953. height: math.unit(50, "feet")
  12954. },
  12955. {
  12956. name: "Macro",
  12957. height: math.unit(500, "feet")
  12958. },
  12959. {
  12960. name: "Megamacro",
  12961. height: math.unit(1, "mile")
  12962. },
  12963. {
  12964. name: "Gigamacro",
  12965. height: math.unit(400, "miles")
  12966. },
  12967. {
  12968. name: "Teramacro",
  12969. height: math.unit(22000, "miles")
  12970. },
  12971. {
  12972. name: "Solarmacro",
  12973. height: math.unit(8600000, "miles")
  12974. },
  12975. {
  12976. name: "Galactic",
  12977. height: math.unit(1057000, "lightyears")
  12978. },
  12979. ]
  12980. ))
  12981. characterMakers.push(() => makeCharacter(
  12982. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12983. {
  12984. front: {
  12985. height: math.unit(6 + 10 / 12, "feet"),
  12986. weight: math.unit(150, "lb"),
  12987. name: "Front",
  12988. image: {
  12989. source: "./media/characters/dixon/front.svg",
  12990. extra: 3361 / 3209,
  12991. bottom: 0.01
  12992. }
  12993. },
  12994. },
  12995. [
  12996. {
  12997. name: "Normal",
  12998. height: math.unit(6 + 10 / 12, "feet"),
  12999. default: true
  13000. },
  13001. {
  13002. name: "Big",
  13003. height: math.unit(12, "meters")
  13004. },
  13005. {
  13006. name: "Macro",
  13007. height: math.unit(500, "meters")
  13008. },
  13009. {
  13010. name: "Megamacro",
  13011. height: math.unit(2, "km")
  13012. },
  13013. ]
  13014. ))
  13015. characterMakers.push(() => makeCharacter(
  13016. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13017. {
  13018. front: {
  13019. height: math.unit(185, "cm"),
  13020. weight: math.unit(68, "kg"),
  13021. name: "Front",
  13022. image: {
  13023. source: "./media/characters/kauko/front.svg",
  13024. extra: 1455 / 1421,
  13025. bottom: 0.03
  13026. }
  13027. },
  13028. back: {
  13029. height: math.unit(185, "cm"),
  13030. weight: math.unit(68, "kg"),
  13031. name: "Back",
  13032. image: {
  13033. source: "./media/characters/kauko/back.svg",
  13034. extra: 1455 / 1421,
  13035. bottom: 0.004
  13036. }
  13037. },
  13038. },
  13039. [
  13040. {
  13041. name: "Normal",
  13042. height: math.unit(185, "cm"),
  13043. default: true
  13044. },
  13045. ]
  13046. ))
  13047. characterMakers.push(() => makeCharacter(
  13048. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13049. {
  13050. front: {
  13051. height: math.unit(6, "feet"),
  13052. weight: math.unit(150, "kg"),
  13053. name: "Front",
  13054. image: {
  13055. source: "./media/characters/varg/front.svg",
  13056. extra: 1108 / 1018,
  13057. bottom: 0.0375
  13058. }
  13059. },
  13060. },
  13061. [
  13062. {
  13063. name: "Normal",
  13064. height: math.unit(5, "meters")
  13065. },
  13066. {
  13067. name: "Macro",
  13068. height: math.unit(200, "meters")
  13069. },
  13070. {
  13071. name: "Megamacro",
  13072. height: math.unit(20, "kilometers")
  13073. },
  13074. {
  13075. name: "True Size",
  13076. height: math.unit(211, "km"),
  13077. default: true
  13078. },
  13079. {
  13080. name: "Gigamacro",
  13081. height: math.unit(1000, "km")
  13082. },
  13083. {
  13084. name: "Gigamacro+",
  13085. height: math.unit(8000, "km")
  13086. },
  13087. {
  13088. name: "Teramacro",
  13089. height: math.unit(1000000, "km")
  13090. },
  13091. ]
  13092. ))
  13093. characterMakers.push(() => makeCharacter(
  13094. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13095. {
  13096. front: {
  13097. height: math.unit(7 + 7 / 12, "feet"),
  13098. weight: math.unit(267, "lb"),
  13099. name: "Front",
  13100. image: {
  13101. source: "./media/characters/dayza/front.svg",
  13102. extra: 1262 / 1200,
  13103. bottom: 0.035
  13104. }
  13105. },
  13106. side: {
  13107. height: math.unit(7 + 7 / 12, "feet"),
  13108. weight: math.unit(267, "lb"),
  13109. name: "Side",
  13110. image: {
  13111. source: "./media/characters/dayza/side.svg",
  13112. extra: 1295 / 1245,
  13113. bottom: 0.05
  13114. }
  13115. },
  13116. back: {
  13117. height: math.unit(7 + 7 / 12, "feet"),
  13118. weight: math.unit(267, "lb"),
  13119. name: "Back",
  13120. image: {
  13121. source: "./media/characters/dayza/back.svg",
  13122. extra: 1241 / 1170
  13123. }
  13124. },
  13125. },
  13126. [
  13127. {
  13128. name: "Normal",
  13129. height: math.unit(7 + 7 / 12, "feet"),
  13130. default: true
  13131. },
  13132. {
  13133. name: "Macro",
  13134. height: math.unit(155, "feet")
  13135. },
  13136. ]
  13137. ))
  13138. characterMakers.push(() => makeCharacter(
  13139. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13140. {
  13141. front: {
  13142. height: math.unit(6 + 5 / 12, "feet"),
  13143. weight: math.unit(160, "lb"),
  13144. name: "Front",
  13145. image: {
  13146. source: "./media/characters/xanthos/front.svg",
  13147. extra: 1,
  13148. bottom: 0.04
  13149. }
  13150. },
  13151. back: {
  13152. height: math.unit(6 + 5 / 12, "feet"),
  13153. weight: math.unit(160, "lb"),
  13154. name: "Back",
  13155. image: {
  13156. source: "./media/characters/xanthos/back.svg",
  13157. extra: 1,
  13158. bottom: 0.03
  13159. }
  13160. },
  13161. hand: {
  13162. height: math.unit(0.928, "feet"),
  13163. name: "Hand",
  13164. image: {
  13165. source: "./media/characters/xanthos/hand.svg"
  13166. }
  13167. },
  13168. foot: {
  13169. height: math.unit(1.286, "feet"),
  13170. name: "Foot",
  13171. image: {
  13172. source: "./media/characters/xanthos/foot.svg"
  13173. }
  13174. },
  13175. },
  13176. [
  13177. {
  13178. name: "Normal",
  13179. height: math.unit(6 + 5 / 12, "feet"),
  13180. default: true
  13181. },
  13182. {
  13183. name: "Normal+",
  13184. height: math.unit(6, "meters")
  13185. },
  13186. {
  13187. name: "Macro",
  13188. height: math.unit(40, "feet")
  13189. },
  13190. {
  13191. name: "Macro+",
  13192. height: math.unit(200, "meters")
  13193. },
  13194. {
  13195. name: "Megamacro",
  13196. height: math.unit(20, "km")
  13197. },
  13198. {
  13199. name: "Megamacro+",
  13200. height: math.unit(100, "km")
  13201. },
  13202. {
  13203. name: "Gigamacro",
  13204. height: math.unit(200, "megameters")
  13205. },
  13206. {
  13207. name: "Gigamacro+",
  13208. height: math.unit(1.5, "gigameters")
  13209. },
  13210. ]
  13211. ))
  13212. characterMakers.push(() => makeCharacter(
  13213. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13214. {
  13215. front: {
  13216. height: math.unit(6 + 3 / 12, "feet"),
  13217. weight: math.unit(215, "lb"),
  13218. name: "Front",
  13219. image: {
  13220. source: "./media/characters/grynn/front.svg",
  13221. extra: 4627 / 4209,
  13222. bottom: 0.047
  13223. }
  13224. },
  13225. },
  13226. [
  13227. {
  13228. name: "Micro",
  13229. height: math.unit(6, "inches")
  13230. },
  13231. {
  13232. name: "Normal",
  13233. height: math.unit(6 + 3 / 12, "feet"),
  13234. default: true
  13235. },
  13236. {
  13237. name: "Big",
  13238. height: math.unit(104, "feet")
  13239. },
  13240. {
  13241. name: "Macro",
  13242. height: math.unit(944, "feet")
  13243. },
  13244. {
  13245. name: "Macro+",
  13246. height: math.unit(9480, "feet")
  13247. },
  13248. {
  13249. name: "Megamacro",
  13250. height: math.unit(78752, "feet")
  13251. },
  13252. {
  13253. name: "Megamacro+",
  13254. height: math.unit(630128, "feet")
  13255. },
  13256. {
  13257. name: "Megamacro++",
  13258. height: math.unit(3150695, "feet")
  13259. },
  13260. ]
  13261. ))
  13262. characterMakers.push(() => makeCharacter(
  13263. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13264. {
  13265. front: {
  13266. height: math.unit(7 + 5 / 12, "feet"),
  13267. weight: math.unit(450, "lb"),
  13268. name: "Front",
  13269. image: {
  13270. source: "./media/characters/mocha-aura/front.svg",
  13271. extra: 1907 / 1817,
  13272. bottom: 0.04
  13273. }
  13274. },
  13275. back: {
  13276. height: math.unit(7 + 5 / 12, "feet"),
  13277. weight: math.unit(450, "lb"),
  13278. name: "Back",
  13279. image: {
  13280. source: "./media/characters/mocha-aura/back.svg",
  13281. extra: 1900 / 1825,
  13282. bottom: 0.045
  13283. }
  13284. },
  13285. },
  13286. [
  13287. {
  13288. name: "Nano",
  13289. height: math.unit(1, "nm")
  13290. },
  13291. {
  13292. name: "Megamicro",
  13293. height: math.unit(1, "mm")
  13294. },
  13295. {
  13296. name: "Micro",
  13297. height: math.unit(3, "inches")
  13298. },
  13299. {
  13300. name: "Normal",
  13301. height: math.unit(7 + 5 / 12, "feet"),
  13302. default: true
  13303. },
  13304. {
  13305. name: "Macro",
  13306. height: math.unit(30, "feet")
  13307. },
  13308. {
  13309. name: "Megamacro",
  13310. height: math.unit(3500, "feet")
  13311. },
  13312. {
  13313. name: "Teramacro",
  13314. height: math.unit(500000, "miles")
  13315. },
  13316. {
  13317. name: "Petamacro",
  13318. height: math.unit(50000000000000000, "parsecs")
  13319. },
  13320. ]
  13321. ))
  13322. characterMakers.push(() => makeCharacter(
  13323. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13324. {
  13325. front: {
  13326. height: math.unit(6, "feet"),
  13327. weight: math.unit(150, "lb"),
  13328. name: "Front",
  13329. image: {
  13330. source: "./media/characters/ilisha-devya/front.svg",
  13331. extra: 1053/1049,
  13332. bottom: 270/1323
  13333. }
  13334. },
  13335. back: {
  13336. height: math.unit(6, "feet"),
  13337. weight: math.unit(150, "lb"),
  13338. name: "Back",
  13339. image: {
  13340. source: "./media/characters/ilisha-devya/back.svg",
  13341. extra: 1131/1128,
  13342. bottom: 39/1170
  13343. }
  13344. },
  13345. },
  13346. [
  13347. {
  13348. name: "Macro",
  13349. height: math.unit(500, "feet"),
  13350. default: true
  13351. },
  13352. {
  13353. name: "Megamacro",
  13354. height: math.unit(10, "miles")
  13355. },
  13356. {
  13357. name: "Gigamacro",
  13358. height: math.unit(100000, "miles")
  13359. },
  13360. {
  13361. name: "Examacro",
  13362. height: math.unit(1e9, "lightyears")
  13363. },
  13364. {
  13365. name: "Omniversal",
  13366. height: math.unit(1e33, "lightyears")
  13367. },
  13368. {
  13369. name: "Beyond Infinite",
  13370. height: math.unit(1e100, "lightyears")
  13371. },
  13372. ]
  13373. ))
  13374. characterMakers.push(() => makeCharacter(
  13375. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13376. {
  13377. Side: {
  13378. height: math.unit(6, "feet"),
  13379. weight: math.unit(150, "lb"),
  13380. name: "Side",
  13381. image: {
  13382. source: "./media/characters/mira/side.svg",
  13383. extra: 900 / 799,
  13384. bottom: 0.02
  13385. }
  13386. },
  13387. },
  13388. [
  13389. {
  13390. name: "Human Size",
  13391. height: math.unit(6, "feet")
  13392. },
  13393. {
  13394. name: "Macro",
  13395. height: math.unit(100, "feet"),
  13396. default: true
  13397. },
  13398. {
  13399. name: "Megamacro",
  13400. height: math.unit(10, "miles")
  13401. },
  13402. {
  13403. name: "Gigamacro",
  13404. height: math.unit(25000, "miles")
  13405. },
  13406. {
  13407. name: "Teramacro",
  13408. height: math.unit(300, "AU")
  13409. },
  13410. {
  13411. name: "Full Size",
  13412. height: math.unit(4.5e10, "lightyears")
  13413. },
  13414. ]
  13415. ))
  13416. characterMakers.push(() => makeCharacter(
  13417. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13418. {
  13419. front: {
  13420. height: math.unit(6, "feet"),
  13421. weight: math.unit(150, "lb"),
  13422. name: "Front",
  13423. image: {
  13424. source: "./media/characters/holly/front.svg",
  13425. extra: 639 / 606
  13426. }
  13427. },
  13428. back: {
  13429. height: math.unit(6, "feet"),
  13430. weight: math.unit(150, "lb"),
  13431. name: "Back",
  13432. image: {
  13433. source: "./media/characters/holly/back.svg",
  13434. extra: 623 / 598
  13435. }
  13436. },
  13437. frontWorking: {
  13438. height: math.unit(6, "feet"),
  13439. weight: math.unit(150, "lb"),
  13440. name: "Front (Working)",
  13441. image: {
  13442. source: "./media/characters/holly/front-working.svg",
  13443. extra: 607 / 577,
  13444. bottom: 0.048
  13445. }
  13446. },
  13447. },
  13448. [
  13449. {
  13450. name: "Normal",
  13451. height: math.unit(12 + 3 / 12, "feet"),
  13452. default: true
  13453. },
  13454. ]
  13455. ))
  13456. characterMakers.push(() => makeCharacter(
  13457. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13458. {
  13459. front: {
  13460. height: math.unit(6, "feet"),
  13461. weight: math.unit(150, "lb"),
  13462. name: "Front",
  13463. image: {
  13464. source: "./media/characters/porter/front.svg",
  13465. extra: 1,
  13466. bottom: 0.01
  13467. }
  13468. },
  13469. frontRobes: {
  13470. height: math.unit(6, "feet"),
  13471. weight: math.unit(150, "lb"),
  13472. name: "Front (Robes)",
  13473. image: {
  13474. source: "./media/characters/porter/front-robes.svg",
  13475. extra: 1.01,
  13476. bottom: 0.01
  13477. }
  13478. },
  13479. },
  13480. [
  13481. {
  13482. name: "Normal",
  13483. height: math.unit(11 + 9 / 12, "feet"),
  13484. default: true
  13485. },
  13486. ]
  13487. ))
  13488. characterMakers.push(() => makeCharacter(
  13489. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13490. {
  13491. legendary: {
  13492. height: math.unit(6, "feet"),
  13493. weight: math.unit(150, "lb"),
  13494. name: "Legendary",
  13495. image: {
  13496. source: "./media/characters/lucy/legendary.svg",
  13497. extra: 1355 / 1100,
  13498. bottom: 0.045
  13499. }
  13500. },
  13501. },
  13502. [
  13503. {
  13504. name: "Legendary",
  13505. height: math.unit(86882 * 2, "miles"),
  13506. default: true
  13507. },
  13508. ]
  13509. ))
  13510. characterMakers.push(() => makeCharacter(
  13511. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13512. {
  13513. front: {
  13514. height: math.unit(6, "feet"),
  13515. weight: math.unit(150, "lb"),
  13516. name: "Front",
  13517. image: {
  13518. source: "./media/characters/drusilla/front.svg",
  13519. extra: 678 / 635,
  13520. bottom: 0.03
  13521. }
  13522. },
  13523. back: {
  13524. height: math.unit(6, "feet"),
  13525. weight: math.unit(150, "lb"),
  13526. name: "Back",
  13527. image: {
  13528. source: "./media/characters/drusilla/back.svg",
  13529. extra: 678 / 635,
  13530. bottom: 0.005
  13531. }
  13532. },
  13533. },
  13534. [
  13535. {
  13536. name: "Macro",
  13537. height: math.unit(100, "feet")
  13538. },
  13539. {
  13540. name: "Canon Height",
  13541. height: math.unit(2000, "feet"),
  13542. default: true
  13543. },
  13544. ]
  13545. ))
  13546. characterMakers.push(() => makeCharacter(
  13547. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13548. {
  13549. front: {
  13550. height: math.unit(6, "feet"),
  13551. weight: math.unit(180, "lb"),
  13552. name: "Front",
  13553. image: {
  13554. source: "./media/characters/renard-thatch/front.svg",
  13555. extra: 2411 / 2275,
  13556. bottom: 0.01
  13557. }
  13558. },
  13559. frontPosing: {
  13560. height: math.unit(6, "feet"),
  13561. weight: math.unit(180, "lb"),
  13562. name: "Front (Posing)",
  13563. image: {
  13564. source: "./media/characters/renard-thatch/front-posing.svg",
  13565. extra: 2381 / 2261,
  13566. bottom: 0.01
  13567. }
  13568. },
  13569. back: {
  13570. height: math.unit(6, "feet"),
  13571. weight: math.unit(180, "lb"),
  13572. name: "Back",
  13573. image: {
  13574. source: "./media/characters/renard-thatch/back.svg",
  13575. extra: 2428 / 2288
  13576. }
  13577. },
  13578. },
  13579. [
  13580. {
  13581. name: "Micro",
  13582. height: math.unit(3, "inches")
  13583. },
  13584. {
  13585. name: "Default",
  13586. height: math.unit(6, "feet"),
  13587. default: true
  13588. },
  13589. {
  13590. name: "Macro",
  13591. height: math.unit(75, "feet")
  13592. },
  13593. ]
  13594. ))
  13595. characterMakers.push(() => makeCharacter(
  13596. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13597. {
  13598. front: {
  13599. height: math.unit(1450, "feet"),
  13600. weight: math.unit(1.21e6, "tons"),
  13601. name: "Front",
  13602. image: {
  13603. source: "./media/characters/sekvra/front.svg",
  13604. extra: 1193/1190,
  13605. bottom: 78/1271
  13606. }
  13607. },
  13608. side: {
  13609. height: math.unit(1450, "feet"),
  13610. weight: math.unit(1.21e6, "tons"),
  13611. name: "Side",
  13612. image: {
  13613. source: "./media/characters/sekvra/side.svg",
  13614. extra: 1193/1190,
  13615. bottom: 52/1245
  13616. }
  13617. },
  13618. back: {
  13619. height: math.unit(1450, "feet"),
  13620. weight: math.unit(1.21e6, "tons"),
  13621. name: "Back",
  13622. image: {
  13623. source: "./media/characters/sekvra/back.svg",
  13624. extra: 1219/1216,
  13625. bottom: 21/1240
  13626. }
  13627. },
  13628. frontClothed: {
  13629. height: math.unit(1450, "feet"),
  13630. weight: math.unit(1.21e6, "tons"),
  13631. name: "Front (Clothed)",
  13632. image: {
  13633. source: "./media/characters/sekvra/front-clothed.svg",
  13634. extra: 1192/1189,
  13635. bottom: 79/1271
  13636. }
  13637. },
  13638. },
  13639. [
  13640. {
  13641. name: "Macro",
  13642. height: math.unit(1450, "feet"),
  13643. default: true
  13644. },
  13645. {
  13646. name: "Megamacro",
  13647. height: math.unit(15000, "feet")
  13648. },
  13649. ]
  13650. ))
  13651. characterMakers.push(() => makeCharacter(
  13652. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13653. {
  13654. front: {
  13655. height: math.unit(6, "feet"),
  13656. weight: math.unit(150, "lb"),
  13657. name: "Front",
  13658. image: {
  13659. source: "./media/characters/carmine/front.svg",
  13660. extra: 1,
  13661. bottom: 0.035
  13662. }
  13663. },
  13664. frontArmor: {
  13665. height: math.unit(6, "feet"),
  13666. weight: math.unit(150, "lb"),
  13667. name: "Front (Armor)",
  13668. image: {
  13669. source: "./media/characters/carmine/front-armor.svg",
  13670. extra: 1,
  13671. bottom: 0.035
  13672. }
  13673. },
  13674. },
  13675. [
  13676. {
  13677. name: "Large",
  13678. height: math.unit(1, "mile")
  13679. },
  13680. {
  13681. name: "Huge",
  13682. height: math.unit(40, "miles"),
  13683. default: true
  13684. },
  13685. {
  13686. name: "Colossal",
  13687. height: math.unit(2500, "miles")
  13688. },
  13689. ]
  13690. ))
  13691. characterMakers.push(() => makeCharacter(
  13692. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13693. {
  13694. front: {
  13695. height: math.unit(6, "feet"),
  13696. weight: math.unit(150, "lb"),
  13697. name: "Front",
  13698. image: {
  13699. source: "./media/characters/elyssia/front.svg",
  13700. extra: 2201 / 2035,
  13701. bottom: 0.05
  13702. }
  13703. },
  13704. frontClothed: {
  13705. height: math.unit(6, "feet"),
  13706. weight: math.unit(150, "lb"),
  13707. name: "Front (Clothed)",
  13708. image: {
  13709. source: "./media/characters/elyssia/front-clothed.svg",
  13710. extra: 2201 / 2035,
  13711. bottom: 0.05
  13712. }
  13713. },
  13714. back: {
  13715. height: math.unit(6, "feet"),
  13716. weight: math.unit(150, "lb"),
  13717. name: "Back",
  13718. image: {
  13719. source: "./media/characters/elyssia/back.svg",
  13720. extra: 2201 / 2035,
  13721. bottom: 0.013
  13722. }
  13723. },
  13724. },
  13725. [
  13726. {
  13727. name: "Smaller",
  13728. height: math.unit(150, "feet")
  13729. },
  13730. {
  13731. name: "Standard",
  13732. height: math.unit(1400, "feet"),
  13733. default: true
  13734. },
  13735. {
  13736. name: "Distracted",
  13737. height: math.unit(15000, "feet")
  13738. },
  13739. ]
  13740. ))
  13741. characterMakers.push(() => makeCharacter(
  13742. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13743. {
  13744. front: {
  13745. height: math.unit(7 + 4/12, "feet"),
  13746. weight: math.unit(690, "lb"),
  13747. name: "Front",
  13748. image: {
  13749. source: "./media/characters/geno-maxwell/front.svg",
  13750. extra: 984/856,
  13751. bottom: 87/1071
  13752. }
  13753. },
  13754. back: {
  13755. height: math.unit(7 + 4/12, "feet"),
  13756. weight: math.unit(690, "lb"),
  13757. name: "Back",
  13758. image: {
  13759. source: "./media/characters/geno-maxwell/back.svg",
  13760. extra: 981/854,
  13761. bottom: 57/1038
  13762. }
  13763. },
  13764. frontCostume: {
  13765. height: math.unit(7 + 4/12, "feet"),
  13766. weight: math.unit(690, "lb"),
  13767. name: "Front (Costume)",
  13768. image: {
  13769. source: "./media/characters/geno-maxwell/front-costume.svg",
  13770. extra: 984/856,
  13771. bottom: 87/1071
  13772. }
  13773. },
  13774. backcostume: {
  13775. height: math.unit(7 + 4/12, "feet"),
  13776. weight: math.unit(690, "lb"),
  13777. name: "Back (Costume)",
  13778. image: {
  13779. source: "./media/characters/geno-maxwell/back-costume.svg",
  13780. extra: 981/854,
  13781. bottom: 57/1038
  13782. }
  13783. },
  13784. },
  13785. [
  13786. {
  13787. name: "Micro",
  13788. height: math.unit(3, "inches")
  13789. },
  13790. {
  13791. name: "Normal",
  13792. height: math.unit(7 + 4 / 12, "feet"),
  13793. default: true
  13794. },
  13795. {
  13796. name: "Macro",
  13797. height: math.unit(220, "feet")
  13798. },
  13799. {
  13800. name: "Megamacro",
  13801. height: math.unit(11, "miles")
  13802. },
  13803. ]
  13804. ))
  13805. characterMakers.push(() => makeCharacter(
  13806. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13807. {
  13808. front: {
  13809. height: math.unit(7 + 4/12, "feet"),
  13810. weight: math.unit(750, "lb"),
  13811. name: "Front",
  13812. image: {
  13813. source: "./media/characters/regena-maxwell/front.svg",
  13814. extra: 984/856,
  13815. bottom: 87/1071
  13816. }
  13817. },
  13818. back: {
  13819. height: math.unit(7 + 4/12, "feet"),
  13820. weight: math.unit(750, "lb"),
  13821. name: "Back",
  13822. image: {
  13823. source: "./media/characters/regena-maxwell/back.svg",
  13824. extra: 981/854,
  13825. bottom: 57/1038
  13826. }
  13827. },
  13828. frontCostume: {
  13829. height: math.unit(7 + 4/12, "feet"),
  13830. weight: math.unit(750, "lb"),
  13831. name: "Front (Costume)",
  13832. image: {
  13833. source: "./media/characters/regena-maxwell/front-costume.svg",
  13834. extra: 984/856,
  13835. bottom: 87/1071
  13836. }
  13837. },
  13838. backcostume: {
  13839. height: math.unit(7 + 4/12, "feet"),
  13840. weight: math.unit(750, "lb"),
  13841. name: "Back (Costume)",
  13842. image: {
  13843. source: "./media/characters/regena-maxwell/back-costume.svg",
  13844. extra: 981/854,
  13845. bottom: 57/1038
  13846. }
  13847. },
  13848. },
  13849. [
  13850. {
  13851. name: "Normal",
  13852. height: math.unit(7 + 4 / 12, "feet"),
  13853. default: true
  13854. },
  13855. {
  13856. name: "Macro",
  13857. height: math.unit(220, "feet")
  13858. },
  13859. {
  13860. name: "Megamacro",
  13861. height: math.unit(11, "miles")
  13862. },
  13863. ]
  13864. ))
  13865. characterMakers.push(() => makeCharacter(
  13866. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13867. {
  13868. front: {
  13869. height: math.unit(6, "feet"),
  13870. weight: math.unit(150, "lb"),
  13871. name: "Front",
  13872. image: {
  13873. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13874. extra: 860 / 690,
  13875. bottom: 0.03
  13876. }
  13877. },
  13878. },
  13879. [
  13880. {
  13881. name: "Normal",
  13882. height: math.unit(1.7, "meters"),
  13883. default: true
  13884. },
  13885. ]
  13886. ))
  13887. characterMakers.push(() => makeCharacter(
  13888. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13889. {
  13890. front: {
  13891. height: math.unit(6, "feet"),
  13892. weight: math.unit(150, "lb"),
  13893. name: "Front",
  13894. image: {
  13895. source: "./media/characters/quilly/front.svg",
  13896. extra: 890 / 776
  13897. }
  13898. },
  13899. },
  13900. [
  13901. {
  13902. name: "Gigamacro",
  13903. height: math.unit(404090, "miles"),
  13904. default: true
  13905. },
  13906. ]
  13907. ))
  13908. characterMakers.push(() => makeCharacter(
  13909. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13910. {
  13911. front: {
  13912. height: math.unit(7 + 8 / 12, "feet"),
  13913. weight: math.unit(350, "lb"),
  13914. name: "Front",
  13915. image: {
  13916. source: "./media/characters/tempest/front.svg",
  13917. extra: 1175 / 1086,
  13918. bottom: 0.02
  13919. }
  13920. },
  13921. },
  13922. [
  13923. {
  13924. name: "Normal",
  13925. height: math.unit(7 + 8 / 12, "feet"),
  13926. default: true
  13927. },
  13928. ]
  13929. ))
  13930. characterMakers.push(() => makeCharacter(
  13931. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13932. {
  13933. side: {
  13934. height: math.unit(4 + 5 / 12, "feet"),
  13935. weight: math.unit(80, "lb"),
  13936. name: "Side",
  13937. image: {
  13938. source: "./media/characters/rodger/side.svg",
  13939. extra: 1235 / 1118
  13940. }
  13941. },
  13942. },
  13943. [
  13944. {
  13945. name: "Micro",
  13946. height: math.unit(1, "inch")
  13947. },
  13948. {
  13949. name: "Normal",
  13950. height: math.unit(4 + 5 / 12, "feet"),
  13951. default: true
  13952. },
  13953. {
  13954. name: "Macro",
  13955. height: math.unit(120, "feet")
  13956. },
  13957. ]
  13958. ))
  13959. characterMakers.push(() => makeCharacter(
  13960. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13961. {
  13962. front: {
  13963. height: math.unit(6, "feet"),
  13964. weight: math.unit(150, "lb"),
  13965. name: "Front",
  13966. image: {
  13967. source: "./media/characters/danyel/front.svg",
  13968. extra: 1185 / 1123,
  13969. bottom: 0.05
  13970. }
  13971. },
  13972. },
  13973. [
  13974. {
  13975. name: "Shrunken",
  13976. height: math.unit(0.5, "mm")
  13977. },
  13978. {
  13979. name: "Micro",
  13980. height: math.unit(1, "mm"),
  13981. default: true
  13982. },
  13983. {
  13984. name: "Upsized",
  13985. height: math.unit(5 + 5 / 12, "feet")
  13986. },
  13987. ]
  13988. ))
  13989. characterMakers.push(() => makeCharacter(
  13990. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13991. {
  13992. front: {
  13993. height: math.unit(5 + 6 / 12, "feet"),
  13994. weight: math.unit(200, "lb"),
  13995. name: "Front",
  13996. image: {
  13997. source: "./media/characters/vivian-bijoux/front.svg",
  13998. extra: 1217/1209,
  13999. bottom: 76/1293
  14000. }
  14001. },
  14002. back: {
  14003. height: math.unit(5 + 6 / 12, "feet"),
  14004. weight: math.unit(200, "lb"),
  14005. name: "Back",
  14006. image: {
  14007. source: "./media/characters/vivian-bijoux/back.svg",
  14008. extra: 1214/1208,
  14009. bottom: 51/1265
  14010. }
  14011. },
  14012. dressed: {
  14013. height: math.unit(5 + 6 / 12, "feet"),
  14014. weight: math.unit(200, "lb"),
  14015. name: "Dressed",
  14016. image: {
  14017. source: "./media/characters/vivian-bijoux/dressed.svg",
  14018. extra: 1217/1209,
  14019. bottom: 76/1293
  14020. }
  14021. },
  14022. },
  14023. [
  14024. {
  14025. name: "Normal",
  14026. height: math.unit(5 + 6 / 12, "feet"),
  14027. default: true
  14028. },
  14029. {
  14030. name: "Bad Dream",
  14031. height: math.unit(500, "feet")
  14032. },
  14033. {
  14034. name: "Nightmare",
  14035. height: math.unit(500, "miles")
  14036. },
  14037. ]
  14038. ))
  14039. characterMakers.push(() => makeCharacter(
  14040. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14041. {
  14042. front: {
  14043. height: math.unit(6 + 1 / 12, "feet"),
  14044. weight: math.unit(260, "lb"),
  14045. name: "Front",
  14046. image: {
  14047. source: "./media/characters/zeta/front.svg",
  14048. extra: 1968 / 1889,
  14049. bottom: 0.06
  14050. }
  14051. },
  14052. back: {
  14053. height: math.unit(6 + 1 / 12, "feet"),
  14054. weight: math.unit(260, "lb"),
  14055. name: "Back",
  14056. image: {
  14057. source: "./media/characters/zeta/back.svg",
  14058. extra: 1944 / 1858,
  14059. bottom: 0.03
  14060. }
  14061. },
  14062. hand: {
  14063. height: math.unit(1.112, "feet"),
  14064. name: "Hand",
  14065. image: {
  14066. source: "./media/characters/zeta/hand.svg"
  14067. }
  14068. },
  14069. foot: {
  14070. height: math.unit(1.48, "feet"),
  14071. name: "Foot",
  14072. image: {
  14073. source: "./media/characters/zeta/foot.svg"
  14074. }
  14075. },
  14076. },
  14077. [
  14078. {
  14079. name: "Micro",
  14080. height: math.unit(6, "inches")
  14081. },
  14082. {
  14083. name: "Normal",
  14084. height: math.unit(6 + 1 / 12, "feet"),
  14085. default: true
  14086. },
  14087. {
  14088. name: "Macro",
  14089. height: math.unit(20, "feet")
  14090. },
  14091. ]
  14092. ))
  14093. characterMakers.push(() => makeCharacter(
  14094. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14095. {
  14096. front: {
  14097. height: math.unit(6, "feet"),
  14098. weight: math.unit(150, "lb"),
  14099. name: "Front",
  14100. image: {
  14101. source: "./media/characters/jamie-larsen/front.svg",
  14102. extra: 962 / 933,
  14103. bottom: 0.02
  14104. }
  14105. },
  14106. back: {
  14107. height: math.unit(6, "feet"),
  14108. weight: math.unit(150, "lb"),
  14109. name: "Back",
  14110. image: {
  14111. source: "./media/characters/jamie-larsen/back.svg",
  14112. extra: 997 / 946
  14113. }
  14114. },
  14115. },
  14116. [
  14117. {
  14118. name: "Macro",
  14119. height: math.unit(28 + 7 / 12, "feet"),
  14120. default: true
  14121. },
  14122. {
  14123. name: "Macro+",
  14124. height: math.unit(180, "feet")
  14125. },
  14126. {
  14127. name: "Megamacro",
  14128. height: math.unit(10, "miles")
  14129. },
  14130. {
  14131. name: "Gigamacro",
  14132. height: math.unit(200000, "miles")
  14133. },
  14134. ]
  14135. ))
  14136. characterMakers.push(() => makeCharacter(
  14137. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14138. {
  14139. front: {
  14140. height: math.unit(6, "feet"),
  14141. weight: math.unit(120, "lb"),
  14142. name: "Front",
  14143. image: {
  14144. source: "./media/characters/vance/front.svg",
  14145. extra: 1980 / 1890,
  14146. bottom: 0.09
  14147. }
  14148. },
  14149. back: {
  14150. height: math.unit(6, "feet"),
  14151. weight: math.unit(120, "lb"),
  14152. name: "Back",
  14153. image: {
  14154. source: "./media/characters/vance/back.svg",
  14155. extra: 2081 / 1994,
  14156. bottom: 0.014
  14157. }
  14158. },
  14159. hand: {
  14160. height: math.unit(0.88, "feet"),
  14161. name: "Hand",
  14162. image: {
  14163. source: "./media/characters/vance/hand.svg"
  14164. }
  14165. },
  14166. foot: {
  14167. height: math.unit(0.64, "feet"),
  14168. name: "Foot",
  14169. image: {
  14170. source: "./media/characters/vance/foot.svg"
  14171. }
  14172. },
  14173. },
  14174. [
  14175. {
  14176. name: "Small",
  14177. height: math.unit(90, "feet"),
  14178. default: true
  14179. },
  14180. {
  14181. name: "Macro",
  14182. height: math.unit(100, "meters")
  14183. },
  14184. {
  14185. name: "Megamacro",
  14186. height: math.unit(15, "miles")
  14187. },
  14188. ]
  14189. ))
  14190. characterMakers.push(() => makeCharacter(
  14191. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14192. {
  14193. front: {
  14194. height: math.unit(6, "feet"),
  14195. weight: math.unit(180, "lb"),
  14196. name: "Front",
  14197. image: {
  14198. source: "./media/characters/xochitl/front.svg",
  14199. extra: 2297 / 2261,
  14200. bottom: 0.065
  14201. }
  14202. },
  14203. back: {
  14204. height: math.unit(6, "feet"),
  14205. weight: math.unit(180, "lb"),
  14206. name: "Back",
  14207. image: {
  14208. source: "./media/characters/xochitl/back.svg",
  14209. extra: 2386 / 2354,
  14210. bottom: 0.01
  14211. }
  14212. },
  14213. foot: {
  14214. height: math.unit(6 / 5 * 1.15, "feet"),
  14215. weight: math.unit(150, "lb"),
  14216. name: "Foot",
  14217. image: {
  14218. source: "./media/characters/xochitl/foot.svg"
  14219. }
  14220. },
  14221. },
  14222. [
  14223. {
  14224. name: "Macro",
  14225. height: math.unit(80, "feet")
  14226. },
  14227. {
  14228. name: "Macro+",
  14229. height: math.unit(400, "feet"),
  14230. default: true
  14231. },
  14232. {
  14233. name: "Gigamacro",
  14234. height: math.unit(80000, "miles")
  14235. },
  14236. {
  14237. name: "Gigamacro+",
  14238. height: math.unit(400000, "miles")
  14239. },
  14240. {
  14241. name: "Teramacro",
  14242. height: math.unit(300, "AU")
  14243. },
  14244. ]
  14245. ))
  14246. characterMakers.push(() => makeCharacter(
  14247. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14248. {
  14249. front: {
  14250. height: math.unit(6, "feet"),
  14251. weight: math.unit(150, "lb"),
  14252. name: "Front",
  14253. image: {
  14254. source: "./media/characters/vincent/front.svg",
  14255. extra: 1130 / 1080,
  14256. bottom: 0.055
  14257. }
  14258. },
  14259. beak: {
  14260. height: math.unit(6 * 0.1, "feet"),
  14261. name: "Beak",
  14262. image: {
  14263. source: "./media/characters/vincent/beak.svg"
  14264. }
  14265. },
  14266. hand: {
  14267. height: math.unit(6 * 0.85, "feet"),
  14268. weight: math.unit(150, "lb"),
  14269. name: "Hand",
  14270. image: {
  14271. source: "./media/characters/vincent/hand.svg"
  14272. }
  14273. },
  14274. foot: {
  14275. height: math.unit(6 * 0.19, "feet"),
  14276. weight: math.unit(150, "lb"),
  14277. name: "Foot",
  14278. image: {
  14279. source: "./media/characters/vincent/foot.svg"
  14280. }
  14281. },
  14282. },
  14283. [
  14284. {
  14285. name: "Base",
  14286. height: math.unit(6 + 5 / 12, "feet"),
  14287. default: true
  14288. },
  14289. {
  14290. name: "Macro",
  14291. height: math.unit(300, "feet")
  14292. },
  14293. {
  14294. name: "Megamacro",
  14295. height: math.unit(2, "miles")
  14296. },
  14297. {
  14298. name: "Gigamacro",
  14299. height: math.unit(1000, "miles")
  14300. },
  14301. ]
  14302. ))
  14303. characterMakers.push(() => makeCharacter(
  14304. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14305. {
  14306. front: {
  14307. height: math.unit(2, "meters"),
  14308. weight: math.unit(500, "kg"),
  14309. name: "Front",
  14310. image: {
  14311. source: "./media/characters/coatl/front.svg",
  14312. extra: 3948 / 3500,
  14313. bottom: 0.082
  14314. }
  14315. },
  14316. },
  14317. [
  14318. {
  14319. name: "Normal",
  14320. height: math.unit(4, "meters")
  14321. },
  14322. {
  14323. name: "Macro",
  14324. height: math.unit(100, "meters"),
  14325. default: true
  14326. },
  14327. {
  14328. name: "Macro+",
  14329. height: math.unit(300, "meters")
  14330. },
  14331. {
  14332. name: "Megamacro",
  14333. height: math.unit(3, "gigameters")
  14334. },
  14335. {
  14336. name: "Megamacro+",
  14337. height: math.unit(300, "terameters")
  14338. },
  14339. {
  14340. name: "Megamacro++",
  14341. height: math.unit(3, "lightyears")
  14342. },
  14343. ]
  14344. ))
  14345. characterMakers.push(() => makeCharacter(
  14346. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14347. {
  14348. front: {
  14349. height: math.unit(6, "feet"),
  14350. weight: math.unit(50, "kg"),
  14351. name: "front",
  14352. image: {
  14353. source: "./media/characters/shiroryu/front.svg",
  14354. extra: 1990 / 1935
  14355. }
  14356. },
  14357. },
  14358. [
  14359. {
  14360. name: "Mortal Mingling",
  14361. height: math.unit(3, "meters")
  14362. },
  14363. {
  14364. name: "Kaiju-ish",
  14365. height: math.unit(250, "meters")
  14366. },
  14367. {
  14368. name: "Somewhat Godly",
  14369. height: math.unit(400, "km"),
  14370. default: true
  14371. },
  14372. {
  14373. name: "Planetary",
  14374. height: math.unit(300, "megameters")
  14375. },
  14376. {
  14377. name: "Galaxy-dwarfing",
  14378. height: math.unit(450, "kiloparsecs")
  14379. },
  14380. {
  14381. name: "Universe Eater",
  14382. height: math.unit(150, "gigaparsecs")
  14383. },
  14384. {
  14385. name: "Almost Immeasurable",
  14386. height: math.unit(1.3e266, "yottaparsecs")
  14387. },
  14388. ]
  14389. ))
  14390. characterMakers.push(() => makeCharacter(
  14391. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14392. {
  14393. front: {
  14394. height: math.unit(6, "feet"),
  14395. weight: math.unit(150, "lb"),
  14396. name: "Front",
  14397. image: {
  14398. source: "./media/characters/umeko/front.svg",
  14399. extra: 1,
  14400. bottom: 0.019
  14401. }
  14402. },
  14403. frontArmored: {
  14404. height: math.unit(6, "feet"),
  14405. weight: math.unit(150, "lb"),
  14406. name: "Front (Armored)",
  14407. image: {
  14408. source: "./media/characters/umeko/front-armored.svg",
  14409. extra: 1,
  14410. bottom: 0.021
  14411. }
  14412. },
  14413. },
  14414. [
  14415. {
  14416. name: "Macro",
  14417. height: math.unit(220, "feet"),
  14418. default: true
  14419. },
  14420. {
  14421. name: "Guardian Dragon",
  14422. height: math.unit(50, "miles")
  14423. },
  14424. {
  14425. name: "Cosmic",
  14426. height: math.unit(800000, "miles")
  14427. },
  14428. ]
  14429. ))
  14430. characterMakers.push(() => makeCharacter(
  14431. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14432. {
  14433. front: {
  14434. height: math.unit(6, "feet"),
  14435. weight: math.unit(150, "lb"),
  14436. name: "Front",
  14437. image: {
  14438. source: "./media/characters/cassidy/front.svg",
  14439. extra: 810/808,
  14440. bottom: 41/851
  14441. }
  14442. },
  14443. },
  14444. [
  14445. {
  14446. name: "Canon Height",
  14447. height: math.unit(120, "feet"),
  14448. default: true
  14449. },
  14450. {
  14451. name: "Macro+",
  14452. height: math.unit(400, "feet")
  14453. },
  14454. {
  14455. name: "Macro++",
  14456. height: math.unit(4000, "feet")
  14457. },
  14458. {
  14459. name: "Megamacro",
  14460. height: math.unit(3, "miles")
  14461. },
  14462. ]
  14463. ))
  14464. characterMakers.push(() => makeCharacter(
  14465. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14466. {
  14467. front: {
  14468. height: math.unit(6, "feet"),
  14469. weight: math.unit(150, "lb"),
  14470. name: "Front",
  14471. image: {
  14472. source: "./media/characters/isaac/front.svg",
  14473. extra: 896 / 815,
  14474. bottom: 0.11
  14475. }
  14476. },
  14477. },
  14478. [
  14479. {
  14480. name: "Human Size",
  14481. height: math.unit(8, "feet"),
  14482. default: true
  14483. },
  14484. {
  14485. name: "Macro",
  14486. height: math.unit(400, "feet")
  14487. },
  14488. {
  14489. name: "Megamacro",
  14490. height: math.unit(50, "miles")
  14491. },
  14492. {
  14493. name: "Canon Height",
  14494. height: math.unit(200, "AU")
  14495. },
  14496. ]
  14497. ))
  14498. characterMakers.push(() => makeCharacter(
  14499. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14500. {
  14501. front: {
  14502. height: math.unit(6, "feet"),
  14503. weight: math.unit(72, "kg"),
  14504. name: "Front",
  14505. image: {
  14506. source: "./media/characters/sleekit/front.svg",
  14507. extra: 4693 / 4487,
  14508. bottom: 0.012
  14509. }
  14510. },
  14511. },
  14512. [
  14513. {
  14514. name: "Minimum Height",
  14515. height: math.unit(10, "meters")
  14516. },
  14517. {
  14518. name: "Smaller",
  14519. height: math.unit(25, "meters")
  14520. },
  14521. {
  14522. name: "Larger",
  14523. height: math.unit(38, "meters"),
  14524. default: true
  14525. },
  14526. {
  14527. name: "Maximum height",
  14528. height: math.unit(100, "meters")
  14529. },
  14530. ]
  14531. ))
  14532. characterMakers.push(() => makeCharacter(
  14533. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14534. {
  14535. front: {
  14536. height: math.unit(6, "feet"),
  14537. weight: math.unit(150, "lb"),
  14538. name: "Front",
  14539. image: {
  14540. source: "./media/characters/nillia/front.svg",
  14541. extra: 2195 / 2037,
  14542. bottom: 0.005
  14543. }
  14544. },
  14545. back: {
  14546. height: math.unit(6, "feet"),
  14547. weight: math.unit(150, "lb"),
  14548. name: "Back",
  14549. image: {
  14550. source: "./media/characters/nillia/back.svg",
  14551. extra: 2195 / 2037,
  14552. bottom: 0.005
  14553. }
  14554. },
  14555. },
  14556. [
  14557. {
  14558. name: "Canon Height",
  14559. height: math.unit(489, "feet"),
  14560. default: true
  14561. }
  14562. ]
  14563. ))
  14564. characterMakers.push(() => makeCharacter(
  14565. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14566. {
  14567. front: {
  14568. height: math.unit(6, "feet"),
  14569. weight: math.unit(150, "lb"),
  14570. name: "Front",
  14571. image: {
  14572. source: "./media/characters/mesmyriza/front.svg",
  14573. extra: 2067 / 1784,
  14574. bottom: 0.035
  14575. }
  14576. },
  14577. foot: {
  14578. height: math.unit(6 / (250 / 35), "feet"),
  14579. name: "Foot",
  14580. image: {
  14581. source: "./media/characters/mesmyriza/foot.svg"
  14582. }
  14583. },
  14584. },
  14585. [
  14586. {
  14587. name: "Macro",
  14588. height: math.unit(457, "meters"),
  14589. default: true
  14590. },
  14591. {
  14592. name: "Megamacro",
  14593. height: math.unit(8, "megameters")
  14594. },
  14595. ]
  14596. ))
  14597. characterMakers.push(() => makeCharacter(
  14598. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14599. {
  14600. front: {
  14601. height: math.unit(6, "feet"),
  14602. weight: math.unit(250, "lb"),
  14603. name: "Front",
  14604. image: {
  14605. source: "./media/characters/saudade/front.svg",
  14606. extra: 1172 / 1139,
  14607. bottom: 0.035
  14608. }
  14609. },
  14610. },
  14611. [
  14612. {
  14613. name: "Micro",
  14614. height: math.unit(3, "inches")
  14615. },
  14616. {
  14617. name: "Normal",
  14618. height: math.unit(6, "feet"),
  14619. default: true
  14620. },
  14621. {
  14622. name: "Macro",
  14623. height: math.unit(50, "feet")
  14624. },
  14625. {
  14626. name: "Megamacro",
  14627. height: math.unit(2800, "feet")
  14628. },
  14629. ]
  14630. ))
  14631. characterMakers.push(() => makeCharacter(
  14632. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14633. {
  14634. front: {
  14635. height: math.unit(5 + 4 / 12, "feet"),
  14636. weight: math.unit(100, "lb"),
  14637. name: "Front",
  14638. image: {
  14639. source: "./media/characters/keireer/front.svg",
  14640. extra: 716 / 666,
  14641. bottom: 0.05
  14642. }
  14643. },
  14644. },
  14645. [
  14646. {
  14647. name: "Normal",
  14648. height: math.unit(5 + 4 / 12, "feet"),
  14649. default: true
  14650. },
  14651. ]
  14652. ))
  14653. characterMakers.push(() => makeCharacter(
  14654. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14655. {
  14656. front: {
  14657. height: math.unit(6, "feet"),
  14658. weight: math.unit(90, "kg"),
  14659. name: "Front",
  14660. image: {
  14661. source: "./media/characters/mirja/front.svg",
  14662. extra: 1789 / 1683,
  14663. bottom: 0.05
  14664. }
  14665. },
  14666. frontDressed: {
  14667. height: math.unit(6, "feet"),
  14668. weight: math.unit(90, "lb"),
  14669. name: "Front (Dressed)",
  14670. image: {
  14671. source: "./media/characters/mirja/front-dressed.svg",
  14672. extra: 1789 / 1683,
  14673. bottom: 0.05
  14674. }
  14675. },
  14676. back: {
  14677. height: math.unit(6, "feet"),
  14678. weight: math.unit(90, "lb"),
  14679. name: "Back",
  14680. image: {
  14681. source: "./media/characters/mirja/back.svg",
  14682. extra: 953 / 917,
  14683. bottom: 0.017
  14684. }
  14685. },
  14686. },
  14687. [
  14688. {
  14689. name: "\"Incognito\"",
  14690. height: math.unit(3, "meters")
  14691. },
  14692. {
  14693. name: "Strolling Size",
  14694. height: math.unit(15, "km")
  14695. },
  14696. {
  14697. name: "Larger Strolling Size",
  14698. height: math.unit(400, "km")
  14699. },
  14700. {
  14701. name: "Preferred Size",
  14702. height: math.unit(5000, "km")
  14703. },
  14704. {
  14705. name: "True Size",
  14706. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14707. default: true
  14708. },
  14709. ]
  14710. ))
  14711. characterMakers.push(() => makeCharacter(
  14712. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14713. {
  14714. front: {
  14715. height: math.unit(15, "feet"),
  14716. weight: math.unit(880, "kg"),
  14717. name: "Front",
  14718. image: {
  14719. source: "./media/characters/nightraver/front.svg",
  14720. extra: 2444 / 2160,
  14721. bottom: 0.027
  14722. }
  14723. },
  14724. back: {
  14725. height: math.unit(15, "feet"),
  14726. weight: math.unit(880, "kg"),
  14727. name: "Back",
  14728. image: {
  14729. source: "./media/characters/nightraver/back.svg",
  14730. extra: 2309 / 2180,
  14731. bottom: 0.005
  14732. }
  14733. },
  14734. sole: {
  14735. height: math.unit(2.878, "feet"),
  14736. name: "Sole",
  14737. image: {
  14738. source: "./media/characters/nightraver/sole.svg"
  14739. }
  14740. },
  14741. foot: {
  14742. height: math.unit(2.285, "feet"),
  14743. name: "Foot",
  14744. image: {
  14745. source: "./media/characters/nightraver/foot.svg"
  14746. }
  14747. },
  14748. maw: {
  14749. height: math.unit(2.67, "feet"),
  14750. name: "Maw",
  14751. image: {
  14752. source: "./media/characters/nightraver/maw.svg"
  14753. }
  14754. },
  14755. },
  14756. [
  14757. {
  14758. name: "Micro",
  14759. height: math.unit(1, "cm")
  14760. },
  14761. {
  14762. name: "Normal",
  14763. height: math.unit(15, "feet"),
  14764. default: true
  14765. },
  14766. {
  14767. name: "Macro",
  14768. height: math.unit(300, "feet")
  14769. },
  14770. {
  14771. name: "Megamacro",
  14772. height: math.unit(300, "miles")
  14773. },
  14774. {
  14775. name: "Gigamacro",
  14776. height: math.unit(10000, "miles")
  14777. },
  14778. ]
  14779. ))
  14780. characterMakers.push(() => makeCharacter(
  14781. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14782. {
  14783. side: {
  14784. height: math.unit(2, "inches"),
  14785. weight: math.unit(5, "grams"),
  14786. name: "Side",
  14787. image: {
  14788. source: "./media/characters/arc/side.svg"
  14789. }
  14790. },
  14791. },
  14792. [
  14793. {
  14794. name: "Micro",
  14795. height: math.unit(2, "inches"),
  14796. default: true
  14797. },
  14798. ]
  14799. ))
  14800. characterMakers.push(() => makeCharacter(
  14801. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14802. {
  14803. front: {
  14804. height: math.unit(1.1938, "meters"),
  14805. weight: math.unit(54, "kg"),
  14806. name: "Front",
  14807. image: {
  14808. source: "./media/characters/nebula-shahar/front.svg",
  14809. extra: 1642 / 1436,
  14810. bottom: 0.06
  14811. }
  14812. },
  14813. },
  14814. [
  14815. {
  14816. name: "Megamicro",
  14817. height: math.unit(0.3, "mm")
  14818. },
  14819. {
  14820. name: "Micro",
  14821. height: math.unit(3, "cm")
  14822. },
  14823. {
  14824. name: "Normal",
  14825. height: math.unit(138, "cm"),
  14826. default: true
  14827. },
  14828. {
  14829. name: "Macro",
  14830. height: math.unit(30, "m")
  14831. },
  14832. ]
  14833. ))
  14834. characterMakers.push(() => makeCharacter(
  14835. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14836. {
  14837. front: {
  14838. height: math.unit(5.24, "feet"),
  14839. weight: math.unit(150, "lb"),
  14840. name: "Front",
  14841. image: {
  14842. source: "./media/characters/shayla/front.svg",
  14843. extra: 1512 / 1414,
  14844. bottom: 0.01
  14845. }
  14846. },
  14847. back: {
  14848. height: math.unit(5.24, "feet"),
  14849. weight: math.unit(150, "lb"),
  14850. name: "Back",
  14851. image: {
  14852. source: "./media/characters/shayla/back.svg",
  14853. extra: 1512 / 1414
  14854. }
  14855. },
  14856. hand: {
  14857. height: math.unit(0.7781496062992126, "feet"),
  14858. name: "Hand",
  14859. image: {
  14860. source: "./media/characters/shayla/hand.svg"
  14861. }
  14862. },
  14863. foot: {
  14864. height: math.unit(1.4206036745406823, "feet"),
  14865. name: "Foot",
  14866. image: {
  14867. source: "./media/characters/shayla/foot.svg"
  14868. }
  14869. },
  14870. },
  14871. [
  14872. {
  14873. name: "Micro",
  14874. height: math.unit(0.32, "feet")
  14875. },
  14876. {
  14877. name: "Normal",
  14878. height: math.unit(5.24, "feet"),
  14879. default: true
  14880. },
  14881. {
  14882. name: "Macro",
  14883. height: math.unit(492.12, "feet")
  14884. },
  14885. {
  14886. name: "Megamacro",
  14887. height: math.unit(186.41, "miles")
  14888. },
  14889. ]
  14890. ))
  14891. characterMakers.push(() => makeCharacter(
  14892. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14893. {
  14894. front: {
  14895. height: math.unit(2.2, "m"),
  14896. weight: math.unit(120, "kg"),
  14897. name: "Front",
  14898. image: {
  14899. source: "./media/characters/pia-jr/front.svg",
  14900. extra: 1000 / 970,
  14901. bottom: 0.035
  14902. }
  14903. },
  14904. hand: {
  14905. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14906. name: "Hand",
  14907. image: {
  14908. source: "./media/characters/pia-jr/hand.svg"
  14909. }
  14910. },
  14911. paw: {
  14912. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14913. name: "Paw",
  14914. image: {
  14915. source: "./media/characters/pia-jr/paw.svg"
  14916. }
  14917. },
  14918. },
  14919. [
  14920. {
  14921. name: "Micro",
  14922. height: math.unit(1.2, "cm")
  14923. },
  14924. {
  14925. name: "Normal",
  14926. height: math.unit(2.2, "m"),
  14927. default: true
  14928. },
  14929. {
  14930. name: "Macro",
  14931. height: math.unit(180, "m")
  14932. },
  14933. {
  14934. name: "Megamacro",
  14935. height: math.unit(420, "km")
  14936. },
  14937. ]
  14938. ))
  14939. characterMakers.push(() => makeCharacter(
  14940. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14941. {
  14942. front: {
  14943. height: math.unit(2, "m"),
  14944. weight: math.unit(115, "kg"),
  14945. name: "Front",
  14946. image: {
  14947. source: "./media/characters/pia-sr/front.svg",
  14948. extra: 760 / 730,
  14949. bottom: 0.015
  14950. }
  14951. },
  14952. back: {
  14953. height: math.unit(2, "m"),
  14954. weight: math.unit(115, "kg"),
  14955. name: "Back",
  14956. image: {
  14957. source: "./media/characters/pia-sr/back.svg",
  14958. extra: 760 / 730,
  14959. bottom: 0.01
  14960. }
  14961. },
  14962. hand: {
  14963. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14964. name: "Hand",
  14965. image: {
  14966. source: "./media/characters/pia-sr/hand.svg"
  14967. }
  14968. },
  14969. foot: {
  14970. height: math.unit(1.83, "feet"),
  14971. name: "Foot",
  14972. image: {
  14973. source: "./media/characters/pia-sr/foot.svg"
  14974. }
  14975. },
  14976. },
  14977. [
  14978. {
  14979. name: "Micro",
  14980. height: math.unit(88, "mm")
  14981. },
  14982. {
  14983. name: "Normal",
  14984. height: math.unit(2, "m"),
  14985. default: true
  14986. },
  14987. {
  14988. name: "Macro",
  14989. height: math.unit(200, "m")
  14990. },
  14991. {
  14992. name: "Megamacro",
  14993. height: math.unit(420, "km")
  14994. },
  14995. ]
  14996. ))
  14997. characterMakers.push(() => makeCharacter(
  14998. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14999. {
  15000. front: {
  15001. height: math.unit(8 + 2 / 12, "feet"),
  15002. weight: math.unit(300, "lb"),
  15003. name: "Front",
  15004. image: {
  15005. source: "./media/characters/kibibyte/front.svg",
  15006. extra: 2221 / 2098,
  15007. bottom: 0.04
  15008. }
  15009. },
  15010. },
  15011. [
  15012. {
  15013. name: "Normal",
  15014. height: math.unit(8 + 2 / 12, "feet"),
  15015. default: true
  15016. },
  15017. {
  15018. name: "Socialable Macro",
  15019. height: math.unit(50, "feet")
  15020. },
  15021. {
  15022. name: "Macro",
  15023. height: math.unit(300, "feet")
  15024. },
  15025. {
  15026. name: "Megamacro",
  15027. height: math.unit(500, "miles")
  15028. },
  15029. ]
  15030. ))
  15031. characterMakers.push(() => makeCharacter(
  15032. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15033. {
  15034. front: {
  15035. height: math.unit(6, "feet"),
  15036. weight: math.unit(150, "lb"),
  15037. name: "Front",
  15038. image: {
  15039. source: "./media/characters/felix/front.svg",
  15040. extra: 762 / 722,
  15041. bottom: 0.02
  15042. }
  15043. },
  15044. frontClothed: {
  15045. height: math.unit(6, "feet"),
  15046. weight: math.unit(150, "lb"),
  15047. name: "Front (Clothed)",
  15048. image: {
  15049. source: "./media/characters/felix/front-clothed.svg",
  15050. extra: 762 / 722,
  15051. bottom: 0.02
  15052. }
  15053. },
  15054. },
  15055. [
  15056. {
  15057. name: "Normal",
  15058. height: math.unit(6 + 8 / 12, "feet"),
  15059. default: true
  15060. },
  15061. {
  15062. name: "Macro",
  15063. height: math.unit(2600, "feet")
  15064. },
  15065. {
  15066. name: "Megamacro",
  15067. height: math.unit(450, "miles")
  15068. },
  15069. ]
  15070. ))
  15071. characterMakers.push(() => makeCharacter(
  15072. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15073. {
  15074. front: {
  15075. height: math.unit(6 + 1 / 12, "feet"),
  15076. weight: math.unit(250, "lb"),
  15077. name: "Front",
  15078. image: {
  15079. source: "./media/characters/tobo/front.svg",
  15080. extra: 608 / 586,
  15081. bottom: 0.023
  15082. }
  15083. },
  15084. back: {
  15085. height: math.unit(6 + 1 / 12, "feet"),
  15086. weight: math.unit(250, "lb"),
  15087. name: "Back",
  15088. image: {
  15089. source: "./media/characters/tobo/back.svg",
  15090. extra: 608 / 586
  15091. }
  15092. },
  15093. },
  15094. [
  15095. {
  15096. name: "Nano",
  15097. height: math.unit(2, "nm")
  15098. },
  15099. {
  15100. name: "Megamicro",
  15101. height: math.unit(0.1, "mm")
  15102. },
  15103. {
  15104. name: "Micro",
  15105. height: math.unit(1, "inch"),
  15106. default: true
  15107. },
  15108. {
  15109. name: "Human-sized",
  15110. height: math.unit(6 + 1 / 12, "feet")
  15111. },
  15112. {
  15113. name: "Macro",
  15114. height: math.unit(250, "feet")
  15115. },
  15116. {
  15117. name: "Megamacro",
  15118. height: math.unit(75, "miles")
  15119. },
  15120. {
  15121. name: "Texas-sized",
  15122. height: math.unit(750, "miles")
  15123. },
  15124. {
  15125. name: "Teramacro",
  15126. height: math.unit(50000, "miles")
  15127. },
  15128. ]
  15129. ))
  15130. characterMakers.push(() => makeCharacter(
  15131. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15132. {
  15133. front: {
  15134. height: math.unit(6, "feet"),
  15135. weight: math.unit(269, "lb"),
  15136. name: "Front",
  15137. image: {
  15138. source: "./media/characters/danny-kapowsky/front.svg",
  15139. extra: 766 / 736,
  15140. bottom: 0.044
  15141. }
  15142. },
  15143. back: {
  15144. height: math.unit(6, "feet"),
  15145. weight: math.unit(269, "lb"),
  15146. name: "Back",
  15147. image: {
  15148. source: "./media/characters/danny-kapowsky/back.svg",
  15149. extra: 797 / 760,
  15150. bottom: 0.025
  15151. }
  15152. },
  15153. },
  15154. [
  15155. {
  15156. name: "Macro",
  15157. height: math.unit(150, "feet"),
  15158. default: true
  15159. },
  15160. {
  15161. name: "Macro+",
  15162. height: math.unit(200, "feet")
  15163. },
  15164. {
  15165. name: "Macro++",
  15166. height: math.unit(300, "feet")
  15167. },
  15168. {
  15169. name: "Macro+++",
  15170. height: math.unit(400, "feet")
  15171. },
  15172. ]
  15173. ))
  15174. characterMakers.push(() => makeCharacter(
  15175. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15176. {
  15177. side: {
  15178. height: math.unit(6, "feet"),
  15179. weight: math.unit(170, "lb"),
  15180. name: "Side",
  15181. image: {
  15182. source: "./media/characters/finn/side.svg",
  15183. extra: 1953 / 1807,
  15184. bottom: 0.057
  15185. }
  15186. },
  15187. },
  15188. [
  15189. {
  15190. name: "Megamacro",
  15191. height: math.unit(14445, "feet"),
  15192. default: true
  15193. },
  15194. ]
  15195. ))
  15196. characterMakers.push(() => makeCharacter(
  15197. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15198. {
  15199. front: {
  15200. height: math.unit(5 + 6 / 12, "feet"),
  15201. weight: math.unit(125, "lb"),
  15202. name: "Front",
  15203. image: {
  15204. source: "./media/characters/roy/front.svg",
  15205. extra: 1,
  15206. bottom: 0.11
  15207. }
  15208. },
  15209. },
  15210. [
  15211. {
  15212. name: "Micro",
  15213. height: math.unit(3, "inches"),
  15214. default: true
  15215. },
  15216. {
  15217. name: "Normal",
  15218. height: math.unit(5 + 6 / 12, "feet")
  15219. },
  15220. {
  15221. name: "Lesser Macro",
  15222. height: math.unit(60, "feet")
  15223. },
  15224. {
  15225. name: "Greater Macro",
  15226. height: math.unit(120, "feet")
  15227. },
  15228. ]
  15229. ))
  15230. characterMakers.push(() => makeCharacter(
  15231. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15232. {
  15233. front: {
  15234. height: math.unit(6, "feet"),
  15235. weight: math.unit(100, "lb"),
  15236. name: "Front",
  15237. image: {
  15238. source: "./media/characters/aevsivs/front.svg",
  15239. extra: 1,
  15240. bottom: 0.03
  15241. }
  15242. },
  15243. back: {
  15244. height: math.unit(6, "feet"),
  15245. weight: math.unit(100, "lb"),
  15246. name: "Back",
  15247. image: {
  15248. source: "./media/characters/aevsivs/back.svg"
  15249. }
  15250. },
  15251. },
  15252. [
  15253. {
  15254. name: "Micro",
  15255. height: math.unit(2, "inches"),
  15256. default: true
  15257. },
  15258. {
  15259. name: "Normal",
  15260. height: math.unit(5, "feet")
  15261. },
  15262. ]
  15263. ))
  15264. characterMakers.push(() => makeCharacter(
  15265. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15266. {
  15267. front: {
  15268. height: math.unit(5 + 7 / 12, "feet"),
  15269. weight: math.unit(159, "lb"),
  15270. name: "Front",
  15271. image: {
  15272. source: "./media/characters/hildegard/front.svg",
  15273. extra: 289 / 269,
  15274. bottom: 7.63 / 297.8
  15275. }
  15276. },
  15277. back: {
  15278. height: math.unit(5 + 7 / 12, "feet"),
  15279. weight: math.unit(159, "lb"),
  15280. name: "Back",
  15281. image: {
  15282. source: "./media/characters/hildegard/back.svg",
  15283. extra: 280 / 260,
  15284. bottom: 2.3 / 282
  15285. }
  15286. },
  15287. },
  15288. [
  15289. {
  15290. name: "Normal",
  15291. height: math.unit(5 + 7 / 12, "feet"),
  15292. default: true
  15293. },
  15294. ]
  15295. ))
  15296. characterMakers.push(() => makeCharacter(
  15297. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15298. {
  15299. bernard: {
  15300. height: math.unit(2 + 7 / 12, "feet"),
  15301. weight: math.unit(66, "lb"),
  15302. name: "Bernard",
  15303. rename: true,
  15304. image: {
  15305. source: "./media/characters/bernard-wilder/bernard.svg",
  15306. extra: 192 / 128,
  15307. bottom: 0.05
  15308. }
  15309. },
  15310. wilder: {
  15311. height: math.unit(5 + 8 / 12, "feet"),
  15312. weight: math.unit(143, "lb"),
  15313. name: "Wilder",
  15314. rename: true,
  15315. image: {
  15316. source: "./media/characters/bernard-wilder/wilder.svg",
  15317. extra: 361 / 312,
  15318. bottom: 0.02
  15319. }
  15320. },
  15321. },
  15322. [
  15323. {
  15324. name: "Normal",
  15325. height: math.unit(2 + 7 / 12, "feet"),
  15326. default: true
  15327. },
  15328. ]
  15329. ))
  15330. characterMakers.push(() => makeCharacter(
  15331. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15332. {
  15333. anthro: {
  15334. height: math.unit(6 + 1 / 12, "feet"),
  15335. weight: math.unit(155, "lb"),
  15336. name: "Anthro",
  15337. image: {
  15338. source: "./media/characters/hearth/anthro.svg",
  15339. extra: 1178/1136,
  15340. bottom: 28/1206
  15341. }
  15342. },
  15343. feral: {
  15344. height: math.unit(3.78, "feet"),
  15345. weight: math.unit(35, "kg"),
  15346. name: "Feral",
  15347. image: {
  15348. source: "./media/characters/hearth/feral.svg",
  15349. extra: 153 / 135,
  15350. bottom: 0.03
  15351. }
  15352. },
  15353. },
  15354. [
  15355. {
  15356. name: "Normal",
  15357. height: math.unit(6 + 1 / 12, "feet"),
  15358. default: true
  15359. },
  15360. ]
  15361. ))
  15362. characterMakers.push(() => makeCharacter(
  15363. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15364. {
  15365. front: {
  15366. height: math.unit(6, "feet"),
  15367. weight: math.unit(182, "lb"),
  15368. name: "Front",
  15369. image: {
  15370. source: "./media/characters/ingrid/front.svg",
  15371. extra: 294 / 268,
  15372. bottom: 0.027
  15373. }
  15374. },
  15375. },
  15376. [
  15377. {
  15378. name: "Normal",
  15379. height: math.unit(6, "feet"),
  15380. default: true
  15381. },
  15382. ]
  15383. ))
  15384. characterMakers.push(() => makeCharacter(
  15385. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15386. {
  15387. eevee: {
  15388. height: math.unit(2 + 10 / 12, "feet"),
  15389. weight: math.unit(86, "lb"),
  15390. name: "Malgam",
  15391. image: {
  15392. source: "./media/characters/malgam/eevee.svg",
  15393. extra: 952/784,
  15394. bottom: 38/990
  15395. }
  15396. },
  15397. sylveon: {
  15398. height: math.unit(4, "feet"),
  15399. weight: math.unit(101, "lb"),
  15400. name: "Future Malgam",
  15401. rename: true,
  15402. image: {
  15403. source: "./media/characters/malgam/sylveon.svg",
  15404. extra: 371 / 325,
  15405. bottom: 0.015
  15406. }
  15407. },
  15408. gigantamax: {
  15409. height: math.unit(50, "feet"),
  15410. name: "Gigantamax Malgam",
  15411. rename: true,
  15412. image: {
  15413. source: "./media/characters/malgam/gigantamax.svg"
  15414. }
  15415. },
  15416. },
  15417. [
  15418. {
  15419. name: "Normal",
  15420. height: math.unit(2 + 10 / 12, "feet"),
  15421. default: true
  15422. },
  15423. ]
  15424. ))
  15425. characterMakers.push(() => makeCharacter(
  15426. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15427. {
  15428. front: {
  15429. height: math.unit(5 + 11 / 12, "feet"),
  15430. weight: math.unit(188, "lb"),
  15431. name: "Front",
  15432. image: {
  15433. source: "./media/characters/fleur/front.svg",
  15434. extra: 309 / 283,
  15435. bottom: 0.007
  15436. }
  15437. },
  15438. },
  15439. [
  15440. {
  15441. name: "Normal",
  15442. height: math.unit(5 + 11 / 12, "feet"),
  15443. default: true
  15444. },
  15445. ]
  15446. ))
  15447. characterMakers.push(() => makeCharacter(
  15448. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15449. {
  15450. front: {
  15451. height: math.unit(5 + 4 / 12, "feet"),
  15452. weight: math.unit(122, "lb"),
  15453. name: "Front",
  15454. image: {
  15455. source: "./media/characters/jude/front.svg",
  15456. extra: 288 / 273,
  15457. bottom: 0.03
  15458. }
  15459. },
  15460. },
  15461. [
  15462. {
  15463. name: "Normal",
  15464. height: math.unit(5 + 4 / 12, "feet"),
  15465. default: true
  15466. },
  15467. ]
  15468. ))
  15469. characterMakers.push(() => makeCharacter(
  15470. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15471. {
  15472. front: {
  15473. height: math.unit(5 + 11 / 12, "feet"),
  15474. weight: math.unit(190, "lb"),
  15475. name: "Front",
  15476. image: {
  15477. source: "./media/characters/seara/front.svg",
  15478. extra: 1,
  15479. bottom: 0.05
  15480. }
  15481. },
  15482. },
  15483. [
  15484. {
  15485. name: "Normal",
  15486. height: math.unit(5 + 11 / 12, "feet"),
  15487. default: true
  15488. },
  15489. ]
  15490. ))
  15491. characterMakers.push(() => makeCharacter(
  15492. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15493. {
  15494. front: {
  15495. height: math.unit(16 + 5 / 12, "feet"),
  15496. weight: math.unit(524, "lb"),
  15497. name: "Front",
  15498. image: {
  15499. source: "./media/characters/caspian/front.svg",
  15500. extra: 1,
  15501. bottom: 0.04
  15502. }
  15503. },
  15504. },
  15505. [
  15506. {
  15507. name: "Normal",
  15508. height: math.unit(16 + 5 / 12, "feet"),
  15509. default: true
  15510. },
  15511. ]
  15512. ))
  15513. characterMakers.push(() => makeCharacter(
  15514. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15515. {
  15516. front: {
  15517. height: math.unit(5 + 7 / 12, "feet"),
  15518. weight: math.unit(170, "lb"),
  15519. name: "Front",
  15520. image: {
  15521. source: "./media/characters/mika/front.svg",
  15522. extra: 1,
  15523. bottom: 0.016
  15524. }
  15525. },
  15526. },
  15527. [
  15528. {
  15529. name: "Normal",
  15530. height: math.unit(5 + 7 / 12, "feet"),
  15531. default: true
  15532. },
  15533. ]
  15534. ))
  15535. characterMakers.push(() => makeCharacter(
  15536. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15537. {
  15538. front: {
  15539. height: math.unit(6 + 2 / 12, "feet"),
  15540. weight: math.unit(268, "lb"),
  15541. name: "Front",
  15542. image: {
  15543. source: "./media/characters/sol/front.svg",
  15544. extra: 247 / 231,
  15545. bottom: 0.05
  15546. }
  15547. },
  15548. },
  15549. [
  15550. {
  15551. name: "Normal",
  15552. height: math.unit(6 + 2 / 12, "feet"),
  15553. default: true
  15554. },
  15555. ]
  15556. ))
  15557. characterMakers.push(() => makeCharacter(
  15558. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15559. {
  15560. buizel: {
  15561. height: math.unit(2 + 5 / 12, "feet"),
  15562. weight: math.unit(87, "lb"),
  15563. name: "Front",
  15564. image: {
  15565. source: "./media/characters/umiko/buizel.svg",
  15566. extra: 172 / 157,
  15567. bottom: 0.01
  15568. },
  15569. form: "buizel",
  15570. default: true
  15571. },
  15572. floatzel: {
  15573. height: math.unit(5 + 9 / 12, "feet"),
  15574. weight: math.unit(250, "lb"),
  15575. name: "Front",
  15576. image: {
  15577. source: "./media/characters/umiko/floatzel.svg",
  15578. extra: 1076/1006,
  15579. bottom: 15/1091
  15580. },
  15581. form: "floatzel",
  15582. default: true
  15583. },
  15584. },
  15585. [
  15586. {
  15587. name: "Normal",
  15588. height: math.unit(2 + 5 / 12, "feet"),
  15589. form: "buizel",
  15590. default: true
  15591. },
  15592. {
  15593. name: "Normal",
  15594. height: math.unit(5 + 9 / 12, "feet"),
  15595. form: "floatzel",
  15596. default: true
  15597. },
  15598. ],
  15599. {
  15600. "buizel": {
  15601. name: "Buizel"
  15602. },
  15603. "floatzel": {
  15604. name: "Floatzel",
  15605. default: true
  15606. }
  15607. }
  15608. ))
  15609. characterMakers.push(() => makeCharacter(
  15610. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15611. {
  15612. front: {
  15613. height: math.unit(6 + 2 / 12, "feet"),
  15614. weight: math.unit(146, "lb"),
  15615. name: "Front",
  15616. image: {
  15617. source: "./media/characters/iliac/front.svg",
  15618. extra: 389 / 365,
  15619. bottom: 0.035
  15620. }
  15621. },
  15622. },
  15623. [
  15624. {
  15625. name: "Normal",
  15626. height: math.unit(6 + 2 / 12, "feet"),
  15627. default: true
  15628. },
  15629. ]
  15630. ))
  15631. characterMakers.push(() => makeCharacter(
  15632. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15633. {
  15634. front: {
  15635. height: math.unit(6, "feet"),
  15636. weight: math.unit(170, "lb"),
  15637. name: "Front",
  15638. image: {
  15639. source: "./media/characters/topaz/front.svg",
  15640. extra: 317 / 303,
  15641. bottom: 0.055
  15642. }
  15643. },
  15644. },
  15645. [
  15646. {
  15647. name: "Normal",
  15648. height: math.unit(6, "feet"),
  15649. default: true
  15650. },
  15651. ]
  15652. ))
  15653. characterMakers.push(() => makeCharacter(
  15654. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15655. {
  15656. front: {
  15657. height: math.unit(5 + 11 / 12, "feet"),
  15658. weight: math.unit(144, "lb"),
  15659. name: "Front",
  15660. image: {
  15661. source: "./media/characters/gabriel/front.svg",
  15662. extra: 285 / 262,
  15663. bottom: 0.004
  15664. }
  15665. },
  15666. },
  15667. [
  15668. {
  15669. name: "Normal",
  15670. height: math.unit(5 + 11 / 12, "feet"),
  15671. default: true
  15672. },
  15673. ]
  15674. ))
  15675. characterMakers.push(() => makeCharacter(
  15676. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15677. {
  15678. side: {
  15679. height: math.unit(6 + 5 / 12, "feet"),
  15680. weight: math.unit(300, "lb"),
  15681. name: "Side",
  15682. image: {
  15683. source: "./media/characters/tempest-suicune/side.svg",
  15684. extra: 195 / 154,
  15685. bottom: 0.04
  15686. }
  15687. },
  15688. },
  15689. [
  15690. {
  15691. name: "Normal",
  15692. height: math.unit(6 + 5 / 12, "feet"),
  15693. default: true
  15694. },
  15695. ]
  15696. ))
  15697. characterMakers.push(() => makeCharacter(
  15698. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15699. {
  15700. front: {
  15701. height: math.unit(7 + 2 / 12, "feet"),
  15702. weight: math.unit(322, "lb"),
  15703. name: "Front",
  15704. image: {
  15705. source: "./media/characters/vulcan/front.svg",
  15706. extra: 154 / 147,
  15707. bottom: 0.04
  15708. }
  15709. },
  15710. },
  15711. [
  15712. {
  15713. name: "Normal",
  15714. height: math.unit(7 + 2 / 12, "feet"),
  15715. default: true
  15716. },
  15717. ]
  15718. ))
  15719. characterMakers.push(() => makeCharacter(
  15720. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15721. {
  15722. front: {
  15723. height: math.unit(5 + 10 / 12, "feet"),
  15724. weight: math.unit(264, "lb"),
  15725. name: "Front",
  15726. image: {
  15727. source: "./media/characters/gault/front.svg",
  15728. extra: 161 / 140,
  15729. bottom: 0.028
  15730. }
  15731. },
  15732. },
  15733. [
  15734. {
  15735. name: "Normal",
  15736. height: math.unit(5 + 10 / 12, "feet"),
  15737. default: true
  15738. },
  15739. ]
  15740. ))
  15741. characterMakers.push(() => makeCharacter(
  15742. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15743. {
  15744. front: {
  15745. height: math.unit(6, "feet"),
  15746. weight: math.unit(150, "lb"),
  15747. name: "Front",
  15748. image: {
  15749. source: "./media/characters/shard/front.svg",
  15750. extra: 273 / 238,
  15751. bottom: 0.02
  15752. }
  15753. },
  15754. },
  15755. [
  15756. {
  15757. name: "Normal",
  15758. height: math.unit(3 + 6 / 12, "feet"),
  15759. default: true
  15760. },
  15761. ]
  15762. ))
  15763. characterMakers.push(() => makeCharacter(
  15764. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15765. {
  15766. front: {
  15767. height: math.unit(5 + 11 / 12, "feet"),
  15768. weight: math.unit(146, "lb"),
  15769. name: "Front",
  15770. image: {
  15771. source: "./media/characters/ashe/front.svg",
  15772. extra: 400 / 373,
  15773. bottom: 0.01
  15774. }
  15775. },
  15776. },
  15777. [
  15778. {
  15779. name: "Normal",
  15780. height: math.unit(5 + 11 / 12, "feet"),
  15781. default: true
  15782. },
  15783. ]
  15784. ))
  15785. characterMakers.push(() => makeCharacter(
  15786. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15787. {
  15788. front: {
  15789. height: math.unit(5 + 5 / 12, "feet"),
  15790. weight: math.unit(135, "lb"),
  15791. name: "Front",
  15792. image: {
  15793. source: "./media/characters/beatrix/front.svg",
  15794. extra: 392 / 379,
  15795. bottom: 0.01
  15796. }
  15797. },
  15798. },
  15799. [
  15800. {
  15801. name: "Normal",
  15802. height: math.unit(6, "feet"),
  15803. default: true
  15804. },
  15805. ]
  15806. ))
  15807. characterMakers.push(() => makeCharacter(
  15808. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15809. {
  15810. front: {
  15811. height: math.unit(6 + 2/12, "feet"),
  15812. weight: math.unit(135, "lb"),
  15813. name: "Front",
  15814. image: {
  15815. source: "./media/characters/ignatius/front.svg",
  15816. extra: 1380/1259,
  15817. bottom: 27/1407
  15818. }
  15819. },
  15820. },
  15821. [
  15822. {
  15823. name: "Normal",
  15824. height: math.unit(6 + 2/12, "feet"),
  15825. default: true
  15826. },
  15827. ]
  15828. ))
  15829. characterMakers.push(() => makeCharacter(
  15830. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15831. {
  15832. front: {
  15833. height: math.unit(6 + 2 / 12, "feet"),
  15834. weight: math.unit(138, "lb"),
  15835. name: "Front",
  15836. image: {
  15837. source: "./media/characters/mei-li/front.svg",
  15838. extra: 237 / 229,
  15839. bottom: 0.03
  15840. }
  15841. },
  15842. },
  15843. [
  15844. {
  15845. name: "Normal",
  15846. height: math.unit(6 + 2 / 12, "feet"),
  15847. default: true
  15848. },
  15849. ]
  15850. ))
  15851. characterMakers.push(() => makeCharacter(
  15852. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15853. {
  15854. front: {
  15855. height: math.unit(2 + 4 / 12, "feet"),
  15856. weight: math.unit(62, "lb"),
  15857. name: "Front",
  15858. image: {
  15859. source: "./media/characters/puru/front.svg",
  15860. extra: 206 / 149,
  15861. bottom: 0.06
  15862. }
  15863. },
  15864. },
  15865. [
  15866. {
  15867. name: "Normal",
  15868. height: math.unit(2 + 4 / 12, "feet"),
  15869. default: true
  15870. },
  15871. ]
  15872. ))
  15873. characterMakers.push(() => makeCharacter(
  15874. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15875. {
  15876. anthro: {
  15877. height: math.unit(5 + 8/12, "feet"),
  15878. weight: math.unit(200, "lb"),
  15879. energyNeed: math.unit(2000, "kcal"),
  15880. name: "Anthro",
  15881. image: {
  15882. source: "./media/characters/kee/anthro.svg",
  15883. extra: 3251/3184,
  15884. bottom: 250/3501
  15885. }
  15886. },
  15887. taur: {
  15888. height: math.unit(11, "feet"),
  15889. weight: math.unit(500, "lb"),
  15890. energyNeed: math.unit(5000, "kcal"),
  15891. name: "Taur",
  15892. image: {
  15893. source: "./media/characters/kee/taur.svg",
  15894. extra: 1362/1320,
  15895. bottom: 83/1445
  15896. }
  15897. },
  15898. },
  15899. [
  15900. {
  15901. name: "Normal",
  15902. height: math.unit(5 + 8/12, "feet"),
  15903. default: true
  15904. },
  15905. {
  15906. name: "Macro",
  15907. height: math.unit(35, "feet")
  15908. },
  15909. ]
  15910. ))
  15911. characterMakers.push(() => makeCharacter(
  15912. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15913. {
  15914. anthro: {
  15915. height: math.unit(7, "feet"),
  15916. weight: math.unit(190, "lb"),
  15917. name: "Anthro",
  15918. image: {
  15919. source: "./media/characters/cobalt-dracha/anthro.svg",
  15920. extra: 231 / 225,
  15921. bottom: 0.04
  15922. }
  15923. },
  15924. feral: {
  15925. height: math.unit(9 + 7 / 12, "feet"),
  15926. weight: math.unit(294, "lb"),
  15927. name: "Feral",
  15928. image: {
  15929. source: "./media/characters/cobalt-dracha/feral.svg",
  15930. extra: 692 / 633,
  15931. bottom: 0.05
  15932. }
  15933. },
  15934. },
  15935. [
  15936. {
  15937. name: "Normal",
  15938. height: math.unit(7, "feet"),
  15939. default: true
  15940. },
  15941. ]
  15942. ))
  15943. characterMakers.push(() => makeCharacter(
  15944. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15945. {
  15946. fallen: {
  15947. height: math.unit(11 + 8 / 12, "feet"),
  15948. weight: math.unit(485, "lb"),
  15949. name: "Java (Fallen)",
  15950. rename: true,
  15951. image: {
  15952. source: "./media/characters/java/fallen.svg",
  15953. extra: 226 / 208,
  15954. bottom: 0.005
  15955. }
  15956. },
  15957. godkin: {
  15958. height: math.unit(10 + 6 / 12, "feet"),
  15959. weight: math.unit(328, "lb"),
  15960. name: "Java (Godkin)",
  15961. rename: true,
  15962. image: {
  15963. source: "./media/characters/java/godkin.svg",
  15964. extra: 1104/1068,
  15965. bottom: 36/1140
  15966. }
  15967. },
  15968. },
  15969. [
  15970. {
  15971. name: "Normal",
  15972. height: math.unit(11 + 8 / 12, "feet"),
  15973. default: true
  15974. },
  15975. ]
  15976. ))
  15977. characterMakers.push(() => makeCharacter(
  15978. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15979. {
  15980. front: {
  15981. height: math.unit(5 + 9 / 12, "feet"),
  15982. weight: math.unit(170, "lb"),
  15983. name: "Front",
  15984. image: {
  15985. source: "./media/characters/purna/front.svg",
  15986. extra: 239 / 229,
  15987. bottom: 0.01
  15988. }
  15989. },
  15990. },
  15991. [
  15992. {
  15993. name: "Normal",
  15994. height: math.unit(5 + 9 / 12, "feet"),
  15995. default: true
  15996. },
  15997. ]
  15998. ))
  15999. characterMakers.push(() => makeCharacter(
  16000. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16001. {
  16002. front: {
  16003. height: math.unit(5 + 9 / 12, "feet"),
  16004. weight: math.unit(142, "lb"),
  16005. name: "Front",
  16006. image: {
  16007. source: "./media/characters/kuva/front.svg",
  16008. extra: 281 / 271,
  16009. bottom: 0.006
  16010. }
  16011. },
  16012. },
  16013. [
  16014. {
  16015. name: "Normal",
  16016. height: math.unit(5 + 9 / 12, "feet"),
  16017. default: true
  16018. },
  16019. ]
  16020. ))
  16021. characterMakers.push(() => makeCharacter(
  16022. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16023. {
  16024. anthro: {
  16025. height: math.unit(9 + 2 / 12, "feet"),
  16026. weight: math.unit(270, "lb"),
  16027. name: "Anthro",
  16028. image: {
  16029. source: "./media/characters/embra/anthro.svg",
  16030. extra: 200 / 187,
  16031. bottom: 0.02
  16032. }
  16033. },
  16034. feral: {
  16035. height: math.unit(18 + 8 / 12, "feet"),
  16036. weight: math.unit(576, "lb"),
  16037. name: "Feral",
  16038. image: {
  16039. source: "./media/characters/embra/feral.svg",
  16040. extra: 152 / 137,
  16041. bottom: 0.037
  16042. }
  16043. },
  16044. },
  16045. [
  16046. {
  16047. name: "Normal",
  16048. height: math.unit(9 + 2 / 12, "feet"),
  16049. default: true
  16050. },
  16051. ]
  16052. ))
  16053. characterMakers.push(() => makeCharacter(
  16054. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16055. {
  16056. anthro: {
  16057. height: math.unit(10 + 9 / 12, "feet"),
  16058. weight: math.unit(224, "lb"),
  16059. name: "Anthro",
  16060. image: {
  16061. source: "./media/characters/grottos/anthro.svg",
  16062. extra: 350 / 332,
  16063. bottom: 0.045
  16064. }
  16065. },
  16066. feral: {
  16067. height: math.unit(20 + 7 / 12, "feet"),
  16068. weight: math.unit(629, "lb"),
  16069. name: "Feral",
  16070. image: {
  16071. source: "./media/characters/grottos/feral.svg",
  16072. extra: 207 / 190,
  16073. bottom: 0.05
  16074. }
  16075. },
  16076. },
  16077. [
  16078. {
  16079. name: "Normal",
  16080. height: math.unit(10 + 9 / 12, "feet"),
  16081. default: true
  16082. },
  16083. ]
  16084. ))
  16085. characterMakers.push(() => makeCharacter(
  16086. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16087. {
  16088. anthro: {
  16089. height: math.unit(9 + 6 / 12, "feet"),
  16090. weight: math.unit(298, "lb"),
  16091. name: "Anthro",
  16092. image: {
  16093. source: "./media/characters/frifna/anthro.svg",
  16094. extra: 282 / 269,
  16095. bottom: 0.015
  16096. }
  16097. },
  16098. feral: {
  16099. height: math.unit(16 + 2 / 12, "feet"),
  16100. weight: math.unit(624, "lb"),
  16101. name: "Feral",
  16102. image: {
  16103. source: "./media/characters/frifna/feral.svg"
  16104. }
  16105. },
  16106. },
  16107. [
  16108. {
  16109. name: "Normal",
  16110. height: math.unit(9 + 6 / 12, "feet"),
  16111. default: true
  16112. },
  16113. ]
  16114. ))
  16115. characterMakers.push(() => makeCharacter(
  16116. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16117. {
  16118. front: {
  16119. height: math.unit(6 + 2 / 12, "feet"),
  16120. weight: math.unit(168, "lb"),
  16121. name: "Front",
  16122. image: {
  16123. source: "./media/characters/elise/front.svg",
  16124. extra: 276 / 271
  16125. }
  16126. },
  16127. },
  16128. [
  16129. {
  16130. name: "Normal",
  16131. height: math.unit(6 + 2 / 12, "feet"),
  16132. default: true
  16133. },
  16134. ]
  16135. ))
  16136. characterMakers.push(() => makeCharacter(
  16137. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16138. {
  16139. front: {
  16140. height: math.unit(5 + 10 / 12, "feet"),
  16141. weight: math.unit(210, "lb"),
  16142. name: "Front",
  16143. image: {
  16144. source: "./media/characters/glade/front.svg",
  16145. extra: 258 / 247,
  16146. bottom: 0.008
  16147. }
  16148. },
  16149. },
  16150. [
  16151. {
  16152. name: "Normal",
  16153. height: math.unit(5 + 10 / 12, "feet"),
  16154. default: true
  16155. },
  16156. ]
  16157. ))
  16158. characterMakers.push(() => makeCharacter(
  16159. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16160. {
  16161. front: {
  16162. height: math.unit(5 + 10 / 12, "feet"),
  16163. weight: math.unit(129, "lb"),
  16164. name: "Front",
  16165. image: {
  16166. source: "./media/characters/rina/front.svg",
  16167. extra: 266 / 255,
  16168. bottom: 0.005
  16169. }
  16170. },
  16171. },
  16172. [
  16173. {
  16174. name: "Normal",
  16175. height: math.unit(5 + 10 / 12, "feet"),
  16176. default: true
  16177. },
  16178. ]
  16179. ))
  16180. characterMakers.push(() => makeCharacter(
  16181. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16182. {
  16183. front: {
  16184. height: math.unit(6 + 1 / 12, "feet"),
  16185. weight: math.unit(192, "lb"),
  16186. name: "Front",
  16187. image: {
  16188. source: "./media/characters/veronica/front.svg",
  16189. extra: 319 / 309,
  16190. bottom: 0.005
  16191. }
  16192. },
  16193. },
  16194. [
  16195. {
  16196. name: "Normal",
  16197. height: math.unit(6 + 1 / 12, "feet"),
  16198. default: true
  16199. },
  16200. ]
  16201. ))
  16202. characterMakers.push(() => makeCharacter(
  16203. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16204. {
  16205. front: {
  16206. height: math.unit(9 + 3 / 12, "feet"),
  16207. weight: math.unit(1100, "lb"),
  16208. name: "Front",
  16209. image: {
  16210. source: "./media/characters/braxton/front.svg",
  16211. extra: 1057 / 984,
  16212. bottom: 0.05
  16213. }
  16214. },
  16215. },
  16216. [
  16217. {
  16218. name: "Normal",
  16219. height: math.unit(9 + 3 / 12, "feet")
  16220. },
  16221. {
  16222. name: "Giant",
  16223. height: math.unit(300, "feet"),
  16224. default: true
  16225. },
  16226. {
  16227. name: "Macro",
  16228. height: math.unit(700, "feet")
  16229. },
  16230. {
  16231. name: "Megamacro",
  16232. height: math.unit(6000, "feet")
  16233. },
  16234. ]
  16235. ))
  16236. characterMakers.push(() => makeCharacter(
  16237. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16238. {
  16239. front: {
  16240. height: math.unit(6 + 7 / 12, "feet"),
  16241. weight: math.unit(150, "lb"),
  16242. name: "Front",
  16243. image: {
  16244. source: "./media/characters/blue-feyonics/front.svg",
  16245. extra: 1403 / 1306,
  16246. bottom: 0.047
  16247. }
  16248. },
  16249. },
  16250. [
  16251. {
  16252. name: "Normal",
  16253. height: math.unit(6 + 7 / 12, "feet"),
  16254. default: true
  16255. },
  16256. ]
  16257. ))
  16258. characterMakers.push(() => makeCharacter(
  16259. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16260. {
  16261. front: {
  16262. height: math.unit(1.8, "meters"),
  16263. weight: math.unit(60, "kg"),
  16264. name: "Front",
  16265. image: {
  16266. source: "./media/characters/maxwell/front.svg",
  16267. extra: 2060 / 1873
  16268. }
  16269. },
  16270. },
  16271. [
  16272. {
  16273. name: "Micro",
  16274. height: math.unit(1, "mm")
  16275. },
  16276. {
  16277. name: "Normal",
  16278. height: math.unit(1.8, "meter"),
  16279. default: true
  16280. },
  16281. {
  16282. name: "Macro",
  16283. height: math.unit(30, "meters")
  16284. },
  16285. {
  16286. name: "Megamacro",
  16287. height: math.unit(10, "km")
  16288. },
  16289. ]
  16290. ))
  16291. characterMakers.push(() => makeCharacter(
  16292. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16293. {
  16294. front: {
  16295. height: math.unit(6, "feet"),
  16296. weight: math.unit(150, "lb"),
  16297. name: "Front",
  16298. image: {
  16299. source: "./media/characters/jack/front.svg",
  16300. extra: 1754 / 1640,
  16301. bottom: 0.01
  16302. }
  16303. },
  16304. },
  16305. [
  16306. {
  16307. name: "Normal",
  16308. height: math.unit(80000, "feet"),
  16309. default: true
  16310. },
  16311. {
  16312. name: "Max size",
  16313. height: math.unit(10, "lightyears")
  16314. },
  16315. ]
  16316. ))
  16317. characterMakers.push(() => makeCharacter(
  16318. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16319. {
  16320. urban: {
  16321. height: math.unit(5, "feet"),
  16322. weight: math.unit(240, "lb"),
  16323. name: "Urban",
  16324. image: {
  16325. source: "./media/characters/cafat/urban.svg",
  16326. extra: 1223/1126,
  16327. bottom: 205/1428
  16328. }
  16329. },
  16330. summer: {
  16331. height: math.unit(5, "feet"),
  16332. weight: math.unit(240, "lb"),
  16333. name: "Summer",
  16334. image: {
  16335. source: "./media/characters/cafat/summer.svg",
  16336. extra: 1223/1126,
  16337. bottom: 205/1428
  16338. }
  16339. },
  16340. winter: {
  16341. height: math.unit(5, "feet"),
  16342. weight: math.unit(240, "lb"),
  16343. name: "Winter",
  16344. image: {
  16345. source: "./media/characters/cafat/winter.svg",
  16346. extra: 1223/1126,
  16347. bottom: 205/1428
  16348. }
  16349. },
  16350. lingerie: {
  16351. height: math.unit(5, "feet"),
  16352. weight: math.unit(240, "lb"),
  16353. name: "Lingerie",
  16354. image: {
  16355. source: "./media/characters/cafat/lingerie.svg",
  16356. extra: 1223/1126,
  16357. bottom: 205/1428
  16358. }
  16359. },
  16360. upright: {
  16361. height: math.unit(6.3, "feet"),
  16362. weight: math.unit(240, "lb"),
  16363. name: "Upright",
  16364. image: {
  16365. source: "./media/characters/cafat/upright.svg",
  16366. bottom: 0.01
  16367. }
  16368. },
  16369. uprightFull: {
  16370. height: math.unit(6.3, "feet"),
  16371. weight: math.unit(240, "lb"),
  16372. name: "Upright (Full)",
  16373. image: {
  16374. source: "./media/characters/cafat/upright-full.svg",
  16375. bottom: 0.01
  16376. }
  16377. },
  16378. },
  16379. [
  16380. {
  16381. name: "Small",
  16382. height: math.unit(5, "feet"),
  16383. default: true
  16384. },
  16385. {
  16386. name: "Large",
  16387. height: math.unit(13, "feet")
  16388. },
  16389. ]
  16390. ))
  16391. characterMakers.push(() => makeCharacter(
  16392. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16393. {
  16394. front: {
  16395. height: math.unit(6, "feet"),
  16396. weight: math.unit(150, "lb"),
  16397. name: "Front",
  16398. image: {
  16399. source: "./media/characters/verin-raharra/front.svg",
  16400. extra: 5019 / 4835,
  16401. bottom: 0.023
  16402. }
  16403. },
  16404. },
  16405. [
  16406. {
  16407. name: "Normal",
  16408. height: math.unit(7 + 5 / 12, "feet"),
  16409. default: true
  16410. },
  16411. {
  16412. name: "Upsized",
  16413. height: math.unit(20, "feet")
  16414. },
  16415. ]
  16416. ))
  16417. characterMakers.push(() => makeCharacter(
  16418. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16419. {
  16420. front: {
  16421. height: math.unit(7, "feet"),
  16422. weight: math.unit(230, "lb"),
  16423. name: "Front",
  16424. image: {
  16425. source: "./media/characters/nakata/front.svg",
  16426. extra: 1.005,
  16427. bottom: 0.01
  16428. }
  16429. },
  16430. },
  16431. [
  16432. {
  16433. name: "Normal",
  16434. height: math.unit(7, "feet"),
  16435. default: true
  16436. },
  16437. {
  16438. name: "Big",
  16439. height: math.unit(14, "feet")
  16440. },
  16441. {
  16442. name: "Macro",
  16443. height: math.unit(400, "feet")
  16444. },
  16445. ]
  16446. ))
  16447. characterMakers.push(() => makeCharacter(
  16448. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16449. {
  16450. front: {
  16451. height: math.unit(4.91, "feet"),
  16452. weight: math.unit(100, "lb"),
  16453. name: "Front",
  16454. image: {
  16455. source: "./media/characters/lily/front.svg",
  16456. extra: 1585 / 1415,
  16457. bottom: 0.02
  16458. }
  16459. },
  16460. },
  16461. [
  16462. {
  16463. name: "Normal",
  16464. height: math.unit(4.91, "feet"),
  16465. default: true
  16466. },
  16467. ]
  16468. ))
  16469. characterMakers.push(() => makeCharacter(
  16470. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16471. {
  16472. laying: {
  16473. height: math.unit(4 + 4 / 12, "feet"),
  16474. weight: math.unit(600, "lb"),
  16475. name: "Laying",
  16476. image: {
  16477. source: "./media/characters/sheila/laying.svg",
  16478. extra: 1333 / 1265,
  16479. bottom: 0.16
  16480. }
  16481. },
  16482. },
  16483. [
  16484. {
  16485. name: "Normal",
  16486. height: math.unit(4 + 4 / 12, "feet"),
  16487. default: true
  16488. },
  16489. ]
  16490. ))
  16491. characterMakers.push(() => makeCharacter(
  16492. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16493. {
  16494. front: {
  16495. height: math.unit(6, "feet"),
  16496. weight: math.unit(190, "lb"),
  16497. name: "Front",
  16498. image: {
  16499. source: "./media/characters/sax/front.svg",
  16500. extra: 1187 / 973,
  16501. bottom: 0.042
  16502. }
  16503. },
  16504. },
  16505. [
  16506. {
  16507. name: "Micro",
  16508. height: math.unit(4, "inches"),
  16509. default: true
  16510. },
  16511. ]
  16512. ))
  16513. characterMakers.push(() => makeCharacter(
  16514. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16515. {
  16516. front: {
  16517. height: math.unit(6, "feet"),
  16518. weight: math.unit(150, "lb"),
  16519. name: "Front",
  16520. image: {
  16521. source: "./media/characters/pandora/front.svg",
  16522. extra: 2720 / 2556,
  16523. bottom: 0.015
  16524. }
  16525. },
  16526. back: {
  16527. height: math.unit(6, "feet"),
  16528. weight: math.unit(150, "lb"),
  16529. name: "Back",
  16530. image: {
  16531. source: "./media/characters/pandora/back.svg",
  16532. extra: 2720 / 2556,
  16533. bottom: 0.01
  16534. }
  16535. },
  16536. beans: {
  16537. height: math.unit(6 / 8, "feet"),
  16538. name: "Beans",
  16539. image: {
  16540. source: "./media/characters/pandora/beans.svg"
  16541. }
  16542. },
  16543. collar: {
  16544. height: math.unit(0.31, "feet"),
  16545. name: "Collar",
  16546. image: {
  16547. source: "./media/characters/pandora/collar.svg"
  16548. }
  16549. },
  16550. skirt: {
  16551. height: math.unit(6, "feet"),
  16552. weight: math.unit(150, "lb"),
  16553. name: "Skirt",
  16554. image: {
  16555. source: "./media/characters/pandora/skirt.svg",
  16556. extra: 1622 / 1525,
  16557. bottom: 0.015
  16558. }
  16559. },
  16560. hoodie: {
  16561. height: math.unit(6, "feet"),
  16562. weight: math.unit(150, "lb"),
  16563. name: "Hoodie",
  16564. image: {
  16565. source: "./media/characters/pandora/hoodie.svg",
  16566. extra: 1622 / 1525,
  16567. bottom: 0.015
  16568. }
  16569. },
  16570. casual: {
  16571. height: math.unit(6, "feet"),
  16572. weight: math.unit(150, "lb"),
  16573. name: "Casual",
  16574. image: {
  16575. source: "./media/characters/pandora/casual.svg",
  16576. extra: 1622 / 1525,
  16577. bottom: 0.015
  16578. }
  16579. },
  16580. },
  16581. [
  16582. {
  16583. name: "Normal",
  16584. height: math.unit(6, "feet")
  16585. },
  16586. {
  16587. name: "Big Steppy",
  16588. height: math.unit(1, "km"),
  16589. default: true
  16590. },
  16591. {
  16592. name: "Galactic Steppy",
  16593. height: math.unit(2, "gigameters")
  16594. },
  16595. ]
  16596. ))
  16597. characterMakers.push(() => makeCharacter(
  16598. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16599. {
  16600. side: {
  16601. height: math.unit(10, "feet"),
  16602. weight: math.unit(800, "kg"),
  16603. name: "Side",
  16604. image: {
  16605. source: "./media/characters/venio-darcony/side.svg",
  16606. extra: 1373 / 1003,
  16607. bottom: 0.037
  16608. }
  16609. },
  16610. front: {
  16611. height: math.unit(19, "feet"),
  16612. weight: math.unit(800, "kg"),
  16613. name: "Front",
  16614. image: {
  16615. source: "./media/characters/venio-darcony/front.svg"
  16616. }
  16617. },
  16618. back: {
  16619. height: math.unit(19, "feet"),
  16620. weight: math.unit(800, "kg"),
  16621. name: "Back",
  16622. image: {
  16623. source: "./media/characters/venio-darcony/back.svg"
  16624. }
  16625. },
  16626. sideNsfw: {
  16627. height: math.unit(10, "feet"),
  16628. weight: math.unit(800, "kg"),
  16629. name: "Side (NSFW)",
  16630. image: {
  16631. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16632. extra: 1373 / 1003,
  16633. bottom: 0.037
  16634. }
  16635. },
  16636. frontNsfw: {
  16637. height: math.unit(19, "feet"),
  16638. weight: math.unit(800, "kg"),
  16639. name: "Front (NSFW)",
  16640. image: {
  16641. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16642. }
  16643. },
  16644. backNsfw: {
  16645. height: math.unit(19, "feet"),
  16646. weight: math.unit(800, "kg"),
  16647. name: "Back (NSFW)",
  16648. image: {
  16649. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16650. }
  16651. },
  16652. sideArmored: {
  16653. height: math.unit(10, "feet"),
  16654. weight: math.unit(800, "kg"),
  16655. name: "Side (Armored)",
  16656. image: {
  16657. source: "./media/characters/venio-darcony/side-armored.svg",
  16658. extra: 1373 / 1003,
  16659. bottom: 0.037
  16660. }
  16661. },
  16662. frontArmored: {
  16663. height: math.unit(19, "feet"),
  16664. weight: math.unit(900, "kg"),
  16665. name: "Front (Armored)",
  16666. image: {
  16667. source: "./media/characters/venio-darcony/front-armored.svg"
  16668. }
  16669. },
  16670. backArmored: {
  16671. height: math.unit(19, "feet"),
  16672. weight: math.unit(900, "kg"),
  16673. name: "Back (Armored)",
  16674. image: {
  16675. source: "./media/characters/venio-darcony/back-armored.svg"
  16676. }
  16677. },
  16678. sword: {
  16679. height: math.unit(10, "feet"),
  16680. weight: math.unit(50, "lb"),
  16681. name: "Sword",
  16682. image: {
  16683. source: "./media/characters/venio-darcony/sword.svg"
  16684. }
  16685. },
  16686. },
  16687. [
  16688. {
  16689. name: "Normal",
  16690. height: math.unit(10, "feet")
  16691. },
  16692. {
  16693. name: "Macro",
  16694. height: math.unit(130, "feet"),
  16695. default: true
  16696. },
  16697. {
  16698. name: "Macro+",
  16699. height: math.unit(240, "feet")
  16700. },
  16701. ]
  16702. ))
  16703. characterMakers.push(() => makeCharacter(
  16704. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16705. {
  16706. front: {
  16707. height: math.unit(6, "feet"),
  16708. weight: math.unit(150, "lb"),
  16709. name: "Front",
  16710. image: {
  16711. source: "./media/characters/veski/front.svg",
  16712. extra: 1299 / 1225,
  16713. bottom: 0.04
  16714. }
  16715. },
  16716. back: {
  16717. height: math.unit(6, "feet"),
  16718. weight: math.unit(150, "lb"),
  16719. name: "Back",
  16720. image: {
  16721. source: "./media/characters/veski/back.svg",
  16722. extra: 1299 / 1225,
  16723. bottom: 0.008
  16724. }
  16725. },
  16726. maw: {
  16727. height: math.unit(1.5 * 1.21, "feet"),
  16728. name: "Maw",
  16729. image: {
  16730. source: "./media/characters/veski/maw.svg"
  16731. }
  16732. },
  16733. },
  16734. [
  16735. {
  16736. name: "Macro",
  16737. height: math.unit(2, "km"),
  16738. default: true
  16739. },
  16740. ]
  16741. ))
  16742. characterMakers.push(() => makeCharacter(
  16743. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16744. {
  16745. front: {
  16746. height: math.unit(5 + 7 / 12, "feet"),
  16747. name: "Front",
  16748. image: {
  16749. source: "./media/characters/isabelle/front.svg",
  16750. extra: 2130 / 1976,
  16751. bottom: 0.05
  16752. }
  16753. },
  16754. },
  16755. [
  16756. {
  16757. name: "Supermicro",
  16758. height: math.unit(10, "micrometers")
  16759. },
  16760. {
  16761. name: "Micro",
  16762. height: math.unit(1, "inch")
  16763. },
  16764. {
  16765. name: "Tiny",
  16766. height: math.unit(5, "inches")
  16767. },
  16768. {
  16769. name: "Standard",
  16770. height: math.unit(5 + 7 / 12, "inches")
  16771. },
  16772. {
  16773. name: "Macro",
  16774. height: math.unit(80, "meters"),
  16775. default: true
  16776. },
  16777. {
  16778. name: "Megamacro",
  16779. height: math.unit(250, "meters")
  16780. },
  16781. {
  16782. name: "Gigamacro",
  16783. height: math.unit(5, "km")
  16784. },
  16785. {
  16786. name: "Cosmic",
  16787. height: math.unit(2.5e6, "miles")
  16788. },
  16789. ]
  16790. ))
  16791. characterMakers.push(() => makeCharacter(
  16792. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16793. {
  16794. front: {
  16795. height: math.unit(6, "feet"),
  16796. weight: math.unit(150, "lb"),
  16797. name: "Front",
  16798. image: {
  16799. source: "./media/characters/hanzo/front.svg",
  16800. extra: 374 / 344,
  16801. bottom: 0.02
  16802. }
  16803. },
  16804. },
  16805. [
  16806. {
  16807. name: "Normal",
  16808. height: math.unit(8, "feet"),
  16809. default: true
  16810. },
  16811. ]
  16812. ))
  16813. characterMakers.push(() => makeCharacter(
  16814. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16815. {
  16816. front: {
  16817. height: math.unit(7, "feet"),
  16818. weight: math.unit(130, "lb"),
  16819. name: "Front",
  16820. image: {
  16821. source: "./media/characters/anna/front.svg",
  16822. extra: 169 / 145,
  16823. bottom: 0.06
  16824. }
  16825. },
  16826. full: {
  16827. height: math.unit(4.96, "feet"),
  16828. weight: math.unit(220, "lb"),
  16829. name: "Full",
  16830. image: {
  16831. source: "./media/characters/anna/full.svg",
  16832. extra: 138 / 114,
  16833. bottom: 0.15
  16834. }
  16835. },
  16836. tongue: {
  16837. height: math.unit(2.53, "feet"),
  16838. name: "Tongue",
  16839. image: {
  16840. source: "./media/characters/anna/tongue.svg"
  16841. }
  16842. },
  16843. },
  16844. [
  16845. {
  16846. name: "Normal",
  16847. height: math.unit(7, "feet"),
  16848. default: true
  16849. },
  16850. ]
  16851. ))
  16852. characterMakers.push(() => makeCharacter(
  16853. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16854. {
  16855. front: {
  16856. height: math.unit(7, "feet"),
  16857. weight: math.unit(150, "lb"),
  16858. name: "Front",
  16859. image: {
  16860. source: "./media/characters/ian-corvid/front.svg",
  16861. extra: 150 / 142,
  16862. bottom: 0.02
  16863. }
  16864. },
  16865. back: {
  16866. height: math.unit(7, "feet"),
  16867. weight: math.unit(150, "lb"),
  16868. name: "Back",
  16869. image: {
  16870. source: "./media/characters/ian-corvid/back.svg",
  16871. extra: 150 / 143,
  16872. bottom: 0.01
  16873. }
  16874. },
  16875. stomping: {
  16876. height: math.unit(7, "feet"),
  16877. weight: math.unit(150, "lb"),
  16878. name: "Stomping",
  16879. image: {
  16880. source: "./media/characters/ian-corvid/stomping.svg",
  16881. extra: 76 / 72
  16882. }
  16883. },
  16884. sitting: {
  16885. height: math.unit(7 / 1.8, "feet"),
  16886. weight: math.unit(150, "lb"),
  16887. name: "Sitting",
  16888. image: {
  16889. source: "./media/characters/ian-corvid/sitting.svg",
  16890. extra: 1400 / 1269,
  16891. bottom: 0.15
  16892. }
  16893. },
  16894. },
  16895. [
  16896. {
  16897. name: "Tiny Microw",
  16898. height: math.unit(1, "inch")
  16899. },
  16900. {
  16901. name: "Microw",
  16902. height: math.unit(6, "inches")
  16903. },
  16904. {
  16905. name: "Crow",
  16906. height: math.unit(7 + 1 / 12, "feet"),
  16907. default: true
  16908. },
  16909. {
  16910. name: "Macrow",
  16911. height: math.unit(176, "feet")
  16912. },
  16913. ]
  16914. ))
  16915. characterMakers.push(() => makeCharacter(
  16916. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16917. {
  16918. front: {
  16919. height: math.unit(5 + 7 / 12, "feet"),
  16920. weight: math.unit(147, "lb"),
  16921. name: "Front",
  16922. image: {
  16923. source: "./media/characters/natalie-kellon/front.svg",
  16924. extra: 1214 / 1141,
  16925. bottom: 0.02
  16926. }
  16927. },
  16928. },
  16929. [
  16930. {
  16931. name: "Micro",
  16932. height: math.unit(1 / 16, "inch")
  16933. },
  16934. {
  16935. name: "Tiny",
  16936. height: math.unit(4, "inches")
  16937. },
  16938. {
  16939. name: "Normal",
  16940. height: math.unit(5 + 7 / 12, "feet"),
  16941. default: true
  16942. },
  16943. {
  16944. name: "Amazon",
  16945. height: math.unit(12, "feet")
  16946. },
  16947. {
  16948. name: "Giantess",
  16949. height: math.unit(160, "meters")
  16950. },
  16951. {
  16952. name: "Titaness",
  16953. height: math.unit(800, "meters")
  16954. },
  16955. ]
  16956. ))
  16957. characterMakers.push(() => makeCharacter(
  16958. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16959. {
  16960. front: {
  16961. height: math.unit(6, "feet"),
  16962. weight: math.unit(150, "lb"),
  16963. name: "Front",
  16964. image: {
  16965. source: "./media/characters/alluria/front.svg",
  16966. extra: 806 / 738,
  16967. bottom: 0.01
  16968. }
  16969. },
  16970. side: {
  16971. height: math.unit(6, "feet"),
  16972. weight: math.unit(150, "lb"),
  16973. name: "Side",
  16974. image: {
  16975. source: "./media/characters/alluria/side.svg",
  16976. extra: 800 / 750,
  16977. }
  16978. },
  16979. back: {
  16980. height: math.unit(6, "feet"),
  16981. weight: math.unit(150, "lb"),
  16982. name: "Back",
  16983. image: {
  16984. source: "./media/characters/alluria/back.svg",
  16985. extra: 806 / 738,
  16986. }
  16987. },
  16988. frontMaid: {
  16989. height: math.unit(6, "feet"),
  16990. weight: math.unit(150, "lb"),
  16991. name: "Front (Maid)",
  16992. image: {
  16993. source: "./media/characters/alluria/front-maid.svg",
  16994. extra: 806 / 738,
  16995. bottom: 0.01
  16996. }
  16997. },
  16998. sideMaid: {
  16999. height: math.unit(6, "feet"),
  17000. weight: math.unit(150, "lb"),
  17001. name: "Side (Maid)",
  17002. image: {
  17003. source: "./media/characters/alluria/side-maid.svg",
  17004. extra: 800 / 750,
  17005. bottom: 0.005
  17006. }
  17007. },
  17008. backMaid: {
  17009. height: math.unit(6, "feet"),
  17010. weight: math.unit(150, "lb"),
  17011. name: "Back (Maid)",
  17012. image: {
  17013. source: "./media/characters/alluria/back-maid.svg",
  17014. extra: 806 / 738,
  17015. }
  17016. },
  17017. },
  17018. [
  17019. {
  17020. name: "Micro",
  17021. height: math.unit(6, "inches"),
  17022. default: true
  17023. },
  17024. ]
  17025. ))
  17026. characterMakers.push(() => makeCharacter(
  17027. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17028. {
  17029. front: {
  17030. height: math.unit(6, "feet"),
  17031. weight: math.unit(150, "lb"),
  17032. name: "Front",
  17033. image: {
  17034. source: "./media/characters/kyle/front.svg",
  17035. extra: 1069 / 962,
  17036. bottom: 77.228 / 1727.45
  17037. }
  17038. },
  17039. },
  17040. [
  17041. {
  17042. name: "Macro",
  17043. height: math.unit(150, "feet"),
  17044. default: true
  17045. },
  17046. ]
  17047. ))
  17048. characterMakers.push(() => makeCharacter(
  17049. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17050. {
  17051. front: {
  17052. height: math.unit(6, "feet"),
  17053. weight: math.unit(300, "lb"),
  17054. name: "Front",
  17055. image: {
  17056. source: "./media/characters/duncan/front.svg",
  17057. extra: 1650 / 1482,
  17058. bottom: 0.05
  17059. }
  17060. },
  17061. },
  17062. [
  17063. {
  17064. name: "Macro",
  17065. height: math.unit(100, "feet"),
  17066. default: true
  17067. },
  17068. ]
  17069. ))
  17070. characterMakers.push(() => makeCharacter(
  17071. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17072. {
  17073. front: {
  17074. height: math.unit(5 + 4 / 12, "feet"),
  17075. weight: math.unit(220, "lb"),
  17076. name: "Front",
  17077. image: {
  17078. source: "./media/characters/memory/front.svg",
  17079. extra: 3641 / 3545,
  17080. bottom: 0.03
  17081. }
  17082. },
  17083. back: {
  17084. height: math.unit(5 + 4 / 12, "feet"),
  17085. weight: math.unit(220, "lb"),
  17086. name: "Back",
  17087. image: {
  17088. source: "./media/characters/memory/back.svg",
  17089. extra: 3641 / 3545,
  17090. bottom: 0.025
  17091. }
  17092. },
  17093. frontSkirt: {
  17094. height: math.unit(5 + 4 / 12, "feet"),
  17095. weight: math.unit(220, "lb"),
  17096. name: "Front (Skirt)",
  17097. image: {
  17098. source: "./media/characters/memory/front-skirt.svg",
  17099. extra: 3641 / 3545,
  17100. bottom: 0.03
  17101. }
  17102. },
  17103. frontDress: {
  17104. height: math.unit(5 + 4 / 12, "feet"),
  17105. weight: math.unit(220, "lb"),
  17106. name: "Front (Dress)",
  17107. image: {
  17108. source: "./media/characters/memory/front-dress.svg",
  17109. extra: 3641 / 3545,
  17110. bottom: 0.03
  17111. }
  17112. },
  17113. },
  17114. [
  17115. {
  17116. name: "Micro",
  17117. height: math.unit(6, "inches"),
  17118. default: true
  17119. },
  17120. {
  17121. name: "Normal",
  17122. height: math.unit(5 + 4 / 12, "feet")
  17123. },
  17124. ]
  17125. ))
  17126. characterMakers.push(() => makeCharacter(
  17127. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17128. {
  17129. front: {
  17130. height: math.unit(4 + 11 / 12, "feet"),
  17131. weight: math.unit(100, "lb"),
  17132. name: "Front",
  17133. image: {
  17134. source: "./media/characters/luno/front.svg",
  17135. extra: 1535 / 1487,
  17136. bottom: 0.03
  17137. }
  17138. },
  17139. },
  17140. [
  17141. {
  17142. name: "Micro",
  17143. height: math.unit(3, "inches")
  17144. },
  17145. {
  17146. name: "Normal",
  17147. height: math.unit(4 + 11 / 12, "feet"),
  17148. default: true
  17149. },
  17150. {
  17151. name: "Macro",
  17152. height: math.unit(300, "feet")
  17153. },
  17154. {
  17155. name: "Megamacro",
  17156. height: math.unit(700, "miles")
  17157. },
  17158. ]
  17159. ))
  17160. characterMakers.push(() => makeCharacter(
  17161. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17162. {
  17163. front: {
  17164. height: math.unit(6 + 2 / 12, "feet"),
  17165. weight: math.unit(170, "lb"),
  17166. name: "Front",
  17167. image: {
  17168. source: "./media/characters/jamesy/front.svg",
  17169. extra: 440 / 382,
  17170. bottom: 0.005
  17171. }
  17172. },
  17173. },
  17174. [
  17175. {
  17176. name: "Micro",
  17177. height: math.unit(3, "inches")
  17178. },
  17179. {
  17180. name: "Normal",
  17181. height: math.unit(6 + 2 / 12, "feet"),
  17182. default: true
  17183. },
  17184. {
  17185. name: "Macro",
  17186. height: math.unit(300, "feet")
  17187. },
  17188. {
  17189. name: "Megamacro",
  17190. height: math.unit(700, "miles")
  17191. },
  17192. ]
  17193. ))
  17194. characterMakers.push(() => makeCharacter(
  17195. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17196. {
  17197. front: {
  17198. height: math.unit(6, "feet"),
  17199. weight: math.unit(160, "lb"),
  17200. name: "Front",
  17201. image: {
  17202. source: "./media/characters/mark/front.svg",
  17203. extra: 3300 / 3100,
  17204. bottom: 136.42 / 3440.47
  17205. }
  17206. },
  17207. },
  17208. [
  17209. {
  17210. name: "Macro",
  17211. height: math.unit(120, "meters")
  17212. },
  17213. {
  17214. name: "Bigger Macro",
  17215. height: math.unit(350, "meters")
  17216. },
  17217. {
  17218. name: "Megamacro",
  17219. height: math.unit(8, "km"),
  17220. default: true
  17221. },
  17222. {
  17223. name: "Continental",
  17224. height: math.unit(4550, "km")
  17225. },
  17226. {
  17227. name: "Planetary",
  17228. height: math.unit(65000, "km")
  17229. },
  17230. ]
  17231. ))
  17232. characterMakers.push(() => makeCharacter(
  17233. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17234. {
  17235. front: {
  17236. height: math.unit(6, "feet"),
  17237. weight: math.unit(400, "lb"),
  17238. name: "Front",
  17239. image: {
  17240. source: "./media/characters/mac/front.svg",
  17241. extra: 1048 / 987.7,
  17242. bottom: 60 / 1107.6,
  17243. }
  17244. },
  17245. },
  17246. [
  17247. {
  17248. name: "Macro",
  17249. height: math.unit(500, "feet"),
  17250. default: true
  17251. },
  17252. ]
  17253. ))
  17254. characterMakers.push(() => makeCharacter(
  17255. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17256. {
  17257. front: {
  17258. height: math.unit(5 + 2 / 12, "feet"),
  17259. weight: math.unit(190, "lb"),
  17260. name: "Front",
  17261. image: {
  17262. source: "./media/characters/bari/front.svg",
  17263. extra: 3156 / 2880,
  17264. bottom: 0.03
  17265. }
  17266. },
  17267. back: {
  17268. height: math.unit(5 + 2 / 12, "feet"),
  17269. weight: math.unit(190, "lb"),
  17270. name: "Back",
  17271. image: {
  17272. source: "./media/characters/bari/back.svg",
  17273. extra: 3260 / 2834,
  17274. bottom: 0.025
  17275. }
  17276. },
  17277. frontPlush: {
  17278. height: math.unit(5 + 2 / 12, "feet"),
  17279. weight: math.unit(190, "lb"),
  17280. name: "Front (Plush)",
  17281. image: {
  17282. source: "./media/characters/bari/front-plush.svg",
  17283. extra: 1112 / 1061,
  17284. bottom: 0.002
  17285. }
  17286. },
  17287. },
  17288. [
  17289. {
  17290. name: "Micro",
  17291. height: math.unit(3, "inches")
  17292. },
  17293. {
  17294. name: "Normal",
  17295. height: math.unit(5 + 2 / 12, "feet"),
  17296. default: true
  17297. },
  17298. {
  17299. name: "Macro",
  17300. height: math.unit(20, "feet")
  17301. },
  17302. ]
  17303. ))
  17304. characterMakers.push(() => makeCharacter(
  17305. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17306. {
  17307. front: {
  17308. height: math.unit(6 + 1 / 12, "feet"),
  17309. weight: math.unit(275, "lb"),
  17310. name: "Front",
  17311. image: {
  17312. source: "./media/characters/hunter-misha-raven/front.svg"
  17313. }
  17314. },
  17315. },
  17316. [
  17317. {
  17318. name: "Mortal",
  17319. height: math.unit(6 + 1 / 12, "feet")
  17320. },
  17321. {
  17322. name: "Divine",
  17323. height: math.unit(1.12134e34, "parsecs"),
  17324. default: true
  17325. },
  17326. ]
  17327. ))
  17328. characterMakers.push(() => makeCharacter(
  17329. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17330. {
  17331. front: {
  17332. height: math.unit(6 + 3 / 12, "feet"),
  17333. weight: math.unit(220, "lb"),
  17334. name: "Front",
  17335. image: {
  17336. source: "./media/characters/max-calore/front.svg",
  17337. extra: 1700 / 1648,
  17338. bottom: 0.01
  17339. }
  17340. },
  17341. back: {
  17342. height: math.unit(6 + 3 / 12, "feet"),
  17343. weight: math.unit(220, "lb"),
  17344. name: "Back",
  17345. image: {
  17346. source: "./media/characters/max-calore/back.svg",
  17347. extra: 1700 / 1648,
  17348. bottom: 0.01
  17349. }
  17350. },
  17351. },
  17352. [
  17353. {
  17354. name: "Normal",
  17355. height: math.unit(6 + 3 / 12, "feet"),
  17356. default: true
  17357. },
  17358. ]
  17359. ))
  17360. characterMakers.push(() => makeCharacter(
  17361. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17362. {
  17363. side: {
  17364. height: math.unit(2 + 8 / 12, "feet"),
  17365. weight: math.unit(99, "lb"),
  17366. name: "Side",
  17367. image: {
  17368. source: "./media/characters/aspen/side.svg",
  17369. extra: 152 / 138,
  17370. bottom: 0.032
  17371. }
  17372. },
  17373. },
  17374. [
  17375. {
  17376. name: "Normal",
  17377. height: math.unit(2 + 8 / 12, "feet"),
  17378. default: true
  17379. },
  17380. ]
  17381. ))
  17382. characterMakers.push(() => makeCharacter(
  17383. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17384. {
  17385. side: {
  17386. height: math.unit(3 + 2 / 12, "feet"),
  17387. weight: math.unit(224, "lb"),
  17388. name: "Side",
  17389. image: {
  17390. source: "./media/characters/sheila-feral-wolf/side.svg",
  17391. extra: 179 / 166,
  17392. bottom: 0.03
  17393. }
  17394. },
  17395. },
  17396. [
  17397. {
  17398. name: "Normal",
  17399. height: math.unit(3 + 2 / 12, "feet"),
  17400. default: true
  17401. },
  17402. ]
  17403. ))
  17404. characterMakers.push(() => makeCharacter(
  17405. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17406. {
  17407. side: {
  17408. height: math.unit(1 + 9 / 12, "feet"),
  17409. weight: math.unit(38, "lb"),
  17410. name: "Side",
  17411. image: {
  17412. source: "./media/characters/michelle/side.svg",
  17413. extra: 147 / 136.7,
  17414. bottom: 0.03
  17415. }
  17416. },
  17417. },
  17418. [
  17419. {
  17420. name: "Normal",
  17421. height: math.unit(1 + 9 / 12, "feet"),
  17422. default: true
  17423. },
  17424. ]
  17425. ))
  17426. characterMakers.push(() => makeCharacter(
  17427. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17428. {
  17429. front: {
  17430. height: math.unit(1.54, "feet"),
  17431. weight: math.unit(50, "lb"),
  17432. name: "Front",
  17433. image: {
  17434. source: "./media/characters/nino/front.svg"
  17435. }
  17436. },
  17437. },
  17438. [
  17439. {
  17440. name: "Normal",
  17441. height: math.unit(1.54, "feet"),
  17442. default: true
  17443. },
  17444. ]
  17445. ))
  17446. characterMakers.push(() => makeCharacter(
  17447. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17448. {
  17449. front: {
  17450. height: math.unit(1.49, "feet"),
  17451. weight: math.unit(45, "lb"),
  17452. name: "Front",
  17453. image: {
  17454. source: "./media/characters/viola/front.svg"
  17455. }
  17456. },
  17457. },
  17458. [
  17459. {
  17460. name: "Normal",
  17461. height: math.unit(1.49, "feet"),
  17462. default: true
  17463. },
  17464. ]
  17465. ))
  17466. characterMakers.push(() => makeCharacter(
  17467. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17468. {
  17469. front: {
  17470. height: math.unit(6 + 5 / 12, "feet"),
  17471. weight: math.unit(580, "lb"),
  17472. name: "Front",
  17473. image: {
  17474. source: "./media/characters/atlas/front.svg",
  17475. extra: 298.5 / 290,
  17476. bottom: 0.015
  17477. }
  17478. },
  17479. },
  17480. [
  17481. {
  17482. name: "Normal",
  17483. height: math.unit(6 + 5 / 12, "feet"),
  17484. default: true
  17485. },
  17486. ]
  17487. ))
  17488. characterMakers.push(() => makeCharacter(
  17489. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17490. {
  17491. side: {
  17492. height: math.unit(15.6, "inches"),
  17493. weight: math.unit(10, "lb"),
  17494. name: "Side",
  17495. image: {
  17496. source: "./media/characters/davy/side.svg",
  17497. extra: 200 / 170,
  17498. bottom: 0.01
  17499. }
  17500. },
  17501. },
  17502. [
  17503. {
  17504. name: "Normal",
  17505. height: math.unit(15.6, "inches"),
  17506. default: true
  17507. },
  17508. ]
  17509. ))
  17510. characterMakers.push(() => makeCharacter(
  17511. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17512. {
  17513. side: {
  17514. height: math.unit(4 + 8 / 12, "feet"),
  17515. weight: math.unit(166, "lb"),
  17516. name: "Side",
  17517. image: {
  17518. source: "./media/characters/fiona/side.svg",
  17519. extra: 232 / 220,
  17520. bottom: 0.03
  17521. }
  17522. },
  17523. },
  17524. [
  17525. {
  17526. name: "Normal",
  17527. height: math.unit(4 + 8 / 12, "feet"),
  17528. default: true
  17529. },
  17530. ]
  17531. ))
  17532. characterMakers.push(() => makeCharacter(
  17533. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17534. {
  17535. front: {
  17536. height: math.unit(26, "inches"),
  17537. weight: math.unit(35, "lb"),
  17538. name: "Front",
  17539. image: {
  17540. source: "./media/characters/lyla/front.svg",
  17541. bottom: 0.1
  17542. }
  17543. },
  17544. },
  17545. [
  17546. {
  17547. name: "Normal",
  17548. height: math.unit(3, "feet"),
  17549. default: true
  17550. },
  17551. ]
  17552. ))
  17553. characterMakers.push(() => makeCharacter(
  17554. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17555. {
  17556. side: {
  17557. height: math.unit(1.8, "feet"),
  17558. weight: math.unit(44, "lb"),
  17559. name: "Side",
  17560. image: {
  17561. source: "./media/characters/perseus/side.svg",
  17562. bottom: 0.21
  17563. }
  17564. },
  17565. },
  17566. [
  17567. {
  17568. name: "Normal",
  17569. height: math.unit(1.8, "feet"),
  17570. default: true
  17571. },
  17572. ]
  17573. ))
  17574. characterMakers.push(() => makeCharacter(
  17575. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17576. {
  17577. side: {
  17578. height: math.unit(4 + 2 / 12, "feet"),
  17579. weight: math.unit(20, "lb"),
  17580. name: "Side",
  17581. image: {
  17582. source: "./media/characters/remus/side.svg"
  17583. }
  17584. },
  17585. },
  17586. [
  17587. {
  17588. name: "Normal",
  17589. height: math.unit(4 + 2 / 12, "feet"),
  17590. default: true
  17591. },
  17592. ]
  17593. ))
  17594. characterMakers.push(() => makeCharacter(
  17595. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17596. {
  17597. front: {
  17598. height: math.unit(4 + 11 / 12, "feet"),
  17599. weight: math.unit(114, "lb"),
  17600. name: "Front",
  17601. image: {
  17602. source: "./media/characters/raf/front.svg",
  17603. extra: 1504/1339,
  17604. bottom: 26/1530
  17605. }
  17606. },
  17607. side: {
  17608. height: math.unit(4 + 11 / 12, "feet"),
  17609. weight: math.unit(114, "lb"),
  17610. name: "Side",
  17611. image: {
  17612. source: "./media/characters/raf/side.svg",
  17613. extra: 1466/1316,
  17614. bottom: 29/1495
  17615. }
  17616. },
  17617. },
  17618. [
  17619. {
  17620. name: "Micro",
  17621. height: math.unit(2, "inches")
  17622. },
  17623. {
  17624. name: "Normal",
  17625. height: math.unit(4 + 11 / 12, "feet"),
  17626. default: true
  17627. },
  17628. {
  17629. name: "Macro",
  17630. height: math.unit(70, "feet")
  17631. },
  17632. ]
  17633. ))
  17634. characterMakers.push(() => makeCharacter(
  17635. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17636. {
  17637. front: {
  17638. height: math.unit(1.5, "meters"),
  17639. weight: math.unit(68, "kg"),
  17640. name: "Front",
  17641. image: {
  17642. source: "./media/characters/liam-einarr/front.svg",
  17643. extra: 2822 / 2666
  17644. }
  17645. },
  17646. back: {
  17647. height: math.unit(1.5, "meters"),
  17648. weight: math.unit(68, "kg"),
  17649. name: "Back",
  17650. image: {
  17651. source: "./media/characters/liam-einarr/back.svg",
  17652. extra: 2822 / 2666,
  17653. bottom: 0.015
  17654. }
  17655. },
  17656. },
  17657. [
  17658. {
  17659. name: "Normal",
  17660. height: math.unit(1.5, "meters"),
  17661. default: true
  17662. },
  17663. {
  17664. name: "Macro",
  17665. height: math.unit(150, "meters")
  17666. },
  17667. {
  17668. name: "Megamacro",
  17669. height: math.unit(35, "km")
  17670. },
  17671. ]
  17672. ))
  17673. characterMakers.push(() => makeCharacter(
  17674. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17675. {
  17676. front: {
  17677. height: math.unit(6, "feet"),
  17678. weight: math.unit(75, "kg"),
  17679. name: "Front",
  17680. image: {
  17681. source: "./media/characters/linda/front.svg",
  17682. extra: 930 / 874,
  17683. bottom: 0.004
  17684. }
  17685. },
  17686. },
  17687. [
  17688. {
  17689. name: "Normal",
  17690. height: math.unit(6, "feet"),
  17691. default: true
  17692. },
  17693. ]
  17694. ))
  17695. characterMakers.push(() => makeCharacter(
  17696. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17697. {
  17698. front: {
  17699. height: math.unit(6 + 8 / 12, "feet"),
  17700. weight: math.unit(220, "lb"),
  17701. name: "Front",
  17702. image: {
  17703. source: "./media/characters/caylex/front.svg",
  17704. extra: 821 / 772,
  17705. bottom: 0.07
  17706. }
  17707. },
  17708. back: {
  17709. height: math.unit(6 + 8 / 12, "feet"),
  17710. weight: math.unit(220, "lb"),
  17711. name: "Back",
  17712. image: {
  17713. source: "./media/characters/caylex/back.svg",
  17714. extra: 821 / 772,
  17715. bottom: 0.022
  17716. }
  17717. },
  17718. hand: {
  17719. height: math.unit(1.25, "feet"),
  17720. name: "Hand",
  17721. image: {
  17722. source: "./media/characters/caylex/hand.svg"
  17723. }
  17724. },
  17725. foot: {
  17726. height: math.unit(1.6, "feet"),
  17727. name: "Foot",
  17728. image: {
  17729. source: "./media/characters/caylex/foot.svg"
  17730. }
  17731. },
  17732. armored: {
  17733. height: math.unit(6 + 8 / 12, "feet"),
  17734. weight: math.unit(250, "lb"),
  17735. name: "Armored",
  17736. image: {
  17737. source: "./media/characters/caylex/armored.svg",
  17738. extra: 1420 / 1310,
  17739. bottom: 0.045
  17740. }
  17741. },
  17742. },
  17743. [
  17744. {
  17745. name: "Normal",
  17746. height: math.unit(6 + 8 / 12, "feet"),
  17747. default: true
  17748. },
  17749. {
  17750. name: "Normal+",
  17751. height: math.unit(12, "feet")
  17752. },
  17753. ]
  17754. ))
  17755. characterMakers.push(() => makeCharacter(
  17756. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17757. {
  17758. front: {
  17759. height: math.unit(7 + 6 / 12, "feet"),
  17760. weight: math.unit(288, "lb"),
  17761. name: "Front",
  17762. image: {
  17763. source: "./media/characters/alana/front.svg",
  17764. extra: 679 / 653,
  17765. bottom: 22.5 / 701
  17766. }
  17767. },
  17768. },
  17769. [
  17770. {
  17771. name: "Normal",
  17772. height: math.unit(7 + 6 / 12, "feet")
  17773. },
  17774. {
  17775. name: "Large",
  17776. height: math.unit(50, "feet")
  17777. },
  17778. {
  17779. name: "Macro",
  17780. height: math.unit(100, "feet"),
  17781. default: true
  17782. },
  17783. {
  17784. name: "Macro+",
  17785. height: math.unit(200, "feet")
  17786. },
  17787. ]
  17788. ))
  17789. characterMakers.push(() => makeCharacter(
  17790. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17791. {
  17792. front: {
  17793. height: math.unit(6 + 1 / 12, "feet"),
  17794. weight: math.unit(210, "lb"),
  17795. name: "Front",
  17796. image: {
  17797. source: "./media/characters/hasani/front.svg",
  17798. extra: 244 / 232,
  17799. bottom: 0.01
  17800. }
  17801. },
  17802. back: {
  17803. height: math.unit(6 + 1 / 12, "feet"),
  17804. weight: math.unit(210, "lb"),
  17805. name: "Back",
  17806. image: {
  17807. source: "./media/characters/hasani/back.svg",
  17808. extra: 244 / 232,
  17809. bottom: 0.01
  17810. }
  17811. },
  17812. },
  17813. [
  17814. {
  17815. name: "Normal",
  17816. height: math.unit(6 + 1 / 12, "feet")
  17817. },
  17818. {
  17819. name: "Macro",
  17820. height: math.unit(175, "feet"),
  17821. default: true
  17822. },
  17823. ]
  17824. ))
  17825. characterMakers.push(() => makeCharacter(
  17826. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17827. {
  17828. front: {
  17829. height: math.unit(1.82, "meters"),
  17830. weight: math.unit(140, "lb"),
  17831. name: "Front",
  17832. image: {
  17833. source: "./media/characters/nita/front.svg",
  17834. extra: 2473 / 2363,
  17835. bottom: 0.01
  17836. }
  17837. },
  17838. },
  17839. [
  17840. {
  17841. name: "Normal",
  17842. height: math.unit(1.82, "m")
  17843. },
  17844. {
  17845. name: "Macro",
  17846. height: math.unit(300, "m")
  17847. },
  17848. {
  17849. name: "Mistake Canon",
  17850. height: math.unit(0.5, "miles"),
  17851. default: true
  17852. },
  17853. {
  17854. name: "Big Mistake",
  17855. height: math.unit(13, "miles")
  17856. },
  17857. {
  17858. name: "Playing God",
  17859. height: math.unit(2450, "miles")
  17860. },
  17861. ]
  17862. ))
  17863. characterMakers.push(() => makeCharacter(
  17864. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17865. {
  17866. front: {
  17867. height: math.unit(4, "feet"),
  17868. weight: math.unit(120, "lb"),
  17869. name: "Front",
  17870. image: {
  17871. source: "./media/characters/shiriko/front.svg",
  17872. extra: 970/934,
  17873. bottom: 5/975
  17874. }
  17875. },
  17876. },
  17877. [
  17878. {
  17879. name: "Normal",
  17880. height: math.unit(4, "feet"),
  17881. default: true
  17882. },
  17883. ]
  17884. ))
  17885. characterMakers.push(() => makeCharacter(
  17886. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17887. {
  17888. front: {
  17889. height: math.unit(6, "feet"),
  17890. name: "front",
  17891. image: {
  17892. source: "./media/characters/deja/front.svg",
  17893. extra: 926 / 840,
  17894. bottom: 0.07
  17895. }
  17896. },
  17897. },
  17898. [
  17899. {
  17900. name: "Planck Length",
  17901. height: math.unit(1.6e-35, "meters")
  17902. },
  17903. {
  17904. name: "Normal",
  17905. height: math.unit(30.48, "meters"),
  17906. default: true
  17907. },
  17908. {
  17909. name: "Universal",
  17910. height: math.unit(8.8e26, "meters")
  17911. },
  17912. ]
  17913. ))
  17914. characterMakers.push(() => makeCharacter(
  17915. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17916. {
  17917. side: {
  17918. height: math.unit(8, "feet"),
  17919. weight: math.unit(6300, "lb"),
  17920. name: "Side",
  17921. image: {
  17922. source: "./media/characters/anima/side.svg",
  17923. bottom: 0.035
  17924. }
  17925. },
  17926. },
  17927. [
  17928. {
  17929. name: "Normal",
  17930. height: math.unit(8, "feet"),
  17931. default: true
  17932. },
  17933. ]
  17934. ))
  17935. characterMakers.push(() => makeCharacter(
  17936. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17937. {
  17938. front: {
  17939. height: math.unit(8, "feet"),
  17940. weight: math.unit(350, "lb"),
  17941. name: "Front",
  17942. image: {
  17943. source: "./media/characters/bianca/front.svg",
  17944. extra: 234 / 225,
  17945. bottom: 0.03
  17946. }
  17947. },
  17948. },
  17949. [
  17950. {
  17951. name: "Normal",
  17952. height: math.unit(8, "feet"),
  17953. default: true
  17954. },
  17955. ]
  17956. ))
  17957. characterMakers.push(() => makeCharacter(
  17958. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17959. {
  17960. front: {
  17961. height: math.unit(6, "feet"),
  17962. weight: math.unit(150, "lb"),
  17963. name: "Front",
  17964. image: {
  17965. source: "./media/characters/adinia/front.svg",
  17966. extra: 1845 / 1672,
  17967. bottom: 0.02
  17968. }
  17969. },
  17970. back: {
  17971. height: math.unit(6, "feet"),
  17972. weight: math.unit(150, "lb"),
  17973. name: "Back",
  17974. image: {
  17975. source: "./media/characters/adinia/back.svg",
  17976. extra: 1845 / 1672,
  17977. bottom: 0.002
  17978. }
  17979. },
  17980. },
  17981. [
  17982. {
  17983. name: "Normal",
  17984. height: math.unit(11 + 5 / 12, "feet"),
  17985. default: true
  17986. },
  17987. ]
  17988. ))
  17989. characterMakers.push(() => makeCharacter(
  17990. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17991. {
  17992. front: {
  17993. height: math.unit(3, "meters"),
  17994. weight: math.unit(200, "kg"),
  17995. name: "Front",
  17996. image: {
  17997. source: "./media/characters/lykasa/front.svg",
  17998. extra: 1076 / 976,
  17999. bottom: 0.06
  18000. }
  18001. },
  18002. },
  18003. [
  18004. {
  18005. name: "Normal",
  18006. height: math.unit(3, "meters")
  18007. },
  18008. {
  18009. name: "Kaiju",
  18010. height: math.unit(120, "meters"),
  18011. default: true
  18012. },
  18013. {
  18014. name: "Mega Kaiju",
  18015. height: math.unit(240, "km")
  18016. },
  18017. {
  18018. name: "Giga Kaiju",
  18019. height: math.unit(400, "megameters")
  18020. },
  18021. {
  18022. name: "Tera Kaiju",
  18023. height: math.unit(800, "gigameters")
  18024. },
  18025. {
  18026. name: "Kaiju Dragon Goddess",
  18027. height: math.unit(26, "zettaparsecs")
  18028. },
  18029. ]
  18030. ))
  18031. characterMakers.push(() => makeCharacter(
  18032. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18033. {
  18034. side: {
  18035. height: math.unit(283 / 124 * 6, "feet"),
  18036. weight: math.unit(35000, "lb"),
  18037. name: "Side",
  18038. image: {
  18039. source: "./media/characters/malfaren/side.svg",
  18040. extra: 1310/529,
  18041. bottom: 24/1334
  18042. }
  18043. },
  18044. front: {
  18045. height: math.unit(22.36, "feet"),
  18046. weight: math.unit(35000, "lb"),
  18047. name: "Front",
  18048. image: {
  18049. source: "./media/characters/malfaren/front.svg",
  18050. extra: 1237/1115,
  18051. bottom: 32/1269
  18052. }
  18053. },
  18054. maw: {
  18055. height: math.unit(6.9, "feet"),
  18056. name: "Maw",
  18057. image: {
  18058. source: "./media/characters/malfaren/maw.svg"
  18059. }
  18060. },
  18061. dick: {
  18062. height: math.unit(6.19, "feet"),
  18063. name: "Dick",
  18064. image: {
  18065. source: "./media/characters/malfaren/dick.svg"
  18066. }
  18067. },
  18068. eye: {
  18069. height: math.unit(0.69, "feet"),
  18070. name: "Eye",
  18071. image: {
  18072. source: "./media/characters/malfaren/eye.svg"
  18073. }
  18074. },
  18075. },
  18076. [
  18077. {
  18078. name: "Big",
  18079. height: math.unit(283 / 162 * 6, "feet"),
  18080. },
  18081. {
  18082. name: "Bigger",
  18083. height: math.unit(283 / 124 * 6, "feet")
  18084. },
  18085. {
  18086. name: "Massive",
  18087. height: math.unit(283 / 92 * 6, "feet"),
  18088. default: true
  18089. },
  18090. {
  18091. name: "👀💦",
  18092. height: math.unit(283 / 73 * 6, "feet"),
  18093. },
  18094. ]
  18095. ))
  18096. characterMakers.push(() => makeCharacter(
  18097. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18098. {
  18099. front: {
  18100. height: math.unit(1.7, "m"),
  18101. weight: math.unit(70, "kg"),
  18102. name: "Front",
  18103. image: {
  18104. source: "./media/characters/kernel/front.svg",
  18105. extra: 222 / 210,
  18106. bottom: 0.007
  18107. }
  18108. },
  18109. },
  18110. [
  18111. {
  18112. name: "Nano",
  18113. height: math.unit(17, "micrometers")
  18114. },
  18115. {
  18116. name: "Micro",
  18117. height: math.unit(1.7, "mm")
  18118. },
  18119. {
  18120. name: "Small",
  18121. height: math.unit(1.7, "cm")
  18122. },
  18123. {
  18124. name: "Normal",
  18125. height: math.unit(1.7, "m"),
  18126. default: true
  18127. },
  18128. ]
  18129. ))
  18130. characterMakers.push(() => makeCharacter(
  18131. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18132. {
  18133. front: {
  18134. height: math.unit(1.75, "meters"),
  18135. weight: math.unit(65, "kg"),
  18136. name: "Front",
  18137. image: {
  18138. source: "./media/characters/jayne-folest/front.svg",
  18139. extra: 2115 / 2007,
  18140. bottom: 0.02
  18141. }
  18142. },
  18143. back: {
  18144. height: math.unit(1.75, "meters"),
  18145. weight: math.unit(65, "kg"),
  18146. name: "Back",
  18147. image: {
  18148. source: "./media/characters/jayne-folest/back.svg",
  18149. extra: 2115 / 2007,
  18150. bottom: 0.005
  18151. }
  18152. },
  18153. frontClothed: {
  18154. height: math.unit(1.75, "meters"),
  18155. weight: math.unit(65, "kg"),
  18156. name: "Front (Clothed)",
  18157. image: {
  18158. source: "./media/characters/jayne-folest/front-clothed.svg",
  18159. extra: 2115 / 2007,
  18160. bottom: 0.035
  18161. }
  18162. },
  18163. hand: {
  18164. height: math.unit(1 / 1.260, "feet"),
  18165. name: "Hand",
  18166. image: {
  18167. source: "./media/characters/jayne-folest/hand.svg"
  18168. }
  18169. },
  18170. foot: {
  18171. height: math.unit(1 / 0.918, "feet"),
  18172. name: "Foot",
  18173. image: {
  18174. source: "./media/characters/jayne-folest/foot.svg"
  18175. }
  18176. },
  18177. },
  18178. [
  18179. {
  18180. name: "Micro",
  18181. height: math.unit(4, "cm")
  18182. },
  18183. {
  18184. name: "Normal",
  18185. height: math.unit(1.75, "meters")
  18186. },
  18187. {
  18188. name: "Macro",
  18189. height: math.unit(47.5, "meters"),
  18190. default: true
  18191. },
  18192. ]
  18193. ))
  18194. characterMakers.push(() => makeCharacter(
  18195. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18196. {
  18197. front: {
  18198. height: math.unit(180, "cm"),
  18199. weight: math.unit(70, "kg"),
  18200. name: "Front",
  18201. image: {
  18202. source: "./media/characters/algier/front.svg",
  18203. extra: 596 / 572,
  18204. bottom: 0.04
  18205. }
  18206. },
  18207. back: {
  18208. height: math.unit(180, "cm"),
  18209. weight: math.unit(70, "kg"),
  18210. name: "Back",
  18211. image: {
  18212. source: "./media/characters/algier/back.svg",
  18213. extra: 596 / 572,
  18214. bottom: 0.025
  18215. }
  18216. },
  18217. frontdressed: {
  18218. height: math.unit(180, "cm"),
  18219. weight: math.unit(150, "kg"),
  18220. name: "Front-dressed",
  18221. image: {
  18222. source: "./media/characters/algier/front-dressed.svg",
  18223. extra: 596 / 572,
  18224. bottom: 0.038
  18225. }
  18226. },
  18227. },
  18228. [
  18229. {
  18230. name: "Micro",
  18231. height: math.unit(5, "cm")
  18232. },
  18233. {
  18234. name: "Normal",
  18235. height: math.unit(180, "cm"),
  18236. default: true
  18237. },
  18238. {
  18239. name: "Macro",
  18240. height: math.unit(64, "m")
  18241. },
  18242. ]
  18243. ))
  18244. characterMakers.push(() => makeCharacter(
  18245. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18246. {
  18247. upright: {
  18248. height: math.unit(7, "feet"),
  18249. weight: math.unit(300, "lb"),
  18250. name: "Upright",
  18251. image: {
  18252. source: "./media/characters/pretzel/upright.svg",
  18253. extra: 534 / 522,
  18254. bottom: 0.065
  18255. }
  18256. },
  18257. sprawling: {
  18258. height: math.unit(3.75, "feet"),
  18259. weight: math.unit(300, "lb"),
  18260. name: "Sprawling",
  18261. image: {
  18262. source: "./media/characters/pretzel/sprawling.svg",
  18263. extra: 314 / 281,
  18264. bottom: 0.1
  18265. }
  18266. },
  18267. tongue: {
  18268. height: math.unit(2, "feet"),
  18269. name: "Tongue",
  18270. image: {
  18271. source: "./media/characters/pretzel/tongue.svg"
  18272. }
  18273. },
  18274. },
  18275. [
  18276. {
  18277. name: "Normal",
  18278. height: math.unit(7, "feet"),
  18279. default: true
  18280. },
  18281. {
  18282. name: "Oversized",
  18283. height: math.unit(15, "feet")
  18284. },
  18285. {
  18286. name: "Huge",
  18287. height: math.unit(30, "feet")
  18288. },
  18289. {
  18290. name: "Macro",
  18291. height: math.unit(250, "feet")
  18292. },
  18293. ]
  18294. ))
  18295. characterMakers.push(() => makeCharacter(
  18296. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18297. {
  18298. sideFront: {
  18299. height: math.unit(5 + 2 / 12, "feet"),
  18300. weight: math.unit(120, "lb"),
  18301. name: "Front Side",
  18302. image: {
  18303. source: "./media/characters/roxi/side-front.svg",
  18304. extra: 2924 / 2717,
  18305. bottom: 0.08
  18306. }
  18307. },
  18308. sideBack: {
  18309. height: math.unit(5 + 2 / 12, "feet"),
  18310. weight: math.unit(120, "lb"),
  18311. name: "Back Side",
  18312. image: {
  18313. source: "./media/characters/roxi/side-back.svg",
  18314. extra: 2904 / 2693,
  18315. bottom: 0.06
  18316. }
  18317. },
  18318. front: {
  18319. height: math.unit(5 + 2 / 12, "feet"),
  18320. weight: math.unit(120, "lb"),
  18321. name: "Front",
  18322. image: {
  18323. source: "./media/characters/roxi/front.svg",
  18324. extra: 2028 / 1907,
  18325. bottom: 0.01
  18326. }
  18327. },
  18328. frontAlt: {
  18329. height: math.unit(5 + 2 / 12, "feet"),
  18330. weight: math.unit(120, "lb"),
  18331. name: "Front (Alt)",
  18332. image: {
  18333. source: "./media/characters/roxi/front-alt.svg",
  18334. extra: 1828 / 1798,
  18335. bottom: 0.01
  18336. }
  18337. },
  18338. sitting: {
  18339. height: math.unit(2.8, "feet"),
  18340. weight: math.unit(120, "lb"),
  18341. name: "Sitting",
  18342. image: {
  18343. source: "./media/characters/roxi/sitting.svg",
  18344. extra: 2660 / 2462,
  18345. bottom: 0.1
  18346. }
  18347. },
  18348. },
  18349. [
  18350. {
  18351. name: "Normal",
  18352. height: math.unit(5 + 2 / 12, "feet"),
  18353. default: true
  18354. },
  18355. ]
  18356. ))
  18357. characterMakers.push(() => makeCharacter(
  18358. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18359. {
  18360. side: {
  18361. height: math.unit(55, "feet"),
  18362. weight: math.unit(153, "tons"),
  18363. name: "Side",
  18364. image: {
  18365. source: "./media/characters/shadow/side.svg",
  18366. extra: 701 / 628,
  18367. bottom: 0.02
  18368. }
  18369. },
  18370. flying: {
  18371. height: math.unit(145, "feet"),
  18372. weight: math.unit(153, "tons"),
  18373. name: "Flying",
  18374. image: {
  18375. source: "./media/characters/shadow/flying.svg"
  18376. }
  18377. },
  18378. },
  18379. [
  18380. {
  18381. name: "Normal",
  18382. height: math.unit(55, "feet"),
  18383. default: true
  18384. },
  18385. ]
  18386. ))
  18387. characterMakers.push(() => makeCharacter(
  18388. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18389. {
  18390. front: {
  18391. height: math.unit(6, "feet"),
  18392. weight: math.unit(200, "lb"),
  18393. name: "Front",
  18394. image: {
  18395. source: "./media/characters/marcie/front.svg",
  18396. extra: 960 / 876,
  18397. bottom: 58 / 1017.87
  18398. }
  18399. },
  18400. },
  18401. [
  18402. {
  18403. name: "Macro",
  18404. height: math.unit(1, "mile"),
  18405. default: true
  18406. },
  18407. ]
  18408. ))
  18409. characterMakers.push(() => makeCharacter(
  18410. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18411. {
  18412. front: {
  18413. height: math.unit(7, "feet"),
  18414. weight: math.unit(200, "lb"),
  18415. name: "Front",
  18416. image: {
  18417. source: "./media/characters/kachina/front.svg",
  18418. extra: 1290.68 / 1119,
  18419. bottom: 36.5 / 1327.18
  18420. }
  18421. },
  18422. },
  18423. [
  18424. {
  18425. name: "Normal",
  18426. height: math.unit(7, "feet"),
  18427. default: true
  18428. },
  18429. ]
  18430. ))
  18431. characterMakers.push(() => makeCharacter(
  18432. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18433. {
  18434. looking: {
  18435. height: math.unit(2, "meters"),
  18436. weight: math.unit(300, "kg"),
  18437. name: "Looking",
  18438. image: {
  18439. source: "./media/characters/kash/looking.svg",
  18440. extra: 474 / 344,
  18441. bottom: 0.03
  18442. }
  18443. },
  18444. side: {
  18445. height: math.unit(2, "meters"),
  18446. weight: math.unit(300, "kg"),
  18447. name: "Side",
  18448. image: {
  18449. source: "./media/characters/kash/side.svg",
  18450. extra: 302 / 251,
  18451. bottom: 0.03
  18452. }
  18453. },
  18454. front: {
  18455. height: math.unit(2, "meters"),
  18456. weight: math.unit(300, "kg"),
  18457. name: "Front",
  18458. image: {
  18459. source: "./media/characters/kash/front.svg",
  18460. extra: 495 / 360,
  18461. bottom: 0.015
  18462. }
  18463. },
  18464. },
  18465. [
  18466. {
  18467. name: "Normal",
  18468. height: math.unit(2, "meters"),
  18469. default: true
  18470. },
  18471. {
  18472. name: "Big",
  18473. height: math.unit(3, "meters")
  18474. },
  18475. {
  18476. name: "Large",
  18477. height: math.unit(5, "meters")
  18478. },
  18479. ]
  18480. ))
  18481. characterMakers.push(() => makeCharacter(
  18482. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18483. {
  18484. feeding: {
  18485. height: math.unit(6.7, "feet"),
  18486. weight: math.unit(350, "lb"),
  18487. name: "Feeding",
  18488. image: {
  18489. source: "./media/characters/lalim/feeding.svg",
  18490. }
  18491. },
  18492. },
  18493. [
  18494. {
  18495. name: "Normal",
  18496. height: math.unit(6.7, "feet"),
  18497. default: true
  18498. },
  18499. ]
  18500. ))
  18501. characterMakers.push(() => makeCharacter(
  18502. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18503. {
  18504. front: {
  18505. height: math.unit(9.5, "feet"),
  18506. weight: math.unit(600, "lb"),
  18507. name: "Front",
  18508. image: {
  18509. source: "./media/characters/de'vout/front.svg",
  18510. extra: 1443 / 1328,
  18511. bottom: 0.025
  18512. }
  18513. },
  18514. back: {
  18515. height: math.unit(9.5, "feet"),
  18516. weight: math.unit(600, "lb"),
  18517. name: "Back",
  18518. image: {
  18519. source: "./media/characters/de'vout/back.svg",
  18520. extra: 1443 / 1328
  18521. }
  18522. },
  18523. frontDressed: {
  18524. height: math.unit(9.5, "feet"),
  18525. weight: math.unit(600, "lb"),
  18526. name: "Front (Dressed",
  18527. image: {
  18528. source: "./media/characters/de'vout/front-dressed.svg",
  18529. extra: 1443 / 1328,
  18530. bottom: 0.025
  18531. }
  18532. },
  18533. backDressed: {
  18534. height: math.unit(9.5, "feet"),
  18535. weight: math.unit(600, "lb"),
  18536. name: "Back (Dressed",
  18537. image: {
  18538. source: "./media/characters/de'vout/back-dressed.svg",
  18539. extra: 1443 / 1328
  18540. }
  18541. },
  18542. },
  18543. [
  18544. {
  18545. name: "Normal",
  18546. height: math.unit(9.5, "feet"),
  18547. default: true
  18548. },
  18549. ]
  18550. ))
  18551. characterMakers.push(() => makeCharacter(
  18552. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18553. {
  18554. front: {
  18555. height: math.unit(8, "feet"),
  18556. weight: math.unit(225, "lb"),
  18557. name: "Front",
  18558. image: {
  18559. source: "./media/characters/talana/front.svg",
  18560. extra: 1410 / 1300,
  18561. bottom: 0.015
  18562. }
  18563. },
  18564. frontDressed: {
  18565. height: math.unit(8, "feet"),
  18566. weight: math.unit(225, "lb"),
  18567. name: "Front (Dressed",
  18568. image: {
  18569. source: "./media/characters/talana/front-dressed.svg",
  18570. extra: 1410 / 1300,
  18571. bottom: 0.015
  18572. }
  18573. },
  18574. },
  18575. [
  18576. {
  18577. name: "Normal",
  18578. height: math.unit(8, "feet"),
  18579. default: true
  18580. },
  18581. ]
  18582. ))
  18583. characterMakers.push(() => makeCharacter(
  18584. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18585. {
  18586. side: {
  18587. height: math.unit(7.2, "feet"),
  18588. weight: math.unit(150, "lb"),
  18589. name: "Side",
  18590. image: {
  18591. source: "./media/characters/xeauvok/side.svg",
  18592. extra: 1975 / 1523,
  18593. bottom: 0.07
  18594. }
  18595. },
  18596. },
  18597. [
  18598. {
  18599. name: "Normal",
  18600. height: math.unit(7.2, "feet"),
  18601. default: true
  18602. },
  18603. ]
  18604. ))
  18605. characterMakers.push(() => makeCharacter(
  18606. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18607. {
  18608. side: {
  18609. height: math.unit(10, "feet"),
  18610. weight: math.unit(900, "kg"),
  18611. name: "Side",
  18612. image: {
  18613. source: "./media/characters/zara/side.svg",
  18614. extra: 504 / 498
  18615. }
  18616. },
  18617. },
  18618. [
  18619. {
  18620. name: "Normal",
  18621. height: math.unit(10, "feet"),
  18622. default: true
  18623. },
  18624. ]
  18625. ))
  18626. characterMakers.push(() => makeCharacter(
  18627. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18628. {
  18629. side: {
  18630. height: math.unit(6, "feet"),
  18631. weight: math.unit(150, "lb"),
  18632. name: "Side",
  18633. image: {
  18634. source: "./media/characters/richard-dragon/side.svg",
  18635. extra: 845 / 340,
  18636. bottom: 0.017
  18637. }
  18638. },
  18639. maw: {
  18640. height: math.unit(2.97, "feet"),
  18641. name: "Maw",
  18642. image: {
  18643. source: "./media/characters/richard-dragon/maw.svg"
  18644. }
  18645. },
  18646. },
  18647. [
  18648. ]
  18649. ))
  18650. characterMakers.push(() => makeCharacter(
  18651. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18652. {
  18653. front: {
  18654. height: math.unit(4, "feet"),
  18655. weight: math.unit(100, "lb"),
  18656. name: "Front",
  18657. image: {
  18658. source: "./media/characters/richard-smeargle/front.svg",
  18659. extra: 2952 / 2820,
  18660. bottom: 0.028
  18661. }
  18662. },
  18663. },
  18664. [
  18665. {
  18666. name: "Normal",
  18667. height: math.unit(4, "feet"),
  18668. default: true
  18669. },
  18670. {
  18671. name: "Dynamax",
  18672. height: math.unit(20, "meters")
  18673. },
  18674. ]
  18675. ))
  18676. characterMakers.push(() => makeCharacter(
  18677. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18678. {
  18679. front: {
  18680. height: math.unit(6, "feet"),
  18681. weight: math.unit(110, "lb"),
  18682. name: "Front",
  18683. image: {
  18684. source: "./media/characters/klay/front.svg",
  18685. extra: 962 / 883,
  18686. bottom: 0.04
  18687. }
  18688. },
  18689. back: {
  18690. height: math.unit(6, "feet"),
  18691. weight: math.unit(110, "lb"),
  18692. name: "Back",
  18693. image: {
  18694. source: "./media/characters/klay/back.svg",
  18695. extra: 962 / 883
  18696. }
  18697. },
  18698. beans: {
  18699. height: math.unit(1.15, "feet"),
  18700. name: "Beans",
  18701. image: {
  18702. source: "./media/characters/klay/beans.svg"
  18703. }
  18704. },
  18705. },
  18706. [
  18707. {
  18708. name: "Micro",
  18709. height: math.unit(6, "inches")
  18710. },
  18711. {
  18712. name: "Mini",
  18713. height: math.unit(3, "feet")
  18714. },
  18715. {
  18716. name: "Normal",
  18717. height: math.unit(6, "feet"),
  18718. default: true
  18719. },
  18720. {
  18721. name: "Big",
  18722. height: math.unit(25, "feet")
  18723. },
  18724. {
  18725. name: "Macro",
  18726. height: math.unit(100, "feet")
  18727. },
  18728. {
  18729. name: "Megamacro",
  18730. height: math.unit(400, "feet")
  18731. },
  18732. ]
  18733. ))
  18734. characterMakers.push(() => makeCharacter(
  18735. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18736. {
  18737. front: {
  18738. height: math.unit(6, "feet"),
  18739. weight: math.unit(160, "lb"),
  18740. name: "Front",
  18741. image: {
  18742. source: "./media/characters/marcus/front.svg",
  18743. extra: 734 / 676,
  18744. bottom: 0.03
  18745. }
  18746. },
  18747. },
  18748. [
  18749. {
  18750. name: "Little",
  18751. height: math.unit(6, "feet")
  18752. },
  18753. {
  18754. name: "Normal",
  18755. height: math.unit(110, "feet"),
  18756. default: true
  18757. },
  18758. {
  18759. name: "Macro",
  18760. height: math.unit(250, "feet")
  18761. },
  18762. {
  18763. name: "Megamacro",
  18764. height: math.unit(1000, "feet")
  18765. },
  18766. ]
  18767. ))
  18768. characterMakers.push(() => makeCharacter(
  18769. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18770. {
  18771. front: {
  18772. height: math.unit(7, "feet"),
  18773. weight: math.unit(275, "lb"),
  18774. name: "Front",
  18775. image: {
  18776. source: "./media/characters/claude-delroute/front.svg",
  18777. extra: 902/827,
  18778. bottom: 26/928
  18779. }
  18780. },
  18781. side: {
  18782. height: math.unit(7, "feet"),
  18783. weight: math.unit(275, "lb"),
  18784. name: "Side",
  18785. image: {
  18786. source: "./media/characters/claude-delroute/side.svg",
  18787. extra: 908/853,
  18788. bottom: 16/924
  18789. }
  18790. },
  18791. back: {
  18792. height: math.unit(7, "feet"),
  18793. weight: math.unit(275, "lb"),
  18794. name: "Back",
  18795. image: {
  18796. source: "./media/characters/claude-delroute/back.svg",
  18797. extra: 911/829,
  18798. bottom: 18/929
  18799. }
  18800. },
  18801. maw: {
  18802. height: math.unit(0.6407, "meters"),
  18803. name: "Maw",
  18804. image: {
  18805. source: "./media/characters/claude-delroute/maw.svg"
  18806. }
  18807. },
  18808. },
  18809. [
  18810. {
  18811. name: "Normal",
  18812. height: math.unit(7, "feet"),
  18813. default: true
  18814. },
  18815. {
  18816. name: "Lorge",
  18817. height: math.unit(20, "feet")
  18818. },
  18819. ]
  18820. ))
  18821. characterMakers.push(() => makeCharacter(
  18822. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18823. {
  18824. front: {
  18825. height: math.unit(8 + 4 / 12, "feet"),
  18826. weight: math.unit(600, "lb"),
  18827. name: "Front",
  18828. image: {
  18829. source: "./media/characters/dragonien/front.svg",
  18830. extra: 100 / 94,
  18831. bottom: 3.3 / 103.3445
  18832. }
  18833. },
  18834. back: {
  18835. height: math.unit(8 + 4 / 12, "feet"),
  18836. weight: math.unit(600, "lb"),
  18837. name: "Back",
  18838. image: {
  18839. source: "./media/characters/dragonien/back.svg",
  18840. extra: 776 / 746,
  18841. bottom: 6.4 / 782.0616
  18842. }
  18843. },
  18844. foot: {
  18845. height: math.unit(1.54, "feet"),
  18846. name: "Foot",
  18847. image: {
  18848. source: "./media/characters/dragonien/foot.svg",
  18849. }
  18850. },
  18851. },
  18852. [
  18853. {
  18854. name: "Normal",
  18855. height: math.unit(8 + 4 / 12, "feet"),
  18856. default: true
  18857. },
  18858. {
  18859. name: "Macro",
  18860. height: math.unit(200, "feet")
  18861. },
  18862. {
  18863. name: "Megamacro",
  18864. height: math.unit(1, "mile")
  18865. },
  18866. {
  18867. name: "Gigamacro",
  18868. height: math.unit(1000, "miles")
  18869. },
  18870. ]
  18871. ))
  18872. characterMakers.push(() => makeCharacter(
  18873. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18874. {
  18875. front: {
  18876. height: math.unit(5 + 2 / 12, "feet"),
  18877. weight: math.unit(110, "lb"),
  18878. name: "Front",
  18879. image: {
  18880. source: "./media/characters/desta/front.svg",
  18881. extra: 767 / 726,
  18882. bottom: 11.7 / 779
  18883. }
  18884. },
  18885. back: {
  18886. height: math.unit(5 + 2 / 12, "feet"),
  18887. weight: math.unit(110, "lb"),
  18888. name: "Back",
  18889. image: {
  18890. source: "./media/characters/desta/back.svg",
  18891. extra: 777 / 728,
  18892. bottom: 6 / 784
  18893. }
  18894. },
  18895. frontAlt: {
  18896. height: math.unit(5 + 2 / 12, "feet"),
  18897. weight: math.unit(110, "lb"),
  18898. name: "Front",
  18899. image: {
  18900. source: "./media/characters/desta/front-alt.svg",
  18901. extra: 1482 / 1417
  18902. }
  18903. },
  18904. side: {
  18905. height: math.unit(5 + 2 / 12, "feet"),
  18906. weight: math.unit(110, "lb"),
  18907. name: "Side",
  18908. image: {
  18909. source: "./media/characters/desta/side.svg",
  18910. extra: 2579 / 2491,
  18911. bottom: 0.053
  18912. }
  18913. },
  18914. },
  18915. [
  18916. {
  18917. name: "Micro",
  18918. height: math.unit(6, "inches")
  18919. },
  18920. {
  18921. name: "Normal",
  18922. height: math.unit(5 + 2 / 12, "feet"),
  18923. default: true
  18924. },
  18925. {
  18926. name: "Macro",
  18927. height: math.unit(62, "feet")
  18928. },
  18929. {
  18930. name: "Megamacro",
  18931. height: math.unit(1800, "feet")
  18932. },
  18933. ]
  18934. ))
  18935. characterMakers.push(() => makeCharacter(
  18936. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18937. {
  18938. front: {
  18939. height: math.unit(10, "feet"),
  18940. weight: math.unit(700, "lb"),
  18941. name: "Front",
  18942. image: {
  18943. source: "./media/characters/storm-alystar/front.svg",
  18944. extra: 2112 / 1898,
  18945. bottom: 0.034
  18946. }
  18947. },
  18948. },
  18949. [
  18950. {
  18951. name: "Micro",
  18952. height: math.unit(3.5, "inches")
  18953. },
  18954. {
  18955. name: "Normal",
  18956. height: math.unit(10, "feet"),
  18957. default: true
  18958. },
  18959. {
  18960. name: "Macro",
  18961. height: math.unit(400, "feet")
  18962. },
  18963. {
  18964. name: "Deific",
  18965. height: math.unit(60, "miles")
  18966. },
  18967. ]
  18968. ))
  18969. characterMakers.push(() => makeCharacter(
  18970. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18971. {
  18972. front: {
  18973. height: math.unit(2.35, "meters"),
  18974. weight: math.unit(119, "kg"),
  18975. name: "Front",
  18976. image: {
  18977. source: "./media/characters/ilia/front.svg",
  18978. extra: 1285 / 1255,
  18979. bottom: 0.06
  18980. }
  18981. },
  18982. },
  18983. [
  18984. {
  18985. name: "Normal",
  18986. height: math.unit(2.35, "meters")
  18987. },
  18988. {
  18989. name: "Macro",
  18990. height: math.unit(140, "meters"),
  18991. default: true
  18992. },
  18993. {
  18994. name: "Megamacro",
  18995. height: math.unit(100, "miles")
  18996. },
  18997. ]
  18998. ))
  18999. characterMakers.push(() => makeCharacter(
  19000. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19001. {
  19002. front: {
  19003. height: math.unit(6 + 5 / 12, "feet"),
  19004. weight: math.unit(190, "lb"),
  19005. name: "Front",
  19006. image: {
  19007. source: "./media/characters/kingdead/front.svg",
  19008. extra: 1228 / 1177
  19009. }
  19010. },
  19011. },
  19012. [
  19013. {
  19014. name: "Micro",
  19015. height: math.unit(7, "inches")
  19016. },
  19017. {
  19018. name: "Normal",
  19019. height: math.unit(6 + 5 / 12, "feet")
  19020. },
  19021. {
  19022. name: "Macro",
  19023. height: math.unit(150, "feet"),
  19024. default: true
  19025. },
  19026. {
  19027. name: "Megamacro",
  19028. height: math.unit(200, "miles")
  19029. },
  19030. ]
  19031. ))
  19032. characterMakers.push(() => makeCharacter(
  19033. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19034. {
  19035. front: {
  19036. height: math.unit(8, "feet"),
  19037. weight: math.unit(600, "lb"),
  19038. name: "Front",
  19039. image: {
  19040. source: "./media/characters/kyrehx/front.svg",
  19041. extra: 1195 / 1095,
  19042. bottom: 0.034
  19043. }
  19044. },
  19045. },
  19046. [
  19047. {
  19048. name: "Micro",
  19049. height: math.unit(2, "inches")
  19050. },
  19051. {
  19052. name: "Normal",
  19053. height: math.unit(8, "feet"),
  19054. default: true
  19055. },
  19056. {
  19057. name: "Macro",
  19058. height: math.unit(255, "feet")
  19059. },
  19060. ]
  19061. ))
  19062. characterMakers.push(() => makeCharacter(
  19063. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19064. {
  19065. front: {
  19066. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19067. weight: math.unit(184, "lb"),
  19068. name: "Front",
  19069. image: {
  19070. source: "./media/characters/xang/front.svg",
  19071. extra: 845 / 755
  19072. }
  19073. },
  19074. },
  19075. [
  19076. {
  19077. name: "Normal",
  19078. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19079. default: true
  19080. },
  19081. {
  19082. name: "Macro",
  19083. height: math.unit(0.935 * 146, "feet")
  19084. },
  19085. {
  19086. name: "Megamacro",
  19087. height: math.unit(0.935 * 3, "miles")
  19088. },
  19089. ]
  19090. ))
  19091. characterMakers.push(() => makeCharacter(
  19092. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19093. {
  19094. frontDressed: {
  19095. height: math.unit(5 + 7 / 12, "feet"),
  19096. weight: math.unit(140, "lb"),
  19097. name: "Front (Dressed)",
  19098. image: {
  19099. source: "./media/characters/doc-weardno/front-dressed.svg",
  19100. extra: 263 / 234
  19101. }
  19102. },
  19103. backDressed: {
  19104. height: math.unit(5 + 7 / 12, "feet"),
  19105. weight: math.unit(140, "lb"),
  19106. name: "Back (Dressed)",
  19107. image: {
  19108. source: "./media/characters/doc-weardno/back-dressed.svg",
  19109. extra: 266 / 238
  19110. }
  19111. },
  19112. front: {
  19113. height: math.unit(5 + 7 / 12, "feet"),
  19114. weight: math.unit(140, "lb"),
  19115. name: "Front",
  19116. image: {
  19117. source: "./media/characters/doc-weardno/front.svg",
  19118. extra: 254 / 233
  19119. }
  19120. },
  19121. },
  19122. [
  19123. {
  19124. name: "Micro",
  19125. height: math.unit(3, "inches")
  19126. },
  19127. {
  19128. name: "Normal",
  19129. height: math.unit(5 + 7 / 12, "feet"),
  19130. default: true
  19131. },
  19132. {
  19133. name: "Macro",
  19134. height: math.unit(25, "feet")
  19135. },
  19136. {
  19137. name: "Megamacro",
  19138. height: math.unit(2, "miles")
  19139. },
  19140. ]
  19141. ))
  19142. characterMakers.push(() => makeCharacter(
  19143. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19144. {
  19145. front: {
  19146. height: math.unit(6 + 2 / 12, "feet"),
  19147. weight: math.unit(153, "lb"),
  19148. name: "Front",
  19149. image: {
  19150. source: "./media/characters/seth-whilst/front.svg",
  19151. bottom: 0.07
  19152. }
  19153. },
  19154. },
  19155. [
  19156. {
  19157. name: "Micro",
  19158. height: math.unit(5, "inches")
  19159. },
  19160. {
  19161. name: "Normal",
  19162. height: math.unit(6 + 2 / 12, "feet"),
  19163. default: true
  19164. },
  19165. ]
  19166. ))
  19167. characterMakers.push(() => makeCharacter(
  19168. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19169. {
  19170. front: {
  19171. height: math.unit(3, "inches"),
  19172. weight: math.unit(8, "grams"),
  19173. name: "Front",
  19174. image: {
  19175. source: "./media/characters/pocket-jabari/front.svg",
  19176. extra: 1024 / 974,
  19177. bottom: 0.039
  19178. }
  19179. },
  19180. },
  19181. [
  19182. {
  19183. name: "Minimicro",
  19184. height: math.unit(8, "mm")
  19185. },
  19186. {
  19187. name: "Micro",
  19188. height: math.unit(3, "inches"),
  19189. default: true
  19190. },
  19191. {
  19192. name: "Normal",
  19193. height: math.unit(3, "feet")
  19194. },
  19195. ]
  19196. ))
  19197. characterMakers.push(() => makeCharacter(
  19198. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19199. {
  19200. frontDressed: {
  19201. height: math.unit(15, "feet"),
  19202. weight: math.unit(3280, "lb"),
  19203. name: "Front (Dressed)",
  19204. image: {
  19205. source: "./media/characters/sapphy/front-dressed.svg",
  19206. extra: 1951/1654,
  19207. bottom: 194/2145
  19208. },
  19209. form: "anthro",
  19210. default: true
  19211. },
  19212. backDressed: {
  19213. height: math.unit(15, "feet"),
  19214. weight: math.unit(3280, "lb"),
  19215. name: "Back (Dressed)",
  19216. image: {
  19217. source: "./media/characters/sapphy/back-dressed.svg",
  19218. extra: 2058/1918,
  19219. bottom: 125/2183
  19220. },
  19221. form: "anthro"
  19222. },
  19223. frontNude: {
  19224. height: math.unit(15, "feet"),
  19225. weight: math.unit(3280, "lb"),
  19226. name: "Front (Nude)",
  19227. image: {
  19228. source: "./media/characters/sapphy/front-nude.svg",
  19229. extra: 1951/1654,
  19230. bottom: 194/2145
  19231. },
  19232. form: "anthro"
  19233. },
  19234. backNude: {
  19235. height: math.unit(15, "feet"),
  19236. weight: math.unit(3280, "lb"),
  19237. name: "Back (Nude)",
  19238. image: {
  19239. source: "./media/characters/sapphy/back-nude.svg",
  19240. extra: 2058/1918,
  19241. bottom: 125/2183
  19242. },
  19243. form: "anthro"
  19244. },
  19245. full: {
  19246. height: math.unit(15, "feet"),
  19247. weight: math.unit(3280, "lb"),
  19248. name: "Full",
  19249. image: {
  19250. source: "./media/characters/sapphy/full.svg",
  19251. extra: 1396/1317,
  19252. bottom: 44/1440
  19253. },
  19254. form: "anthro"
  19255. },
  19256. dick: {
  19257. height: math.unit(3.8, "feet"),
  19258. name: "Dick",
  19259. image: {
  19260. source: "./media/characters/sapphy/dick.svg"
  19261. },
  19262. form: "anthro"
  19263. },
  19264. feral: {
  19265. height: math.unit(35, "feet"),
  19266. weight: math.unit(160, "tons"),
  19267. name: "Feral",
  19268. image: {
  19269. source: "./media/characters/sapphy/feral.svg",
  19270. extra: 1050/573,
  19271. bottom: 60/1110
  19272. },
  19273. form: "feral",
  19274. default: true
  19275. },
  19276. },
  19277. [
  19278. {
  19279. name: "Normal",
  19280. height: math.unit(15, "feet"),
  19281. form: "anthro"
  19282. },
  19283. {
  19284. name: "Casual Macro",
  19285. height: math.unit(120, "feet"),
  19286. form: "anthro"
  19287. },
  19288. {
  19289. name: "Macro",
  19290. height: math.unit(2150, "feet"),
  19291. default: true,
  19292. form: "anthro"
  19293. },
  19294. {
  19295. name: "Megamacro",
  19296. height: math.unit(8, "miles"),
  19297. form: "anthro"
  19298. },
  19299. {
  19300. name: "Galaxy Mom",
  19301. height: math.unit(6, "megalightyears"),
  19302. form: "anthro"
  19303. },
  19304. {
  19305. name: "Normal",
  19306. height: math.unit(35, "feet"),
  19307. form: "feral",
  19308. default: true
  19309. },
  19310. {
  19311. name: "Macro",
  19312. height: math.unit(300, "feet"),
  19313. form: "feral"
  19314. },
  19315. {
  19316. name: "Galaxy Mom",
  19317. height: math.unit(10, "megalightyears"),
  19318. form: "feral"
  19319. },
  19320. ],
  19321. {
  19322. "anthro": {
  19323. name: "Anthro",
  19324. default: true
  19325. },
  19326. "feral": {
  19327. name: "Feral"
  19328. }
  19329. }
  19330. ))
  19331. characterMakers.push(() => makeCharacter(
  19332. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19333. {
  19334. front: {
  19335. height: math.unit(6, "feet"),
  19336. weight: math.unit(170, "lb"),
  19337. name: "Front",
  19338. image: {
  19339. source: "./media/characters/kiro/front.svg",
  19340. extra: 1064 / 1012,
  19341. bottom: 0.052
  19342. }
  19343. },
  19344. },
  19345. [
  19346. {
  19347. name: "Micro",
  19348. height: math.unit(6, "inches")
  19349. },
  19350. {
  19351. name: "Normal",
  19352. height: math.unit(6, "feet"),
  19353. default: true
  19354. },
  19355. {
  19356. name: "Macro",
  19357. height: math.unit(72, "feet")
  19358. },
  19359. ]
  19360. ))
  19361. characterMakers.push(() => makeCharacter(
  19362. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19363. {
  19364. front: {
  19365. height: math.unit(5 + 9 / 12, "feet"),
  19366. weight: math.unit(175, "lb"),
  19367. name: "Front",
  19368. image: {
  19369. source: "./media/characters/irishfox/front.svg",
  19370. extra: 1912 / 1680,
  19371. bottom: 0.02
  19372. }
  19373. },
  19374. },
  19375. [
  19376. {
  19377. name: "Nano",
  19378. height: math.unit(1, "mm")
  19379. },
  19380. {
  19381. name: "Micro",
  19382. height: math.unit(2, "inches")
  19383. },
  19384. {
  19385. name: "Normal",
  19386. height: math.unit(5 + 9 / 12, "feet"),
  19387. default: true
  19388. },
  19389. {
  19390. name: "Macro",
  19391. height: math.unit(45, "feet")
  19392. },
  19393. ]
  19394. ))
  19395. characterMakers.push(() => makeCharacter(
  19396. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19397. {
  19398. front: {
  19399. height: math.unit(6 + 1 / 12, "feet"),
  19400. weight: math.unit(75, "lb"),
  19401. name: "Front",
  19402. image: {
  19403. source: "./media/characters/aronai-sieyes/front.svg",
  19404. extra: 1532/1450,
  19405. bottom: 42/1574
  19406. }
  19407. },
  19408. side: {
  19409. height: math.unit(6 + 1 / 12, "feet"),
  19410. weight: math.unit(75, "lb"),
  19411. name: "Side",
  19412. image: {
  19413. source: "./media/characters/aronai-sieyes/side.svg",
  19414. extra: 1422/1365,
  19415. bottom: 148/1570
  19416. }
  19417. },
  19418. back: {
  19419. height: math.unit(6 + 1 / 12, "feet"),
  19420. weight: math.unit(75, "lb"),
  19421. name: "Back",
  19422. image: {
  19423. source: "./media/characters/aronai-sieyes/back.svg",
  19424. extra: 1526/1464,
  19425. bottom: 51/1577
  19426. }
  19427. },
  19428. dressed: {
  19429. height: math.unit(6 + 1 / 12, "feet"),
  19430. weight: math.unit(75, "lb"),
  19431. name: "Dressed",
  19432. image: {
  19433. source: "./media/characters/aronai-sieyes/dressed.svg",
  19434. extra: 1559/1483,
  19435. bottom: 39/1598
  19436. }
  19437. },
  19438. slit: {
  19439. height: math.unit(1.3, "feet"),
  19440. name: "Slit",
  19441. image: {
  19442. source: "./media/characters/aronai-sieyes/slit.svg"
  19443. }
  19444. },
  19445. slitSpread: {
  19446. height: math.unit(0.9, "feet"),
  19447. name: "Slit (Spread)",
  19448. image: {
  19449. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19450. }
  19451. },
  19452. rump: {
  19453. height: math.unit(1.3, "feet"),
  19454. name: "Rump",
  19455. image: {
  19456. source: "./media/characters/aronai-sieyes/rump.svg"
  19457. }
  19458. },
  19459. maw: {
  19460. height: math.unit(1.25, "feet"),
  19461. name: "Maw",
  19462. image: {
  19463. source: "./media/characters/aronai-sieyes/maw.svg"
  19464. }
  19465. },
  19466. feral: {
  19467. height: math.unit(18, "feet"),
  19468. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19469. name: "Feral",
  19470. image: {
  19471. source: "./media/characters/aronai-sieyes/feral.svg",
  19472. extra: 1530 / 1240,
  19473. bottom: 0.035
  19474. }
  19475. },
  19476. },
  19477. [
  19478. {
  19479. name: "Micro",
  19480. height: math.unit(2, "inches")
  19481. },
  19482. {
  19483. name: "Normal",
  19484. height: math.unit(6 + 1 / 12, "feet"),
  19485. default: true
  19486. }
  19487. ]
  19488. ))
  19489. characterMakers.push(() => makeCharacter(
  19490. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19491. {
  19492. front: {
  19493. height: math.unit(12, "feet"),
  19494. weight: math.unit(410, "kg"),
  19495. name: "Front",
  19496. image: {
  19497. source: "./media/characters/xuna/front.svg",
  19498. extra: 2184 / 1980
  19499. }
  19500. },
  19501. side: {
  19502. height: math.unit(12, "feet"),
  19503. weight: math.unit(410, "kg"),
  19504. name: "Side",
  19505. image: {
  19506. source: "./media/characters/xuna/side.svg",
  19507. extra: 2184 / 1980
  19508. }
  19509. },
  19510. back: {
  19511. height: math.unit(12, "feet"),
  19512. weight: math.unit(410, "kg"),
  19513. name: "Back",
  19514. image: {
  19515. source: "./media/characters/xuna/back.svg",
  19516. extra: 2184 / 1980
  19517. }
  19518. },
  19519. },
  19520. [
  19521. {
  19522. name: "Nano glow",
  19523. height: math.unit(10, "nm")
  19524. },
  19525. {
  19526. name: "Micro floof",
  19527. height: math.unit(0.3, "m")
  19528. },
  19529. {
  19530. name: "Huggable softy boi",
  19531. height: math.unit(3.6576, "m"),
  19532. default: true
  19533. },
  19534. {
  19535. name: "Admirable floof",
  19536. height: math.unit(80, "meters")
  19537. },
  19538. {
  19539. name: "Gentle macro",
  19540. height: math.unit(300, "meters")
  19541. },
  19542. {
  19543. name: "Very careful floof",
  19544. height: math.unit(3200, "meters")
  19545. },
  19546. {
  19547. name: "The mega floof",
  19548. height: math.unit(36000, "meters")
  19549. },
  19550. {
  19551. name: "Giga-fur-Wicker",
  19552. height: math.unit(4800000, "meters")
  19553. },
  19554. {
  19555. name: "Licky world",
  19556. height: math.unit(20000000, "meters")
  19557. },
  19558. {
  19559. name: "Floofy cyan sun",
  19560. height: math.unit(1500000000, "meters")
  19561. },
  19562. {
  19563. name: "Milky Wicker",
  19564. height: math.unit(1000000000000000000000, "meters")
  19565. },
  19566. {
  19567. name: "The observing Wicker",
  19568. height: math.unit(999999999999999999999999999, "meters")
  19569. },
  19570. ]
  19571. ))
  19572. characterMakers.push(() => makeCharacter(
  19573. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19574. {
  19575. front: {
  19576. height: math.unit(5 + 9 / 12, "feet"),
  19577. weight: math.unit(150, "lb"),
  19578. name: "Front",
  19579. image: {
  19580. source: "./media/characters/arokha-sieyes/front.svg",
  19581. extra: 1425 / 1284,
  19582. bottom: 0.05
  19583. }
  19584. },
  19585. },
  19586. [
  19587. {
  19588. name: "Normal",
  19589. height: math.unit(5 + 9 / 12, "feet")
  19590. },
  19591. {
  19592. name: "Macro",
  19593. height: math.unit(30, "meters"),
  19594. default: true
  19595. },
  19596. ]
  19597. ))
  19598. characterMakers.push(() => makeCharacter(
  19599. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19600. {
  19601. front: {
  19602. height: math.unit(6, "feet"),
  19603. weight: math.unit(180, "lb"),
  19604. name: "Front",
  19605. image: {
  19606. source: "./media/characters/arokh-sieyes/front.svg",
  19607. extra: 1830 / 1769,
  19608. bottom: 0.01
  19609. }
  19610. },
  19611. },
  19612. [
  19613. {
  19614. name: "Normal",
  19615. height: math.unit(6, "feet")
  19616. },
  19617. {
  19618. name: "Macro",
  19619. height: math.unit(30, "meters"),
  19620. default: true
  19621. },
  19622. ]
  19623. ))
  19624. characterMakers.push(() => makeCharacter(
  19625. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19626. {
  19627. side: {
  19628. height: math.unit(13 + 1 / 12, "feet"),
  19629. weight: math.unit(8.5, "tonnes"),
  19630. name: "Side",
  19631. image: {
  19632. source: "./media/characters/goldeneye/side.svg",
  19633. extra: 1182 / 778,
  19634. bottom: 0.067
  19635. }
  19636. },
  19637. paw: {
  19638. height: math.unit(3.4, "feet"),
  19639. name: "Paw",
  19640. image: {
  19641. source: "./media/characters/goldeneye/paw.svg"
  19642. }
  19643. },
  19644. },
  19645. [
  19646. {
  19647. name: "Normal",
  19648. height: math.unit(13 + 1 / 12, "feet"),
  19649. default: true
  19650. },
  19651. ]
  19652. ))
  19653. characterMakers.push(() => makeCharacter(
  19654. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19655. {
  19656. front: {
  19657. height: math.unit(6 + 1 / 12, "feet"),
  19658. weight: math.unit(210, "lb"),
  19659. name: "Front",
  19660. image: {
  19661. source: "./media/characters/leonardo-lycheborne/front.svg",
  19662. extra: 776/723,
  19663. bottom: 34/810
  19664. }
  19665. },
  19666. side: {
  19667. height: math.unit(6 + 1 / 12, "feet"),
  19668. weight: math.unit(210, "lb"),
  19669. name: "Side",
  19670. image: {
  19671. source: "./media/characters/leonardo-lycheborne/side.svg",
  19672. extra: 780/728,
  19673. bottom: 12/792
  19674. }
  19675. },
  19676. back: {
  19677. height: math.unit(6 + 1 / 12, "feet"),
  19678. weight: math.unit(210, "lb"),
  19679. name: "Back",
  19680. image: {
  19681. source: "./media/characters/leonardo-lycheborne/back.svg",
  19682. extra: 775/721,
  19683. bottom: 17/792
  19684. }
  19685. },
  19686. hand: {
  19687. height: math.unit(1.08, "feet"),
  19688. name: "Hand",
  19689. image: {
  19690. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19691. }
  19692. },
  19693. foot: {
  19694. height: math.unit(1.32, "feet"),
  19695. name: "Foot",
  19696. image: {
  19697. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19698. }
  19699. },
  19700. maw: {
  19701. height: math.unit(1, "feet"),
  19702. name: "Maw",
  19703. image: {
  19704. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19705. }
  19706. },
  19707. were: {
  19708. height: math.unit(20, "feet"),
  19709. weight: math.unit(7800, "lb"),
  19710. name: "Were",
  19711. image: {
  19712. source: "./media/characters/leonardo-lycheborne/were.svg",
  19713. extra: 1224/1165,
  19714. bottom: 72/1296
  19715. }
  19716. },
  19717. feral: {
  19718. height: math.unit(7.5, "feet"),
  19719. weight: math.unit(600, "lb"),
  19720. name: "Feral",
  19721. image: {
  19722. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19723. extra: 797/702,
  19724. bottom: 139/936
  19725. }
  19726. },
  19727. taur: {
  19728. height: math.unit(11, "feet"),
  19729. weight: math.unit(3300, "lb"),
  19730. name: "Taur",
  19731. image: {
  19732. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19733. extra: 1271/1197,
  19734. bottom: 47/1318
  19735. }
  19736. },
  19737. barghest: {
  19738. height: math.unit(11, "feet"),
  19739. weight: math.unit(1300, "lb"),
  19740. name: "Barghest",
  19741. image: {
  19742. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19743. extra: 1291/1204,
  19744. bottom: 37/1328
  19745. }
  19746. },
  19747. dick: {
  19748. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19749. name: "Dick",
  19750. image: {
  19751. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19752. }
  19753. },
  19754. dickWere: {
  19755. height: math.unit((20) / 3.8, "feet"),
  19756. name: "Dick (Were)",
  19757. image: {
  19758. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19759. }
  19760. },
  19761. },
  19762. [
  19763. {
  19764. name: "Normal",
  19765. height: math.unit(6 + 1 / 12, "feet"),
  19766. default: true
  19767. },
  19768. ]
  19769. ))
  19770. characterMakers.push(() => makeCharacter(
  19771. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19772. {
  19773. front: {
  19774. height: math.unit(10, "feet"),
  19775. weight: math.unit(350, "lb"),
  19776. name: "Front",
  19777. image: {
  19778. source: "./media/characters/jet/front.svg",
  19779. extra: 2050 / 1980,
  19780. bottom: 0.013
  19781. }
  19782. },
  19783. back: {
  19784. height: math.unit(10, "feet"),
  19785. weight: math.unit(350, "lb"),
  19786. name: "Back",
  19787. image: {
  19788. source: "./media/characters/jet/back.svg",
  19789. extra: 2050 / 1980,
  19790. bottom: 0.013
  19791. }
  19792. },
  19793. },
  19794. [
  19795. {
  19796. name: "Micro",
  19797. height: math.unit(6, "inches")
  19798. },
  19799. {
  19800. name: "Normal",
  19801. height: math.unit(10, "feet"),
  19802. default: true
  19803. },
  19804. {
  19805. name: "Macro",
  19806. height: math.unit(100, "feet")
  19807. },
  19808. ]
  19809. ))
  19810. characterMakers.push(() => makeCharacter(
  19811. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19812. {
  19813. front: {
  19814. height: math.unit(15, "feet"),
  19815. weight: math.unit(2800, "lb"),
  19816. name: "Front",
  19817. image: {
  19818. source: "./media/characters/tanarath/front.svg",
  19819. extra: 2392 / 2220,
  19820. bottom: 0.03
  19821. }
  19822. },
  19823. back: {
  19824. height: math.unit(15, "feet"),
  19825. weight: math.unit(2800, "lb"),
  19826. name: "Back",
  19827. image: {
  19828. source: "./media/characters/tanarath/back.svg",
  19829. extra: 2392 / 2220,
  19830. bottom: 0.03
  19831. }
  19832. },
  19833. },
  19834. [
  19835. {
  19836. name: "Normal",
  19837. height: math.unit(15, "feet"),
  19838. default: true
  19839. },
  19840. ]
  19841. ))
  19842. characterMakers.push(() => makeCharacter(
  19843. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19844. {
  19845. front: {
  19846. height: math.unit(7 + 1 / 12, "feet"),
  19847. weight: math.unit(175, "lb"),
  19848. name: "Front",
  19849. image: {
  19850. source: "./media/characters/patty-cattybatty/front.svg",
  19851. extra: 908 / 874,
  19852. bottom: 0.025
  19853. }
  19854. },
  19855. },
  19856. [
  19857. {
  19858. name: "Micro",
  19859. height: math.unit(1, "inch")
  19860. },
  19861. {
  19862. name: "Normal",
  19863. height: math.unit(7 + 1 / 12, "feet")
  19864. },
  19865. {
  19866. name: "Mini Macro",
  19867. height: math.unit(155, "feet")
  19868. },
  19869. {
  19870. name: "Macro",
  19871. height: math.unit(1077, "feet")
  19872. },
  19873. {
  19874. name: "Mega Macro",
  19875. height: math.unit(47650, "feet"),
  19876. default: true
  19877. },
  19878. {
  19879. name: "Giga Macro",
  19880. height: math.unit(440, "miles")
  19881. },
  19882. {
  19883. name: "Tera Macro",
  19884. height: math.unit(8700, "miles")
  19885. },
  19886. {
  19887. name: "Planetary Macro",
  19888. height: math.unit(32700, "miles")
  19889. },
  19890. {
  19891. name: "Solar Macro",
  19892. height: math.unit(550000, "miles")
  19893. },
  19894. {
  19895. name: "Celestial Macro",
  19896. height: math.unit(2.5, "AU")
  19897. },
  19898. ]
  19899. ))
  19900. characterMakers.push(() => makeCharacter(
  19901. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19902. {
  19903. front: {
  19904. height: math.unit(4 + 5 / 12, "feet"),
  19905. weight: math.unit(90, "lb"),
  19906. name: "Front",
  19907. image: {
  19908. source: "./media/characters/cappu/front.svg",
  19909. extra: 1247 / 1152,
  19910. bottom: 0.012
  19911. }
  19912. },
  19913. },
  19914. [
  19915. {
  19916. name: "Normal",
  19917. height: math.unit(4 + 5 / 12, "feet"),
  19918. default: true
  19919. },
  19920. ]
  19921. ))
  19922. characterMakers.push(() => makeCharacter(
  19923. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19924. {
  19925. frontDressed: {
  19926. height: math.unit(70, "cm"),
  19927. weight: math.unit(6, "kg"),
  19928. name: "Front (Dressed)",
  19929. image: {
  19930. source: "./media/characters/sebi/front-dressed.svg",
  19931. extra: 713.5 / 686.5,
  19932. bottom: 0.003
  19933. }
  19934. },
  19935. front: {
  19936. height: math.unit(70, "cm"),
  19937. weight: math.unit(5, "kg"),
  19938. name: "Front",
  19939. image: {
  19940. source: "./media/characters/sebi/front.svg",
  19941. extra: 713.5 / 686.5,
  19942. bottom: 0.003
  19943. }
  19944. }
  19945. },
  19946. [
  19947. {
  19948. name: "Normal",
  19949. height: math.unit(70, "cm"),
  19950. default: true
  19951. },
  19952. {
  19953. name: "Macro",
  19954. height: math.unit(8, "meters")
  19955. },
  19956. ]
  19957. ))
  19958. characterMakers.push(() => makeCharacter(
  19959. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19960. {
  19961. front: {
  19962. height: math.unit(6, "feet"),
  19963. weight: math.unit(150, "lb"),
  19964. name: "Front",
  19965. image: {
  19966. source: "./media/characters/typhek/front.svg",
  19967. extra: 1948 / 1929,
  19968. bottom: 0.025
  19969. }
  19970. },
  19971. side: {
  19972. height: math.unit(6, "feet"),
  19973. weight: math.unit(150, "lb"),
  19974. name: "Side",
  19975. image: {
  19976. source: "./media/characters/typhek/side.svg",
  19977. extra: 2034 / 2010,
  19978. bottom: 0.003
  19979. }
  19980. },
  19981. back: {
  19982. height: math.unit(6, "feet"),
  19983. weight: math.unit(150, "lb"),
  19984. name: "Back",
  19985. image: {
  19986. source: "./media/characters/typhek/back.svg",
  19987. extra: 2005 / 1978,
  19988. bottom: 0.004
  19989. }
  19990. },
  19991. palm: {
  19992. height: math.unit(1.2, "feet"),
  19993. name: "Palm",
  19994. image: {
  19995. source: "./media/characters/typhek/palm.svg"
  19996. }
  19997. },
  19998. fist: {
  19999. height: math.unit(1.1, "feet"),
  20000. name: "Fist",
  20001. image: {
  20002. source: "./media/characters/typhek/fist.svg"
  20003. }
  20004. },
  20005. foot: {
  20006. height: math.unit(1.57, "feet"),
  20007. name: "Foot",
  20008. image: {
  20009. source: "./media/characters/typhek/foot.svg"
  20010. }
  20011. },
  20012. sole: {
  20013. height: math.unit(2.05, "feet"),
  20014. name: "Sole",
  20015. image: {
  20016. source: "./media/characters/typhek/sole.svg"
  20017. }
  20018. },
  20019. },
  20020. [
  20021. {
  20022. name: "Macro",
  20023. height: math.unit(40, "stories"),
  20024. default: true
  20025. },
  20026. {
  20027. name: "Megamacro",
  20028. height: math.unit(1, "mile")
  20029. },
  20030. {
  20031. name: "Gigamacro",
  20032. height: math.unit(4000, "solarradii")
  20033. },
  20034. {
  20035. name: "Universal",
  20036. height: math.unit(1.1, "universes")
  20037. }
  20038. ]
  20039. ))
  20040. characterMakers.push(() => makeCharacter(
  20041. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20042. {
  20043. side: {
  20044. height: math.unit(5 + 7 / 12, "feet"),
  20045. weight: math.unit(150, "lb"),
  20046. name: "Side",
  20047. image: {
  20048. source: "./media/characters/kassy/side.svg",
  20049. extra: 1280 / 1225,
  20050. bottom: 0.002
  20051. }
  20052. },
  20053. front: {
  20054. height: math.unit(5 + 7 / 12, "feet"),
  20055. weight: math.unit(150, "lb"),
  20056. name: "Front",
  20057. image: {
  20058. source: "./media/characters/kassy/front.svg",
  20059. extra: 1280 / 1225,
  20060. bottom: 0.025
  20061. }
  20062. },
  20063. back: {
  20064. height: math.unit(5 + 7 / 12, "feet"),
  20065. weight: math.unit(150, "lb"),
  20066. name: "Back",
  20067. image: {
  20068. source: "./media/characters/kassy/back.svg",
  20069. extra: 1280 / 1225,
  20070. bottom: 0.002
  20071. }
  20072. },
  20073. foot: {
  20074. height: math.unit(1.266, "feet"),
  20075. name: "Foot",
  20076. image: {
  20077. source: "./media/characters/kassy/foot.svg"
  20078. }
  20079. },
  20080. },
  20081. [
  20082. {
  20083. name: "Normal",
  20084. height: math.unit(5 + 7 / 12, "feet")
  20085. },
  20086. {
  20087. name: "Macro",
  20088. height: math.unit(137, "feet"),
  20089. default: true
  20090. },
  20091. {
  20092. name: "Megamacro",
  20093. height: math.unit(1, "mile")
  20094. },
  20095. ]
  20096. ))
  20097. characterMakers.push(() => makeCharacter(
  20098. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20099. {
  20100. front: {
  20101. height: math.unit(6 + 1 / 12, "feet"),
  20102. weight: math.unit(200, "lb"),
  20103. name: "Front",
  20104. image: {
  20105. source: "./media/characters/neil/front.svg",
  20106. extra: 1326 / 1250,
  20107. bottom: 0.023
  20108. }
  20109. },
  20110. },
  20111. [
  20112. {
  20113. name: "Normal",
  20114. height: math.unit(6 + 1 / 12, "feet"),
  20115. default: true
  20116. },
  20117. {
  20118. name: "Macro",
  20119. height: math.unit(200, "feet")
  20120. },
  20121. ]
  20122. ))
  20123. characterMakers.push(() => makeCharacter(
  20124. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20125. {
  20126. front: {
  20127. height: math.unit(5 + 9 / 12, "feet"),
  20128. weight: math.unit(190, "lb"),
  20129. name: "Front",
  20130. image: {
  20131. source: "./media/characters/atticus/front.svg",
  20132. extra: 2934 / 2785,
  20133. bottom: 0.025
  20134. }
  20135. },
  20136. },
  20137. [
  20138. {
  20139. name: "Normal",
  20140. height: math.unit(5 + 9 / 12, "feet"),
  20141. default: true
  20142. },
  20143. {
  20144. name: "Macro",
  20145. height: math.unit(180, "feet")
  20146. },
  20147. ]
  20148. ))
  20149. characterMakers.push(() => makeCharacter(
  20150. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20151. {
  20152. side: {
  20153. height: math.unit(9, "feet"),
  20154. weight: math.unit(650, "lb"),
  20155. name: "Side",
  20156. image: {
  20157. source: "./media/characters/milo/side.svg",
  20158. extra: 2644 / 2310,
  20159. bottom: 0.032
  20160. }
  20161. },
  20162. },
  20163. [
  20164. {
  20165. name: "Normal",
  20166. height: math.unit(9, "feet"),
  20167. default: true
  20168. },
  20169. {
  20170. name: "Macro",
  20171. height: math.unit(300, "feet")
  20172. },
  20173. ]
  20174. ))
  20175. characterMakers.push(() => makeCharacter(
  20176. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20177. {
  20178. side: {
  20179. height: math.unit(8, "meters"),
  20180. weight: math.unit(90000, "kg"),
  20181. name: "Side",
  20182. image: {
  20183. source: "./media/characters/ijzer/side.svg",
  20184. extra: 2756 / 1600,
  20185. bottom: 0.01
  20186. }
  20187. },
  20188. },
  20189. [
  20190. {
  20191. name: "Small",
  20192. height: math.unit(3, "meters")
  20193. },
  20194. {
  20195. name: "Normal",
  20196. height: math.unit(8, "meters"),
  20197. default: true
  20198. },
  20199. {
  20200. name: "Normal+",
  20201. height: math.unit(10, "meters")
  20202. },
  20203. {
  20204. name: "Bigger",
  20205. height: math.unit(24, "meters")
  20206. },
  20207. {
  20208. name: "Huge",
  20209. height: math.unit(80, "meters")
  20210. },
  20211. ]
  20212. ))
  20213. characterMakers.push(() => makeCharacter(
  20214. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20215. {
  20216. front: {
  20217. height: math.unit(6 + 2 / 12, "feet"),
  20218. weight: math.unit(153, "lb"),
  20219. name: "Front",
  20220. image: {
  20221. source: "./media/characters/luca-cervicum/front.svg",
  20222. extra: 370 / 327,
  20223. bottom: 0.015
  20224. }
  20225. },
  20226. back: {
  20227. height: math.unit(6 + 2 / 12, "feet"),
  20228. weight: math.unit(153, "lb"),
  20229. name: "Back",
  20230. image: {
  20231. source: "./media/characters/luca-cervicum/back.svg",
  20232. extra: 367 / 333,
  20233. bottom: 0.005
  20234. }
  20235. },
  20236. frontGear: {
  20237. height: math.unit(6 + 2 / 12, "feet"),
  20238. weight: math.unit(173, "lb"),
  20239. name: "Front (Gear)",
  20240. image: {
  20241. source: "./media/characters/luca-cervicum/front-gear.svg",
  20242. extra: 377 / 333,
  20243. bottom: 0.006
  20244. }
  20245. },
  20246. },
  20247. [
  20248. {
  20249. name: "Normal",
  20250. height: math.unit(6 + 2 / 12, "feet"),
  20251. default: true
  20252. },
  20253. ]
  20254. ))
  20255. characterMakers.push(() => makeCharacter(
  20256. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20257. {
  20258. front: {
  20259. height: math.unit(6 + 1 / 12, "feet"),
  20260. weight: math.unit(304, "lb"),
  20261. name: "Front",
  20262. image: {
  20263. source: "./media/characters/oliver/front.svg",
  20264. extra: 157 / 143,
  20265. bottom: 0.08
  20266. }
  20267. },
  20268. },
  20269. [
  20270. {
  20271. name: "Normal",
  20272. height: math.unit(6 + 1 / 12, "feet"),
  20273. default: true
  20274. },
  20275. ]
  20276. ))
  20277. characterMakers.push(() => makeCharacter(
  20278. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20279. {
  20280. front: {
  20281. height: math.unit(5 + 7 / 12, "feet"),
  20282. weight: math.unit(140, "lb"),
  20283. name: "Front",
  20284. image: {
  20285. source: "./media/characters/shane/front.svg",
  20286. extra: 304 / 289,
  20287. bottom: 0.005
  20288. }
  20289. },
  20290. },
  20291. [
  20292. {
  20293. name: "Normal",
  20294. height: math.unit(5 + 7 / 12, "feet"),
  20295. default: true
  20296. },
  20297. ]
  20298. ))
  20299. characterMakers.push(() => makeCharacter(
  20300. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20301. {
  20302. front: {
  20303. height: math.unit(5 + 9 / 12, "feet"),
  20304. weight: math.unit(178, "lb"),
  20305. name: "Front",
  20306. image: {
  20307. source: "./media/characters/shin/front.svg",
  20308. extra: 159 / 151,
  20309. bottom: 0.015
  20310. }
  20311. },
  20312. },
  20313. [
  20314. {
  20315. name: "Normal",
  20316. height: math.unit(5 + 9 / 12, "feet"),
  20317. default: true
  20318. },
  20319. ]
  20320. ))
  20321. characterMakers.push(() => makeCharacter(
  20322. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20323. {
  20324. front: {
  20325. height: math.unit(5 + 10 / 12, "feet"),
  20326. weight: math.unit(168, "lb"),
  20327. name: "Front",
  20328. image: {
  20329. source: "./media/characters/xerxes/front.svg",
  20330. extra: 282 / 260,
  20331. bottom: 0.045
  20332. }
  20333. },
  20334. },
  20335. [
  20336. {
  20337. name: "Normal",
  20338. height: math.unit(5 + 10 / 12, "feet"),
  20339. default: true
  20340. },
  20341. ]
  20342. ))
  20343. characterMakers.push(() => makeCharacter(
  20344. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20345. {
  20346. front: {
  20347. height: math.unit(6 + 7 / 12, "feet"),
  20348. weight: math.unit(208, "lb"),
  20349. name: "Front",
  20350. image: {
  20351. source: "./media/characters/chaska/front.svg",
  20352. extra: 332 / 319,
  20353. bottom: 0.015
  20354. }
  20355. },
  20356. },
  20357. [
  20358. {
  20359. name: "Normal",
  20360. height: math.unit(6 + 7 / 12, "feet"),
  20361. default: true
  20362. },
  20363. ]
  20364. ))
  20365. characterMakers.push(() => makeCharacter(
  20366. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20367. {
  20368. front: {
  20369. height: math.unit(5 + 8 / 12, "feet"),
  20370. weight: math.unit(208, "lb"),
  20371. name: "Front",
  20372. image: {
  20373. source: "./media/characters/enuk/front.svg",
  20374. extra: 437 / 406,
  20375. bottom: 0.02
  20376. }
  20377. },
  20378. },
  20379. [
  20380. {
  20381. name: "Normal",
  20382. height: math.unit(5 + 8 / 12, "feet"),
  20383. default: true
  20384. },
  20385. ]
  20386. ))
  20387. characterMakers.push(() => makeCharacter(
  20388. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20389. {
  20390. front: {
  20391. height: math.unit(5 + 10 / 12, "feet"),
  20392. weight: math.unit(252, "lb"),
  20393. name: "Front",
  20394. image: {
  20395. source: "./media/characters/bruun/front.svg",
  20396. extra: 197 / 187,
  20397. bottom: 0.012
  20398. }
  20399. },
  20400. },
  20401. [
  20402. {
  20403. name: "Normal",
  20404. height: math.unit(5 + 10 / 12, "feet"),
  20405. default: true
  20406. },
  20407. ]
  20408. ))
  20409. characterMakers.push(() => makeCharacter(
  20410. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20411. {
  20412. front: {
  20413. height: math.unit(6 + 10 / 12, "feet"),
  20414. weight: math.unit(255, "lb"),
  20415. name: "Front",
  20416. image: {
  20417. source: "./media/characters/alexeev/front.svg",
  20418. extra: 213 / 200,
  20419. bottom: 0.05
  20420. }
  20421. },
  20422. },
  20423. [
  20424. {
  20425. name: "Normal",
  20426. height: math.unit(6 + 10 / 12, "feet"),
  20427. default: true
  20428. },
  20429. ]
  20430. ))
  20431. characterMakers.push(() => makeCharacter(
  20432. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20433. {
  20434. front: {
  20435. height: math.unit(2 + 8 / 12, "feet"),
  20436. weight: math.unit(22, "lb"),
  20437. name: "Front",
  20438. image: {
  20439. source: "./media/characters/evelyn/front.svg",
  20440. extra: 208 / 180
  20441. }
  20442. },
  20443. },
  20444. [
  20445. {
  20446. name: "Normal",
  20447. height: math.unit(2 + 8 / 12, "feet"),
  20448. default: true
  20449. },
  20450. ]
  20451. ))
  20452. characterMakers.push(() => makeCharacter(
  20453. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20454. {
  20455. front: {
  20456. height: math.unit(5 + 9 / 12, "feet"),
  20457. weight: math.unit(139, "lb"),
  20458. name: "Front",
  20459. image: {
  20460. source: "./media/characters/inca/front.svg",
  20461. extra: 294 / 291,
  20462. bottom: 0.03
  20463. }
  20464. },
  20465. },
  20466. [
  20467. {
  20468. name: "Normal",
  20469. height: math.unit(5 + 9 / 12, "feet"),
  20470. default: true
  20471. },
  20472. ]
  20473. ))
  20474. characterMakers.push(() => makeCharacter(
  20475. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20476. {
  20477. front: {
  20478. height: math.unit(6 + 3 / 12, "feet"),
  20479. weight: math.unit(185, "lb"),
  20480. name: "Front",
  20481. image: {
  20482. source: "./media/characters/mera/front.svg",
  20483. extra: 291 / 277,
  20484. bottom: 0.03
  20485. }
  20486. },
  20487. },
  20488. [
  20489. {
  20490. name: "Normal",
  20491. height: math.unit(6 + 3 / 12, "feet"),
  20492. default: true
  20493. },
  20494. ]
  20495. ))
  20496. characterMakers.push(() => makeCharacter(
  20497. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20498. {
  20499. front: {
  20500. height: math.unit(6 + 7 / 12, "feet"),
  20501. weight: math.unit(160, "lb"),
  20502. name: "Front",
  20503. image: {
  20504. source: "./media/characters/ceres/front.svg",
  20505. extra: 1023 / 950,
  20506. bottom: 0.027
  20507. }
  20508. },
  20509. back: {
  20510. height: math.unit(6 + 7 / 12, "feet"),
  20511. weight: math.unit(160, "lb"),
  20512. name: "Back",
  20513. image: {
  20514. source: "./media/characters/ceres/back.svg",
  20515. extra: 1023 / 950
  20516. }
  20517. },
  20518. },
  20519. [
  20520. {
  20521. name: "Normal",
  20522. height: math.unit(6 + 7 / 12, "feet"),
  20523. default: true
  20524. },
  20525. ]
  20526. ))
  20527. characterMakers.push(() => makeCharacter(
  20528. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20529. {
  20530. front: {
  20531. height: math.unit(5 + 10 / 12, "feet"),
  20532. weight: math.unit(150, "lb"),
  20533. name: "Front",
  20534. image: {
  20535. source: "./media/characters/kris/front.svg",
  20536. extra: 885 / 803,
  20537. bottom: 0.03
  20538. }
  20539. },
  20540. },
  20541. [
  20542. {
  20543. name: "Normal",
  20544. height: math.unit(5 + 10 / 12, "feet"),
  20545. default: true
  20546. },
  20547. ]
  20548. ))
  20549. characterMakers.push(() => makeCharacter(
  20550. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20551. {
  20552. front: {
  20553. height: math.unit(7, "feet"),
  20554. weight: math.unit(120, "kg"),
  20555. name: "Front",
  20556. image: {
  20557. source: "./media/characters/taluthus/front.svg",
  20558. extra: 903 / 833,
  20559. bottom: 0.015
  20560. }
  20561. },
  20562. },
  20563. [
  20564. {
  20565. name: "Normal",
  20566. height: math.unit(7, "feet"),
  20567. default: true
  20568. },
  20569. {
  20570. name: "Macro",
  20571. height: math.unit(300, "feet")
  20572. },
  20573. ]
  20574. ))
  20575. characterMakers.push(() => makeCharacter(
  20576. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20577. {
  20578. front: {
  20579. height: math.unit(5 + 9 / 12, "feet"),
  20580. weight: math.unit(145, "lb"),
  20581. name: "Front",
  20582. image: {
  20583. source: "./media/characters/dawn/front.svg",
  20584. extra: 2094 / 2016,
  20585. bottom: 0.025
  20586. }
  20587. },
  20588. back: {
  20589. height: math.unit(5 + 9 / 12, "feet"),
  20590. weight: math.unit(160, "lb"),
  20591. name: "Back",
  20592. image: {
  20593. source: "./media/characters/dawn/back.svg",
  20594. extra: 2112 / 2080,
  20595. bottom: 0.005
  20596. }
  20597. },
  20598. },
  20599. [
  20600. {
  20601. name: "Normal",
  20602. height: math.unit(6 + 7 / 12, "feet"),
  20603. default: true
  20604. },
  20605. ]
  20606. ))
  20607. characterMakers.push(() => makeCharacter(
  20608. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20609. {
  20610. anthro: {
  20611. height: math.unit(8 + 3 / 12, "feet"),
  20612. weight: math.unit(450, "lb"),
  20613. name: "Anthro",
  20614. image: {
  20615. source: "./media/characters/arador/anthro.svg",
  20616. extra: 1835 / 1718,
  20617. bottom: 0.025
  20618. }
  20619. },
  20620. feral: {
  20621. height: math.unit(4, "feet"),
  20622. weight: math.unit(200, "lb"),
  20623. name: "Feral",
  20624. image: {
  20625. source: "./media/characters/arador/feral.svg",
  20626. extra: 1683 / 1514,
  20627. bottom: 0.07
  20628. }
  20629. },
  20630. },
  20631. [
  20632. {
  20633. name: "Normal",
  20634. height: math.unit(8 + 3 / 12, "feet")
  20635. },
  20636. {
  20637. name: "Macro",
  20638. height: math.unit(82.5, "feet"),
  20639. default: true
  20640. },
  20641. ]
  20642. ))
  20643. characterMakers.push(() => makeCharacter(
  20644. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20645. {
  20646. front: {
  20647. height: math.unit(5 + 10 / 12, "feet"),
  20648. weight: math.unit(125, "lb"),
  20649. name: "Front",
  20650. image: {
  20651. source: "./media/characters/dharsi/front.svg",
  20652. extra: 716 / 630,
  20653. bottom: 0.035
  20654. }
  20655. },
  20656. },
  20657. [
  20658. {
  20659. name: "Nano",
  20660. height: math.unit(100, "nm")
  20661. },
  20662. {
  20663. name: "Micro",
  20664. height: math.unit(2, "inches")
  20665. },
  20666. {
  20667. name: "Normal",
  20668. height: math.unit(5 + 10 / 12, "feet"),
  20669. default: true
  20670. },
  20671. {
  20672. name: "Macro",
  20673. height: math.unit(1000, "feet")
  20674. },
  20675. {
  20676. name: "Megamacro",
  20677. height: math.unit(10, "miles")
  20678. },
  20679. {
  20680. name: "Gigamacro",
  20681. height: math.unit(3000, "miles")
  20682. },
  20683. {
  20684. name: "Teramacro",
  20685. height: math.unit(500000, "miles")
  20686. },
  20687. {
  20688. name: "Teramacro+",
  20689. height: math.unit(30, "galaxies")
  20690. },
  20691. ]
  20692. ))
  20693. characterMakers.push(() => makeCharacter(
  20694. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20695. {
  20696. front: {
  20697. height: math.unit(6, "feet"),
  20698. weight: math.unit(150, "lb"),
  20699. name: "Front",
  20700. image: {
  20701. source: "./media/characters/deathy/front.svg",
  20702. extra: 1552 / 1463,
  20703. bottom: 0.025
  20704. }
  20705. },
  20706. side: {
  20707. height: math.unit(6, "feet"),
  20708. weight: math.unit(150, "lb"),
  20709. name: "Side",
  20710. image: {
  20711. source: "./media/characters/deathy/side.svg",
  20712. extra: 1604 / 1455,
  20713. bottom: 0.025
  20714. }
  20715. },
  20716. back: {
  20717. height: math.unit(6, "feet"),
  20718. weight: math.unit(150, "lb"),
  20719. name: "Back",
  20720. image: {
  20721. source: "./media/characters/deathy/back.svg",
  20722. extra: 1580 / 1463,
  20723. bottom: 0.005
  20724. }
  20725. },
  20726. },
  20727. [
  20728. {
  20729. name: "Micro",
  20730. height: math.unit(5, "millimeters")
  20731. },
  20732. {
  20733. name: "Normal",
  20734. height: math.unit(6 + 5 / 12, "feet"),
  20735. default: true
  20736. },
  20737. ]
  20738. ))
  20739. characterMakers.push(() => makeCharacter(
  20740. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20741. {
  20742. front: {
  20743. height: math.unit(16, "feet"),
  20744. weight: math.unit(4000, "lb"),
  20745. name: "Front",
  20746. image: {
  20747. source: "./media/characters/juniper/front.svg",
  20748. bottom: 0.04
  20749. }
  20750. },
  20751. },
  20752. [
  20753. {
  20754. name: "Normal",
  20755. height: math.unit(16, "feet"),
  20756. default: true
  20757. },
  20758. ]
  20759. ))
  20760. characterMakers.push(() => makeCharacter(
  20761. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20762. {
  20763. front: {
  20764. height: math.unit(6, "feet"),
  20765. weight: math.unit(150, "lb"),
  20766. name: "Front",
  20767. image: {
  20768. source: "./media/characters/hipster/front.svg",
  20769. extra: 1312 / 1209,
  20770. bottom: 0.025
  20771. }
  20772. },
  20773. back: {
  20774. height: math.unit(6, "feet"),
  20775. weight: math.unit(150, "lb"),
  20776. name: "Back",
  20777. image: {
  20778. source: "./media/characters/hipster/back.svg",
  20779. extra: 1281 / 1196,
  20780. bottom: 0.01
  20781. }
  20782. },
  20783. },
  20784. [
  20785. {
  20786. name: "Micro",
  20787. height: math.unit(1, "mm")
  20788. },
  20789. {
  20790. name: "Normal",
  20791. height: math.unit(4, "inches"),
  20792. default: true
  20793. },
  20794. {
  20795. name: "Macro",
  20796. height: math.unit(500, "feet")
  20797. },
  20798. {
  20799. name: "Megamacro",
  20800. height: math.unit(1000, "miles")
  20801. },
  20802. ]
  20803. ))
  20804. characterMakers.push(() => makeCharacter(
  20805. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20806. {
  20807. front: {
  20808. height: math.unit(6, "feet"),
  20809. weight: math.unit(150, "lb"),
  20810. name: "Front",
  20811. image: {
  20812. source: "./media/characters/tendirmuldr/front.svg",
  20813. extra: 1878 / 1772,
  20814. bottom: 0.015
  20815. }
  20816. },
  20817. },
  20818. [
  20819. {
  20820. name: "Megamacro",
  20821. height: math.unit(1500, "miles"),
  20822. default: true
  20823. },
  20824. ]
  20825. ))
  20826. characterMakers.push(() => makeCharacter(
  20827. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20828. {
  20829. front: {
  20830. height: math.unit(14, "feet"),
  20831. weight: math.unit(12000, "lb"),
  20832. name: "Front",
  20833. image: {
  20834. source: "./media/characters/mort/front.svg",
  20835. extra: 365 / 318,
  20836. bottom: 0.01
  20837. }
  20838. },
  20839. side: {
  20840. height: math.unit(14, "feet"),
  20841. weight: math.unit(12000, "lb"),
  20842. name: "Side",
  20843. image: {
  20844. source: "./media/characters/mort/side.svg",
  20845. extra: 365 / 318,
  20846. bottom: 0.052
  20847. },
  20848. default: true
  20849. },
  20850. back: {
  20851. height: math.unit(14, "feet"),
  20852. weight: math.unit(12000, "lb"),
  20853. name: "Back",
  20854. image: {
  20855. source: "./media/characters/mort/back.svg",
  20856. extra: 371 / 332,
  20857. bottom: 0.18
  20858. }
  20859. },
  20860. },
  20861. [
  20862. {
  20863. name: "Normal",
  20864. height: math.unit(14, "feet"),
  20865. default: true
  20866. },
  20867. ]
  20868. ))
  20869. characterMakers.push(() => makeCharacter(
  20870. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20871. {
  20872. front: {
  20873. height: math.unit(8, "feet"),
  20874. weight: math.unit(1, "ton"),
  20875. name: "Front",
  20876. image: {
  20877. source: "./media/characters/lycoa/front.svg",
  20878. extra: 1836/1728,
  20879. bottom: 81/1917
  20880. }
  20881. },
  20882. back: {
  20883. height: math.unit(8, "feet"),
  20884. weight: math.unit(1, "ton"),
  20885. name: "Back",
  20886. image: {
  20887. source: "./media/characters/lycoa/back.svg",
  20888. extra: 1785/1720,
  20889. bottom: 91/1876
  20890. }
  20891. },
  20892. head: {
  20893. height: math.unit(1.6243, "feet"),
  20894. name: "Head",
  20895. image: {
  20896. source: "./media/characters/lycoa/head.svg",
  20897. extra: 1011/782,
  20898. bottom: 0/1011
  20899. }
  20900. },
  20901. tailmaw: {
  20902. height: math.unit(1.9, "feet"),
  20903. name: "Tailmaw",
  20904. image: {
  20905. source: "./media/characters/lycoa/tailmaw.svg"
  20906. }
  20907. },
  20908. tentacles: {
  20909. height: math.unit(2.1, "feet"),
  20910. name: "Tentacles",
  20911. image: {
  20912. source: "./media/characters/lycoa/tentacles.svg"
  20913. }
  20914. },
  20915. dick: {
  20916. height: math.unit(1.73, "feet"),
  20917. name: "Dick",
  20918. image: {
  20919. source: "./media/characters/lycoa/dick.svg"
  20920. }
  20921. },
  20922. },
  20923. [
  20924. {
  20925. name: "Normal",
  20926. height: math.unit(8, "feet"),
  20927. default: true
  20928. },
  20929. {
  20930. name: "Macro",
  20931. height: math.unit(30, "feet")
  20932. },
  20933. ]
  20934. ))
  20935. characterMakers.push(() => makeCharacter(
  20936. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20937. {
  20938. front: {
  20939. height: math.unit(4 + 2 / 12, "feet"),
  20940. weight: math.unit(70, "lb"),
  20941. name: "Front",
  20942. image: {
  20943. source: "./media/characters/naldara/front.svg",
  20944. extra: 1664/1387,
  20945. bottom: 81/1745
  20946. },
  20947. form: "anthro",
  20948. default: true
  20949. },
  20950. naga: {
  20951. height: math.unit(20, "feet"),
  20952. weight: math.unit(15000, "kg"),
  20953. name: "Front",
  20954. image: {
  20955. source: "./media/characters/naldara/naga.svg",
  20956. extra: 1590/1396,
  20957. bottom: 285/1875
  20958. },
  20959. form: "naga",
  20960. default: true
  20961. },
  20962. },
  20963. [
  20964. {
  20965. name: "Normal",
  20966. height: math.unit(4 + 2 / 12, "feet"),
  20967. form: "anthro",
  20968. default: true
  20969. },
  20970. {
  20971. name: "Normal",
  20972. height: math.unit(20, "feet"),
  20973. form: "naga",
  20974. default: true
  20975. },
  20976. ],
  20977. {
  20978. "anthro": {
  20979. name: "Anthro",
  20980. default: true
  20981. },
  20982. "naga": {
  20983. name: "Naga"
  20984. }
  20985. }
  20986. ))
  20987. characterMakers.push(() => makeCharacter(
  20988. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20989. {
  20990. front: {
  20991. height: math.unit(13 + 7 / 12, "feet"),
  20992. weight: math.unit(1500, "lb"),
  20993. name: "Front",
  20994. image: {
  20995. source: "./media/characters/briar/front.svg",
  20996. extra: 1223/1157,
  20997. bottom: 123/1346
  20998. }
  20999. },
  21000. },
  21001. [
  21002. {
  21003. name: "Normal",
  21004. height: math.unit(13 + 7 / 12, "feet"),
  21005. default: true
  21006. },
  21007. ]
  21008. ))
  21009. characterMakers.push(() => makeCharacter(
  21010. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21011. {
  21012. side: {
  21013. height: math.unit(16, "feet"),
  21014. weight: math.unit(500, "lb"),
  21015. name: "Side",
  21016. image: {
  21017. source: "./media/characters/vanguard/side.svg",
  21018. extra: 1022/914,
  21019. bottom: 30/1052
  21020. }
  21021. },
  21022. sideAlt: {
  21023. height: math.unit(10, "feet"),
  21024. weight: math.unit(500, "lb"),
  21025. name: "Side (Alt)",
  21026. image: {
  21027. source: "./media/characters/vanguard/side-alt.svg",
  21028. extra: 502 / 425,
  21029. bottom: 0.087
  21030. }
  21031. },
  21032. },
  21033. [
  21034. {
  21035. name: "Normal",
  21036. height: math.unit(17.71, "feet"),
  21037. default: true
  21038. },
  21039. ]
  21040. ))
  21041. characterMakers.push(() => makeCharacter(
  21042. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21043. {
  21044. front: {
  21045. height: math.unit(7.5, "feet"),
  21046. weight: math.unit(2, "lb"),
  21047. name: "Front",
  21048. image: {
  21049. source: "./media/characters/artemis/work-safe-front.svg",
  21050. extra: 1192 / 1075,
  21051. bottom: 0.07
  21052. },
  21053. form: "work-safe",
  21054. default: true
  21055. },
  21056. frontNsfw: {
  21057. height: math.unit(7.5, "feet"),
  21058. weight: math.unit(2, "lb"),
  21059. name: "Front",
  21060. image: {
  21061. source: "./media/characters/artemis/calibrating-front.svg",
  21062. extra: 1192 / 1075,
  21063. bottom: 0.07
  21064. },
  21065. form: "calibrating",
  21066. default: true
  21067. },
  21068. frontNsfwer: {
  21069. height: math.unit(7.5, "feet"),
  21070. weight: math.unit(2, "lb"),
  21071. name: "Front",
  21072. image: {
  21073. source: "./media/characters/artemis/oversize-load-front.svg",
  21074. extra: 1192 / 1075,
  21075. bottom: 0.07
  21076. },
  21077. form: "oversize-load",
  21078. default: true
  21079. },
  21080. side: {
  21081. height: math.unit(7.5, "feet"),
  21082. weight: math.unit(2, "lb"),
  21083. name: "Side",
  21084. image: {
  21085. source: "./media/characters/artemis/work-safe-side.svg",
  21086. extra: 1192 / 1075,
  21087. bottom: 0.07
  21088. },
  21089. form: "work-safe"
  21090. },
  21091. sideNsfw: {
  21092. height: math.unit(7.5, "feet"),
  21093. weight: math.unit(2, "lb"),
  21094. name: "Side",
  21095. image: {
  21096. source: "./media/characters/artemis/calibrating-side.svg",
  21097. extra: 1192 / 1075,
  21098. bottom: 0.07
  21099. },
  21100. form: "calibrating"
  21101. },
  21102. sideNsfwer: {
  21103. height: math.unit(7.5, "feet"),
  21104. weight: math.unit(2, "lb"),
  21105. name: "Side",
  21106. image: {
  21107. source: "./media/characters/artemis/oversize-load-side.svg",
  21108. extra: 1192 / 1075,
  21109. bottom: 0.07
  21110. },
  21111. form: "oversize-load"
  21112. },
  21113. maw: {
  21114. height: math.unit(1.1, "feet"),
  21115. name: "Maw",
  21116. image: {
  21117. source: "./media/characters/artemis/maw.svg"
  21118. },
  21119. form: "work-safe"
  21120. },
  21121. stomach: {
  21122. height: math.unit(0.95, "feet"),
  21123. name: "Stomach",
  21124. image: {
  21125. source: "./media/characters/artemis/stomach.svg"
  21126. },
  21127. form: "work-safe"
  21128. },
  21129. dickCanine: {
  21130. height: math.unit(1, "feet"),
  21131. name: "Dick (Canine)",
  21132. image: {
  21133. source: "./media/characters/artemis/dick-canine.svg"
  21134. },
  21135. form: "calibrating"
  21136. },
  21137. dickEquine: {
  21138. height: math.unit(0.85, "feet"),
  21139. name: "Dick (Equine)",
  21140. image: {
  21141. source: "./media/characters/artemis/dick-equine.svg"
  21142. },
  21143. form: "calibrating"
  21144. },
  21145. dickExotic: {
  21146. height: math.unit(0.85, "feet"),
  21147. name: "Dick (Exotic)",
  21148. image: {
  21149. source: "./media/characters/artemis/dick-exotic.svg"
  21150. },
  21151. form: "calibrating"
  21152. },
  21153. dickCanineBigger: {
  21154. height: math.unit(1 * 1.33, "feet"),
  21155. name: "Dick (Canine)",
  21156. image: {
  21157. source: "./media/characters/artemis/dick-canine.svg"
  21158. },
  21159. form: "oversize-load"
  21160. },
  21161. dickEquineBigger: {
  21162. height: math.unit(0.85 * 1.33, "feet"),
  21163. name: "Dick (Equine)",
  21164. image: {
  21165. source: "./media/characters/artemis/dick-equine.svg"
  21166. },
  21167. form: "oversize-load"
  21168. },
  21169. dickExoticBigger: {
  21170. height: math.unit(0.85 * 1.33, "feet"),
  21171. name: "Dick (Exotic)",
  21172. image: {
  21173. source: "./media/characters/artemis/dick-exotic.svg"
  21174. },
  21175. form: "oversize-load"
  21176. },
  21177. },
  21178. [
  21179. {
  21180. name: "Normal",
  21181. height: math.unit(7.5, "feet"),
  21182. form: "work-safe",
  21183. default: true
  21184. },
  21185. {
  21186. name: "Normal",
  21187. height: math.unit(7.5, "feet"),
  21188. form: "calibrating",
  21189. default: true
  21190. },
  21191. {
  21192. name: "Normal",
  21193. height: math.unit(7.5, "feet"),
  21194. form: "oversize-load",
  21195. default: true
  21196. },
  21197. {
  21198. name: "Enlarged",
  21199. height: math.unit(12, "feet"),
  21200. form: "work-safe",
  21201. },
  21202. {
  21203. name: "Enlarged",
  21204. height: math.unit(12, "feet"),
  21205. form: "calibrating",
  21206. },
  21207. {
  21208. name: "Enlarged",
  21209. height: math.unit(12, "feet"),
  21210. form: "oversize-load",
  21211. },
  21212. ],
  21213. {
  21214. "work-safe": {
  21215. name: "Work-Safe",
  21216. default: true
  21217. },
  21218. "calibrating": {
  21219. name: "Calibrating"
  21220. },
  21221. "oversize-load": {
  21222. name: "Oversize Load"
  21223. }
  21224. }
  21225. ))
  21226. characterMakers.push(() => makeCharacter(
  21227. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21228. {
  21229. front: {
  21230. height: math.unit(5 + 3 / 12, "feet"),
  21231. weight: math.unit(160, "lb"),
  21232. name: "Front",
  21233. image: {
  21234. source: "./media/characters/kira/front.svg",
  21235. extra: 906 / 786,
  21236. bottom: 0.01
  21237. }
  21238. },
  21239. back: {
  21240. height: math.unit(5 + 3 / 12, "feet"),
  21241. weight: math.unit(160, "lb"),
  21242. name: "Back",
  21243. image: {
  21244. source: "./media/characters/kira/back.svg",
  21245. extra: 882 / 757,
  21246. bottom: 0.005
  21247. }
  21248. },
  21249. frontDressed: {
  21250. height: math.unit(5 + 3 / 12, "feet"),
  21251. weight: math.unit(160, "lb"),
  21252. name: "Front (Dressed)",
  21253. image: {
  21254. source: "./media/characters/kira/front-dressed.svg",
  21255. extra: 906 / 786,
  21256. bottom: 0.01
  21257. }
  21258. },
  21259. beans: {
  21260. height: math.unit(0.92, "feet"),
  21261. name: "Beans",
  21262. image: {
  21263. source: "./media/characters/kira/beans.svg"
  21264. }
  21265. },
  21266. },
  21267. [
  21268. {
  21269. name: "Normal",
  21270. height: math.unit(5 + 3 / 12, "feet"),
  21271. default: true
  21272. },
  21273. ]
  21274. ))
  21275. characterMakers.push(() => makeCharacter(
  21276. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21277. {
  21278. front: {
  21279. height: math.unit(5 + 4 / 12, "feet"),
  21280. weight: math.unit(145, "lb"),
  21281. name: "Front",
  21282. image: {
  21283. source: "./media/characters/scramble/front.svg",
  21284. extra: 763 / 727,
  21285. bottom: 0.05
  21286. }
  21287. },
  21288. back: {
  21289. height: math.unit(5 + 4 / 12, "feet"),
  21290. weight: math.unit(145, "lb"),
  21291. name: "Back",
  21292. image: {
  21293. source: "./media/characters/scramble/back.svg",
  21294. extra: 826 / 737,
  21295. bottom: 0.002
  21296. }
  21297. },
  21298. },
  21299. [
  21300. {
  21301. name: "Normal",
  21302. height: math.unit(5 + 4 / 12, "feet"),
  21303. default: true
  21304. },
  21305. ]
  21306. ))
  21307. characterMakers.push(() => makeCharacter(
  21308. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21309. {
  21310. side: {
  21311. height: math.unit(6 + 2 / 12, "feet"),
  21312. weight: math.unit(190, "lb"),
  21313. name: "Side",
  21314. image: {
  21315. source: "./media/characters/biscuit/side.svg",
  21316. extra: 858 / 791,
  21317. bottom: 0.044
  21318. }
  21319. },
  21320. },
  21321. [
  21322. {
  21323. name: "Normal",
  21324. height: math.unit(6 + 2 / 12, "feet"),
  21325. default: true
  21326. },
  21327. ]
  21328. ))
  21329. characterMakers.push(() => makeCharacter(
  21330. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21331. {
  21332. front: {
  21333. height: math.unit(5 + 2 / 12, "feet"),
  21334. weight: math.unit(120, "lb"),
  21335. name: "Front",
  21336. image: {
  21337. source: "./media/characters/poffin/front.svg",
  21338. extra: 786 / 680,
  21339. bottom: 0.005
  21340. }
  21341. },
  21342. },
  21343. [
  21344. {
  21345. name: "Normal",
  21346. height: math.unit(5 + 2 / 12, "feet"),
  21347. default: true
  21348. },
  21349. ]
  21350. ))
  21351. characterMakers.push(() => makeCharacter(
  21352. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21353. {
  21354. front: {
  21355. height: math.unit(6 + 3 / 12, "feet"),
  21356. weight: math.unit(519, "lb"),
  21357. name: "Front",
  21358. image: {
  21359. source: "./media/characters/dhari/front.svg",
  21360. extra: 1048 / 946,
  21361. bottom: 0.015
  21362. }
  21363. },
  21364. back: {
  21365. height: math.unit(6 + 3 / 12, "feet"),
  21366. weight: math.unit(519, "lb"),
  21367. name: "Back",
  21368. image: {
  21369. source: "./media/characters/dhari/back.svg",
  21370. extra: 1048 / 931,
  21371. bottom: 0.005
  21372. }
  21373. },
  21374. frontDressed: {
  21375. height: math.unit(6 + 3 / 12, "feet"),
  21376. weight: math.unit(519, "lb"),
  21377. name: "Front (Dressed)",
  21378. image: {
  21379. source: "./media/characters/dhari/front-dressed.svg",
  21380. extra: 1713 / 1546,
  21381. bottom: 0.02
  21382. }
  21383. },
  21384. backDressed: {
  21385. height: math.unit(6 + 3 / 12, "feet"),
  21386. weight: math.unit(519, "lb"),
  21387. name: "Back (Dressed)",
  21388. image: {
  21389. source: "./media/characters/dhari/back-dressed.svg",
  21390. extra: 1699 / 1537,
  21391. bottom: 0.01
  21392. }
  21393. },
  21394. maw: {
  21395. height: math.unit(0.95, "feet"),
  21396. name: "Maw",
  21397. image: {
  21398. source: "./media/characters/dhari/maw.svg"
  21399. }
  21400. },
  21401. wereFront: {
  21402. height: math.unit(12 + 8 / 12, "feet"),
  21403. weight: math.unit(4000, "lb"),
  21404. name: "Front (Were)",
  21405. image: {
  21406. source: "./media/characters/dhari/were-front.svg",
  21407. extra: 1065 / 969,
  21408. bottom: 0.015
  21409. }
  21410. },
  21411. wereBack: {
  21412. height: math.unit(12 + 8 / 12, "feet"),
  21413. weight: math.unit(4000, "lb"),
  21414. name: "Back (Were)",
  21415. image: {
  21416. source: "./media/characters/dhari/were-back.svg",
  21417. extra: 1065 / 969,
  21418. bottom: 0.012
  21419. }
  21420. },
  21421. wereMaw: {
  21422. height: math.unit(0.625, "meters"),
  21423. name: "Maw (Were)",
  21424. image: {
  21425. source: "./media/characters/dhari/were-maw.svg"
  21426. }
  21427. },
  21428. },
  21429. [
  21430. {
  21431. name: "Normal",
  21432. height: math.unit(6 + 3 / 12, "feet"),
  21433. default: true
  21434. },
  21435. ]
  21436. ))
  21437. characterMakers.push(() => makeCharacter(
  21438. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21439. {
  21440. anthro: {
  21441. height: math.unit(5 + 7 / 12, "feet"),
  21442. weight: math.unit(175, "lb"),
  21443. name: "Anthro",
  21444. image: {
  21445. source: "./media/characters/rena-dyne/anthro.svg",
  21446. extra: 1849 / 1785,
  21447. bottom: 0.005
  21448. }
  21449. },
  21450. taur: {
  21451. height: math.unit(15 + 6 / 12, "feet"),
  21452. weight: math.unit(8000, "lb"),
  21453. name: "Taur",
  21454. image: {
  21455. source: "./media/characters/rena-dyne/taur.svg",
  21456. extra: 2315 / 2234,
  21457. bottom: 0.033
  21458. }
  21459. },
  21460. },
  21461. [
  21462. {
  21463. name: "Normal",
  21464. height: math.unit(5 + 7 / 12, "feet"),
  21465. default: true
  21466. },
  21467. ]
  21468. ))
  21469. characterMakers.push(() => makeCharacter(
  21470. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21471. {
  21472. front: {
  21473. height: math.unit(8, "feet"),
  21474. weight: math.unit(600, "lb"),
  21475. name: "Front",
  21476. image: {
  21477. source: "./media/characters/weremeep/front.svg",
  21478. extra: 967 / 862,
  21479. bottom: 0.01
  21480. }
  21481. },
  21482. },
  21483. [
  21484. {
  21485. name: "Normal",
  21486. height: math.unit(8, "feet"),
  21487. default: true
  21488. },
  21489. {
  21490. name: "Lorg",
  21491. height: math.unit(12, "feet")
  21492. },
  21493. {
  21494. name: "Oh Lawd She Comin'",
  21495. height: math.unit(20, "feet")
  21496. },
  21497. ]
  21498. ))
  21499. characterMakers.push(() => makeCharacter(
  21500. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21501. {
  21502. front: {
  21503. height: math.unit(4, "feet"),
  21504. weight: math.unit(90, "lb"),
  21505. name: "Front",
  21506. image: {
  21507. source: "./media/characters/reza/front.svg",
  21508. extra: 1183 / 1111,
  21509. bottom: 0.017
  21510. }
  21511. },
  21512. back: {
  21513. height: math.unit(4, "feet"),
  21514. weight: math.unit(90, "lb"),
  21515. name: "Back",
  21516. image: {
  21517. source: "./media/characters/reza/back.svg",
  21518. extra: 1183 / 1111,
  21519. bottom: 0.01
  21520. }
  21521. },
  21522. drake: {
  21523. height: math.unit(30, "feet"),
  21524. weight: math.unit(246960, "lb"),
  21525. name: "Drake",
  21526. image: {
  21527. source: "./media/characters/reza/drake.svg",
  21528. extra: 2350 / 2024,
  21529. bottom: 60.7 / 2403
  21530. }
  21531. },
  21532. },
  21533. [
  21534. {
  21535. name: "Normal",
  21536. height: math.unit(4, "feet"),
  21537. default: true
  21538. },
  21539. ]
  21540. ))
  21541. characterMakers.push(() => makeCharacter(
  21542. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21543. {
  21544. side: {
  21545. height: math.unit(15, "feet"),
  21546. weight: math.unit(14, "tons"),
  21547. name: "Side",
  21548. image: {
  21549. source: "./media/characters/athea/side.svg",
  21550. extra: 960 / 540,
  21551. bottom: 0.003
  21552. }
  21553. },
  21554. sitting: {
  21555. height: math.unit(6 * 2.85, "feet"),
  21556. weight: math.unit(14, "tons"),
  21557. name: "Sitting",
  21558. image: {
  21559. source: "./media/characters/athea/sitting.svg",
  21560. extra: 621 / 581,
  21561. bottom: 0.075
  21562. }
  21563. },
  21564. maw: {
  21565. height: math.unit(7.59498031496063, "feet"),
  21566. name: "Maw",
  21567. image: {
  21568. source: "./media/characters/athea/maw.svg"
  21569. }
  21570. },
  21571. },
  21572. [
  21573. {
  21574. name: "Lap Cat",
  21575. height: math.unit(2.5, "feet")
  21576. },
  21577. {
  21578. name: "Minimacro",
  21579. height: math.unit(15, "feet"),
  21580. default: true
  21581. },
  21582. {
  21583. name: "Macro",
  21584. height: math.unit(120, "feet")
  21585. },
  21586. {
  21587. name: "Macro+",
  21588. height: math.unit(640, "feet")
  21589. },
  21590. {
  21591. name: "Colossus",
  21592. height: math.unit(2.2, "miles")
  21593. },
  21594. ]
  21595. ))
  21596. characterMakers.push(() => makeCharacter(
  21597. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21598. {
  21599. front: {
  21600. height: math.unit(8 + 8 / 12, "feet"),
  21601. weight: math.unit(130, "kg"),
  21602. name: "Front",
  21603. image: {
  21604. source: "./media/characters/seroko/front.svg",
  21605. extra: 1385 / 1280,
  21606. bottom: 0.025
  21607. }
  21608. },
  21609. back: {
  21610. height: math.unit(8 + 8 / 12, "feet"),
  21611. weight: math.unit(130, "kg"),
  21612. name: "Back",
  21613. image: {
  21614. source: "./media/characters/seroko/back.svg",
  21615. extra: 1369 / 1238,
  21616. bottom: 0.018
  21617. }
  21618. },
  21619. frontDressed: {
  21620. height: math.unit(8 + 8 / 12, "feet"),
  21621. weight: math.unit(130, "kg"),
  21622. name: "Front (Dressed)",
  21623. image: {
  21624. source: "./media/characters/seroko/front-dressed.svg",
  21625. extra: 1366 / 1275,
  21626. bottom: 0.03
  21627. }
  21628. },
  21629. },
  21630. [
  21631. {
  21632. name: "Normal",
  21633. height: math.unit(8 + 8 / 12, "feet"),
  21634. default: true
  21635. },
  21636. ]
  21637. ))
  21638. characterMakers.push(() => makeCharacter(
  21639. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21640. {
  21641. front: {
  21642. height: math.unit(5.5, "feet"),
  21643. weight: math.unit(160, "lb"),
  21644. name: "Front",
  21645. image: {
  21646. source: "./media/characters/quatzi/front.svg",
  21647. extra: 2346 / 2242,
  21648. bottom: 0.015
  21649. }
  21650. },
  21651. },
  21652. [
  21653. {
  21654. name: "Normal",
  21655. height: math.unit(5.5, "feet"),
  21656. default: true
  21657. },
  21658. {
  21659. name: "Big",
  21660. height: math.unit(7.7, "feet")
  21661. },
  21662. ]
  21663. ))
  21664. characterMakers.push(() => makeCharacter(
  21665. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21666. {
  21667. front: {
  21668. height: math.unit(5 + 11 / 12, "feet"),
  21669. weight: math.unit(180, "lb"),
  21670. name: "Front",
  21671. image: {
  21672. source: "./media/characters/sen/front.svg",
  21673. extra: 1321 / 1254,
  21674. bottom: 0.015
  21675. }
  21676. },
  21677. side: {
  21678. height: math.unit(5 + 11 / 12, "feet"),
  21679. weight: math.unit(180, "lb"),
  21680. name: "Side",
  21681. image: {
  21682. source: "./media/characters/sen/side.svg",
  21683. extra: 1321 / 1254,
  21684. bottom: 0.007
  21685. }
  21686. },
  21687. back: {
  21688. height: math.unit(5 + 11 / 12, "feet"),
  21689. weight: math.unit(180, "lb"),
  21690. name: "Back",
  21691. image: {
  21692. source: "./media/characters/sen/back.svg",
  21693. extra: 1321 / 1254
  21694. }
  21695. },
  21696. },
  21697. [
  21698. {
  21699. name: "Normal",
  21700. height: math.unit(5 + 11 / 12, "feet"),
  21701. default: true
  21702. },
  21703. ]
  21704. ))
  21705. characterMakers.push(() => makeCharacter(
  21706. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21707. {
  21708. front: {
  21709. height: math.unit(166.6, "cm"),
  21710. weight: math.unit(66.6, "kg"),
  21711. name: "Front",
  21712. image: {
  21713. source: "./media/characters/fruity/front.svg",
  21714. extra: 1510 / 1386,
  21715. bottom: 0.04
  21716. }
  21717. },
  21718. back: {
  21719. height: math.unit(166.6, "cm"),
  21720. weight: math.unit(66.6, "lb"),
  21721. name: "Back",
  21722. image: {
  21723. source: "./media/characters/fruity/back.svg",
  21724. extra: 1563 / 1435,
  21725. bottom: 0.005
  21726. }
  21727. },
  21728. },
  21729. [
  21730. {
  21731. name: "Normal",
  21732. height: math.unit(166.6, "cm"),
  21733. default: true
  21734. },
  21735. {
  21736. name: "Demonic",
  21737. height: math.unit(166.6, "feet")
  21738. },
  21739. ]
  21740. ))
  21741. characterMakers.push(() => makeCharacter(
  21742. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21743. {
  21744. side: {
  21745. height: math.unit(10, "feet"),
  21746. weight: math.unit(500, "lb"),
  21747. name: "Side",
  21748. image: {
  21749. source: "./media/characters/zost/side.svg",
  21750. extra: 2870/2533,
  21751. bottom: 252/3122
  21752. }
  21753. },
  21754. mawFront: {
  21755. height: math.unit(1.08, "meters"),
  21756. name: "Maw (Front)",
  21757. image: {
  21758. source: "./media/characters/zost/maw-front.svg"
  21759. }
  21760. },
  21761. mawSide: {
  21762. height: math.unit(2.66, "feet"),
  21763. name: "Maw (Side)",
  21764. image: {
  21765. source: "./media/characters/zost/maw-side.svg"
  21766. }
  21767. },
  21768. wingspan: {
  21769. height: math.unit(7.4, "feet"),
  21770. name: "Wingspan",
  21771. image: {
  21772. source: "./media/characters/zost/wingspan.svg"
  21773. }
  21774. },
  21775. },
  21776. [
  21777. {
  21778. name: "Normal",
  21779. height: math.unit(10, "feet"),
  21780. default: true
  21781. },
  21782. ]
  21783. ))
  21784. characterMakers.push(() => makeCharacter(
  21785. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21786. {
  21787. front: {
  21788. height: math.unit(5 + 4 / 12, "feet"),
  21789. weight: math.unit(120, "lb"),
  21790. name: "Front",
  21791. image: {
  21792. source: "./media/characters/luci/front.svg",
  21793. extra: 1985 / 1884,
  21794. bottom: 0.04
  21795. }
  21796. },
  21797. back: {
  21798. height: math.unit(5 + 4 / 12, "feet"),
  21799. weight: math.unit(120, "lb"),
  21800. name: "Back",
  21801. image: {
  21802. source: "./media/characters/luci/back.svg",
  21803. extra: 1892 / 1791,
  21804. bottom: 0.002
  21805. }
  21806. },
  21807. },
  21808. [
  21809. {
  21810. name: "Normal",
  21811. height: math.unit(5 + 4 / 12, "feet"),
  21812. default: true
  21813. },
  21814. ]
  21815. ))
  21816. characterMakers.push(() => makeCharacter(
  21817. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21818. {
  21819. front: {
  21820. height: math.unit(1500, "feet"),
  21821. weight: math.unit(3.8e6, "tons"),
  21822. name: "Front",
  21823. image: {
  21824. source: "./media/characters/2th/front.svg",
  21825. extra: 3489 / 3350,
  21826. bottom: 0.1
  21827. }
  21828. },
  21829. foot: {
  21830. height: math.unit(461, "feet"),
  21831. name: "Foot",
  21832. image: {
  21833. source: "./media/characters/2th/foot.svg"
  21834. }
  21835. },
  21836. },
  21837. [
  21838. {
  21839. name: "\"Micro\"",
  21840. height: math.unit(15 + 7 / 12, "feet")
  21841. },
  21842. {
  21843. name: "Normal",
  21844. height: math.unit(1500, "feet"),
  21845. default: true
  21846. },
  21847. {
  21848. name: "Macro",
  21849. height: math.unit(5000, "feet")
  21850. },
  21851. {
  21852. name: "Megamacro",
  21853. height: math.unit(15, "miles")
  21854. },
  21855. {
  21856. name: "Gigamacro",
  21857. height: math.unit(4000, "miles")
  21858. },
  21859. {
  21860. name: "Galactic",
  21861. height: math.unit(50, "AU")
  21862. },
  21863. ]
  21864. ))
  21865. characterMakers.push(() => makeCharacter(
  21866. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21867. {
  21868. front: {
  21869. height: math.unit(5 + 6 / 12, "feet"),
  21870. weight: math.unit(220, "lb"),
  21871. name: "Front",
  21872. image: {
  21873. source: "./media/characters/amethyst/front.svg",
  21874. extra: 2078 / 2040,
  21875. bottom: 0.045
  21876. }
  21877. },
  21878. back: {
  21879. height: math.unit(5 + 6 / 12, "feet"),
  21880. weight: math.unit(220, "lb"),
  21881. name: "Back",
  21882. image: {
  21883. source: "./media/characters/amethyst/back.svg",
  21884. extra: 2021 / 1989,
  21885. bottom: 0.02
  21886. }
  21887. },
  21888. },
  21889. [
  21890. {
  21891. name: "Normal",
  21892. height: math.unit(5 + 6 / 12, "feet"),
  21893. default: true
  21894. },
  21895. ]
  21896. ))
  21897. characterMakers.push(() => makeCharacter(
  21898. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21899. {
  21900. front: {
  21901. height: math.unit(4 + 11 / 12, "feet"),
  21902. weight: math.unit(120, "lb"),
  21903. name: "Front",
  21904. image: {
  21905. source: "./media/characters/yumi-akiyama/front.svg",
  21906. extra: 1327 / 1235,
  21907. bottom: 0.02
  21908. }
  21909. },
  21910. back: {
  21911. height: math.unit(4 + 11 / 12, "feet"),
  21912. weight: math.unit(120, "lb"),
  21913. name: "Back",
  21914. image: {
  21915. source: "./media/characters/yumi-akiyama/back.svg",
  21916. extra: 1287 / 1245,
  21917. bottom: 0.002
  21918. }
  21919. },
  21920. },
  21921. [
  21922. {
  21923. name: "Galactic",
  21924. height: math.unit(50, "galaxies"),
  21925. default: true
  21926. },
  21927. {
  21928. name: "Universal",
  21929. height: math.unit(100, "universes")
  21930. },
  21931. ]
  21932. ))
  21933. characterMakers.push(() => makeCharacter(
  21934. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21935. {
  21936. front: {
  21937. height: math.unit(8, "feet"),
  21938. weight: math.unit(500, "lb"),
  21939. name: "Front",
  21940. image: {
  21941. source: "./media/characters/rifter-yrmori/front.svg",
  21942. extra: 1180 / 1125,
  21943. bottom: 0.02
  21944. }
  21945. },
  21946. back: {
  21947. height: math.unit(8, "feet"),
  21948. weight: math.unit(500, "lb"),
  21949. name: "Back",
  21950. image: {
  21951. source: "./media/characters/rifter-yrmori/back.svg",
  21952. extra: 1190 / 1145,
  21953. bottom: 0.001
  21954. }
  21955. },
  21956. wings: {
  21957. height: math.unit(7.75, "feet"),
  21958. weight: math.unit(500, "lb"),
  21959. name: "Wings",
  21960. image: {
  21961. source: "./media/characters/rifter-yrmori/wings.svg",
  21962. extra: 1357 / 1285
  21963. }
  21964. },
  21965. maw: {
  21966. height: math.unit(0.8, "feet"),
  21967. name: "Maw",
  21968. image: {
  21969. source: "./media/characters/rifter-yrmori/maw.svg"
  21970. }
  21971. },
  21972. mawfront: {
  21973. height: math.unit(1.45, "feet"),
  21974. name: "Maw (Front)",
  21975. image: {
  21976. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21977. }
  21978. },
  21979. },
  21980. [
  21981. {
  21982. name: "Normal",
  21983. height: math.unit(8, "feet"),
  21984. default: true
  21985. },
  21986. {
  21987. name: "Macro",
  21988. height: math.unit(42, "meters")
  21989. },
  21990. ]
  21991. ))
  21992. characterMakers.push(() => makeCharacter(
  21993. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21994. {
  21995. were: {
  21996. height: math.unit(25 + 6 / 12, "feet"),
  21997. weight: math.unit(10000, "lb"),
  21998. name: "Were",
  21999. image: {
  22000. source: "./media/characters/tahajin/were.svg",
  22001. extra: 801 / 770,
  22002. bottom: 0.042
  22003. }
  22004. },
  22005. aquatic: {
  22006. height: math.unit(6 + 4 / 12, "feet"),
  22007. weight: math.unit(160, "lb"),
  22008. name: "Aquatic",
  22009. image: {
  22010. source: "./media/characters/tahajin/aquatic.svg",
  22011. extra: 572 / 542,
  22012. bottom: 0.04
  22013. }
  22014. },
  22015. chow: {
  22016. height: math.unit(8 + 11 / 12, "feet"),
  22017. weight: math.unit(450, "lb"),
  22018. name: "Chow",
  22019. image: {
  22020. source: "./media/characters/tahajin/chow.svg",
  22021. extra: 660 / 640,
  22022. bottom: 0.015
  22023. }
  22024. },
  22025. demiNaga: {
  22026. height: math.unit(6 + 8 / 12, "feet"),
  22027. weight: math.unit(300, "lb"),
  22028. name: "Demi Naga",
  22029. image: {
  22030. source: "./media/characters/tahajin/demi-naga.svg",
  22031. extra: 643 / 615,
  22032. bottom: 0.1
  22033. }
  22034. },
  22035. data: {
  22036. height: math.unit(5, "inches"),
  22037. weight: math.unit(0.1, "lb"),
  22038. name: "Data",
  22039. image: {
  22040. source: "./media/characters/tahajin/data.svg"
  22041. }
  22042. },
  22043. fluu: {
  22044. height: math.unit(5 + 7 / 12, "feet"),
  22045. weight: math.unit(140, "lb"),
  22046. name: "Fluu",
  22047. image: {
  22048. source: "./media/characters/tahajin/fluu.svg",
  22049. extra: 628 / 592,
  22050. bottom: 0.02
  22051. }
  22052. },
  22053. starWarrior: {
  22054. height: math.unit(4 + 5 / 12, "feet"),
  22055. weight: math.unit(50, "lb"),
  22056. name: "Star Warrior",
  22057. image: {
  22058. source: "./media/characters/tahajin/star-warrior.svg"
  22059. }
  22060. },
  22061. },
  22062. [
  22063. {
  22064. name: "Normal",
  22065. height: math.unit(25 + 6 / 12, "feet"),
  22066. default: true
  22067. },
  22068. ]
  22069. ))
  22070. characterMakers.push(() => makeCharacter(
  22071. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22072. {
  22073. front: {
  22074. height: math.unit(8, "feet"),
  22075. weight: math.unit(350, "lb"),
  22076. name: "Front",
  22077. image: {
  22078. source: "./media/characters/gabira/front.svg",
  22079. extra: 608 / 580,
  22080. bottom: 0.03
  22081. }
  22082. },
  22083. back: {
  22084. height: math.unit(8, "feet"),
  22085. weight: math.unit(350, "lb"),
  22086. name: "Back",
  22087. image: {
  22088. source: "./media/characters/gabira/back.svg",
  22089. extra: 608 / 580,
  22090. bottom: 0.03
  22091. }
  22092. },
  22093. },
  22094. [
  22095. {
  22096. name: "Normal",
  22097. height: math.unit(8, "feet"),
  22098. default: true
  22099. },
  22100. ]
  22101. ))
  22102. characterMakers.push(() => makeCharacter(
  22103. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22104. {
  22105. front: {
  22106. height: math.unit(5 + 3 / 12, "feet"),
  22107. weight: math.unit(137, "lb"),
  22108. name: "Front",
  22109. image: {
  22110. source: "./media/characters/sasha-katraine/front.svg",
  22111. extra: 1745/1694,
  22112. bottom: 37/1782
  22113. }
  22114. },
  22115. back: {
  22116. height: math.unit(5 + 3 / 12, "feet"),
  22117. weight: math.unit(137, "lb"),
  22118. name: "Back",
  22119. image: {
  22120. source: "./media/characters/sasha-katraine/back.svg",
  22121. extra: 1776/1699,
  22122. bottom: 26/1802
  22123. }
  22124. },
  22125. },
  22126. [
  22127. {
  22128. name: "Micro",
  22129. height: math.unit(5, "inches")
  22130. },
  22131. {
  22132. name: "Normal",
  22133. height: math.unit(5 + 3 / 12, "feet"),
  22134. default: true
  22135. },
  22136. ]
  22137. ))
  22138. characterMakers.push(() => makeCharacter(
  22139. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22140. {
  22141. side: {
  22142. height: math.unit(4, "inches"),
  22143. weight: math.unit(200, "grams"),
  22144. name: "Side",
  22145. image: {
  22146. source: "./media/characters/der/side.svg",
  22147. extra: 719 / 400,
  22148. bottom: 30.6 / 749.9187
  22149. }
  22150. },
  22151. },
  22152. [
  22153. {
  22154. name: "Micro",
  22155. height: math.unit(4, "inches"),
  22156. default: true
  22157. },
  22158. ]
  22159. ))
  22160. characterMakers.push(() => makeCharacter(
  22161. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22162. {
  22163. side: {
  22164. height: math.unit(30, "meters"),
  22165. weight: math.unit(700, "tonnes"),
  22166. name: "Side",
  22167. image: {
  22168. source: "./media/characters/fixerdragon/side.svg",
  22169. extra: (1293.0514 - 116.03) / 1106.86,
  22170. bottom: 116.03 / 1293.0514
  22171. }
  22172. },
  22173. },
  22174. [
  22175. {
  22176. name: "Planck",
  22177. height: math.unit(1.6e-35, "meters")
  22178. },
  22179. {
  22180. name: "Micro",
  22181. height: math.unit(0.4, "meters")
  22182. },
  22183. {
  22184. name: "Normal",
  22185. height: math.unit(30, "meters"),
  22186. default: true
  22187. },
  22188. {
  22189. name: "Megamacro",
  22190. height: math.unit(1.2, "megameters")
  22191. },
  22192. {
  22193. name: "Teramacro",
  22194. height: math.unit(130, "terameters")
  22195. },
  22196. {
  22197. name: "Yottamacro",
  22198. height: math.unit(6200, "yottameters")
  22199. },
  22200. ]
  22201. ));
  22202. characterMakers.push(() => makeCharacter(
  22203. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22204. {
  22205. front: {
  22206. height: math.unit(8, "feet"),
  22207. weight: math.unit(250, "lb"),
  22208. name: "Front",
  22209. image: {
  22210. source: "./media/characters/kite/front.svg",
  22211. extra: 2796 / 2659,
  22212. bottom: 0.002
  22213. }
  22214. },
  22215. },
  22216. [
  22217. {
  22218. name: "Normal",
  22219. height: math.unit(8, "feet"),
  22220. default: true
  22221. },
  22222. {
  22223. name: "Macro",
  22224. height: math.unit(360, "feet")
  22225. },
  22226. {
  22227. name: "Megamacro",
  22228. height: math.unit(1500, "feet")
  22229. },
  22230. ]
  22231. ))
  22232. characterMakers.push(() => makeCharacter(
  22233. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22234. {
  22235. front: {
  22236. height: math.unit(5 + 11/12, "feet"),
  22237. weight: math.unit(170, "lb"),
  22238. name: "Front",
  22239. image: {
  22240. source: "./media/characters/poojawa-vynar/front.svg",
  22241. extra: 1735/1585,
  22242. bottom: 96/1831
  22243. }
  22244. },
  22245. back: {
  22246. height: math.unit(5 + 11/12, "feet"),
  22247. weight: math.unit(170, "lb"),
  22248. name: "Back",
  22249. image: {
  22250. source: "./media/characters/poojawa-vynar/back.svg",
  22251. extra: 1749/1607,
  22252. bottom: 28/1777
  22253. }
  22254. },
  22255. male: {
  22256. height: math.unit(5 + 11/12, "feet"),
  22257. weight: math.unit(170, "lb"),
  22258. name: "Male",
  22259. image: {
  22260. source: "./media/characters/poojawa-vynar/male.svg",
  22261. extra: 1855/1713,
  22262. bottom: 63/1918
  22263. }
  22264. },
  22265. taur: {
  22266. height: math.unit(5 + 11/12, "feet"),
  22267. weight: math.unit(170, "lb"),
  22268. name: "Taur",
  22269. image: {
  22270. source: "./media/characters/poojawa-vynar/taur.svg",
  22271. extra: 1151/1059,
  22272. bottom: 356/1507
  22273. }
  22274. },
  22275. frontDressed: {
  22276. height: math.unit(5 + 11/12, "feet"),
  22277. weight: math.unit(170, "lb"),
  22278. name: "Front (Dressed)",
  22279. image: {
  22280. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22281. extra: 1735/1585,
  22282. bottom: 96/1831
  22283. }
  22284. },
  22285. backDressed: {
  22286. height: math.unit(5 + 11/12, "feet"),
  22287. weight: math.unit(170, "lb"),
  22288. name: "Back (Dressed)",
  22289. image: {
  22290. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22291. extra: 1749/1607,
  22292. bottom: 28/1777
  22293. }
  22294. },
  22295. maleDressed: {
  22296. height: math.unit(5 + 11/12, "feet"),
  22297. weight: math.unit(170, "lb"),
  22298. name: "Male (Dressed)",
  22299. image: {
  22300. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22301. extra: 1855/1713,
  22302. bottom: 63/1918
  22303. }
  22304. },
  22305. taurDressed: {
  22306. height: math.unit(5 + 11/12, "feet"),
  22307. weight: math.unit(170, "lb"),
  22308. name: "Taur (Dressed)",
  22309. image: {
  22310. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22311. extra: 1151/1059,
  22312. bottom: 356/1507
  22313. }
  22314. },
  22315. maw: {
  22316. height: math.unit(1.46, "feet"),
  22317. name: "Maw",
  22318. image: {
  22319. source: "./media/characters/poojawa-vynar/maw.svg"
  22320. }
  22321. },
  22322. head: {
  22323. height: math.unit(2.34, "feet"),
  22324. name: "Head",
  22325. image: {
  22326. source: "./media/characters/poojawa-vynar/head.svg"
  22327. }
  22328. },
  22329. paw: {
  22330. height: math.unit(1.61, "feet"),
  22331. name: "Paw",
  22332. image: {
  22333. source: "./media/characters/poojawa-vynar/paw.svg"
  22334. }
  22335. },
  22336. pawToering: {
  22337. height: math.unit(1.72, "feet"),
  22338. name: "Paw (Toering)",
  22339. image: {
  22340. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22341. }
  22342. },
  22343. toering: {
  22344. height: math.unit(2.9, "inches"),
  22345. name: "Toering",
  22346. image: {
  22347. source: "./media/characters/poojawa-vynar/toering.svg"
  22348. }
  22349. },
  22350. shaft: {
  22351. height: math.unit(0.625, "feet"),
  22352. name: "Shaft",
  22353. image: {
  22354. source: "./media/characters/poojawa-vynar/shaft.svg"
  22355. }
  22356. },
  22357. spade: {
  22358. height: math.unit(0.42, "feet"),
  22359. name: "Spade",
  22360. image: {
  22361. source: "./media/characters/poojawa-vynar/spade.svg"
  22362. }
  22363. },
  22364. },
  22365. [
  22366. {
  22367. name: "Shortstack",
  22368. height: math.unit(4, "feet")
  22369. },
  22370. {
  22371. name: "Normal",
  22372. height: math.unit(5 + 11 / 12, "feet"),
  22373. default: true
  22374. },
  22375. {
  22376. name: "Tauric",
  22377. height: math.unit(4, "meters")
  22378. },
  22379. ]
  22380. ))
  22381. characterMakers.push(() => makeCharacter(
  22382. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22383. {
  22384. front: {
  22385. height: math.unit(293, "meters"),
  22386. weight: math.unit(70400, "tons"),
  22387. name: "Front",
  22388. image: {
  22389. source: "./media/characters/violette/front.svg",
  22390. extra: 1227 / 1180,
  22391. bottom: 0.005
  22392. }
  22393. },
  22394. back: {
  22395. height: math.unit(293, "meters"),
  22396. weight: math.unit(70400, "tons"),
  22397. name: "Back",
  22398. image: {
  22399. source: "./media/characters/violette/back.svg",
  22400. extra: 1227 / 1180,
  22401. bottom: 0.005
  22402. }
  22403. },
  22404. },
  22405. [
  22406. {
  22407. name: "Macro",
  22408. height: math.unit(293, "meters"),
  22409. default: true
  22410. },
  22411. ]
  22412. ))
  22413. characterMakers.push(() => makeCharacter(
  22414. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22415. {
  22416. front: {
  22417. height: math.unit(1050, "feet"),
  22418. weight: math.unit(200000, "tons"),
  22419. name: "Front",
  22420. image: {
  22421. source: "./media/characters/alessandra/front.svg",
  22422. extra: 960 / 912,
  22423. bottom: 0.06
  22424. }
  22425. },
  22426. },
  22427. [
  22428. {
  22429. name: "Macro",
  22430. height: math.unit(1050, "feet")
  22431. },
  22432. {
  22433. name: "Macro+",
  22434. height: math.unit(900, "meters"),
  22435. default: true
  22436. },
  22437. ]
  22438. ))
  22439. characterMakers.push(() => makeCharacter(
  22440. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22441. {
  22442. front: {
  22443. height: math.unit(5, "feet"),
  22444. weight: math.unit(187, "lb"),
  22445. name: "Front",
  22446. image: {
  22447. source: "./media/characters/person/front.svg",
  22448. extra: 3087 / 2945,
  22449. bottom: 91 / 3181
  22450. }
  22451. },
  22452. },
  22453. [
  22454. {
  22455. name: "Micro",
  22456. height: math.unit(3, "inches")
  22457. },
  22458. {
  22459. name: "Normal",
  22460. height: math.unit(5, "feet"),
  22461. default: true
  22462. },
  22463. {
  22464. name: "Macro",
  22465. height: math.unit(90, "feet")
  22466. },
  22467. {
  22468. name: "Max Size",
  22469. height: math.unit(280, "feet")
  22470. },
  22471. ]
  22472. ))
  22473. characterMakers.push(() => makeCharacter(
  22474. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22475. {
  22476. front: {
  22477. height: math.unit(4.5, "meters"),
  22478. weight: math.unit(3200, "lb"),
  22479. name: "Front",
  22480. image: {
  22481. source: "./media/characters/ty/front.svg",
  22482. extra: 1038 / 960,
  22483. bottom: 31.156 / 1068
  22484. }
  22485. },
  22486. back: {
  22487. height: math.unit(4.5, "meters"),
  22488. weight: math.unit(3200, "lb"),
  22489. name: "Back",
  22490. image: {
  22491. source: "./media/characters/ty/back.svg",
  22492. extra: 1044 / 966,
  22493. bottom: 7.48 / 1049
  22494. }
  22495. },
  22496. },
  22497. [
  22498. {
  22499. name: "Normal",
  22500. height: math.unit(4.5, "meters"),
  22501. default: true
  22502. },
  22503. ]
  22504. ))
  22505. characterMakers.push(() => makeCharacter(
  22506. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22507. {
  22508. front: {
  22509. height: math.unit(5 + 4 / 12, "feet"),
  22510. weight: math.unit(115, "lb"),
  22511. name: "Front",
  22512. image: {
  22513. source: "./media/characters/rocky/front.svg",
  22514. extra: 1012 / 975,
  22515. bottom: 54 / 1066
  22516. }
  22517. },
  22518. },
  22519. [
  22520. {
  22521. name: "Normal",
  22522. height: math.unit(5 + 4 / 12, "feet"),
  22523. default: true
  22524. },
  22525. ]
  22526. ))
  22527. characterMakers.push(() => makeCharacter(
  22528. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22529. {
  22530. upright: {
  22531. height: math.unit(6, "meters"),
  22532. weight: math.unit(4000, "kg"),
  22533. name: "Upright",
  22534. image: {
  22535. source: "./media/characters/ruin/upright.svg",
  22536. extra: 668 / 661,
  22537. bottom: 42 / 799.8396
  22538. }
  22539. },
  22540. },
  22541. [
  22542. {
  22543. name: "Normal",
  22544. height: math.unit(6, "meters"),
  22545. default: true
  22546. },
  22547. ]
  22548. ))
  22549. characterMakers.push(() => makeCharacter(
  22550. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22551. {
  22552. front: {
  22553. height: math.unit(5, "feet"),
  22554. weight: math.unit(106, "lb"),
  22555. name: "Front",
  22556. image: {
  22557. source: "./media/characters/robin/front.svg",
  22558. extra: 862 / 799,
  22559. bottom: 42.4 / 914.8856
  22560. }
  22561. },
  22562. },
  22563. [
  22564. {
  22565. name: "Normal",
  22566. height: math.unit(5, "feet"),
  22567. default: true
  22568. },
  22569. ]
  22570. ))
  22571. characterMakers.push(() => makeCharacter(
  22572. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22573. {
  22574. side: {
  22575. height: math.unit(3, "feet"),
  22576. weight: math.unit(225, "lb"),
  22577. name: "Side",
  22578. image: {
  22579. source: "./media/characters/saian/side.svg",
  22580. extra: 566 / 356,
  22581. bottom: 79.7 / 643
  22582. }
  22583. },
  22584. maw: {
  22585. height: math.unit(2.85, "feet"),
  22586. name: "Maw",
  22587. image: {
  22588. source: "./media/characters/saian/maw.svg"
  22589. }
  22590. },
  22591. },
  22592. [
  22593. {
  22594. name: "Normal",
  22595. height: math.unit(3, "feet"),
  22596. default: true
  22597. },
  22598. ]
  22599. ))
  22600. characterMakers.push(() => makeCharacter(
  22601. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22602. {
  22603. side: {
  22604. height: math.unit(8, "feet"),
  22605. weight: math.unit(300, "lb"),
  22606. name: "Side",
  22607. image: {
  22608. source: "./media/characters/equus-silvermane/side.svg",
  22609. extra: 2176 / 2050,
  22610. bottom: 65.7 / 2245
  22611. }
  22612. },
  22613. front: {
  22614. height: math.unit(8, "feet"),
  22615. weight: math.unit(300, "lb"),
  22616. name: "Front",
  22617. image: {
  22618. source: "./media/characters/equus-silvermane/front.svg",
  22619. extra: 4633 / 4400,
  22620. bottom: 71.3 / 4706.915
  22621. }
  22622. },
  22623. sideStepping: {
  22624. height: math.unit(8, "feet"),
  22625. weight: math.unit(300, "lb"),
  22626. name: "Side (Stepping)",
  22627. image: {
  22628. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22629. extra: 1968 / 1860,
  22630. bottom: 16.4 / 1989
  22631. }
  22632. },
  22633. },
  22634. [
  22635. {
  22636. name: "Normal",
  22637. height: math.unit(8, "feet")
  22638. },
  22639. {
  22640. name: "Minimacro",
  22641. height: math.unit(75, "feet"),
  22642. default: true
  22643. },
  22644. {
  22645. name: "Macro",
  22646. height: math.unit(150, "feet")
  22647. },
  22648. {
  22649. name: "Macro+",
  22650. height: math.unit(1000, "feet")
  22651. },
  22652. {
  22653. name: "Megamacro",
  22654. height: math.unit(1, "mile")
  22655. },
  22656. ]
  22657. ))
  22658. characterMakers.push(() => makeCharacter(
  22659. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22660. {
  22661. side: {
  22662. height: math.unit(20, "feet"),
  22663. weight: math.unit(30000, "kg"),
  22664. name: "Side",
  22665. image: {
  22666. source: "./media/characters/windar/side.svg",
  22667. extra: 1491 / 1248,
  22668. bottom: 82.56 / 1568
  22669. }
  22670. },
  22671. },
  22672. [
  22673. {
  22674. name: "Normal",
  22675. height: math.unit(20, "feet"),
  22676. default: true
  22677. },
  22678. ]
  22679. ))
  22680. characterMakers.push(() => makeCharacter(
  22681. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22682. {
  22683. side: {
  22684. height: math.unit(15.66, "feet"),
  22685. weight: math.unit(150, "lb"),
  22686. name: "Side",
  22687. image: {
  22688. source: "./media/characters/melody/side.svg",
  22689. extra: 1097 / 944,
  22690. bottom: 11.8 / 1109
  22691. }
  22692. },
  22693. sideOutfit: {
  22694. height: math.unit(15.66, "feet"),
  22695. weight: math.unit(150, "lb"),
  22696. name: "Side (Outfit)",
  22697. image: {
  22698. source: "./media/characters/melody/side-outfit.svg",
  22699. extra: 1097 / 944,
  22700. bottom: 11.8 / 1109
  22701. }
  22702. },
  22703. },
  22704. [
  22705. {
  22706. name: "Normal",
  22707. height: math.unit(15.66, "feet"),
  22708. default: true
  22709. },
  22710. ]
  22711. ))
  22712. characterMakers.push(() => makeCharacter(
  22713. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22714. {
  22715. front: {
  22716. height: math.unit(8, "feet"),
  22717. weight: math.unit(325, "lb"),
  22718. name: "Front",
  22719. image: {
  22720. source: "./media/characters/windera/front.svg",
  22721. extra: 3180 / 2845,
  22722. bottom: 178 / 3365
  22723. }
  22724. },
  22725. },
  22726. [
  22727. {
  22728. name: "Normal",
  22729. height: math.unit(8, "feet"),
  22730. default: true
  22731. },
  22732. ]
  22733. ))
  22734. characterMakers.push(() => makeCharacter(
  22735. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22736. {
  22737. front: {
  22738. height: math.unit(28.75, "feet"),
  22739. weight: math.unit(2000, "kg"),
  22740. name: "Front",
  22741. image: {
  22742. source: "./media/characters/sonear/front.svg",
  22743. extra: 1041.1 / 964.9,
  22744. bottom: 53.7 / 1096.6
  22745. }
  22746. },
  22747. },
  22748. [
  22749. {
  22750. name: "Normal",
  22751. height: math.unit(28.75, "feet"),
  22752. default: true
  22753. },
  22754. ]
  22755. ))
  22756. characterMakers.push(() => makeCharacter(
  22757. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22758. {
  22759. side: {
  22760. height: math.unit(25.5, "feet"),
  22761. weight: math.unit(23000, "kg"),
  22762. name: "Side",
  22763. image: {
  22764. source: "./media/characters/kanara/side.svg"
  22765. }
  22766. },
  22767. },
  22768. [
  22769. {
  22770. name: "Normal",
  22771. height: math.unit(25.5, "feet"),
  22772. default: true
  22773. },
  22774. ]
  22775. ))
  22776. characterMakers.push(() => makeCharacter(
  22777. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22778. {
  22779. side: {
  22780. height: math.unit(10, "feet"),
  22781. weight: math.unit(1000, "kg"),
  22782. name: "Side",
  22783. image: {
  22784. source: "./media/characters/ereus/side.svg",
  22785. extra: 1157 / 959,
  22786. bottom: 153 / 1312.5
  22787. }
  22788. },
  22789. },
  22790. [
  22791. {
  22792. name: "Normal",
  22793. height: math.unit(10, "feet"),
  22794. default: true
  22795. },
  22796. ]
  22797. ))
  22798. characterMakers.push(() => makeCharacter(
  22799. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22800. {
  22801. side: {
  22802. height: math.unit(4.5, "feet"),
  22803. weight: math.unit(500, "lb"),
  22804. name: "Side",
  22805. image: {
  22806. source: "./media/characters/e-ter/side.svg",
  22807. extra: 1550 / 1248,
  22808. bottom: 146 / 1694
  22809. }
  22810. },
  22811. },
  22812. [
  22813. {
  22814. name: "Normal",
  22815. height: math.unit(4.5, "feet"),
  22816. default: true
  22817. },
  22818. ]
  22819. ))
  22820. characterMakers.push(() => makeCharacter(
  22821. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22822. {
  22823. side: {
  22824. height: math.unit(9.7, "feet"),
  22825. weight: math.unit(4000, "kg"),
  22826. name: "Side",
  22827. image: {
  22828. source: "./media/characters/yamie/side.svg"
  22829. }
  22830. },
  22831. },
  22832. [
  22833. {
  22834. name: "Normal",
  22835. height: math.unit(9.7, "feet"),
  22836. default: true
  22837. },
  22838. ]
  22839. ))
  22840. characterMakers.push(() => makeCharacter(
  22841. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22842. {
  22843. front: {
  22844. height: math.unit(50, "feet"),
  22845. weight: math.unit(50000, "kg"),
  22846. name: "Front",
  22847. image: {
  22848. source: "./media/characters/anders/front.svg",
  22849. extra: 570 / 539,
  22850. bottom: 14.7 / 586.7
  22851. }
  22852. },
  22853. },
  22854. [
  22855. {
  22856. name: "Large",
  22857. height: math.unit(50, "feet")
  22858. },
  22859. {
  22860. name: "Macro",
  22861. height: math.unit(2000, "feet"),
  22862. default: true
  22863. },
  22864. {
  22865. name: "Megamacro",
  22866. height: math.unit(12, "miles")
  22867. },
  22868. ]
  22869. ))
  22870. characterMakers.push(() => makeCharacter(
  22871. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22872. {
  22873. front: {
  22874. height: math.unit(7 + 2 / 12, "feet"),
  22875. weight: math.unit(300, "lb"),
  22876. name: "Front",
  22877. image: {
  22878. source: "./media/characters/reban/front.svg",
  22879. extra: 1287/1212,
  22880. bottom: 148/1435
  22881. }
  22882. },
  22883. head: {
  22884. height: math.unit(1.95, "feet"),
  22885. name: "Head",
  22886. image: {
  22887. source: "./media/characters/reban/head.svg"
  22888. }
  22889. },
  22890. maw: {
  22891. height: math.unit(0.95, "feet"),
  22892. name: "Maw",
  22893. image: {
  22894. source: "./media/characters/reban/maw.svg"
  22895. }
  22896. },
  22897. foot: {
  22898. height: math.unit(1.65, "feet"),
  22899. name: "Foot",
  22900. image: {
  22901. source: "./media/characters/reban/foot.svg"
  22902. }
  22903. },
  22904. dick: {
  22905. height: math.unit(7 / 5, "feet"),
  22906. name: "Dick",
  22907. image: {
  22908. source: "./media/characters/reban/dick.svg"
  22909. }
  22910. },
  22911. },
  22912. [
  22913. {
  22914. name: "Natural Height",
  22915. height: math.unit(7 + 2 / 12, "feet")
  22916. },
  22917. {
  22918. name: "Macro",
  22919. height: math.unit(500, "feet"),
  22920. default: true
  22921. },
  22922. {
  22923. name: "Canon Height",
  22924. height: math.unit(50, "AU")
  22925. },
  22926. ]
  22927. ))
  22928. characterMakers.push(() => makeCharacter(
  22929. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22930. {
  22931. front: {
  22932. height: math.unit(6, "feet"),
  22933. weight: math.unit(150, "lb"),
  22934. name: "Front",
  22935. image: {
  22936. source: "./media/characters/terrance-keayes/front.svg",
  22937. extra: 1.005,
  22938. bottom: 151 / 1615
  22939. }
  22940. },
  22941. side: {
  22942. height: math.unit(6, "feet"),
  22943. weight: math.unit(150, "lb"),
  22944. name: "Side",
  22945. image: {
  22946. source: "./media/characters/terrance-keayes/side.svg",
  22947. extra: 1.005,
  22948. bottom: 129.4 / 1544
  22949. }
  22950. },
  22951. back: {
  22952. height: math.unit(6, "feet"),
  22953. weight: math.unit(150, "lb"),
  22954. name: "Back",
  22955. image: {
  22956. source: "./media/characters/terrance-keayes/back.svg",
  22957. extra: 1.005,
  22958. bottom: 58.4 / 1557.3
  22959. }
  22960. },
  22961. dick: {
  22962. height: math.unit(6 * 0.208, "feet"),
  22963. name: "Dick",
  22964. image: {
  22965. source: "./media/characters/terrance-keayes/dick.svg"
  22966. }
  22967. },
  22968. },
  22969. [
  22970. {
  22971. name: "Canon Height",
  22972. height: math.unit(35, "miles"),
  22973. default: true
  22974. },
  22975. ]
  22976. ))
  22977. characterMakers.push(() => makeCharacter(
  22978. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22979. {
  22980. front: {
  22981. height: math.unit(6, "feet"),
  22982. weight: math.unit(150, "lb"),
  22983. name: "Front",
  22984. image: {
  22985. source: "./media/characters/ofelia/front.svg",
  22986. extra: 1130/1117,
  22987. bottom: 91/1221
  22988. }
  22989. },
  22990. back: {
  22991. height: math.unit(6, "feet"),
  22992. weight: math.unit(150, "lb"),
  22993. name: "Back",
  22994. image: {
  22995. source: "./media/characters/ofelia/back.svg",
  22996. extra: 1172/1159,
  22997. bottom: 28/1200
  22998. }
  22999. },
  23000. maw: {
  23001. height: math.unit(1, "feet"),
  23002. name: "Maw",
  23003. image: {
  23004. source: "./media/characters/ofelia/maw.svg"
  23005. }
  23006. },
  23007. foot: {
  23008. height: math.unit(1.949, "feet"),
  23009. name: "Foot",
  23010. image: {
  23011. source: "./media/characters/ofelia/foot.svg"
  23012. }
  23013. },
  23014. },
  23015. [
  23016. {
  23017. name: "Canon Height",
  23018. height: math.unit(2000, "miles"),
  23019. default: true
  23020. },
  23021. ]
  23022. ))
  23023. characterMakers.push(() => makeCharacter(
  23024. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23025. {
  23026. front: {
  23027. height: math.unit(6, "feet"),
  23028. weight: math.unit(150, "lb"),
  23029. name: "Front",
  23030. image: {
  23031. source: "./media/characters/samuel/front.svg",
  23032. extra: 265 / 258,
  23033. bottom: 2 / 266.1566
  23034. }
  23035. },
  23036. },
  23037. [
  23038. {
  23039. name: "Macro",
  23040. height: math.unit(100, "feet"),
  23041. default: true
  23042. },
  23043. {
  23044. name: "Full Size",
  23045. height: math.unit(1000, "miles")
  23046. },
  23047. ]
  23048. ))
  23049. characterMakers.push(() => makeCharacter(
  23050. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23051. {
  23052. front: {
  23053. height: math.unit(6, "feet"),
  23054. weight: math.unit(300, "lb"),
  23055. name: "Front",
  23056. image: {
  23057. source: "./media/characters/beishir-kiel/front.svg",
  23058. extra: 569 / 547,
  23059. bottom: 41.9 / 609
  23060. }
  23061. },
  23062. maw: {
  23063. height: math.unit(6 * 0.202, "feet"),
  23064. name: "Maw",
  23065. image: {
  23066. source: "./media/characters/beishir-kiel/maw.svg"
  23067. }
  23068. },
  23069. },
  23070. [
  23071. {
  23072. name: "Macro",
  23073. height: math.unit(300, "feet"),
  23074. default: true
  23075. },
  23076. ]
  23077. ))
  23078. characterMakers.push(() => makeCharacter(
  23079. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23080. {
  23081. front: {
  23082. height: math.unit(5 + 7/12, "feet"),
  23083. weight: math.unit(120, "lb"),
  23084. name: "Front",
  23085. image: {
  23086. source: "./media/characters/logan-grey/front.svg",
  23087. extra: 1836/1738,
  23088. bottom: 108/1944
  23089. }
  23090. },
  23091. back: {
  23092. height: math.unit(5 + 7/12, "feet"),
  23093. weight: math.unit(120, "lb"),
  23094. name: "Back",
  23095. image: {
  23096. source: "./media/characters/logan-grey/back.svg",
  23097. extra: 1880/1794,
  23098. bottom: 24/1904
  23099. }
  23100. },
  23101. frontSfw: {
  23102. height: math.unit(5 + 7/12, "feet"),
  23103. weight: math.unit(120, "lb"),
  23104. name: "Front (SFW)",
  23105. image: {
  23106. source: "./media/characters/logan-grey/front-sfw.svg",
  23107. extra: 1836/1738,
  23108. bottom: 108/1944
  23109. }
  23110. },
  23111. backSfw: {
  23112. height: math.unit(5 + 7/12, "feet"),
  23113. weight: math.unit(120, "lb"),
  23114. name: "Back (SFW)",
  23115. image: {
  23116. source: "./media/characters/logan-grey/back-sfw.svg",
  23117. extra: 1880/1794,
  23118. bottom: 24/1904
  23119. }
  23120. },
  23121. hands: {
  23122. height: math.unit(0.84, "feet"),
  23123. name: "Hands",
  23124. image: {
  23125. source: "./media/characters/logan-grey/hands.svg"
  23126. }
  23127. },
  23128. paws: {
  23129. height: math.unit(0.72, "feet"),
  23130. name: "Paws",
  23131. image: {
  23132. source: "./media/characters/logan-grey/paws.svg"
  23133. }
  23134. },
  23135. cock: {
  23136. height: math.unit(1.45, "feet"),
  23137. name: "Cock",
  23138. image: {
  23139. source: "./media/characters/logan-grey/cock.svg"
  23140. }
  23141. },
  23142. cockAlt: {
  23143. height: math.unit(1.437, "feet"),
  23144. name: "Cock (alt)",
  23145. image: {
  23146. source: "./media/characters/logan-grey/cock-alt.svg"
  23147. }
  23148. },
  23149. },
  23150. [
  23151. {
  23152. name: "Normal",
  23153. height: math.unit(5 + 8 / 12, "feet")
  23154. },
  23155. {
  23156. name: "The 500 Foot Femboy",
  23157. height: math.unit(500, "feet"),
  23158. default: true
  23159. },
  23160. {
  23161. name: "Megmacro",
  23162. height: math.unit(20, "miles")
  23163. },
  23164. ]
  23165. ))
  23166. characterMakers.push(() => makeCharacter(
  23167. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23168. {
  23169. front: {
  23170. height: math.unit(8 + 2 / 12, "feet"),
  23171. weight: math.unit(275, "lb"),
  23172. name: "Front",
  23173. image: {
  23174. source: "./media/characters/draganta/front.svg",
  23175. extra: 1177 / 1135,
  23176. bottom: 33.46 / 1212.1
  23177. }
  23178. },
  23179. },
  23180. [
  23181. {
  23182. name: "Normal",
  23183. height: math.unit(8 + 6 / 12, "feet"),
  23184. default: true
  23185. },
  23186. {
  23187. name: "Macro",
  23188. height: math.unit(150, "feet")
  23189. },
  23190. {
  23191. name: "Megamacro",
  23192. height: math.unit(1000, "miles")
  23193. },
  23194. ]
  23195. ))
  23196. characterMakers.push(() => makeCharacter(
  23197. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23198. {
  23199. front: {
  23200. height: math.unit(1.72, "m"),
  23201. weight: math.unit(80, "lb"),
  23202. name: "Front",
  23203. image: {
  23204. source: "./media/characters/voski/front.svg",
  23205. extra: 2076.22 / 2022.4,
  23206. bottom: 102.7 / 2177.3866
  23207. }
  23208. },
  23209. frontFlaccid: {
  23210. height: math.unit(1.72, "m"),
  23211. weight: math.unit(80, "lb"),
  23212. name: "Front (Flaccid)",
  23213. image: {
  23214. source: "./media/characters/voski/front-flaccid.svg",
  23215. extra: 2076.22 / 2022.4,
  23216. bottom: 102.7 / 2177.3866
  23217. }
  23218. },
  23219. frontErect: {
  23220. height: math.unit(1.72, "m"),
  23221. weight: math.unit(80, "lb"),
  23222. name: "Front (Erect)",
  23223. image: {
  23224. source: "./media/characters/voski/front-erect.svg",
  23225. extra: 2076.22 / 2022.4,
  23226. bottom: 102.7 / 2177.3866
  23227. }
  23228. },
  23229. back: {
  23230. height: math.unit(1.72, "m"),
  23231. weight: math.unit(80, "lb"),
  23232. name: "Back",
  23233. image: {
  23234. source: "./media/characters/voski/back.svg",
  23235. extra: 2104 / 2051,
  23236. bottom: 10.45 / 2113.63
  23237. }
  23238. },
  23239. },
  23240. [
  23241. {
  23242. name: "Normal",
  23243. height: math.unit(1.72, "m")
  23244. },
  23245. {
  23246. name: "Macro",
  23247. height: math.unit(55, "m"),
  23248. default: true
  23249. },
  23250. {
  23251. name: "Macro+",
  23252. height: math.unit(300, "m")
  23253. },
  23254. {
  23255. name: "Macro++",
  23256. height: math.unit(700, "m")
  23257. },
  23258. {
  23259. name: "Macro+++",
  23260. height: math.unit(4500, "m")
  23261. },
  23262. {
  23263. name: "Macro++++",
  23264. height: math.unit(45, "km")
  23265. },
  23266. {
  23267. name: "Macro+++++",
  23268. height: math.unit(1220, "km")
  23269. },
  23270. ]
  23271. ))
  23272. characterMakers.push(() => makeCharacter(
  23273. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23274. {
  23275. front: {
  23276. height: math.unit(2.3, "m"),
  23277. weight: math.unit(304, "kg"),
  23278. name: "Front",
  23279. image: {
  23280. source: "./media/characters/icowom-lee/front.svg",
  23281. extra: 985 / 955,
  23282. bottom: 25.4 / 1012
  23283. }
  23284. },
  23285. fronttentacles: {
  23286. height: math.unit(2.3, "m"),
  23287. weight: math.unit(304, "kg"),
  23288. name: "Front-tentacles",
  23289. image: {
  23290. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23291. extra: 985 / 955,
  23292. bottom: 25.4 / 1012
  23293. }
  23294. },
  23295. back: {
  23296. height: math.unit(2.3, "m"),
  23297. weight: math.unit(304, "kg"),
  23298. name: "Back",
  23299. image: {
  23300. source: "./media/characters/icowom-lee/back.svg",
  23301. extra: 975 / 954,
  23302. bottom: 9.5 / 985
  23303. }
  23304. },
  23305. backtentacles: {
  23306. height: math.unit(2.3, "m"),
  23307. weight: math.unit(304, "kg"),
  23308. name: "Back-tentacles",
  23309. image: {
  23310. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23311. extra: 975 / 954,
  23312. bottom: 9.5 / 985
  23313. }
  23314. },
  23315. frontDressed: {
  23316. height: math.unit(2.3, "m"),
  23317. weight: math.unit(304, "kg"),
  23318. name: "Front (Dressed)",
  23319. image: {
  23320. source: "./media/characters/icowom-lee/front-dressed.svg",
  23321. extra: 3076 / 2933,
  23322. bottom: 51.4 / 3125.1889
  23323. }
  23324. },
  23325. rump: {
  23326. height: math.unit(0.776, "meters"),
  23327. name: "Rump",
  23328. image: {
  23329. source: "./media/characters/icowom-lee/rump.svg"
  23330. }
  23331. },
  23332. genitals: {
  23333. height: math.unit(0.78, "meters"),
  23334. name: "Genitals",
  23335. image: {
  23336. source: "./media/characters/icowom-lee/genitals.svg"
  23337. }
  23338. },
  23339. },
  23340. [
  23341. {
  23342. name: "Normal",
  23343. height: math.unit(2.3, "meters"),
  23344. default: true
  23345. },
  23346. {
  23347. name: "Macro",
  23348. height: math.unit(94, "meters"),
  23349. default: true
  23350. },
  23351. ]
  23352. ))
  23353. characterMakers.push(() => makeCharacter(
  23354. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23355. {
  23356. front: {
  23357. height: math.unit(22, "meters"),
  23358. weight: math.unit(21000, "kg"),
  23359. name: "Front",
  23360. image: {
  23361. source: "./media/characters/shock-diamond/front.svg",
  23362. extra: 2204 / 2053,
  23363. bottom: 65 / 2239.47
  23364. }
  23365. },
  23366. frontNude: {
  23367. height: math.unit(22, "meters"),
  23368. weight: math.unit(21000, "kg"),
  23369. name: "Front (Nude)",
  23370. image: {
  23371. source: "./media/characters/shock-diamond/front-nude.svg",
  23372. extra: 2514 / 2285,
  23373. bottom: 13 / 2527.56
  23374. }
  23375. },
  23376. },
  23377. [
  23378. {
  23379. name: "Normal",
  23380. height: math.unit(3, "meters")
  23381. },
  23382. {
  23383. name: "Macro",
  23384. height: math.unit(22, "meters"),
  23385. default: true
  23386. },
  23387. ]
  23388. ))
  23389. characterMakers.push(() => makeCharacter(
  23390. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23391. {
  23392. front: {
  23393. height: math.unit(5 + 4 / 12, "feet"),
  23394. weight: math.unit(120, "lb"),
  23395. name: "Front",
  23396. image: {
  23397. source: "./media/characters/rory/front.svg",
  23398. extra: 1318/1241,
  23399. bottom: 42/1360
  23400. }
  23401. },
  23402. back: {
  23403. height: math.unit(5 + 4 / 12, "feet"),
  23404. weight: math.unit(120, "lb"),
  23405. name: "Back",
  23406. image: {
  23407. source: "./media/characters/rory/back.svg",
  23408. extra: 1318/1241,
  23409. bottom: 42/1360
  23410. }
  23411. },
  23412. butt: {
  23413. height: math.unit(1.74, "feet"),
  23414. name: "Butt",
  23415. image: {
  23416. source: "./media/characters/rory/butt.svg"
  23417. }
  23418. },
  23419. dick: {
  23420. height: math.unit(1.02, "feet"),
  23421. name: "Dick",
  23422. image: {
  23423. source: "./media/characters/rory/dick.svg"
  23424. }
  23425. },
  23426. paws: {
  23427. height: math.unit(1, "feet"),
  23428. name: "Paws",
  23429. image: {
  23430. source: "./media/characters/rory/paws.svg"
  23431. }
  23432. },
  23433. frontAlt: {
  23434. height: math.unit(5 + 4 / 12, "feet"),
  23435. weight: math.unit(120, "lb"),
  23436. name: "Front (Alt)",
  23437. image: {
  23438. source: "./media/characters/rory/front-alt.svg",
  23439. extra: 589 / 556,
  23440. bottom: 45.7 / 635.76
  23441. }
  23442. },
  23443. frontAltNude: {
  23444. height: math.unit(5 + 4 / 12, "feet"),
  23445. weight: math.unit(120, "lb"),
  23446. name: "Front (Alt, Nude)",
  23447. image: {
  23448. source: "./media/characters/rory/front-alt-nude.svg",
  23449. extra: 589 / 556,
  23450. bottom: 45.7 / 635.76
  23451. }
  23452. },
  23453. side: {
  23454. height: math.unit(5 + 4 / 12, "feet"),
  23455. weight: math.unit(120, "lb"),
  23456. name: "Side",
  23457. image: {
  23458. source: "./media/characters/rory/side.svg",
  23459. extra: 597 / 564,
  23460. bottom: 55 / 653
  23461. }
  23462. },
  23463. backAlt: {
  23464. height: math.unit(5 + 4 / 12, "feet"),
  23465. weight: math.unit(120, "lb"),
  23466. name: "Back (Alt)",
  23467. image: {
  23468. source: "./media/characters/rory/back-alt.svg",
  23469. extra: 620 / 585,
  23470. bottom: 8.86 / 630.43
  23471. }
  23472. },
  23473. dickAlt: {
  23474. height: math.unit(0.86, "feet"),
  23475. name: "Dick (Alt)",
  23476. image: {
  23477. source: "./media/characters/rory/dick-alt.svg"
  23478. }
  23479. },
  23480. },
  23481. [
  23482. {
  23483. name: "Normal",
  23484. height: math.unit(5 + 4 / 12, "feet"),
  23485. default: true
  23486. },
  23487. {
  23488. name: "Macro",
  23489. height: math.unit(100, "feet")
  23490. },
  23491. {
  23492. name: "Macro+",
  23493. height: math.unit(140, "feet")
  23494. },
  23495. {
  23496. name: "Macro++",
  23497. height: math.unit(300, "feet")
  23498. },
  23499. ]
  23500. ))
  23501. characterMakers.push(() => makeCharacter(
  23502. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23503. {
  23504. front: {
  23505. height: math.unit(5 + 9 / 12, "feet"),
  23506. weight: math.unit(190, "lb"),
  23507. name: "Front",
  23508. image: {
  23509. source: "./media/characters/sprisk/front.svg",
  23510. extra: 1225 / 1180,
  23511. bottom: 42.7 / 1266.4
  23512. }
  23513. },
  23514. frontNsfw: {
  23515. height: math.unit(5 + 9 / 12, "feet"),
  23516. weight: math.unit(190, "lb"),
  23517. name: "Front (NSFW)",
  23518. image: {
  23519. source: "./media/characters/sprisk/front-nsfw.svg",
  23520. extra: 1225 / 1180,
  23521. bottom: 42.7 / 1266.4
  23522. }
  23523. },
  23524. back: {
  23525. height: math.unit(5 + 9 / 12, "feet"),
  23526. weight: math.unit(190, "lb"),
  23527. name: "Back",
  23528. image: {
  23529. source: "./media/characters/sprisk/back.svg",
  23530. extra: 1247 / 1200,
  23531. bottom: 5.6 / 1253.04
  23532. }
  23533. },
  23534. },
  23535. [
  23536. {
  23537. name: "Tiny",
  23538. height: math.unit(2, "inches")
  23539. },
  23540. {
  23541. name: "Normal",
  23542. height: math.unit(5 + 9 / 12, "feet"),
  23543. default: true
  23544. },
  23545. {
  23546. name: "Mini Macro",
  23547. height: math.unit(18, "feet")
  23548. },
  23549. {
  23550. name: "Macro",
  23551. height: math.unit(100, "feet")
  23552. },
  23553. {
  23554. name: "MACRO",
  23555. height: math.unit(50, "miles")
  23556. },
  23557. {
  23558. name: "M A C R O",
  23559. height: math.unit(300, "miles")
  23560. },
  23561. ]
  23562. ))
  23563. characterMakers.push(() => makeCharacter(
  23564. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23565. {
  23566. side: {
  23567. height: math.unit(15.6, "meters"),
  23568. weight: math.unit(700000, "kg"),
  23569. name: "Side",
  23570. image: {
  23571. source: "./media/characters/bunsen/side.svg",
  23572. extra: 1644 / 358
  23573. }
  23574. },
  23575. foot: {
  23576. height: math.unit(1.611 * 1644 / 358, "meter"),
  23577. name: "Foot",
  23578. image: {
  23579. source: "./media/characters/bunsen/foot.svg"
  23580. }
  23581. },
  23582. },
  23583. [
  23584. {
  23585. name: "Small",
  23586. height: math.unit(10, "feet")
  23587. },
  23588. {
  23589. name: "Normal",
  23590. height: math.unit(15.6, "meters"),
  23591. default: true
  23592. },
  23593. ]
  23594. ))
  23595. characterMakers.push(() => makeCharacter(
  23596. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23597. {
  23598. front: {
  23599. height: math.unit(4 + 11 / 12, "feet"),
  23600. weight: math.unit(140, "lb"),
  23601. name: "Front",
  23602. image: {
  23603. source: "./media/characters/sesh/front.svg",
  23604. extra: 3420 / 3231,
  23605. bottom: 72 / 3949.5
  23606. }
  23607. },
  23608. },
  23609. [
  23610. {
  23611. name: "Normal",
  23612. height: math.unit(4 + 11 / 12, "feet")
  23613. },
  23614. {
  23615. name: "Grown",
  23616. height: math.unit(15, "feet"),
  23617. default: true
  23618. },
  23619. {
  23620. name: "Macro",
  23621. height: math.unit(1500, "feet")
  23622. },
  23623. {
  23624. name: "Megamacro",
  23625. height: math.unit(30, "miles")
  23626. },
  23627. {
  23628. name: "Continental",
  23629. height: math.unit(3000, "miles")
  23630. },
  23631. {
  23632. name: "Gravity Mass",
  23633. height: math.unit(300000, "miles")
  23634. },
  23635. {
  23636. name: "Planet Buster",
  23637. height: math.unit(30000000, "miles")
  23638. },
  23639. {
  23640. name: "Big",
  23641. height: math.unit(3000000000, "miles")
  23642. },
  23643. ]
  23644. ))
  23645. characterMakers.push(() => makeCharacter(
  23646. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23647. {
  23648. front: {
  23649. height: math.unit(9, "feet"),
  23650. weight: math.unit(350, "lb"),
  23651. name: "Front",
  23652. image: {
  23653. source: "./media/characters/pepper/front.svg",
  23654. extra: 1448 / 1312,
  23655. bottom: 9.4 / 1457.88
  23656. }
  23657. },
  23658. back: {
  23659. height: math.unit(9, "feet"),
  23660. weight: math.unit(350, "lb"),
  23661. name: "Back",
  23662. image: {
  23663. source: "./media/characters/pepper/back.svg",
  23664. extra: 1423 / 1300,
  23665. bottom: 4.6 / 1429
  23666. }
  23667. },
  23668. maw: {
  23669. height: math.unit(0.932, "feet"),
  23670. name: "Maw",
  23671. image: {
  23672. source: "./media/characters/pepper/maw.svg"
  23673. }
  23674. },
  23675. },
  23676. [
  23677. {
  23678. name: "Normal",
  23679. height: math.unit(9, "feet"),
  23680. default: true
  23681. },
  23682. ]
  23683. ))
  23684. characterMakers.push(() => makeCharacter(
  23685. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23686. {
  23687. front: {
  23688. height: math.unit(6, "feet"),
  23689. weight: math.unit(150, "lb"),
  23690. name: "Front",
  23691. image: {
  23692. source: "./media/characters/maelstrom/front.svg",
  23693. extra: 2100 / 1883,
  23694. bottom: 94 / 2196.7
  23695. }
  23696. },
  23697. },
  23698. [
  23699. {
  23700. name: "Less Kaiju",
  23701. height: math.unit(200, "feet")
  23702. },
  23703. {
  23704. name: "Kaiju",
  23705. height: math.unit(400, "feet"),
  23706. default: true
  23707. },
  23708. {
  23709. name: "Kaiju-er",
  23710. height: math.unit(600, "feet")
  23711. },
  23712. ]
  23713. ))
  23714. characterMakers.push(() => makeCharacter(
  23715. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23716. {
  23717. front: {
  23718. height: math.unit(6 + 5 / 12, "feet"),
  23719. weight: math.unit(180, "lb"),
  23720. name: "Front",
  23721. image: {
  23722. source: "./media/characters/lexir/front.svg",
  23723. extra: 180 / 172,
  23724. bottom: 12 / 192
  23725. }
  23726. },
  23727. back: {
  23728. height: math.unit(6 + 5 / 12, "feet"),
  23729. weight: math.unit(180, "lb"),
  23730. name: "Back",
  23731. image: {
  23732. source: "./media/characters/lexir/back.svg",
  23733. extra: 1273/1201,
  23734. bottom: 39/1312
  23735. }
  23736. },
  23737. },
  23738. [
  23739. {
  23740. name: "Very Smal",
  23741. height: math.unit(1, "nm")
  23742. },
  23743. {
  23744. name: "Normal",
  23745. height: math.unit(6 + 5 / 12, "feet"),
  23746. default: true
  23747. },
  23748. {
  23749. name: "Macro",
  23750. height: math.unit(1, "mile")
  23751. },
  23752. {
  23753. name: "Megamacro",
  23754. height: math.unit(50, "miles")
  23755. },
  23756. ]
  23757. ))
  23758. characterMakers.push(() => makeCharacter(
  23759. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23760. {
  23761. front: {
  23762. height: math.unit(1.5, "meters"),
  23763. weight: math.unit(100, "lb"),
  23764. name: "Front",
  23765. image: {
  23766. source: "./media/characters/maksio/front.svg",
  23767. extra: 1549 / 1531,
  23768. bottom: 123.7 / 1674.5429
  23769. }
  23770. },
  23771. back: {
  23772. height: math.unit(1.5, "meters"),
  23773. weight: math.unit(100, "lb"),
  23774. name: "Back",
  23775. image: {
  23776. source: "./media/characters/maksio/back.svg",
  23777. extra: 1541 / 1509,
  23778. bottom: 97 / 1639
  23779. }
  23780. },
  23781. hand: {
  23782. height: math.unit(0.621, "feet"),
  23783. name: "Hand",
  23784. image: {
  23785. source: "./media/characters/maksio/hand.svg"
  23786. }
  23787. },
  23788. foot: {
  23789. height: math.unit(1.611, "feet"),
  23790. name: "Foot",
  23791. image: {
  23792. source: "./media/characters/maksio/foot.svg"
  23793. }
  23794. },
  23795. },
  23796. [
  23797. {
  23798. name: "Shrunken",
  23799. height: math.unit(10, "cm")
  23800. },
  23801. {
  23802. name: "Normal",
  23803. height: math.unit(150, "cm"),
  23804. default: true
  23805. },
  23806. ]
  23807. ))
  23808. characterMakers.push(() => makeCharacter(
  23809. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23810. {
  23811. front: {
  23812. height: math.unit(100, "feet"),
  23813. name: "Front",
  23814. image: {
  23815. source: "./media/characters/erza-bear/front.svg",
  23816. extra: 2449 / 2390,
  23817. bottom: 46 / 2494
  23818. }
  23819. },
  23820. back: {
  23821. height: math.unit(100, "feet"),
  23822. name: "Back",
  23823. image: {
  23824. source: "./media/characters/erza-bear/back.svg",
  23825. extra: 2489 / 2430,
  23826. bottom: 85.4 / 2480
  23827. }
  23828. },
  23829. tail: {
  23830. height: math.unit(42, "feet"),
  23831. name: "Tail",
  23832. image: {
  23833. source: "./media/characters/erza-bear/tail.svg"
  23834. }
  23835. },
  23836. tongue: {
  23837. height: math.unit(8, "feet"),
  23838. name: "Tongue",
  23839. image: {
  23840. source: "./media/characters/erza-bear/tongue.svg"
  23841. }
  23842. },
  23843. dick: {
  23844. height: math.unit(10.5, "feet"),
  23845. name: "Dick",
  23846. image: {
  23847. source: "./media/characters/erza-bear/dick.svg"
  23848. }
  23849. },
  23850. dickVertical: {
  23851. height: math.unit(16.9, "feet"),
  23852. name: "Dick (Vertical)",
  23853. image: {
  23854. source: "./media/characters/erza-bear/dick-vertical.svg"
  23855. }
  23856. },
  23857. },
  23858. [
  23859. {
  23860. name: "Macro",
  23861. height: math.unit(100, "feet"),
  23862. default: true
  23863. },
  23864. ]
  23865. ))
  23866. characterMakers.push(() => makeCharacter(
  23867. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23868. {
  23869. front: {
  23870. height: math.unit(172, "cm"),
  23871. weight: math.unit(73, "kg"),
  23872. name: "Front",
  23873. image: {
  23874. source: "./media/characters/violet-flor/front.svg",
  23875. extra: 1530 / 1442,
  23876. bottom: 61.9 / 1588.8
  23877. }
  23878. },
  23879. back: {
  23880. height: math.unit(180, "cm"),
  23881. weight: math.unit(73, "kg"),
  23882. name: "Back",
  23883. image: {
  23884. source: "./media/characters/violet-flor/back.svg",
  23885. extra: 1692 / 1630,
  23886. bottom: 20 / 1712
  23887. }
  23888. },
  23889. },
  23890. [
  23891. {
  23892. name: "Normal",
  23893. height: math.unit(172, "cm"),
  23894. default: true
  23895. },
  23896. ]
  23897. ))
  23898. characterMakers.push(() => makeCharacter(
  23899. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23900. {
  23901. front: {
  23902. height: math.unit(6, "feet"),
  23903. weight: math.unit(220, "lb"),
  23904. name: "Front",
  23905. image: {
  23906. source: "./media/characters/lynn-rhea/front.svg",
  23907. extra: 310 / 273
  23908. }
  23909. },
  23910. back: {
  23911. height: math.unit(6, "feet"),
  23912. weight: math.unit(220, "lb"),
  23913. name: "Back",
  23914. image: {
  23915. source: "./media/characters/lynn-rhea/back.svg",
  23916. extra: 310 / 273
  23917. }
  23918. },
  23919. dicks: {
  23920. height: math.unit(0.9, "feet"),
  23921. name: "Dicks",
  23922. image: {
  23923. source: "./media/characters/lynn-rhea/dicks.svg"
  23924. }
  23925. },
  23926. slit: {
  23927. height: math.unit(0.4, "feet"),
  23928. name: "Slit",
  23929. image: {
  23930. source: "./media/characters/lynn-rhea/slit.svg"
  23931. }
  23932. },
  23933. },
  23934. [
  23935. {
  23936. name: "Micro",
  23937. height: math.unit(1, "inch")
  23938. },
  23939. {
  23940. name: "Macro",
  23941. height: math.unit(60, "feet"),
  23942. default: true
  23943. },
  23944. {
  23945. name: "Megamacro",
  23946. height: math.unit(2, "miles")
  23947. },
  23948. {
  23949. name: "Gigamacro",
  23950. height: math.unit(3, "earths")
  23951. },
  23952. {
  23953. name: "Galactic",
  23954. height: math.unit(0.8, "galaxies")
  23955. },
  23956. ]
  23957. ))
  23958. characterMakers.push(() => makeCharacter(
  23959. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23960. {
  23961. front: {
  23962. height: math.unit(1600, "feet"),
  23963. weight: math.unit(85758785169, "kg"),
  23964. name: "Front",
  23965. image: {
  23966. source: "./media/characters/valathos/front.svg",
  23967. extra: 1451 / 1339
  23968. }
  23969. },
  23970. },
  23971. [
  23972. {
  23973. name: "Macro",
  23974. height: math.unit(1600, "feet"),
  23975. default: true
  23976. },
  23977. ]
  23978. ))
  23979. characterMakers.push(() => makeCharacter(
  23980. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23981. {
  23982. front: {
  23983. height: math.unit(7 + 5 / 12, "feet"),
  23984. weight: math.unit(300, "lb"),
  23985. name: "Front",
  23986. image: {
  23987. source: "./media/characters/azula/front.svg",
  23988. extra: 3208 / 2880,
  23989. bottom: 80.2 / 3277
  23990. }
  23991. },
  23992. back: {
  23993. height: math.unit(7 + 5 / 12, "feet"),
  23994. weight: math.unit(300, "lb"),
  23995. name: "Back",
  23996. image: {
  23997. source: "./media/characters/azula/back.svg",
  23998. extra: 3169 / 2822,
  23999. bottom: 150.6 / 3321
  24000. }
  24001. },
  24002. },
  24003. [
  24004. {
  24005. name: "Normal",
  24006. height: math.unit(7 + 5 / 12, "feet"),
  24007. default: true
  24008. },
  24009. {
  24010. name: "Big",
  24011. height: math.unit(20, "feet")
  24012. },
  24013. ]
  24014. ))
  24015. characterMakers.push(() => makeCharacter(
  24016. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24017. {
  24018. front: {
  24019. height: math.unit(5 + 1 / 12, "feet"),
  24020. weight: math.unit(110, "lb"),
  24021. name: "Front",
  24022. image: {
  24023. source: "./media/characters/rupert/front.svg",
  24024. extra: 1549 / 1495,
  24025. bottom: 54.2 / 1604.4
  24026. }
  24027. },
  24028. },
  24029. [
  24030. {
  24031. name: "Normal",
  24032. height: math.unit(5 + 1 / 12, "feet"),
  24033. default: true
  24034. },
  24035. ]
  24036. ))
  24037. characterMakers.push(() => makeCharacter(
  24038. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24039. {
  24040. front: {
  24041. height: math.unit(8 + 4 / 12, "feet"),
  24042. weight: math.unit(350, "lb"),
  24043. name: "Front",
  24044. image: {
  24045. source: "./media/characters/sheera-castellar/front.svg",
  24046. extra: 1957 / 1894,
  24047. bottom: 26.97 / 1975.017
  24048. }
  24049. },
  24050. side: {
  24051. height: math.unit(8 + 4 / 12, "feet"),
  24052. weight: math.unit(350, "lb"),
  24053. name: "Side",
  24054. image: {
  24055. source: "./media/characters/sheera-castellar/side.svg",
  24056. extra: 1957 / 1894
  24057. }
  24058. },
  24059. back: {
  24060. height: math.unit(8 + 4 / 12, "feet"),
  24061. weight: math.unit(350, "lb"),
  24062. name: "Back",
  24063. image: {
  24064. source: "./media/characters/sheera-castellar/back.svg",
  24065. extra: 1957 / 1894
  24066. }
  24067. },
  24068. angled: {
  24069. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24070. weight: math.unit(350, "lb"),
  24071. name: "Angled",
  24072. image: {
  24073. source: "./media/characters/sheera-castellar/angled.svg",
  24074. extra: 1807 / 1707,
  24075. bottom: 68 / 1875
  24076. }
  24077. },
  24078. genitals: {
  24079. height: math.unit(2.2, "feet"),
  24080. name: "Genitals",
  24081. image: {
  24082. source: "./media/characters/sheera-castellar/genitals.svg"
  24083. }
  24084. },
  24085. taur: {
  24086. height: math.unit(10 + 6/12, "feet"),
  24087. name: "Taur",
  24088. image: {
  24089. source: "./media/characters/sheera-castellar/taur.svg",
  24090. extra: 2017/1909,
  24091. bottom: 185/2202
  24092. }
  24093. },
  24094. },
  24095. [
  24096. {
  24097. name: "Normal",
  24098. height: math.unit(8 + 4 / 12, "feet")
  24099. },
  24100. {
  24101. name: "Macro",
  24102. height: math.unit(150, "feet"),
  24103. default: true
  24104. },
  24105. {
  24106. name: "Macro+",
  24107. height: math.unit(800, "feet")
  24108. },
  24109. ]
  24110. ))
  24111. characterMakers.push(() => makeCharacter(
  24112. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24113. {
  24114. front: {
  24115. height: math.unit(6, "feet"),
  24116. weight: math.unit(150, "lb"),
  24117. name: "Front",
  24118. image: {
  24119. source: "./media/characters/jaipur/front.svg",
  24120. extra: 3860 / 3731,
  24121. bottom: 287 / 4140
  24122. }
  24123. },
  24124. back: {
  24125. height: math.unit(6, "feet"),
  24126. weight: math.unit(150, "lb"),
  24127. name: "Back",
  24128. image: {
  24129. source: "./media/characters/jaipur/back.svg",
  24130. extra: 1637/1561,
  24131. bottom: 154/1791
  24132. }
  24133. },
  24134. },
  24135. [
  24136. {
  24137. name: "Normal",
  24138. height: math.unit(1.85, "meters"),
  24139. default: true
  24140. },
  24141. {
  24142. name: "Macro",
  24143. height: math.unit(150, "meters")
  24144. },
  24145. {
  24146. name: "Macro+",
  24147. height: math.unit(0.5, "miles")
  24148. },
  24149. {
  24150. name: "Macro++",
  24151. height: math.unit(2.5, "miles")
  24152. },
  24153. {
  24154. name: "Macro+++",
  24155. height: math.unit(12, "miles")
  24156. },
  24157. {
  24158. name: "Macro++++",
  24159. height: math.unit(120, "miles")
  24160. },
  24161. {
  24162. name: "Macro+++++",
  24163. height: math.unit(1200, "miles")
  24164. },
  24165. ]
  24166. ))
  24167. characterMakers.push(() => makeCharacter(
  24168. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24169. {
  24170. front: {
  24171. height: math.unit(6, "feet"),
  24172. weight: math.unit(150, "lb"),
  24173. name: "Front",
  24174. image: {
  24175. source: "./media/characters/sheila-wolf/front.svg",
  24176. extra: 1931 / 1808,
  24177. bottom: 29.5 / 1960
  24178. }
  24179. },
  24180. dick: {
  24181. height: math.unit(1.464, "feet"),
  24182. name: "Dick",
  24183. image: {
  24184. source: "./media/characters/sheila-wolf/dick.svg"
  24185. }
  24186. },
  24187. muzzle: {
  24188. height: math.unit(0.513, "feet"),
  24189. name: "Muzzle",
  24190. image: {
  24191. source: "./media/characters/sheila-wolf/muzzle.svg"
  24192. }
  24193. },
  24194. },
  24195. [
  24196. {
  24197. name: "Macro",
  24198. height: math.unit(70, "feet"),
  24199. default: true
  24200. },
  24201. ]
  24202. ))
  24203. characterMakers.push(() => makeCharacter(
  24204. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24205. {
  24206. front: {
  24207. height: math.unit(32, "meters"),
  24208. weight: math.unit(300000, "kg"),
  24209. name: "Front",
  24210. image: {
  24211. source: "./media/characters/almor/front.svg",
  24212. extra: 1408 / 1322,
  24213. bottom: 94.6 / 1506.5
  24214. }
  24215. },
  24216. },
  24217. [
  24218. {
  24219. name: "Macro",
  24220. height: math.unit(32, "meters"),
  24221. default: true
  24222. },
  24223. ]
  24224. ))
  24225. characterMakers.push(() => makeCharacter(
  24226. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24227. {
  24228. front: {
  24229. height: math.unit(7, "feet"),
  24230. weight: math.unit(200, "lb"),
  24231. name: "Front",
  24232. image: {
  24233. source: "./media/characters/silver/front.svg",
  24234. extra: 472.1 / 450.5,
  24235. bottom: 26.5 / 499.424
  24236. }
  24237. },
  24238. },
  24239. [
  24240. {
  24241. name: "Normal",
  24242. height: math.unit(7, "feet"),
  24243. default: true
  24244. },
  24245. {
  24246. name: "Macro",
  24247. height: math.unit(800, "feet")
  24248. },
  24249. {
  24250. name: "Megamacro",
  24251. height: math.unit(250, "miles")
  24252. },
  24253. ]
  24254. ))
  24255. characterMakers.push(() => makeCharacter(
  24256. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24257. {
  24258. front: {
  24259. height: math.unit(6, "feet"),
  24260. weight: math.unit(150, "lb"),
  24261. name: "Front",
  24262. image: {
  24263. source: "./media/characters/pliskin/front.svg",
  24264. extra: 1469 / 1359,
  24265. bottom: 70 / 1540
  24266. }
  24267. },
  24268. },
  24269. [
  24270. {
  24271. name: "Micro",
  24272. height: math.unit(3, "inches")
  24273. },
  24274. {
  24275. name: "Normal",
  24276. height: math.unit(5 + 11 / 12, "feet"),
  24277. default: true
  24278. },
  24279. {
  24280. name: "Macro",
  24281. height: math.unit(120, "feet")
  24282. },
  24283. ]
  24284. ))
  24285. characterMakers.push(() => makeCharacter(
  24286. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24287. {
  24288. front: {
  24289. height: math.unit(6, "feet"),
  24290. weight: math.unit(150, "lb"),
  24291. name: "Front",
  24292. image: {
  24293. source: "./media/characters/sammy/front.svg",
  24294. extra: 1193 / 1089,
  24295. bottom: 30.5 / 1226
  24296. }
  24297. },
  24298. },
  24299. [
  24300. {
  24301. name: "Macro",
  24302. height: math.unit(1700, "feet"),
  24303. default: true
  24304. },
  24305. {
  24306. name: "Examacro",
  24307. height: math.unit(2.5e9, "lightyears")
  24308. },
  24309. ]
  24310. ))
  24311. characterMakers.push(() => makeCharacter(
  24312. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24313. {
  24314. front: {
  24315. height: math.unit(21, "meters"),
  24316. weight: math.unit(12, "tonnes"),
  24317. name: "Front",
  24318. image: {
  24319. source: "./media/characters/kuru/front.svg",
  24320. extra: 4301 / 3785,
  24321. bottom: 371.3 / 4691
  24322. }
  24323. },
  24324. },
  24325. [
  24326. {
  24327. name: "Macro",
  24328. height: math.unit(21, "meters"),
  24329. default: true
  24330. },
  24331. ]
  24332. ))
  24333. characterMakers.push(() => makeCharacter(
  24334. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24335. {
  24336. front: {
  24337. height: math.unit(23, "meters"),
  24338. weight: math.unit(12.2, "tonnes"),
  24339. name: "Front",
  24340. image: {
  24341. source: "./media/characters/rakka/front.svg",
  24342. extra: 4670 / 4169,
  24343. bottom: 301 / 4968.7
  24344. }
  24345. },
  24346. },
  24347. [
  24348. {
  24349. name: "Macro",
  24350. height: math.unit(23, "meters"),
  24351. default: true
  24352. },
  24353. ]
  24354. ))
  24355. characterMakers.push(() => makeCharacter(
  24356. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24357. {
  24358. front: {
  24359. height: math.unit(6, "feet"),
  24360. weight: math.unit(150, "lb"),
  24361. name: "Front",
  24362. image: {
  24363. source: "./media/characters/rhys-feline/front.svg",
  24364. extra: 2488 / 2308,
  24365. bottom: 35.67 / 2519.19
  24366. }
  24367. },
  24368. },
  24369. [
  24370. {
  24371. name: "Really Small",
  24372. height: math.unit(1, "nm")
  24373. },
  24374. {
  24375. name: "Micro",
  24376. height: math.unit(4, "inches")
  24377. },
  24378. {
  24379. name: "Normal",
  24380. height: math.unit(4 + 10 / 12, "feet"),
  24381. default: true
  24382. },
  24383. {
  24384. name: "Macro",
  24385. height: math.unit(100, "feet")
  24386. },
  24387. {
  24388. name: "Megamacto",
  24389. height: math.unit(50, "miles")
  24390. },
  24391. ]
  24392. ))
  24393. characterMakers.push(() => makeCharacter(
  24394. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24395. {
  24396. side: {
  24397. height: math.unit(30, "feet"),
  24398. weight: math.unit(35000, "kg"),
  24399. name: "Side",
  24400. image: {
  24401. source: "./media/characters/alydar/side.svg",
  24402. extra: 234 / 222,
  24403. bottom: 6.5 / 241
  24404. }
  24405. },
  24406. front: {
  24407. height: math.unit(30, "feet"),
  24408. weight: math.unit(35000, "kg"),
  24409. name: "Front",
  24410. image: {
  24411. source: "./media/characters/alydar/front.svg",
  24412. extra: 223.37 / 210.2,
  24413. bottom: 22.3 / 246.76
  24414. }
  24415. },
  24416. top: {
  24417. height: math.unit(64.54, "feet"),
  24418. weight: math.unit(35000, "kg"),
  24419. name: "Top",
  24420. image: {
  24421. source: "./media/characters/alydar/top.svg"
  24422. }
  24423. },
  24424. anthro: {
  24425. height: math.unit(30, "feet"),
  24426. weight: math.unit(9000, "kg"),
  24427. name: "Anthro",
  24428. image: {
  24429. source: "./media/characters/alydar/anthro.svg",
  24430. extra: 432 / 421,
  24431. bottom: 7.18 / 440
  24432. }
  24433. },
  24434. maw: {
  24435. height: math.unit(11.693, "feet"),
  24436. name: "Maw",
  24437. image: {
  24438. source: "./media/characters/alydar/maw.svg"
  24439. }
  24440. },
  24441. head: {
  24442. height: math.unit(11.693, "feet"),
  24443. name: "Head",
  24444. image: {
  24445. source: "./media/characters/alydar/head.svg"
  24446. }
  24447. },
  24448. headAlt: {
  24449. height: math.unit(12.861, "feet"),
  24450. name: "Head (Alt)",
  24451. image: {
  24452. source: "./media/characters/alydar/head-alt.svg"
  24453. }
  24454. },
  24455. wing: {
  24456. height: math.unit(20.712, "feet"),
  24457. name: "Wing",
  24458. image: {
  24459. source: "./media/characters/alydar/wing.svg"
  24460. }
  24461. },
  24462. wingFeather: {
  24463. height: math.unit(9.662, "feet"),
  24464. name: "Wing Feather",
  24465. image: {
  24466. source: "./media/characters/alydar/wing-feather.svg"
  24467. }
  24468. },
  24469. countourFeather: {
  24470. height: math.unit(4.154, "feet"),
  24471. name: "Contour Feather",
  24472. image: {
  24473. source: "./media/characters/alydar/contour-feather.svg"
  24474. }
  24475. },
  24476. },
  24477. [
  24478. {
  24479. name: "Diplomatic",
  24480. height: math.unit(13, "feet"),
  24481. default: true
  24482. },
  24483. {
  24484. name: "Small",
  24485. height: math.unit(30, "feet")
  24486. },
  24487. {
  24488. name: "Normal",
  24489. height: math.unit(95, "feet"),
  24490. default: true
  24491. },
  24492. {
  24493. name: "Large",
  24494. height: math.unit(285, "feet")
  24495. },
  24496. {
  24497. name: "Incomprehensible",
  24498. height: math.unit(450, "megameters")
  24499. },
  24500. ]
  24501. ))
  24502. characterMakers.push(() => makeCharacter(
  24503. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24504. {
  24505. side: {
  24506. height: math.unit(11, "feet"),
  24507. weight: math.unit(1750, "kg"),
  24508. name: "Side",
  24509. image: {
  24510. source: "./media/characters/selicia/side.svg",
  24511. extra: 440 / 396,
  24512. bottom: 24.8 / 465.979
  24513. }
  24514. },
  24515. maw: {
  24516. height: math.unit(4.665, "feet"),
  24517. name: "Maw",
  24518. image: {
  24519. source: "./media/characters/selicia/maw.svg"
  24520. }
  24521. },
  24522. },
  24523. [
  24524. {
  24525. name: "Normal",
  24526. height: math.unit(11, "feet"),
  24527. default: true
  24528. },
  24529. ]
  24530. ))
  24531. characterMakers.push(() => makeCharacter(
  24532. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24533. {
  24534. side: {
  24535. height: math.unit(2 + 6 / 12, "feet"),
  24536. weight: math.unit(30, "lb"),
  24537. name: "Side",
  24538. image: {
  24539. source: "./media/characters/layla/side.svg",
  24540. extra: 244 / 188,
  24541. bottom: 18.2 / 262.1
  24542. }
  24543. },
  24544. back: {
  24545. height: math.unit(2 + 6 / 12, "feet"),
  24546. weight: math.unit(30, "lb"),
  24547. name: "Back",
  24548. image: {
  24549. source: "./media/characters/layla/back.svg",
  24550. extra: 308 / 241.5,
  24551. bottom: 8.9 / 316.8
  24552. }
  24553. },
  24554. cumming: {
  24555. height: math.unit(2 + 6 / 12, "feet"),
  24556. weight: math.unit(30, "lb"),
  24557. name: "Cumming",
  24558. image: {
  24559. source: "./media/characters/layla/cumming.svg",
  24560. extra: 342 / 279,
  24561. bottom: 595 / 938
  24562. }
  24563. },
  24564. dickFlaccid: {
  24565. height: math.unit(2.595, "feet"),
  24566. name: "Flaccid Genitals",
  24567. image: {
  24568. source: "./media/characters/layla/dick-flaccid.svg"
  24569. }
  24570. },
  24571. dickErect: {
  24572. height: math.unit(2.359, "feet"),
  24573. name: "Erect Genitals",
  24574. image: {
  24575. source: "./media/characters/layla/dick-erect.svg"
  24576. }
  24577. },
  24578. dragon: {
  24579. height: math.unit(40, "feet"),
  24580. name: "Dragon",
  24581. image: {
  24582. source: "./media/characters/layla/dragon.svg",
  24583. extra: 610/535,
  24584. bottom: 367/977
  24585. }
  24586. },
  24587. taur: {
  24588. height: math.unit(30, "feet"),
  24589. name: "Taur",
  24590. image: {
  24591. source: "./media/characters/layla/taur.svg",
  24592. extra: 1268/1199,
  24593. bottom: 112/1380
  24594. }
  24595. },
  24596. },
  24597. [
  24598. {
  24599. name: "Micro",
  24600. height: math.unit(1, "inch")
  24601. },
  24602. {
  24603. name: "Small",
  24604. height: math.unit(1, "foot")
  24605. },
  24606. {
  24607. name: "Normal",
  24608. height: math.unit(2 + 6 / 12, "feet"),
  24609. default: true
  24610. },
  24611. {
  24612. name: "Macro",
  24613. height: math.unit(200, "feet")
  24614. },
  24615. {
  24616. name: "Megamacro",
  24617. height: math.unit(1000, "miles")
  24618. },
  24619. {
  24620. name: "Planetary",
  24621. height: math.unit(8000, "miles")
  24622. },
  24623. {
  24624. name: "True Layla",
  24625. height: math.unit(200000 * 7, "multiverses")
  24626. },
  24627. ]
  24628. ))
  24629. characterMakers.push(() => makeCharacter(
  24630. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24631. {
  24632. back: {
  24633. height: math.unit(10.5, "feet"),
  24634. weight: math.unit(800, "lb"),
  24635. name: "Back",
  24636. image: {
  24637. source: "./media/characters/knox/back.svg",
  24638. extra: 1486 / 1089,
  24639. bottom: 107 / 1601.4
  24640. }
  24641. },
  24642. side: {
  24643. height: math.unit(10.5, "feet"),
  24644. weight: math.unit(800, "lb"),
  24645. name: "Side",
  24646. image: {
  24647. source: "./media/characters/knox/side.svg",
  24648. extra: 244 / 218,
  24649. bottom: 14 / 260
  24650. }
  24651. },
  24652. },
  24653. [
  24654. {
  24655. name: "Compact",
  24656. height: math.unit(10.5, "feet"),
  24657. default: true
  24658. },
  24659. {
  24660. name: "Dynamax",
  24661. height: math.unit(210, "feet")
  24662. },
  24663. {
  24664. name: "Full Macro",
  24665. height: math.unit(850, "feet")
  24666. },
  24667. ]
  24668. ))
  24669. characterMakers.push(() => makeCharacter(
  24670. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24671. {
  24672. front: {
  24673. height: math.unit(28, "feet"),
  24674. weight: math.unit(10500, "lb"),
  24675. name: "Front",
  24676. image: {
  24677. source: "./media/characters/kayda/front.svg",
  24678. extra: 1536 / 1428,
  24679. bottom: 68.7 / 1603
  24680. }
  24681. },
  24682. back: {
  24683. height: math.unit(28, "feet"),
  24684. weight: math.unit(10500, "lb"),
  24685. name: "Back",
  24686. image: {
  24687. source: "./media/characters/kayda/back.svg",
  24688. extra: 1557 / 1464,
  24689. bottom: 39.5 / 1597.49
  24690. }
  24691. },
  24692. dick: {
  24693. height: math.unit(3.858, "feet"),
  24694. name: "Dick",
  24695. image: {
  24696. source: "./media/characters/kayda/dick.svg"
  24697. }
  24698. },
  24699. },
  24700. [
  24701. {
  24702. name: "Macro",
  24703. height: math.unit(28, "feet"),
  24704. default: true
  24705. },
  24706. ]
  24707. ))
  24708. characterMakers.push(() => makeCharacter(
  24709. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24710. {
  24711. front: {
  24712. height: math.unit(10 + 11 / 12, "feet"),
  24713. weight: math.unit(1400, "lb"),
  24714. name: "Front",
  24715. image: {
  24716. source: "./media/characters/brian/front.svg",
  24717. extra: 737 / 692,
  24718. bottom: 55.4 / 785
  24719. }
  24720. },
  24721. },
  24722. [
  24723. {
  24724. name: "Normal",
  24725. height: math.unit(10 + 11 / 12, "feet"),
  24726. default: true
  24727. },
  24728. ]
  24729. ))
  24730. characterMakers.push(() => makeCharacter(
  24731. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24732. {
  24733. front: {
  24734. height: math.unit(5 + 8 / 12, "feet"),
  24735. weight: math.unit(140, "lb"),
  24736. name: "Front",
  24737. image: {
  24738. source: "./media/characters/khemri/front.svg",
  24739. extra: 4780 / 4059,
  24740. bottom: 80.1 / 4859.25
  24741. }
  24742. },
  24743. },
  24744. [
  24745. {
  24746. name: "Micro",
  24747. height: math.unit(6, "inches")
  24748. },
  24749. {
  24750. name: "Normal",
  24751. height: math.unit(5 + 8 / 12, "feet"),
  24752. default: true
  24753. },
  24754. ]
  24755. ))
  24756. characterMakers.push(() => makeCharacter(
  24757. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24758. {
  24759. front: {
  24760. height: math.unit(13, "feet"),
  24761. weight: math.unit(1700, "lb"),
  24762. name: "Front",
  24763. image: {
  24764. source: "./media/characters/felix-braveheart/front.svg",
  24765. extra: 1222 / 1157,
  24766. bottom: 53.2 / 1280
  24767. }
  24768. },
  24769. back: {
  24770. height: math.unit(13, "feet"),
  24771. weight: math.unit(1700, "lb"),
  24772. name: "Back",
  24773. image: {
  24774. source: "./media/characters/felix-braveheart/back.svg",
  24775. extra: 1277 / 1203,
  24776. bottom: 50.2 / 1327
  24777. }
  24778. },
  24779. feral: {
  24780. height: math.unit(6, "feet"),
  24781. weight: math.unit(400, "lb"),
  24782. name: "Feral",
  24783. image: {
  24784. source: "./media/characters/felix-braveheart/feral.svg",
  24785. extra: 682 / 625,
  24786. bottom: 6.9 / 688
  24787. }
  24788. },
  24789. },
  24790. [
  24791. {
  24792. name: "Normal",
  24793. height: math.unit(13, "feet"),
  24794. default: true
  24795. },
  24796. ]
  24797. ))
  24798. characterMakers.push(() => makeCharacter(
  24799. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24800. {
  24801. side: {
  24802. height: math.unit(5 + 11 / 12, "feet"),
  24803. weight: math.unit(1400, "lb"),
  24804. name: "Side",
  24805. image: {
  24806. source: "./media/characters/shadow-blade/side.svg",
  24807. extra: 1726 / 1267,
  24808. bottom: 58.4 / 1785
  24809. }
  24810. },
  24811. },
  24812. [
  24813. {
  24814. name: "Normal",
  24815. height: math.unit(5 + 11 / 12, "feet"),
  24816. default: true
  24817. },
  24818. ]
  24819. ))
  24820. characterMakers.push(() => makeCharacter(
  24821. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24822. {
  24823. front: {
  24824. height: math.unit(1 + 6 / 12, "feet"),
  24825. weight: math.unit(25, "lb"),
  24826. name: "Front",
  24827. image: {
  24828. source: "./media/characters/karla-halldor/front.svg",
  24829. extra: 1459 / 1383,
  24830. bottom: 12 / 1472
  24831. }
  24832. },
  24833. },
  24834. [
  24835. {
  24836. name: "Normal",
  24837. height: math.unit(1 + 6 / 12, "feet"),
  24838. default: true
  24839. },
  24840. ]
  24841. ))
  24842. characterMakers.push(() => makeCharacter(
  24843. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24844. {
  24845. front: {
  24846. height: math.unit(6 + 2 / 12, "feet"),
  24847. weight: math.unit(160, "lb"),
  24848. name: "Front",
  24849. image: {
  24850. source: "./media/characters/ariam/front.svg",
  24851. extra: 1073/976,
  24852. bottom: 52/1125
  24853. }
  24854. },
  24855. back: {
  24856. height: math.unit(6 + 2/12, "feet"),
  24857. weight: math.unit(160, "lb"),
  24858. name: "Back",
  24859. image: {
  24860. source: "./media/characters/ariam/back.svg",
  24861. extra: 1103/1023,
  24862. bottom: 9/1112
  24863. }
  24864. },
  24865. dressed: {
  24866. height: math.unit(6 + 2/12, "feet"),
  24867. weight: math.unit(160, "lb"),
  24868. name: "Dressed",
  24869. image: {
  24870. source: "./media/characters/ariam/dressed.svg",
  24871. extra: 1099/1009,
  24872. bottom: 25/1124
  24873. }
  24874. },
  24875. squatting: {
  24876. height: math.unit(4.1, "feet"),
  24877. weight: math.unit(160, "lb"),
  24878. name: "Squatting",
  24879. image: {
  24880. source: "./media/characters/ariam/squatting.svg",
  24881. extra: 2617 / 2112,
  24882. bottom: 61.2 / 2681,
  24883. }
  24884. },
  24885. },
  24886. [
  24887. {
  24888. name: "Normal",
  24889. height: math.unit(6 + 2 / 12, "feet"),
  24890. default: true
  24891. },
  24892. {
  24893. name: "Normal+",
  24894. height: math.unit(4, "meters")
  24895. },
  24896. {
  24897. name: "Macro",
  24898. height: math.unit(50, "meters")
  24899. },
  24900. {
  24901. name: "Macro+",
  24902. height: math.unit(100, "meters")
  24903. },
  24904. {
  24905. name: "Megamacro",
  24906. height: math.unit(20, "km")
  24907. },
  24908. {
  24909. name: "Caretaker",
  24910. height: math.unit(444, "megameters")
  24911. },
  24912. ]
  24913. ))
  24914. characterMakers.push(() => makeCharacter(
  24915. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24916. {
  24917. front: {
  24918. height: math.unit(1.67, "meters"),
  24919. weight: math.unit(140, "lb"),
  24920. name: "Front",
  24921. image: {
  24922. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24923. extra: 438 / 410,
  24924. bottom: 0.75 / 439
  24925. }
  24926. },
  24927. },
  24928. [
  24929. {
  24930. name: "Shrunken",
  24931. height: math.unit(7.6, "cm")
  24932. },
  24933. {
  24934. name: "Human Scale",
  24935. height: math.unit(1.67, "meters")
  24936. },
  24937. {
  24938. name: "Wolxi Scale",
  24939. height: math.unit(36.7, "meters"),
  24940. default: true
  24941. },
  24942. ]
  24943. ))
  24944. characterMakers.push(() => makeCharacter(
  24945. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24946. {
  24947. front: {
  24948. height: math.unit(1.73, "meters"),
  24949. weight: math.unit(240, "lb"),
  24950. name: "Front",
  24951. image: {
  24952. source: "./media/characters/izue-two-mothers/front.svg",
  24953. extra: 469 / 437,
  24954. bottom: 1.24 / 470.6
  24955. }
  24956. },
  24957. },
  24958. [
  24959. {
  24960. name: "Shrunken",
  24961. height: math.unit(7.86, "cm")
  24962. },
  24963. {
  24964. name: "Human Scale",
  24965. height: math.unit(1.73, "meters")
  24966. },
  24967. {
  24968. name: "Wolxi Scale",
  24969. height: math.unit(38, "meters"),
  24970. default: true
  24971. },
  24972. ]
  24973. ))
  24974. characterMakers.push(() => makeCharacter(
  24975. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24976. {
  24977. front: {
  24978. height: math.unit(1.55, "meters"),
  24979. weight: math.unit(120, "lb"),
  24980. name: "Front",
  24981. image: {
  24982. source: "./media/characters/teeku-love-shack/front.svg",
  24983. extra: 387 / 362,
  24984. bottom: 1.51 / 388
  24985. }
  24986. },
  24987. },
  24988. [
  24989. {
  24990. name: "Shrunken",
  24991. height: math.unit(7, "cm")
  24992. },
  24993. {
  24994. name: "Human Scale",
  24995. height: math.unit(1.55, "meters")
  24996. },
  24997. {
  24998. name: "Wolxi Scale",
  24999. height: math.unit(34.1, "meters"),
  25000. default: true
  25001. },
  25002. ]
  25003. ))
  25004. characterMakers.push(() => makeCharacter(
  25005. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25006. {
  25007. front: {
  25008. height: math.unit(1.83, "meters"),
  25009. weight: math.unit(135, "lb"),
  25010. name: "Front",
  25011. image: {
  25012. source: "./media/characters/dejma-the-red/front.svg",
  25013. extra: 480 / 458,
  25014. bottom: 1.8 / 482
  25015. }
  25016. },
  25017. },
  25018. [
  25019. {
  25020. name: "Shrunken",
  25021. height: math.unit(8.3, "cm")
  25022. },
  25023. {
  25024. name: "Human Scale",
  25025. height: math.unit(1.83, "meters")
  25026. },
  25027. {
  25028. name: "Wolxi Scale",
  25029. height: math.unit(40, "meters"),
  25030. default: true
  25031. },
  25032. ]
  25033. ))
  25034. characterMakers.push(() => makeCharacter(
  25035. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25036. {
  25037. front: {
  25038. height: math.unit(1.78, "meters"),
  25039. weight: math.unit(65, "kg"),
  25040. name: "Front",
  25041. image: {
  25042. source: "./media/characters/aki/front.svg",
  25043. extra: 452 / 415
  25044. }
  25045. },
  25046. frontNsfw: {
  25047. height: math.unit(1.78, "meters"),
  25048. weight: math.unit(65, "kg"),
  25049. name: "Front (NSFW)",
  25050. image: {
  25051. source: "./media/characters/aki/front-nsfw.svg",
  25052. extra: 452 / 415
  25053. }
  25054. },
  25055. back: {
  25056. height: math.unit(1.78, "meters"),
  25057. weight: math.unit(65, "kg"),
  25058. name: "Back",
  25059. image: {
  25060. source: "./media/characters/aki/back.svg",
  25061. extra: 452 / 415
  25062. }
  25063. },
  25064. rump: {
  25065. height: math.unit(2.05, "feet"),
  25066. name: "Rump",
  25067. image: {
  25068. source: "./media/characters/aki/rump.svg"
  25069. }
  25070. },
  25071. dick: {
  25072. height: math.unit(0.95, "feet"),
  25073. name: "Dick",
  25074. image: {
  25075. source: "./media/characters/aki/dick.svg"
  25076. }
  25077. },
  25078. },
  25079. [
  25080. {
  25081. name: "Micro",
  25082. height: math.unit(15, "cm")
  25083. },
  25084. {
  25085. name: "Normal",
  25086. height: math.unit(178, "cm"),
  25087. default: true
  25088. },
  25089. {
  25090. name: "Macro",
  25091. height: math.unit(214, "m")
  25092. },
  25093. {
  25094. name: "Macro+",
  25095. height: math.unit(534, "m")
  25096. },
  25097. ]
  25098. ))
  25099. characterMakers.push(() => makeCharacter(
  25100. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25101. {
  25102. front: {
  25103. height: math.unit(5 + 5 / 12, "feet"),
  25104. weight: math.unit(120, "lb"),
  25105. name: "Front",
  25106. image: {
  25107. source: "./media/characters/ari/front.svg",
  25108. extra: 1550/1471,
  25109. bottom: 39/1589
  25110. }
  25111. },
  25112. },
  25113. [
  25114. {
  25115. name: "Normal",
  25116. height: math.unit(5 + 5 / 12, "feet")
  25117. },
  25118. {
  25119. name: "Macro",
  25120. height: math.unit(100, "feet"),
  25121. default: true
  25122. },
  25123. {
  25124. name: "Megamacro",
  25125. height: math.unit(100, "miles")
  25126. },
  25127. {
  25128. name: "Gigamacro",
  25129. height: math.unit(80000, "miles")
  25130. },
  25131. ]
  25132. ))
  25133. characterMakers.push(() => makeCharacter(
  25134. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25135. {
  25136. side: {
  25137. height: math.unit(9, "feet"),
  25138. weight: math.unit(400, "kg"),
  25139. name: "Side",
  25140. image: {
  25141. source: "./media/characters/bolt/side.svg",
  25142. extra: 1126 / 896,
  25143. bottom: 60 / 1187.3,
  25144. }
  25145. },
  25146. },
  25147. [
  25148. {
  25149. name: "Micro",
  25150. height: math.unit(5, "inches")
  25151. },
  25152. {
  25153. name: "Normal",
  25154. height: math.unit(9, "feet"),
  25155. default: true
  25156. },
  25157. {
  25158. name: "Macro",
  25159. height: math.unit(700, "feet")
  25160. },
  25161. {
  25162. name: "Max Size",
  25163. height: math.unit(1.52e22, "yottameters")
  25164. },
  25165. ]
  25166. ))
  25167. characterMakers.push(() => makeCharacter(
  25168. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25169. {
  25170. front: {
  25171. height: math.unit(4.3, "meters"),
  25172. weight: math.unit(3, "tons"),
  25173. name: "Front",
  25174. image: {
  25175. source: "./media/characters/draekon-sylviar/front.svg",
  25176. extra: 2072/1512,
  25177. bottom: 74/2146
  25178. }
  25179. },
  25180. back: {
  25181. height: math.unit(4.3, "meters"),
  25182. weight: math.unit(3, "tons"),
  25183. name: "Back",
  25184. image: {
  25185. source: "./media/characters/draekon-sylviar/back.svg",
  25186. extra: 1639/1483,
  25187. bottom: 41/1680
  25188. }
  25189. },
  25190. feral: {
  25191. height: math.unit(1.15, "meters"),
  25192. weight: math.unit(3, "tons"),
  25193. name: "Feral",
  25194. image: {
  25195. source: "./media/characters/draekon-sylviar/feral.svg",
  25196. extra: 1033/395,
  25197. bottom: 130/1163
  25198. }
  25199. },
  25200. maw: {
  25201. height: math.unit(1.3, "meters"),
  25202. name: "Maw",
  25203. image: {
  25204. source: "./media/characters/draekon-sylviar/maw.svg"
  25205. }
  25206. },
  25207. mawSeparated: {
  25208. height: math.unit(1.53, "meters"),
  25209. name: "Separated Maw",
  25210. image: {
  25211. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25212. }
  25213. },
  25214. tail: {
  25215. height: math.unit(1.15, "meters"),
  25216. name: "Tail",
  25217. image: {
  25218. source: "./media/characters/draekon-sylviar/tail.svg"
  25219. }
  25220. },
  25221. tailDick: {
  25222. height: math.unit(1.15, "meters"),
  25223. name: "Tail (Dick)",
  25224. image: {
  25225. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25226. }
  25227. },
  25228. tailDickSeparated: {
  25229. height: math.unit(1.19, "meters"),
  25230. name: "Tail (Separated Dick)",
  25231. image: {
  25232. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25233. }
  25234. },
  25235. slit: {
  25236. height: math.unit(1, "meters"),
  25237. name: "Slit",
  25238. image: {
  25239. source: "./media/characters/draekon-sylviar/slit.svg"
  25240. }
  25241. },
  25242. dick: {
  25243. height: math.unit(1.15, "meters"),
  25244. name: "Dick",
  25245. image: {
  25246. source: "./media/characters/draekon-sylviar/dick.svg"
  25247. }
  25248. },
  25249. dickSeparated: {
  25250. height: math.unit(1.1, "meters"),
  25251. name: "Separated Dick",
  25252. image: {
  25253. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25254. }
  25255. },
  25256. sheath: {
  25257. height: math.unit(1.15, "meters"),
  25258. name: "Sheath",
  25259. image: {
  25260. source: "./media/characters/draekon-sylviar/sheath.svg"
  25261. }
  25262. },
  25263. },
  25264. [
  25265. {
  25266. name: "Small",
  25267. height: math.unit(4.53 / 2, "meters"),
  25268. default: true
  25269. },
  25270. {
  25271. name: "Normal",
  25272. height: math.unit(4.53, "meters"),
  25273. default: true
  25274. },
  25275. {
  25276. name: "Large",
  25277. height: math.unit(4.53 * 2, "meters"),
  25278. },
  25279. ]
  25280. ))
  25281. characterMakers.push(() => makeCharacter(
  25282. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25283. {
  25284. front: {
  25285. height: math.unit(6 + 2 / 12, "feet"),
  25286. weight: math.unit(180, "lb"),
  25287. name: "Front",
  25288. image: {
  25289. source: "./media/characters/brawler/front.svg",
  25290. extra: 3301 / 3027,
  25291. bottom: 138 / 3439
  25292. }
  25293. },
  25294. },
  25295. [
  25296. {
  25297. name: "Normal",
  25298. height: math.unit(6 + 2 / 12, "feet"),
  25299. default: true
  25300. },
  25301. ]
  25302. ))
  25303. characterMakers.push(() => makeCharacter(
  25304. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25305. {
  25306. front: {
  25307. height: math.unit(11, "feet"),
  25308. weight: math.unit(1000, "lb"),
  25309. name: "Front",
  25310. image: {
  25311. source: "./media/characters/alex/front.svg",
  25312. bottom: 44.5 / 620
  25313. }
  25314. },
  25315. },
  25316. [
  25317. {
  25318. name: "Micro",
  25319. height: math.unit(5, "inches")
  25320. },
  25321. {
  25322. name: "Normal",
  25323. height: math.unit(11, "feet"),
  25324. default: true
  25325. },
  25326. {
  25327. name: "Macro",
  25328. height: math.unit(9.5e9, "feet")
  25329. },
  25330. {
  25331. name: "Max Size",
  25332. height: math.unit(1.4e283, "yottameters")
  25333. },
  25334. ]
  25335. ))
  25336. characterMakers.push(() => makeCharacter(
  25337. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25338. {
  25339. female: {
  25340. height: math.unit(29.9, "m"),
  25341. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25342. name: "Female",
  25343. image: {
  25344. source: "./media/characters/zenari/female.svg",
  25345. extra: 3281.6 / 3217,
  25346. bottom: 72.2 / 3353
  25347. }
  25348. },
  25349. male: {
  25350. height: math.unit(27.7, "m"),
  25351. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25352. name: "Male",
  25353. image: {
  25354. source: "./media/characters/zenari/male.svg",
  25355. extra: 3008 / 2991,
  25356. bottom: 54.6 / 3069
  25357. }
  25358. },
  25359. },
  25360. [
  25361. {
  25362. name: "Macro",
  25363. height: math.unit(29.7, "meters"),
  25364. default: true
  25365. },
  25366. ]
  25367. ))
  25368. characterMakers.push(() => makeCharacter(
  25369. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25370. {
  25371. female: {
  25372. height: math.unit(23.8, "m"),
  25373. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25374. name: "Female",
  25375. image: {
  25376. source: "./media/characters/mactarian/female.svg",
  25377. extra: 2662 / 2569,
  25378. bottom: 73 / 2736
  25379. }
  25380. },
  25381. male: {
  25382. height: math.unit(23.8, "m"),
  25383. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25384. name: "Male",
  25385. image: {
  25386. source: "./media/characters/mactarian/male.svg",
  25387. extra: 2673 / 2600,
  25388. bottom: 76 / 2750
  25389. }
  25390. },
  25391. },
  25392. [
  25393. {
  25394. name: "Macro",
  25395. height: math.unit(23.8, "meters"),
  25396. default: true
  25397. },
  25398. ]
  25399. ))
  25400. characterMakers.push(() => makeCharacter(
  25401. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25402. {
  25403. female: {
  25404. height: math.unit(19.3, "m"),
  25405. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25406. name: "Female",
  25407. image: {
  25408. source: "./media/characters/umok/female.svg",
  25409. extra: 2186 / 2078,
  25410. bottom: 87 / 2277
  25411. }
  25412. },
  25413. male: {
  25414. height: math.unit(19.5, "m"),
  25415. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25416. name: "Male",
  25417. image: {
  25418. source: "./media/characters/umok/male.svg",
  25419. extra: 2233 / 2140,
  25420. bottom: 24.4 / 2258
  25421. }
  25422. },
  25423. },
  25424. [
  25425. {
  25426. name: "Macro",
  25427. height: math.unit(19.3, "meters"),
  25428. default: true
  25429. },
  25430. ]
  25431. ))
  25432. characterMakers.push(() => makeCharacter(
  25433. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25434. {
  25435. female: {
  25436. height: math.unit(26.15, "m"),
  25437. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25438. name: "Female",
  25439. image: {
  25440. source: "./media/characters/joraxian/female.svg",
  25441. extra: 2912 / 2824,
  25442. bottom: 36 / 2956
  25443. }
  25444. },
  25445. male: {
  25446. height: math.unit(25.4, "m"),
  25447. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25448. name: "Male",
  25449. image: {
  25450. source: "./media/characters/joraxian/male.svg",
  25451. extra: 2877 / 2721,
  25452. bottom: 82 / 2967
  25453. }
  25454. },
  25455. },
  25456. [
  25457. {
  25458. name: "Macro",
  25459. height: math.unit(26.15, "meters"),
  25460. default: true
  25461. },
  25462. ]
  25463. ))
  25464. characterMakers.push(() => makeCharacter(
  25465. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25466. {
  25467. female: {
  25468. height: math.unit(21.6, "m"),
  25469. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25470. name: "Female",
  25471. image: {
  25472. source: "./media/characters/sthara/female.svg",
  25473. extra: 2516 / 2347,
  25474. bottom: 21.5 / 2537
  25475. }
  25476. },
  25477. male: {
  25478. height: math.unit(24, "m"),
  25479. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25480. name: "Male",
  25481. image: {
  25482. source: "./media/characters/sthara/male.svg",
  25483. extra: 2732 / 2607,
  25484. bottom: 23 / 2732
  25485. }
  25486. },
  25487. },
  25488. [
  25489. {
  25490. name: "Macro",
  25491. height: math.unit(21.6, "meters"),
  25492. default: true
  25493. },
  25494. ]
  25495. ))
  25496. characterMakers.push(() => makeCharacter(
  25497. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25498. {
  25499. front: {
  25500. height: math.unit(6 + 4 / 12, "feet"),
  25501. weight: math.unit(175, "lb"),
  25502. name: "Front",
  25503. image: {
  25504. source: "./media/characters/luka-bryzant/front.svg",
  25505. extra: 311 / 289,
  25506. bottom: 4 / 315
  25507. }
  25508. },
  25509. back: {
  25510. height: math.unit(6 + 4 / 12, "feet"),
  25511. weight: math.unit(175, "lb"),
  25512. name: "Back",
  25513. image: {
  25514. source: "./media/characters/luka-bryzant/back.svg",
  25515. extra: 311 / 289,
  25516. bottom: 3.8 / 313.7
  25517. }
  25518. },
  25519. },
  25520. [
  25521. {
  25522. name: "Micro",
  25523. height: math.unit(10, "inches")
  25524. },
  25525. {
  25526. name: "Normal",
  25527. height: math.unit(6 + 4 / 12, "feet"),
  25528. default: true
  25529. },
  25530. {
  25531. name: "Large",
  25532. height: math.unit(12, "feet")
  25533. },
  25534. ]
  25535. ))
  25536. characterMakers.push(() => makeCharacter(
  25537. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25538. {
  25539. front: {
  25540. height: math.unit(5 + 7 / 12, "feet"),
  25541. weight: math.unit(185, "lb"),
  25542. name: "Front",
  25543. image: {
  25544. source: "./media/characters/aman-aquila/front.svg",
  25545. extra: 1013 / 976,
  25546. bottom: 45.6 / 1057
  25547. }
  25548. },
  25549. side: {
  25550. height: math.unit(5 + 7 / 12, "feet"),
  25551. weight: math.unit(185, "lb"),
  25552. name: "Side",
  25553. image: {
  25554. source: "./media/characters/aman-aquila/side.svg",
  25555. extra: 1054 / 1011,
  25556. bottom: 15 / 1070
  25557. }
  25558. },
  25559. back: {
  25560. height: math.unit(5 + 7 / 12, "feet"),
  25561. weight: math.unit(185, "lb"),
  25562. name: "Back",
  25563. image: {
  25564. source: "./media/characters/aman-aquila/back.svg",
  25565. extra: 1026 / 970,
  25566. bottom: 12 / 1039
  25567. }
  25568. },
  25569. head: {
  25570. height: math.unit(1.211, "feet"),
  25571. name: "Head",
  25572. image: {
  25573. source: "./media/characters/aman-aquila/head.svg",
  25574. }
  25575. },
  25576. },
  25577. [
  25578. {
  25579. name: "Minimicro",
  25580. height: math.unit(0.057, "inches")
  25581. },
  25582. {
  25583. name: "Micro",
  25584. height: math.unit(7, "inches")
  25585. },
  25586. {
  25587. name: "Mini",
  25588. height: math.unit(3 + 7 / 12, "feet")
  25589. },
  25590. {
  25591. name: "Normal",
  25592. height: math.unit(5 + 7 / 12, "feet"),
  25593. default: true
  25594. },
  25595. {
  25596. name: "Macro",
  25597. height: math.unit(157 + 7 / 12, "feet")
  25598. },
  25599. {
  25600. name: "Megamacro",
  25601. height: math.unit(1557 + 7 / 12, "feet")
  25602. },
  25603. {
  25604. name: "Gigamacro",
  25605. height: math.unit(15557 + 7 / 12, "feet")
  25606. },
  25607. ]
  25608. ))
  25609. characterMakers.push(() => makeCharacter(
  25610. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25611. {
  25612. front: {
  25613. height: math.unit(3 + 2 / 12, "inches"),
  25614. weight: math.unit(0.3, "ounces"),
  25615. name: "Front",
  25616. image: {
  25617. source: "./media/characters/hiphae/front.svg",
  25618. extra: 1931 / 1683,
  25619. bottom: 24 / 1955
  25620. }
  25621. },
  25622. },
  25623. [
  25624. {
  25625. name: "Normal",
  25626. height: math.unit(3 + 1 / 2, "inches"),
  25627. default: true
  25628. },
  25629. ]
  25630. ))
  25631. characterMakers.push(() => makeCharacter(
  25632. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25633. {
  25634. front: {
  25635. height: math.unit(5 + 10 / 12, "feet"),
  25636. weight: math.unit(165, "lb"),
  25637. name: "Front",
  25638. image: {
  25639. source: "./media/characters/nicky/front.svg",
  25640. extra: 3144 / 2886,
  25641. bottom: 45.6 / 3192
  25642. }
  25643. },
  25644. back: {
  25645. height: math.unit(5 + 10 / 12, "feet"),
  25646. weight: math.unit(165, "lb"),
  25647. name: "Back",
  25648. image: {
  25649. source: "./media/characters/nicky/back.svg",
  25650. extra: 3055 / 2804,
  25651. bottom: 28.4 / 3087
  25652. }
  25653. },
  25654. frontclothed: {
  25655. height: math.unit(5 + 10 / 12, "feet"),
  25656. weight: math.unit(165, "lb"),
  25657. name: "Front-clothed",
  25658. image: {
  25659. source: "./media/characters/nicky/front-clothed.svg",
  25660. extra: 3184.9 / 2926.9,
  25661. bottom: 86.5 / 3239.9
  25662. }
  25663. },
  25664. foot: {
  25665. height: math.unit(1.16, "feet"),
  25666. name: "Foot",
  25667. image: {
  25668. source: "./media/characters/nicky/foot.svg"
  25669. }
  25670. },
  25671. feet: {
  25672. height: math.unit(1.34, "feet"),
  25673. name: "Feet",
  25674. image: {
  25675. source: "./media/characters/nicky/feet.svg"
  25676. }
  25677. },
  25678. maw: {
  25679. height: math.unit(0.9, "feet"),
  25680. name: "Maw",
  25681. image: {
  25682. source: "./media/characters/nicky/maw.svg"
  25683. }
  25684. },
  25685. },
  25686. [
  25687. {
  25688. name: "Normal",
  25689. height: math.unit(5 + 10 / 12, "feet"),
  25690. default: true
  25691. },
  25692. {
  25693. name: "Macro",
  25694. height: math.unit(60, "feet")
  25695. },
  25696. {
  25697. name: "Megamacro",
  25698. height: math.unit(1, "mile")
  25699. },
  25700. ]
  25701. ))
  25702. characterMakers.push(() => makeCharacter(
  25703. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25704. {
  25705. side: {
  25706. height: math.unit(10, "feet"),
  25707. weight: math.unit(600, "lb"),
  25708. name: "Side",
  25709. image: {
  25710. source: "./media/characters/blair/side.svg",
  25711. bottom: 16.6 / 475,
  25712. extra: 458 / 431
  25713. }
  25714. },
  25715. },
  25716. [
  25717. {
  25718. name: "Micro",
  25719. height: math.unit(8, "inches")
  25720. },
  25721. {
  25722. name: "Normal",
  25723. height: math.unit(10, "feet"),
  25724. default: true
  25725. },
  25726. {
  25727. name: "Macro",
  25728. height: math.unit(180, "feet")
  25729. },
  25730. ]
  25731. ))
  25732. characterMakers.push(() => makeCharacter(
  25733. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25734. {
  25735. front: {
  25736. height: math.unit(5 + 4 / 12, "feet"),
  25737. weight: math.unit(125, "lb"),
  25738. name: "Front",
  25739. image: {
  25740. source: "./media/characters/fisher/front.svg",
  25741. extra: 444 / 390,
  25742. bottom: 2 / 444.8
  25743. }
  25744. },
  25745. },
  25746. [
  25747. {
  25748. name: "Micro",
  25749. height: math.unit(4, "inches")
  25750. },
  25751. {
  25752. name: "Normal",
  25753. height: math.unit(5 + 4 / 12, "feet"),
  25754. default: true
  25755. },
  25756. {
  25757. name: "Macro",
  25758. height: math.unit(100, "feet")
  25759. },
  25760. ]
  25761. ))
  25762. characterMakers.push(() => makeCharacter(
  25763. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25764. {
  25765. front: {
  25766. height: math.unit(6.71, "feet"),
  25767. weight: math.unit(200, "lb"),
  25768. capacity: math.unit(1000000, "people"),
  25769. name: "Front",
  25770. image: {
  25771. source: "./media/characters/gliss/front.svg",
  25772. extra: 2347 / 2231,
  25773. bottom: 113 / 2462
  25774. }
  25775. },
  25776. hammerspaceSize: {
  25777. height: math.unit(6.71 * 717, "feet"),
  25778. weight: math.unit(200, "lb"),
  25779. capacity: math.unit(1000000, "people"),
  25780. name: "Hammerspace Size",
  25781. image: {
  25782. source: "./media/characters/gliss/front.svg",
  25783. extra: 2347 / 2231,
  25784. bottom: 113 / 2462
  25785. }
  25786. },
  25787. },
  25788. [
  25789. {
  25790. name: "Normal",
  25791. height: math.unit(6.71, "feet"),
  25792. default: true
  25793. },
  25794. ]
  25795. ))
  25796. characterMakers.push(() => makeCharacter(
  25797. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25798. {
  25799. side: {
  25800. height: math.unit(1.44, "m"),
  25801. weight: math.unit(80, "kg"),
  25802. name: "Side",
  25803. image: {
  25804. source: "./media/characters/dune-anderson/side.svg",
  25805. bottom: 49 / 1426
  25806. }
  25807. },
  25808. },
  25809. [
  25810. {
  25811. name: "Wolf-sized",
  25812. height: math.unit(1.44, "meters")
  25813. },
  25814. {
  25815. name: "Normal",
  25816. height: math.unit(5.05, "meters"),
  25817. default: true
  25818. },
  25819. {
  25820. name: "Big",
  25821. height: math.unit(14.4, "meters")
  25822. },
  25823. {
  25824. name: "Huge",
  25825. height: math.unit(144, "meters")
  25826. },
  25827. ]
  25828. ))
  25829. characterMakers.push(() => makeCharacter(
  25830. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25831. {
  25832. front: {
  25833. height: math.unit(7, "feet"),
  25834. weight: math.unit(425, "lb"),
  25835. name: "Front",
  25836. image: {
  25837. source: "./media/characters/hind/front.svg",
  25838. extra: 2091 / 1860,
  25839. bottom: 129 / 2220
  25840. }
  25841. },
  25842. back: {
  25843. height: math.unit(7, "feet"),
  25844. weight: math.unit(425, "lb"),
  25845. name: "Back",
  25846. image: {
  25847. source: "./media/characters/hind/back.svg",
  25848. extra: 2091 / 1860,
  25849. bottom: 24.6 / 2309
  25850. }
  25851. },
  25852. tail: {
  25853. height: math.unit(2.8, "feet"),
  25854. name: "Tail",
  25855. image: {
  25856. source: "./media/characters/hind/tail.svg"
  25857. }
  25858. },
  25859. head: {
  25860. height: math.unit(2.55, "feet"),
  25861. name: "Head",
  25862. image: {
  25863. source: "./media/characters/hind/head.svg"
  25864. }
  25865. },
  25866. },
  25867. [
  25868. {
  25869. name: "XS",
  25870. height: math.unit(0.7, "feet")
  25871. },
  25872. {
  25873. name: "Normal",
  25874. height: math.unit(7, "feet"),
  25875. default: true
  25876. },
  25877. {
  25878. name: "XL",
  25879. height: math.unit(70, "feet")
  25880. },
  25881. ]
  25882. ))
  25883. characterMakers.push(() => makeCharacter(
  25884. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25885. {
  25886. front: {
  25887. height: math.unit(2.1, "meters"),
  25888. weight: math.unit(150, "lb"),
  25889. name: "Front",
  25890. image: {
  25891. source: "./media/characters/tharquench-sizestealer/front.svg",
  25892. extra: 1605/1470,
  25893. bottom: 36/1641
  25894. }
  25895. },
  25896. frontAlt: {
  25897. height: math.unit(2.1, "meters"),
  25898. weight: math.unit(150, "lb"),
  25899. name: "Front (Alt)",
  25900. image: {
  25901. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25902. extra: 2318 / 2063,
  25903. bottom: 93.4 / 2410
  25904. }
  25905. },
  25906. },
  25907. [
  25908. {
  25909. name: "Nano",
  25910. height: math.unit(1, "mm")
  25911. },
  25912. {
  25913. name: "Micro",
  25914. height: math.unit(1, "cm")
  25915. },
  25916. {
  25917. name: "Normal",
  25918. height: math.unit(2.1, "meters"),
  25919. default: true
  25920. },
  25921. ]
  25922. ))
  25923. characterMakers.push(() => makeCharacter(
  25924. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25925. {
  25926. front: {
  25927. height: math.unit(7 + 5 / 12, "feet"),
  25928. weight: math.unit(357, "lb"),
  25929. name: "Front",
  25930. image: {
  25931. source: "./media/characters/solex-draconov/front.svg",
  25932. extra: 1993 / 1865,
  25933. bottom: 117 / 2111
  25934. }
  25935. },
  25936. },
  25937. [
  25938. {
  25939. name: "Natural Height",
  25940. height: math.unit(7 + 5 / 12, "feet"),
  25941. default: true
  25942. },
  25943. {
  25944. name: "Macro",
  25945. height: math.unit(350, "feet")
  25946. },
  25947. {
  25948. name: "Macro+",
  25949. height: math.unit(1000, "feet")
  25950. },
  25951. {
  25952. name: "Megamacro",
  25953. height: math.unit(20, "km")
  25954. },
  25955. {
  25956. name: "Megamacro+",
  25957. height: math.unit(1000, "km")
  25958. },
  25959. {
  25960. name: "Gigamacro",
  25961. height: math.unit(2.5, "Gm")
  25962. },
  25963. {
  25964. name: "Teramacro",
  25965. height: math.unit(15, "Tm")
  25966. },
  25967. {
  25968. name: "Galactic",
  25969. height: math.unit(30, "Zm")
  25970. },
  25971. {
  25972. name: "Universal",
  25973. height: math.unit(21000, "Ym")
  25974. },
  25975. {
  25976. name: "Omniversal",
  25977. height: math.unit(9.861e50, "Ym")
  25978. },
  25979. {
  25980. name: "Existential",
  25981. height: math.unit(1e300, "meters")
  25982. },
  25983. ]
  25984. ))
  25985. characterMakers.push(() => makeCharacter(
  25986. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25987. {
  25988. side: {
  25989. height: math.unit(25, "feet"),
  25990. weight: math.unit(90000, "lb"),
  25991. name: "Side",
  25992. image: {
  25993. source: "./media/characters/mandarax/side.svg",
  25994. extra: 614 / 332,
  25995. bottom: 55 / 630
  25996. }
  25997. },
  25998. lounging: {
  25999. height: math.unit(15.4, "feet"),
  26000. weight: math.unit(90000, "lb"),
  26001. name: "Lounging",
  26002. image: {
  26003. source: "./media/characters/mandarax/lounging.svg",
  26004. extra: 817/609,
  26005. bottom: 685/1502
  26006. }
  26007. },
  26008. head: {
  26009. height: math.unit(11.4, "feet"),
  26010. name: "Head",
  26011. image: {
  26012. source: "./media/characters/mandarax/head.svg"
  26013. }
  26014. },
  26015. belly: {
  26016. height: math.unit(33, "feet"),
  26017. name: "Belly",
  26018. capacity: math.unit(500, "people"),
  26019. image: {
  26020. source: "./media/characters/mandarax/belly.svg"
  26021. }
  26022. },
  26023. dick: {
  26024. height: math.unit(8.46, "feet"),
  26025. name: "Dick",
  26026. image: {
  26027. source: "./media/characters/mandarax/dick.svg"
  26028. }
  26029. },
  26030. top: {
  26031. height: math.unit(28, "meters"),
  26032. name: "Top",
  26033. image: {
  26034. source: "./media/characters/mandarax/top.svg"
  26035. }
  26036. },
  26037. },
  26038. [
  26039. {
  26040. name: "Normal",
  26041. height: math.unit(25, "feet"),
  26042. default: true
  26043. },
  26044. ]
  26045. ))
  26046. characterMakers.push(() => makeCharacter(
  26047. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26048. {
  26049. front: {
  26050. height: math.unit(5, "feet"),
  26051. weight: math.unit(90, "lb"),
  26052. name: "Front",
  26053. image: {
  26054. source: "./media/characters/pixil/front.svg",
  26055. extra: 2000 / 1618,
  26056. bottom: 12.3 / 2011
  26057. }
  26058. },
  26059. },
  26060. [
  26061. {
  26062. name: "Normal",
  26063. height: math.unit(5, "feet"),
  26064. default: true
  26065. },
  26066. {
  26067. name: "Megamacro",
  26068. height: math.unit(10, "miles"),
  26069. },
  26070. ]
  26071. ))
  26072. characterMakers.push(() => makeCharacter(
  26073. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26074. {
  26075. front: {
  26076. height: math.unit(7 + 2 / 12, "feet"),
  26077. weight: math.unit(200, "lb"),
  26078. name: "Front",
  26079. image: {
  26080. source: "./media/characters/angel/front.svg",
  26081. extra: 1830 / 1737,
  26082. bottom: 22.6 / 1854,
  26083. }
  26084. },
  26085. },
  26086. [
  26087. {
  26088. name: "Normal",
  26089. height: math.unit(7 + 2 / 12, "feet"),
  26090. default: true
  26091. },
  26092. {
  26093. name: "Macro",
  26094. height: math.unit(1000, "feet")
  26095. },
  26096. {
  26097. name: "Megamacro",
  26098. height: math.unit(2, "miles")
  26099. },
  26100. {
  26101. name: "Gigamacro",
  26102. height: math.unit(20, "earths")
  26103. },
  26104. ]
  26105. ))
  26106. characterMakers.push(() => makeCharacter(
  26107. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26108. {
  26109. front: {
  26110. height: math.unit(5, "feet"),
  26111. weight: math.unit(180, "lb"),
  26112. name: "Front",
  26113. image: {
  26114. source: "./media/characters/mekana/front.svg",
  26115. extra: 1671 / 1605,
  26116. bottom: 3.5 / 1691
  26117. }
  26118. },
  26119. side: {
  26120. height: math.unit(5, "feet"),
  26121. weight: math.unit(180, "lb"),
  26122. name: "Side",
  26123. image: {
  26124. source: "./media/characters/mekana/side.svg",
  26125. extra: 1671 / 1605,
  26126. bottom: 3.5 / 1691
  26127. }
  26128. },
  26129. back: {
  26130. height: math.unit(5, "feet"),
  26131. weight: math.unit(180, "lb"),
  26132. name: "Back",
  26133. image: {
  26134. source: "./media/characters/mekana/back.svg",
  26135. extra: 1671 / 1605,
  26136. bottom: 3.5 / 1691
  26137. }
  26138. },
  26139. },
  26140. [
  26141. {
  26142. name: "Normal",
  26143. height: math.unit(5, "feet"),
  26144. default: true
  26145. },
  26146. ]
  26147. ))
  26148. characterMakers.push(() => makeCharacter(
  26149. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26150. {
  26151. front: {
  26152. height: math.unit(4 + 6 / 12, "feet"),
  26153. weight: math.unit(80, "lb"),
  26154. name: "Front",
  26155. image: {
  26156. source: "./media/characters/pixie/front.svg",
  26157. extra: 1924 / 1825,
  26158. bottom: 22.4 / 1946
  26159. }
  26160. },
  26161. },
  26162. [
  26163. {
  26164. name: "Normal",
  26165. height: math.unit(4 + 6 / 12, "feet"),
  26166. default: true
  26167. },
  26168. {
  26169. name: "Macro",
  26170. height: math.unit(40, "feet")
  26171. },
  26172. ]
  26173. ))
  26174. characterMakers.push(() => makeCharacter(
  26175. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26176. {
  26177. front: {
  26178. height: math.unit(2.1, "meters"),
  26179. weight: math.unit(200, "lb"),
  26180. name: "Front",
  26181. image: {
  26182. source: "./media/characters/the-lascivious/front.svg",
  26183. extra: 1 / 0.893,
  26184. bottom: 3.5 / 573.7
  26185. }
  26186. },
  26187. },
  26188. [
  26189. {
  26190. name: "Human Scale",
  26191. height: math.unit(2.1, "meters")
  26192. },
  26193. {
  26194. name: "Wolxi Scale",
  26195. height: math.unit(46.2, "m"),
  26196. default: true
  26197. },
  26198. {
  26199. name: "Boinker of Buildings",
  26200. height: math.unit(10, "km")
  26201. },
  26202. {
  26203. name: "Shagger of Skyscrapers",
  26204. height: math.unit(40, "km")
  26205. },
  26206. {
  26207. name: "Banger of Boroughs",
  26208. height: math.unit(4000, "km")
  26209. },
  26210. {
  26211. name: "Screwer of States",
  26212. height: math.unit(100000, "km")
  26213. },
  26214. {
  26215. name: "Pounder of Planets",
  26216. height: math.unit(2000000, "km")
  26217. },
  26218. ]
  26219. ))
  26220. characterMakers.push(() => makeCharacter(
  26221. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26222. {
  26223. front: {
  26224. height: math.unit(6, "feet"),
  26225. weight: math.unit(150, "lb"),
  26226. name: "Front",
  26227. image: {
  26228. source: "./media/characters/aj/front.svg",
  26229. extra: 2039 / 1562,
  26230. bottom: 40 / 2079
  26231. }
  26232. },
  26233. },
  26234. [
  26235. {
  26236. name: "Normal",
  26237. height: math.unit(11 + 6 / 12, "feet"),
  26238. default: true
  26239. },
  26240. {
  26241. name: "Megamacro",
  26242. height: math.unit(60, "megameters")
  26243. },
  26244. ]
  26245. ))
  26246. characterMakers.push(() => makeCharacter(
  26247. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26248. {
  26249. side: {
  26250. height: math.unit(31 + 8 / 12, "feet"),
  26251. weight: math.unit(75000, "kg"),
  26252. name: "Side",
  26253. image: {
  26254. source: "./media/characters/koros/side.svg",
  26255. extra: 1442 / 1297,
  26256. bottom: 122.7 / 1562
  26257. }
  26258. },
  26259. dicksKingsCrown: {
  26260. height: math.unit(6, "feet"),
  26261. name: "Dicks (King's Crown)",
  26262. image: {
  26263. source: "./media/characters/koros/dicks-kings-crown.svg"
  26264. }
  26265. },
  26266. dicksTailSet: {
  26267. height: math.unit(3, "feet"),
  26268. name: "Dicks (Tail Set)",
  26269. image: {
  26270. source: "./media/characters/koros/dicks-tail-set.svg"
  26271. }
  26272. },
  26273. dickCumming: {
  26274. height: math.unit(7.98, "feet"),
  26275. name: "Dick (Cumming)",
  26276. image: {
  26277. source: "./media/characters/koros/dick-cumming.svg"
  26278. }
  26279. },
  26280. dicksBack: {
  26281. height: math.unit(5.9, "feet"),
  26282. name: "Dicks (Back)",
  26283. image: {
  26284. source: "./media/characters/koros/dicks-back.svg"
  26285. }
  26286. },
  26287. dicksFront: {
  26288. height: math.unit(3.72, "feet"),
  26289. name: "Dicks (Front)",
  26290. image: {
  26291. source: "./media/characters/koros/dicks-front.svg"
  26292. }
  26293. },
  26294. dicksPeeking: {
  26295. height: math.unit(3.0, "feet"),
  26296. name: "Dicks (Peeking)",
  26297. image: {
  26298. source: "./media/characters/koros/dicks-peeking.svg"
  26299. }
  26300. },
  26301. eye: {
  26302. height: math.unit(1.7, "feet"),
  26303. name: "Eye",
  26304. image: {
  26305. source: "./media/characters/koros/eye.svg"
  26306. }
  26307. },
  26308. headFront: {
  26309. height: math.unit(11.69, "feet"),
  26310. name: "Head (Front)",
  26311. image: {
  26312. source: "./media/characters/koros/head-front.svg"
  26313. }
  26314. },
  26315. headSide: {
  26316. height: math.unit(14, "feet"),
  26317. name: "Head (Side)",
  26318. image: {
  26319. source: "./media/characters/koros/head-side.svg"
  26320. }
  26321. },
  26322. leg: {
  26323. height: math.unit(17, "feet"),
  26324. name: "Leg",
  26325. image: {
  26326. source: "./media/characters/koros/leg.svg"
  26327. }
  26328. },
  26329. mawSide: {
  26330. height: math.unit(12.8, "feet"),
  26331. name: "Maw (Side)",
  26332. image: {
  26333. source: "./media/characters/koros/maw-side.svg"
  26334. }
  26335. },
  26336. mawSpitting: {
  26337. height: math.unit(17, "feet"),
  26338. name: "Maw (Spitting)",
  26339. image: {
  26340. source: "./media/characters/koros/maw-spitting.svg"
  26341. }
  26342. },
  26343. slit: {
  26344. height: math.unit(2.8, "feet"),
  26345. name: "Slit",
  26346. image: {
  26347. source: "./media/characters/koros/slit.svg"
  26348. }
  26349. },
  26350. stomach: {
  26351. height: math.unit(6.8, "feet"),
  26352. capacity: math.unit(20, "people"),
  26353. name: "Stomach",
  26354. image: {
  26355. source: "./media/characters/koros/stomach.svg"
  26356. }
  26357. },
  26358. wingspanBottom: {
  26359. height: math.unit(114, "feet"),
  26360. name: "Wingspan (Bottom)",
  26361. image: {
  26362. source: "./media/characters/koros/wingspan-bottom.svg"
  26363. }
  26364. },
  26365. wingspanTop: {
  26366. height: math.unit(104, "feet"),
  26367. name: "Wingspan (Top)",
  26368. image: {
  26369. source: "./media/characters/koros/wingspan-top.svg"
  26370. }
  26371. },
  26372. },
  26373. [
  26374. {
  26375. name: "Normal",
  26376. height: math.unit(31 + 8 / 12, "feet"),
  26377. default: true
  26378. },
  26379. ]
  26380. ))
  26381. characterMakers.push(() => makeCharacter(
  26382. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26383. {
  26384. front: {
  26385. height: math.unit(18 + 5 / 12, "feet"),
  26386. weight: math.unit(3750, "kg"),
  26387. name: "Front",
  26388. image: {
  26389. source: "./media/characters/vexx/front.svg",
  26390. extra: 426 / 396,
  26391. bottom: 31.5 / 458
  26392. }
  26393. },
  26394. maw: {
  26395. height: math.unit(6, "feet"),
  26396. name: "Maw",
  26397. image: {
  26398. source: "./media/characters/vexx/maw.svg"
  26399. }
  26400. },
  26401. },
  26402. [
  26403. {
  26404. name: "Normal",
  26405. height: math.unit(18 + 5 / 12, "feet"),
  26406. default: true
  26407. },
  26408. ]
  26409. ))
  26410. characterMakers.push(() => makeCharacter(
  26411. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26412. {
  26413. front: {
  26414. height: math.unit(17 + 6 / 12, "feet"),
  26415. weight: math.unit(150, "lb"),
  26416. name: "Front",
  26417. image: {
  26418. source: "./media/characters/baadra/front.svg",
  26419. extra: 1694/1553,
  26420. bottom: 179/1873
  26421. }
  26422. },
  26423. frontAlt: {
  26424. height: math.unit(17 + 6 / 12, "feet"),
  26425. weight: math.unit(150, "lb"),
  26426. name: "Front (Alt)",
  26427. image: {
  26428. source: "./media/characters/baadra/front-alt.svg",
  26429. extra: 3137 / 2890,
  26430. bottom: 168.4 / 3305
  26431. }
  26432. },
  26433. back: {
  26434. height: math.unit(17 + 6 / 12, "feet"),
  26435. weight: math.unit(150, "lb"),
  26436. name: "Back",
  26437. image: {
  26438. source: "./media/characters/baadra/back.svg",
  26439. extra: 3142 / 2890,
  26440. bottom: 220 / 3371
  26441. }
  26442. },
  26443. head: {
  26444. height: math.unit(5.45, "feet"),
  26445. name: "Head",
  26446. image: {
  26447. source: "./media/characters/baadra/head.svg"
  26448. }
  26449. },
  26450. headAngry: {
  26451. height: math.unit(4.95, "feet"),
  26452. name: "Head (Angry)",
  26453. image: {
  26454. source: "./media/characters/baadra/head-angry.svg"
  26455. }
  26456. },
  26457. headOpen: {
  26458. height: math.unit(6, "feet"),
  26459. name: "Head (Open)",
  26460. image: {
  26461. source: "./media/characters/baadra/head-open.svg"
  26462. }
  26463. },
  26464. },
  26465. [
  26466. {
  26467. name: "Normal",
  26468. height: math.unit(17 + 6 / 12, "feet"),
  26469. default: true
  26470. },
  26471. ]
  26472. ))
  26473. characterMakers.push(() => makeCharacter(
  26474. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26475. {
  26476. front: {
  26477. height: math.unit(7 + 3 / 12, "feet"),
  26478. weight: math.unit(180, "lb"),
  26479. name: "Front",
  26480. image: {
  26481. source: "./media/characters/juri/front.svg",
  26482. extra: 1401 / 1237,
  26483. bottom: 18.5 / 1418
  26484. }
  26485. },
  26486. side: {
  26487. height: math.unit(7 + 3 / 12, "feet"),
  26488. weight: math.unit(180, "lb"),
  26489. name: "Side",
  26490. image: {
  26491. source: "./media/characters/juri/side.svg",
  26492. extra: 1424 / 1242,
  26493. bottom: 18.5 / 1447
  26494. }
  26495. },
  26496. sitting: {
  26497. height: math.unit(6, "feet"),
  26498. weight: math.unit(180, "lb"),
  26499. name: "Sitting",
  26500. image: {
  26501. source: "./media/characters/juri/sitting.svg",
  26502. extra: 1270 / 1143,
  26503. bottom: 100 / 1343
  26504. }
  26505. },
  26506. back: {
  26507. height: math.unit(7 + 3 / 12, "feet"),
  26508. weight: math.unit(180, "lb"),
  26509. name: "Back",
  26510. image: {
  26511. source: "./media/characters/juri/back.svg",
  26512. extra: 1377 / 1240,
  26513. bottom: 23.7 / 1405
  26514. }
  26515. },
  26516. maw: {
  26517. height: math.unit(2.8, "feet"),
  26518. name: "Maw",
  26519. image: {
  26520. source: "./media/characters/juri/maw.svg"
  26521. }
  26522. },
  26523. stomach: {
  26524. height: math.unit(0.89, "feet"),
  26525. capacity: math.unit(4, "liters"),
  26526. name: "Stomach",
  26527. image: {
  26528. source: "./media/characters/juri/stomach.svg"
  26529. }
  26530. },
  26531. },
  26532. [
  26533. {
  26534. name: "Normal",
  26535. height: math.unit(7 + 3 / 12, "feet"),
  26536. default: true
  26537. },
  26538. ]
  26539. ))
  26540. characterMakers.push(() => makeCharacter(
  26541. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26542. {
  26543. fox: {
  26544. height: math.unit(5 + 6 / 12, "feet"),
  26545. weight: math.unit(140, "lb"),
  26546. name: "Fox",
  26547. image: {
  26548. source: "./media/characters/maxene-sita/fox.svg",
  26549. extra: 146 / 138,
  26550. bottom: 2.1 / 148.19
  26551. }
  26552. },
  26553. foxLaying: {
  26554. height: math.unit(1.70, "feet"),
  26555. weight: math.unit(140, "lb"),
  26556. name: "Fox (Laying)",
  26557. image: {
  26558. source: "./media/characters/maxene-sita/fox-laying.svg",
  26559. extra: 910 / 572,
  26560. bottom: 71 / 981
  26561. }
  26562. },
  26563. kitsune: {
  26564. height: math.unit(10, "feet"),
  26565. weight: math.unit(800, "lb"),
  26566. name: "Kitsune",
  26567. image: {
  26568. source: "./media/characters/maxene-sita/kitsune.svg",
  26569. extra: 185 / 176,
  26570. bottom: 4.7 / 189.9
  26571. }
  26572. },
  26573. hellhound: {
  26574. height: math.unit(10, "feet"),
  26575. weight: math.unit(700, "lb"),
  26576. name: "Hellhound",
  26577. image: {
  26578. source: "./media/characters/maxene-sita/hellhound.svg",
  26579. extra: 1600 / 1545,
  26580. bottom: 81 / 1681
  26581. }
  26582. },
  26583. },
  26584. [
  26585. {
  26586. name: "Normal",
  26587. height: math.unit(5 + 6 / 12, "feet"),
  26588. default: true
  26589. },
  26590. ]
  26591. ))
  26592. characterMakers.push(() => makeCharacter(
  26593. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26594. {
  26595. front: {
  26596. height: math.unit(3 + 4 / 12, "feet"),
  26597. weight: math.unit(70, "lb"),
  26598. name: "Front",
  26599. image: {
  26600. source: "./media/characters/maia/front.svg",
  26601. extra: 227 / 219.5,
  26602. bottom: 40 / 267
  26603. }
  26604. },
  26605. back: {
  26606. height: math.unit(3 + 4 / 12, "feet"),
  26607. weight: math.unit(70, "lb"),
  26608. name: "Back",
  26609. image: {
  26610. source: "./media/characters/maia/back.svg",
  26611. extra: 237 / 225
  26612. }
  26613. },
  26614. },
  26615. [
  26616. {
  26617. name: "Normal",
  26618. height: math.unit(3 + 4 / 12, "feet"),
  26619. default: true
  26620. },
  26621. ]
  26622. ))
  26623. characterMakers.push(() => makeCharacter(
  26624. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26625. {
  26626. front: {
  26627. height: math.unit(5 + 10 / 12, "feet"),
  26628. weight: math.unit(197, "lb"),
  26629. name: "Front",
  26630. image: {
  26631. source: "./media/characters/jabaro/front.svg",
  26632. extra: 225 / 216,
  26633. bottom: 5.06 / 230
  26634. }
  26635. },
  26636. back: {
  26637. height: math.unit(5 + 10 / 12, "feet"),
  26638. weight: math.unit(197, "lb"),
  26639. name: "Back",
  26640. image: {
  26641. source: "./media/characters/jabaro/back.svg",
  26642. extra: 225 / 219,
  26643. bottom: 1.9 / 227
  26644. }
  26645. },
  26646. },
  26647. [
  26648. {
  26649. name: "Normal",
  26650. height: math.unit(5 + 10 / 12, "feet"),
  26651. default: true
  26652. },
  26653. ]
  26654. ))
  26655. characterMakers.push(() => makeCharacter(
  26656. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26657. {
  26658. front: {
  26659. height: math.unit(5 + 8 / 12, "feet"),
  26660. weight: math.unit(139, "lb"),
  26661. name: "Front",
  26662. image: {
  26663. source: "./media/characters/risa/front.svg",
  26664. extra: 270 / 260,
  26665. bottom: 11.2 / 282
  26666. }
  26667. },
  26668. back: {
  26669. height: math.unit(5 + 8 / 12, "feet"),
  26670. weight: math.unit(139, "lb"),
  26671. name: "Back",
  26672. image: {
  26673. source: "./media/characters/risa/back.svg",
  26674. extra: 264 / 255,
  26675. bottom: 4 / 268
  26676. }
  26677. },
  26678. },
  26679. [
  26680. {
  26681. name: "Normal",
  26682. height: math.unit(5 + 8 / 12, "feet"),
  26683. default: true
  26684. },
  26685. ]
  26686. ))
  26687. characterMakers.push(() => makeCharacter(
  26688. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26689. {
  26690. front: {
  26691. height: math.unit(2 + 11 / 12, "feet"),
  26692. weight: math.unit(30, "lb"),
  26693. name: "Front",
  26694. image: {
  26695. source: "./media/characters/weatley/front.svg",
  26696. bottom: 10.7 / 414,
  26697. extra: 403.5 / 362
  26698. }
  26699. },
  26700. back: {
  26701. height: math.unit(2 + 11 / 12, "feet"),
  26702. weight: math.unit(30, "lb"),
  26703. name: "Back",
  26704. image: {
  26705. source: "./media/characters/weatley/back.svg",
  26706. bottom: 10.7 / 414,
  26707. extra: 403.5 / 362
  26708. }
  26709. },
  26710. },
  26711. [
  26712. {
  26713. name: "Normal",
  26714. height: math.unit(2 + 11 / 12, "feet"),
  26715. default: true
  26716. },
  26717. ]
  26718. ))
  26719. characterMakers.push(() => makeCharacter(
  26720. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26721. {
  26722. front: {
  26723. height: math.unit(5 + 2 / 12, "feet"),
  26724. weight: math.unit(50, "kg"),
  26725. name: "Front",
  26726. image: {
  26727. source: "./media/characters/mercury-crescent/front.svg",
  26728. extra: 1088 / 1033,
  26729. bottom: 18.9 / 1109
  26730. }
  26731. },
  26732. },
  26733. [
  26734. {
  26735. name: "Normal",
  26736. height: math.unit(5 + 2 / 12, "feet"),
  26737. default: true
  26738. },
  26739. ]
  26740. ))
  26741. characterMakers.push(() => makeCharacter(
  26742. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26743. {
  26744. front: {
  26745. height: math.unit(2, "feet"),
  26746. weight: math.unit(15, "kg"),
  26747. name: "Front",
  26748. image: {
  26749. source: "./media/characters/diamond-jones/front.svg",
  26750. extra: 727/723,
  26751. bottom: 46/773
  26752. }
  26753. },
  26754. },
  26755. [
  26756. {
  26757. name: "Normal",
  26758. height: math.unit(2, "feet"),
  26759. default: true
  26760. },
  26761. ]
  26762. ))
  26763. characterMakers.push(() => makeCharacter(
  26764. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26765. {
  26766. front: {
  26767. height: math.unit(3, "feet"),
  26768. weight: math.unit(30, "kg"),
  26769. name: "Front",
  26770. image: {
  26771. source: "./media/characters/sweet-bit/front.svg",
  26772. extra: 675 / 567,
  26773. bottom: 27.7 / 703
  26774. }
  26775. },
  26776. },
  26777. [
  26778. {
  26779. name: "Normal",
  26780. height: math.unit(3, "feet"),
  26781. default: true
  26782. },
  26783. ]
  26784. ))
  26785. characterMakers.push(() => makeCharacter(
  26786. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26787. {
  26788. side: {
  26789. height: math.unit(9.178, "feet"),
  26790. weight: math.unit(500, "lb"),
  26791. name: "Side",
  26792. image: {
  26793. source: "./media/characters/umbrazen/side.svg",
  26794. extra: 1730 / 1473,
  26795. bottom: 34.6 / 1765
  26796. }
  26797. },
  26798. },
  26799. [
  26800. {
  26801. name: "Normal",
  26802. height: math.unit(9.178, "feet"),
  26803. default: true
  26804. },
  26805. ]
  26806. ))
  26807. characterMakers.push(() => makeCharacter(
  26808. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26809. {
  26810. front: {
  26811. height: math.unit(10, "feet"),
  26812. weight: math.unit(750, "lb"),
  26813. name: "Front",
  26814. image: {
  26815. source: "./media/characters/arlist/front.svg",
  26816. extra: 961 / 778,
  26817. bottom: 6.2 / 986
  26818. }
  26819. },
  26820. },
  26821. [
  26822. {
  26823. name: "Normal",
  26824. height: math.unit(10, "feet"),
  26825. default: true
  26826. },
  26827. ]
  26828. ))
  26829. characterMakers.push(() => makeCharacter(
  26830. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26831. {
  26832. front: {
  26833. height: math.unit(5 + 1 / 12, "feet"),
  26834. weight: math.unit(110, "lb"),
  26835. name: "Front",
  26836. image: {
  26837. source: "./media/characters/aradel/front.svg",
  26838. extra: 324 / 303,
  26839. bottom: 3.6 / 329.4
  26840. }
  26841. },
  26842. },
  26843. [
  26844. {
  26845. name: "Normal",
  26846. height: math.unit(5 + 1 / 12, "feet"),
  26847. default: true
  26848. },
  26849. ]
  26850. ))
  26851. characterMakers.push(() => makeCharacter(
  26852. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26853. {
  26854. dressed: {
  26855. height: math.unit(3 + 8 / 12, "feet"),
  26856. weight: math.unit(50, "lb"),
  26857. name: "Dressed",
  26858. image: {
  26859. source: "./media/characters/serryn/dressed.svg",
  26860. extra: 1792 / 1656,
  26861. bottom: 43.5 / 1840
  26862. }
  26863. },
  26864. nude: {
  26865. height: math.unit(3 + 8 / 12, "feet"),
  26866. weight: math.unit(50, "lb"),
  26867. name: "Nude",
  26868. image: {
  26869. source: "./media/characters/serryn/nude.svg",
  26870. extra: 1792 / 1656,
  26871. bottom: 43.5 / 1840
  26872. }
  26873. },
  26874. },
  26875. [
  26876. {
  26877. name: "Normal",
  26878. height: math.unit(3 + 8 / 12, "feet"),
  26879. default: true
  26880. },
  26881. ]
  26882. ))
  26883. characterMakers.push(() => makeCharacter(
  26884. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26885. {
  26886. front: {
  26887. height: math.unit(7 + 10 / 12, "feet"),
  26888. weight: math.unit(255, "lb"),
  26889. name: "Front",
  26890. image: {
  26891. source: "./media/characters/xavier-thyme/front.svg",
  26892. extra: 3733 / 3642,
  26893. bottom: 131 / 3869
  26894. }
  26895. },
  26896. frontRaven: {
  26897. height: math.unit(7 + 10 / 12, "feet"),
  26898. weight: math.unit(255, "lb"),
  26899. name: "Front (Raven)",
  26900. image: {
  26901. source: "./media/characters/xavier-thyme/front-raven.svg",
  26902. extra: 4385 / 3642,
  26903. bottom: 131 / 4517
  26904. }
  26905. },
  26906. },
  26907. [
  26908. {
  26909. name: "Normal",
  26910. height: math.unit(7 + 10 / 12, "feet"),
  26911. default: true
  26912. },
  26913. ]
  26914. ))
  26915. characterMakers.push(() => makeCharacter(
  26916. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26917. {
  26918. front: {
  26919. height: math.unit(1.6, "m"),
  26920. weight: math.unit(50, "kg"),
  26921. name: "Front",
  26922. image: {
  26923. source: "./media/characters/kiki/front.svg",
  26924. extra: 4682 / 3610,
  26925. bottom: 115 / 4777
  26926. }
  26927. },
  26928. },
  26929. [
  26930. {
  26931. name: "Normal",
  26932. height: math.unit(1.6, "meters"),
  26933. default: true
  26934. },
  26935. ]
  26936. ))
  26937. characterMakers.push(() => makeCharacter(
  26938. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26939. {
  26940. front: {
  26941. height: math.unit(50, "m"),
  26942. weight: math.unit(500, "tonnes"),
  26943. name: "Front",
  26944. image: {
  26945. source: "./media/characters/ryoko/front.svg",
  26946. extra: 4632 / 3926,
  26947. bottom: 193 / 4823
  26948. }
  26949. },
  26950. },
  26951. [
  26952. {
  26953. name: "Normal",
  26954. height: math.unit(50, "meters"),
  26955. default: true
  26956. },
  26957. ]
  26958. ))
  26959. characterMakers.push(() => makeCharacter(
  26960. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26961. {
  26962. front: {
  26963. height: math.unit(30, "m"),
  26964. weight: math.unit(22, "tonnes"),
  26965. name: "Front",
  26966. image: {
  26967. source: "./media/characters/elio/front.svg",
  26968. extra: 4582 / 3720,
  26969. bottom: 236 / 4828
  26970. }
  26971. },
  26972. },
  26973. [
  26974. {
  26975. name: "Normal",
  26976. height: math.unit(30, "meters"),
  26977. default: true
  26978. },
  26979. ]
  26980. ))
  26981. characterMakers.push(() => makeCharacter(
  26982. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26983. {
  26984. front: {
  26985. height: math.unit(6 + 3 / 12, "feet"),
  26986. weight: math.unit(120, "lb"),
  26987. name: "Front",
  26988. image: {
  26989. source: "./media/characters/azura/front.svg",
  26990. extra: 1149 / 1135,
  26991. bottom: 45 / 1194
  26992. }
  26993. },
  26994. frontClothed: {
  26995. height: math.unit(6 + 3 / 12, "feet"),
  26996. weight: math.unit(120, "lb"),
  26997. name: "Front (Clothed)",
  26998. image: {
  26999. source: "./media/characters/azura/front-clothed.svg",
  27000. extra: 1149 / 1135,
  27001. bottom: 45 / 1194
  27002. }
  27003. },
  27004. },
  27005. [
  27006. {
  27007. name: "Normal",
  27008. height: math.unit(6 + 3 / 12, "feet"),
  27009. default: true
  27010. },
  27011. {
  27012. name: "Macro",
  27013. height: math.unit(20 + 6 / 12, "feet")
  27014. },
  27015. {
  27016. name: "Megamacro",
  27017. height: math.unit(12, "miles")
  27018. },
  27019. {
  27020. name: "Gigamacro",
  27021. height: math.unit(10000, "miles")
  27022. },
  27023. {
  27024. name: "Teramacro",
  27025. height: math.unit(900000, "miles")
  27026. },
  27027. ]
  27028. ))
  27029. characterMakers.push(() => makeCharacter(
  27030. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27031. {
  27032. front: {
  27033. height: math.unit(12, "feet"),
  27034. weight: math.unit(1, "ton"),
  27035. capacity: math.unit(660000, "gallons"),
  27036. name: "Front",
  27037. image: {
  27038. source: "./media/characters/zeus/front.svg",
  27039. extra: 5005 / 4717,
  27040. bottom: 363 / 5388
  27041. }
  27042. },
  27043. },
  27044. [
  27045. {
  27046. name: "Normal",
  27047. height: math.unit(12, "feet")
  27048. },
  27049. {
  27050. name: "Preferred Size",
  27051. height: math.unit(0.5, "miles"),
  27052. default: true
  27053. },
  27054. {
  27055. name: "Giga Horse",
  27056. height: math.unit(300, "miles")
  27057. },
  27058. {
  27059. name: "Riding Planets",
  27060. height: math.unit(30, "megameters")
  27061. },
  27062. {
  27063. name: "Cosmic Giant",
  27064. height: math.unit(3, "zettameters")
  27065. },
  27066. {
  27067. name: "Breeding God",
  27068. height: math.unit(9.92e22, "yottameters")
  27069. },
  27070. ]
  27071. ))
  27072. characterMakers.push(() => makeCharacter(
  27073. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27074. {
  27075. side: {
  27076. height: math.unit(9, "feet"),
  27077. weight: math.unit(1500, "kg"),
  27078. name: "Side",
  27079. image: {
  27080. source: "./media/characters/fang/side.svg",
  27081. extra: 924 / 866,
  27082. bottom: 47.5 / 972.3
  27083. }
  27084. },
  27085. },
  27086. [
  27087. {
  27088. name: "Normal",
  27089. height: math.unit(9, "feet"),
  27090. default: true
  27091. },
  27092. {
  27093. name: "Macro",
  27094. height: math.unit(75 + 6 / 12, "feet")
  27095. },
  27096. {
  27097. name: "Teramacro",
  27098. height: math.unit(50000, "miles")
  27099. },
  27100. ]
  27101. ))
  27102. characterMakers.push(() => makeCharacter(
  27103. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27104. {
  27105. front: {
  27106. height: math.unit(10, "feet"),
  27107. weight: math.unit(2, "tons"),
  27108. name: "Front",
  27109. image: {
  27110. source: "./media/characters/rekhit/front.svg",
  27111. extra: 2796 / 2590,
  27112. bottom: 225 / 3022
  27113. }
  27114. },
  27115. },
  27116. [
  27117. {
  27118. name: "Normal",
  27119. height: math.unit(10, "feet"),
  27120. default: true
  27121. },
  27122. {
  27123. name: "Macro",
  27124. height: math.unit(500, "feet")
  27125. },
  27126. ]
  27127. ))
  27128. characterMakers.push(() => makeCharacter(
  27129. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27130. {
  27131. front: {
  27132. height: math.unit(7 + 6.451 / 12, "feet"),
  27133. weight: math.unit(310, "lb"),
  27134. name: "Front",
  27135. image: {
  27136. source: "./media/characters/dahlia-verrick/front.svg",
  27137. extra: 1488 / 1365,
  27138. bottom: 6.2 / 1495
  27139. }
  27140. },
  27141. back: {
  27142. height: math.unit(7 + 6.451 / 12, "feet"),
  27143. weight: math.unit(310, "lb"),
  27144. name: "Back",
  27145. image: {
  27146. source: "./media/characters/dahlia-verrick/back.svg",
  27147. extra: 1472 / 1351,
  27148. bottom: 5.28 / 1477
  27149. }
  27150. },
  27151. frontBusiness: {
  27152. height: math.unit(7 + 6.451 / 12, "feet"),
  27153. weight: math.unit(200, "lb"),
  27154. name: "Front (Business)",
  27155. image: {
  27156. source: "./media/characters/dahlia-verrick/front-business.svg",
  27157. extra: 1478 / 1381,
  27158. bottom: 5.5 / 1484
  27159. }
  27160. },
  27161. frontCasual: {
  27162. height: math.unit(7 + 6.451 / 12, "feet"),
  27163. weight: math.unit(200, "lb"),
  27164. name: "Front (Casual)",
  27165. image: {
  27166. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27167. extra: 1478 / 1381,
  27168. bottom: 5.5 / 1484
  27169. }
  27170. },
  27171. },
  27172. [
  27173. {
  27174. name: "Travel-Sized",
  27175. height: math.unit(7.45, "inches")
  27176. },
  27177. {
  27178. name: "Normal",
  27179. height: math.unit(7 + 6.451 / 12, "feet"),
  27180. default: true
  27181. },
  27182. {
  27183. name: "Hitting the Town",
  27184. height: math.unit(37 + 8 / 12, "feet")
  27185. },
  27186. {
  27187. name: "Stomp in the Suburbs",
  27188. height: math.unit(964 + 9.728 / 12, "feet")
  27189. },
  27190. {
  27191. name: "Sit on the City",
  27192. height: math.unit(61747 + 10.592 / 12, "feet")
  27193. },
  27194. {
  27195. name: "Glomp the Globe",
  27196. height: math.unit(252919327 + 4.832 / 12, "feet")
  27197. },
  27198. ]
  27199. ))
  27200. characterMakers.push(() => makeCharacter(
  27201. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27202. {
  27203. front: {
  27204. height: math.unit(6 + 4 / 12, "feet"),
  27205. weight: math.unit(320, "lb"),
  27206. name: "Front",
  27207. image: {
  27208. source: "./media/characters/balina-mahigan/front.svg",
  27209. extra: 447 / 428,
  27210. bottom: 18 / 466
  27211. }
  27212. },
  27213. back: {
  27214. height: math.unit(6 + 4 / 12, "feet"),
  27215. weight: math.unit(320, "lb"),
  27216. name: "Back",
  27217. image: {
  27218. source: "./media/characters/balina-mahigan/back.svg",
  27219. extra: 445 / 428,
  27220. bottom: 4.07 / 448
  27221. }
  27222. },
  27223. arm: {
  27224. height: math.unit(1.88, "feet"),
  27225. name: "Arm",
  27226. image: {
  27227. source: "./media/characters/balina-mahigan/arm.svg"
  27228. }
  27229. },
  27230. backPort: {
  27231. height: math.unit(0.685, "feet"),
  27232. name: "Back Port",
  27233. image: {
  27234. source: "./media/characters/balina-mahigan/back-port.svg"
  27235. }
  27236. },
  27237. hoofpaw: {
  27238. height: math.unit(1.41, "feet"),
  27239. name: "Hoofpaw",
  27240. image: {
  27241. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27242. }
  27243. },
  27244. leftHandBack: {
  27245. height: math.unit(0.938, "feet"),
  27246. name: "Left Hand (Back)",
  27247. image: {
  27248. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27249. }
  27250. },
  27251. leftHandFront: {
  27252. height: math.unit(0.938, "feet"),
  27253. name: "Left Hand (Front)",
  27254. image: {
  27255. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27256. }
  27257. },
  27258. rightHandBack: {
  27259. height: math.unit(0.95, "feet"),
  27260. name: "Right Hand (Back)",
  27261. image: {
  27262. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27263. }
  27264. },
  27265. rightHandFront: {
  27266. height: math.unit(0.95, "feet"),
  27267. name: "Right Hand (Front)",
  27268. image: {
  27269. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27270. }
  27271. },
  27272. },
  27273. [
  27274. {
  27275. name: "Normal",
  27276. height: math.unit(6 + 4 / 12, "feet"),
  27277. default: true
  27278. },
  27279. ]
  27280. ))
  27281. characterMakers.push(() => makeCharacter(
  27282. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27283. {
  27284. front: {
  27285. height: math.unit(6, "feet"),
  27286. weight: math.unit(320, "lb"),
  27287. name: "Front",
  27288. image: {
  27289. source: "./media/characters/balina-mejeri/front.svg",
  27290. extra: 517 / 488,
  27291. bottom: 44.2 / 561
  27292. }
  27293. },
  27294. },
  27295. [
  27296. {
  27297. name: "Normal",
  27298. height: math.unit(6 + 4 / 12, "feet")
  27299. },
  27300. {
  27301. name: "Business",
  27302. height: math.unit(155, "feet"),
  27303. default: true
  27304. },
  27305. ]
  27306. ))
  27307. characterMakers.push(() => makeCharacter(
  27308. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27309. {
  27310. kneeling: {
  27311. height: math.unit(6 + 4 / 12, "feet"),
  27312. weight: math.unit(300 * 20, "lb"),
  27313. name: "Kneeling",
  27314. image: {
  27315. source: "./media/characters/balbarian/kneeling.svg",
  27316. extra: 922 / 862,
  27317. bottom: 42.4 / 965
  27318. }
  27319. },
  27320. },
  27321. [
  27322. {
  27323. name: "Normal",
  27324. height: math.unit(6 + 4 / 12, "feet")
  27325. },
  27326. {
  27327. name: "Treasured",
  27328. height: math.unit(18 + 9 / 12, "feet"),
  27329. default: true
  27330. },
  27331. {
  27332. name: "Macro",
  27333. height: math.unit(900, "feet")
  27334. },
  27335. ]
  27336. ))
  27337. characterMakers.push(() => makeCharacter(
  27338. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27339. {
  27340. front: {
  27341. height: math.unit(6 + 4 / 12, "feet"),
  27342. weight: math.unit(325, "lb"),
  27343. name: "Front",
  27344. image: {
  27345. source: "./media/characters/balina-amarini/front.svg",
  27346. extra: 415 / 403,
  27347. bottom: 19 / 433.4
  27348. }
  27349. },
  27350. back: {
  27351. height: math.unit(6 + 4 / 12, "feet"),
  27352. weight: math.unit(325, "lb"),
  27353. name: "Back",
  27354. image: {
  27355. source: "./media/characters/balina-amarini/back.svg",
  27356. extra: 415 / 403,
  27357. bottom: 13.5 / 432
  27358. }
  27359. },
  27360. overdrive: {
  27361. height: math.unit(6 + 4 / 12, "feet"),
  27362. weight: math.unit(400, "lb"),
  27363. name: "Overdrive",
  27364. image: {
  27365. source: "./media/characters/balina-amarini/overdrive.svg",
  27366. extra: 269 / 259,
  27367. bottom: 12 / 282
  27368. }
  27369. },
  27370. },
  27371. [
  27372. {
  27373. name: "Boom",
  27374. height: math.unit(9 + 10 / 12, "feet"),
  27375. default: true
  27376. },
  27377. {
  27378. name: "Macro",
  27379. height: math.unit(280, "feet")
  27380. },
  27381. ]
  27382. ))
  27383. characterMakers.push(() => makeCharacter(
  27384. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27385. {
  27386. goddess: {
  27387. height: math.unit(600, "feet"),
  27388. weight: math.unit(2000000, "tons"),
  27389. name: "Goddess",
  27390. image: {
  27391. source: "./media/characters/lady-kubwa/goddess.svg",
  27392. extra: 1240.5 / 1223,
  27393. bottom: 22 / 1263
  27394. }
  27395. },
  27396. goddesser: {
  27397. height: math.unit(900, "feet"),
  27398. weight: math.unit(20000000, "lb"),
  27399. name: "Goddess-er",
  27400. image: {
  27401. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27402. extra: 899 / 888,
  27403. bottom: 12.6 / 912
  27404. }
  27405. },
  27406. },
  27407. [
  27408. {
  27409. name: "Macro",
  27410. height: math.unit(600, "feet"),
  27411. default: true
  27412. },
  27413. {
  27414. name: "Megamacro",
  27415. height: math.unit(250, "miles")
  27416. },
  27417. ]
  27418. ))
  27419. characterMakers.push(() => makeCharacter(
  27420. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27421. {
  27422. front: {
  27423. height: math.unit(7 + 7 / 12, "feet"),
  27424. weight: math.unit(250, "lb"),
  27425. name: "Front",
  27426. image: {
  27427. source: "./media/characters/tala-grovehorn/front.svg",
  27428. extra: 2636 / 2525,
  27429. bottom: 147 / 2781
  27430. }
  27431. },
  27432. back: {
  27433. height: math.unit(7 + 7 / 12, "feet"),
  27434. weight: math.unit(250, "lb"),
  27435. name: "Back",
  27436. image: {
  27437. source: "./media/characters/tala-grovehorn/back.svg",
  27438. extra: 2635 / 2539,
  27439. bottom: 100 / 2732.8
  27440. }
  27441. },
  27442. mouth: {
  27443. height: math.unit(1.15, "feet"),
  27444. name: "Mouth",
  27445. image: {
  27446. source: "./media/characters/tala-grovehorn/mouth.svg"
  27447. }
  27448. },
  27449. dick: {
  27450. height: math.unit(2.36, "feet"),
  27451. name: "Dick",
  27452. image: {
  27453. source: "./media/characters/tala-grovehorn/dick.svg"
  27454. }
  27455. },
  27456. slit: {
  27457. height: math.unit(0.61, "feet"),
  27458. name: "Slit",
  27459. image: {
  27460. source: "./media/characters/tala-grovehorn/slit.svg"
  27461. }
  27462. },
  27463. },
  27464. [
  27465. ]
  27466. ))
  27467. characterMakers.push(() => makeCharacter(
  27468. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27469. {
  27470. front: {
  27471. height: math.unit(7 + 7 / 12, "feet"),
  27472. weight: math.unit(225, "lb"),
  27473. name: "Front",
  27474. image: {
  27475. source: "./media/characters/epona/front.svg",
  27476. extra: 2445 / 2290,
  27477. bottom: 251 / 2696
  27478. }
  27479. },
  27480. back: {
  27481. height: math.unit(7 + 7 / 12, "feet"),
  27482. weight: math.unit(225, "lb"),
  27483. name: "Back",
  27484. image: {
  27485. source: "./media/characters/epona/back.svg",
  27486. extra: 2546 / 2408,
  27487. bottom: 44 / 2589
  27488. }
  27489. },
  27490. genitals: {
  27491. height: math.unit(1.5, "feet"),
  27492. name: "Genitals",
  27493. image: {
  27494. source: "./media/characters/epona/genitals.svg"
  27495. }
  27496. },
  27497. },
  27498. [
  27499. {
  27500. name: "Normal",
  27501. height: math.unit(7 + 7 / 12, "feet"),
  27502. default: true
  27503. },
  27504. ]
  27505. ))
  27506. characterMakers.push(() => makeCharacter(
  27507. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27508. {
  27509. front: {
  27510. height: math.unit(7, "feet"),
  27511. weight: math.unit(518, "lb"),
  27512. name: "Front",
  27513. image: {
  27514. source: "./media/characters/avia-bloodbourn/front.svg",
  27515. extra: 1466 / 1350,
  27516. bottom: 65 / 1527
  27517. }
  27518. },
  27519. },
  27520. [
  27521. ]
  27522. ))
  27523. characterMakers.push(() => makeCharacter(
  27524. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27525. {
  27526. front: {
  27527. height: math.unit(9.35, "feet"),
  27528. weight: math.unit(600, "lb"),
  27529. name: "Front",
  27530. image: {
  27531. source: "./media/characters/amera/front.svg",
  27532. extra: 891 / 818,
  27533. bottom: 30 / 922.7
  27534. }
  27535. },
  27536. back: {
  27537. height: math.unit(9.35, "feet"),
  27538. weight: math.unit(600, "lb"),
  27539. name: "Back",
  27540. image: {
  27541. source: "./media/characters/amera/back.svg",
  27542. extra: 876 / 824,
  27543. bottom: 6.8 / 884
  27544. }
  27545. },
  27546. dick: {
  27547. height: math.unit(2.14, "feet"),
  27548. name: "Dick",
  27549. image: {
  27550. source: "./media/characters/amera/dick.svg"
  27551. }
  27552. },
  27553. },
  27554. [
  27555. {
  27556. name: "Normal",
  27557. height: math.unit(9.35, "feet"),
  27558. default: true
  27559. },
  27560. ]
  27561. ))
  27562. characterMakers.push(() => makeCharacter(
  27563. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27564. {
  27565. kneeling: {
  27566. height: math.unit(3 + 4 / 12, "feet"),
  27567. weight: math.unit(90, "lb"),
  27568. name: "Kneeling",
  27569. image: {
  27570. source: "./media/characters/rosewen/kneeling.svg",
  27571. extra: 1835 / 1571,
  27572. bottom: 27.7 / 1862
  27573. }
  27574. },
  27575. },
  27576. [
  27577. {
  27578. name: "Normal",
  27579. height: math.unit(3 + 4 / 12, "feet"),
  27580. default: true
  27581. },
  27582. ]
  27583. ))
  27584. characterMakers.push(() => makeCharacter(
  27585. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27586. {
  27587. front: {
  27588. height: math.unit(5 + 10 / 12, "feet"),
  27589. weight: math.unit(200, "lb"),
  27590. name: "Front",
  27591. image: {
  27592. source: "./media/characters/sabah/front.svg",
  27593. extra: 849 / 763,
  27594. bottom: 33.9 / 881
  27595. }
  27596. },
  27597. },
  27598. [
  27599. {
  27600. name: "Normal",
  27601. height: math.unit(5 + 10 / 12, "feet"),
  27602. default: true
  27603. },
  27604. ]
  27605. ))
  27606. characterMakers.push(() => makeCharacter(
  27607. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27608. {
  27609. front: {
  27610. height: math.unit(3 + 5 / 12, "feet"),
  27611. weight: math.unit(40, "kg"),
  27612. name: "Front",
  27613. image: {
  27614. source: "./media/characters/purple-flame/front.svg",
  27615. extra: 1577 / 1412,
  27616. bottom: 97 / 1694
  27617. }
  27618. },
  27619. frontDressed: {
  27620. height: math.unit(3 + 5 / 12, "feet"),
  27621. weight: math.unit(40, "kg"),
  27622. name: "Front (Dressed)",
  27623. image: {
  27624. source: "./media/characters/purple-flame/front-dressed.svg",
  27625. extra: 1577 / 1412,
  27626. bottom: 97 / 1694
  27627. }
  27628. },
  27629. headphones: {
  27630. height: math.unit(0.85, "feet"),
  27631. name: "Headphones",
  27632. image: {
  27633. source: "./media/characters/purple-flame/headphones.svg"
  27634. }
  27635. },
  27636. },
  27637. [
  27638. {
  27639. name: "Really Small",
  27640. height: math.unit(5, "cm")
  27641. },
  27642. {
  27643. name: "Micro",
  27644. height: math.unit(1 + 5 / 12, "feet")
  27645. },
  27646. {
  27647. name: "Normal",
  27648. height: math.unit(3 + 5 / 12, "feet"),
  27649. default: true
  27650. },
  27651. {
  27652. name: "Minimacro",
  27653. height: math.unit(125, "feet")
  27654. },
  27655. {
  27656. name: "Macro",
  27657. height: math.unit(0.5, "miles")
  27658. },
  27659. {
  27660. name: "Megamacro",
  27661. height: math.unit(50, "miles")
  27662. },
  27663. {
  27664. name: "Gigantic",
  27665. height: math.unit(750, "miles")
  27666. },
  27667. {
  27668. name: "Planetary",
  27669. height: math.unit(15000, "miles")
  27670. },
  27671. ]
  27672. ))
  27673. characterMakers.push(() => makeCharacter(
  27674. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27675. {
  27676. front: {
  27677. height: math.unit(14, "feet"),
  27678. weight: math.unit(959, "lb"),
  27679. name: "Front",
  27680. image: {
  27681. source: "./media/characters/arsenal/front.svg",
  27682. extra: 2357 / 2157,
  27683. bottom: 93 / 2458
  27684. }
  27685. },
  27686. },
  27687. [
  27688. {
  27689. name: "Normal",
  27690. height: math.unit(14, "feet"),
  27691. default: true
  27692. },
  27693. ]
  27694. ))
  27695. characterMakers.push(() => makeCharacter(
  27696. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27697. {
  27698. front: {
  27699. height: math.unit(6, "feet"),
  27700. weight: math.unit(150, "lb"),
  27701. name: "Front",
  27702. image: {
  27703. source: "./media/characters/adira/front.svg",
  27704. extra: 1078 / 1029,
  27705. bottom: 87 / 1166
  27706. }
  27707. },
  27708. },
  27709. [
  27710. {
  27711. name: "Micro",
  27712. height: math.unit(4, "inches"),
  27713. default: true
  27714. },
  27715. {
  27716. name: "Macro",
  27717. height: math.unit(50, "feet")
  27718. },
  27719. ]
  27720. ))
  27721. characterMakers.push(() => makeCharacter(
  27722. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27723. {
  27724. front: {
  27725. height: math.unit(16, "feet"),
  27726. weight: math.unit(1000, "lb"),
  27727. name: "Front",
  27728. image: {
  27729. source: "./media/characters/grim/front.svg",
  27730. extra: 622 / 614,
  27731. bottom: 18.1 / 642
  27732. }
  27733. },
  27734. back: {
  27735. height: math.unit(16, "feet"),
  27736. weight: math.unit(1000, "lb"),
  27737. name: "Back",
  27738. image: {
  27739. source: "./media/characters/grim/back.svg",
  27740. extra: 610.6 / 602,
  27741. bottom: 40.8 / 652
  27742. }
  27743. },
  27744. hunched: {
  27745. height: math.unit(9.75, "feet"),
  27746. weight: math.unit(1000, "lb"),
  27747. name: "Hunched",
  27748. image: {
  27749. source: "./media/characters/grim/hunched.svg",
  27750. extra: 304 / 297,
  27751. bottom: 35.4 / 394
  27752. }
  27753. },
  27754. },
  27755. [
  27756. {
  27757. name: "Normal",
  27758. height: math.unit(16, "feet"),
  27759. default: true
  27760. },
  27761. ]
  27762. ))
  27763. characterMakers.push(() => makeCharacter(
  27764. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27765. {
  27766. front: {
  27767. height: math.unit(2.3, "meters"),
  27768. weight: math.unit(300, "lb"),
  27769. name: "Front",
  27770. image: {
  27771. source: "./media/characters/sinja/front-sfw.svg",
  27772. extra: 1393 / 1294,
  27773. bottom: 70 / 1463
  27774. }
  27775. },
  27776. frontNsfw: {
  27777. height: math.unit(2.3, "meters"),
  27778. weight: math.unit(300, "lb"),
  27779. name: "Front (NSFW)",
  27780. image: {
  27781. source: "./media/characters/sinja/front-nsfw.svg",
  27782. extra: 1393 / 1294,
  27783. bottom: 70 / 1463
  27784. }
  27785. },
  27786. back: {
  27787. height: math.unit(2.3, "meters"),
  27788. weight: math.unit(300, "lb"),
  27789. name: "Back",
  27790. image: {
  27791. source: "./media/characters/sinja/back.svg",
  27792. extra: 1393 / 1294,
  27793. bottom: 70 / 1463
  27794. }
  27795. },
  27796. head: {
  27797. height: math.unit(1.771, "feet"),
  27798. name: "Head",
  27799. image: {
  27800. source: "./media/characters/sinja/head.svg"
  27801. }
  27802. },
  27803. slit: {
  27804. height: math.unit(0.8, "feet"),
  27805. name: "Slit",
  27806. image: {
  27807. source: "./media/characters/sinja/slit.svg"
  27808. }
  27809. },
  27810. },
  27811. [
  27812. {
  27813. name: "Normal",
  27814. height: math.unit(2.3, "meters")
  27815. },
  27816. {
  27817. name: "Macro",
  27818. height: math.unit(91, "meters"),
  27819. default: true
  27820. },
  27821. {
  27822. name: "Megamacro",
  27823. height: math.unit(91440, "meters")
  27824. },
  27825. {
  27826. name: "Gigamacro",
  27827. height: math.unit(60960000, "meters")
  27828. },
  27829. {
  27830. name: "Teramacro",
  27831. height: math.unit(9144000000, "meters")
  27832. },
  27833. ]
  27834. ))
  27835. characterMakers.push(() => makeCharacter(
  27836. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27837. {
  27838. front: {
  27839. height: math.unit(1.7, "meters"),
  27840. weight: math.unit(130, "lb"),
  27841. name: "Front",
  27842. image: {
  27843. source: "./media/characters/kyu/front.svg",
  27844. extra: 415 / 395,
  27845. bottom: 5 / 420
  27846. }
  27847. },
  27848. head: {
  27849. height: math.unit(1.75, "feet"),
  27850. name: "Head",
  27851. image: {
  27852. source: "./media/characters/kyu/head.svg"
  27853. }
  27854. },
  27855. foot: {
  27856. height: math.unit(0.81, "feet"),
  27857. name: "Foot",
  27858. image: {
  27859. source: "./media/characters/kyu/foot.svg"
  27860. }
  27861. },
  27862. },
  27863. [
  27864. {
  27865. name: "Normal",
  27866. height: math.unit(1.7, "meters")
  27867. },
  27868. {
  27869. name: "Macro",
  27870. height: math.unit(131, "feet"),
  27871. default: true
  27872. },
  27873. {
  27874. name: "Megamacro",
  27875. height: math.unit(91440, "meters")
  27876. },
  27877. {
  27878. name: "Gigamacro",
  27879. height: math.unit(60960000, "meters")
  27880. },
  27881. {
  27882. name: "Teramacro",
  27883. height: math.unit(9144000000, "meters")
  27884. },
  27885. ]
  27886. ))
  27887. characterMakers.push(() => makeCharacter(
  27888. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27889. {
  27890. front: {
  27891. height: math.unit(7 + 1 / 12, "feet"),
  27892. weight: math.unit(250, "lb"),
  27893. name: "Front",
  27894. image: {
  27895. source: "./media/characters/joey/front.svg",
  27896. extra: 1791 / 1537,
  27897. bottom: 28 / 1816
  27898. }
  27899. },
  27900. },
  27901. [
  27902. {
  27903. name: "Micro",
  27904. height: math.unit(3, "inches")
  27905. },
  27906. {
  27907. name: "Normal",
  27908. height: math.unit(7 + 1 / 12, "feet"),
  27909. default: true
  27910. },
  27911. ]
  27912. ))
  27913. characterMakers.push(() => makeCharacter(
  27914. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27915. {
  27916. front: {
  27917. height: math.unit(165, "cm"),
  27918. weight: math.unit(140, "lb"),
  27919. name: "Front",
  27920. image: {
  27921. source: "./media/characters/sam-evans/front.svg",
  27922. extra: 3417 / 3230,
  27923. bottom: 41.3 / 3417
  27924. }
  27925. },
  27926. frontSixTails: {
  27927. height: math.unit(165, "cm"),
  27928. weight: math.unit(140, "lb"),
  27929. name: "Front-six-tails",
  27930. image: {
  27931. source: "./media/characters/sam-evans/front-six-tails.svg",
  27932. extra: 3417 / 3230,
  27933. bottom: 41.3 / 3417
  27934. }
  27935. },
  27936. back: {
  27937. height: math.unit(165, "cm"),
  27938. weight: math.unit(140, "lb"),
  27939. name: "Back",
  27940. image: {
  27941. source: "./media/characters/sam-evans/back.svg",
  27942. extra: 3227 / 3032,
  27943. bottom: 6.8 / 3234
  27944. }
  27945. },
  27946. face: {
  27947. height: math.unit(0.68, "feet"),
  27948. name: "Face",
  27949. image: {
  27950. source: "./media/characters/sam-evans/face.svg"
  27951. }
  27952. },
  27953. },
  27954. [
  27955. {
  27956. name: "Normal",
  27957. height: math.unit(165, "cm"),
  27958. default: true
  27959. },
  27960. {
  27961. name: "Macro",
  27962. height: math.unit(100, "meters")
  27963. },
  27964. {
  27965. name: "Macro+",
  27966. height: math.unit(800, "meters")
  27967. },
  27968. {
  27969. name: "Macro++",
  27970. height: math.unit(3, "km")
  27971. },
  27972. {
  27973. name: "Macro+++",
  27974. height: math.unit(30, "km")
  27975. },
  27976. ]
  27977. ))
  27978. characterMakers.push(() => makeCharacter(
  27979. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27980. {
  27981. front: {
  27982. height: math.unit(10, "feet"),
  27983. weight: math.unit(750, "lb"),
  27984. name: "Front",
  27985. image: {
  27986. source: "./media/characters/juliet-a/front.svg",
  27987. extra: 1766 / 1720,
  27988. bottom: 43 / 1809
  27989. }
  27990. },
  27991. back: {
  27992. height: math.unit(10, "feet"),
  27993. weight: math.unit(750, "lb"),
  27994. name: "Back",
  27995. image: {
  27996. source: "./media/characters/juliet-a/back.svg",
  27997. extra: 1781 / 1734,
  27998. bottom: 35 / 1810,
  27999. }
  28000. },
  28001. },
  28002. [
  28003. {
  28004. name: "Normal",
  28005. height: math.unit(10, "feet"),
  28006. default: true
  28007. },
  28008. {
  28009. name: "Dragon Form",
  28010. height: math.unit(250, "feet")
  28011. },
  28012. {
  28013. name: "Macro",
  28014. height: math.unit(1000, "feet")
  28015. },
  28016. {
  28017. name: "Megamacro",
  28018. height: math.unit(10000, "feet")
  28019. }
  28020. ]
  28021. ))
  28022. characterMakers.push(() => makeCharacter(
  28023. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28024. {
  28025. regular: {
  28026. height: math.unit(7 + 3 / 12, "feet"),
  28027. weight: math.unit(260, "lb"),
  28028. name: "Regular",
  28029. image: {
  28030. source: "./media/characters/wild/regular.svg",
  28031. extra: 97.45 / 92,
  28032. bottom: 6.8 / 104.3
  28033. }
  28034. },
  28035. biggums: {
  28036. height: math.unit(8 + 6 / 12, "feet"),
  28037. weight: math.unit(425, "lb"),
  28038. name: "Biggums",
  28039. image: {
  28040. source: "./media/characters/wild/biggums.svg",
  28041. extra: 97.45 / 92,
  28042. bottom: 7.5 / 132.34
  28043. }
  28044. },
  28045. mawRegular: {
  28046. height: math.unit(1.24, "feet"),
  28047. name: "Maw (Regular)",
  28048. image: {
  28049. source: "./media/characters/wild/maw.svg"
  28050. }
  28051. },
  28052. mawBiggums: {
  28053. height: math.unit(1.47, "feet"),
  28054. name: "Maw (Biggums)",
  28055. image: {
  28056. source: "./media/characters/wild/maw.svg"
  28057. }
  28058. },
  28059. },
  28060. [
  28061. {
  28062. name: "Normal",
  28063. height: math.unit(7 + 3 / 12, "feet"),
  28064. default: true
  28065. },
  28066. ]
  28067. ))
  28068. characterMakers.push(() => makeCharacter(
  28069. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28070. {
  28071. front: {
  28072. height: math.unit(2.5, "meters"),
  28073. weight: math.unit(200, "kg"),
  28074. name: "Front",
  28075. image: {
  28076. source: "./media/characters/vidar/front.svg",
  28077. extra: 2994 / 2795,
  28078. bottom: 56 / 3061
  28079. }
  28080. },
  28081. back: {
  28082. height: math.unit(2.5, "meters"),
  28083. weight: math.unit(200, "kg"),
  28084. name: "Back",
  28085. image: {
  28086. source: "./media/characters/vidar/back.svg",
  28087. extra: 3131 / 2928,
  28088. bottom: 13.5 / 3141.5
  28089. }
  28090. },
  28091. feral: {
  28092. height: math.unit(2.5, "meters"),
  28093. weight: math.unit(2000, "kg"),
  28094. name: "Feral",
  28095. image: {
  28096. source: "./media/characters/vidar/feral.svg",
  28097. extra: 2790 / 1765,
  28098. bottom: 6 / 2796
  28099. }
  28100. },
  28101. },
  28102. [
  28103. {
  28104. name: "Normal",
  28105. height: math.unit(2.5, "meters"),
  28106. default: true
  28107. },
  28108. {
  28109. name: "Macro",
  28110. height: math.unit(100, "meters")
  28111. },
  28112. ]
  28113. ))
  28114. characterMakers.push(() => makeCharacter(
  28115. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28116. {
  28117. front: {
  28118. height: math.unit(5 + 9 / 12, "feet"),
  28119. weight: math.unit(120, "lb"),
  28120. name: "Front",
  28121. image: {
  28122. source: "./media/characters/ash/front.svg",
  28123. extra: 2189 / 1961,
  28124. bottom: 5.2 / 2194
  28125. }
  28126. },
  28127. },
  28128. [
  28129. {
  28130. name: "Normal",
  28131. height: math.unit(5 + 9 / 12, "feet"),
  28132. default: true
  28133. },
  28134. ]
  28135. ))
  28136. characterMakers.push(() => makeCharacter(
  28137. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28138. {
  28139. front: {
  28140. height: math.unit(9, "feet"),
  28141. weight: math.unit(10000, "lb"),
  28142. name: "Front",
  28143. image: {
  28144. source: "./media/characters/gygabite/front.svg",
  28145. bottom: 31.7 / 537.8,
  28146. extra: 505 / 370
  28147. }
  28148. },
  28149. },
  28150. [
  28151. {
  28152. name: "Normal",
  28153. height: math.unit(9, "feet"),
  28154. default: true
  28155. },
  28156. ]
  28157. ))
  28158. characterMakers.push(() => makeCharacter(
  28159. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  28160. {
  28161. front: {
  28162. height: math.unit(12, "feet"),
  28163. weight: math.unit(35000, "lb"),
  28164. name: "Front",
  28165. image: {
  28166. source: "./media/characters/p0tat0/front.svg",
  28167. extra: 1065 / 921,
  28168. bottom: 55.7 / 1121.25
  28169. }
  28170. },
  28171. },
  28172. [
  28173. {
  28174. name: "Normal",
  28175. height: math.unit(12, "feet"),
  28176. default: true
  28177. },
  28178. ]
  28179. ))
  28180. characterMakers.push(() => makeCharacter(
  28181. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28182. {
  28183. side: {
  28184. height: math.unit(6.5, "feet"),
  28185. weight: math.unit(800, "lb"),
  28186. name: "Side",
  28187. image: {
  28188. source: "./media/characters/dusk/side.svg",
  28189. extra: 615 / 373,
  28190. bottom: 53 / 664
  28191. }
  28192. },
  28193. sitting: {
  28194. height: math.unit(7, "feet"),
  28195. weight: math.unit(800, "lb"),
  28196. name: "Sitting",
  28197. image: {
  28198. source: "./media/characters/dusk/sitting.svg",
  28199. extra: 753 / 425,
  28200. bottom: 33 / 774
  28201. }
  28202. },
  28203. head: {
  28204. height: math.unit(6.1, "feet"),
  28205. name: "Head",
  28206. image: {
  28207. source: "./media/characters/dusk/head.svg"
  28208. }
  28209. },
  28210. },
  28211. [
  28212. {
  28213. name: "Normal",
  28214. height: math.unit(7, "feet"),
  28215. default: true
  28216. },
  28217. ]
  28218. ))
  28219. characterMakers.push(() => makeCharacter(
  28220. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28221. {
  28222. front: {
  28223. height: math.unit(15, "feet"),
  28224. weight: math.unit(7000, "lb"),
  28225. name: "Front",
  28226. image: {
  28227. source: "./media/characters/jay-direwolf/front.svg",
  28228. extra: 1810 / 1732,
  28229. bottom: 66 / 1892
  28230. }
  28231. },
  28232. },
  28233. [
  28234. {
  28235. name: "Normal",
  28236. height: math.unit(15, "feet"),
  28237. default: true
  28238. },
  28239. ]
  28240. ))
  28241. characterMakers.push(() => makeCharacter(
  28242. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28243. {
  28244. front: {
  28245. height: math.unit(4 + 9 / 12, "feet"),
  28246. weight: math.unit(130, "lb"),
  28247. name: "Front",
  28248. image: {
  28249. source: "./media/characters/anchovie/front.svg",
  28250. extra: 382 / 350,
  28251. bottom: 25 / 409
  28252. }
  28253. },
  28254. back: {
  28255. height: math.unit(4 + 9 / 12, "feet"),
  28256. weight: math.unit(130, "lb"),
  28257. name: "Back",
  28258. image: {
  28259. source: "./media/characters/anchovie/back.svg",
  28260. extra: 385 / 352,
  28261. bottom: 16.6 / 402
  28262. }
  28263. },
  28264. frontDressed: {
  28265. height: math.unit(4 + 9 / 12, "feet"),
  28266. weight: math.unit(130, "lb"),
  28267. name: "Front (Dressed)",
  28268. image: {
  28269. source: "./media/characters/anchovie/front-dressed.svg",
  28270. extra: 382 / 350,
  28271. bottom: 25 / 409
  28272. }
  28273. },
  28274. backDressed: {
  28275. height: math.unit(4 + 9 / 12, "feet"),
  28276. weight: math.unit(130, "lb"),
  28277. name: "Back (Dressed)",
  28278. image: {
  28279. source: "./media/characters/anchovie/back-dressed.svg",
  28280. extra: 385 / 352,
  28281. bottom: 16.6 / 402
  28282. }
  28283. },
  28284. },
  28285. [
  28286. {
  28287. name: "Micro",
  28288. height: math.unit(6.4, "inches")
  28289. },
  28290. {
  28291. name: "Normal",
  28292. height: math.unit(4 + 9 / 12, "feet"),
  28293. default: true
  28294. },
  28295. ]
  28296. ))
  28297. characterMakers.push(() => makeCharacter(
  28298. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28299. {
  28300. front: {
  28301. height: math.unit(2, "meters"),
  28302. weight: math.unit(180, "lb"),
  28303. name: "Front",
  28304. image: {
  28305. source: "./media/characters/acidrenamon/front.svg",
  28306. extra: 987 / 890,
  28307. bottom: 22.8 / 1009
  28308. }
  28309. },
  28310. back: {
  28311. height: math.unit(2, "meters"),
  28312. weight: math.unit(180, "lb"),
  28313. name: "Back",
  28314. image: {
  28315. source: "./media/characters/acidrenamon/back.svg",
  28316. extra: 983 / 891,
  28317. bottom: 8.4 / 992
  28318. }
  28319. },
  28320. head: {
  28321. height: math.unit(1.92, "feet"),
  28322. name: "Head",
  28323. image: {
  28324. source: "./media/characters/acidrenamon/head.svg"
  28325. }
  28326. },
  28327. rump: {
  28328. height: math.unit(1.72, "feet"),
  28329. name: "Rump",
  28330. image: {
  28331. source: "./media/characters/acidrenamon/rump.svg"
  28332. }
  28333. },
  28334. tail: {
  28335. height: math.unit(4.2, "feet"),
  28336. name: "Tail",
  28337. image: {
  28338. source: "./media/characters/acidrenamon/tail.svg"
  28339. }
  28340. },
  28341. },
  28342. [
  28343. {
  28344. name: "Normal",
  28345. height: math.unit(2, "meters"),
  28346. default: true
  28347. },
  28348. {
  28349. name: "Minimacro",
  28350. height: math.unit(7, "meters")
  28351. },
  28352. {
  28353. name: "Macro",
  28354. height: math.unit(200, "meters")
  28355. },
  28356. {
  28357. name: "Gigamacro",
  28358. height: math.unit(0.2, "earths")
  28359. },
  28360. ]
  28361. ))
  28362. characterMakers.push(() => makeCharacter(
  28363. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28364. {
  28365. front: {
  28366. height: math.unit(152, "feet"),
  28367. name: "Front",
  28368. image: {
  28369. source: "./media/characters/kenzie-lee/front.svg",
  28370. extra: 1869/1774,
  28371. bottom: 128/1997
  28372. }
  28373. },
  28374. side: {
  28375. height: math.unit(86, "feet"),
  28376. name: "Side",
  28377. image: {
  28378. source: "./media/characters/kenzie-lee/side.svg",
  28379. extra: 930/815,
  28380. bottom: 177/1107
  28381. }
  28382. },
  28383. paw: {
  28384. height: math.unit(15, "feet"),
  28385. name: "Paw",
  28386. image: {
  28387. source: "./media/characters/kenzie-lee/paw.svg"
  28388. }
  28389. },
  28390. },
  28391. [
  28392. {
  28393. name: "Micro",
  28394. height: math.unit(1.5, "inches")
  28395. },
  28396. {
  28397. name: "Normal",
  28398. height: math.unit(152, "feet"),
  28399. default: true
  28400. },
  28401. {
  28402. name: "Megamacro",
  28403. height: math.unit(7, "miles")
  28404. },
  28405. {
  28406. name: "Gigamacro",
  28407. height: math.unit(8000, "miles")
  28408. },
  28409. ]
  28410. ))
  28411. characterMakers.push(() => makeCharacter(
  28412. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28413. {
  28414. side: {
  28415. height: math.unit(6, "feet"),
  28416. weight: math.unit(150, "lb"),
  28417. name: "Side",
  28418. image: {
  28419. source: "./media/characters/withers/side.svg",
  28420. extra: 1830 / 1728,
  28421. bottom: 96 / 1927
  28422. }
  28423. },
  28424. front: {
  28425. height: math.unit(6, "feet"),
  28426. weight: math.unit(150, "lb"),
  28427. name: "Front",
  28428. image: {
  28429. source: "./media/characters/withers/front.svg",
  28430. extra: 1514 / 1438,
  28431. bottom: 118 / 1632
  28432. }
  28433. },
  28434. },
  28435. [
  28436. {
  28437. name: "Macro",
  28438. height: math.unit(168, "feet"),
  28439. default: true
  28440. },
  28441. {
  28442. name: "Megamacro",
  28443. height: math.unit(15, "miles")
  28444. }
  28445. ]
  28446. ))
  28447. characterMakers.push(() => makeCharacter(
  28448. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28449. {
  28450. front: {
  28451. height: math.unit(6 + 7 / 12, "feet"),
  28452. weight: math.unit(250, "lb"),
  28453. name: "Front",
  28454. image: {
  28455. source: "./media/characters/nemoskii/front.svg",
  28456. extra: 2270 / 1734,
  28457. bottom: 86 / 2354
  28458. }
  28459. },
  28460. back: {
  28461. height: math.unit(6 + 7 / 12, "feet"),
  28462. weight: math.unit(250, "lb"),
  28463. name: "Back",
  28464. image: {
  28465. source: "./media/characters/nemoskii/back.svg",
  28466. extra: 1845 / 1788,
  28467. bottom: 10.5 / 1852
  28468. }
  28469. },
  28470. head: {
  28471. height: math.unit(1.31, "feet"),
  28472. name: "Head",
  28473. image: {
  28474. source: "./media/characters/nemoskii/head.svg"
  28475. }
  28476. },
  28477. },
  28478. [
  28479. {
  28480. name: "Micro",
  28481. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28482. },
  28483. {
  28484. name: "Normal",
  28485. height: math.unit(6 + 7 / 12, "feet"),
  28486. default: true
  28487. },
  28488. {
  28489. name: "Macro",
  28490. height: math.unit((6 + 7 / 12) * 150, "feet")
  28491. },
  28492. {
  28493. name: "Macro+",
  28494. height: math.unit((6 + 7 / 12) * 500, "feet")
  28495. },
  28496. {
  28497. name: "Megamacro",
  28498. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28499. },
  28500. ]
  28501. ))
  28502. characterMakers.push(() => makeCharacter(
  28503. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28504. {
  28505. front: {
  28506. height: math.unit(1, "mile"),
  28507. weight: math.unit(265261.9, "lb"),
  28508. name: "Front",
  28509. image: {
  28510. source: "./media/characters/shui/front.svg",
  28511. extra: 1633 / 1564,
  28512. bottom: 91.5 / 1726
  28513. }
  28514. },
  28515. },
  28516. [
  28517. {
  28518. name: "Macro",
  28519. height: math.unit(1, "mile"),
  28520. default: true
  28521. },
  28522. ]
  28523. ))
  28524. characterMakers.push(() => makeCharacter(
  28525. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28526. {
  28527. front: {
  28528. height: math.unit(12 + 6 / 12, "feet"),
  28529. weight: math.unit(1342, "lb"),
  28530. name: "Front",
  28531. image: {
  28532. source: "./media/characters/arokh-takakura/front.svg",
  28533. extra: 1089 / 1043,
  28534. bottom: 77.4 / 1176.7
  28535. }
  28536. },
  28537. back: {
  28538. height: math.unit(12 + 6 / 12, "feet"),
  28539. weight: math.unit(1342, "lb"),
  28540. name: "Back",
  28541. image: {
  28542. source: "./media/characters/arokh-takakura/back.svg",
  28543. extra: 1046 / 1019,
  28544. bottom: 102 / 1150
  28545. }
  28546. },
  28547. },
  28548. [
  28549. {
  28550. name: "Big",
  28551. height: math.unit(12 + 6 / 12, "feet"),
  28552. default: true
  28553. },
  28554. ]
  28555. ))
  28556. characterMakers.push(() => makeCharacter(
  28557. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28558. {
  28559. front: {
  28560. height: math.unit(5 + 6 / 12, "feet"),
  28561. weight: math.unit(150, "lb"),
  28562. name: "Front",
  28563. image: {
  28564. source: "./media/characters/theo/front.svg",
  28565. extra: 1184 / 1131,
  28566. bottom: 7.4 / 1191
  28567. }
  28568. },
  28569. },
  28570. [
  28571. {
  28572. name: "Micro",
  28573. height: math.unit(5, "inches")
  28574. },
  28575. {
  28576. name: "Normal",
  28577. height: math.unit(5 + 6 / 12, "feet"),
  28578. default: true
  28579. },
  28580. ]
  28581. ))
  28582. characterMakers.push(() => makeCharacter(
  28583. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28584. {
  28585. front: {
  28586. height: math.unit(5 + 9 / 12, "feet"),
  28587. weight: math.unit(130, "lb"),
  28588. name: "Front",
  28589. image: {
  28590. source: "./media/characters/cecelia-swift/front.svg",
  28591. extra: 502 / 484,
  28592. bottom: 23 / 523
  28593. }
  28594. },
  28595. back: {
  28596. height: math.unit(5 + 9 / 12, "feet"),
  28597. weight: math.unit(130, "lb"),
  28598. name: "Back",
  28599. image: {
  28600. source: "./media/characters/cecelia-swift/back.svg",
  28601. extra: 499 / 485,
  28602. bottom: 12 / 511
  28603. }
  28604. },
  28605. head: {
  28606. height: math.unit(0.90, "feet"),
  28607. name: "Head",
  28608. image: {
  28609. source: "./media/characters/cecelia-swift/head.svg"
  28610. }
  28611. },
  28612. rump: {
  28613. height: math.unit(1.75, "feet"),
  28614. name: "Rump",
  28615. image: {
  28616. source: "./media/characters/cecelia-swift/rump.svg"
  28617. }
  28618. },
  28619. },
  28620. [
  28621. {
  28622. name: "Normal",
  28623. height: math.unit(5 + 9 / 12, "feet"),
  28624. default: true
  28625. },
  28626. {
  28627. name: "Big",
  28628. height: math.unit(50, "feet")
  28629. },
  28630. {
  28631. name: "Macro",
  28632. height: math.unit(100, "feet")
  28633. },
  28634. {
  28635. name: "Macro+",
  28636. height: math.unit(500, "feet")
  28637. },
  28638. {
  28639. name: "Macro++",
  28640. height: math.unit(1000, "feet")
  28641. },
  28642. ]
  28643. ))
  28644. characterMakers.push(() => makeCharacter(
  28645. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28646. {
  28647. front: {
  28648. height: math.unit(6, "feet"),
  28649. weight: math.unit(150, "lb"),
  28650. name: "Front",
  28651. image: {
  28652. source: "./media/characters/kaunan/front.svg",
  28653. extra: 2890 / 2523,
  28654. bottom: 49 / 2939
  28655. }
  28656. },
  28657. },
  28658. [
  28659. {
  28660. name: "Macro",
  28661. height: math.unit(150, "feet"),
  28662. default: true
  28663. },
  28664. ]
  28665. ))
  28666. characterMakers.push(() => makeCharacter(
  28667. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28668. {
  28669. front: {
  28670. height: math.unit(175, "cm"),
  28671. weight: math.unit(60, "kg"),
  28672. name: "Front",
  28673. image: {
  28674. source: "./media/characters/fei/front.svg",
  28675. extra: 1873/1723,
  28676. bottom: 53/1926
  28677. }
  28678. },
  28679. },
  28680. [
  28681. {
  28682. name: "Mortal",
  28683. height: math.unit(175, "cm")
  28684. },
  28685. {
  28686. name: "Normal",
  28687. height: math.unit(3500, "m"),
  28688. default: true
  28689. },
  28690. {
  28691. name: "Stroll",
  28692. height: math.unit(17.5, "km")
  28693. },
  28694. {
  28695. name: "Showoff",
  28696. height: math.unit(175, "km")
  28697. },
  28698. ]
  28699. ))
  28700. characterMakers.push(() => makeCharacter(
  28701. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28702. {
  28703. front: {
  28704. height: math.unit(7, "feet"),
  28705. weight: math.unit(1000, "kg"),
  28706. name: "Front",
  28707. image: {
  28708. source: "./media/characters/edrax/front.svg",
  28709. extra: 2838 / 2550,
  28710. bottom: 130 / 2968
  28711. }
  28712. },
  28713. },
  28714. [
  28715. {
  28716. name: "Small",
  28717. height: math.unit(7, "feet")
  28718. },
  28719. {
  28720. name: "Normal",
  28721. height: math.unit(1500, "meters")
  28722. },
  28723. {
  28724. name: "Mega",
  28725. height: math.unit(12000000, "km"),
  28726. default: true
  28727. },
  28728. {
  28729. name: "Megamacro",
  28730. height: math.unit(10600000, "lightyears")
  28731. },
  28732. {
  28733. name: "Hypermacro",
  28734. height: math.unit(256, "yottameters")
  28735. },
  28736. ]
  28737. ))
  28738. characterMakers.push(() => makeCharacter(
  28739. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28740. {
  28741. front: {
  28742. height: math.unit(10, "feet"),
  28743. weight: math.unit(750, "lb"),
  28744. name: "Front",
  28745. image: {
  28746. source: "./media/characters/clove/front.svg",
  28747. extra: 1918/1751,
  28748. bottom: 52/1970
  28749. }
  28750. },
  28751. back: {
  28752. height: math.unit(10, "feet"),
  28753. weight: math.unit(750, "lb"),
  28754. name: "Back",
  28755. image: {
  28756. source: "./media/characters/clove/back.svg",
  28757. extra: 1912/1747,
  28758. bottom: 50/1962
  28759. }
  28760. },
  28761. },
  28762. [
  28763. {
  28764. name: "Normal",
  28765. height: math.unit(10, "feet"),
  28766. default: true
  28767. },
  28768. ]
  28769. ))
  28770. characterMakers.push(() => makeCharacter(
  28771. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28772. {
  28773. front: {
  28774. height: math.unit(4, "feet"),
  28775. weight: math.unit(50, "lb"),
  28776. name: "Front",
  28777. image: {
  28778. source: "./media/characters/alex-rabbit/front.svg",
  28779. extra: 507 / 458,
  28780. bottom: 18.5 / 527
  28781. }
  28782. },
  28783. back: {
  28784. height: math.unit(4, "feet"),
  28785. weight: math.unit(50, "lb"),
  28786. name: "Back",
  28787. image: {
  28788. source: "./media/characters/alex-rabbit/back.svg",
  28789. extra: 502 / 460,
  28790. bottom: 18.9 / 521
  28791. }
  28792. },
  28793. },
  28794. [
  28795. {
  28796. name: "Normal",
  28797. height: math.unit(4, "feet"),
  28798. default: true
  28799. },
  28800. ]
  28801. ))
  28802. characterMakers.push(() => makeCharacter(
  28803. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28804. {
  28805. front: {
  28806. height: math.unit(1 + 3 / 12, "feet"),
  28807. weight: math.unit(80, "lb"),
  28808. name: "Front",
  28809. image: {
  28810. source: "./media/characters/zander-rose/front.svg",
  28811. extra: 916 / 797,
  28812. bottom: 17 / 933
  28813. }
  28814. },
  28815. back: {
  28816. height: math.unit(1 + 3 / 12, "feet"),
  28817. weight: math.unit(80, "lb"),
  28818. name: "Back",
  28819. image: {
  28820. source: "./media/characters/zander-rose/back.svg",
  28821. extra: 903 / 779,
  28822. bottom: 31 / 934
  28823. }
  28824. },
  28825. },
  28826. [
  28827. {
  28828. name: "Normal",
  28829. height: math.unit(1 + 3 / 12, "feet"),
  28830. default: true
  28831. },
  28832. ]
  28833. ))
  28834. characterMakers.push(() => makeCharacter(
  28835. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28836. {
  28837. anthro: {
  28838. height: math.unit(6, "feet"),
  28839. weight: math.unit(150, "lb"),
  28840. name: "Anthro",
  28841. image: {
  28842. source: "./media/characters/razz/anthro.svg",
  28843. extra: 1437 / 1343,
  28844. bottom: 48 / 1485
  28845. }
  28846. },
  28847. feral: {
  28848. height: math.unit(6, "feet"),
  28849. weight: math.unit(150, "lb"),
  28850. name: "Feral",
  28851. image: {
  28852. source: "./media/characters/razz/feral.svg",
  28853. extra: 2569 / 1385,
  28854. bottom: 95 / 2664
  28855. }
  28856. },
  28857. },
  28858. [
  28859. {
  28860. name: "Normal",
  28861. height: math.unit(6, "feet"),
  28862. default: true
  28863. },
  28864. ]
  28865. ))
  28866. characterMakers.push(() => makeCharacter(
  28867. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28868. {
  28869. front: {
  28870. height: math.unit(9 + 4 / 12, "feet"),
  28871. weight: math.unit(500, "lb"),
  28872. name: "Front",
  28873. image: {
  28874. source: "./media/characters/morrigan/front.svg",
  28875. extra: 2707 / 2579,
  28876. bottom: 156 / 2863
  28877. }
  28878. },
  28879. },
  28880. [
  28881. {
  28882. name: "Normal",
  28883. height: math.unit(9 + 4 / 12, "feet"),
  28884. default: true
  28885. },
  28886. ]
  28887. ))
  28888. characterMakers.push(() => makeCharacter(
  28889. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28890. {
  28891. front: {
  28892. height: math.unit(5, "stories"),
  28893. weight: math.unit(4000, "lb"),
  28894. name: "Front",
  28895. image: {
  28896. source: "./media/characters/jenene/front.svg",
  28897. extra: 1780 / 1710,
  28898. bottom: 57 / 1837
  28899. }
  28900. },
  28901. },
  28902. [
  28903. {
  28904. name: "Normal",
  28905. height: math.unit(5, "stories"),
  28906. default: true
  28907. },
  28908. ]
  28909. ))
  28910. characterMakers.push(() => makeCharacter(
  28911. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28912. {
  28913. taurSfw: {
  28914. height: math.unit(10, "meters"),
  28915. weight: math.unit(17500, "kg"),
  28916. name: "Taur",
  28917. image: {
  28918. source: "./media/characters/faey/taur-sfw.svg",
  28919. extra: 1200 / 968,
  28920. bottom: 41 / 1241
  28921. }
  28922. },
  28923. chestmaw: {
  28924. height: math.unit(2.01, "meters"),
  28925. name: "Chestmaw",
  28926. image: {
  28927. source: "./media/characters/faey/chestmaw.svg"
  28928. }
  28929. },
  28930. foot: {
  28931. height: math.unit(2.43, "meters"),
  28932. name: "Foot",
  28933. image: {
  28934. source: "./media/characters/faey/foot.svg"
  28935. }
  28936. },
  28937. jaws: {
  28938. height: math.unit(1.66, "meters"),
  28939. name: "Jaws",
  28940. image: {
  28941. source: "./media/characters/faey/jaws.svg"
  28942. }
  28943. },
  28944. tongues: {
  28945. height: math.unit(2.01, "meters"),
  28946. name: "Tongues",
  28947. image: {
  28948. source: "./media/characters/faey/tongues.svg"
  28949. }
  28950. },
  28951. },
  28952. [
  28953. {
  28954. name: "Small",
  28955. height: math.unit(10, "meters"),
  28956. default: true
  28957. },
  28958. {
  28959. name: "Big",
  28960. height: math.unit(500000, "km")
  28961. },
  28962. ]
  28963. ))
  28964. characterMakers.push(() => makeCharacter(
  28965. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28966. {
  28967. front: {
  28968. height: math.unit(7, "feet"),
  28969. weight: math.unit(275, "lb"),
  28970. name: "Front",
  28971. image: {
  28972. source: "./media/characters/roku/front.svg",
  28973. extra: 903 / 878,
  28974. bottom: 37 / 940
  28975. }
  28976. },
  28977. },
  28978. [
  28979. {
  28980. name: "Normal",
  28981. height: math.unit(7, "feet"),
  28982. default: true
  28983. },
  28984. {
  28985. name: "Macro",
  28986. height: math.unit(500, "feet")
  28987. },
  28988. {
  28989. name: "Megamacro",
  28990. height: math.unit(200, "miles")
  28991. },
  28992. ]
  28993. ))
  28994. characterMakers.push(() => makeCharacter(
  28995. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28996. {
  28997. front: {
  28998. height: math.unit(6 + 2 / 12, "feet"),
  28999. weight: math.unit(150, "lb"),
  29000. name: "Front",
  29001. image: {
  29002. source: "./media/characters/lira/front.svg",
  29003. extra: 1727 / 1605,
  29004. bottom: 26 / 1753
  29005. }
  29006. },
  29007. back: {
  29008. height: math.unit(6 + 2 / 12, "feet"),
  29009. weight: math.unit(150, "lb"),
  29010. name: "Back",
  29011. image: {
  29012. source: "./media/characters/lira/back.svg",
  29013. extra: 1713/1621,
  29014. bottom: 20/1733
  29015. }
  29016. },
  29017. hand: {
  29018. height: math.unit(0.75, "feet"),
  29019. name: "Hand",
  29020. image: {
  29021. source: "./media/characters/lira/hand.svg"
  29022. }
  29023. },
  29024. maw: {
  29025. height: math.unit(0.65, "feet"),
  29026. name: "Maw",
  29027. image: {
  29028. source: "./media/characters/lira/maw.svg"
  29029. }
  29030. },
  29031. pawDigi: {
  29032. height: math.unit(1.6, "feet"),
  29033. name: "Paw Digi",
  29034. image: {
  29035. source: "./media/characters/lira/paw-digi.svg"
  29036. }
  29037. },
  29038. pawPlanti: {
  29039. height: math.unit(1.4, "feet"),
  29040. name: "Paw Planti",
  29041. image: {
  29042. source: "./media/characters/lira/paw-planti.svg"
  29043. }
  29044. },
  29045. },
  29046. [
  29047. {
  29048. name: "Normal",
  29049. height: math.unit(6 + 2 / 12, "feet"),
  29050. default: true
  29051. },
  29052. {
  29053. name: "Macro",
  29054. height: math.unit(100, "feet")
  29055. },
  29056. {
  29057. name: "Macro²",
  29058. height: math.unit(1600, "feet")
  29059. },
  29060. {
  29061. name: "Planetary",
  29062. height: math.unit(20, "earths")
  29063. },
  29064. ]
  29065. ))
  29066. characterMakers.push(() => makeCharacter(
  29067. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29068. {
  29069. front: {
  29070. height: math.unit(6, "feet"),
  29071. weight: math.unit(150, "lb"),
  29072. name: "Front",
  29073. image: {
  29074. source: "./media/characters/hadjet/front.svg",
  29075. extra: 1480 / 1346,
  29076. bottom: 26 / 1506
  29077. }
  29078. },
  29079. frontNsfw: {
  29080. height: math.unit(6, "feet"),
  29081. weight: math.unit(150, "lb"),
  29082. name: "Front (NSFW)",
  29083. image: {
  29084. source: "./media/characters/hadjet/front-nsfw.svg",
  29085. extra: 1440 / 1358,
  29086. bottom: 52 / 1492
  29087. }
  29088. },
  29089. },
  29090. [
  29091. {
  29092. name: "Macro",
  29093. height: math.unit(10, "stories"),
  29094. default: true
  29095. },
  29096. {
  29097. name: "Megamacro",
  29098. height: math.unit(1.5, "miles")
  29099. },
  29100. {
  29101. name: "Megamacro+",
  29102. height: math.unit(5, "miles")
  29103. },
  29104. ]
  29105. ))
  29106. characterMakers.push(() => makeCharacter(
  29107. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29108. {
  29109. side: {
  29110. height: math.unit(106, "feet"),
  29111. weight: math.unit(500, "tonnes"),
  29112. name: "Side",
  29113. image: {
  29114. source: "./media/characters/kodran/side.svg",
  29115. extra: 553 / 480,
  29116. bottom: 33 / 586
  29117. }
  29118. },
  29119. front: {
  29120. height: math.unit(132, "feet"),
  29121. weight: math.unit(500, "tonnes"),
  29122. name: "Front",
  29123. image: {
  29124. source: "./media/characters/kodran/front.svg",
  29125. extra: 667 / 643,
  29126. bottom: 42 / 709
  29127. }
  29128. },
  29129. flying: {
  29130. height: math.unit(350, "feet"),
  29131. weight: math.unit(500, "tonnes"),
  29132. name: "Flying",
  29133. image: {
  29134. source: "./media/characters/kodran/flying.svg"
  29135. }
  29136. },
  29137. foot: {
  29138. height: math.unit(33, "feet"),
  29139. name: "Foot",
  29140. image: {
  29141. source: "./media/characters/kodran/foot.svg"
  29142. }
  29143. },
  29144. footFront: {
  29145. height: math.unit(19, "feet"),
  29146. name: "Foot (Front)",
  29147. image: {
  29148. source: "./media/characters/kodran/foot-front.svg",
  29149. extra: 261 / 261,
  29150. bottom: 91 / 352
  29151. }
  29152. },
  29153. headFront: {
  29154. height: math.unit(53, "feet"),
  29155. name: "Head (Front)",
  29156. image: {
  29157. source: "./media/characters/kodran/head-front.svg"
  29158. }
  29159. },
  29160. headSide: {
  29161. height: math.unit(65, "feet"),
  29162. name: "Head (Side)",
  29163. image: {
  29164. source: "./media/characters/kodran/head-side.svg"
  29165. }
  29166. },
  29167. throat: {
  29168. height: math.unit(79, "feet"),
  29169. name: "Throat",
  29170. image: {
  29171. source: "./media/characters/kodran/throat.svg"
  29172. }
  29173. },
  29174. },
  29175. [
  29176. {
  29177. name: "Large",
  29178. height: math.unit(106, "feet"),
  29179. default: true
  29180. },
  29181. ]
  29182. ))
  29183. characterMakers.push(() => makeCharacter(
  29184. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29185. {
  29186. side: {
  29187. height: math.unit(11, "feet"),
  29188. weight: math.unit(150, "lb"),
  29189. name: "Side",
  29190. image: {
  29191. source: "./media/characters/pyxaron/side.svg",
  29192. extra: 305 / 195,
  29193. bottom: 17 / 322
  29194. }
  29195. },
  29196. },
  29197. [
  29198. {
  29199. name: "Normal",
  29200. height: math.unit(11, "feet"),
  29201. default: true
  29202. },
  29203. ]
  29204. ))
  29205. characterMakers.push(() => makeCharacter(
  29206. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29207. {
  29208. front: {
  29209. height: math.unit(6, "feet"),
  29210. weight: math.unit(150, "lb"),
  29211. name: "Front",
  29212. image: {
  29213. source: "./media/characters/meep/front.svg",
  29214. extra: 88 / 80,
  29215. bottom: 6 / 94
  29216. }
  29217. },
  29218. },
  29219. [
  29220. {
  29221. name: "Fun Sized",
  29222. height: math.unit(2, "inches"),
  29223. default: true
  29224. },
  29225. {
  29226. name: "Friend Sized",
  29227. height: math.unit(8, "inches")
  29228. },
  29229. ]
  29230. ))
  29231. characterMakers.push(() => makeCharacter(
  29232. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29233. {
  29234. front: {
  29235. height: math.unit(15, "feet"),
  29236. weight: math.unit(2500, "lb"),
  29237. name: "Front",
  29238. image: {
  29239. source: "./media/characters/holly-rabbit/front.svg",
  29240. extra: 1433 / 1233,
  29241. bottom: 125 / 1558
  29242. }
  29243. },
  29244. dick: {
  29245. height: math.unit(4.6, "feet"),
  29246. name: "Dick",
  29247. image: {
  29248. source: "./media/characters/holly-rabbit/dick.svg"
  29249. }
  29250. },
  29251. },
  29252. [
  29253. {
  29254. name: "Normal",
  29255. height: math.unit(15, "feet"),
  29256. default: true
  29257. },
  29258. {
  29259. name: "Macro",
  29260. height: math.unit(250, "feet")
  29261. },
  29262. {
  29263. name: "Macro+",
  29264. height: math.unit(2500, "feet")
  29265. },
  29266. ]
  29267. ))
  29268. characterMakers.push(() => makeCharacter(
  29269. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29270. {
  29271. front: {
  29272. height: math.unit(3.02, "meters"),
  29273. weight: math.unit(500, "kg"),
  29274. name: "Front",
  29275. image: {
  29276. source: "./media/characters/drena/front.svg",
  29277. extra: 282 / 243,
  29278. bottom: 8 / 290
  29279. }
  29280. },
  29281. side: {
  29282. height: math.unit(3.02, "meters"),
  29283. weight: math.unit(500, "kg"),
  29284. name: "Side",
  29285. image: {
  29286. source: "./media/characters/drena/side.svg",
  29287. extra: 280 / 245,
  29288. bottom: 10 / 290
  29289. }
  29290. },
  29291. back: {
  29292. height: math.unit(3.02, "meters"),
  29293. weight: math.unit(500, "kg"),
  29294. name: "Back",
  29295. image: {
  29296. source: "./media/characters/drena/back.svg",
  29297. extra: 278 / 243,
  29298. bottom: 2 / 280
  29299. }
  29300. },
  29301. foot: {
  29302. height: math.unit(0.75, "meters"),
  29303. name: "Foot",
  29304. image: {
  29305. source: "./media/characters/drena/foot.svg"
  29306. }
  29307. },
  29308. maw: {
  29309. height: math.unit(0.82, "meters"),
  29310. name: "Maw",
  29311. image: {
  29312. source: "./media/characters/drena/maw.svg"
  29313. }
  29314. },
  29315. eating: {
  29316. height: math.unit(0.75, "meters"),
  29317. name: "Eating",
  29318. image: {
  29319. source: "./media/characters/drena/eating.svg"
  29320. }
  29321. },
  29322. rump: {
  29323. height: math.unit(0.93, "meters"),
  29324. name: "Rump",
  29325. image: {
  29326. source: "./media/characters/drena/rump.svg"
  29327. }
  29328. },
  29329. },
  29330. [
  29331. {
  29332. name: "Normal",
  29333. height: math.unit(3.02, "meters"),
  29334. default: true
  29335. },
  29336. ]
  29337. ))
  29338. characterMakers.push(() => makeCharacter(
  29339. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29340. {
  29341. front: {
  29342. height: math.unit(6 + 4 / 12, "feet"),
  29343. weight: math.unit(250, "lb"),
  29344. name: "Front",
  29345. image: {
  29346. source: "./media/characters/remmyzilla/front.svg",
  29347. extra: 4033 / 3588,
  29348. bottom: 123 / 4156
  29349. }
  29350. },
  29351. back: {
  29352. height: math.unit(6 + 4 / 12, "feet"),
  29353. weight: math.unit(250, "lb"),
  29354. name: "Back",
  29355. image: {
  29356. source: "./media/characters/remmyzilla/back.svg",
  29357. extra: 2687 / 2555,
  29358. bottom: 48 / 2735
  29359. }
  29360. },
  29361. paw: {
  29362. height: math.unit(1.73, "feet"),
  29363. name: "Paw",
  29364. image: {
  29365. source: "./media/characters/remmyzilla/paw.svg"
  29366. }
  29367. },
  29368. maw: {
  29369. height: math.unit(1.73, "feet"),
  29370. name: "Maw",
  29371. image: {
  29372. source: "./media/characters/remmyzilla/maw.svg"
  29373. }
  29374. },
  29375. },
  29376. [
  29377. {
  29378. name: "Normal",
  29379. height: math.unit(6 + 4 / 12, "feet")
  29380. },
  29381. {
  29382. name: "Minimacro",
  29383. height: math.unit(12 + 8 / 12, "feet")
  29384. },
  29385. {
  29386. name: "Normal",
  29387. height: math.unit(640, "feet"),
  29388. default: true
  29389. },
  29390. {
  29391. name: "Megamacro",
  29392. height: math.unit(6400, "feet")
  29393. },
  29394. {
  29395. name: "Gigamacro",
  29396. height: math.unit(64000, "miles")
  29397. },
  29398. ]
  29399. ))
  29400. characterMakers.push(() => makeCharacter(
  29401. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29402. {
  29403. front: {
  29404. height: math.unit(2.5, "meters"),
  29405. weight: math.unit(300, "lb"),
  29406. name: "Front",
  29407. image: {
  29408. source: "./media/characters/lawrence/front.svg",
  29409. extra: 357 / 335,
  29410. bottom: 30 / 387
  29411. }
  29412. },
  29413. back: {
  29414. height: math.unit(2.5, "meters"),
  29415. weight: math.unit(300, "lb"),
  29416. name: "Back",
  29417. image: {
  29418. source: "./media/characters/lawrence/back.svg",
  29419. extra: 357 / 338,
  29420. bottom: 16 / 373
  29421. }
  29422. },
  29423. head: {
  29424. height: math.unit(0.9, "meter"),
  29425. name: "Head",
  29426. image: {
  29427. source: "./media/characters/lawrence/head.svg"
  29428. }
  29429. },
  29430. maw: {
  29431. height: math.unit(0.7, "meter"),
  29432. name: "Maw",
  29433. image: {
  29434. source: "./media/characters/lawrence/maw.svg"
  29435. }
  29436. },
  29437. footBottom: {
  29438. height: math.unit(0.5, "meter"),
  29439. name: "Foot (Bottom)",
  29440. image: {
  29441. source: "./media/characters/lawrence/foot-bottom.svg"
  29442. }
  29443. },
  29444. footTop: {
  29445. height: math.unit(0.5, "meter"),
  29446. name: "Foot (Top)",
  29447. image: {
  29448. source: "./media/characters/lawrence/foot-top.svg"
  29449. }
  29450. },
  29451. },
  29452. [
  29453. {
  29454. name: "Normal",
  29455. height: math.unit(2.5, "meters"),
  29456. default: true
  29457. },
  29458. {
  29459. name: "Macro",
  29460. height: math.unit(95, "meters")
  29461. },
  29462. {
  29463. name: "Megamacro",
  29464. height: math.unit(150, "km")
  29465. },
  29466. ]
  29467. ))
  29468. characterMakers.push(() => makeCharacter(
  29469. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29470. {
  29471. front: {
  29472. height: math.unit(4.2, "meters"),
  29473. name: "Front",
  29474. image: {
  29475. source: "./media/characters/sydney/front.svg",
  29476. extra: 1323 / 1277,
  29477. bottom: 111 / 1434
  29478. }
  29479. },
  29480. },
  29481. [
  29482. {
  29483. name: "Normal",
  29484. height: math.unit(4.2, "meters"),
  29485. default: true
  29486. },
  29487. ]
  29488. ))
  29489. characterMakers.push(() => makeCharacter(
  29490. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29491. {
  29492. back: {
  29493. height: math.unit(201, "feet"),
  29494. name: "Back",
  29495. image: {
  29496. source: "./media/characters/jessica/back.svg",
  29497. extra: 273 / 259,
  29498. bottom: 7 / 280
  29499. }
  29500. },
  29501. },
  29502. [
  29503. {
  29504. name: "Normal",
  29505. height: math.unit(201, "feet"),
  29506. default: true
  29507. },
  29508. {
  29509. name: "Megamacro",
  29510. height: math.unit(8, "miles")
  29511. },
  29512. ]
  29513. ))
  29514. characterMakers.push(() => makeCharacter(
  29515. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29516. {
  29517. side: {
  29518. height: math.unit(5.6, "m"),
  29519. weight: math.unit(8000, "kg"),
  29520. name: "Side",
  29521. image: {
  29522. source: "./media/characters/victoria/side.svg",
  29523. extra: 1542/1229,
  29524. bottom: 124/1666
  29525. }
  29526. },
  29527. maw: {
  29528. height: math.unit(7.14, "feet"),
  29529. name: "Maw",
  29530. image: {
  29531. source: "./media/characters/victoria/maw.svg"
  29532. }
  29533. },
  29534. },
  29535. [
  29536. {
  29537. name: "Normal",
  29538. height: math.unit(5.6, "m"),
  29539. default: true
  29540. },
  29541. ]
  29542. ))
  29543. characterMakers.push(() => makeCharacter(
  29544. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29545. {
  29546. front: {
  29547. height: math.unit(5 + 6 / 12, "feet"),
  29548. name: "Front",
  29549. image: {
  29550. source: "./media/characters/cat/front.svg",
  29551. extra: 1449/1295,
  29552. bottom: 34/1483
  29553. },
  29554. form: "cat",
  29555. default: true
  29556. },
  29557. back: {
  29558. height: math.unit(5 + 6 / 12, "feet"),
  29559. name: "Back",
  29560. image: {
  29561. source: "./media/characters/cat/back.svg",
  29562. extra: 1466/1301,
  29563. bottom: 19/1485
  29564. },
  29565. form: "cat"
  29566. },
  29567. taur: {
  29568. height: math.unit(7, "feet"),
  29569. name: "Taur",
  29570. image: {
  29571. source: "./media/characters/cat/taur.svg",
  29572. extra: 1389/1233,
  29573. bottom: 83/1472
  29574. },
  29575. form: "taur",
  29576. default: true
  29577. },
  29578. lucarioFront: {
  29579. height: math.unit(4, "feet"),
  29580. name: "Lucario (Front)",
  29581. image: {
  29582. source: "./media/characters/cat/lucario-front.svg",
  29583. extra: 1149/1019,
  29584. bottom: 84/1233
  29585. },
  29586. form: "lucario",
  29587. default: true
  29588. },
  29589. lucarioBack: {
  29590. height: math.unit(4, "feet"),
  29591. name: "Lucario (Back)",
  29592. image: {
  29593. source: "./media/characters/cat/lucario-back.svg",
  29594. extra: 1190/1059,
  29595. bottom: 33/1223
  29596. },
  29597. form: "lucario"
  29598. },
  29599. megaLucario: {
  29600. height: math.unit(4, "feet"),
  29601. name: "Mega Lucario",
  29602. image: {
  29603. source: "./media/characters/cat/mega-lucario.svg",
  29604. extra: 1515 / 1319,
  29605. bottom: 63 / 1578
  29606. },
  29607. form: "lucario"
  29608. },
  29609. nickit: {
  29610. height: math.unit(2, "feet"),
  29611. name: "Nickit",
  29612. image: {
  29613. source: "./media/characters/cat/nickit.svg",
  29614. extra: 1980 / 1585,
  29615. bottom: 102 / 2082
  29616. },
  29617. form: "nickit",
  29618. default: true
  29619. },
  29620. lopunnyFront: {
  29621. height: math.unit(5, "feet"),
  29622. name: "Lopunny (Front)",
  29623. image: {
  29624. source: "./media/characters/cat/lopunny-front.svg",
  29625. extra: 1782 / 1469,
  29626. bottom: 38 / 1820
  29627. },
  29628. form: "lopunny",
  29629. default: true
  29630. },
  29631. lopunnyBack: {
  29632. height: math.unit(5, "feet"),
  29633. name: "Lopunny (Back)",
  29634. image: {
  29635. source: "./media/characters/cat/lopunny-back.svg",
  29636. extra: 1660 / 1490,
  29637. bottom: 25 / 1685
  29638. },
  29639. form: "lopunny"
  29640. },
  29641. },
  29642. [
  29643. {
  29644. name: "Really small",
  29645. height: math.unit(1, "nm")
  29646. },
  29647. {
  29648. name: "Micro",
  29649. height: math.unit(5, "inches")
  29650. },
  29651. {
  29652. name: "Normal",
  29653. height: math.unit(5 + 6 / 12, "feet"),
  29654. default: true
  29655. },
  29656. {
  29657. name: "Macro",
  29658. height: math.unit(50, "feet")
  29659. },
  29660. {
  29661. name: "Macro+",
  29662. height: math.unit(150, "feet")
  29663. },
  29664. {
  29665. name: "Megamacro",
  29666. height: math.unit(100, "miles")
  29667. },
  29668. ]
  29669. ))
  29670. characterMakers.push(() => makeCharacter(
  29671. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29672. {
  29673. front: {
  29674. height: math.unit(63.4, "meters"),
  29675. weight: math.unit(3.28349e+6, "kilograms"),
  29676. name: "Front",
  29677. image: {
  29678. source: "./media/characters/kirina-violet/front.svg",
  29679. extra: 2812 / 2725,
  29680. bottom: 0 / 2812
  29681. }
  29682. },
  29683. back: {
  29684. height: math.unit(63.4, "meters"),
  29685. weight: math.unit(3.28349e+6, "kilograms"),
  29686. name: "Back",
  29687. image: {
  29688. source: "./media/characters/kirina-violet/back.svg",
  29689. extra: 2812 / 2725,
  29690. bottom: 0 / 2812
  29691. }
  29692. },
  29693. mouth: {
  29694. height: math.unit(4.35, "meters"),
  29695. name: "Mouth",
  29696. image: {
  29697. source: "./media/characters/kirina-violet/mouth.svg"
  29698. }
  29699. },
  29700. paw: {
  29701. height: math.unit(5.6, "meters"),
  29702. name: "Paw",
  29703. image: {
  29704. source: "./media/characters/kirina-violet/paw.svg"
  29705. }
  29706. },
  29707. tail: {
  29708. height: math.unit(18, "meters"),
  29709. name: "Tail",
  29710. image: {
  29711. source: "./media/characters/kirina-violet/tail.svg"
  29712. }
  29713. },
  29714. },
  29715. [
  29716. {
  29717. name: "Macro",
  29718. height: math.unit(63.4, "meters"),
  29719. default: true
  29720. },
  29721. ]
  29722. ))
  29723. characterMakers.push(() => makeCharacter(
  29724. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29725. {
  29726. front: {
  29727. height: math.unit(75, "feet"),
  29728. name: "Front",
  29729. image: {
  29730. source: "./media/characters/cat-gigachu/front.svg",
  29731. extra: 1239/1027,
  29732. bottom: 32/1271
  29733. }
  29734. },
  29735. back: {
  29736. height: math.unit(75, "feet"),
  29737. name: "Back",
  29738. image: {
  29739. source: "./media/characters/cat-gigachu/back.svg",
  29740. extra: 1229/1030,
  29741. bottom: 9/1238
  29742. }
  29743. },
  29744. },
  29745. [
  29746. {
  29747. name: "Dynamax",
  29748. height: math.unit(75, "feet"),
  29749. default: true
  29750. },
  29751. ]
  29752. ))
  29753. characterMakers.push(() => makeCharacter(
  29754. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29755. {
  29756. front: {
  29757. height: math.unit(6, "feet"),
  29758. weight: math.unit(150, "lb"),
  29759. name: "Front",
  29760. image: {
  29761. source: "./media/characters/sfaiyan/front.svg",
  29762. extra: 999 / 978,
  29763. bottom: 5 / 1004
  29764. }
  29765. },
  29766. },
  29767. [
  29768. {
  29769. name: "Normal",
  29770. height: math.unit(1.82, "meters")
  29771. },
  29772. {
  29773. name: "Giant",
  29774. height: math.unit(2.27, "km"),
  29775. default: true
  29776. },
  29777. ]
  29778. ))
  29779. characterMakers.push(() => makeCharacter(
  29780. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29781. {
  29782. front: {
  29783. height: math.unit(179, "cm"),
  29784. weight: math.unit(100, "kg"),
  29785. name: "Front",
  29786. image: {
  29787. source: "./media/characters/raunehkeli/front.svg",
  29788. extra: 1934 / 1926,
  29789. bottom: 0 / 1934
  29790. }
  29791. },
  29792. },
  29793. [
  29794. {
  29795. name: "Normal",
  29796. height: math.unit(179, "cm")
  29797. },
  29798. {
  29799. name: "Maximum",
  29800. height: math.unit(575, "meters"),
  29801. default: true
  29802. },
  29803. ]
  29804. ))
  29805. characterMakers.push(() => makeCharacter(
  29806. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29807. {
  29808. front: {
  29809. height: math.unit(6, "feet"),
  29810. weight: math.unit(150, "lb"),
  29811. name: "Front",
  29812. image: {
  29813. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29814. extra: 2625 / 2518,
  29815. bottom: 60 / 2685
  29816. }
  29817. },
  29818. },
  29819. [
  29820. {
  29821. name: "Normal",
  29822. height: math.unit(6 + 2 / 12, "feet")
  29823. },
  29824. {
  29825. name: "Macro",
  29826. height: math.unit(1180, "feet"),
  29827. default: true
  29828. },
  29829. ]
  29830. ))
  29831. characterMakers.push(() => makeCharacter(
  29832. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29833. {
  29834. front: {
  29835. height: math.unit(5 + 6 / 12, "feet"),
  29836. weight: math.unit(108, "lb"),
  29837. name: "Front",
  29838. image: {
  29839. source: "./media/characters/lilith-zott/front.svg",
  29840. extra: 2510 / 2238,
  29841. bottom: 100 / 2610
  29842. }
  29843. },
  29844. frontDressed: {
  29845. height: math.unit(5 + 6 / 12, "feet"),
  29846. weight: math.unit(108, "lb"),
  29847. name: "Front (Dressed)",
  29848. image: {
  29849. source: "./media/characters/lilith-zott/front-dressed.svg",
  29850. extra: 2510 / 2238,
  29851. bottom: 100 / 2610
  29852. }
  29853. },
  29854. },
  29855. [
  29856. {
  29857. name: "Normal",
  29858. height: math.unit(5 + 6 / 12, "feet")
  29859. },
  29860. {
  29861. name: "Macro",
  29862. height: math.unit(1030, "feet"),
  29863. default: true
  29864. },
  29865. ]
  29866. ))
  29867. characterMakers.push(() => makeCharacter(
  29868. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29869. {
  29870. front: {
  29871. height: math.unit(6, "feet"),
  29872. weight: math.unit(150, "lb"),
  29873. name: "Front",
  29874. image: {
  29875. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29876. extra: 2567 / 2435,
  29877. bottom: 39 / 2606
  29878. }
  29879. },
  29880. frontSuper: {
  29881. height: math.unit(6, "feet"),
  29882. name: "Front (Super)",
  29883. image: {
  29884. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29885. extra: 2567 / 2435,
  29886. bottom: 39 / 2606
  29887. }
  29888. },
  29889. },
  29890. [
  29891. {
  29892. name: "Normal",
  29893. height: math.unit(5 + 10 / 12, "feet")
  29894. },
  29895. {
  29896. name: "Macro",
  29897. height: math.unit(1100, "feet"),
  29898. default: true
  29899. },
  29900. ]
  29901. ))
  29902. characterMakers.push(() => makeCharacter(
  29903. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29904. {
  29905. front: {
  29906. height: math.unit(100, "miles"),
  29907. name: "Front",
  29908. image: {
  29909. source: "./media/characters/sona/front.svg",
  29910. extra: 2433 / 2201,
  29911. bottom: 53 / 2486
  29912. }
  29913. },
  29914. foot: {
  29915. height: math.unit(16.1, "miles"),
  29916. name: "Foot",
  29917. image: {
  29918. source: "./media/characters/sona/foot.svg"
  29919. }
  29920. },
  29921. },
  29922. [
  29923. {
  29924. name: "Macro",
  29925. height: math.unit(100, "miles"),
  29926. default: true
  29927. },
  29928. ]
  29929. ))
  29930. characterMakers.push(() => makeCharacter(
  29931. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29932. {
  29933. front: {
  29934. height: math.unit(6, "feet"),
  29935. weight: math.unit(150, "lb"),
  29936. name: "Front",
  29937. image: {
  29938. source: "./media/characters/bailey/front.svg",
  29939. extra: 1778 / 1724,
  29940. bottom: 30 / 1808
  29941. }
  29942. },
  29943. },
  29944. [
  29945. {
  29946. name: "Micro",
  29947. height: math.unit(4, "inches")
  29948. },
  29949. {
  29950. name: "Normal",
  29951. height: math.unit(5 + 5 / 12, "feet"),
  29952. default: true
  29953. },
  29954. {
  29955. name: "Macro",
  29956. height: math.unit(250, "feet")
  29957. },
  29958. {
  29959. name: "Megamacro",
  29960. height: math.unit(100, "miles")
  29961. },
  29962. ]
  29963. ))
  29964. characterMakers.push(() => makeCharacter(
  29965. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29966. {
  29967. front: {
  29968. height: math.unit(5 + 2 / 12, "feet"),
  29969. weight: math.unit(120, "lb"),
  29970. name: "Front",
  29971. image: {
  29972. source: "./media/characters/snaps/front.svg",
  29973. extra: 2370 / 2177,
  29974. bottom: 48 / 2418
  29975. }
  29976. },
  29977. back: {
  29978. height: math.unit(5 + 2 / 12, "feet"),
  29979. weight: math.unit(120, "lb"),
  29980. name: "Back",
  29981. image: {
  29982. source: "./media/characters/snaps/back.svg",
  29983. extra: 2408 / 2258,
  29984. bottom: 15 / 2423
  29985. }
  29986. },
  29987. },
  29988. [
  29989. {
  29990. name: "Micro",
  29991. height: math.unit(9, "inches")
  29992. },
  29993. {
  29994. name: "Normal",
  29995. height: math.unit(5 + 2 / 12, "feet"),
  29996. default: true
  29997. },
  29998. {
  29999. name: "Mini Macro",
  30000. height: math.unit(10, "feet")
  30001. },
  30002. ]
  30003. ))
  30004. characterMakers.push(() => makeCharacter(
  30005. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30006. {
  30007. front: {
  30008. height: math.unit(1.8, "meters"),
  30009. weight: math.unit(85, "kg"),
  30010. name: "Front",
  30011. image: {
  30012. source: "./media/characters/azteck/front.svg",
  30013. extra: 2815 / 2625,
  30014. bottom: 89 / 2904
  30015. }
  30016. },
  30017. back: {
  30018. height: math.unit(1.8, "meters"),
  30019. weight: math.unit(85, "kg"),
  30020. name: "Back",
  30021. image: {
  30022. source: "./media/characters/azteck/back.svg",
  30023. extra: 2856 / 2648,
  30024. bottom: 85 / 2941
  30025. }
  30026. },
  30027. frontDressed: {
  30028. height: math.unit(1.8, "meters"),
  30029. weight: math.unit(85, "kg"),
  30030. name: "Front (Dressed)",
  30031. image: {
  30032. source: "./media/characters/azteck/front-dressed.svg",
  30033. extra: 2147 / 2003,
  30034. bottom: 68 / 2215
  30035. }
  30036. },
  30037. head: {
  30038. height: math.unit(0.47, "meters"),
  30039. weight: math.unit(85, "kg"),
  30040. name: "Head",
  30041. image: {
  30042. source: "./media/characters/azteck/head.svg"
  30043. }
  30044. },
  30045. },
  30046. [
  30047. {
  30048. name: "Bite sized",
  30049. height: math.unit(16, "cm")
  30050. },
  30051. {
  30052. name: "Normal",
  30053. height: math.unit(1.8, "meters"),
  30054. default: true
  30055. },
  30056. ]
  30057. ))
  30058. characterMakers.push(() => makeCharacter(
  30059. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30060. {
  30061. front: {
  30062. height: math.unit(6, "feet"),
  30063. weight: math.unit(150, "lb"),
  30064. name: "Front",
  30065. image: {
  30066. source: "./media/characters/pidge/front.svg",
  30067. extra: 620 / 588,
  30068. bottom: 9 / 629
  30069. }
  30070. },
  30071. back: {
  30072. height: math.unit(6, "feet"),
  30073. weight: math.unit(150, "lb"),
  30074. name: "Back",
  30075. image: {
  30076. source: "./media/characters/pidge/back.svg",
  30077. extra: 620 / 588,
  30078. bottom: 9 / 629
  30079. }
  30080. },
  30081. },
  30082. [
  30083. {
  30084. name: "Macro",
  30085. height: math.unit(1, "mile"),
  30086. default: true
  30087. },
  30088. ]
  30089. ))
  30090. characterMakers.push(() => makeCharacter(
  30091. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30092. {
  30093. front: {
  30094. height: math.unit(6, "feet"),
  30095. weight: math.unit(150, "lb"),
  30096. name: "Front",
  30097. image: {
  30098. source: "./media/characters/en/front.svg",
  30099. extra: 1697 / 1563,
  30100. bottom: 103 / 1800
  30101. }
  30102. },
  30103. back: {
  30104. height: math.unit(6, "feet"),
  30105. weight: math.unit(150, "lb"),
  30106. name: "Back",
  30107. image: {
  30108. source: "./media/characters/en/back.svg",
  30109. extra: 1700 / 1570,
  30110. bottom: 51 / 1751
  30111. }
  30112. },
  30113. frontDressed: {
  30114. height: math.unit(6, "feet"),
  30115. weight: math.unit(150, "lb"),
  30116. name: "Front (Dressed)",
  30117. image: {
  30118. source: "./media/characters/en/front-dressed.svg",
  30119. extra: 1697 / 1563,
  30120. bottom: 103 / 1800
  30121. }
  30122. },
  30123. backDressed: {
  30124. height: math.unit(6, "feet"),
  30125. weight: math.unit(150, "lb"),
  30126. name: "Back (Dressed)",
  30127. image: {
  30128. source: "./media/characters/en/back-dressed.svg",
  30129. extra: 1700 / 1570,
  30130. bottom: 51 / 1751
  30131. }
  30132. },
  30133. },
  30134. [
  30135. {
  30136. name: "Macro",
  30137. height: math.unit(210, "feet"),
  30138. default: true
  30139. },
  30140. ]
  30141. ))
  30142. characterMakers.push(() => makeCharacter(
  30143. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30144. {
  30145. front: {
  30146. height: math.unit(6, "feet"),
  30147. weight: math.unit(150, "lb"),
  30148. name: "Front",
  30149. image: {
  30150. source: "./media/characters/haze-orris/front.svg",
  30151. extra: 3975 / 3525,
  30152. bottom: 137 / 4112
  30153. }
  30154. },
  30155. },
  30156. [
  30157. {
  30158. name: "Micro",
  30159. height: math.unit(150, "mm"),
  30160. default: true
  30161. },
  30162. ]
  30163. ))
  30164. characterMakers.push(() => makeCharacter(
  30165. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30166. {
  30167. front: {
  30168. height: math.unit(6, "feet"),
  30169. weight: math.unit(150, "lb"),
  30170. name: "Front",
  30171. image: {
  30172. source: "./media/characters/casselene-yaro/front.svg",
  30173. extra: 4721 / 4541,
  30174. bottom: 82 / 4803
  30175. }
  30176. },
  30177. back: {
  30178. height: math.unit(6, "feet"),
  30179. weight: math.unit(150, "lb"),
  30180. name: "Back",
  30181. image: {
  30182. source: "./media/characters/casselene-yaro/back.svg",
  30183. extra: 4569 / 4377,
  30184. bottom: 69 / 4638
  30185. }
  30186. },
  30187. frontDressed: {
  30188. height: math.unit(6, "feet"),
  30189. weight: math.unit(150, "lb"),
  30190. name: "Front-dressed",
  30191. image: {
  30192. source: "./media/characters/casselene-yaro/front-dressed.svg",
  30193. extra: 4721 / 4541,
  30194. bottom: 82 / 4803
  30195. }
  30196. },
  30197. },
  30198. [
  30199. {
  30200. name: "Macro",
  30201. height: math.unit(190, "feet"),
  30202. default: true
  30203. },
  30204. ]
  30205. ))
  30206. characterMakers.push(() => makeCharacter(
  30207. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  30208. {
  30209. front: {
  30210. height: math.unit(6, "feet"),
  30211. weight: math.unit(150, "lb"),
  30212. name: "Front",
  30213. image: {
  30214. source: "./media/characters/myra-rue-delore/front.svg",
  30215. extra: 1340 / 1308,
  30216. bottom: 67 / 1407
  30217. }
  30218. },
  30219. back: {
  30220. height: math.unit(6, "feet"),
  30221. weight: math.unit(150, "lb"),
  30222. name: "Back",
  30223. image: {
  30224. source: "./media/characters/myra-rue-delore/back.svg",
  30225. extra: 1341 / 1310,
  30226. bottom: 40 / 1381
  30227. }
  30228. },
  30229. frontDressed: {
  30230. height: math.unit(6, "feet"),
  30231. weight: math.unit(150, "lb"),
  30232. name: "Front (Dressed)",
  30233. image: {
  30234. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  30235. extra: 1340 / 1308,
  30236. bottom: 67 / 1407
  30237. }
  30238. },
  30239. },
  30240. [
  30241. {
  30242. name: "Macro",
  30243. height: math.unit(150, "feet"),
  30244. default: true
  30245. },
  30246. ]
  30247. ))
  30248. characterMakers.push(() => makeCharacter(
  30249. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  30250. {
  30251. front: {
  30252. height: math.unit(10, "feet"),
  30253. weight: math.unit(15015, "lb"),
  30254. name: "Front",
  30255. image: {
  30256. source: "./media/characters/fem!plat/front.svg",
  30257. extra: 2799 / 2604,
  30258. bottom: 149 / 2948
  30259. }
  30260. },
  30261. },
  30262. [
  30263. {
  30264. name: "Normal",
  30265. height: math.unit(10, "feet"),
  30266. default: true
  30267. },
  30268. {
  30269. name: "Macro",
  30270. height: math.unit(100, "feet")
  30271. },
  30272. {
  30273. name: "Megamacro",
  30274. height: math.unit(1000, "feet")
  30275. },
  30276. ]
  30277. ))
  30278. characterMakers.push(() => makeCharacter(
  30279. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30280. {
  30281. front: {
  30282. height: math.unit(15 + 5 / 12, "feet"),
  30283. weight: math.unit(4600, "lb"),
  30284. name: "Front",
  30285. image: {
  30286. source: "./media/characters/neapolitan-ananassa/front.svg",
  30287. extra: 2903 / 2736,
  30288. bottom: 0 / 2903
  30289. }
  30290. },
  30291. side: {
  30292. height: math.unit(15 + 5 / 12, "feet"),
  30293. weight: math.unit(4600, "lb"),
  30294. name: "Side",
  30295. image: {
  30296. source: "./media/characters/neapolitan-ananassa/side.svg",
  30297. extra: 2925 / 2719,
  30298. bottom: 0 / 2925
  30299. }
  30300. },
  30301. back: {
  30302. height: math.unit(15 + 5 / 12, "feet"),
  30303. weight: math.unit(4600, "lb"),
  30304. name: "Back",
  30305. image: {
  30306. source: "./media/characters/neapolitan-ananassa/back.svg",
  30307. extra: 2903 / 2736,
  30308. bottom: 0 / 2903
  30309. }
  30310. },
  30311. },
  30312. [
  30313. {
  30314. name: "Normal",
  30315. height: math.unit(15 + 5 / 12, "feet"),
  30316. default: true
  30317. },
  30318. {
  30319. name: "Post-Millenium",
  30320. height: math.unit(35 + 5 / 12, "feet")
  30321. },
  30322. {
  30323. name: "Post-Era",
  30324. height: math.unit(450 + 5 / 12, "feet")
  30325. },
  30326. ]
  30327. ))
  30328. characterMakers.push(() => makeCharacter(
  30329. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30330. {
  30331. front: {
  30332. height: math.unit(300, "meters"),
  30333. weight: math.unit(125000, "tonnes"),
  30334. name: "Front",
  30335. image: {
  30336. source: "./media/characters/pazuzu/front.svg",
  30337. extra: 877 / 794,
  30338. bottom: 47 / 924
  30339. }
  30340. },
  30341. },
  30342. [
  30343. {
  30344. name: "Macro",
  30345. height: math.unit(300, "meters"),
  30346. default: true
  30347. },
  30348. ]
  30349. ))
  30350. characterMakers.push(() => makeCharacter(
  30351. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30352. {
  30353. side: {
  30354. height: math.unit(10 + 7 / 12, "feet"),
  30355. weight: math.unit(2.5, "tons"),
  30356. name: "Side",
  30357. image: {
  30358. source: "./media/characters/aasha/side.svg",
  30359. extra: 1345 / 1245,
  30360. bottom: 111 / 1456
  30361. }
  30362. },
  30363. back: {
  30364. height: math.unit(10 + 7 / 12, "feet"),
  30365. weight: math.unit(2.5, "tons"),
  30366. name: "Back",
  30367. image: {
  30368. source: "./media/characters/aasha/back.svg",
  30369. extra: 1133 / 1057,
  30370. bottom: 257 / 1390
  30371. }
  30372. },
  30373. },
  30374. [
  30375. {
  30376. name: "Normal",
  30377. height: math.unit(10 + 7 / 12, "feet"),
  30378. default: true
  30379. },
  30380. ]
  30381. ))
  30382. characterMakers.push(() => makeCharacter(
  30383. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30384. {
  30385. front: {
  30386. height: math.unit(6 + 3 / 12, "feet"),
  30387. name: "Front",
  30388. image: {
  30389. source: "./media/characters/nevan/front.svg",
  30390. extra: 704 / 704,
  30391. bottom: 28 / 732
  30392. }
  30393. },
  30394. back: {
  30395. height: math.unit(6 + 3 / 12, "feet"),
  30396. name: "Back",
  30397. image: {
  30398. source: "./media/characters/nevan/back.svg",
  30399. extra: 714 / 714,
  30400. bottom: 21 / 735
  30401. }
  30402. },
  30403. frontFlaccid: {
  30404. height: math.unit(6 + 3 / 12, "feet"),
  30405. name: "Front (Flaccid)",
  30406. image: {
  30407. source: "./media/characters/nevan/front-flaccid.svg",
  30408. extra: 704 / 704,
  30409. bottom: 28 / 732
  30410. }
  30411. },
  30412. frontErect: {
  30413. height: math.unit(6 + 3 / 12, "feet"),
  30414. name: "Front (Erect)",
  30415. image: {
  30416. source: "./media/characters/nevan/front-erect.svg",
  30417. extra: 704 / 704,
  30418. bottom: 28 / 732
  30419. }
  30420. },
  30421. backFlaccid: {
  30422. height: math.unit(6 + 3 / 12, "feet"),
  30423. name: "Back (Flaccid)",
  30424. image: {
  30425. source: "./media/characters/nevan/back-flaccid.svg",
  30426. extra: 714 / 714,
  30427. bottom: 21 / 735
  30428. }
  30429. },
  30430. },
  30431. [
  30432. {
  30433. name: "Normal",
  30434. height: math.unit(6 + 3 / 12, "feet"),
  30435. default: true
  30436. },
  30437. ]
  30438. ))
  30439. characterMakers.push(() => makeCharacter(
  30440. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30441. {
  30442. front: {
  30443. height: math.unit(4, "feet"),
  30444. name: "Front",
  30445. image: {
  30446. source: "./media/characters/arhan/front.svg",
  30447. extra: 3368 / 3133,
  30448. bottom: 0 / 3368
  30449. }
  30450. },
  30451. side: {
  30452. height: math.unit(4, "feet"),
  30453. name: "Side",
  30454. image: {
  30455. source: "./media/characters/arhan/side.svg",
  30456. extra: 3347 / 3105,
  30457. bottom: 0 / 3347
  30458. }
  30459. },
  30460. tongue: {
  30461. height: math.unit(1.42, "feet"),
  30462. name: "Tongue",
  30463. image: {
  30464. source: "./media/characters/arhan/tongue.svg"
  30465. }
  30466. },
  30467. head: {
  30468. height: math.unit(0.85, "feet"),
  30469. name: "Head",
  30470. image: {
  30471. source: "./media/characters/arhan/head.svg"
  30472. }
  30473. },
  30474. },
  30475. [
  30476. {
  30477. name: "Normal",
  30478. height: math.unit(4, "feet"),
  30479. default: true
  30480. },
  30481. ]
  30482. ))
  30483. characterMakers.push(() => makeCharacter(
  30484. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30485. {
  30486. front: {
  30487. height: math.unit(5 + 7.5 / 12, "feet"),
  30488. weight: math.unit(120, "lb"),
  30489. name: "Front",
  30490. image: {
  30491. source: "./media/characters/digi-duncan/front.svg",
  30492. extra: 330 / 326,
  30493. bottom: 16 / 346
  30494. }
  30495. },
  30496. side: {
  30497. height: math.unit(5 + 7.5 / 12, "feet"),
  30498. weight: math.unit(120, "lb"),
  30499. name: "Side",
  30500. image: {
  30501. source: "./media/characters/digi-duncan/side.svg",
  30502. extra: 341 / 337,
  30503. bottom: 1 / 342
  30504. }
  30505. },
  30506. back: {
  30507. height: math.unit(5 + 7.5 / 12, "feet"),
  30508. weight: math.unit(120, "lb"),
  30509. name: "Back",
  30510. image: {
  30511. source: "./media/characters/digi-duncan/back.svg",
  30512. extra: 330 / 326,
  30513. bottom: 12 / 342
  30514. }
  30515. },
  30516. },
  30517. [
  30518. {
  30519. name: "Speck",
  30520. height: math.unit(0.25, "mm")
  30521. },
  30522. {
  30523. name: "Micro",
  30524. height: math.unit(5, "mm")
  30525. },
  30526. {
  30527. name: "Tiny",
  30528. height: math.unit(0.5, "inches"),
  30529. default: true
  30530. },
  30531. {
  30532. name: "Human",
  30533. height: math.unit(5 + 7.5 / 12, "feet")
  30534. },
  30535. {
  30536. name: "Minigiant",
  30537. height: math.unit(8 + 5.25, "feet")
  30538. },
  30539. {
  30540. name: "Giant",
  30541. height: math.unit(2000, "feet")
  30542. },
  30543. {
  30544. name: "Mega",
  30545. height: math.unit(371.1, "miles")
  30546. },
  30547. ]
  30548. ))
  30549. characterMakers.push(() => makeCharacter(
  30550. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30551. {
  30552. front: {
  30553. height: math.unit(2, "meters"),
  30554. weight: math.unit(350, "kg"),
  30555. name: "Front",
  30556. image: {
  30557. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30558. extra: 898 / 838,
  30559. bottom: 9 / 907
  30560. }
  30561. },
  30562. },
  30563. [
  30564. {
  30565. name: "Micro",
  30566. height: math.unit(8, "meters")
  30567. },
  30568. {
  30569. name: "Normal",
  30570. height: math.unit(50, "meters"),
  30571. default: true
  30572. },
  30573. {
  30574. name: "Macro",
  30575. height: math.unit(500, "meters")
  30576. },
  30577. ]
  30578. ))
  30579. characterMakers.push(() => makeCharacter(
  30580. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30581. {
  30582. front: {
  30583. height: math.unit(6 + 6 / 12, "feet"),
  30584. name: "Front",
  30585. image: {
  30586. source: "./media/characters/khardesh/front.svg",
  30587. extra: 1788/1596,
  30588. bottom: 66/1854
  30589. }
  30590. },
  30591. back: {
  30592. height: math.unit(6 + 6 / 12, "feet"),
  30593. name: "Back",
  30594. image: {
  30595. source: "./media/characters/khardesh/back.svg",
  30596. extra: 1781/1584,
  30597. bottom: 68/1849
  30598. }
  30599. },
  30600. },
  30601. [
  30602. {
  30603. name: "Normal",
  30604. height: math.unit(6 + 6 / 12, "feet"),
  30605. default: true
  30606. },
  30607. {
  30608. name: "Normal+",
  30609. height: math.unit(4, "meters")
  30610. },
  30611. {
  30612. name: "Macro",
  30613. height: math.unit(50, "meters")
  30614. },
  30615. {
  30616. name: "Macro+",
  30617. height: math.unit(100, "meters")
  30618. },
  30619. {
  30620. name: "Megamacro",
  30621. height: math.unit(20, "km")
  30622. },
  30623. ]
  30624. ))
  30625. characterMakers.push(() => makeCharacter(
  30626. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30627. {
  30628. front: {
  30629. height: math.unit(6, "feet"),
  30630. weight: math.unit(150, "lb"),
  30631. name: "Front",
  30632. image: {
  30633. source: "./media/characters/kosho/front.svg",
  30634. extra: 1847 / 1847,
  30635. bottom: 86 / 1933
  30636. }
  30637. },
  30638. },
  30639. [
  30640. {
  30641. name: "Second-stage micro",
  30642. height: math.unit(0.5, "inches")
  30643. },
  30644. {
  30645. name: "First-stage micro",
  30646. height: math.unit(6, "inches")
  30647. },
  30648. {
  30649. name: "Normal",
  30650. height: math.unit(6, "feet"),
  30651. default: true
  30652. },
  30653. {
  30654. name: "First-stage macro",
  30655. height: math.unit(72, "feet")
  30656. },
  30657. {
  30658. name: "Second-stage macro",
  30659. height: math.unit(864, "feet")
  30660. },
  30661. ]
  30662. ))
  30663. characterMakers.push(() => makeCharacter(
  30664. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30665. {
  30666. normal: {
  30667. height: math.unit(4 + 6 / 12, "feet"),
  30668. name: "Normal",
  30669. image: {
  30670. source: "./media/characters/hydra/normal.svg",
  30671. extra: 2833 / 2634,
  30672. bottom: 68 / 2901
  30673. }
  30674. },
  30675. smol: {
  30676. height: math.unit(0.705, "inches"),
  30677. name: "Smol",
  30678. image: {
  30679. source: "./media/characters/hydra/smol.svg",
  30680. extra: 2715 / 2540,
  30681. bottom: 0 / 2715
  30682. }
  30683. },
  30684. },
  30685. [
  30686. {
  30687. name: "Normal",
  30688. height: math.unit(4 + 6 / 12, "feet"),
  30689. default: true
  30690. }
  30691. ]
  30692. ))
  30693. characterMakers.push(() => makeCharacter(
  30694. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30695. {
  30696. front: {
  30697. height: math.unit(0.6, "cm"),
  30698. name: "Front",
  30699. image: {
  30700. source: "./media/characters/daz/front.svg",
  30701. extra: 1682 / 1164,
  30702. bottom: 42 / 1724
  30703. }
  30704. },
  30705. },
  30706. [
  30707. {
  30708. name: "Normal",
  30709. height: math.unit(0.6, "cm"),
  30710. default: true
  30711. },
  30712. ]
  30713. ))
  30714. characterMakers.push(() => makeCharacter(
  30715. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30716. {
  30717. front: {
  30718. height: math.unit(6, "feet"),
  30719. weight: math.unit(235, "lb"),
  30720. name: "Front",
  30721. image: {
  30722. source: "./media/characters/theo-pangolin/front.svg",
  30723. extra: 1996 / 1969,
  30724. bottom: 115 / 2111
  30725. }
  30726. },
  30727. back: {
  30728. height: math.unit(6, "feet"),
  30729. weight: math.unit(235, "lb"),
  30730. name: "Back",
  30731. image: {
  30732. source: "./media/characters/theo-pangolin/back.svg",
  30733. extra: 1979 / 1979,
  30734. bottom: 40 / 2019
  30735. }
  30736. },
  30737. feral: {
  30738. height: math.unit(2, "feet"),
  30739. weight: math.unit(30, "lb"),
  30740. name: "Feral",
  30741. image: {
  30742. source: "./media/characters/theo-pangolin/feral.svg",
  30743. extra: 803 / 791,
  30744. bottom: 181 / 984
  30745. }
  30746. },
  30747. footFive: {
  30748. height: math.unit(1.43, "feet"),
  30749. name: "Foot (Five Toes)",
  30750. image: {
  30751. source: "./media/characters/theo-pangolin/foot-five.svg"
  30752. }
  30753. },
  30754. footFour: {
  30755. height: math.unit(1.43, "feet"),
  30756. name: "Foot (Four Toes)",
  30757. image: {
  30758. source: "./media/characters/theo-pangolin/foot-four.svg"
  30759. }
  30760. },
  30761. handFour: {
  30762. height: math.unit(0.81, "feet"),
  30763. name: "Hand (Four Fingers)",
  30764. image: {
  30765. source: "./media/characters/theo-pangolin/hand-four.svg"
  30766. }
  30767. },
  30768. handThree: {
  30769. height: math.unit(0.81, "feet"),
  30770. name: "Hand (Three Fingers)",
  30771. image: {
  30772. source: "./media/characters/theo-pangolin/hand-three.svg"
  30773. }
  30774. },
  30775. headFront: {
  30776. height: math.unit(1.37, "feet"),
  30777. name: "Head (Front)",
  30778. image: {
  30779. source: "./media/characters/theo-pangolin/head-front.svg"
  30780. }
  30781. },
  30782. headSide: {
  30783. height: math.unit(1.43, "feet"),
  30784. name: "Head (Side)",
  30785. image: {
  30786. source: "./media/characters/theo-pangolin/head-side.svg"
  30787. }
  30788. },
  30789. tongue: {
  30790. height: math.unit(2.29, "feet"),
  30791. name: "Tongue",
  30792. image: {
  30793. source: "./media/characters/theo-pangolin/tongue.svg"
  30794. }
  30795. },
  30796. },
  30797. [
  30798. {
  30799. name: "Normal",
  30800. height: math.unit(6, "feet")
  30801. },
  30802. {
  30803. name: "Macro",
  30804. height: math.unit(400, "feet"),
  30805. default: true
  30806. },
  30807. ]
  30808. ))
  30809. characterMakers.push(() => makeCharacter(
  30810. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30811. {
  30812. front: {
  30813. height: math.unit(6, "inches"),
  30814. weight: math.unit(0.036, "kg"),
  30815. name: "Front",
  30816. image: {
  30817. source: "./media/characters/renée/front.svg",
  30818. extra: 900 / 886,
  30819. bottom: 8 / 908
  30820. }
  30821. },
  30822. },
  30823. [
  30824. {
  30825. name: "Nano",
  30826. height: math.unit(1, "nm")
  30827. },
  30828. {
  30829. name: "Micro",
  30830. height: math.unit(1, "mm")
  30831. },
  30832. {
  30833. name: "Normal",
  30834. height: math.unit(6, "inches")
  30835. },
  30836. {
  30837. name: "Macro",
  30838. height: math.unit(2000, "feet"),
  30839. default: true
  30840. },
  30841. {
  30842. name: "Megamacro",
  30843. height: math.unit(2, "km")
  30844. },
  30845. {
  30846. name: "Gigamacro",
  30847. height: math.unit(2000, "km")
  30848. },
  30849. {
  30850. name: "Teramacro",
  30851. height: math.unit(250000, "km")
  30852. },
  30853. ]
  30854. ))
  30855. characterMakers.push(() => makeCharacter(
  30856. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30857. {
  30858. front: {
  30859. height: math.unit(4, "meters"),
  30860. weight: math.unit(150, "kg"),
  30861. name: "Front",
  30862. image: {
  30863. source: "./media/characters/caledvwlch/front.svg",
  30864. extra: 1760 / 1551,
  30865. bottom: 28 / 1788
  30866. }
  30867. },
  30868. side: {
  30869. height: math.unit(4, "meters"),
  30870. weight: math.unit(150, "kg"),
  30871. name: "Side",
  30872. image: {
  30873. source: "./media/characters/caledvwlch/side.svg",
  30874. extra: 1605 / 1536,
  30875. bottom: 31 / 1636
  30876. }
  30877. },
  30878. back: {
  30879. height: math.unit(4, "meters"),
  30880. weight: math.unit(150, "kg"),
  30881. name: "Back",
  30882. image: {
  30883. source: "./media/characters/caledvwlch/back.svg",
  30884. extra: 1635 / 1565,
  30885. bottom: 27 / 1662
  30886. }
  30887. },
  30888. },
  30889. [
  30890. {
  30891. name: "\"Incognito\"",
  30892. height: math.unit(4, "meters")
  30893. },
  30894. {
  30895. name: "Small rampage",
  30896. height: math.unit(600, "meters")
  30897. },
  30898. {
  30899. name: "Mega",
  30900. height: math.unit(30, "km")
  30901. },
  30902. {
  30903. name: "Home-size",
  30904. height: math.unit(50, "km"),
  30905. default: true
  30906. },
  30907. {
  30908. name: "Giga",
  30909. height: math.unit(300, "km")
  30910. },
  30911. {
  30912. name: "Lounging",
  30913. height: math.unit(11000, "km")
  30914. },
  30915. {
  30916. name: "Planet snacking",
  30917. height: math.unit(2000000, "km")
  30918. },
  30919. ]
  30920. ))
  30921. characterMakers.push(() => makeCharacter(
  30922. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30923. {
  30924. front: {
  30925. height: math.unit(6, "feet"),
  30926. weight: math.unit(215, "lb"),
  30927. name: "Front",
  30928. image: {
  30929. source: "./media/characters/sapphire-svell/front.svg",
  30930. extra: 495 / 455,
  30931. bottom: 20 / 515
  30932. }
  30933. },
  30934. back: {
  30935. height: math.unit(6, "feet"),
  30936. weight: math.unit(216, "lb"),
  30937. name: "Back",
  30938. image: {
  30939. source: "./media/characters/sapphire-svell/back.svg",
  30940. extra: 497 / 477,
  30941. bottom: 7 / 504
  30942. }
  30943. },
  30944. maw: {
  30945. height: math.unit(1.57, "feet"),
  30946. name: "Maw",
  30947. image: {
  30948. source: "./media/characters/sapphire-svell/maw.svg"
  30949. }
  30950. },
  30951. foot: {
  30952. height: math.unit(1.07, "feet"),
  30953. name: "Foot",
  30954. image: {
  30955. source: "./media/characters/sapphire-svell/foot.svg"
  30956. }
  30957. },
  30958. toering: {
  30959. height: math.unit(1.7, "inch"),
  30960. name: "Toering",
  30961. image: {
  30962. source: "./media/characters/sapphire-svell/toering.svg"
  30963. }
  30964. },
  30965. },
  30966. [
  30967. {
  30968. name: "Normal",
  30969. height: math.unit(300, "feet"),
  30970. default: true
  30971. },
  30972. {
  30973. name: "Augmented",
  30974. height: math.unit(1250, "feet")
  30975. },
  30976. {
  30977. name: "Unleashed",
  30978. height: math.unit(3000, "feet")
  30979. },
  30980. ]
  30981. ))
  30982. characterMakers.push(() => makeCharacter(
  30983. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30984. {
  30985. side: {
  30986. height: math.unit(2 + 3 / 12, "feet"),
  30987. weight: math.unit(110, "lb"),
  30988. name: "Side",
  30989. image: {
  30990. source: "./media/characters/glitch-flux/side.svg",
  30991. extra: 997 / 805,
  30992. bottom: 20 / 1017
  30993. }
  30994. },
  30995. },
  30996. [
  30997. {
  30998. name: "Normal",
  30999. height: math.unit(2 + 3 / 12, "feet"),
  31000. default: true
  31001. },
  31002. ]
  31003. ))
  31004. characterMakers.push(() => makeCharacter(
  31005. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31006. {
  31007. front: {
  31008. height: math.unit(4, "meters"),
  31009. name: "Front",
  31010. image: {
  31011. source: "./media/characters/mid/front.svg",
  31012. extra: 507 / 476,
  31013. bottom: 17 / 524
  31014. }
  31015. },
  31016. back: {
  31017. height: math.unit(4, "meters"),
  31018. name: "Back",
  31019. image: {
  31020. source: "./media/characters/mid/back.svg",
  31021. extra: 519 / 487,
  31022. bottom: 7 / 526
  31023. }
  31024. },
  31025. stuck: {
  31026. height: math.unit(2.2, "meters"),
  31027. name: "Stuck",
  31028. image: {
  31029. source: "./media/characters/mid/stuck.svg",
  31030. extra: 1951 / 1869,
  31031. bottom: 88 / 2039
  31032. }
  31033. }
  31034. },
  31035. [
  31036. {
  31037. name: "Normal",
  31038. height: math.unit(4, "meters"),
  31039. default: true
  31040. },
  31041. {
  31042. name: "Big",
  31043. height: math.unit(10, "meters")
  31044. },
  31045. {
  31046. name: "Macro",
  31047. height: math.unit(800, "meters")
  31048. },
  31049. {
  31050. name: "Megamacro",
  31051. height: math.unit(100, "km")
  31052. },
  31053. {
  31054. name: "Overgrown",
  31055. height: math.unit(1, "parsec")
  31056. },
  31057. ]
  31058. ))
  31059. characterMakers.push(() => makeCharacter(
  31060. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31061. {
  31062. front: {
  31063. height: math.unit(2.5, "meters"),
  31064. weight: math.unit(225, "kg"),
  31065. name: "Front",
  31066. image: {
  31067. source: "./media/characters/iris/front.svg",
  31068. extra: 3348 / 3251,
  31069. bottom: 205 / 3553
  31070. }
  31071. },
  31072. maw: {
  31073. height: math.unit(0.56, "meter"),
  31074. name: "Maw",
  31075. image: {
  31076. source: "./media/characters/iris/maw.svg"
  31077. }
  31078. },
  31079. },
  31080. [
  31081. {
  31082. name: "Mewter cat",
  31083. height: math.unit(1.2, "meters")
  31084. },
  31085. {
  31086. name: "Minimacro",
  31087. height: math.unit(2.5, "meters"),
  31088. default: true
  31089. },
  31090. {
  31091. name: "Macro",
  31092. height: math.unit(180, "meters")
  31093. },
  31094. {
  31095. name: "Megamacro",
  31096. height: math.unit(2746, "meters")
  31097. },
  31098. ]
  31099. ))
  31100. characterMakers.push(() => makeCharacter(
  31101. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31102. {
  31103. front: {
  31104. height: math.unit(6, "feet"),
  31105. weight: math.unit(135, "lb"),
  31106. name: "Front",
  31107. image: {
  31108. source: "./media/characters/axel/front.svg",
  31109. extra: 908 / 908,
  31110. bottom: 58 / 966
  31111. }
  31112. },
  31113. side: {
  31114. height: math.unit(6, "feet"),
  31115. weight: math.unit(135, "lb"),
  31116. name: "Side",
  31117. image: {
  31118. source: "./media/characters/axel/side.svg",
  31119. extra: 958 / 958,
  31120. bottom: 11 / 969
  31121. }
  31122. },
  31123. back: {
  31124. height: math.unit(6, "feet"),
  31125. weight: math.unit(135, "lb"),
  31126. name: "Back",
  31127. image: {
  31128. source: "./media/characters/axel/back.svg",
  31129. extra: 887 / 887,
  31130. bottom: 34 / 921
  31131. }
  31132. },
  31133. head: {
  31134. height: math.unit(1.07, "feet"),
  31135. name: "Head",
  31136. image: {
  31137. source: "./media/characters/axel/head.svg"
  31138. }
  31139. },
  31140. beak: {
  31141. height: math.unit(1.4, "feet"),
  31142. name: "Beak",
  31143. image: {
  31144. source: "./media/characters/axel/beak.svg"
  31145. }
  31146. },
  31147. beakSide: {
  31148. height: math.unit(1.4, "feet"),
  31149. name: "Beak Side",
  31150. image: {
  31151. source: "./media/characters/axel/beak-side.svg"
  31152. }
  31153. },
  31154. sheath: {
  31155. height: math.unit(0.5, "feet"),
  31156. name: "Sheath",
  31157. image: {
  31158. source: "./media/characters/axel/sheath.svg"
  31159. }
  31160. },
  31161. dick: {
  31162. height: math.unit(0.98, "feet"),
  31163. name: "Dick",
  31164. image: {
  31165. source: "./media/characters/axel/dick.svg"
  31166. }
  31167. },
  31168. },
  31169. [
  31170. {
  31171. name: "Macro",
  31172. height: math.unit(68, "meters"),
  31173. default: true
  31174. },
  31175. ]
  31176. ))
  31177. characterMakers.push(() => makeCharacter(
  31178. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31179. {
  31180. front: {
  31181. height: math.unit(3.5, "meters"),
  31182. weight: math.unit(1200, "kg"),
  31183. name: "Front",
  31184. image: {
  31185. source: "./media/characters/joanna/front.svg",
  31186. extra: 1596 / 1488,
  31187. bottom: 29 / 1625
  31188. }
  31189. },
  31190. back: {
  31191. height: math.unit(3.5, "meters"),
  31192. weight: math.unit(1200, "kg"),
  31193. name: "Back",
  31194. image: {
  31195. source: "./media/characters/joanna/back.svg",
  31196. extra: 1594 / 1495,
  31197. bottom: 26 / 1620
  31198. }
  31199. },
  31200. frontShorts: {
  31201. height: math.unit(3.5, "meters"),
  31202. weight: math.unit(1200, "kg"),
  31203. name: "Front (Shorts)",
  31204. image: {
  31205. source: "./media/characters/joanna/front-shorts.svg",
  31206. extra: 1596 / 1488,
  31207. bottom: 29 / 1625
  31208. }
  31209. },
  31210. frontBiker: {
  31211. height: math.unit(3.5, "meters"),
  31212. weight: math.unit(1200, "kg"),
  31213. name: "Front (Biker)",
  31214. image: {
  31215. source: "./media/characters/joanna/front-biker.svg",
  31216. extra: 1596 / 1488,
  31217. bottom: 29 / 1625
  31218. }
  31219. },
  31220. backBiker: {
  31221. height: math.unit(3.5, "meters"),
  31222. weight: math.unit(1200, "kg"),
  31223. name: "Back (Biker)",
  31224. image: {
  31225. source: "./media/characters/joanna/back-biker.svg",
  31226. extra: 1594 / 1495,
  31227. bottom: 88 / 1682
  31228. }
  31229. },
  31230. bikeLeft: {
  31231. height: math.unit(2.4, "meters"),
  31232. weight: math.unit(1600, "kg"),
  31233. name: "Bike (Left)",
  31234. image: {
  31235. source: "./media/characters/joanna/bike-left.svg",
  31236. extra: 720 / 720,
  31237. bottom: 8 / 728
  31238. }
  31239. },
  31240. bikeRight: {
  31241. height: math.unit(2.4, "meters"),
  31242. weight: math.unit(1600, "kg"),
  31243. name: "Bike (Right)",
  31244. image: {
  31245. source: "./media/characters/joanna/bike-right.svg",
  31246. extra: 720 / 720,
  31247. bottom: 8 / 728
  31248. }
  31249. },
  31250. },
  31251. [
  31252. {
  31253. name: "Incognito",
  31254. height: math.unit(3.5, "meters")
  31255. },
  31256. {
  31257. name: "Casual Big",
  31258. height: math.unit(200, "meters")
  31259. },
  31260. {
  31261. name: "Macro",
  31262. height: math.unit(600, "meters")
  31263. },
  31264. {
  31265. name: "Original",
  31266. height: math.unit(20, "km"),
  31267. default: true
  31268. },
  31269. {
  31270. name: "Giga",
  31271. height: math.unit(400, "km")
  31272. },
  31273. {
  31274. name: "Lounging",
  31275. height: math.unit(1500, "km")
  31276. },
  31277. {
  31278. name: "Planetary",
  31279. height: math.unit(200000, "km")
  31280. },
  31281. ]
  31282. ))
  31283. characterMakers.push(() => makeCharacter(
  31284. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31285. {
  31286. front: {
  31287. height: math.unit(6, "feet"),
  31288. weight: math.unit(150, "lb"),
  31289. name: "Front",
  31290. image: {
  31291. source: "./media/characters/hugo-sigil/front.svg",
  31292. extra: 522 / 500,
  31293. bottom: 2 / 524
  31294. }
  31295. },
  31296. back: {
  31297. height: math.unit(6, "feet"),
  31298. weight: math.unit(150, "lb"),
  31299. name: "Back",
  31300. image: {
  31301. source: "./media/characters/hugo-sigil/back.svg",
  31302. extra: 519 / 495,
  31303. bottom: 5 / 524
  31304. }
  31305. },
  31306. maw: {
  31307. height: math.unit(1.4, "feet"),
  31308. weight: math.unit(150, "lb"),
  31309. name: "Maw",
  31310. image: {
  31311. source: "./media/characters/hugo-sigil/maw.svg"
  31312. }
  31313. },
  31314. feet: {
  31315. height: math.unit(1.56, "feet"),
  31316. weight: math.unit(150, "lb"),
  31317. name: "Feet",
  31318. image: {
  31319. source: "./media/characters/hugo-sigil/feet.svg",
  31320. extra: 177 / 177,
  31321. bottom: 12 / 189
  31322. }
  31323. },
  31324. },
  31325. [
  31326. {
  31327. name: "Normal",
  31328. height: math.unit(6, "feet")
  31329. },
  31330. {
  31331. name: "Macro",
  31332. height: math.unit(200, "feet"),
  31333. default: true
  31334. },
  31335. ]
  31336. ))
  31337. characterMakers.push(() => makeCharacter(
  31338. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31339. {
  31340. front: {
  31341. height: math.unit(6, "feet"),
  31342. weight: math.unit(150, "lb"),
  31343. name: "Front",
  31344. image: {
  31345. source: "./media/characters/peri/front.svg",
  31346. extra: 2354 / 2233,
  31347. bottom: 49 / 2403
  31348. }
  31349. },
  31350. },
  31351. [
  31352. {
  31353. name: "Really Small",
  31354. height: math.unit(1, "nm")
  31355. },
  31356. {
  31357. name: "Micro",
  31358. height: math.unit(4, "inches")
  31359. },
  31360. {
  31361. name: "Normal",
  31362. height: math.unit(7, "inches"),
  31363. default: true
  31364. },
  31365. {
  31366. name: "Macro",
  31367. height: math.unit(400, "feet")
  31368. },
  31369. {
  31370. name: "Megamacro",
  31371. height: math.unit(100, "miles")
  31372. },
  31373. ]
  31374. ))
  31375. characterMakers.push(() => makeCharacter(
  31376. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31377. {
  31378. frontSlim: {
  31379. height: math.unit(7, "feet"),
  31380. name: "Front (Slim)",
  31381. image: {
  31382. source: "./media/characters/issilora/front-slim.svg",
  31383. extra: 529 / 449,
  31384. bottom: 53 / 582
  31385. }
  31386. },
  31387. sideSlim: {
  31388. height: math.unit(7, "feet"),
  31389. name: "Side (Slim)",
  31390. image: {
  31391. source: "./media/characters/issilora/side-slim.svg",
  31392. extra: 570 / 480,
  31393. bottom: 30 / 600
  31394. }
  31395. },
  31396. backSlim: {
  31397. height: math.unit(7, "feet"),
  31398. name: "Back (Slim)",
  31399. image: {
  31400. source: "./media/characters/issilora/back-slim.svg",
  31401. extra: 537 / 455,
  31402. bottom: 46 / 583
  31403. }
  31404. },
  31405. frontBuff: {
  31406. height: math.unit(7, "feet"),
  31407. name: "Front (Buff)",
  31408. image: {
  31409. source: "./media/characters/issilora/front-buff.svg",
  31410. extra: 2310 / 2035,
  31411. bottom: 335 / 2645
  31412. }
  31413. },
  31414. head: {
  31415. height: math.unit(1.94, "feet"),
  31416. name: "Head",
  31417. image: {
  31418. source: "./media/characters/issilora/head.svg"
  31419. }
  31420. },
  31421. },
  31422. [
  31423. {
  31424. name: "Minimum",
  31425. height: math.unit(7, "feet")
  31426. },
  31427. {
  31428. name: "Comfortable",
  31429. height: math.unit(17, "feet")
  31430. },
  31431. {
  31432. name: "Fun Size",
  31433. height: math.unit(47, "feet")
  31434. },
  31435. {
  31436. name: "Natural Macro",
  31437. height: math.unit(137, "feet"),
  31438. default: true
  31439. },
  31440. {
  31441. name: "Maximum Kaiju",
  31442. height: math.unit(397, "feet")
  31443. },
  31444. ]
  31445. ))
  31446. characterMakers.push(() => makeCharacter(
  31447. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31448. {
  31449. front: {
  31450. height: math.unit(50 + 9/12, "feet"),
  31451. weight: math.unit(32.8, "tons"),
  31452. name: "Front",
  31453. image: {
  31454. source: "./media/characters/irb'iiritaahn/front.svg",
  31455. extra: 1878/1826,
  31456. bottom: 326/2204
  31457. }
  31458. },
  31459. back: {
  31460. height: math.unit(50 + 9/12, "feet"),
  31461. weight: math.unit(32.8, "tons"),
  31462. name: "Back",
  31463. image: {
  31464. source: "./media/characters/irb'iiritaahn/back.svg",
  31465. extra: 2052/2018,
  31466. bottom: 152/2204
  31467. }
  31468. },
  31469. head: {
  31470. height: math.unit(12.86, "feet"),
  31471. name: "Head",
  31472. image: {
  31473. source: "./media/characters/irb'iiritaahn/head.svg"
  31474. }
  31475. },
  31476. maw: {
  31477. height: math.unit(9.66, "feet"),
  31478. name: "Maw",
  31479. image: {
  31480. source: "./media/characters/irb'iiritaahn/maw.svg"
  31481. }
  31482. },
  31483. frontDick: {
  31484. height: math.unit(8.78461, "feet"),
  31485. name: "Front Dick",
  31486. image: {
  31487. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31488. }
  31489. },
  31490. rearDick: {
  31491. height: math.unit(8.78461, "feet"),
  31492. name: "Rear Dick",
  31493. image: {
  31494. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31495. }
  31496. },
  31497. rearDickUnfolded: {
  31498. height: math.unit(8.78, "feet"),
  31499. name: "Rear Dick (Unfolded)",
  31500. image: {
  31501. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31502. }
  31503. },
  31504. wings: {
  31505. height: math.unit(43, "feet"),
  31506. name: "Wings",
  31507. image: {
  31508. source: "./media/characters/irb'iiritaahn/wings.svg"
  31509. }
  31510. },
  31511. },
  31512. [
  31513. {
  31514. name: "Macro",
  31515. height: math.unit(50 + 9/12, "feet"),
  31516. default: true
  31517. },
  31518. ]
  31519. ))
  31520. characterMakers.push(() => makeCharacter(
  31521. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31522. {
  31523. front: {
  31524. height: math.unit(205, "cm"),
  31525. weight: math.unit(102, "kg"),
  31526. name: "Front",
  31527. image: {
  31528. source: "./media/characters/irbisgreif/front.svg",
  31529. extra: 785/706,
  31530. bottom: 13/798
  31531. }
  31532. },
  31533. back: {
  31534. height: math.unit(205, "cm"),
  31535. weight: math.unit(102, "kg"),
  31536. name: "Back",
  31537. image: {
  31538. source: "./media/characters/irbisgreif/back.svg",
  31539. extra: 713/701,
  31540. bottom: 26/739
  31541. }
  31542. },
  31543. frontDressed: {
  31544. height: math.unit(216, "cm"),
  31545. weight: math.unit(102, "kg"),
  31546. name: "Front-dressed",
  31547. image: {
  31548. source: "./media/characters/irbisgreif/front-dressed.svg",
  31549. extra: 902/776,
  31550. bottom: 14/916
  31551. }
  31552. },
  31553. sideDressed: {
  31554. height: math.unit(195, "cm"),
  31555. weight: math.unit(102, "kg"),
  31556. name: "Side-dressed",
  31557. image: {
  31558. source: "./media/characters/irbisgreif/side-dressed.svg",
  31559. extra: 788/688,
  31560. bottom: 21/809
  31561. }
  31562. },
  31563. backDressed: {
  31564. height: math.unit(216, "cm"),
  31565. weight: math.unit(102, "kg"),
  31566. name: "Back-dressed",
  31567. image: {
  31568. source: "./media/characters/irbisgreif/back-dressed.svg",
  31569. extra: 901/783,
  31570. bottom: 10/911
  31571. }
  31572. },
  31573. dick: {
  31574. height: math.unit(0.49, "feet"),
  31575. name: "Dick",
  31576. image: {
  31577. source: "./media/characters/irbisgreif/dick.svg"
  31578. }
  31579. },
  31580. wingTop: {
  31581. height: math.unit(1.93 , "feet"),
  31582. name: "Wing-top",
  31583. image: {
  31584. source: "./media/characters/irbisgreif/wing-top.svg"
  31585. }
  31586. },
  31587. wingBottom: {
  31588. height: math.unit(1.93 , "feet"),
  31589. name: "Wing-bottom",
  31590. image: {
  31591. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31592. }
  31593. },
  31594. },
  31595. [
  31596. {
  31597. name: "Normal",
  31598. height: math.unit(216, "cm"),
  31599. default: true
  31600. },
  31601. ]
  31602. ))
  31603. characterMakers.push(() => makeCharacter(
  31604. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31605. {
  31606. front: {
  31607. height: math.unit(6, "feet"),
  31608. weight: math.unit(150, "lb"),
  31609. name: "Front",
  31610. image: {
  31611. source: "./media/characters/pride/front.svg",
  31612. extra: 1299/1230,
  31613. bottom: 18/1317
  31614. }
  31615. },
  31616. },
  31617. [
  31618. {
  31619. name: "Normal",
  31620. height: math.unit(7, "feet")
  31621. },
  31622. {
  31623. name: "Mini-macro",
  31624. height: math.unit(11, "feet")
  31625. },
  31626. {
  31627. name: "Macro",
  31628. height: math.unit(15, "meters"),
  31629. default: true
  31630. },
  31631. {
  31632. name: "Macro+",
  31633. height: math.unit(40, "meters")
  31634. },
  31635. ]
  31636. ))
  31637. characterMakers.push(() => makeCharacter(
  31638. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31639. {
  31640. front: {
  31641. height: math.unit(4 + 2 / 12, "feet"),
  31642. weight: math.unit(95, "lb"),
  31643. name: "Front",
  31644. image: {
  31645. source: "./media/characters/vaelophis-nyx/front.svg",
  31646. extra: 2532/2330,
  31647. bottom: 0/2532
  31648. }
  31649. },
  31650. back: {
  31651. height: math.unit(4 + 2 / 12, "feet"),
  31652. weight: math.unit(95, "lb"),
  31653. name: "Back",
  31654. image: {
  31655. source: "./media/characters/vaelophis-nyx/back.svg",
  31656. extra: 2484/2361,
  31657. bottom: 0/2484
  31658. }
  31659. },
  31660. feralSide: {
  31661. height: math.unit(2 + 1/12, "feet"),
  31662. weight: math.unit(20, "lb"),
  31663. name: "Feral (Side)",
  31664. image: {
  31665. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31666. extra: 1721/1581,
  31667. bottom: 70/1791
  31668. }
  31669. },
  31670. feralLazing: {
  31671. height: math.unit(1.08, "feet"),
  31672. weight: math.unit(20, "lb"),
  31673. name: "Feral (Lazing)",
  31674. image: {
  31675. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31676. extra: 822/822,
  31677. bottom: 248/1070
  31678. }
  31679. },
  31680. ear: {
  31681. height: math.unit(0.416, "feet"),
  31682. name: "Ear",
  31683. image: {
  31684. source: "./media/characters/vaelophis-nyx/ear.svg"
  31685. }
  31686. },
  31687. eye: {
  31688. height: math.unit(0.0748, "feet"),
  31689. name: "Eye",
  31690. image: {
  31691. source: "./media/characters/vaelophis-nyx/eye.svg"
  31692. }
  31693. },
  31694. mouth: {
  31695. height: math.unit(0.378, "feet"),
  31696. name: "Mouth",
  31697. image: {
  31698. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31699. }
  31700. },
  31701. spade: {
  31702. height: math.unit(0.55, "feet"),
  31703. name: "Spade",
  31704. image: {
  31705. source: "./media/characters/vaelophis-nyx/spade.svg"
  31706. }
  31707. },
  31708. },
  31709. [
  31710. {
  31711. name: "Normal",
  31712. height: math.unit(4 + 2/12, "feet"),
  31713. default: true
  31714. },
  31715. ]
  31716. ))
  31717. characterMakers.push(() => makeCharacter(
  31718. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31719. {
  31720. front: {
  31721. height: math.unit(7, "feet"),
  31722. weight: math.unit(231, "lb"),
  31723. name: "Front",
  31724. image: {
  31725. source: "./media/characters/flux/front.svg",
  31726. extra: 919/871,
  31727. bottom: 0/919
  31728. }
  31729. },
  31730. back: {
  31731. height: math.unit(7, "feet"),
  31732. weight: math.unit(231, "lb"),
  31733. name: "Back",
  31734. image: {
  31735. source: "./media/characters/flux/back.svg",
  31736. extra: 1040/992,
  31737. bottom: 0/1040
  31738. }
  31739. },
  31740. frontDressed: {
  31741. height: math.unit(7, "feet"),
  31742. weight: math.unit(231, "lb"),
  31743. name: "Front (Dressed)",
  31744. image: {
  31745. source: "./media/characters/flux/front-dressed.svg",
  31746. extra: 919/871,
  31747. bottom: 0/919
  31748. }
  31749. },
  31750. feralSide: {
  31751. height: math.unit(5, "feet"),
  31752. weight: math.unit(150, "lb"),
  31753. name: "Feral (Side)",
  31754. image: {
  31755. source: "./media/characters/flux/feral-side.svg",
  31756. extra: 598/528,
  31757. bottom: 28/626
  31758. }
  31759. },
  31760. head: {
  31761. height: math.unit(1.585, "feet"),
  31762. name: "Head",
  31763. image: {
  31764. source: "./media/characters/flux/head.svg"
  31765. }
  31766. },
  31767. headSide: {
  31768. height: math.unit(1.74, "feet"),
  31769. name: "Head (Side)",
  31770. image: {
  31771. source: "./media/characters/flux/head-side.svg"
  31772. }
  31773. },
  31774. headSideFire: {
  31775. height: math.unit(1.76, "feet"),
  31776. name: "Head (Side, Fire)",
  31777. image: {
  31778. source: "./media/characters/flux/head-side-fire.svg"
  31779. }
  31780. },
  31781. },
  31782. [
  31783. {
  31784. name: "Normal",
  31785. height: math.unit(7, "feet"),
  31786. default: true
  31787. },
  31788. ]
  31789. ))
  31790. characterMakers.push(() => makeCharacter(
  31791. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31792. {
  31793. front: {
  31794. height: math.unit(9, "feet"),
  31795. weight: math.unit(1012, "lb"),
  31796. name: "Front",
  31797. image: {
  31798. source: "./media/characters/ulfra-lupae/front.svg",
  31799. extra: 1083/1011,
  31800. bottom: 67/1150
  31801. }
  31802. },
  31803. },
  31804. [
  31805. {
  31806. name: "Micro",
  31807. height: math.unit(6, "inches")
  31808. },
  31809. {
  31810. name: "Socializing",
  31811. height: math.unit(6 + 5/12, "feet")
  31812. },
  31813. {
  31814. name: "Normal",
  31815. height: math.unit(9, "feet"),
  31816. default: true
  31817. },
  31818. {
  31819. name: "Macro",
  31820. height: math.unit(150, "feet")
  31821. },
  31822. ]
  31823. ))
  31824. characterMakers.push(() => makeCharacter(
  31825. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31826. {
  31827. front: {
  31828. height: math.unit(5 + 2/12, "feet"),
  31829. weight: math.unit(120, "lb"),
  31830. name: "Front",
  31831. image: {
  31832. source: "./media/characters/timber/front.svg",
  31833. extra: 2814/2705,
  31834. bottom: 181/2995
  31835. }
  31836. },
  31837. },
  31838. [
  31839. {
  31840. name: "Normal",
  31841. height: math.unit(5 + 2/12, "feet"),
  31842. default: true
  31843. },
  31844. ]
  31845. ))
  31846. characterMakers.push(() => makeCharacter(
  31847. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31848. {
  31849. front: {
  31850. height: math.unit(9, "feet"),
  31851. name: "Front",
  31852. image: {
  31853. source: "./media/characters/nicki/front.svg",
  31854. extra: 1240/990,
  31855. bottom: 45/1285
  31856. },
  31857. form: "anthro",
  31858. default: true
  31859. },
  31860. side: {
  31861. height: math.unit(9, "feet"),
  31862. name: "Side",
  31863. image: {
  31864. source: "./media/characters/nicki/side.svg",
  31865. extra: 1047/973,
  31866. bottom: 61/1108
  31867. },
  31868. form: "anthro"
  31869. },
  31870. back: {
  31871. height: math.unit(9, "feet"),
  31872. name: "Back",
  31873. image: {
  31874. source: "./media/characters/nicki/back.svg",
  31875. extra: 1006/965,
  31876. bottom: 39/1045
  31877. },
  31878. form: "anthro"
  31879. },
  31880. taur: {
  31881. height: math.unit(15, "feet"),
  31882. name: "Taur",
  31883. image: {
  31884. source: "./media/characters/nicki/taur.svg",
  31885. extra: 1592/1347,
  31886. bottom: 0/1592
  31887. },
  31888. form: "taur",
  31889. default: true
  31890. },
  31891. },
  31892. [
  31893. {
  31894. name: "Normal",
  31895. height: math.unit(9, "feet"),
  31896. form: "anthro",
  31897. default: true
  31898. },
  31899. {
  31900. name: "Normal",
  31901. height: math.unit(15, "feet"),
  31902. form: "taur",
  31903. default: true
  31904. }
  31905. ],
  31906. {
  31907. "anthro": {
  31908. name: "Anthro",
  31909. default: true
  31910. },
  31911. "taur": {
  31912. name: "Taur"
  31913. }
  31914. }
  31915. ))
  31916. characterMakers.push(() => makeCharacter(
  31917. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31918. {
  31919. front: {
  31920. height: math.unit(7 + 10/12, "feet"),
  31921. weight: math.unit(3.5, "tons"),
  31922. name: "Front",
  31923. image: {
  31924. source: "./media/characters/lee/front.svg",
  31925. extra: 1773/1615,
  31926. bottom: 86/1859
  31927. }
  31928. },
  31929. hand: {
  31930. height: math.unit(1.78, "feet"),
  31931. name: "Hand",
  31932. image: {
  31933. source: "./media/characters/lee/hand.svg"
  31934. }
  31935. },
  31936. maw: {
  31937. height: math.unit(1.18, "feet"),
  31938. name: "Maw",
  31939. image: {
  31940. source: "./media/characters/lee/maw.svg"
  31941. }
  31942. },
  31943. },
  31944. [
  31945. {
  31946. name: "Normal",
  31947. height: math.unit(7 + 10/12, "feet"),
  31948. default: true
  31949. },
  31950. ]
  31951. ))
  31952. characterMakers.push(() => makeCharacter(
  31953. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31954. {
  31955. front: {
  31956. height: math.unit(9, "feet"),
  31957. name: "Front",
  31958. image: {
  31959. source: "./media/characters/guti/front.svg",
  31960. extra: 4551/4355,
  31961. bottom: 123/4674
  31962. }
  31963. },
  31964. tongue: {
  31965. height: math.unit(1, "feet"),
  31966. name: "Tongue",
  31967. image: {
  31968. source: "./media/characters/guti/tongue.svg"
  31969. }
  31970. },
  31971. paw: {
  31972. height: math.unit(1.18, "feet"),
  31973. name: "Paw",
  31974. image: {
  31975. source: "./media/characters/guti/paw.svg"
  31976. }
  31977. },
  31978. },
  31979. [
  31980. {
  31981. name: "Normal",
  31982. height: math.unit(9, "feet"),
  31983. default: true
  31984. },
  31985. ]
  31986. ))
  31987. characterMakers.push(() => makeCharacter(
  31988. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31989. {
  31990. side: {
  31991. height: math.unit(5, "meters"),
  31992. name: "Side",
  31993. image: {
  31994. source: "./media/characters/vesper/side.svg",
  31995. extra: 1605/1518,
  31996. bottom: 0/1605
  31997. }
  31998. },
  31999. },
  32000. [
  32001. {
  32002. name: "Small",
  32003. height: math.unit(5, "meters")
  32004. },
  32005. {
  32006. name: "Sage",
  32007. height: math.unit(100, "meters"),
  32008. default: true
  32009. },
  32010. {
  32011. name: "Fun Size",
  32012. height: math.unit(600, "meters")
  32013. },
  32014. {
  32015. name: "Goddess",
  32016. height: math.unit(20000, "km")
  32017. },
  32018. {
  32019. name: "Maximum",
  32020. height: math.unit(5, "galaxies")
  32021. },
  32022. ]
  32023. ))
  32024. characterMakers.push(() => makeCharacter(
  32025. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32026. {
  32027. front: {
  32028. height: math.unit(6 + 3/12, "feet"),
  32029. weight: math.unit(190, "lb"),
  32030. name: "Front",
  32031. image: {
  32032. source: "./media/characters/gawain/front.svg",
  32033. extra: 2222/2139,
  32034. bottom: 90/2312
  32035. }
  32036. },
  32037. back: {
  32038. height: math.unit(6 + 3/12, "feet"),
  32039. weight: math.unit(190, "lb"),
  32040. name: "Back",
  32041. image: {
  32042. source: "./media/characters/gawain/back.svg",
  32043. extra: 2199/2111,
  32044. bottom: 73/2272
  32045. }
  32046. },
  32047. },
  32048. [
  32049. {
  32050. name: "Normal",
  32051. height: math.unit(6 + 3/12, "feet"),
  32052. default: true
  32053. },
  32054. ]
  32055. ))
  32056. characterMakers.push(() => makeCharacter(
  32057. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32058. {
  32059. side: {
  32060. height: math.unit(3.5, "meters"),
  32061. weight: math.unit(16000, "lb"),
  32062. name: "Side",
  32063. image: {
  32064. source: "./media/characters/dascalti/side.svg",
  32065. extra: 392/273,
  32066. bottom: 47/439
  32067. }
  32068. },
  32069. breath: {
  32070. height: math.unit(7.4, "feet"),
  32071. name: "Breath",
  32072. image: {
  32073. source: "./media/characters/dascalti/breath.svg"
  32074. }
  32075. },
  32076. fed: {
  32077. height: math.unit(3.6, "meters"),
  32078. weight: math.unit(16000, "lb"),
  32079. name: "Fed",
  32080. image: {
  32081. source: "./media/characters/dascalti/fed.svg",
  32082. extra: 1419/820,
  32083. bottom: 95/1514
  32084. }
  32085. },
  32086. },
  32087. [
  32088. {
  32089. name: "Normal",
  32090. height: math.unit(3.5, "meters"),
  32091. default: true
  32092. },
  32093. ]
  32094. ))
  32095. characterMakers.push(() => makeCharacter(
  32096. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32097. {
  32098. front: {
  32099. height: math.unit(3 + 5/12, "feet"),
  32100. name: "Front",
  32101. image: {
  32102. source: "./media/characters/mauve/front.svg",
  32103. extra: 1126/1033,
  32104. bottom: 65/1191
  32105. }
  32106. },
  32107. side: {
  32108. height: math.unit(3 + 5/12, "feet"),
  32109. name: "Side",
  32110. image: {
  32111. source: "./media/characters/mauve/side.svg",
  32112. extra: 1089/1001,
  32113. bottom: 29/1118
  32114. }
  32115. },
  32116. back: {
  32117. height: math.unit(3 + 5/12, "feet"),
  32118. name: "Back",
  32119. image: {
  32120. source: "./media/characters/mauve/back.svg",
  32121. extra: 1173/1053,
  32122. bottom: 109/1282
  32123. }
  32124. },
  32125. },
  32126. [
  32127. {
  32128. name: "Normal",
  32129. height: math.unit(3 + 5/12, "feet"),
  32130. default: true
  32131. },
  32132. ]
  32133. ))
  32134. characterMakers.push(() => makeCharacter(
  32135. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32136. {
  32137. front: {
  32138. height: math.unit(6 + 3/12, "feet"),
  32139. weight: math.unit(430, "lb"),
  32140. name: "Front",
  32141. image: {
  32142. source: "./media/characters/carlos/front.svg",
  32143. extra: 1964/1913,
  32144. bottom: 70/2034
  32145. }
  32146. },
  32147. },
  32148. [
  32149. {
  32150. name: "Normal",
  32151. height: math.unit(6 + 3/12, "feet"),
  32152. default: true
  32153. },
  32154. ]
  32155. ))
  32156. characterMakers.push(() => makeCharacter(
  32157. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32158. {
  32159. back: {
  32160. height: math.unit(5 + 10/12, "feet"),
  32161. weight: math.unit(200, "lb"),
  32162. name: "Back",
  32163. image: {
  32164. source: "./media/characters/jax/back.svg",
  32165. extra: 764/739,
  32166. bottom: 25/789
  32167. }
  32168. },
  32169. },
  32170. [
  32171. {
  32172. name: "Normal",
  32173. height: math.unit(5 + 10/12, "feet"),
  32174. default: true
  32175. },
  32176. ]
  32177. ))
  32178. characterMakers.push(() => makeCharacter(
  32179. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32180. {
  32181. front: {
  32182. height: math.unit(8, "feet"),
  32183. weight: math.unit(250, "lb"),
  32184. name: "Front",
  32185. image: {
  32186. source: "./media/characters/eikthynir/front.svg",
  32187. extra: 1332/1166,
  32188. bottom: 82/1414
  32189. }
  32190. },
  32191. back: {
  32192. height: math.unit(8, "feet"),
  32193. weight: math.unit(250, "lb"),
  32194. name: "Back",
  32195. image: {
  32196. source: "./media/characters/eikthynir/back.svg",
  32197. extra: 1342/1190,
  32198. bottom: 19/1361
  32199. }
  32200. },
  32201. dick: {
  32202. height: math.unit(2.35, "feet"),
  32203. name: "Dick",
  32204. image: {
  32205. source: "./media/characters/eikthynir/dick.svg"
  32206. }
  32207. },
  32208. },
  32209. [
  32210. {
  32211. name: "Normal",
  32212. height: math.unit(8, "feet"),
  32213. default: true
  32214. },
  32215. ]
  32216. ))
  32217. characterMakers.push(() => makeCharacter(
  32218. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32219. {
  32220. front: {
  32221. height: math.unit(99, "meters"),
  32222. weight: math.unit(13000, "tons"),
  32223. name: "Front",
  32224. image: {
  32225. source: "./media/characters/zlmos/front.svg",
  32226. extra: 2202/1992,
  32227. bottom: 315/2517
  32228. }
  32229. },
  32230. },
  32231. [
  32232. {
  32233. name: "Macro",
  32234. height: math.unit(99, "meters"),
  32235. default: true
  32236. },
  32237. ]
  32238. ))
  32239. characterMakers.push(() => makeCharacter(
  32240. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32241. {
  32242. front: {
  32243. height: math.unit(6 + 5/12, "feet"),
  32244. name: "Front",
  32245. image: {
  32246. source: "./media/characters/purri/front.svg",
  32247. extra: 1698/1610,
  32248. bottom: 32/1730
  32249. }
  32250. },
  32251. frontAlt: {
  32252. height: math.unit(6 + 5/12, "feet"),
  32253. name: "Front (Alt)",
  32254. image: {
  32255. source: "./media/characters/purri/front-alt.svg",
  32256. extra: 450/420,
  32257. bottom: 26/476
  32258. }
  32259. },
  32260. boots: {
  32261. height: math.unit(5.5, "feet"),
  32262. name: "Boots",
  32263. image: {
  32264. source: "./media/characters/purri/boots.svg",
  32265. extra: 905/853,
  32266. bottom: 18/923
  32267. }
  32268. },
  32269. lying: {
  32270. height: math.unit(2, "feet"),
  32271. name: "Lying",
  32272. image: {
  32273. source: "./media/characters/purri/lying.svg",
  32274. extra: 940/843,
  32275. bottom: 146/1086
  32276. }
  32277. },
  32278. devious: {
  32279. height: math.unit(1.77, "feet"),
  32280. name: "Devious",
  32281. image: {
  32282. source: "./media/characters/purri/devious.svg",
  32283. extra: 1440/1155,
  32284. bottom: 147/1587
  32285. }
  32286. },
  32287. bean: {
  32288. height: math.unit(1.94, "feet"),
  32289. name: "Bean",
  32290. image: {
  32291. source: "./media/characters/purri/bean.svg"
  32292. }
  32293. },
  32294. },
  32295. [
  32296. {
  32297. name: "Micro",
  32298. height: math.unit(1, "mm")
  32299. },
  32300. {
  32301. name: "Normal",
  32302. height: math.unit(6 + 5/12, "feet"),
  32303. default: true
  32304. },
  32305. {
  32306. name: "Macro :3c",
  32307. height: math.unit(2, "miles")
  32308. },
  32309. ]
  32310. ))
  32311. characterMakers.push(() => makeCharacter(
  32312. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32313. {
  32314. front: {
  32315. height: math.unit(6 + 2/12, "feet"),
  32316. weight: math.unit(250, "lb"),
  32317. name: "Front",
  32318. image: {
  32319. source: "./media/characters/moonlight/front.svg",
  32320. extra: 1044/908,
  32321. bottom: 56/1100
  32322. }
  32323. },
  32324. feral: {
  32325. height: math.unit(3 + 1/12, "feet"),
  32326. weight: math.unit(50, "kg"),
  32327. name: "Feral",
  32328. image: {
  32329. source: "./media/characters/moonlight/feral.svg",
  32330. extra: 3705/2791,
  32331. bottom: 145/3850
  32332. }
  32333. },
  32334. paw: {
  32335. height: math.unit(1, "feet"),
  32336. name: "Paw",
  32337. image: {
  32338. source: "./media/characters/moonlight/paw.svg"
  32339. }
  32340. },
  32341. paws: {
  32342. height: math.unit(0.98, "feet"),
  32343. name: "Paws",
  32344. image: {
  32345. source: "./media/characters/moonlight/paws.svg",
  32346. extra: 939/939,
  32347. bottom: 50/989
  32348. }
  32349. },
  32350. mouth: {
  32351. height: math.unit(0.48, "feet"),
  32352. name: "Mouth",
  32353. image: {
  32354. source: "./media/characters/moonlight/mouth.svg"
  32355. }
  32356. },
  32357. dick: {
  32358. height: math.unit(1.46, "feet"),
  32359. name: "Dick",
  32360. image: {
  32361. source: "./media/characters/moonlight/dick.svg"
  32362. }
  32363. },
  32364. },
  32365. [
  32366. {
  32367. name: "Normal",
  32368. height: math.unit(6 + 2/12, "feet"),
  32369. default: true
  32370. },
  32371. {
  32372. name: "Macro",
  32373. height: math.unit(300, "feet")
  32374. },
  32375. {
  32376. name: "Macro+",
  32377. height: math.unit(1, "mile")
  32378. },
  32379. {
  32380. name: "Mt. Moon",
  32381. height: math.unit(5, "miles")
  32382. },
  32383. {
  32384. name: "Megamacro",
  32385. height: math.unit(15, "miles")
  32386. },
  32387. ]
  32388. ))
  32389. characterMakers.push(() => makeCharacter(
  32390. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32391. {
  32392. back: {
  32393. height: math.unit(6, "feet"),
  32394. weight: math.unit(150, "lb"),
  32395. name: "Back",
  32396. image: {
  32397. source: "./media/characters/sylen/back.svg",
  32398. extra: 1335/1273,
  32399. bottom: 107/1442
  32400. }
  32401. },
  32402. },
  32403. [
  32404. {
  32405. name: "Normal",
  32406. height: math.unit(5 + 5/12, "feet")
  32407. },
  32408. {
  32409. name: "Megamacro",
  32410. height: math.unit(3, "miles"),
  32411. default: true
  32412. },
  32413. ]
  32414. ))
  32415. characterMakers.push(() => makeCharacter(
  32416. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32417. {
  32418. front: {
  32419. height: math.unit(6, "feet"),
  32420. weight: math.unit(190, "lb"),
  32421. name: "Front",
  32422. image: {
  32423. source: "./media/characters/huttser/front.svg",
  32424. extra: 1152/1058,
  32425. bottom: 23/1175
  32426. }
  32427. },
  32428. side: {
  32429. height: math.unit(6, "feet"),
  32430. weight: math.unit(190, "lb"),
  32431. name: "Side",
  32432. image: {
  32433. source: "./media/characters/huttser/side.svg",
  32434. extra: 1174/1065,
  32435. bottom: 18/1192
  32436. }
  32437. },
  32438. back: {
  32439. height: math.unit(6, "feet"),
  32440. weight: math.unit(190, "lb"),
  32441. name: "Back",
  32442. image: {
  32443. source: "./media/characters/huttser/back.svg",
  32444. extra: 1158/1056,
  32445. bottom: 12/1170
  32446. }
  32447. },
  32448. },
  32449. [
  32450. ]
  32451. ))
  32452. characterMakers.push(() => makeCharacter(
  32453. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32454. {
  32455. side: {
  32456. height: math.unit(12 + 9/12, "feet"),
  32457. weight: math.unit(15000, "lb"),
  32458. name: "Side",
  32459. image: {
  32460. source: "./media/characters/faan/side.svg",
  32461. extra: 2747/2697,
  32462. bottom: 0/2747
  32463. }
  32464. },
  32465. front: {
  32466. height: math.unit(12 + 9/12, "feet"),
  32467. weight: math.unit(15000, "lb"),
  32468. name: "Front",
  32469. image: {
  32470. source: "./media/characters/faan/front.svg",
  32471. extra: 607/571,
  32472. bottom: 24/631
  32473. }
  32474. },
  32475. head: {
  32476. height: math.unit(2.85, "feet"),
  32477. name: "Head",
  32478. image: {
  32479. source: "./media/characters/faan/head.svg"
  32480. }
  32481. },
  32482. headAlt: {
  32483. height: math.unit(3.13, "feet"),
  32484. name: "Head-alt",
  32485. image: {
  32486. source: "./media/characters/faan/head-alt.svg"
  32487. }
  32488. },
  32489. },
  32490. [
  32491. {
  32492. name: "Normal",
  32493. height: math.unit(12 + 9/12, "feet"),
  32494. default: true
  32495. },
  32496. ]
  32497. ))
  32498. characterMakers.push(() => makeCharacter(
  32499. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32500. {
  32501. front: {
  32502. height: math.unit(6, "feet"),
  32503. weight: math.unit(300, "lb"),
  32504. name: "Front",
  32505. image: {
  32506. source: "./media/characters/tanio/front.svg",
  32507. extra: 711/673,
  32508. bottom: 25/736
  32509. }
  32510. },
  32511. },
  32512. [
  32513. {
  32514. name: "Normal",
  32515. height: math.unit(6, "feet"),
  32516. default: true
  32517. },
  32518. ]
  32519. ))
  32520. characterMakers.push(() => makeCharacter(
  32521. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32522. {
  32523. front: {
  32524. height: math.unit(3, "inches"),
  32525. name: "Front",
  32526. image: {
  32527. source: "./media/characters/noboru/front.svg",
  32528. extra: 1039/932,
  32529. bottom: 18/1057
  32530. }
  32531. },
  32532. },
  32533. [
  32534. {
  32535. name: "Micro",
  32536. height: math.unit(3, "inches"),
  32537. default: true
  32538. },
  32539. ]
  32540. ))
  32541. characterMakers.push(() => makeCharacter(
  32542. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32543. {
  32544. front: {
  32545. height: math.unit(1.85, "meters"),
  32546. weight: math.unit(80, "kg"),
  32547. name: "Front",
  32548. image: {
  32549. source: "./media/characters/daniel-barrett/front.svg",
  32550. extra: 355/337,
  32551. bottom: 9/364
  32552. }
  32553. },
  32554. },
  32555. [
  32556. {
  32557. name: "Pico",
  32558. height: math.unit(0.0433, "mm")
  32559. },
  32560. {
  32561. name: "Nano",
  32562. height: math.unit(1.5, "mm")
  32563. },
  32564. {
  32565. name: "Micro",
  32566. height: math.unit(5.3, "cm"),
  32567. default: true
  32568. },
  32569. {
  32570. name: "Normal",
  32571. height: math.unit(1.85, "meters")
  32572. },
  32573. {
  32574. name: "Macro",
  32575. height: math.unit(64.7, "meters")
  32576. },
  32577. {
  32578. name: "Megamacro",
  32579. height: math.unit(2.26, "km")
  32580. },
  32581. {
  32582. name: "Gigamacro",
  32583. height: math.unit(79, "km")
  32584. },
  32585. {
  32586. name: "Teramacro",
  32587. height: math.unit(2765, "km")
  32588. },
  32589. {
  32590. name: "Petamacro",
  32591. height: math.unit(96678, "km")
  32592. },
  32593. ]
  32594. ))
  32595. characterMakers.push(() => makeCharacter(
  32596. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32597. {
  32598. front: {
  32599. height: math.unit(30, "meters"),
  32600. weight: math.unit(400, "tons"),
  32601. name: "Front",
  32602. image: {
  32603. source: "./media/characters/zeel/front.svg",
  32604. extra: 2599/2599,
  32605. bottom: 226/2825
  32606. }
  32607. },
  32608. },
  32609. [
  32610. {
  32611. name: "Macro",
  32612. height: math.unit(30, "meters"),
  32613. default: true
  32614. },
  32615. ]
  32616. ))
  32617. characterMakers.push(() => makeCharacter(
  32618. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32619. {
  32620. front: {
  32621. height: math.unit(6 + 7/12, "feet"),
  32622. weight: math.unit(210, "lb"),
  32623. name: "Front",
  32624. image: {
  32625. source: "./media/characters/tarn/front.svg",
  32626. extra: 3517/3220,
  32627. bottom: 91/3608
  32628. }
  32629. },
  32630. back: {
  32631. height: math.unit(6 + 7/12, "feet"),
  32632. weight: math.unit(210, "lb"),
  32633. name: "Back",
  32634. image: {
  32635. source: "./media/characters/tarn/back.svg",
  32636. extra: 3566/3241,
  32637. bottom: 34/3600
  32638. }
  32639. },
  32640. dick: {
  32641. height: math.unit(1.65, "feet"),
  32642. name: "Dick",
  32643. image: {
  32644. source: "./media/characters/tarn/dick.svg"
  32645. }
  32646. },
  32647. paw: {
  32648. height: math.unit(1.80, "feet"),
  32649. name: "Paw",
  32650. image: {
  32651. source: "./media/characters/tarn/paw.svg"
  32652. }
  32653. },
  32654. tongue: {
  32655. height: math.unit(0.97, "feet"),
  32656. name: "Tongue",
  32657. image: {
  32658. source: "./media/characters/tarn/tongue.svg"
  32659. }
  32660. },
  32661. },
  32662. [
  32663. {
  32664. name: "Micro",
  32665. height: math.unit(4, "inches")
  32666. },
  32667. {
  32668. name: "Normal",
  32669. height: math.unit(6 + 7/12, "feet"),
  32670. default: true
  32671. },
  32672. {
  32673. name: "Macro",
  32674. height: math.unit(300, "feet")
  32675. },
  32676. ]
  32677. ))
  32678. characterMakers.push(() => makeCharacter(
  32679. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32680. {
  32681. front: {
  32682. height: math.unit(5 + 7/12, "feet"),
  32683. weight: math.unit(80, "kg"),
  32684. name: "Front",
  32685. image: {
  32686. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32687. extra: 3023/2865,
  32688. bottom: 33/3056
  32689. }
  32690. },
  32691. back: {
  32692. height: math.unit(5 + 7/12, "feet"),
  32693. weight: math.unit(80, "kg"),
  32694. name: "Back",
  32695. image: {
  32696. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32697. extra: 3020/2886,
  32698. bottom: 30/3050
  32699. }
  32700. },
  32701. dick: {
  32702. height: math.unit(0.98, "feet"),
  32703. name: "Dick",
  32704. image: {
  32705. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32706. }
  32707. },
  32708. anatomy: {
  32709. height: math.unit(2.86, "feet"),
  32710. name: "Anatomy",
  32711. image: {
  32712. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32713. }
  32714. },
  32715. },
  32716. [
  32717. {
  32718. name: "Really Small",
  32719. height: math.unit(2, "inches")
  32720. },
  32721. {
  32722. name: "Micro",
  32723. height: math.unit(5.583, "inches")
  32724. },
  32725. {
  32726. name: "Normal",
  32727. height: math.unit(5 + 7/12, "feet"),
  32728. default: true
  32729. },
  32730. {
  32731. name: "Macro",
  32732. height: math.unit(67, "feet")
  32733. },
  32734. {
  32735. name: "Megamacro",
  32736. height: math.unit(134, "feet")
  32737. },
  32738. ]
  32739. ))
  32740. characterMakers.push(() => makeCharacter(
  32741. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32742. {
  32743. front: {
  32744. height: math.unit(9, "feet"),
  32745. weight: math.unit(120, "lb"),
  32746. name: "Front",
  32747. image: {
  32748. source: "./media/characters/sally/front.svg",
  32749. extra: 1506/1349,
  32750. bottom: 66/1572
  32751. }
  32752. },
  32753. },
  32754. [
  32755. {
  32756. name: "Normal",
  32757. height: math.unit(9, "feet"),
  32758. default: true
  32759. },
  32760. ]
  32761. ))
  32762. characterMakers.push(() => makeCharacter(
  32763. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32764. {
  32765. front: {
  32766. height: math.unit(8, "feet"),
  32767. weight: math.unit(900, "lb"),
  32768. name: "Front",
  32769. image: {
  32770. source: "./media/characters/owen/front.svg",
  32771. extra: 1761/1657,
  32772. bottom: 74/1835
  32773. }
  32774. },
  32775. side: {
  32776. height: math.unit(8, "feet"),
  32777. weight: math.unit(900, "lb"),
  32778. name: "Side",
  32779. image: {
  32780. source: "./media/characters/owen/side.svg",
  32781. extra: 1797/1734,
  32782. bottom: 30/1827
  32783. }
  32784. },
  32785. back: {
  32786. height: math.unit(8, "feet"),
  32787. weight: math.unit(900, "lb"),
  32788. name: "Back",
  32789. image: {
  32790. source: "./media/characters/owen/back.svg",
  32791. extra: 1796/1706,
  32792. bottom: 59/1855
  32793. }
  32794. },
  32795. maw: {
  32796. height: math.unit(1.76, "feet"),
  32797. name: "Maw",
  32798. image: {
  32799. source: "./media/characters/owen/maw.svg"
  32800. }
  32801. },
  32802. },
  32803. [
  32804. {
  32805. name: "Normal",
  32806. height: math.unit(8, "feet"),
  32807. default: true
  32808. },
  32809. ]
  32810. ))
  32811. characterMakers.push(() => makeCharacter(
  32812. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32813. {
  32814. front: {
  32815. height: math.unit(4, "feet"),
  32816. weight: math.unit(400, "lb"),
  32817. name: "Front",
  32818. image: {
  32819. source: "./media/characters/ryth/front.svg",
  32820. extra: 1920/1748,
  32821. bottom: 42/1962
  32822. }
  32823. },
  32824. back: {
  32825. height: math.unit(4, "feet"),
  32826. weight: math.unit(400, "lb"),
  32827. name: "Back",
  32828. image: {
  32829. source: "./media/characters/ryth/back.svg",
  32830. extra: 1897/1690,
  32831. bottom: 89/1986
  32832. }
  32833. },
  32834. mouth: {
  32835. height: math.unit(1.39, "feet"),
  32836. name: "Mouth",
  32837. image: {
  32838. source: "./media/characters/ryth/mouth.svg"
  32839. }
  32840. },
  32841. tailmaw: {
  32842. height: math.unit(1.23, "feet"),
  32843. name: "Tailmaw",
  32844. image: {
  32845. source: "./media/characters/ryth/tailmaw.svg"
  32846. }
  32847. },
  32848. goia: {
  32849. height: math.unit(4, "meters"),
  32850. weight: math.unit(10800, "lb"),
  32851. name: "Goia",
  32852. image: {
  32853. source: "./media/characters/ryth/goia.svg",
  32854. extra: 745/640,
  32855. bottom: 107/852
  32856. }
  32857. },
  32858. goiaFront: {
  32859. height: math.unit(4, "meters"),
  32860. weight: math.unit(10800, "lb"),
  32861. name: "Goia (Front)",
  32862. image: {
  32863. source: "./media/characters/ryth/goia-front.svg",
  32864. extra: 750/586,
  32865. bottom: 114/864
  32866. }
  32867. },
  32868. goiaMaw: {
  32869. height: math.unit(5.55, "feet"),
  32870. name: "Goia Maw",
  32871. image: {
  32872. source: "./media/characters/ryth/goia-maw.svg"
  32873. }
  32874. },
  32875. goiaForepaw: {
  32876. height: math.unit(3.5, "feet"),
  32877. name: "Goia Forepaw",
  32878. image: {
  32879. source: "./media/characters/ryth/goia-forepaw.svg"
  32880. }
  32881. },
  32882. goiaHindpaw: {
  32883. height: math.unit(5.55, "feet"),
  32884. name: "Goia Hindpaw",
  32885. image: {
  32886. source: "./media/characters/ryth/goia-hindpaw.svg"
  32887. }
  32888. },
  32889. },
  32890. [
  32891. {
  32892. name: "Normal",
  32893. height: math.unit(4, "feet"),
  32894. default: true
  32895. },
  32896. ]
  32897. ))
  32898. characterMakers.push(() => makeCharacter(
  32899. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32900. {
  32901. front: {
  32902. height: math.unit(7, "feet"),
  32903. weight: math.unit(180, "lb"),
  32904. name: "Front",
  32905. image: {
  32906. source: "./media/characters/necrolance/front.svg",
  32907. extra: 1062/947,
  32908. bottom: 41/1103
  32909. }
  32910. },
  32911. back: {
  32912. height: math.unit(7, "feet"),
  32913. weight: math.unit(180, "lb"),
  32914. name: "Back",
  32915. image: {
  32916. source: "./media/characters/necrolance/back.svg",
  32917. extra: 1045/984,
  32918. bottom: 14/1059
  32919. }
  32920. },
  32921. wing: {
  32922. height: math.unit(2.67, "feet"),
  32923. name: "Wing",
  32924. image: {
  32925. source: "./media/characters/necrolance/wing.svg"
  32926. }
  32927. },
  32928. },
  32929. [
  32930. {
  32931. name: "Normal",
  32932. height: math.unit(7, "feet"),
  32933. default: true
  32934. },
  32935. ]
  32936. ))
  32937. characterMakers.push(() => makeCharacter(
  32938. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32939. {
  32940. front: {
  32941. height: math.unit(76, "meters"),
  32942. weight: math.unit(30000, "tons"),
  32943. name: "Front",
  32944. image: {
  32945. source: "./media/characters/tyler/front.svg",
  32946. extra: 1640/1640,
  32947. bottom: 114/1754
  32948. }
  32949. },
  32950. },
  32951. [
  32952. {
  32953. name: "Macro",
  32954. height: math.unit(76, "meters"),
  32955. default: true
  32956. },
  32957. ]
  32958. ))
  32959. characterMakers.push(() => makeCharacter(
  32960. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32961. {
  32962. front: {
  32963. height: math.unit(4 + 11/12, "feet"),
  32964. weight: math.unit(132, "lb"),
  32965. name: "Front",
  32966. image: {
  32967. source: "./media/characters/icey/front.svg",
  32968. extra: 2750/2550,
  32969. bottom: 33/2783
  32970. }
  32971. },
  32972. back: {
  32973. height: math.unit(4 + 11/12, "feet"),
  32974. weight: math.unit(132, "lb"),
  32975. name: "Back",
  32976. image: {
  32977. source: "./media/characters/icey/back.svg",
  32978. extra: 2624/2481,
  32979. bottom: 35/2659
  32980. }
  32981. },
  32982. },
  32983. [
  32984. {
  32985. name: "Normal",
  32986. height: math.unit(4 + 11/12, "feet"),
  32987. default: true
  32988. },
  32989. ]
  32990. ))
  32991. characterMakers.push(() => makeCharacter(
  32992. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32993. {
  32994. front: {
  32995. height: math.unit(100, "feet"),
  32996. weight: math.unit(0, "lb"),
  32997. name: "Front",
  32998. image: {
  32999. source: "./media/characters/smile/front.svg",
  33000. extra: 2983/2912,
  33001. bottom: 162/3145
  33002. }
  33003. },
  33004. back: {
  33005. height: math.unit(100, "feet"),
  33006. weight: math.unit(0, "lb"),
  33007. name: "Back",
  33008. image: {
  33009. source: "./media/characters/smile/back.svg",
  33010. extra: 3143/3031,
  33011. bottom: 91/3234
  33012. }
  33013. },
  33014. head: {
  33015. height: math.unit(26.3, "feet"),
  33016. weight: math.unit(0, "lb"),
  33017. name: "Head",
  33018. image: {
  33019. source: "./media/characters/smile/head.svg"
  33020. }
  33021. },
  33022. collar: {
  33023. height: math.unit(5.3, "feet"),
  33024. weight: math.unit(0, "lb"),
  33025. name: "Collar",
  33026. image: {
  33027. source: "./media/characters/smile/collar.svg"
  33028. }
  33029. },
  33030. },
  33031. [
  33032. {
  33033. name: "Macro",
  33034. height: math.unit(100, "feet"),
  33035. default: true
  33036. },
  33037. ]
  33038. ))
  33039. characterMakers.push(() => makeCharacter(
  33040. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33041. {
  33042. dragon: {
  33043. height: math.unit(26, "feet"),
  33044. weight: math.unit(36, "tons"),
  33045. name: "Dragon",
  33046. image: {
  33047. source: "./media/characters/arimphae/dragon.svg",
  33048. extra: 1574/983,
  33049. bottom: 357/1931
  33050. }
  33051. },
  33052. drake: {
  33053. height: math.unit(9, "feet"),
  33054. weight: math.unit(1.5, "tons"),
  33055. name: "Drake",
  33056. image: {
  33057. source: "./media/characters/arimphae/drake.svg",
  33058. extra: 1120/925,
  33059. bottom: 435/1555
  33060. }
  33061. },
  33062. },
  33063. [
  33064. {
  33065. name: "Small",
  33066. height: math.unit(26*5/9, "feet")
  33067. },
  33068. {
  33069. name: "Normal",
  33070. height: math.unit(26, "feet"),
  33071. default: true
  33072. },
  33073. ]
  33074. ))
  33075. characterMakers.push(() => makeCharacter(
  33076. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33077. {
  33078. front: {
  33079. height: math.unit(8 + 9/12, "feet"),
  33080. name: "Front",
  33081. image: {
  33082. source: "./media/characters/xander/front.svg",
  33083. extra: 1237/974,
  33084. bottom: 94/1331
  33085. }
  33086. },
  33087. },
  33088. [
  33089. {
  33090. name: "Normal",
  33091. height: math.unit(8 + 9/12, "feet"),
  33092. default: true
  33093. },
  33094. {
  33095. name: "Gaze Grabber",
  33096. height: math.unit(13 + 8/12, "feet")
  33097. },
  33098. {
  33099. name: "Jaw Dropper",
  33100. height: math.unit(27, "feet")
  33101. },
  33102. {
  33103. name: "Show Stopper",
  33104. height: math.unit(136, "feet")
  33105. },
  33106. {
  33107. name: "Superstar",
  33108. height: math.unit(1.9e6, "miles")
  33109. },
  33110. ]
  33111. ))
  33112. characterMakers.push(() => makeCharacter(
  33113. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33114. {
  33115. side: {
  33116. height: math.unit(2100, "feet"),
  33117. name: "Side",
  33118. image: {
  33119. source: "./media/characters/osiris/side.svg",
  33120. extra: 1105/939,
  33121. bottom: 167/1272
  33122. }
  33123. },
  33124. },
  33125. [
  33126. {
  33127. name: "Macro",
  33128. height: math.unit(2100, "feet"),
  33129. default: true
  33130. },
  33131. ]
  33132. ))
  33133. characterMakers.push(() => makeCharacter(
  33134. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33135. {
  33136. front: {
  33137. height: math.unit(6 + 8/12, "feet"),
  33138. weight: math.unit(225, "lb"),
  33139. name: "Front",
  33140. image: {
  33141. source: "./media/characters/rhys-londe/front.svg",
  33142. extra: 2258/2141,
  33143. bottom: 188/2446
  33144. }
  33145. },
  33146. back: {
  33147. height: math.unit(6 + 8/12, "feet"),
  33148. weight: math.unit(225, "lb"),
  33149. name: "Back",
  33150. image: {
  33151. source: "./media/characters/rhys-londe/back.svg",
  33152. extra: 2237/2137,
  33153. bottom: 63/2300
  33154. }
  33155. },
  33156. frontNsfw: {
  33157. height: math.unit(6 + 8/12, "feet"),
  33158. weight: math.unit(225, "lb"),
  33159. name: "Front (NSFW)",
  33160. image: {
  33161. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33162. extra: 2258/2141,
  33163. bottom: 188/2446
  33164. }
  33165. },
  33166. backNsfw: {
  33167. height: math.unit(6 + 8/12, "feet"),
  33168. weight: math.unit(225, "lb"),
  33169. name: "Back (NSFW)",
  33170. image: {
  33171. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33172. extra: 2237/2137,
  33173. bottom: 63/2300
  33174. }
  33175. },
  33176. dick: {
  33177. height: math.unit(30, "inches"),
  33178. name: "Dick",
  33179. image: {
  33180. source: "./media/characters/rhys-londe/dick.svg"
  33181. }
  33182. },
  33183. maw: {
  33184. height: math.unit(1.6, "feet"),
  33185. name: "Maw",
  33186. image: {
  33187. source: "./media/characters/rhys-londe/maw.svg"
  33188. }
  33189. },
  33190. },
  33191. [
  33192. {
  33193. name: "Normal",
  33194. height: math.unit(6 + 8/12, "feet"),
  33195. default: true
  33196. },
  33197. ]
  33198. ))
  33199. characterMakers.push(() => makeCharacter(
  33200. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33201. {
  33202. front: {
  33203. height: math.unit(3 + 10/12, "feet"),
  33204. weight: math.unit(90, "lb"),
  33205. name: "Front",
  33206. image: {
  33207. source: "./media/characters/taivas-ensim/front.svg",
  33208. extra: 1327/1216,
  33209. bottom: 96/1423
  33210. }
  33211. },
  33212. back: {
  33213. height: math.unit(3 + 10/12, "feet"),
  33214. weight: math.unit(90, "lb"),
  33215. name: "Back",
  33216. image: {
  33217. source: "./media/characters/taivas-ensim/back.svg",
  33218. extra: 1355/1247,
  33219. bottom: 11/1366
  33220. }
  33221. },
  33222. frontNsfw: {
  33223. height: math.unit(3 + 10/12, "feet"),
  33224. weight: math.unit(90, "lb"),
  33225. name: "Front (NSFW)",
  33226. image: {
  33227. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33228. extra: 1327/1216,
  33229. bottom: 96/1423
  33230. }
  33231. },
  33232. backNsfw: {
  33233. height: math.unit(3 + 10/12, "feet"),
  33234. weight: math.unit(90, "lb"),
  33235. name: "Back (NSFW)",
  33236. image: {
  33237. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33238. extra: 1355/1247,
  33239. bottom: 11/1366
  33240. }
  33241. },
  33242. },
  33243. [
  33244. {
  33245. name: "Normal",
  33246. height: math.unit(3 + 10/12, "feet"),
  33247. default: true
  33248. },
  33249. ]
  33250. ))
  33251. characterMakers.push(() => makeCharacter(
  33252. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33253. {
  33254. front: {
  33255. height: math.unit(9 + 6/12, "feet"),
  33256. weight: math.unit(940, "lb"),
  33257. name: "Front",
  33258. image: {
  33259. source: "./media/characters/byliss/front.svg",
  33260. extra: 1327/1290,
  33261. bottom: 82/1409
  33262. }
  33263. },
  33264. back: {
  33265. height: math.unit(9 + 6/12, "feet"),
  33266. weight: math.unit(940, "lb"),
  33267. name: "Back",
  33268. image: {
  33269. source: "./media/characters/byliss/back.svg",
  33270. extra: 1376/1349,
  33271. bottom: 9/1385
  33272. }
  33273. },
  33274. frontNsfw: {
  33275. height: math.unit(9 + 6/12, "feet"),
  33276. weight: math.unit(940, "lb"),
  33277. name: "Front (NSFW)",
  33278. image: {
  33279. source: "./media/characters/byliss/front-nsfw.svg",
  33280. extra: 1327/1290,
  33281. bottom: 82/1409
  33282. }
  33283. },
  33284. backNsfw: {
  33285. height: math.unit(9 + 6/12, "feet"),
  33286. weight: math.unit(940, "lb"),
  33287. name: "Back (NSFW)",
  33288. image: {
  33289. source: "./media/characters/byliss/back-nsfw.svg",
  33290. extra: 1376/1349,
  33291. bottom: 9/1385
  33292. }
  33293. },
  33294. },
  33295. [
  33296. {
  33297. name: "Normal",
  33298. height: math.unit(9 + 6/12, "feet"),
  33299. default: true
  33300. },
  33301. ]
  33302. ))
  33303. characterMakers.push(() => makeCharacter(
  33304. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33305. {
  33306. front: {
  33307. height: math.unit(5 + 2/12, "feet"),
  33308. weight: math.unit(200, "lb"),
  33309. name: "Front",
  33310. image: {
  33311. source: "./media/characters/noraly/front.svg",
  33312. extra: 4985/4773,
  33313. bottom: 150/5135
  33314. }
  33315. },
  33316. full: {
  33317. height: math.unit(5 + 2/12, "feet"),
  33318. weight: math.unit(164, "lb"),
  33319. name: "Full",
  33320. image: {
  33321. source: "./media/characters/noraly/full.svg",
  33322. extra: 1114/1059,
  33323. bottom: 35/1149
  33324. }
  33325. },
  33326. fuller: {
  33327. height: math.unit(5 + 2/12, "feet"),
  33328. weight: math.unit(230, "lb"),
  33329. name: "Fuller",
  33330. image: {
  33331. source: "./media/characters/noraly/fuller.svg",
  33332. extra: 1114/1059,
  33333. bottom: 35/1149
  33334. }
  33335. },
  33336. fullest: {
  33337. height: math.unit(5 + 2/12, "feet"),
  33338. weight: math.unit(300, "lb"),
  33339. name: "Fullest",
  33340. image: {
  33341. source: "./media/characters/noraly/fullest.svg",
  33342. extra: 1114/1059,
  33343. bottom: 35/1149
  33344. }
  33345. },
  33346. },
  33347. [
  33348. {
  33349. name: "Normal",
  33350. height: math.unit(5 + 2/12, "feet"),
  33351. default: true
  33352. },
  33353. ]
  33354. ))
  33355. characterMakers.push(() => makeCharacter(
  33356. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33357. {
  33358. front: {
  33359. height: math.unit(5 + 2/12, "feet"),
  33360. weight: math.unit(210, "lb"),
  33361. name: "Front",
  33362. image: {
  33363. source: "./media/characters/pera/front.svg",
  33364. extra: 1560/1531,
  33365. bottom: 165/1725
  33366. }
  33367. },
  33368. back: {
  33369. height: math.unit(5 + 2/12, "feet"),
  33370. weight: math.unit(210, "lb"),
  33371. name: "Back",
  33372. image: {
  33373. source: "./media/characters/pera/back.svg",
  33374. extra: 1523/1493,
  33375. bottom: 152/1675
  33376. }
  33377. },
  33378. dick: {
  33379. height: math.unit(2.4, "feet"),
  33380. name: "Dick",
  33381. image: {
  33382. source: "./media/characters/pera/dick.svg"
  33383. }
  33384. },
  33385. },
  33386. [
  33387. {
  33388. name: "Normal",
  33389. height: math.unit(5 + 2/12, "feet"),
  33390. default: true
  33391. },
  33392. ]
  33393. ))
  33394. characterMakers.push(() => makeCharacter(
  33395. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33396. {
  33397. front: {
  33398. height: math.unit(12, "feet"),
  33399. weight: math.unit(3200, "lb"),
  33400. name: "Front",
  33401. image: {
  33402. source: "./media/characters/julian/front.svg",
  33403. extra: 2962/2701,
  33404. bottom: 184/3146
  33405. }
  33406. },
  33407. maw: {
  33408. height: math.unit(5.35, "feet"),
  33409. name: "Maw",
  33410. image: {
  33411. source: "./media/characters/julian/maw.svg"
  33412. }
  33413. },
  33414. paw: {
  33415. height: math.unit(3.07, "feet"),
  33416. name: "Paw",
  33417. image: {
  33418. source: "./media/characters/julian/paw.svg"
  33419. }
  33420. },
  33421. },
  33422. [
  33423. {
  33424. name: "Default",
  33425. height: math.unit(12, "feet"),
  33426. default: true
  33427. },
  33428. {
  33429. name: "Big",
  33430. height: math.unit(50, "feet")
  33431. },
  33432. {
  33433. name: "Really Big",
  33434. height: math.unit(1, "mile")
  33435. },
  33436. {
  33437. name: "Extremely Big",
  33438. height: math.unit(100, "miles")
  33439. },
  33440. {
  33441. name: "Planet Hugger",
  33442. height: math.unit(200, "megameters")
  33443. },
  33444. {
  33445. name: "Unreasonably Big",
  33446. height: math.unit(1e300, "meters")
  33447. },
  33448. ]
  33449. ))
  33450. characterMakers.push(() => makeCharacter(
  33451. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33452. {
  33453. solgooleo: {
  33454. height: math.unit(4, "meters"),
  33455. weight: math.unit(6000*1.5, "kg"),
  33456. volume: math.unit(6000, "liters"),
  33457. name: "Solgooleo",
  33458. image: {
  33459. source: "./media/characters/pi/solgooleo.svg",
  33460. extra: 388/331,
  33461. bottom: 29/417
  33462. }
  33463. },
  33464. },
  33465. [
  33466. {
  33467. name: "Normal",
  33468. height: math.unit(4, "meters"),
  33469. default: true
  33470. },
  33471. ]
  33472. ))
  33473. characterMakers.push(() => makeCharacter(
  33474. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33475. {
  33476. front: {
  33477. height: math.unit(8, "feet"),
  33478. weight: math.unit(4, "tons"),
  33479. name: "Front",
  33480. image: {
  33481. source: "./media/characters/shaun/front.svg",
  33482. extra: 503/495,
  33483. bottom: 20/523
  33484. }
  33485. },
  33486. back: {
  33487. height: math.unit(8, "feet"),
  33488. weight: math.unit(4, "tons"),
  33489. name: "Back",
  33490. image: {
  33491. source: "./media/characters/shaun/back.svg",
  33492. extra: 487/480,
  33493. bottom: 20/507
  33494. }
  33495. },
  33496. },
  33497. [
  33498. {
  33499. name: "Lorg",
  33500. height: math.unit(8, "feet"),
  33501. default: true
  33502. },
  33503. ]
  33504. ))
  33505. characterMakers.push(() => makeCharacter(
  33506. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33507. {
  33508. frontAnthro: {
  33509. height: math.unit(7, "feet"),
  33510. name: "Front",
  33511. image: {
  33512. source: "./media/characters/sini/front-anthro.svg",
  33513. extra: 726/678,
  33514. bottom: 35/761
  33515. },
  33516. form: "anthro",
  33517. default: true
  33518. },
  33519. backAnthro: {
  33520. height: math.unit(7, "feet"),
  33521. name: "Back",
  33522. image: {
  33523. source: "./media/characters/sini/back-anthro.svg",
  33524. extra: 743/701,
  33525. bottom: 12/755
  33526. },
  33527. form: "anthro",
  33528. },
  33529. frontAnthroNsfw: {
  33530. height: math.unit(7, "feet"),
  33531. name: "Front (NSFW)",
  33532. image: {
  33533. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33534. extra: 726/678,
  33535. bottom: 35/761
  33536. },
  33537. form: "anthro"
  33538. },
  33539. backAnthroNsfw: {
  33540. height: math.unit(7, "feet"),
  33541. name: "Back (NSFW)",
  33542. image: {
  33543. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33544. extra: 743/701,
  33545. bottom: 12/755
  33546. },
  33547. form: "anthro",
  33548. },
  33549. mawAnthro: {
  33550. height: math.unit(2.14, "feet"),
  33551. name: "Maw",
  33552. image: {
  33553. source: "./media/characters/sini/maw-anthro.svg"
  33554. },
  33555. form: "anthro"
  33556. },
  33557. dick: {
  33558. height: math.unit(1.45, "feet"),
  33559. name: "Dick",
  33560. image: {
  33561. source: "./media/characters/sini/dick-anthro.svg"
  33562. },
  33563. form: "anthro"
  33564. },
  33565. feral: {
  33566. height: math.unit(16, "feet"),
  33567. name: "Feral",
  33568. image: {
  33569. source: "./media/characters/sini/feral.svg",
  33570. extra: 814/605,
  33571. bottom: 11/825
  33572. },
  33573. form: "feral",
  33574. default: true
  33575. },
  33576. feralNsfw: {
  33577. height: math.unit(16, "feet"),
  33578. name: "Feral (NSFW)",
  33579. image: {
  33580. source: "./media/characters/sini/feral-nsfw.svg",
  33581. extra: 814/605,
  33582. bottom: 11/825
  33583. },
  33584. form: "feral"
  33585. },
  33586. mawFeral: {
  33587. height: math.unit(5.66, "feet"),
  33588. name: "Maw",
  33589. image: {
  33590. source: "./media/characters/sini/maw-feral.svg"
  33591. },
  33592. form: "feral",
  33593. },
  33594. pawFeral: {
  33595. height: math.unit(5.17, "feet"),
  33596. name: "Paw",
  33597. image: {
  33598. source: "./media/characters/sini/paw-feral.svg"
  33599. },
  33600. form: "feral",
  33601. },
  33602. rumpFeral: {
  33603. height: math.unit(13.11, "feet"),
  33604. name: "Rump",
  33605. image: {
  33606. source: "./media/characters/sini/rump-feral.svg"
  33607. },
  33608. form: "feral",
  33609. },
  33610. dickFeral: {
  33611. height: math.unit(1, "feet"),
  33612. name: "Dick",
  33613. image: {
  33614. source: "./media/characters/sini/dick-feral.svg"
  33615. },
  33616. form: "feral",
  33617. },
  33618. eyeFeral: {
  33619. height: math.unit(1.23, "feet"),
  33620. name: "Eye",
  33621. image: {
  33622. source: "./media/characters/sini/eye-feral.svg"
  33623. },
  33624. form: "feral",
  33625. },
  33626. },
  33627. [
  33628. {
  33629. name: "Normal",
  33630. height: math.unit(7, "feet"),
  33631. default: true,
  33632. form: "anthro"
  33633. },
  33634. {
  33635. name: "Normal",
  33636. height: math.unit(16, "feet"),
  33637. default: true,
  33638. form: "feral"
  33639. },
  33640. ],
  33641. {
  33642. "anthro": {
  33643. name: "Anthro",
  33644. default: true
  33645. },
  33646. "feral": {
  33647. name: "Feral",
  33648. }
  33649. }
  33650. ))
  33651. characterMakers.push(() => makeCharacter(
  33652. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33653. {
  33654. side: {
  33655. height: math.unit(13, "meters"),
  33656. weight: math.unit(9072, "kg"),
  33657. name: "Side",
  33658. image: {
  33659. source: "./media/characters/raylldo/side.svg",
  33660. extra: 403/344,
  33661. bottom: 42/445
  33662. }
  33663. },
  33664. leaping: {
  33665. height: math.unit(12.3, "meters"),
  33666. weight: math.unit(9072, "kg"),
  33667. name: "Leaping",
  33668. image: {
  33669. source: "./media/characters/raylldo/leaping.svg",
  33670. extra: 470/249,
  33671. bottom: 13/483
  33672. }
  33673. },
  33674. flying: {
  33675. height: math.unit(18, "meters"),
  33676. weight: math.unit(9072, "kg"),
  33677. name: "Flying",
  33678. image: {
  33679. source: "./media/characters/raylldo/flying.svg"
  33680. }
  33681. },
  33682. head: {
  33683. height: math.unit(5.85, "meters"),
  33684. name: "Head",
  33685. image: {
  33686. source: "./media/characters/raylldo/head.svg"
  33687. }
  33688. },
  33689. maw: {
  33690. height: math.unit(5.32, "meters"),
  33691. name: "Maw",
  33692. image: {
  33693. source: "./media/characters/raylldo/maw.svg"
  33694. }
  33695. },
  33696. eye: {
  33697. height: math.unit(0.54, "meters"),
  33698. name: "Eye",
  33699. image: {
  33700. source: "./media/characters/raylldo/eye.svg"
  33701. }
  33702. },
  33703. },
  33704. [
  33705. {
  33706. name: "Normal",
  33707. height: math.unit(13, "meters"),
  33708. default: true
  33709. },
  33710. ]
  33711. ))
  33712. characterMakers.push(() => makeCharacter(
  33713. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33714. {
  33715. anthroFront: {
  33716. height: math.unit(9, "feet"),
  33717. weight: math.unit(600, "lb"),
  33718. name: "Anthro (Front)",
  33719. image: {
  33720. source: "./media/characters/glint/anthro-front.svg",
  33721. extra: 1097/1018,
  33722. bottom: 28/1125
  33723. }
  33724. },
  33725. anthroBack: {
  33726. height: math.unit(9, "feet"),
  33727. weight: math.unit(600, "lb"),
  33728. name: "Anthro (Back)",
  33729. image: {
  33730. source: "./media/characters/glint/anthro-back.svg",
  33731. extra: 1154/997,
  33732. bottom: 36/1190
  33733. }
  33734. },
  33735. feral: {
  33736. height: math.unit(11, "feet"),
  33737. weight: math.unit(50000, "lb"),
  33738. name: "Feral",
  33739. image: {
  33740. source: "./media/characters/glint/feral.svg",
  33741. extra: 3035/1585,
  33742. bottom: 1169/4204
  33743. }
  33744. },
  33745. dickAnthro: {
  33746. height: math.unit(0.7, "meters"),
  33747. name: "Dick (Anthro)",
  33748. image: {
  33749. source: "./media/characters/glint/dick-anthro.svg"
  33750. }
  33751. },
  33752. dickFeral: {
  33753. height: math.unit(2.65, "meters"),
  33754. name: "Dick (Feral)",
  33755. image: {
  33756. source: "./media/characters/glint/dick-feral.svg"
  33757. }
  33758. },
  33759. slitHidden: {
  33760. height: math.unit(5.85, "meters"),
  33761. name: "Slit (Hidden)",
  33762. image: {
  33763. source: "./media/characters/glint/slit-hidden.svg"
  33764. }
  33765. },
  33766. slitErect: {
  33767. height: math.unit(5.85, "meters"),
  33768. name: "Slit (Erect)",
  33769. image: {
  33770. source: "./media/characters/glint/slit-erect.svg"
  33771. }
  33772. },
  33773. mawAnthro: {
  33774. height: math.unit(0.63, "meters"),
  33775. name: "Maw (Anthro)",
  33776. image: {
  33777. source: "./media/characters/glint/maw.svg"
  33778. }
  33779. },
  33780. mawFeral: {
  33781. height: math.unit(2.89, "meters"),
  33782. name: "Maw (Feral)",
  33783. image: {
  33784. source: "./media/characters/glint/maw.svg"
  33785. }
  33786. },
  33787. },
  33788. [
  33789. {
  33790. name: "Normal",
  33791. height: math.unit(9, "feet"),
  33792. default: true
  33793. },
  33794. ]
  33795. ))
  33796. characterMakers.push(() => makeCharacter(
  33797. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33798. {
  33799. side: {
  33800. height: math.unit(15, "feet"),
  33801. weight: math.unit(5000, "kg"),
  33802. name: "Side",
  33803. image: {
  33804. source: "./media/characters/kairne/side.svg",
  33805. extra: 979/811,
  33806. bottom: 13/992
  33807. }
  33808. },
  33809. front: {
  33810. height: math.unit(15, "feet"),
  33811. weight: math.unit(5000, "kg"),
  33812. name: "Front",
  33813. image: {
  33814. source: "./media/characters/kairne/front.svg",
  33815. extra: 908/814,
  33816. bottom: 26/934
  33817. }
  33818. },
  33819. sideNsfw: {
  33820. height: math.unit(15, "feet"),
  33821. weight: math.unit(5000, "kg"),
  33822. name: "Side (NSFW)",
  33823. image: {
  33824. source: "./media/characters/kairne/side-nsfw.svg",
  33825. extra: 979/811,
  33826. bottom: 13/992
  33827. }
  33828. },
  33829. frontNsfw: {
  33830. height: math.unit(15, "feet"),
  33831. weight: math.unit(5000, "kg"),
  33832. name: "Front (NSFW)",
  33833. image: {
  33834. source: "./media/characters/kairne/front-nsfw.svg",
  33835. extra: 908/814,
  33836. bottom: 26/934
  33837. }
  33838. },
  33839. dickCaged: {
  33840. height: math.unit(0.65, "meters"),
  33841. name: "Dick-caged",
  33842. image: {
  33843. source: "./media/characters/kairne/dick-caged.svg"
  33844. }
  33845. },
  33846. dick: {
  33847. height: math.unit(0.79, "meters"),
  33848. name: "Dick",
  33849. image: {
  33850. source: "./media/characters/kairne/dick.svg"
  33851. }
  33852. },
  33853. genitals: {
  33854. height: math.unit(1.29, "meters"),
  33855. name: "Genitals",
  33856. image: {
  33857. source: "./media/characters/kairne/genitals.svg"
  33858. }
  33859. },
  33860. maw: {
  33861. height: math.unit(1.73, "meters"),
  33862. name: "Maw",
  33863. image: {
  33864. source: "./media/characters/kairne/maw.svg"
  33865. }
  33866. },
  33867. },
  33868. [
  33869. {
  33870. name: "Normal",
  33871. height: math.unit(15, "feet"),
  33872. default: true
  33873. },
  33874. ]
  33875. ))
  33876. characterMakers.push(() => makeCharacter(
  33877. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33878. {
  33879. front: {
  33880. height: math.unit(5 + 8/12, "feet"),
  33881. weight: math.unit(139, "lb"),
  33882. name: "Front",
  33883. image: {
  33884. source: "./media/characters/biscuit-jackal/front.svg",
  33885. extra: 2106/1961,
  33886. bottom: 58/2164
  33887. }
  33888. },
  33889. back: {
  33890. height: math.unit(5 + 8/12, "feet"),
  33891. weight: math.unit(139, "lb"),
  33892. name: "Back",
  33893. image: {
  33894. source: "./media/characters/biscuit-jackal/back.svg",
  33895. extra: 2132/1976,
  33896. bottom: 57/2189
  33897. }
  33898. },
  33899. werejackal: {
  33900. height: math.unit(6 + 3/12, "feet"),
  33901. weight: math.unit(188, "lb"),
  33902. name: "Werejackal",
  33903. image: {
  33904. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33905. extra: 2373/2178,
  33906. bottom: 53/2426
  33907. }
  33908. },
  33909. },
  33910. [
  33911. {
  33912. name: "Normal",
  33913. height: math.unit(5 + 8/12, "feet"),
  33914. default: true
  33915. },
  33916. ]
  33917. ))
  33918. characterMakers.push(() => makeCharacter(
  33919. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33920. {
  33921. front: {
  33922. height: math.unit(140, "cm"),
  33923. weight: math.unit(45, "kg"),
  33924. name: "Front",
  33925. image: {
  33926. source: "./media/characters/tayra-white/front.svg",
  33927. extra: 2229/2192,
  33928. bottom: 75/2304
  33929. }
  33930. },
  33931. },
  33932. [
  33933. {
  33934. name: "Normal",
  33935. height: math.unit(140, "cm"),
  33936. default: true
  33937. },
  33938. ]
  33939. ))
  33940. characterMakers.push(() => makeCharacter(
  33941. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33942. {
  33943. front: {
  33944. height: math.unit(4 + 5/12, "feet"),
  33945. name: "Front",
  33946. image: {
  33947. source: "./media/characters/scoop/front.svg",
  33948. extra: 1257/1136,
  33949. bottom: 69/1326
  33950. }
  33951. },
  33952. back: {
  33953. height: math.unit(4 + 5/12, "feet"),
  33954. name: "Back",
  33955. image: {
  33956. source: "./media/characters/scoop/back.svg",
  33957. extra: 1321/1152,
  33958. bottom: 32/1353
  33959. }
  33960. },
  33961. maw: {
  33962. height: math.unit(0.68, "feet"),
  33963. name: "Maw",
  33964. image: {
  33965. source: "./media/characters/scoop/maw.svg"
  33966. }
  33967. },
  33968. },
  33969. [
  33970. {
  33971. name: "Really Small",
  33972. height: math.unit(1, "mm")
  33973. },
  33974. {
  33975. name: "Micro",
  33976. height: math.unit(1, "inch")
  33977. },
  33978. {
  33979. name: "Normal",
  33980. height: math.unit(4 + 5/12, "feet"),
  33981. default: true
  33982. },
  33983. {
  33984. name: "Macro",
  33985. height: math.unit(200, "feet")
  33986. },
  33987. {
  33988. name: "Megamacro",
  33989. height: math.unit(3240, "feet")
  33990. },
  33991. {
  33992. name: "Teramacro",
  33993. height: math.unit(2500, "miles")
  33994. },
  33995. ]
  33996. ))
  33997. characterMakers.push(() => makeCharacter(
  33998. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33999. {
  34000. front: {
  34001. height: math.unit(15 + 7/12, "feet"),
  34002. weight: math.unit(1150, "tons"),
  34003. name: "Front",
  34004. image: {
  34005. source: "./media/characters/saphinara/front.svg",
  34006. extra: 1837/1643,
  34007. bottom: 84/1921
  34008. },
  34009. form: "normal",
  34010. default: true
  34011. },
  34012. side: {
  34013. height: math.unit(15 + 7/12, "feet"),
  34014. weight: math.unit(1150, "tons"),
  34015. name: "Side",
  34016. image: {
  34017. source: "./media/characters/saphinara/side.svg",
  34018. extra: 605/547,
  34019. bottom: 6/611
  34020. },
  34021. form: "normal"
  34022. },
  34023. back: {
  34024. height: math.unit(15 + 7/12, "feet"),
  34025. weight: math.unit(1150, "tons"),
  34026. name: "Back",
  34027. image: {
  34028. source: "./media/characters/saphinara/back.svg",
  34029. extra: 591/531,
  34030. bottom: 13/604
  34031. },
  34032. form: "normal"
  34033. },
  34034. frontTail: {
  34035. height: math.unit(15 + 7/12, "feet"),
  34036. weight: math.unit(1150, "tons"),
  34037. name: "Front (Full Tail)",
  34038. image: {
  34039. source: "./media/characters/saphinara/front-tail.svg",
  34040. extra: 2256/1630,
  34041. bottom: 261/2517
  34042. },
  34043. form: "normal"
  34044. },
  34045. insides: {
  34046. height: math.unit(11.92, "feet"),
  34047. name: "Insides",
  34048. image: {
  34049. source: "./media/characters/saphinara/insides.svg"
  34050. },
  34051. form: "normal"
  34052. },
  34053. head: {
  34054. height: math.unit(4.17, "feet"),
  34055. name: "Head",
  34056. image: {
  34057. source: "./media/characters/saphinara/head.svg"
  34058. },
  34059. form: "normal"
  34060. },
  34061. tongue: {
  34062. height: math.unit(4.60, "feet"),
  34063. name: "Tongue",
  34064. image: {
  34065. source: "./media/characters/saphinara/tongue.svg"
  34066. },
  34067. form: "normal"
  34068. },
  34069. headEnraged: {
  34070. height: math.unit(5.55, "feet"),
  34071. name: "Head (Enraged)",
  34072. image: {
  34073. source: "./media/characters/saphinara/head-enraged.svg"
  34074. },
  34075. form: "normal"
  34076. },
  34077. wings: {
  34078. height: math.unit(11.95, "feet"),
  34079. name: "Wings",
  34080. image: {
  34081. source: "./media/characters/saphinara/wings.svg"
  34082. },
  34083. form: "normal"
  34084. },
  34085. feathers: {
  34086. height: math.unit(8.92, "feet"),
  34087. name: "Feathers",
  34088. image: {
  34089. source: "./media/characters/saphinara/feathers.svg"
  34090. },
  34091. form: "normal"
  34092. },
  34093. shackles: {
  34094. height: math.unit(2, "feet"),
  34095. name: "Shackles",
  34096. image: {
  34097. source: "./media/characters/saphinara/shackles.svg"
  34098. },
  34099. form: "normal"
  34100. },
  34101. eyes: {
  34102. height: math.unit(1.331, "feet"),
  34103. name: "Eyes",
  34104. image: {
  34105. source: "./media/characters/saphinara/eyes.svg"
  34106. },
  34107. form: "normal"
  34108. },
  34109. eyesEnraged: {
  34110. height: math.unit(1.331, "feet"),
  34111. name: "Eyes (Enraged)",
  34112. image: {
  34113. source: "./media/characters/saphinara/eyes-enraged.svg"
  34114. },
  34115. form: "normal"
  34116. },
  34117. trueFormSide: {
  34118. height: math.unit(200, "feet"),
  34119. weight: math.unit(1e7, "tons"),
  34120. name: "Side",
  34121. image: {
  34122. source: "./media/characters/saphinara/true-form-side.svg",
  34123. extra: 1399/770,
  34124. bottom: 97/1496
  34125. },
  34126. form: "true-form",
  34127. default: true
  34128. },
  34129. trueFormMaw: {
  34130. height: math.unit(71.5, "feet"),
  34131. name: "Maw",
  34132. image: {
  34133. source: "./media/characters/saphinara/true-form-maw.svg",
  34134. extra: 2302/1453,
  34135. bottom: 0/2302
  34136. },
  34137. form: "true-form"
  34138. },
  34139. },
  34140. [
  34141. {
  34142. name: "Normal",
  34143. height: math.unit(15 + 7/12, "feet"),
  34144. default: true,
  34145. form: "normal"
  34146. },
  34147. {
  34148. name: "Angry",
  34149. height: math.unit(30 + 6/12, "feet"),
  34150. form: "normal"
  34151. },
  34152. {
  34153. name: "Enraged",
  34154. height: math.unit(102 + 1/12, "feet"),
  34155. form: "normal"
  34156. },
  34157. {
  34158. name: "True",
  34159. height: math.unit(200, "feet"),
  34160. default: true,
  34161. form: "true-form"
  34162. }
  34163. ],
  34164. {
  34165. "normal": {
  34166. name: "Normal",
  34167. default: true
  34168. },
  34169. "true-form": {
  34170. name: "True Form"
  34171. }
  34172. }
  34173. ))
  34174. characterMakers.push(() => makeCharacter(
  34175. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34176. {
  34177. front: {
  34178. height: math.unit(6 + 8/12, "feet"),
  34179. weight: math.unit(300, "lb"),
  34180. name: "Front",
  34181. image: {
  34182. source: "./media/characters/jrain/front.svg",
  34183. extra: 3039/2865,
  34184. bottom: 399/3438
  34185. }
  34186. },
  34187. back: {
  34188. height: math.unit(6 + 8/12, "feet"),
  34189. weight: math.unit(300, "lb"),
  34190. name: "Back",
  34191. image: {
  34192. source: "./media/characters/jrain/back.svg",
  34193. extra: 3089/2938,
  34194. bottom: 172/3261
  34195. }
  34196. },
  34197. head: {
  34198. height: math.unit(2.14, "feet"),
  34199. name: "Head",
  34200. image: {
  34201. source: "./media/characters/jrain/head.svg"
  34202. }
  34203. },
  34204. maw: {
  34205. height: math.unit(1.77, "feet"),
  34206. name: "Maw",
  34207. image: {
  34208. source: "./media/characters/jrain/maw.svg"
  34209. }
  34210. },
  34211. leftHand: {
  34212. height: math.unit(1.1, "feet"),
  34213. name: "Left Hand",
  34214. image: {
  34215. source: "./media/characters/jrain/left-hand.svg"
  34216. }
  34217. },
  34218. rightHand: {
  34219. height: math.unit(1.1, "feet"),
  34220. name: "Right Hand",
  34221. image: {
  34222. source: "./media/characters/jrain/right-hand.svg"
  34223. }
  34224. },
  34225. eye: {
  34226. height: math.unit(0.35, "feet"),
  34227. name: "Eye",
  34228. image: {
  34229. source: "./media/characters/jrain/eye.svg"
  34230. }
  34231. },
  34232. },
  34233. [
  34234. {
  34235. name: "Normal",
  34236. height: math.unit(6 + 8/12, "feet"),
  34237. default: true
  34238. },
  34239. {
  34240. name: "Casually Large",
  34241. height: math.unit(25, "feet")
  34242. },
  34243. {
  34244. name: "Giant",
  34245. height: math.unit(100, "feet")
  34246. },
  34247. {
  34248. name: "Kaiju",
  34249. height: math.unit(300, "feet")
  34250. },
  34251. ]
  34252. ))
  34253. characterMakers.push(() => makeCharacter(
  34254. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34255. {
  34256. dragon: {
  34257. height: math.unit(5, "meters"),
  34258. name: "Dragon",
  34259. image: {
  34260. source: "./media/characters/sabrina/dragon.svg",
  34261. extra: 3670 / 2365,
  34262. bottom: 333 / 4003
  34263. }
  34264. },
  34265. gryphon: {
  34266. height: math.unit(3, "meters"),
  34267. name: "Gryphon",
  34268. image: {
  34269. source: "./media/characters/sabrina/gryphon.svg",
  34270. extra: 1576 / 945,
  34271. bottom: 71 / 1647
  34272. }
  34273. },
  34274. snake: {
  34275. height: math.unit(12, "meters"),
  34276. name: "Snake",
  34277. image: {
  34278. source: "./media/characters/sabrina/snake.svg",
  34279. extra: 1758 / 1320,
  34280. bottom: 186 / 1944
  34281. }
  34282. },
  34283. collar: {
  34284. height: math.unit(1.86, "meters"),
  34285. name: "Collar",
  34286. image: {
  34287. source: "./media/characters/sabrina/collar.svg"
  34288. }
  34289. },
  34290. eye: {
  34291. height: math.unit(0.53, "meters"),
  34292. name: "Eye",
  34293. image: {
  34294. source: "./media/characters/sabrina/eye.svg"
  34295. }
  34296. },
  34297. foot: {
  34298. height: math.unit(1.86, "meters"),
  34299. name: "Foot",
  34300. image: {
  34301. source: "./media/characters/sabrina/foot.svg"
  34302. }
  34303. },
  34304. hand: {
  34305. height: math.unit(1.32, "meters"),
  34306. name: "Hand",
  34307. image: {
  34308. source: "./media/characters/sabrina/hand.svg"
  34309. }
  34310. },
  34311. head: {
  34312. height: math.unit(2.44, "meters"),
  34313. name: "Head",
  34314. image: {
  34315. source: "./media/characters/sabrina/head.svg"
  34316. }
  34317. },
  34318. headAngry: {
  34319. height: math.unit(2.44, "meters"),
  34320. name: "Head (Angry))",
  34321. image: {
  34322. source: "./media/characters/sabrina/head-angry.svg"
  34323. }
  34324. },
  34325. maw: {
  34326. height: math.unit(1.65, "meters"),
  34327. name: "Maw",
  34328. image: {
  34329. source: "./media/characters/sabrina/maw.svg"
  34330. }
  34331. },
  34332. spikes: {
  34333. height: math.unit(1.69, "meters"),
  34334. name: "Spikes",
  34335. image: {
  34336. source: "./media/characters/sabrina/spikes.svg"
  34337. }
  34338. },
  34339. stomach: {
  34340. height: math.unit(1.15, "meters"),
  34341. name: "Stomach",
  34342. image: {
  34343. source: "./media/characters/sabrina/stomach.svg"
  34344. }
  34345. },
  34346. tongue: {
  34347. height: math.unit(1.27, "meters"),
  34348. name: "Tongue",
  34349. image: {
  34350. source: "./media/characters/sabrina/tongue.svg"
  34351. }
  34352. },
  34353. wingDorsal: {
  34354. height: math.unit(4.85, "meters"),
  34355. name: "Wing (Dorsal)",
  34356. image: {
  34357. source: "./media/characters/sabrina/wing-dorsal.svg"
  34358. }
  34359. },
  34360. wingVentral: {
  34361. height: math.unit(4.85, "meters"),
  34362. name: "Wing (Ventral)",
  34363. image: {
  34364. source: "./media/characters/sabrina/wing-ventral.svg"
  34365. }
  34366. },
  34367. },
  34368. [
  34369. {
  34370. name: "Normal",
  34371. height: math.unit(5, "meters"),
  34372. default: true
  34373. },
  34374. ]
  34375. ))
  34376. characterMakers.push(() => makeCharacter(
  34377. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34378. {
  34379. frontMaid: {
  34380. height: math.unit(5 + 5/12, "feet"),
  34381. weight: math.unit(130, "lb"),
  34382. name: "Front (Maid)",
  34383. image: {
  34384. source: "./media/characters/midnight-tales/front-maid.svg",
  34385. extra: 489/454,
  34386. bottom: 61/550
  34387. }
  34388. },
  34389. frontFormal: {
  34390. height: math.unit(5 + 5/12, "feet"),
  34391. weight: math.unit(130, "lb"),
  34392. name: "Front (Formal)",
  34393. image: {
  34394. source: "./media/characters/midnight-tales/front-formal.svg",
  34395. extra: 489/454,
  34396. bottom: 61/550
  34397. }
  34398. },
  34399. back: {
  34400. height: math.unit(5 + 5/12, "feet"),
  34401. weight: math.unit(130, "lb"),
  34402. name: "Back",
  34403. image: {
  34404. source: "./media/characters/midnight-tales/back.svg",
  34405. extra: 498/456,
  34406. bottom: 33/531
  34407. }
  34408. },
  34409. frontBeast: {
  34410. height: math.unit(40, "feet"),
  34411. weight: math.unit(64000, "lb"),
  34412. name: "Front (Beast)",
  34413. image: {
  34414. source: "./media/characters/midnight-tales/front-beast.svg",
  34415. extra: 927/860,
  34416. bottom: 53/980
  34417. }
  34418. },
  34419. backBeast: {
  34420. height: math.unit(40, "feet"),
  34421. weight: math.unit(64000, "lb"),
  34422. name: "Back (Beast)",
  34423. image: {
  34424. source: "./media/characters/midnight-tales/back-beast.svg",
  34425. extra: 929/855,
  34426. bottom: 16/945
  34427. }
  34428. },
  34429. footBeast: {
  34430. height: math.unit(6.7, "feet"),
  34431. name: "Foot (Beast)",
  34432. image: {
  34433. source: "./media/characters/midnight-tales/foot-beast.svg"
  34434. }
  34435. },
  34436. headBeast: {
  34437. height: math.unit(8, "feet"),
  34438. name: "Head (Beast)",
  34439. image: {
  34440. source: "./media/characters/midnight-tales/head-beast.svg"
  34441. }
  34442. },
  34443. },
  34444. [
  34445. {
  34446. name: "Normal",
  34447. height: math.unit(5 + 5 / 12, "feet"),
  34448. default: true
  34449. },
  34450. {
  34451. name: "Macro",
  34452. height: math.unit(25, "feet")
  34453. },
  34454. ]
  34455. ))
  34456. characterMakers.push(() => makeCharacter(
  34457. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34458. {
  34459. front: {
  34460. height: math.unit(5 + 10/12, "feet"),
  34461. name: "Front",
  34462. image: {
  34463. source: "./media/characters/argon/front.svg",
  34464. extra: 2009/1935,
  34465. bottom: 118/2127
  34466. }
  34467. },
  34468. back: {
  34469. height: math.unit(5 + 10/12, "feet"),
  34470. name: "Back",
  34471. image: {
  34472. source: "./media/characters/argon/back.svg",
  34473. extra: 2047/1992,
  34474. bottom: 20/2067
  34475. }
  34476. },
  34477. frontDressed: {
  34478. height: math.unit(5 + 10/12, "feet"),
  34479. name: "Front (Dressed)",
  34480. image: {
  34481. source: "./media/characters/argon/front-dressed.svg",
  34482. extra: 2009/1935,
  34483. bottom: 118/2127
  34484. }
  34485. },
  34486. },
  34487. [
  34488. {
  34489. name: "Normal",
  34490. height: math.unit(5 + 10/12, "feet"),
  34491. default: true
  34492. },
  34493. ]
  34494. ))
  34495. characterMakers.push(() => makeCharacter(
  34496. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34497. {
  34498. front: {
  34499. height: math.unit(8 + 6/12, "feet"),
  34500. weight: math.unit(1150, "lb"),
  34501. name: "Front",
  34502. image: {
  34503. source: "./media/characters/kichi/front.svg",
  34504. extra: 1267/1164,
  34505. bottom: 61/1328
  34506. }
  34507. },
  34508. back: {
  34509. height: math.unit(8 + 6/12, "feet"),
  34510. weight: math.unit(1150, "lb"),
  34511. name: "Back",
  34512. image: {
  34513. source: "./media/characters/kichi/back.svg",
  34514. extra: 1273/1166,
  34515. bottom: 33/1306
  34516. }
  34517. },
  34518. },
  34519. [
  34520. {
  34521. name: "Normal",
  34522. height: math.unit(8 + 6/12, "feet"),
  34523. default: true
  34524. },
  34525. ]
  34526. ))
  34527. characterMakers.push(() => makeCharacter(
  34528. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34529. {
  34530. front: {
  34531. height: math.unit(6, "feet"),
  34532. weight: math.unit(210, "lb"),
  34533. name: "Front",
  34534. image: {
  34535. source: "./media/characters/manetel-greyscale/front.svg",
  34536. extra: 350/312,
  34537. bottom: 8/358
  34538. }
  34539. },
  34540. },
  34541. [
  34542. {
  34543. name: "Micro",
  34544. height: math.unit(2, "inches")
  34545. },
  34546. {
  34547. name: "Normal",
  34548. height: math.unit(6, "feet"),
  34549. default: true
  34550. },
  34551. {
  34552. name: "Minimacro",
  34553. height: math.unit(17, "feet")
  34554. },
  34555. {
  34556. name: "Macro",
  34557. height: math.unit(117, "feet")
  34558. },
  34559. ]
  34560. ))
  34561. characterMakers.push(() => makeCharacter(
  34562. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34563. {
  34564. side: {
  34565. height: math.unit(5 + 1/12, "feet"),
  34566. weight: math.unit(418, "lb"),
  34567. name: "Side",
  34568. image: {
  34569. source: "./media/characters/softpurr/side.svg",
  34570. extra: 1993/1945,
  34571. bottom: 134/2127
  34572. }
  34573. },
  34574. front: {
  34575. height: math.unit(5 + 1/12, "feet"),
  34576. weight: math.unit(418, "lb"),
  34577. name: "Front",
  34578. image: {
  34579. source: "./media/characters/softpurr/front.svg",
  34580. extra: 1950/1856,
  34581. bottom: 174/2124
  34582. }
  34583. },
  34584. paw: {
  34585. height: math.unit(1, "feet"),
  34586. name: "Paw",
  34587. image: {
  34588. source: "./media/characters/softpurr/paw.svg"
  34589. }
  34590. },
  34591. },
  34592. [
  34593. {
  34594. name: "Normal",
  34595. height: math.unit(5 + 1/12, "feet"),
  34596. default: true
  34597. },
  34598. ]
  34599. ))
  34600. characterMakers.push(() => makeCharacter(
  34601. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34602. {
  34603. front: {
  34604. height: math.unit(260, "meters"),
  34605. name: "Front",
  34606. image: {
  34607. source: "./media/characters/anahita/front.svg",
  34608. extra: 665/635,
  34609. bottom: 89/754
  34610. }
  34611. },
  34612. },
  34613. [
  34614. {
  34615. name: "Macro",
  34616. height: math.unit(260, "meters"),
  34617. default: true
  34618. },
  34619. ]
  34620. ))
  34621. characterMakers.push(() => makeCharacter(
  34622. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34623. {
  34624. front: {
  34625. height: math.unit(4 + 10/12, "feet"),
  34626. weight: math.unit(160, "lb"),
  34627. name: "Front",
  34628. image: {
  34629. source: "./media/characters/chip-mouse/front.svg",
  34630. extra: 3528/3408,
  34631. bottom: 0/3528
  34632. }
  34633. },
  34634. frontNsfw: {
  34635. height: math.unit(4 + 10/12, "feet"),
  34636. weight: math.unit(160, "lb"),
  34637. name: "Front (NSFW)",
  34638. image: {
  34639. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34640. extra: 3528/3408,
  34641. bottom: 0/3528
  34642. }
  34643. },
  34644. },
  34645. [
  34646. {
  34647. name: "Normal",
  34648. height: math.unit(4 + 10/12, "feet"),
  34649. default: true
  34650. },
  34651. ]
  34652. ))
  34653. characterMakers.push(() => makeCharacter(
  34654. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34655. {
  34656. side: {
  34657. height: math.unit(10, "feet"),
  34658. weight: math.unit(14000, "lb"),
  34659. name: "Side",
  34660. image: {
  34661. source: "./media/characters/kremm/side.svg",
  34662. extra: 1390/1053,
  34663. bottom: 90/1480
  34664. }
  34665. },
  34666. gut: {
  34667. height: math.unit(5.8, "feet"),
  34668. name: "Gut",
  34669. image: {
  34670. source: "./media/characters/kremm/gut.svg"
  34671. }
  34672. },
  34673. ass: {
  34674. height: math.unit(6.1, "feet"),
  34675. name: "Ass",
  34676. image: {
  34677. source: "./media/characters/kremm/ass.svg"
  34678. }
  34679. },
  34680. jaws: {
  34681. height: math.unit(2.2, "feet"),
  34682. name: "Jaws",
  34683. image: {
  34684. source: "./media/characters/kremm/jaws.svg"
  34685. }
  34686. },
  34687. dick: {
  34688. height: math.unit(4.26, "feet"),
  34689. name: "Dick",
  34690. image: {
  34691. source: "./media/characters/kremm/dick.svg"
  34692. }
  34693. },
  34694. },
  34695. [
  34696. {
  34697. name: "Normal",
  34698. height: math.unit(10, "feet"),
  34699. default: true
  34700. },
  34701. ]
  34702. ))
  34703. characterMakers.push(() => makeCharacter(
  34704. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34705. {
  34706. front: {
  34707. height: math.unit(30, "stories"),
  34708. name: "Front",
  34709. image: {
  34710. source: "./media/characters/kai/front.svg",
  34711. extra: 1892/1718,
  34712. bottom: 162/2054
  34713. }
  34714. },
  34715. },
  34716. [
  34717. {
  34718. name: "Macro",
  34719. height: math.unit(30, "stories"),
  34720. default: true
  34721. },
  34722. ]
  34723. ))
  34724. characterMakers.push(() => makeCharacter(
  34725. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34726. {
  34727. front: {
  34728. height: math.unit(6 + 4/12, "feet"),
  34729. weight: math.unit(145, "lb"),
  34730. name: "Front",
  34731. image: {
  34732. source: "./media/characters/sykes/front.svg",
  34733. extra: 1321 / 1187,
  34734. bottom: 66 / 1387
  34735. }
  34736. },
  34737. back: {
  34738. height: math.unit(6 + 4/12, "feet"),
  34739. weight: math.unit(145, "lb"),
  34740. name: "Back",
  34741. image: {
  34742. source: "./media/characters/sykes/back.svg",
  34743. extra: 1326/1181,
  34744. bottom: 31/1357
  34745. }
  34746. },
  34747. traditionalOutfit: {
  34748. height: math.unit(6 + 4/12, "feet"),
  34749. weight: math.unit(145, "lb"),
  34750. name: "Traditional Outfit",
  34751. image: {
  34752. source: "./media/characters/sykes/traditional-outfit.svg",
  34753. extra: 1321 / 1187,
  34754. bottom: 66 / 1387
  34755. }
  34756. },
  34757. adventureOutfit: {
  34758. height: math.unit(6 + 4/12, "feet"),
  34759. weight: math.unit(145, "lb"),
  34760. name: "Adventure Outfit",
  34761. image: {
  34762. source: "./media/characters/sykes/adventure-outfit.svg",
  34763. extra: 1321 / 1187,
  34764. bottom: 66 / 1387
  34765. }
  34766. },
  34767. handLeft: {
  34768. height: math.unit(0.9, "feet"),
  34769. name: "Hand (Left)",
  34770. image: {
  34771. source: "./media/characters/sykes/hand-left.svg"
  34772. }
  34773. },
  34774. handRight: {
  34775. height: math.unit(0.839, "feet"),
  34776. name: "Hand (Right)",
  34777. image: {
  34778. source: "./media/characters/sykes/hand-right.svg"
  34779. }
  34780. },
  34781. leftFoot: {
  34782. height: math.unit(1.2, "feet"),
  34783. name: "Foot (Left)",
  34784. image: {
  34785. source: "./media/characters/sykes/foot-left.svg"
  34786. }
  34787. },
  34788. rightFoot: {
  34789. height: math.unit(1.2, "feet"),
  34790. name: "Foot (Right)",
  34791. image: {
  34792. source: "./media/characters/sykes/foot-right.svg"
  34793. }
  34794. },
  34795. maw: {
  34796. height: math.unit(1.93, "feet"),
  34797. name: "Maw",
  34798. image: {
  34799. source: "./media/characters/sykes/maw.svg"
  34800. }
  34801. },
  34802. teeth: {
  34803. height: math.unit(0.51, "feet"),
  34804. name: "Teeth",
  34805. image: {
  34806. source: "./media/characters/sykes/teeth.svg"
  34807. }
  34808. },
  34809. tongue: {
  34810. height: math.unit(2.13, "feet"),
  34811. name: "Tongue",
  34812. image: {
  34813. source: "./media/characters/sykes/tongue.svg"
  34814. }
  34815. },
  34816. uvula: {
  34817. height: math.unit(0.16, "feet"),
  34818. name: "Uvula",
  34819. image: {
  34820. source: "./media/characters/sykes/uvula.svg"
  34821. }
  34822. },
  34823. collar: {
  34824. height: math.unit(0.287, "feet"),
  34825. name: "Collar",
  34826. image: {
  34827. source: "./media/characters/sykes/collar.svg"
  34828. }
  34829. },
  34830. tail: {
  34831. height: math.unit(3.8, "feet"),
  34832. name: "Tail",
  34833. image: {
  34834. source: "./media/characters/sykes/tail.svg"
  34835. }
  34836. },
  34837. },
  34838. [
  34839. {
  34840. name: "Shrunken",
  34841. height: math.unit(5, "inches")
  34842. },
  34843. {
  34844. name: "Normal",
  34845. height: math.unit(6 + 4 / 12, "feet"),
  34846. default: true
  34847. },
  34848. {
  34849. name: "Big",
  34850. height: math.unit(15, "feet")
  34851. },
  34852. ]
  34853. ))
  34854. characterMakers.push(() => makeCharacter(
  34855. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34856. {
  34857. front: {
  34858. height: math.unit(5 + 8/12, "feet"),
  34859. weight: math.unit(190, "lb"),
  34860. name: "Front",
  34861. image: {
  34862. source: "./media/characters/oven-otter/front.svg",
  34863. extra: 1809/1740,
  34864. bottom: 181/1990
  34865. }
  34866. },
  34867. back: {
  34868. height: math.unit(5 + 8/12, "feet"),
  34869. weight: math.unit(190, "lb"),
  34870. name: "Back",
  34871. image: {
  34872. source: "./media/characters/oven-otter/back.svg",
  34873. extra: 1709/1635,
  34874. bottom: 118/1827
  34875. }
  34876. },
  34877. hand: {
  34878. height: math.unit(1.07, "feet"),
  34879. name: "Hand",
  34880. image: {
  34881. source: "./media/characters/oven-otter/hand.svg"
  34882. }
  34883. },
  34884. beans: {
  34885. height: math.unit(1.74, "feet"),
  34886. name: "Beans",
  34887. image: {
  34888. source: "./media/characters/oven-otter/beans.svg"
  34889. }
  34890. },
  34891. },
  34892. [
  34893. {
  34894. name: "Micro",
  34895. height: math.unit(0.5, "inches")
  34896. },
  34897. {
  34898. name: "Normal",
  34899. height: math.unit(5 + 8/12, "feet"),
  34900. default: true
  34901. },
  34902. {
  34903. name: "Macro",
  34904. height: math.unit(250, "feet")
  34905. },
  34906. {
  34907. name: "Really High",
  34908. height: math.unit(420, "feet")
  34909. },
  34910. ]
  34911. ))
  34912. characterMakers.push(() => makeCharacter(
  34913. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34914. {
  34915. front: {
  34916. height: math.unit(5, "meters"),
  34917. weight: math.unit(292000000000000, "kg"),
  34918. name: "Front",
  34919. image: {
  34920. source: "./media/characters/devourer/front.svg",
  34921. extra: 1800/1733,
  34922. bottom: 211/2011
  34923. }
  34924. },
  34925. maw: {
  34926. height: math.unit(1.1, "meter"),
  34927. name: "Maw",
  34928. image: {
  34929. source: "./media/characters/devourer/maw.svg"
  34930. }
  34931. },
  34932. },
  34933. [
  34934. {
  34935. name: "Small",
  34936. height: math.unit(3, "meters")
  34937. },
  34938. {
  34939. name: "Large",
  34940. height: math.unit(5, "meters"),
  34941. default: true
  34942. },
  34943. ]
  34944. ))
  34945. characterMakers.push(() => makeCharacter(
  34946. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34947. {
  34948. front: {
  34949. height: math.unit(6, "feet"),
  34950. weight: math.unit(400, "lb"),
  34951. name: "Front",
  34952. image: {
  34953. source: "./media/characters/ellarby/front.svg",
  34954. extra: 1909/1763,
  34955. bottom: 80/1989
  34956. }
  34957. },
  34958. back: {
  34959. height: math.unit(6, "feet"),
  34960. weight: math.unit(400, "lb"),
  34961. name: "Back",
  34962. image: {
  34963. source: "./media/characters/ellarby/back.svg",
  34964. extra: 1914/1784,
  34965. bottom: 172/2086
  34966. }
  34967. },
  34968. },
  34969. [
  34970. {
  34971. name: "Mischief",
  34972. height: math.unit(18, "inches")
  34973. },
  34974. {
  34975. name: "Trouble",
  34976. height: math.unit(12, "feet")
  34977. },
  34978. {
  34979. name: "Havoc",
  34980. height: math.unit(200, "feet"),
  34981. default: true
  34982. },
  34983. {
  34984. name: "Pandemonium",
  34985. height: math.unit(1, "mile")
  34986. },
  34987. {
  34988. name: "Catastrophe",
  34989. height: math.unit(100, "miles")
  34990. },
  34991. ]
  34992. ))
  34993. characterMakers.push(() => makeCharacter(
  34994. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34995. {
  34996. front: {
  34997. height: math.unit(4.7, "meters"),
  34998. weight: math.unit(6500, "kg"),
  34999. name: "Front",
  35000. image: {
  35001. source: "./media/characters/vex/front.svg",
  35002. extra: 1288/1140,
  35003. bottom: 100/1388
  35004. }
  35005. },
  35006. },
  35007. [
  35008. {
  35009. name: "Normal",
  35010. height: math.unit(4.7, "meters"),
  35011. default: true
  35012. },
  35013. ]
  35014. ))
  35015. characterMakers.push(() => makeCharacter(
  35016. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35017. {
  35018. normal: {
  35019. height: math.unit(6, "feet"),
  35020. weight: math.unit(350, "lb"),
  35021. name: "Normal",
  35022. image: {
  35023. source: "./media/characters/teshy/normal.svg",
  35024. extra: 1795/1735,
  35025. bottom: 16/1811
  35026. }
  35027. },
  35028. monsterFront: {
  35029. height: math.unit(12, "feet"),
  35030. weight: math.unit(4700, "lb"),
  35031. name: "Monster (Front)",
  35032. image: {
  35033. source: "./media/characters/teshy/monster-front.svg",
  35034. extra: 2042/2034,
  35035. bottom: 128/2170
  35036. }
  35037. },
  35038. monsterSide: {
  35039. height: math.unit(12, "feet"),
  35040. weight: math.unit(4700, "lb"),
  35041. name: "Monster (Side)",
  35042. image: {
  35043. source: "./media/characters/teshy/monster-side.svg",
  35044. extra: 2067/2056,
  35045. bottom: 70/2137
  35046. }
  35047. },
  35048. monsterBack: {
  35049. height: math.unit(12, "feet"),
  35050. weight: math.unit(4700, "lb"),
  35051. name: "Monster (Back)",
  35052. image: {
  35053. source: "./media/characters/teshy/monster-back.svg",
  35054. extra: 1921/1914,
  35055. bottom: 171/2092
  35056. }
  35057. },
  35058. },
  35059. [
  35060. {
  35061. name: "Normal",
  35062. height: math.unit(6, "feet"),
  35063. default: true
  35064. },
  35065. ]
  35066. ))
  35067. characterMakers.push(() => makeCharacter(
  35068. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35069. {
  35070. front: {
  35071. height: math.unit(6, "feet"),
  35072. name: "Front",
  35073. image: {
  35074. source: "./media/characters/ramey/front.svg",
  35075. extra: 790/787,
  35076. bottom: 27/817
  35077. }
  35078. },
  35079. },
  35080. [
  35081. {
  35082. name: "Normal",
  35083. height: math.unit(6, "feet"),
  35084. default: true
  35085. },
  35086. ]
  35087. ))
  35088. characterMakers.push(() => makeCharacter(
  35089. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35090. {
  35091. front: {
  35092. height: math.unit(5 + 5/12, "feet"),
  35093. weight: math.unit(120, "lb"),
  35094. name: "Front",
  35095. image: {
  35096. source: "./media/characters/phirae/front.svg",
  35097. extra: 2491/2436,
  35098. bottom: 38/2529
  35099. }
  35100. },
  35101. },
  35102. [
  35103. {
  35104. name: "Normal",
  35105. height: math.unit(5 + 5/12, "feet"),
  35106. default: true
  35107. },
  35108. ]
  35109. ))
  35110. characterMakers.push(() => makeCharacter(
  35111. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35112. {
  35113. front: {
  35114. height: math.unit(5 + 3/12, "feet"),
  35115. name: "Front",
  35116. image: {
  35117. source: "./media/characters/stagglas/front.svg",
  35118. extra: 962/882,
  35119. bottom: 53/1015
  35120. }
  35121. },
  35122. feral: {
  35123. height: math.unit(335, "cm"),
  35124. name: "Feral",
  35125. image: {
  35126. source: "./media/characters/stagglas/feral.svg",
  35127. extra: 1732/1090,
  35128. bottom: 48/1780
  35129. }
  35130. },
  35131. },
  35132. [
  35133. {
  35134. name: "Normal",
  35135. height: math.unit(5 + 3/12, "feet"),
  35136. default: true
  35137. },
  35138. ]
  35139. ))
  35140. characterMakers.push(() => makeCharacter(
  35141. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35142. {
  35143. front: {
  35144. height: math.unit(5 + 4/12, "feet"),
  35145. weight: math.unit(145, "lb"),
  35146. name: "Front",
  35147. image: {
  35148. source: "./media/characters/starra/front.svg",
  35149. extra: 1790/1691,
  35150. bottom: 91/1881
  35151. }
  35152. },
  35153. },
  35154. [
  35155. {
  35156. name: "Normal",
  35157. height: math.unit(5 + 4/12, "feet"),
  35158. default: true
  35159. },
  35160. ]
  35161. ))
  35162. characterMakers.push(() => makeCharacter(
  35163. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35164. {
  35165. front: {
  35166. height: math.unit(2.2, "meters"),
  35167. name: "Front",
  35168. image: {
  35169. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35170. extra: 1194/1005,
  35171. bottom: 25/1219
  35172. }
  35173. },
  35174. },
  35175. [
  35176. {
  35177. name: "Normal",
  35178. height: math.unit(2.2, "meters"),
  35179. default: true
  35180. },
  35181. ]
  35182. ))
  35183. characterMakers.push(() => makeCharacter(
  35184. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35185. {
  35186. side: {
  35187. height: math.unit(8 + 2/12, "feet"),
  35188. weight: math.unit(1240, "lb"),
  35189. name: "Side",
  35190. image: {
  35191. source: "./media/characters/mika-valentine/side.svg",
  35192. extra: 2670/2501,
  35193. bottom: 250/2920
  35194. }
  35195. },
  35196. },
  35197. [
  35198. {
  35199. name: "Normal",
  35200. height: math.unit(8 + 2/12, "feet"),
  35201. default: true
  35202. },
  35203. ]
  35204. ))
  35205. characterMakers.push(() => makeCharacter(
  35206. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35207. {
  35208. front: {
  35209. height: math.unit(7 + 2/12, "feet"),
  35210. name: "Front",
  35211. image: {
  35212. source: "./media/characters/xoltol/front.svg",
  35213. extra: 2212/2124,
  35214. bottom: 84/2296
  35215. }
  35216. },
  35217. side: {
  35218. height: math.unit(7 + 2/12, "feet"),
  35219. name: "Side",
  35220. image: {
  35221. source: "./media/characters/xoltol/side.svg",
  35222. extra: 2273/2197,
  35223. bottom: 26/2299
  35224. }
  35225. },
  35226. hand: {
  35227. height: math.unit(2.5, "feet"),
  35228. name: "Hand",
  35229. image: {
  35230. source: "./media/characters/xoltol/hand.svg"
  35231. }
  35232. },
  35233. },
  35234. [
  35235. {
  35236. name: "Small-ish",
  35237. height: math.unit(5 + 11/12, "feet")
  35238. },
  35239. {
  35240. name: "Normal",
  35241. height: math.unit(7 + 2/12, "feet")
  35242. },
  35243. {
  35244. name: "\"Macro\"",
  35245. height: math.unit(14 + 9/12, "feet"),
  35246. default: true
  35247. },
  35248. {
  35249. name: "Alternate Height",
  35250. height: math.unit(20, "feet")
  35251. },
  35252. {
  35253. name: "Actually Macro",
  35254. height: math.unit(100, "feet")
  35255. },
  35256. ]
  35257. ))
  35258. characterMakers.push(() => makeCharacter(
  35259. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35260. {
  35261. front: {
  35262. height: math.unit(5 + 2/12, "feet"),
  35263. name: "Front",
  35264. image: {
  35265. source: "./media/characters/kotetsu-redwood/front.svg",
  35266. extra: 1053/942,
  35267. bottom: 60/1113
  35268. }
  35269. },
  35270. },
  35271. [
  35272. {
  35273. name: "Normal",
  35274. height: math.unit(5 + 2/12, "feet"),
  35275. default: true
  35276. },
  35277. ]
  35278. ))
  35279. characterMakers.push(() => makeCharacter(
  35280. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35281. {
  35282. front: {
  35283. height: math.unit(2.4, "meters"),
  35284. weight: math.unit(125, "kg"),
  35285. name: "Front",
  35286. image: {
  35287. source: "./media/characters/lilith/front.svg",
  35288. extra: 1590/1513,
  35289. bottom: 203/1793
  35290. }
  35291. },
  35292. },
  35293. [
  35294. {
  35295. name: "Humanoid",
  35296. height: math.unit(2.4, "meters")
  35297. },
  35298. {
  35299. name: "Normal",
  35300. height: math.unit(6, "meters"),
  35301. default: true
  35302. },
  35303. {
  35304. name: "Largest",
  35305. height: math.unit(55, "meters")
  35306. },
  35307. ]
  35308. ))
  35309. characterMakers.push(() => makeCharacter(
  35310. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35311. {
  35312. front: {
  35313. height: math.unit(8 + 4/12, "feet"),
  35314. weight: math.unit(535, "lb"),
  35315. name: "Front",
  35316. image: {
  35317. source: "./media/characters/beh'kah-bolger/front.svg",
  35318. extra: 1660/1603,
  35319. bottom: 37/1697
  35320. }
  35321. },
  35322. },
  35323. [
  35324. {
  35325. name: "Normal",
  35326. height: math.unit(8 + 4/12, "feet"),
  35327. default: true
  35328. },
  35329. {
  35330. name: "Kaiju",
  35331. height: math.unit(250, "feet")
  35332. },
  35333. {
  35334. name: "Still Growing",
  35335. height: math.unit(10, "miles")
  35336. },
  35337. {
  35338. name: "Continental",
  35339. height: math.unit(5000, "miles")
  35340. },
  35341. {
  35342. name: "Final Form",
  35343. height: math.unit(2500000, "miles")
  35344. },
  35345. ]
  35346. ))
  35347. characterMakers.push(() => makeCharacter(
  35348. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35349. {
  35350. front: {
  35351. height: math.unit(7 + 2/12, "feet"),
  35352. weight: math.unit(230, "kg"),
  35353. name: "Front",
  35354. image: {
  35355. source: "./media/characters/tatyana-milewska/front.svg",
  35356. extra: 1199/1150,
  35357. bottom: 86/1285
  35358. }
  35359. },
  35360. },
  35361. [
  35362. {
  35363. name: "Normal",
  35364. height: math.unit(7 + 2/12, "feet"),
  35365. default: true
  35366. },
  35367. {
  35368. name: "Big",
  35369. height: math.unit(12, "feet")
  35370. },
  35371. {
  35372. name: "Minimacro",
  35373. height: math.unit(20, "feet")
  35374. },
  35375. {
  35376. name: "Macro",
  35377. height: math.unit(120, "feet")
  35378. },
  35379. ]
  35380. ))
  35381. characterMakers.push(() => makeCharacter(
  35382. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35383. {
  35384. front: {
  35385. height: math.unit(7 + 8/12, "feet"),
  35386. weight: math.unit(152, "kg"),
  35387. name: "Front",
  35388. image: {
  35389. source: "./media/characters/helen-arri/front.svg",
  35390. extra: 440/423,
  35391. bottom: 14/454
  35392. }
  35393. },
  35394. back: {
  35395. height: math.unit(7 + 8/12, "feet"),
  35396. weight: math.unit(152, "kg"),
  35397. name: "Back",
  35398. image: {
  35399. source: "./media/characters/helen-arri/back.svg",
  35400. extra: 443/426,
  35401. bottom: 8/451
  35402. }
  35403. },
  35404. },
  35405. [
  35406. {
  35407. name: "Normal",
  35408. height: math.unit(7 + 8/12, "feet"),
  35409. default: true
  35410. },
  35411. {
  35412. name: "Big",
  35413. height: math.unit(14, "feet")
  35414. },
  35415. {
  35416. name: "Minimacro",
  35417. height: math.unit(24, "feet")
  35418. },
  35419. {
  35420. name: "Macro",
  35421. height: math.unit(140, "feet")
  35422. },
  35423. ]
  35424. ))
  35425. characterMakers.push(() => makeCharacter(
  35426. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35427. {
  35428. front: {
  35429. height: math.unit(6, "meters"),
  35430. name: "Front",
  35431. image: {
  35432. source: "./media/characters/ehanu-rehu/front.svg",
  35433. extra: 1800/1800,
  35434. bottom: 59/1859
  35435. }
  35436. },
  35437. },
  35438. [
  35439. {
  35440. name: "Normal",
  35441. height: math.unit(6, "meters"),
  35442. default: true
  35443. },
  35444. ]
  35445. ))
  35446. characterMakers.push(() => makeCharacter(
  35447. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35448. {
  35449. front: {
  35450. height: math.unit(7 + 3/12, "feet"),
  35451. name: "Front",
  35452. image: {
  35453. source: "./media/characters/renholder/front.svg",
  35454. extra: 3096/2960,
  35455. bottom: 250/3346
  35456. }
  35457. },
  35458. },
  35459. [
  35460. {
  35461. name: "Normal Bat",
  35462. height: math.unit(7 + 3/12, "feet"),
  35463. default: true
  35464. },
  35465. {
  35466. name: "Slightly Tall Bat",
  35467. height: math.unit(100, "feet")
  35468. },
  35469. {
  35470. name: "Big Bat",
  35471. height: math.unit(1000, "feet")
  35472. },
  35473. {
  35474. name: "City-Sized Bat",
  35475. height: math.unit(200000, "feet")
  35476. },
  35477. {
  35478. name: "Bigger Bat",
  35479. height: math.unit(10000, "miles")
  35480. },
  35481. {
  35482. name: "Solar Sized Bat",
  35483. height: math.unit(100, "AU")
  35484. },
  35485. {
  35486. name: "Galactic Bat",
  35487. height: math.unit(200000, "lightyears")
  35488. },
  35489. {
  35490. name: "Universally Known Bat",
  35491. height: math.unit(1, "universe")
  35492. },
  35493. ]
  35494. ))
  35495. characterMakers.push(() => makeCharacter(
  35496. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35497. {
  35498. front: {
  35499. height: math.unit(6 + 11/12, "feet"),
  35500. weight: math.unit(250, "lb"),
  35501. name: "Front",
  35502. image: {
  35503. source: "./media/characters/cookiecat/front.svg",
  35504. extra: 893/827,
  35505. bottom: 14/907
  35506. }
  35507. },
  35508. },
  35509. [
  35510. {
  35511. name: "Micro",
  35512. height: math.unit(3, "inches")
  35513. },
  35514. {
  35515. name: "Normal",
  35516. height: math.unit(6 + 11/12, "feet"),
  35517. default: true
  35518. },
  35519. {
  35520. name: "Macro",
  35521. height: math.unit(100, "feet")
  35522. },
  35523. {
  35524. name: "Macro+",
  35525. height: math.unit(404, "feet")
  35526. },
  35527. {
  35528. name: "Megamacro",
  35529. height: math.unit(165, "miles")
  35530. },
  35531. {
  35532. name: "Planetary",
  35533. height: math.unit(4600, "miles")
  35534. },
  35535. ]
  35536. ))
  35537. characterMakers.push(() => makeCharacter(
  35538. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35539. {
  35540. front: {
  35541. height: math.unit(10 + 3/12, "feet"),
  35542. weight: math.unit(1500, "lb"),
  35543. name: "Front",
  35544. image: {
  35545. source: "./media/characters/tux-kusanagi/front.svg",
  35546. extra: 944/840,
  35547. bottom: 39/983
  35548. }
  35549. },
  35550. back: {
  35551. height: math.unit(10 + 3/12, "feet"),
  35552. weight: math.unit(1500, "lb"),
  35553. name: "Back",
  35554. image: {
  35555. source: "./media/characters/tux-kusanagi/back.svg",
  35556. extra: 941/842,
  35557. bottom: 28/969
  35558. }
  35559. },
  35560. rump: {
  35561. height: math.unit(5.25, "feet"),
  35562. name: "Rump",
  35563. image: {
  35564. source: "./media/characters/tux-kusanagi/rump.svg"
  35565. }
  35566. },
  35567. beak: {
  35568. height: math.unit(1.54, "feet"),
  35569. name: "Beak",
  35570. image: {
  35571. source: "./media/characters/tux-kusanagi/beak.svg"
  35572. }
  35573. },
  35574. },
  35575. [
  35576. {
  35577. name: "Normal",
  35578. height: math.unit(10 + 3/12, "feet"),
  35579. default: true
  35580. },
  35581. ]
  35582. ))
  35583. characterMakers.push(() => makeCharacter(
  35584. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35585. {
  35586. front: {
  35587. height: math.unit(58, "feet"),
  35588. weight: math.unit(200, "tons"),
  35589. name: "Front",
  35590. image: {
  35591. source: "./media/characters/uzarmazari/front.svg",
  35592. extra: 1575/1455,
  35593. bottom: 152/1727
  35594. }
  35595. },
  35596. back: {
  35597. height: math.unit(58, "feet"),
  35598. weight: math.unit(200, "tons"),
  35599. name: "Back",
  35600. image: {
  35601. source: "./media/characters/uzarmazari/back.svg",
  35602. extra: 1585/1510,
  35603. bottom: 157/1742
  35604. }
  35605. },
  35606. head: {
  35607. height: math.unit(26, "feet"),
  35608. name: "Head",
  35609. image: {
  35610. source: "./media/characters/uzarmazari/head.svg"
  35611. }
  35612. },
  35613. },
  35614. [
  35615. {
  35616. name: "Normal",
  35617. height: math.unit(58, "feet"),
  35618. default: true
  35619. },
  35620. ]
  35621. ))
  35622. characterMakers.push(() => makeCharacter(
  35623. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35624. {
  35625. side: {
  35626. height: math.unit(15, "feet"),
  35627. name: "Side",
  35628. image: {
  35629. source: "./media/characters/akitu/side.svg",
  35630. extra: 1421/1321,
  35631. bottom: 157/1578
  35632. }
  35633. },
  35634. front: {
  35635. height: math.unit(15, "feet"),
  35636. name: "Front",
  35637. image: {
  35638. source: "./media/characters/akitu/front.svg",
  35639. extra: 1435/1326,
  35640. bottom: 232/1667
  35641. }
  35642. },
  35643. },
  35644. [
  35645. {
  35646. name: "Normal",
  35647. height: math.unit(15, "feet"),
  35648. default: true
  35649. },
  35650. ]
  35651. ))
  35652. characterMakers.push(() => makeCharacter(
  35653. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35654. {
  35655. front: {
  35656. height: math.unit(10 + 8/12, "feet"),
  35657. name: "Front",
  35658. image: {
  35659. source: "./media/characters/azalie-croixland/front.svg",
  35660. extra: 1972/1856,
  35661. bottom: 31/2003
  35662. }
  35663. },
  35664. },
  35665. [
  35666. {
  35667. name: "Original Height",
  35668. height: math.unit(5 + 4/12, "feet")
  35669. },
  35670. {
  35671. name: "Normal Height",
  35672. height: math.unit(10 + 8/12, "feet"),
  35673. default: true
  35674. },
  35675. ]
  35676. ))
  35677. characterMakers.push(() => makeCharacter(
  35678. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35679. {
  35680. side: {
  35681. height: math.unit(7 + 1/12, "feet"),
  35682. weight: math.unit(245, "lb"),
  35683. name: "Side",
  35684. image: {
  35685. source: "./media/characters/kavus-kazian/side.svg",
  35686. extra: 349/342,
  35687. bottom: 15/364
  35688. }
  35689. },
  35690. },
  35691. [
  35692. {
  35693. name: "Normal",
  35694. height: math.unit(7 + 1/12, "feet"),
  35695. default: true
  35696. },
  35697. ]
  35698. ))
  35699. characterMakers.push(() => makeCharacter(
  35700. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35701. {
  35702. normalFront: {
  35703. height: math.unit(5 + 11/12, "feet"),
  35704. name: "Front",
  35705. image: {
  35706. source: "./media/characters/moonlight-rose/normal-front.svg",
  35707. extra: 1980/1825,
  35708. bottom: 18/1998
  35709. },
  35710. form: "normal",
  35711. default: true
  35712. },
  35713. normalBack: {
  35714. height: math.unit(5 + 11/12, "feet"),
  35715. name: "Back",
  35716. image: {
  35717. source: "./media/characters/moonlight-rose/normal-back.svg",
  35718. extra: 2010/1839,
  35719. bottom: 10/2020
  35720. },
  35721. form: "normal"
  35722. },
  35723. demonFront: {
  35724. height: math.unit(1.5, "earths"),
  35725. name: "Front",
  35726. image: {
  35727. source: "./media/characters/moonlight-rose/demon.svg",
  35728. extra: 1400/1294,
  35729. bottom: 45/1445
  35730. },
  35731. form: "demon",
  35732. default: true
  35733. },
  35734. terraFront: {
  35735. height: math.unit(1.5, "earths"),
  35736. name: "Front",
  35737. image: {
  35738. source: "./media/characters/moonlight-rose/terra.svg"
  35739. },
  35740. form: "terra",
  35741. default: true
  35742. },
  35743. jupiterFront: {
  35744. height: math.unit(69911*2, "km"),
  35745. name: "Front",
  35746. image: {
  35747. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35748. extra: 1367/1286,
  35749. bottom: 55/1422
  35750. },
  35751. form: "jupiter",
  35752. default: true
  35753. },
  35754. neptuneFront: {
  35755. height: math.unit(24622*2, "feet"),
  35756. name: "Front",
  35757. image: {
  35758. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35759. extra: 1851/1712,
  35760. bottom: 0/1851
  35761. },
  35762. form: "neptune",
  35763. default: true
  35764. },
  35765. },
  35766. [
  35767. {
  35768. name: "\"Natural\" Height",
  35769. height: math.unit(5 + 11/12, "feet"),
  35770. form: "normal"
  35771. },
  35772. {
  35773. name: "Smallest comfortable size",
  35774. height: math.unit(40, "meters"),
  35775. form: "normal"
  35776. },
  35777. {
  35778. name: "Common size",
  35779. height: math.unit(50, "km"),
  35780. form: "normal",
  35781. default: true
  35782. },
  35783. {
  35784. name: "Normal",
  35785. height: math.unit(1.5, "earths"),
  35786. form: "demon",
  35787. default: true
  35788. },
  35789. {
  35790. name: "Universal",
  35791. height: math.unit(15, "universes"),
  35792. form: "demon"
  35793. },
  35794. {
  35795. name: "Earth",
  35796. height: math.unit(1.5, "earths"),
  35797. form: "terra",
  35798. default: true
  35799. },
  35800. {
  35801. name: "Super Earth",
  35802. height: math.unit(67.5, "earths"),
  35803. form: "terra"
  35804. },
  35805. {
  35806. name: "Doesn't fit in a solar system...",
  35807. height: math.unit(1, "galaxy"),
  35808. form: "terra"
  35809. },
  35810. {
  35811. name: "Saturn",
  35812. height: math.unit(58232*2, "km"),
  35813. form: "jupiter"
  35814. },
  35815. {
  35816. name: "Jupiter",
  35817. height: math.unit(69911*2, "km"),
  35818. form: "jupiter",
  35819. default: true
  35820. },
  35821. {
  35822. name: "HD 100546 b",
  35823. height: math.unit(482938, "km"),
  35824. form: "jupiter"
  35825. },
  35826. {
  35827. name: "Enceladus",
  35828. height: math.unit(513*2, "km"),
  35829. form: "neptune"
  35830. },
  35831. {
  35832. name: "Europe",
  35833. height: math.unit(1560*2, "km"),
  35834. form: "neptune"
  35835. },
  35836. {
  35837. name: "Neptune",
  35838. height: math.unit(24622*2, "km"),
  35839. form: "neptune",
  35840. default: true
  35841. },
  35842. {
  35843. name: "CoRoT-9b",
  35844. height: math.unit(75067*2, "km"),
  35845. form: "neptune"
  35846. },
  35847. ],
  35848. {
  35849. "normal": {
  35850. name: "Normal",
  35851. default: true
  35852. },
  35853. "demon": {
  35854. name: "Demon"
  35855. },
  35856. "terra": {
  35857. name: "Terra"
  35858. },
  35859. "jupiter": {
  35860. name: "Jupiter"
  35861. },
  35862. "neptune": {
  35863. name: "Neptune"
  35864. }
  35865. }
  35866. ))
  35867. characterMakers.push(() => makeCharacter(
  35868. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  35869. {
  35870. front: {
  35871. height: math.unit(16, "feet"),
  35872. weight: math.unit(610, "kg"),
  35873. name: "Front",
  35874. image: {
  35875. source: "./media/characters/huckle/front.svg",
  35876. extra: 1731/1625,
  35877. bottom: 33/1764
  35878. }
  35879. },
  35880. back: {
  35881. height: math.unit(16, "feet"),
  35882. weight: math.unit(610, "kg"),
  35883. name: "Back",
  35884. image: {
  35885. source: "./media/characters/huckle/back.svg",
  35886. extra: 1738/1651,
  35887. bottom: 37/1775
  35888. }
  35889. },
  35890. laughing: {
  35891. height: math.unit(3.75, "feet"),
  35892. name: "Laughing",
  35893. image: {
  35894. source: "./media/characters/huckle/laughing.svg"
  35895. }
  35896. },
  35897. angry: {
  35898. height: math.unit(4.15, "feet"),
  35899. name: "Angry",
  35900. image: {
  35901. source: "./media/characters/huckle/angry.svg"
  35902. }
  35903. },
  35904. },
  35905. [
  35906. {
  35907. name: "Normal",
  35908. height: math.unit(16, "feet"),
  35909. default: true
  35910. },
  35911. {
  35912. name: "Mini Macro",
  35913. height: math.unit(463, "feet")
  35914. },
  35915. {
  35916. name: "Macro",
  35917. height: math.unit(1680, "meters")
  35918. },
  35919. {
  35920. name: "Mega Macro",
  35921. height: math.unit(175, "km")
  35922. },
  35923. {
  35924. name: "Terra Macro",
  35925. height: math.unit(32, "gigameters")
  35926. },
  35927. {
  35928. name: "Multiverse+",
  35929. height: math.unit(2.56e23, "yottameters")
  35930. },
  35931. ]
  35932. ))
  35933. characterMakers.push(() => makeCharacter(
  35934. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  35935. {
  35936. front: {
  35937. height: math.unit(6 + 9/12, "feet"),
  35938. weight: math.unit(280, "lb"),
  35939. name: "Front",
  35940. image: {
  35941. source: "./media/characters/candy/front.svg",
  35942. extra: 234/217,
  35943. bottom: 11/245
  35944. }
  35945. },
  35946. },
  35947. [
  35948. {
  35949. name: "Really Small",
  35950. height: math.unit(0.1, "nm")
  35951. },
  35952. {
  35953. name: "Micro",
  35954. height: math.unit(2, "inches")
  35955. },
  35956. {
  35957. name: "Normal",
  35958. height: math.unit(6 + 9/12, "feet"),
  35959. default: true
  35960. },
  35961. {
  35962. name: "Small Macro",
  35963. height: math.unit(69, "feet")
  35964. },
  35965. {
  35966. name: "Macro",
  35967. height: math.unit(160, "feet")
  35968. },
  35969. {
  35970. name: "Megamacro",
  35971. height: math.unit(22000, "miles")
  35972. },
  35973. {
  35974. name: "Gigamacro",
  35975. height: math.unit(50000, "miles")
  35976. },
  35977. ]
  35978. ))
  35979. characterMakers.push(() => makeCharacter(
  35980. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  35981. {
  35982. front: {
  35983. height: math.unit(4, "feet"),
  35984. weight: math.unit(90, "lb"),
  35985. name: "Front",
  35986. image: {
  35987. source: "./media/characters/joey-mcdonald/front.svg",
  35988. extra: 1059/852,
  35989. bottom: 33/1092
  35990. }
  35991. },
  35992. back: {
  35993. height: math.unit(4, "feet"),
  35994. weight: math.unit(90, "lb"),
  35995. name: "Back",
  35996. image: {
  35997. source: "./media/characters/joey-mcdonald/back.svg",
  35998. extra: 1077/879,
  35999. bottom: 5/1082
  36000. }
  36001. },
  36002. frontKobold: {
  36003. height: math.unit(4, "feet"),
  36004. weight: math.unit(100, "lb"),
  36005. name: "Front-kobold",
  36006. image: {
  36007. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36008. extra: 1480/1367,
  36009. bottom: 0/1480
  36010. }
  36011. },
  36012. backKobold: {
  36013. height: math.unit(4, "feet"),
  36014. weight: math.unit(100, "lb"),
  36015. name: "Back-kobold",
  36016. image: {
  36017. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36018. extra: 1449/1361,
  36019. bottom: 0/1449
  36020. }
  36021. },
  36022. },
  36023. [
  36024. {
  36025. name: "Normal",
  36026. height: math.unit(4, "feet"),
  36027. default: true
  36028. },
  36029. ]
  36030. ))
  36031. characterMakers.push(() => makeCharacter(
  36032. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36033. {
  36034. front: {
  36035. height: math.unit(12 + 6/12, "feet"),
  36036. name: "Front",
  36037. image: {
  36038. source: "./media/characters/kass-lockheed/front.svg",
  36039. extra: 354/343,
  36040. bottom: 9/363
  36041. }
  36042. },
  36043. back: {
  36044. height: math.unit(12 + 6/12, "feet"),
  36045. name: "Back",
  36046. image: {
  36047. source: "./media/characters/kass-lockheed/back.svg",
  36048. extra: 364/352,
  36049. bottom: 3/367
  36050. }
  36051. },
  36052. dick: {
  36053. height: math.unit(3.12, "feet"),
  36054. name: "Dick",
  36055. image: {
  36056. source: "./media/characters/kass-lockheed/dick.svg"
  36057. }
  36058. },
  36059. head: {
  36060. height: math.unit(2.6, "feet"),
  36061. name: "Head",
  36062. image: {
  36063. source: "./media/characters/kass-lockheed/head.svg"
  36064. }
  36065. },
  36066. bleh: {
  36067. height: math.unit(2.85, "feet"),
  36068. name: "Bleh",
  36069. image: {
  36070. source: "./media/characters/kass-lockheed/bleh.svg"
  36071. }
  36072. },
  36073. smug: {
  36074. height: math.unit(2.85, "feet"),
  36075. name: "Smug",
  36076. image: {
  36077. source: "./media/characters/kass-lockheed/smug.svg"
  36078. }
  36079. },
  36080. },
  36081. [
  36082. {
  36083. name: "Normal",
  36084. height: math.unit(12 + 6/12, "feet"),
  36085. default: true
  36086. },
  36087. ]
  36088. ))
  36089. characterMakers.push(() => makeCharacter(
  36090. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36091. {
  36092. front: {
  36093. height: math.unit(6 + 2/12, "feet"),
  36094. name: "Front",
  36095. image: {
  36096. source: "./media/characters/taylor/front.svg",
  36097. extra: 639/495,
  36098. bottom: 12/651
  36099. }
  36100. },
  36101. },
  36102. [
  36103. {
  36104. name: "Normal",
  36105. height: math.unit(6 + 2/12, "feet"),
  36106. default: true
  36107. },
  36108. {
  36109. name: "Big",
  36110. height: math.unit(15, "feet")
  36111. },
  36112. {
  36113. name: "Lorg",
  36114. height: math.unit(80, "feet")
  36115. },
  36116. {
  36117. name: "Too Lorg",
  36118. height: math.unit(120, "feet")
  36119. },
  36120. ]
  36121. ))
  36122. characterMakers.push(() => makeCharacter(
  36123. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36124. {
  36125. front: {
  36126. height: math.unit(15, "feet"),
  36127. name: "Front",
  36128. image: {
  36129. source: "./media/characters/kaizer/front.svg",
  36130. extra: 1612/1436,
  36131. bottom: 43/1655
  36132. }
  36133. },
  36134. },
  36135. [
  36136. {
  36137. name: "Normal",
  36138. height: math.unit(15, "feet"),
  36139. default: true
  36140. },
  36141. ]
  36142. ))
  36143. characterMakers.push(() => makeCharacter(
  36144. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36145. {
  36146. front: {
  36147. height: math.unit(2, "feet"),
  36148. weight: math.unit(30, "lb"),
  36149. name: "Front",
  36150. image: {
  36151. source: "./media/characters/sandy/front.svg",
  36152. extra: 1439/1307,
  36153. bottom: 194/1633
  36154. }
  36155. },
  36156. },
  36157. [
  36158. {
  36159. name: "Normal",
  36160. height: math.unit(2, "feet"),
  36161. default: true
  36162. },
  36163. ]
  36164. ))
  36165. characterMakers.push(() => makeCharacter(
  36166. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36167. {
  36168. front: {
  36169. height: math.unit(3, "feet"),
  36170. name: "Front",
  36171. image: {
  36172. source: "./media/characters/mellvi/front.svg",
  36173. extra: 1831/1630,
  36174. bottom: 58/1889
  36175. }
  36176. },
  36177. },
  36178. [
  36179. {
  36180. name: "Normal",
  36181. height: math.unit(3, "feet"),
  36182. default: true
  36183. },
  36184. ]
  36185. ))
  36186. characterMakers.push(() => makeCharacter(
  36187. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36188. {
  36189. front: {
  36190. height: math.unit(5 + 11/12, "feet"),
  36191. weight: math.unit(200, "lb"),
  36192. name: "Front",
  36193. image: {
  36194. source: "./media/characters/shirou/front.svg",
  36195. extra: 2491/2383,
  36196. bottom: 189/2680
  36197. }
  36198. },
  36199. back: {
  36200. height: math.unit(5 + 11/12, "feet"),
  36201. weight: math.unit(200, "lb"),
  36202. name: "Back",
  36203. image: {
  36204. source: "./media/characters/shirou/back.svg",
  36205. extra: 2554/2450,
  36206. bottom: 76/2630
  36207. }
  36208. },
  36209. },
  36210. [
  36211. {
  36212. name: "Normal",
  36213. height: math.unit(5 + 11/12, "feet"),
  36214. default: true
  36215. },
  36216. ]
  36217. ))
  36218. characterMakers.push(() => makeCharacter(
  36219. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36220. {
  36221. front: {
  36222. height: math.unit(6 + 3/12, "feet"),
  36223. weight: math.unit(177, "lb"),
  36224. name: "Front",
  36225. image: {
  36226. source: "./media/characters/noryu/front.svg",
  36227. extra: 973/885,
  36228. bottom: 10/983
  36229. }
  36230. },
  36231. },
  36232. [
  36233. {
  36234. name: "Normal",
  36235. height: math.unit(6 + 3/12, "feet"),
  36236. default: true
  36237. },
  36238. ]
  36239. ))
  36240. characterMakers.push(() => makeCharacter(
  36241. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36242. {
  36243. front: {
  36244. height: math.unit(5 + 6/12, "feet"),
  36245. weight: math.unit(170, "lb"),
  36246. name: "Front",
  36247. image: {
  36248. source: "./media/characters/mevolas-rubenido/front.svg",
  36249. extra: 2109/1901,
  36250. bottom: 96/2205
  36251. }
  36252. },
  36253. },
  36254. [
  36255. {
  36256. name: "Normal",
  36257. height: math.unit(5 + 6/12, "feet"),
  36258. default: true
  36259. },
  36260. ]
  36261. ))
  36262. characterMakers.push(() => makeCharacter(
  36263. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36264. {
  36265. front: {
  36266. height: math.unit(100, "feet"),
  36267. name: "Front",
  36268. image: {
  36269. source: "./media/characters/dee/front.svg",
  36270. extra: 2153/2036,
  36271. bottom: 59/2212
  36272. }
  36273. },
  36274. back: {
  36275. height: math.unit(100, "feet"),
  36276. name: "Back",
  36277. image: {
  36278. source: "./media/characters/dee/back.svg",
  36279. extra: 2183/2058,
  36280. bottom: 75/2258
  36281. }
  36282. },
  36283. foot: {
  36284. height: math.unit(19.43, "feet"),
  36285. name: "Foot",
  36286. image: {
  36287. source: "./media/characters/dee/foot.svg"
  36288. }
  36289. },
  36290. hoof: {
  36291. height: math.unit(20.6, "feet"),
  36292. name: "Hoof",
  36293. image: {
  36294. source: "./media/characters/dee/hoof.svg"
  36295. }
  36296. },
  36297. },
  36298. [
  36299. {
  36300. name: "Macro",
  36301. height: math.unit(100, "feet"),
  36302. default: true
  36303. },
  36304. ]
  36305. ))
  36306. characterMakers.push(() => makeCharacter(
  36307. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36308. {
  36309. front: {
  36310. height: math.unit(5 + 6/12, "feet"),
  36311. name: "Front",
  36312. image: {
  36313. source: "./media/characters/teh/front.svg",
  36314. extra: 1002/847,
  36315. bottom: 62/1064
  36316. }
  36317. },
  36318. },
  36319. [
  36320. {
  36321. name: "Normal",
  36322. height: math.unit(5 + 6/12, "feet"),
  36323. default: true
  36324. },
  36325. ]
  36326. ))
  36327. characterMakers.push(() => makeCharacter(
  36328. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36329. {
  36330. side: {
  36331. height: math.unit(6 + 1/12, "feet"),
  36332. weight: math.unit(204, "lb"),
  36333. name: "Side",
  36334. image: {
  36335. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36336. extra: 974/775,
  36337. bottom: 169/1143
  36338. }
  36339. },
  36340. sitting: {
  36341. height: math.unit(6 + 2/12, "feet"),
  36342. weight: math.unit(204, "lb"),
  36343. name: "Sitting",
  36344. image: {
  36345. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36346. extra: 1175/964,
  36347. bottom: 378/1553
  36348. }
  36349. },
  36350. },
  36351. [
  36352. {
  36353. name: "Normal",
  36354. height: math.unit(6 + 1/12, "feet"),
  36355. default: true
  36356. },
  36357. ]
  36358. ))
  36359. characterMakers.push(() => makeCharacter(
  36360. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36361. {
  36362. front: {
  36363. height: math.unit(6, "inches"),
  36364. name: "Front",
  36365. image: {
  36366. source: "./media/characters/tululi/front.svg",
  36367. extra: 1997/1876,
  36368. bottom: 20/2017
  36369. }
  36370. },
  36371. },
  36372. [
  36373. {
  36374. name: "Normal",
  36375. height: math.unit(6, "inches"),
  36376. default: true
  36377. },
  36378. ]
  36379. ))
  36380. characterMakers.push(() => makeCharacter(
  36381. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36382. {
  36383. front: {
  36384. height: math.unit(4 + 1/12, "feet"),
  36385. name: "Front",
  36386. image: {
  36387. source: "./media/characters/star/front.svg",
  36388. extra: 1493/1189,
  36389. bottom: 48/1541
  36390. }
  36391. },
  36392. },
  36393. [
  36394. {
  36395. name: "Normal",
  36396. height: math.unit(4 + 1/12, "feet"),
  36397. default: true
  36398. },
  36399. ]
  36400. ))
  36401. characterMakers.push(() => makeCharacter(
  36402. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36403. {
  36404. front: {
  36405. height: math.unit(6 + 3/12, "feet"),
  36406. name: "Front",
  36407. image: {
  36408. source: "./media/characters/comet/front.svg",
  36409. extra: 1681/1462,
  36410. bottom: 26/1707
  36411. }
  36412. },
  36413. },
  36414. [
  36415. {
  36416. name: "Normal",
  36417. height: math.unit(6 + 3/12, "feet"),
  36418. default: true
  36419. },
  36420. ]
  36421. ))
  36422. characterMakers.push(() => makeCharacter(
  36423. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36424. {
  36425. front: {
  36426. height: math.unit(950, "feet"),
  36427. name: "Front",
  36428. image: {
  36429. source: "./media/characters/vortex/front.svg",
  36430. extra: 1497/1434,
  36431. bottom: 56/1553
  36432. }
  36433. },
  36434. maw: {
  36435. height: math.unit(285, "feet"),
  36436. name: "Maw",
  36437. image: {
  36438. source: "./media/characters/vortex/maw.svg"
  36439. }
  36440. },
  36441. },
  36442. [
  36443. {
  36444. name: "Macro",
  36445. height: math.unit(950, "feet"),
  36446. default: true
  36447. },
  36448. ]
  36449. ))
  36450. characterMakers.push(() => makeCharacter(
  36451. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36452. {
  36453. front: {
  36454. height: math.unit(600, "feet"),
  36455. weight: math.unit(0.02, "grams"),
  36456. name: "Front",
  36457. image: {
  36458. source: "./media/characters/doodle/front.svg",
  36459. extra: 1578/1413,
  36460. bottom: 37/1615
  36461. }
  36462. },
  36463. },
  36464. [
  36465. {
  36466. name: "Macro",
  36467. height: math.unit(600, "feet"),
  36468. default: true
  36469. },
  36470. ]
  36471. ))
  36472. characterMakers.push(() => makeCharacter(
  36473. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36474. {
  36475. front: {
  36476. height: math.unit(6 + 6/12, "feet"),
  36477. name: "Front",
  36478. image: {
  36479. source: "./media/characters/jai/front.svg",
  36480. extra: 1645/1534,
  36481. bottom: 115/1760
  36482. }
  36483. },
  36484. },
  36485. [
  36486. {
  36487. name: "Normal",
  36488. height: math.unit(6 + 6/12, "feet"),
  36489. default: true
  36490. },
  36491. ]
  36492. ))
  36493. characterMakers.push(() => makeCharacter(
  36494. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36495. {
  36496. front: {
  36497. height: math.unit(6 + 8/12, "feet"),
  36498. name: "Front",
  36499. image: {
  36500. source: "./media/characters/pixel/front.svg",
  36501. extra: 1900/1735,
  36502. bottom: 63/1963
  36503. }
  36504. },
  36505. },
  36506. [
  36507. {
  36508. name: "Normal",
  36509. height: math.unit(6 + 8/12, "feet"),
  36510. default: true
  36511. },
  36512. ]
  36513. ))
  36514. characterMakers.push(() => makeCharacter(
  36515. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36516. {
  36517. back: {
  36518. height: math.unit(4 + 1/12, "feet"),
  36519. weight: math.unit(75, "lb"),
  36520. name: "Back",
  36521. image: {
  36522. source: "./media/characters/rhett/back.svg",
  36523. extra: 930/878,
  36524. bottom: 25/955
  36525. }
  36526. },
  36527. front: {
  36528. height: math.unit(4 + 1/12, "feet"),
  36529. weight: math.unit(75, "lb"),
  36530. name: "Front",
  36531. image: {
  36532. source: "./media/characters/rhett/front.svg",
  36533. extra: 1682/1586,
  36534. bottom: 92/1774
  36535. }
  36536. },
  36537. },
  36538. [
  36539. {
  36540. name: "Micro",
  36541. height: math.unit(8, "inches")
  36542. },
  36543. {
  36544. name: "Tiny",
  36545. height: math.unit(2, "feet")
  36546. },
  36547. {
  36548. name: "Normal",
  36549. height: math.unit(4 + 1/12, "feet"),
  36550. default: true
  36551. },
  36552. ]
  36553. ))
  36554. characterMakers.push(() => makeCharacter(
  36555. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36556. {
  36557. front: {
  36558. height: math.unit(3 + 3/12, "feet"),
  36559. name: "Front",
  36560. image: {
  36561. source: "./media/characters/penny/front.svg",
  36562. extra: 1406/1311,
  36563. bottom: 26/1432
  36564. }
  36565. },
  36566. },
  36567. [
  36568. {
  36569. name: "Normal",
  36570. height: math.unit(3 + 3/12, "feet"),
  36571. default: true
  36572. },
  36573. ]
  36574. ))
  36575. characterMakers.push(() => makeCharacter(
  36576. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36577. {
  36578. front: {
  36579. height: math.unit(4 + 11/12, "feet"),
  36580. name: "Front",
  36581. image: {
  36582. source: "./media/characters/monty/front.svg",
  36583. extra: 1479/1209,
  36584. bottom: 0/1479
  36585. }
  36586. },
  36587. },
  36588. [
  36589. {
  36590. name: "Normal",
  36591. height: math.unit(4 + 11/12, "feet"),
  36592. default: true
  36593. },
  36594. ]
  36595. ))
  36596. characterMakers.push(() => makeCharacter(
  36597. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36598. {
  36599. front: {
  36600. height: math.unit(8 + 4/12, "feet"),
  36601. name: "Front",
  36602. image: {
  36603. source: "./media/characters/sterling/front.svg",
  36604. extra: 1420/1236,
  36605. bottom: 27/1447
  36606. }
  36607. },
  36608. },
  36609. [
  36610. {
  36611. name: "Normal",
  36612. height: math.unit(8 + 4/12, "feet"),
  36613. default: true
  36614. },
  36615. ]
  36616. ))
  36617. characterMakers.push(() => makeCharacter(
  36618. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36619. {
  36620. front: {
  36621. height: math.unit(15, "feet"),
  36622. name: "Front",
  36623. image: {
  36624. source: "./media/characters/marble/front.svg",
  36625. extra: 973/937,
  36626. bottom: 32/1005
  36627. }
  36628. },
  36629. },
  36630. [
  36631. {
  36632. name: "Normal",
  36633. height: math.unit(15, "feet"),
  36634. default: true
  36635. },
  36636. ]
  36637. ))
  36638. characterMakers.push(() => makeCharacter(
  36639. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36640. {
  36641. front: {
  36642. height: math.unit(3, "inches"),
  36643. name: "Front",
  36644. image: {
  36645. source: "./media/characters/powder/front.svg",
  36646. extra: 1504/1334,
  36647. bottom: 518/2022
  36648. }
  36649. },
  36650. },
  36651. [
  36652. {
  36653. name: "Normal",
  36654. height: math.unit(3, "inches"),
  36655. default: true
  36656. },
  36657. ]
  36658. ))
  36659. characterMakers.push(() => makeCharacter(
  36660. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36661. {
  36662. front: {
  36663. height: math.unit(4 + 5/12, "feet"),
  36664. name: "Front",
  36665. image: {
  36666. source: "./media/characters/joey-raccoon/front.svg",
  36667. extra: 1273/1197,
  36668. bottom: 0/1273
  36669. }
  36670. },
  36671. },
  36672. [
  36673. {
  36674. name: "Normal",
  36675. height: math.unit(4 + 5/12, "feet"),
  36676. default: true
  36677. },
  36678. ]
  36679. ))
  36680. characterMakers.push(() => makeCharacter(
  36681. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36682. {
  36683. front: {
  36684. height: math.unit(8 + 4/12, "feet"),
  36685. name: "Front",
  36686. image: {
  36687. source: "./media/characters/vick/front.svg",
  36688. extra: 2187/2118,
  36689. bottom: 47/2234
  36690. }
  36691. },
  36692. },
  36693. [
  36694. {
  36695. name: "Normal",
  36696. height: math.unit(8 + 4/12, "feet"),
  36697. default: true
  36698. },
  36699. ]
  36700. ))
  36701. characterMakers.push(() => makeCharacter(
  36702. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36703. {
  36704. front: {
  36705. height: math.unit(5 + 5/12, "feet"),
  36706. name: "Front",
  36707. image: {
  36708. source: "./media/characters/mitsy/front.svg",
  36709. extra: 1842/1695,
  36710. bottom: 0/1842
  36711. }
  36712. },
  36713. },
  36714. [
  36715. {
  36716. name: "Normal",
  36717. height: math.unit(5 + 5/12, "feet"),
  36718. default: true
  36719. },
  36720. ]
  36721. ))
  36722. characterMakers.push(() => makeCharacter(
  36723. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36724. {
  36725. front: {
  36726. height: math.unit(6 + 3/12, "feet"),
  36727. name: "Front",
  36728. image: {
  36729. source: "./media/characters/silvy/front.svg",
  36730. extra: 1995/1836,
  36731. bottom: 225/2220
  36732. }
  36733. },
  36734. },
  36735. [
  36736. {
  36737. name: "Normal",
  36738. height: math.unit(6 + 3/12, "feet"),
  36739. default: true
  36740. },
  36741. ]
  36742. ))
  36743. characterMakers.push(() => makeCharacter(
  36744. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36745. {
  36746. front: {
  36747. height: math.unit(3 + 8/12, "feet"),
  36748. name: "Front",
  36749. image: {
  36750. source: "./media/characters/rodney/front.svg",
  36751. extra: 1956/1747,
  36752. bottom: 31/1987
  36753. }
  36754. },
  36755. frontDressed: {
  36756. height: math.unit(2.9, "feet"),
  36757. name: "Front (Dressed)",
  36758. image: {
  36759. source: "./media/characters/rodney/front-dressed.svg",
  36760. extra: 1382/1241,
  36761. bottom: 385/1767
  36762. }
  36763. },
  36764. },
  36765. [
  36766. {
  36767. name: "Normal",
  36768. height: math.unit(3 + 8/12, "feet"),
  36769. default: true
  36770. },
  36771. ]
  36772. ))
  36773. characterMakers.push(() => makeCharacter(
  36774. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  36775. {
  36776. front: {
  36777. height: math.unit(5 + 9/12, "feet"),
  36778. weight: math.unit(194, "lbs"),
  36779. name: "Front",
  36780. image: {
  36781. source: "./media/characters/zakail-sudekai/front.svg",
  36782. extra: 2696/2533,
  36783. bottom: 248/2944
  36784. }
  36785. },
  36786. maw: {
  36787. height: math.unit(1.35, "feet"),
  36788. name: "Maw",
  36789. image: {
  36790. source: "./media/characters/zakail-sudekai/maw.svg"
  36791. }
  36792. },
  36793. },
  36794. [
  36795. {
  36796. name: "Normal",
  36797. height: math.unit(5 + 9/12, "feet"),
  36798. default: true
  36799. },
  36800. ]
  36801. ))
  36802. characterMakers.push(() => makeCharacter(
  36803. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  36804. {
  36805. front: {
  36806. height: math.unit(8 + 4/12, "feet"),
  36807. weight: math.unit(1200, "lb"),
  36808. name: "Front",
  36809. image: {
  36810. source: "./media/characters/eleanor/front.svg",
  36811. extra: 1226/1192,
  36812. bottom: 52/1278
  36813. }
  36814. },
  36815. back: {
  36816. height: math.unit(8 + 4/12, "feet"),
  36817. weight: math.unit(1200, "lb"),
  36818. name: "Back",
  36819. image: {
  36820. source: "./media/characters/eleanor/back.svg",
  36821. extra: 1242/1184,
  36822. bottom: 60/1302
  36823. }
  36824. },
  36825. head: {
  36826. height: math.unit(2.62, "feet"),
  36827. name: "Head",
  36828. image: {
  36829. source: "./media/characters/eleanor/head.svg"
  36830. }
  36831. },
  36832. },
  36833. [
  36834. {
  36835. name: "Normal",
  36836. height: math.unit(8 + 4/12, "feet"),
  36837. default: true
  36838. },
  36839. ]
  36840. ))
  36841. characterMakers.push(() => makeCharacter(
  36842. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  36843. {
  36844. front: {
  36845. height: math.unit(8 + 4/12, "feet"),
  36846. weight: math.unit(750, "lb"),
  36847. name: "Front",
  36848. image: {
  36849. source: "./media/characters/tanya/front.svg",
  36850. extra: 1749/1615,
  36851. bottom: 33/1782
  36852. }
  36853. },
  36854. },
  36855. [
  36856. {
  36857. name: "Normal",
  36858. height: math.unit(8 + 4/12, "feet"),
  36859. default: true
  36860. },
  36861. ]
  36862. ))
  36863. characterMakers.push(() => makeCharacter(
  36864. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  36865. {
  36866. front: {
  36867. height: math.unit(5, "feet"),
  36868. weight: math.unit(225, "lb"),
  36869. name: "Front",
  36870. image: {
  36871. source: "./media/characters/cindy/front.svg",
  36872. extra: 1320/1250,
  36873. bottom: 42/1362
  36874. }
  36875. },
  36876. frontDressed: {
  36877. height: math.unit(5, "feet"),
  36878. weight: math.unit(225, "lb"),
  36879. name: "Front (Dressed)",
  36880. image: {
  36881. source: "./media/characters/cindy/front-dressed.svg",
  36882. extra: 1320/1250,
  36883. bottom: 42/1362
  36884. }
  36885. },
  36886. back: {
  36887. height: math.unit(5, "feet"),
  36888. weight: math.unit(225, "lb"),
  36889. name: "Back",
  36890. image: {
  36891. source: "./media/characters/cindy/back.svg",
  36892. extra: 1384/1346,
  36893. bottom: 14/1398
  36894. }
  36895. },
  36896. },
  36897. [
  36898. {
  36899. name: "Normal",
  36900. height: math.unit(5, "feet"),
  36901. default: true
  36902. },
  36903. ]
  36904. ))
  36905. characterMakers.push(() => makeCharacter(
  36906. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  36907. {
  36908. front: {
  36909. height: math.unit(6 + 9/12, "feet"),
  36910. weight: math.unit(440, "lb"),
  36911. name: "Front",
  36912. image: {
  36913. source: "./media/characters/wilbur-owen/front.svg",
  36914. extra: 1575/1448,
  36915. bottom: 72/1647
  36916. }
  36917. },
  36918. back: {
  36919. height: math.unit(6 + 9/12, "feet"),
  36920. weight: math.unit(440, "lb"),
  36921. name: "Back",
  36922. image: {
  36923. source: "./media/characters/wilbur-owen/back.svg",
  36924. extra: 1578/1445,
  36925. bottom: 36/1614
  36926. }
  36927. },
  36928. },
  36929. [
  36930. {
  36931. name: "Normal",
  36932. height: math.unit(6 + 9/12, "feet"),
  36933. default: true
  36934. },
  36935. ]
  36936. ))
  36937. characterMakers.push(() => makeCharacter(
  36938. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  36939. {
  36940. front: {
  36941. height: math.unit(6 + 5/12, "feet"),
  36942. weight: math.unit(650, "lb"),
  36943. name: "Front",
  36944. image: {
  36945. source: "./media/characters/keegan/front.svg",
  36946. extra: 2387/2198,
  36947. bottom: 33/2420
  36948. }
  36949. },
  36950. side: {
  36951. height: math.unit(6 + 5/12, "feet"),
  36952. weight: math.unit(650, "lb"),
  36953. name: "Side",
  36954. image: {
  36955. source: "./media/characters/keegan/side.svg",
  36956. extra: 2390/2202,
  36957. bottom: 47/2437
  36958. }
  36959. },
  36960. back: {
  36961. height: math.unit(6 + 5/12, "feet"),
  36962. weight: math.unit(650, "lb"),
  36963. name: "Back",
  36964. image: {
  36965. source: "./media/characters/keegan/back.svg",
  36966. extra: 2418/2268,
  36967. bottom: 15/2433
  36968. }
  36969. },
  36970. frontSfw: {
  36971. height: math.unit(6 + 5/12, "feet"),
  36972. weight: math.unit(650, "lb"),
  36973. name: "Front (SFW)",
  36974. image: {
  36975. source: "./media/characters/keegan/front-sfw.svg",
  36976. extra: 2387/2198,
  36977. bottom: 33/2420
  36978. }
  36979. },
  36980. beans: {
  36981. height: math.unit(1.85, "feet"),
  36982. name: "Beans",
  36983. image: {
  36984. source: "./media/characters/keegan/beans.svg"
  36985. }
  36986. },
  36987. },
  36988. [
  36989. {
  36990. name: "Normal",
  36991. height: math.unit(6 + 5/12, "feet"),
  36992. default: true
  36993. },
  36994. ]
  36995. ))
  36996. characterMakers.push(() => makeCharacter(
  36997. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  36998. {
  36999. front: {
  37000. height: math.unit(9, "feet"),
  37001. name: "Front",
  37002. image: {
  37003. source: "./media/characters/colton/front.svg",
  37004. extra: 1589/1326,
  37005. bottom: 139/1728
  37006. }
  37007. },
  37008. },
  37009. [
  37010. {
  37011. name: "Normal",
  37012. height: math.unit(9, "feet"),
  37013. default: true
  37014. },
  37015. ]
  37016. ))
  37017. characterMakers.push(() => makeCharacter(
  37018. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37019. {
  37020. front: {
  37021. height: math.unit(2 + 9/12, "feet"),
  37022. name: "Front",
  37023. image: {
  37024. source: "./media/characters/bora/front.svg",
  37025. extra: 1265/1250,
  37026. bottom: 24/1289
  37027. }
  37028. },
  37029. },
  37030. [
  37031. {
  37032. name: "Normal",
  37033. height: math.unit(2 + 9/12, "feet"),
  37034. default: true
  37035. },
  37036. ]
  37037. ))
  37038. characterMakers.push(() => makeCharacter(
  37039. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37040. {
  37041. front: {
  37042. height: math.unit(8, "feet"),
  37043. name: "Front",
  37044. image: {
  37045. source: "./media/characters/myu-myu/front.svg",
  37046. extra: 1949/1857,
  37047. bottom: 90/2039
  37048. }
  37049. },
  37050. },
  37051. [
  37052. {
  37053. name: "Normal",
  37054. height: math.unit(8, "feet"),
  37055. default: true
  37056. },
  37057. {
  37058. name: "Big",
  37059. height: math.unit(15, "feet")
  37060. },
  37061. {
  37062. name: "BIG",
  37063. height: math.unit(25, "feet")
  37064. },
  37065. ]
  37066. ))
  37067. characterMakers.push(() => makeCharacter(
  37068. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37069. {
  37070. side: {
  37071. height: math.unit(7 + 5/12, "feet"),
  37072. weight: math.unit(2800, "lb"),
  37073. name: "Side",
  37074. image: {
  37075. source: "./media/characters/haloren/side.svg",
  37076. extra: 1793/409,
  37077. bottom: 59/1852
  37078. }
  37079. },
  37080. frontPaw: {
  37081. height: math.unit(2.36, "feet"),
  37082. name: "Front paw",
  37083. image: {
  37084. source: "./media/characters/haloren/front-paw.svg"
  37085. }
  37086. },
  37087. hindPaw: {
  37088. height: math.unit(3.18, "feet"),
  37089. name: "Hind paw",
  37090. image: {
  37091. source: "./media/characters/haloren/hind-paw.svg"
  37092. }
  37093. },
  37094. maw: {
  37095. height: math.unit(5.05, "feet"),
  37096. name: "Maw",
  37097. image: {
  37098. source: "./media/characters/haloren/maw.svg"
  37099. }
  37100. },
  37101. dick: {
  37102. height: math.unit(2.90, "feet"),
  37103. name: "Dick",
  37104. image: {
  37105. source: "./media/characters/haloren/dick.svg"
  37106. }
  37107. },
  37108. },
  37109. [
  37110. {
  37111. name: "Normal",
  37112. height: math.unit(7 + 5/12, "feet"),
  37113. default: true
  37114. },
  37115. {
  37116. name: "Enhanced",
  37117. height: math.unit(14 + 3/12, "feet")
  37118. },
  37119. ]
  37120. ))
  37121. characterMakers.push(() => makeCharacter(
  37122. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37123. {
  37124. front: {
  37125. height: math.unit(171, "cm"),
  37126. name: "Front",
  37127. image: {
  37128. source: "./media/characters/kimmy/front.svg",
  37129. extra: 1491/1435,
  37130. bottom: 53/1544
  37131. }
  37132. },
  37133. },
  37134. [
  37135. {
  37136. name: "Small",
  37137. height: math.unit(9, "cm")
  37138. },
  37139. {
  37140. name: "Normal",
  37141. height: math.unit(171, "cm"),
  37142. default: true
  37143. },
  37144. ]
  37145. ))
  37146. characterMakers.push(() => makeCharacter(
  37147. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37148. {
  37149. front: {
  37150. height: math.unit(8, "feet"),
  37151. weight: math.unit(300, "lb"),
  37152. name: "Front",
  37153. image: {
  37154. source: "./media/characters/galeboomer/front.svg",
  37155. extra: 4651/4415,
  37156. bottom: 162/4813
  37157. }
  37158. },
  37159. back: {
  37160. height: math.unit(8, "feet"),
  37161. weight: math.unit(300, "lb"),
  37162. name: "Back",
  37163. image: {
  37164. source: "./media/characters/galeboomer/back.svg",
  37165. extra: 4544/4314,
  37166. bottom: 16/4560
  37167. }
  37168. },
  37169. frontAlt: {
  37170. height: math.unit(8, "feet"),
  37171. weight: math.unit(300, "lb"),
  37172. name: "Front (Alt)",
  37173. image: {
  37174. source: "./media/characters/galeboomer/front-alt.svg",
  37175. extra: 4458/4228,
  37176. bottom: 68/4526
  37177. }
  37178. },
  37179. maw: {
  37180. height: math.unit(1.2, "feet"),
  37181. name: "Maw",
  37182. image: {
  37183. source: "./media/characters/galeboomer/maw.svg"
  37184. }
  37185. },
  37186. },
  37187. [
  37188. {
  37189. name: "Normal",
  37190. height: math.unit(8, "feet"),
  37191. default: true
  37192. },
  37193. ]
  37194. ))
  37195. characterMakers.push(() => makeCharacter(
  37196. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37197. {
  37198. front: {
  37199. height: math.unit(5 + 9/12, "feet"),
  37200. weight: math.unit(120, "lb"),
  37201. name: "Front",
  37202. image: {
  37203. source: "./media/characters/chyr/front.svg",
  37204. extra: 1323/1254,
  37205. bottom: 63/1386
  37206. }
  37207. },
  37208. back: {
  37209. height: math.unit(5 + 9/12, "feet"),
  37210. weight: math.unit(120, "lb"),
  37211. name: "Back",
  37212. image: {
  37213. source: "./media/characters/chyr/back.svg",
  37214. extra: 1323/1252,
  37215. bottom: 48/1371
  37216. }
  37217. },
  37218. },
  37219. [
  37220. {
  37221. name: "Normal",
  37222. height: math.unit(5 + 9/12, "feet"),
  37223. default: true
  37224. },
  37225. ]
  37226. ))
  37227. characterMakers.push(() => makeCharacter(
  37228. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37229. {
  37230. front: {
  37231. height: math.unit(7, "feet"),
  37232. weight: math.unit(310, "lb"),
  37233. name: "Front",
  37234. image: {
  37235. source: "./media/characters/solarus/front.svg",
  37236. extra: 2415/2021,
  37237. bottom: 103/2518
  37238. }
  37239. },
  37240. back: {
  37241. height: math.unit(7, "feet"),
  37242. weight: math.unit(310, "lb"),
  37243. name: "Back",
  37244. image: {
  37245. source: "./media/characters/solarus/back.svg",
  37246. extra: 2463/2089,
  37247. bottom: 79/2542
  37248. }
  37249. },
  37250. },
  37251. [
  37252. {
  37253. name: "Normal",
  37254. height: math.unit(7, "feet"),
  37255. default: true
  37256. },
  37257. ]
  37258. ))
  37259. characterMakers.push(() => makeCharacter(
  37260. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37261. {
  37262. front: {
  37263. height: math.unit(16, "feet"),
  37264. name: "Front",
  37265. image: {
  37266. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37267. extra: 1844/1780,
  37268. bottom: 58/1902
  37269. }
  37270. },
  37271. winterCoat: {
  37272. height: math.unit(16, "feet"),
  37273. name: "Winter Coat",
  37274. image: {
  37275. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37276. extra: 1807/1775,
  37277. bottom: 69/1876
  37278. }
  37279. },
  37280. },
  37281. [
  37282. {
  37283. name: "Normal",
  37284. height: math.unit(16, "feet"),
  37285. default: true
  37286. },
  37287. {
  37288. name: "Chicago Size",
  37289. height: math.unit(560, "feet")
  37290. },
  37291. ]
  37292. ))
  37293. characterMakers.push(() => makeCharacter(
  37294. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37295. {
  37296. front: {
  37297. height: math.unit(11 + 6/12, "feet"),
  37298. weight: math.unit(1366, "lb"),
  37299. name: "Front",
  37300. image: {
  37301. source: "./media/characters/lexor/front.svg",
  37302. extra: 1560/1481,
  37303. bottom: 211/1771
  37304. }
  37305. },
  37306. back: {
  37307. height: math.unit(11 + 6/12, "feet"),
  37308. weight: math.unit(1366, "lb"),
  37309. name: "Back",
  37310. image: {
  37311. source: "./media/characters/lexor/back.svg",
  37312. extra: 1614/1533,
  37313. bottom: 76/1690
  37314. }
  37315. },
  37316. maw: {
  37317. height: math.unit(3, "feet"),
  37318. name: "Maw",
  37319. image: {
  37320. source: "./media/characters/lexor/maw.svg"
  37321. }
  37322. },
  37323. dick: {
  37324. height: math.unit(2.59, "feet"),
  37325. name: "Dick",
  37326. image: {
  37327. source: "./media/characters/lexor/dick.svg"
  37328. }
  37329. },
  37330. },
  37331. [
  37332. {
  37333. name: "Normal",
  37334. height: math.unit(11 + 6/12, "feet"),
  37335. default: true
  37336. },
  37337. ]
  37338. ))
  37339. characterMakers.push(() => makeCharacter(
  37340. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37341. {
  37342. front: {
  37343. height: math.unit(5 + 8/12, "feet"),
  37344. name: "Front",
  37345. image: {
  37346. source: "./media/characters/magnum/front.svg",
  37347. extra: 942/855,
  37348. bottom: 26/968
  37349. }
  37350. },
  37351. },
  37352. [
  37353. {
  37354. name: "Normal",
  37355. height: math.unit(5 + 8/12, "feet"),
  37356. default: true
  37357. },
  37358. ]
  37359. ))
  37360. characterMakers.push(() => makeCharacter(
  37361. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37362. {
  37363. front: {
  37364. height: math.unit(18 + 4/12, "feet"),
  37365. weight: math.unit(1500, "kg"),
  37366. name: "Front",
  37367. image: {
  37368. source: "./media/characters/solas-sharpsman/front.svg",
  37369. extra: 1698/1589,
  37370. bottom: 0/1698
  37371. }
  37372. },
  37373. },
  37374. [
  37375. {
  37376. name: "Normal",
  37377. height: math.unit(18 + 4/12, "feet"),
  37378. default: true
  37379. },
  37380. ]
  37381. ))
  37382. characterMakers.push(() => makeCharacter(
  37383. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37384. {
  37385. front: {
  37386. height: math.unit(5 + 5/12, "feet"),
  37387. weight: math.unit(180, "lb"),
  37388. name: "Front",
  37389. image: {
  37390. source: "./media/characters/october/front.svg",
  37391. extra: 1800/1650,
  37392. bottom: 0/1800
  37393. }
  37394. },
  37395. frontNsfw: {
  37396. height: math.unit(5 + 5/12, "feet"),
  37397. weight: math.unit(180, "lb"),
  37398. name: "Front (NSFW)",
  37399. image: {
  37400. source: "./media/characters/october/front-nsfw.svg",
  37401. extra: 1392/1307,
  37402. bottom: 42/1434
  37403. }
  37404. },
  37405. },
  37406. [
  37407. {
  37408. name: "Normal",
  37409. height: math.unit(5 + 5/12, "feet"),
  37410. default: true
  37411. },
  37412. ]
  37413. ))
  37414. characterMakers.push(() => makeCharacter(
  37415. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37416. {
  37417. front: {
  37418. height: math.unit(8 + 6/12, "feet"),
  37419. name: "Front",
  37420. image: {
  37421. source: "./media/characters/essynkardi/front.svg",
  37422. extra: 1914/1846,
  37423. bottom: 22/1936
  37424. }
  37425. },
  37426. },
  37427. [
  37428. {
  37429. name: "Normal",
  37430. height: math.unit(8 + 6/12, "feet"),
  37431. default: true
  37432. },
  37433. ]
  37434. ))
  37435. characterMakers.push(() => makeCharacter(
  37436. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37437. {
  37438. front: {
  37439. height: math.unit(6 + 6/12, "feet"),
  37440. weight: math.unit(7, "lb"),
  37441. name: "Front",
  37442. image: {
  37443. source: "./media/characters/icky/front.svg",
  37444. extra: 813/782,
  37445. bottom: 66/879
  37446. }
  37447. },
  37448. back: {
  37449. height: math.unit(6 + 6/12, "feet"),
  37450. weight: math.unit(7, "lb"),
  37451. name: "Back",
  37452. image: {
  37453. source: "./media/characters/icky/back.svg",
  37454. extra: 754/735,
  37455. bottom: 56/810
  37456. }
  37457. },
  37458. },
  37459. [
  37460. {
  37461. name: "Normal",
  37462. height: math.unit(6 + 6/12, "feet"),
  37463. default: true
  37464. },
  37465. ]
  37466. ))
  37467. characterMakers.push(() => makeCharacter(
  37468. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37469. {
  37470. front: {
  37471. height: math.unit(15, "feet"),
  37472. name: "Front",
  37473. image: {
  37474. source: "./media/characters/rojas/front.svg",
  37475. extra: 1462/1408,
  37476. bottom: 95/1557
  37477. }
  37478. },
  37479. back: {
  37480. height: math.unit(15, "feet"),
  37481. name: "Back",
  37482. image: {
  37483. source: "./media/characters/rojas/back.svg",
  37484. extra: 1023/954,
  37485. bottom: 28/1051
  37486. }
  37487. },
  37488. },
  37489. [
  37490. {
  37491. name: "Normal",
  37492. height: math.unit(15, "feet"),
  37493. default: true
  37494. },
  37495. ]
  37496. ))
  37497. characterMakers.push(() => makeCharacter(
  37498. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37499. {
  37500. frontHuman: {
  37501. height: math.unit(5 + 7/12, "feet"),
  37502. name: "Front (Human)",
  37503. image: {
  37504. source: "./media/characters/alek-dryagan/front-human.svg",
  37505. extra: 1687/1667,
  37506. bottom: 69/1756
  37507. }
  37508. },
  37509. backHuman: {
  37510. height: math.unit(5 + 7/12, "feet"),
  37511. name: "Back (Human)",
  37512. image: {
  37513. source: "./media/characters/alek-dryagan/back-human.svg",
  37514. extra: 1670/1649,
  37515. bottom: 65/1735
  37516. }
  37517. },
  37518. frontDemi: {
  37519. height: math.unit(65, "feet"),
  37520. name: "Front (Demi)",
  37521. image: {
  37522. source: "./media/characters/alek-dryagan/front-demi.svg",
  37523. extra: 1669/1642,
  37524. bottom: 49/1718
  37525. }
  37526. },
  37527. backDemi: {
  37528. height: math.unit(65, "feet"),
  37529. name: "Back (Demi)",
  37530. image: {
  37531. source: "./media/characters/alek-dryagan/back-demi.svg",
  37532. extra: 1658/1637,
  37533. bottom: 40/1698
  37534. }
  37535. },
  37536. mawHuman: {
  37537. height: math.unit(0.3, "feet"),
  37538. name: "Maw (Human)",
  37539. image: {
  37540. source: "./media/characters/alek-dryagan/maw-human.svg"
  37541. }
  37542. },
  37543. mawDemi: {
  37544. height: math.unit(3.8, "feet"),
  37545. name: "Maw (Demi)",
  37546. image: {
  37547. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37548. }
  37549. },
  37550. },
  37551. [
  37552. {
  37553. name: "Normal",
  37554. height: math.unit(5 + 7/12, "feet"),
  37555. default: true
  37556. },
  37557. ]
  37558. ))
  37559. characterMakers.push(() => makeCharacter(
  37560. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  37561. {
  37562. frontHuman: {
  37563. height: math.unit(5 + 2/12, "feet"),
  37564. name: "Front (Human)",
  37565. image: {
  37566. source: "./media/characters/gen/front-human.svg",
  37567. extra: 1627/1538,
  37568. bottom: 71/1698
  37569. }
  37570. },
  37571. backHuman: {
  37572. height: math.unit(5 + 2/12, "feet"),
  37573. name: "Back (Human)",
  37574. image: {
  37575. source: "./media/characters/gen/back-human.svg",
  37576. extra: 1638/1548,
  37577. bottom: 69/1707
  37578. }
  37579. },
  37580. frontDemi: {
  37581. height: math.unit(5 + 2/12, "feet"),
  37582. name: "Front (Demi)",
  37583. image: {
  37584. source: "./media/characters/gen/front-demi.svg",
  37585. extra: 1627/1538,
  37586. bottom: 71/1698
  37587. }
  37588. },
  37589. backDemi: {
  37590. height: math.unit(5 + 2/12, "feet"),
  37591. name: "Back (Demi)",
  37592. image: {
  37593. source: "./media/characters/gen/back-demi.svg",
  37594. extra: 1638/1548,
  37595. bottom: 69/1707
  37596. }
  37597. },
  37598. },
  37599. [
  37600. {
  37601. name: "Normal",
  37602. height: math.unit(5 + 2/12, "feet"),
  37603. default: true
  37604. },
  37605. ]
  37606. ))
  37607. characterMakers.push(() => makeCharacter(
  37608. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37609. {
  37610. frontImp: {
  37611. height: math.unit(1 + 11/12, "feet"),
  37612. name: "Front (Imp)",
  37613. image: {
  37614. source: "./media/characters/max-kobold/front-imp.svg",
  37615. extra: 1238/1134,
  37616. bottom: 81/1319
  37617. }
  37618. },
  37619. backImp: {
  37620. height: math.unit(1 + 11/12, "feet"),
  37621. name: "Back (Imp)",
  37622. image: {
  37623. source: "./media/characters/max-kobold/back-imp.svg",
  37624. extra: 1334/1175,
  37625. bottom: 34/1368
  37626. }
  37627. },
  37628. frontDemi: {
  37629. height: math.unit(5 + 9/12, "feet"),
  37630. name: "Front (Demi)",
  37631. image: {
  37632. source: "./media/characters/max-kobold/front-demi.svg",
  37633. extra: 1715/1685,
  37634. bottom: 54/1769
  37635. }
  37636. },
  37637. backDemi: {
  37638. height: math.unit(5 + 9/12, "feet"),
  37639. name: "Back (Demi)",
  37640. image: {
  37641. source: "./media/characters/max-kobold/back-demi.svg",
  37642. extra: 1752/1729,
  37643. bottom: 41/1793
  37644. }
  37645. },
  37646. handImp: {
  37647. height: math.unit(0.45, "feet"),
  37648. name: "Hand (Imp)",
  37649. image: {
  37650. source: "./media/characters/max-kobold/hand.svg"
  37651. }
  37652. },
  37653. pawImp: {
  37654. height: math.unit(0.46, "feet"),
  37655. name: "Paw (Imp)",
  37656. image: {
  37657. source: "./media/characters/max-kobold/paw.svg"
  37658. }
  37659. },
  37660. handDemi: {
  37661. height: math.unit(0.80, "feet"),
  37662. name: "Hand (Demi)",
  37663. image: {
  37664. source: "./media/characters/max-kobold/hand.svg"
  37665. }
  37666. },
  37667. pawDemi: {
  37668. height: math.unit(1.1, "feet"),
  37669. name: "Paw (Demi)",
  37670. image: {
  37671. source: "./media/characters/max-kobold/paw.svg"
  37672. }
  37673. },
  37674. headImp: {
  37675. height: math.unit(1.33, "feet"),
  37676. name: "Head (Imp)",
  37677. image: {
  37678. source: "./media/characters/max-kobold/head-imp.svg"
  37679. }
  37680. },
  37681. mawImp: {
  37682. height: math.unit(0.75, "feet"),
  37683. name: "Maw (Imp)",
  37684. image: {
  37685. source: "./media/characters/max-kobold/maw-imp.svg"
  37686. }
  37687. },
  37688. mawDemi: {
  37689. height: math.unit(0.42, "feet"),
  37690. name: "Maw (Demi)",
  37691. image: {
  37692. source: "./media/characters/max-kobold/maw-demi.svg"
  37693. }
  37694. },
  37695. },
  37696. [
  37697. {
  37698. name: "Normal",
  37699. height: math.unit(1 + 11/12, "feet"),
  37700. default: true
  37701. },
  37702. ]
  37703. ))
  37704. characterMakers.push(() => makeCharacter(
  37705. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37706. {
  37707. front: {
  37708. height: math.unit(7 + 5/12, "feet"),
  37709. name: "Front",
  37710. image: {
  37711. source: "./media/characters/carbon/front.svg",
  37712. extra: 1754/1689,
  37713. bottom: 65/1819
  37714. }
  37715. },
  37716. back: {
  37717. height: math.unit(7 + 5/12, "feet"),
  37718. name: "Back",
  37719. image: {
  37720. source: "./media/characters/carbon/back.svg",
  37721. extra: 1762/1695,
  37722. bottom: 24/1786
  37723. }
  37724. },
  37725. frontGigantamax: {
  37726. height: math.unit(150, "feet"),
  37727. name: "Front (Gigantamax)",
  37728. image: {
  37729. source: "./media/characters/carbon/front-gigantamax.svg",
  37730. extra: 1826/1669,
  37731. bottom: 59/1885
  37732. }
  37733. },
  37734. backGigantamax: {
  37735. height: math.unit(150, "feet"),
  37736. name: "Back (Gigantamax)",
  37737. image: {
  37738. source: "./media/characters/carbon/back-gigantamax.svg",
  37739. extra: 1796/1653,
  37740. bottom: 53/1849
  37741. }
  37742. },
  37743. maw: {
  37744. height: math.unit(0.48, "feet"),
  37745. name: "Maw",
  37746. image: {
  37747. source: "./media/characters/carbon/maw.svg"
  37748. }
  37749. },
  37750. mawGigantamax: {
  37751. height: math.unit(7.5, "feet"),
  37752. name: "Maw (Gigantamax)",
  37753. image: {
  37754. source: "./media/characters/carbon/maw-gigantamax.svg"
  37755. }
  37756. },
  37757. },
  37758. [
  37759. {
  37760. name: "Normal",
  37761. height: math.unit(7 + 5/12, "feet"),
  37762. default: true
  37763. },
  37764. ]
  37765. ))
  37766. characterMakers.push(() => makeCharacter(
  37767. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  37768. {
  37769. front: {
  37770. height: math.unit(6, "feet"),
  37771. name: "Front",
  37772. image: {
  37773. source: "./media/characters/maverick/front.svg",
  37774. extra: 1672/1661,
  37775. bottom: 85/1757
  37776. }
  37777. },
  37778. back: {
  37779. height: math.unit(6, "feet"),
  37780. name: "Back",
  37781. image: {
  37782. source: "./media/characters/maverick/back.svg",
  37783. extra: 1642/1631,
  37784. bottom: 38/1680
  37785. }
  37786. },
  37787. },
  37788. [
  37789. {
  37790. name: "Normal",
  37791. height: math.unit(6, "feet"),
  37792. default: true
  37793. },
  37794. ]
  37795. ))
  37796. characterMakers.push(() => makeCharacter(
  37797. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  37798. {
  37799. front: {
  37800. height: math.unit(15, "feet"),
  37801. weight: math.unit(615, "lb"),
  37802. name: "Front",
  37803. image: {
  37804. source: "./media/characters/grockle/front.svg",
  37805. extra: 1535/1427,
  37806. bottom: 56/1591
  37807. }
  37808. },
  37809. },
  37810. [
  37811. {
  37812. name: "Normal",
  37813. height: math.unit(15, "feet"),
  37814. default: true
  37815. },
  37816. {
  37817. name: "Large",
  37818. height: math.unit(150, "feet")
  37819. },
  37820. {
  37821. name: "Macro",
  37822. height: math.unit(1876, "feet")
  37823. },
  37824. {
  37825. name: "Mega Macro",
  37826. height: math.unit(121940, "feet")
  37827. },
  37828. {
  37829. name: "Giga Macro",
  37830. height: math.unit(750, "km")
  37831. },
  37832. {
  37833. name: "Tera Macro",
  37834. height: math.unit(750000, "km")
  37835. },
  37836. {
  37837. name: "Galactic",
  37838. height: math.unit(1.4e5, "km")
  37839. },
  37840. {
  37841. name: "Godlike",
  37842. height: math.unit(9.8e280, "galaxies")
  37843. },
  37844. ]
  37845. ))
  37846. characterMakers.push(() => makeCharacter(
  37847. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  37848. {
  37849. front: {
  37850. height: math.unit(11, "meters"),
  37851. weight: math.unit(20, "tonnes"),
  37852. name: "Front",
  37853. image: {
  37854. source: "./media/characters/alistair/front.svg",
  37855. extra: 1265/1009,
  37856. bottom: 93/1358
  37857. }
  37858. },
  37859. },
  37860. [
  37861. {
  37862. name: "Normal",
  37863. height: math.unit(11, "meters"),
  37864. default: true
  37865. },
  37866. ]
  37867. ))
  37868. characterMakers.push(() => makeCharacter(
  37869. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  37870. {
  37871. front: {
  37872. height: math.unit(5 + 8/12, "feet"),
  37873. name: "Front",
  37874. image: {
  37875. source: "./media/characters/haruka/front.svg",
  37876. extra: 2012/1952,
  37877. bottom: 0/2012
  37878. }
  37879. },
  37880. },
  37881. [
  37882. {
  37883. name: "Normal",
  37884. height: math.unit(5 + 8/12, "feet"),
  37885. default: true
  37886. },
  37887. ]
  37888. ))
  37889. characterMakers.push(() => makeCharacter(
  37890. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  37891. {
  37892. back: {
  37893. height: math.unit(9, "feet"),
  37894. name: "Back",
  37895. image: {
  37896. source: "./media/characters/vivian-sylveon/back.svg",
  37897. extra: 1853/1714,
  37898. bottom: 0/1853
  37899. }
  37900. },
  37901. },
  37902. [
  37903. {
  37904. name: "Normal",
  37905. height: math.unit(9, "feet"),
  37906. default: true
  37907. },
  37908. {
  37909. name: "Macro",
  37910. height: math.unit(500, "feet")
  37911. },
  37912. {
  37913. name: "Megamacro",
  37914. height: math.unit(600, "miles")
  37915. },
  37916. {
  37917. name: "Gigamacro",
  37918. height: math.unit(30000, "miles")
  37919. },
  37920. ]
  37921. ))
  37922. characterMakers.push(() => makeCharacter(
  37923. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  37924. {
  37925. anthro: {
  37926. height: math.unit(5 + 10/12, "feet"),
  37927. weight: math.unit(100, "lb"),
  37928. name: "Anthro",
  37929. image: {
  37930. source: "./media/characters/daiki/anthro.svg",
  37931. extra: 1115/1027,
  37932. bottom: 69/1184
  37933. }
  37934. },
  37935. feral: {
  37936. height: math.unit(200, "feet"),
  37937. name: "Feral",
  37938. image: {
  37939. source: "./media/characters/daiki/feral.svg",
  37940. extra: 1256/313,
  37941. bottom: 39/1295
  37942. }
  37943. },
  37944. feralHead: {
  37945. height: math.unit(171, "feet"),
  37946. name: "Feral Head",
  37947. image: {
  37948. source: "./media/characters/daiki/feral-head.svg"
  37949. }
  37950. },
  37951. manaDragon: {
  37952. height: math.unit(170, "meters"),
  37953. name: "Mana-dragon",
  37954. image: {
  37955. source: "./media/characters/daiki/mana-dragon.svg",
  37956. extra: 763/420,
  37957. bottom: 97/860
  37958. }
  37959. },
  37960. },
  37961. [
  37962. {
  37963. name: "Normal",
  37964. height: math.unit(5 + 10/12, "feet"),
  37965. default: true
  37966. },
  37967. ]
  37968. ))
  37969. characterMakers.push(() => makeCharacter(
  37970. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  37971. {
  37972. fullyEquippedFront: {
  37973. height: math.unit(3 + 1/12, "feet"),
  37974. weight: math.unit(24, "lb"),
  37975. name: "Fully Equipped (Front)",
  37976. image: {
  37977. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  37978. extra: 687/605,
  37979. bottom: 18/705
  37980. }
  37981. },
  37982. fullyEquippedBack: {
  37983. height: math.unit(3 + 1/12, "feet"),
  37984. weight: math.unit(24, "lb"),
  37985. name: "Fully Equipped (Back)",
  37986. image: {
  37987. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  37988. extra: 689/590,
  37989. bottom: 18/707
  37990. }
  37991. },
  37992. dailyWear: {
  37993. height: math.unit(3 + 1/12, "feet"),
  37994. weight: math.unit(24, "lb"),
  37995. name: "Daily Wear",
  37996. image: {
  37997. source: "./media/characters/tea-spot/daily-wear.svg",
  37998. extra: 701/620,
  37999. bottom: 21/722
  38000. }
  38001. },
  38002. maidWork: {
  38003. height: math.unit(3 + 1/12, "feet"),
  38004. weight: math.unit(24, "lb"),
  38005. name: "Maid Work",
  38006. image: {
  38007. source: "./media/characters/tea-spot/maid-work.svg",
  38008. extra: 693/609,
  38009. bottom: 15/708
  38010. }
  38011. },
  38012. },
  38013. [
  38014. {
  38015. name: "Normal",
  38016. height: math.unit(3 + 1/12, "feet"),
  38017. default: true
  38018. },
  38019. ]
  38020. ))
  38021. characterMakers.push(() => makeCharacter(
  38022. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38023. {
  38024. front: {
  38025. height: math.unit(175, "cm"),
  38026. weight: math.unit(75, "kg"),
  38027. name: "Front",
  38028. image: {
  38029. source: "./media/characters/chee/front.svg",
  38030. extra: 1796/1740,
  38031. bottom: 40/1836
  38032. }
  38033. },
  38034. },
  38035. [
  38036. {
  38037. name: "Micro-Micro",
  38038. height: math.unit(1, "nm")
  38039. },
  38040. {
  38041. name: "Micro-erst",
  38042. height: math.unit(1, "micrometer")
  38043. },
  38044. {
  38045. name: "Micro-er",
  38046. height: math.unit(1, "cm")
  38047. },
  38048. {
  38049. name: "Normal",
  38050. height: math.unit(175, "cm"),
  38051. default: true
  38052. },
  38053. {
  38054. name: "Macro",
  38055. height: math.unit(100, "m")
  38056. },
  38057. {
  38058. name: "Macro-er",
  38059. height: math.unit(1, "km")
  38060. },
  38061. {
  38062. name: "Macro-erst",
  38063. height: math.unit(10, "km")
  38064. },
  38065. {
  38066. name: "Macro-Macro",
  38067. height: math.unit(100, "km")
  38068. },
  38069. ]
  38070. ))
  38071. characterMakers.push(() => makeCharacter(
  38072. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38073. {
  38074. front: {
  38075. height: math.unit(11 + 9/12, "feet"),
  38076. weight: math.unit(935, "lb"),
  38077. name: "Front",
  38078. image: {
  38079. source: "./media/characters/kingsley/front.svg",
  38080. extra: 1803/1674,
  38081. bottom: 127/1930
  38082. }
  38083. },
  38084. frontNude: {
  38085. height: math.unit(11 + 9/12, "feet"),
  38086. weight: math.unit(935, "lb"),
  38087. name: "Front (Nude)",
  38088. image: {
  38089. source: "./media/characters/kingsley/front-nude.svg",
  38090. extra: 1803/1674,
  38091. bottom: 127/1930
  38092. }
  38093. },
  38094. },
  38095. [
  38096. {
  38097. name: "Normal",
  38098. height: math.unit(11 + 9/12, "feet"),
  38099. default: true
  38100. },
  38101. ]
  38102. ))
  38103. characterMakers.push(() => makeCharacter(
  38104. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38105. {
  38106. side: {
  38107. height: math.unit(9, "feet"),
  38108. name: "Side",
  38109. image: {
  38110. source: "./media/characters/rymel/side.svg",
  38111. extra: 792/469,
  38112. bottom: 121/913
  38113. }
  38114. },
  38115. maw: {
  38116. height: math.unit(2.4, "meters"),
  38117. name: "Maw",
  38118. image: {
  38119. source: "./media/characters/rymel/maw.svg"
  38120. }
  38121. },
  38122. },
  38123. [
  38124. {
  38125. name: "House Drake",
  38126. height: math.unit(2, "feet")
  38127. },
  38128. {
  38129. name: "Reduced",
  38130. height: math.unit(4.5, "feet")
  38131. },
  38132. {
  38133. name: "Normal",
  38134. height: math.unit(9, "feet"),
  38135. default: true
  38136. },
  38137. ]
  38138. ))
  38139. characterMakers.push(() => makeCharacter(
  38140. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38141. {
  38142. front: {
  38143. height: math.unit(1.74, "meters"),
  38144. weight: math.unit(55, "kg"),
  38145. name: "Front",
  38146. image: {
  38147. source: "./media/characters/rubus/front.svg",
  38148. extra: 1894/1742,
  38149. bottom: 44/1938
  38150. }
  38151. },
  38152. },
  38153. [
  38154. {
  38155. name: "Normal",
  38156. height: math.unit(1.74, "meters"),
  38157. default: true
  38158. },
  38159. ]
  38160. ))
  38161. characterMakers.push(() => makeCharacter(
  38162. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38163. {
  38164. front: {
  38165. height: math.unit(5 + 2/12, "feet"),
  38166. weight: math.unit(112, "lb"),
  38167. name: "Front",
  38168. image: {
  38169. source: "./media/characters/cassie-kingston/front.svg",
  38170. extra: 1438/1390,
  38171. bottom: 47/1485
  38172. }
  38173. },
  38174. },
  38175. [
  38176. {
  38177. name: "Normal",
  38178. height: math.unit(5 + 2/12, "feet"),
  38179. default: true
  38180. },
  38181. {
  38182. name: "Macro",
  38183. height: math.unit(128, "feet")
  38184. },
  38185. {
  38186. name: "Megamacro",
  38187. height: math.unit(2.56, "miles")
  38188. },
  38189. ]
  38190. ))
  38191. characterMakers.push(() => makeCharacter(
  38192. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38193. {
  38194. front: {
  38195. height: math.unit(7, "feet"),
  38196. name: "Front",
  38197. image: {
  38198. source: "./media/characters/fox/front.svg",
  38199. extra: 1798/1703,
  38200. bottom: 55/1853
  38201. }
  38202. },
  38203. back: {
  38204. height: math.unit(7, "feet"),
  38205. name: "Back",
  38206. image: {
  38207. source: "./media/characters/fox/back.svg",
  38208. extra: 1748/1649,
  38209. bottom: 32/1780
  38210. }
  38211. },
  38212. head: {
  38213. height: math.unit(1.95, "feet"),
  38214. name: "Head",
  38215. image: {
  38216. source: "./media/characters/fox/head.svg"
  38217. }
  38218. },
  38219. dick: {
  38220. height: math.unit(1.33, "feet"),
  38221. name: "Dick",
  38222. image: {
  38223. source: "./media/characters/fox/dick.svg"
  38224. }
  38225. },
  38226. foot: {
  38227. height: math.unit(1, "feet"),
  38228. name: "Foot",
  38229. image: {
  38230. source: "./media/characters/fox/foot.svg"
  38231. }
  38232. },
  38233. paw: {
  38234. height: math.unit(0.92, "feet"),
  38235. name: "Paw",
  38236. image: {
  38237. source: "./media/characters/fox/paw.svg"
  38238. }
  38239. },
  38240. },
  38241. [
  38242. {
  38243. name: "Small",
  38244. height: math.unit(3, "inches")
  38245. },
  38246. {
  38247. name: "\"Realistic\"",
  38248. height: math.unit(7, "feet")
  38249. },
  38250. {
  38251. name: "Normal",
  38252. height: math.unit(150, "feet"),
  38253. default: true
  38254. },
  38255. {
  38256. name: "BIG",
  38257. height: math.unit(1200, "feet")
  38258. },
  38259. {
  38260. name: "👀",
  38261. height: math.unit(5, "miles")
  38262. },
  38263. {
  38264. name: "👀👀👀",
  38265. height: math.unit(64, "miles")
  38266. },
  38267. ]
  38268. ))
  38269. characterMakers.push(() => makeCharacter(
  38270. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38271. {
  38272. front: {
  38273. height: math.unit(625, "feet"),
  38274. name: "Front",
  38275. image: {
  38276. source: "./media/characters/asonja-rossa/front.svg",
  38277. extra: 1833/1686,
  38278. bottom: 24/1857
  38279. }
  38280. },
  38281. back: {
  38282. height: math.unit(625, "feet"),
  38283. name: "Back",
  38284. image: {
  38285. source: "./media/characters/asonja-rossa/back.svg",
  38286. extra: 1852/1753,
  38287. bottom: 26/1878
  38288. }
  38289. },
  38290. },
  38291. [
  38292. {
  38293. name: "Macro",
  38294. height: math.unit(625, "feet"),
  38295. default: true
  38296. },
  38297. ]
  38298. ))
  38299. characterMakers.push(() => makeCharacter(
  38300. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38301. {
  38302. side: {
  38303. height: math.unit(8, "feet"),
  38304. name: "Side",
  38305. image: {
  38306. source: "./media/characters/rezukii/side.svg",
  38307. extra: 979/542,
  38308. bottom: 87/1066
  38309. }
  38310. },
  38311. sitting: {
  38312. height: math.unit(14.6, "feet"),
  38313. name: "Sitting",
  38314. image: {
  38315. source: "./media/characters/rezukii/sitting.svg",
  38316. extra: 1023/813,
  38317. bottom: 45/1068
  38318. }
  38319. },
  38320. },
  38321. [
  38322. {
  38323. name: "Tiny",
  38324. height: math.unit(2, "feet")
  38325. },
  38326. {
  38327. name: "Smol",
  38328. height: math.unit(4, "feet")
  38329. },
  38330. {
  38331. name: "Normal",
  38332. height: math.unit(8, "feet"),
  38333. default: true
  38334. },
  38335. {
  38336. name: "Big",
  38337. height: math.unit(12, "feet")
  38338. },
  38339. {
  38340. name: "Macro",
  38341. height: math.unit(30, "feet")
  38342. },
  38343. ]
  38344. ))
  38345. characterMakers.push(() => makeCharacter(
  38346. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38347. {
  38348. front: {
  38349. height: math.unit(14, "feet"),
  38350. weight: math.unit(9.5, "tonnes"),
  38351. name: "Front",
  38352. image: {
  38353. source: "./media/characters/dawnheart/front.svg",
  38354. extra: 2792/2675,
  38355. bottom: 64/2856
  38356. }
  38357. },
  38358. },
  38359. [
  38360. {
  38361. name: "Normal",
  38362. height: math.unit(14, "feet"),
  38363. default: true
  38364. },
  38365. ]
  38366. ))
  38367. characterMakers.push(() => makeCharacter(
  38368. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38369. {
  38370. front: {
  38371. height: math.unit(1.7, "m"),
  38372. name: "Front",
  38373. image: {
  38374. source: "./media/characters/gladi/front.svg",
  38375. extra: 1460/1362,
  38376. bottom: 19/1479
  38377. }
  38378. },
  38379. back: {
  38380. height: math.unit(1.7, "m"),
  38381. name: "Back",
  38382. image: {
  38383. source: "./media/characters/gladi/back.svg",
  38384. extra: 1459/1357,
  38385. bottom: 12/1471
  38386. }
  38387. },
  38388. feral: {
  38389. height: math.unit(2.05, "m"),
  38390. name: "Feral",
  38391. image: {
  38392. source: "./media/characters/gladi/feral.svg",
  38393. extra: 821/557,
  38394. bottom: 91/912
  38395. }
  38396. },
  38397. },
  38398. [
  38399. {
  38400. name: "Shortest",
  38401. height: math.unit(70, "cm")
  38402. },
  38403. {
  38404. name: "Normal",
  38405. height: math.unit(1.7, "m")
  38406. },
  38407. {
  38408. name: "Macro",
  38409. height: math.unit(10, "m"),
  38410. default: true
  38411. },
  38412. {
  38413. name: "Tallest",
  38414. height: math.unit(200, "m")
  38415. },
  38416. ]
  38417. ))
  38418. characterMakers.push(() => makeCharacter(
  38419. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38420. {
  38421. front: {
  38422. height: math.unit(5 + 7/12, "feet"),
  38423. weight: math.unit(2, "tons"),
  38424. name: "Front",
  38425. image: {
  38426. source: "./media/characters/erdno/front.svg",
  38427. extra: 1234/1129,
  38428. bottom: 35/1269
  38429. }
  38430. },
  38431. angled: {
  38432. height: math.unit(5 + 7/12, "feet"),
  38433. weight: math.unit(2, "tons"),
  38434. name: "Angled",
  38435. image: {
  38436. source: "./media/characters/erdno/angled.svg",
  38437. extra: 1185/1139,
  38438. bottom: 36/1221
  38439. }
  38440. },
  38441. side: {
  38442. height: math.unit(5 + 7/12, "feet"),
  38443. weight: math.unit(2, "tons"),
  38444. name: "Side",
  38445. image: {
  38446. source: "./media/characters/erdno/side.svg",
  38447. extra: 1191/1144,
  38448. bottom: 40/1231
  38449. }
  38450. },
  38451. back: {
  38452. height: math.unit(5 + 7/12, "feet"),
  38453. weight: math.unit(2, "tons"),
  38454. name: "Back",
  38455. image: {
  38456. source: "./media/characters/erdno/back.svg",
  38457. extra: 1202/1146,
  38458. bottom: 17/1219
  38459. }
  38460. },
  38461. frontNsfw: {
  38462. height: math.unit(5 + 7/12, "feet"),
  38463. weight: math.unit(2, "tons"),
  38464. name: "Front (NSFW)",
  38465. image: {
  38466. source: "./media/characters/erdno/front-nsfw.svg",
  38467. extra: 1234/1129,
  38468. bottom: 35/1269
  38469. }
  38470. },
  38471. angledNsfw: {
  38472. height: math.unit(5 + 7/12, "feet"),
  38473. weight: math.unit(2, "tons"),
  38474. name: "Angled (NSFW)",
  38475. image: {
  38476. source: "./media/characters/erdno/angled-nsfw.svg",
  38477. extra: 1185/1139,
  38478. bottom: 36/1221
  38479. }
  38480. },
  38481. sideNsfw: {
  38482. height: math.unit(5 + 7/12, "feet"),
  38483. weight: math.unit(2, "tons"),
  38484. name: "Side (NSFW)",
  38485. image: {
  38486. source: "./media/characters/erdno/side-nsfw.svg",
  38487. extra: 1191/1144,
  38488. bottom: 40/1231
  38489. }
  38490. },
  38491. backNsfw: {
  38492. height: math.unit(5 + 7/12, "feet"),
  38493. weight: math.unit(2, "tons"),
  38494. name: "Back (NSFW)",
  38495. image: {
  38496. source: "./media/characters/erdno/back-nsfw.svg",
  38497. extra: 1202/1146,
  38498. bottom: 17/1219
  38499. }
  38500. },
  38501. frontHyper: {
  38502. height: math.unit(5 + 7/12, "feet"),
  38503. weight: math.unit(2, "tons"),
  38504. name: "Front (Hyper)",
  38505. image: {
  38506. source: "./media/characters/erdno/front-hyper.svg",
  38507. extra: 1298/1136,
  38508. bottom: 35/1333
  38509. }
  38510. },
  38511. },
  38512. [
  38513. {
  38514. name: "Normal",
  38515. height: math.unit(5 + 7/12, "feet"),
  38516. default: true
  38517. },
  38518. {
  38519. name: "Big",
  38520. height: math.unit(5.7, "meters")
  38521. },
  38522. {
  38523. name: "Macro",
  38524. height: math.unit(5.7, "kilometers")
  38525. },
  38526. {
  38527. name: "Megamacro",
  38528. height: math.unit(5.7, "earths")
  38529. },
  38530. ]
  38531. ))
  38532. characterMakers.push(() => makeCharacter(
  38533. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38534. {
  38535. front: {
  38536. height: math.unit(5 + 10/12, "feet"),
  38537. weight: math.unit(150, "lb"),
  38538. name: "Front",
  38539. image: {
  38540. source: "./media/characters/jamie/front.svg",
  38541. extra: 1908/1768,
  38542. bottom: 19/1927
  38543. }
  38544. },
  38545. },
  38546. [
  38547. {
  38548. name: "Minimum",
  38549. height: math.unit(2, "cm")
  38550. },
  38551. {
  38552. name: "Micro",
  38553. height: math.unit(3, "inches")
  38554. },
  38555. {
  38556. name: "Normal",
  38557. height: math.unit(5 + 10/12, "feet"),
  38558. default: true
  38559. },
  38560. {
  38561. name: "Macro",
  38562. height: math.unit(150, "feet")
  38563. },
  38564. {
  38565. name: "Megamacro",
  38566. height: math.unit(10000, "m")
  38567. },
  38568. ]
  38569. ))
  38570. characterMakers.push(() => makeCharacter(
  38571. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38572. {
  38573. front: {
  38574. height: math.unit(2, "meters"),
  38575. weight: math.unit(100, "kg"),
  38576. name: "Front",
  38577. image: {
  38578. source: "./media/characters/shiron/front.svg",
  38579. extra: 2103/1985,
  38580. bottom: 98/2201
  38581. }
  38582. },
  38583. back: {
  38584. height: math.unit(2, "meters"),
  38585. weight: math.unit(100, "kg"),
  38586. name: "Back",
  38587. image: {
  38588. source: "./media/characters/shiron/back.svg",
  38589. extra: 2110/2015,
  38590. bottom: 89/2199
  38591. }
  38592. },
  38593. hand: {
  38594. height: math.unit(0.96, "feet"),
  38595. name: "Hand",
  38596. image: {
  38597. source: "./media/characters/shiron/hand.svg"
  38598. }
  38599. },
  38600. foot: {
  38601. height: math.unit(1.464, "feet"),
  38602. name: "Foot",
  38603. image: {
  38604. source: "./media/characters/shiron/foot.svg"
  38605. }
  38606. },
  38607. },
  38608. [
  38609. {
  38610. name: "Normal",
  38611. height: math.unit(2, "meters")
  38612. },
  38613. {
  38614. name: "Macro",
  38615. height: math.unit(500, "meters"),
  38616. default: true
  38617. },
  38618. {
  38619. name: "Megamacro",
  38620. height: math.unit(20, "km")
  38621. },
  38622. ]
  38623. ))
  38624. characterMakers.push(() => makeCharacter(
  38625. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38626. {
  38627. front: {
  38628. height: math.unit(6, "feet"),
  38629. name: "Front",
  38630. image: {
  38631. source: "./media/characters/sam/front.svg",
  38632. extra: 849/826,
  38633. bottom: 19/868
  38634. }
  38635. },
  38636. },
  38637. [
  38638. {
  38639. name: "Normal",
  38640. height: math.unit(6, "feet"),
  38641. default: true
  38642. },
  38643. ]
  38644. ))
  38645. characterMakers.push(() => makeCharacter(
  38646. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38647. {
  38648. front: {
  38649. height: math.unit(8 + 4/12, "feet"),
  38650. weight: math.unit(122, "kg"),
  38651. name: "Front",
  38652. image: {
  38653. source: "./media/characters/namori-kurogawa/front.svg",
  38654. extra: 1894/1576,
  38655. bottom: 34/1928
  38656. }
  38657. },
  38658. },
  38659. [
  38660. {
  38661. name: "Normal",
  38662. height: math.unit(8 + 4/12, "feet"),
  38663. default: true
  38664. },
  38665. ]
  38666. ))
  38667. characterMakers.push(() => makeCharacter(
  38668. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38669. {
  38670. front: {
  38671. height: math.unit(9, "feet"),
  38672. weight: math.unit(621, "lb"),
  38673. name: "Front",
  38674. image: {
  38675. source: "./media/characters/unmru/front.svg",
  38676. extra: 1853/1747,
  38677. bottom: 73/1926
  38678. }
  38679. },
  38680. side: {
  38681. height: math.unit(9, "feet"),
  38682. weight: math.unit(621, "lb"),
  38683. name: "Side",
  38684. image: {
  38685. source: "./media/characters/unmru/side.svg",
  38686. extra: 1781/1671,
  38687. bottom: 127/1908
  38688. }
  38689. },
  38690. back: {
  38691. height: math.unit(9, "feet"),
  38692. weight: math.unit(621, "lb"),
  38693. name: "Back",
  38694. image: {
  38695. source: "./media/characters/unmru/back.svg",
  38696. extra: 1894/1765,
  38697. bottom: 75/1969
  38698. }
  38699. },
  38700. dick: {
  38701. height: math.unit(3, "feet"),
  38702. weight: math.unit(35, "lb"),
  38703. name: "Dick",
  38704. image: {
  38705. source: "./media/characters/unmru/dick.svg"
  38706. }
  38707. },
  38708. },
  38709. [
  38710. {
  38711. name: "Normal",
  38712. height: math.unit(9, "feet")
  38713. },
  38714. {
  38715. name: "Natural",
  38716. height: math.unit(27, "feet"),
  38717. default: true
  38718. },
  38719. {
  38720. name: "Giant",
  38721. height: math.unit(90, "feet")
  38722. },
  38723. {
  38724. name: "Kaiju",
  38725. height: math.unit(270, "feet")
  38726. },
  38727. {
  38728. name: "Macro",
  38729. height: math.unit(900, "feet")
  38730. },
  38731. {
  38732. name: "Macro+",
  38733. height: math.unit(2700, "feet")
  38734. },
  38735. {
  38736. name: "Megamacro",
  38737. height: math.unit(9000, "feet")
  38738. },
  38739. {
  38740. name: "City-Crushing",
  38741. height: math.unit(27000, "feet")
  38742. },
  38743. {
  38744. name: "Mountain-Mashing",
  38745. height: math.unit(90000, "feet")
  38746. },
  38747. {
  38748. name: "Earth-Eclipsing",
  38749. height: math.unit(2.7e8, "feet")
  38750. },
  38751. {
  38752. name: "Sol-Swallowing",
  38753. height: math.unit(9e10, "feet")
  38754. },
  38755. {
  38756. name: "Majoris-Munching",
  38757. height: math.unit(2.7e13, "feet")
  38758. },
  38759. ]
  38760. ))
  38761. characterMakers.push(() => makeCharacter(
  38762. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  38763. {
  38764. front: {
  38765. height: math.unit(1, "inch"),
  38766. name: "Front",
  38767. image: {
  38768. source: "./media/characters/squeaks-mouse/front.svg",
  38769. extra: 352/308,
  38770. bottom: 25/377
  38771. }
  38772. },
  38773. },
  38774. [
  38775. {
  38776. name: "Micro",
  38777. height: math.unit(1, "inch"),
  38778. default: true
  38779. },
  38780. ]
  38781. ))
  38782. characterMakers.push(() => makeCharacter(
  38783. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  38784. {
  38785. side: {
  38786. height: math.unit(35, "feet"),
  38787. name: "Side",
  38788. image: {
  38789. source: "./media/characters/sayko/side.svg",
  38790. extra: 1697/1021,
  38791. bottom: 82/1779
  38792. }
  38793. },
  38794. head: {
  38795. height: math.unit(16, "feet"),
  38796. name: "Head",
  38797. image: {
  38798. source: "./media/characters/sayko/head.svg"
  38799. }
  38800. },
  38801. forepaw: {
  38802. height: math.unit(7.85, "feet"),
  38803. name: "Forepaw",
  38804. image: {
  38805. source: "./media/characters/sayko/forepaw.svg"
  38806. }
  38807. },
  38808. hindpaw: {
  38809. height: math.unit(8.8, "feet"),
  38810. name: "Hindpaw",
  38811. image: {
  38812. source: "./media/characters/sayko/hindpaw.svg"
  38813. }
  38814. },
  38815. },
  38816. [
  38817. {
  38818. name: "Normal",
  38819. height: math.unit(35, "feet"),
  38820. default: true
  38821. },
  38822. {
  38823. name: "Colossus",
  38824. height: math.unit(100, "meters")
  38825. },
  38826. {
  38827. name: "\"Small\" Deity",
  38828. height: math.unit(1, "km")
  38829. },
  38830. {
  38831. name: "\"Large\" Deity",
  38832. height: math.unit(15, "km")
  38833. },
  38834. ]
  38835. ))
  38836. characterMakers.push(() => makeCharacter(
  38837. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  38838. {
  38839. front: {
  38840. height: math.unit(6, "feet"),
  38841. weight: math.unit(250, "lb"),
  38842. name: "Front",
  38843. image: {
  38844. source: "./media/characters/mukiro/front.svg",
  38845. extra: 1368/1310,
  38846. bottom: 34/1402
  38847. }
  38848. },
  38849. },
  38850. [
  38851. {
  38852. name: "Normal",
  38853. height: math.unit(6, "feet"),
  38854. default: true
  38855. },
  38856. ]
  38857. ))
  38858. characterMakers.push(() => makeCharacter(
  38859. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  38860. {
  38861. front: {
  38862. height: math.unit(12 + 4/12, "feet"),
  38863. name: "Front",
  38864. image: {
  38865. source: "./media/characters/zeph-the-tiger-god/front.svg",
  38866. extra: 1346/1311,
  38867. bottom: 65/1411
  38868. }
  38869. },
  38870. },
  38871. [
  38872. {
  38873. name: "Base",
  38874. height: math.unit(12 + 4/12, "feet"),
  38875. default: true
  38876. },
  38877. {
  38878. name: "Macro",
  38879. height: math.unit(150, "feet")
  38880. },
  38881. {
  38882. name: "Mega",
  38883. height: math.unit(2, "miles")
  38884. },
  38885. {
  38886. name: "Demi God",
  38887. height: math.unit(4, "AU")
  38888. },
  38889. {
  38890. name: "God Size",
  38891. height: math.unit(1, "universe")
  38892. },
  38893. ]
  38894. ))
  38895. characterMakers.push(() => makeCharacter(
  38896. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  38897. {
  38898. front: {
  38899. height: math.unit(3 + 3/12, "feet"),
  38900. weight: math.unit(88, "lb"),
  38901. name: "Front",
  38902. image: {
  38903. source: "./media/characters/trey/front.svg",
  38904. extra: 1815/1509,
  38905. bottom: 60/1875
  38906. }
  38907. },
  38908. },
  38909. [
  38910. {
  38911. name: "Normal",
  38912. height: math.unit(3 + 3/12, "feet"),
  38913. default: true
  38914. },
  38915. ]
  38916. ))
  38917. characterMakers.push(() => makeCharacter(
  38918. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  38919. {
  38920. front: {
  38921. height: math.unit(4, "meters"),
  38922. name: "Front",
  38923. image: {
  38924. source: "./media/characters/adelonda/front.svg",
  38925. extra: 1077/982,
  38926. bottom: 39/1116
  38927. }
  38928. },
  38929. back: {
  38930. height: math.unit(4, "meters"),
  38931. name: "Back",
  38932. image: {
  38933. source: "./media/characters/adelonda/back.svg",
  38934. extra: 1105/1003,
  38935. bottom: 25/1130
  38936. }
  38937. },
  38938. feral: {
  38939. height: math.unit(40/1.5, "meters"),
  38940. name: "Feral",
  38941. image: {
  38942. source: "./media/characters/adelonda/feral.svg",
  38943. extra: 597/271,
  38944. bottom: 387/984
  38945. }
  38946. },
  38947. },
  38948. [
  38949. {
  38950. name: "Normal",
  38951. height: math.unit(4, "meters"),
  38952. default: true
  38953. },
  38954. ]
  38955. ))
  38956. characterMakers.push(() => makeCharacter(
  38957. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  38958. {
  38959. front: {
  38960. height: math.unit(8 + 4/12, "feet"),
  38961. weight: math.unit(670, "lb"),
  38962. name: "Front",
  38963. image: {
  38964. source: "./media/characters/acadiel/front.svg",
  38965. extra: 1901/1595,
  38966. bottom: 142/2043
  38967. }
  38968. },
  38969. },
  38970. [
  38971. {
  38972. name: "Normal",
  38973. height: math.unit(8 + 4/12, "feet"),
  38974. default: true
  38975. },
  38976. {
  38977. name: "Macro",
  38978. height: math.unit(200, "feet")
  38979. },
  38980. ]
  38981. ))
  38982. characterMakers.push(() => makeCharacter(
  38983. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  38984. {
  38985. front: {
  38986. height: math.unit(6 + 2/12, "feet"),
  38987. weight: math.unit(185, "lb"),
  38988. name: "Front",
  38989. image: {
  38990. source: "./media/characters/kayne-ein/front.svg",
  38991. extra: 1780/1560,
  38992. bottom: 81/1861
  38993. }
  38994. },
  38995. },
  38996. [
  38997. {
  38998. name: "Normal",
  38999. height: math.unit(6 + 2/12, "feet"),
  39000. default: true
  39001. },
  39002. {
  39003. name: "Transformation Stage",
  39004. height: math.unit(15, "feet")
  39005. },
  39006. {
  39007. name: "Macro",
  39008. height: math.unit(150, "feet")
  39009. },
  39010. {
  39011. name: "Earth's Shadow",
  39012. height: math.unit(6200, "miles")
  39013. },
  39014. {
  39015. name: "Universal Demon",
  39016. height: math.unit(28e9, "parsecs")
  39017. },
  39018. {
  39019. name: "Multiverse God",
  39020. height: math.unit(3, "multiverses")
  39021. },
  39022. ]
  39023. ))
  39024. characterMakers.push(() => makeCharacter(
  39025. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39026. {
  39027. front: {
  39028. height: math.unit(5 + 5/12, "feet"),
  39029. name: "Front",
  39030. image: {
  39031. source: "./media/characters/fawn/front.svg",
  39032. extra: 1873/1731,
  39033. bottom: 95/1968
  39034. }
  39035. },
  39036. back: {
  39037. height: math.unit(5 + 5/12, "feet"),
  39038. name: "Back",
  39039. image: {
  39040. source: "./media/characters/fawn/back.svg",
  39041. extra: 1813/1700,
  39042. bottom: 14/1827
  39043. }
  39044. },
  39045. hoof: {
  39046. height: math.unit(1.45, "feet"),
  39047. name: "Hoof",
  39048. image: {
  39049. source: "./media/characters/fawn/hoof.svg"
  39050. }
  39051. },
  39052. },
  39053. [
  39054. {
  39055. name: "Normal",
  39056. height: math.unit(5 + 5/12, "feet"),
  39057. default: true
  39058. },
  39059. ]
  39060. ))
  39061. characterMakers.push(() => makeCharacter(
  39062. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39063. {
  39064. front: {
  39065. height: math.unit(2 + 5/12, "feet"),
  39066. name: "Front",
  39067. image: {
  39068. source: "./media/characters/orion/front.svg",
  39069. extra: 1366/1304,
  39070. bottom: 43/1409
  39071. }
  39072. },
  39073. paw: {
  39074. height: math.unit(0.52, "feet"),
  39075. name: "Paw",
  39076. image: {
  39077. source: "./media/characters/orion/paw.svg"
  39078. }
  39079. },
  39080. },
  39081. [
  39082. {
  39083. name: "Normal",
  39084. height: math.unit(2 + 5/12, "feet"),
  39085. default: true
  39086. },
  39087. ]
  39088. ))
  39089. characterMakers.push(() => makeCharacter(
  39090. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39091. {
  39092. front: {
  39093. height: math.unit(5 + 10/12, "feet"),
  39094. name: "Front",
  39095. image: {
  39096. source: "./media/characters/vera/front.svg",
  39097. extra: 1680/1575,
  39098. bottom: 49/1729
  39099. }
  39100. },
  39101. back: {
  39102. height: math.unit(5 + 10/12, "feet"),
  39103. name: "Back",
  39104. image: {
  39105. source: "./media/characters/vera/back.svg",
  39106. extra: 1700/1588,
  39107. bottom: 18/1718
  39108. }
  39109. },
  39110. arcanine: {
  39111. height: math.unit(6 + 8/12, "feet"),
  39112. name: "Arcanine",
  39113. image: {
  39114. source: "./media/characters/vera/arcanine.svg",
  39115. extra: 1590/1511,
  39116. bottom: 71/1661
  39117. }
  39118. },
  39119. maw: {
  39120. height: math.unit(0.82, "feet"),
  39121. name: "Maw",
  39122. image: {
  39123. source: "./media/characters/vera/maw.svg"
  39124. }
  39125. },
  39126. mawArcanine: {
  39127. height: math.unit(0.97, "feet"),
  39128. name: "Maw (Arcanine)",
  39129. image: {
  39130. source: "./media/characters/vera/maw-arcanine.svg"
  39131. }
  39132. },
  39133. paw: {
  39134. height: math.unit(0.75, "feet"),
  39135. name: "Paw",
  39136. image: {
  39137. source: "./media/characters/vera/paw.svg"
  39138. }
  39139. },
  39140. pawprint: {
  39141. height: math.unit(0.52, "feet"),
  39142. name: "Pawprint",
  39143. image: {
  39144. source: "./media/characters/vera/pawprint.svg"
  39145. }
  39146. },
  39147. },
  39148. [
  39149. {
  39150. name: "Normal",
  39151. height: math.unit(5 + 10/12, "feet"),
  39152. default: true
  39153. },
  39154. {
  39155. name: "Macro",
  39156. height: math.unit(75, "feet")
  39157. },
  39158. ]
  39159. ))
  39160. characterMakers.push(() => makeCharacter(
  39161. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39162. {
  39163. front: {
  39164. height: math.unit(4, "feet"),
  39165. weight: math.unit(40, "lb"),
  39166. name: "Front",
  39167. image: {
  39168. source: "./media/characters/orvan-rabbit/front.svg",
  39169. extra: 1896/1642,
  39170. bottom: 29/1925
  39171. }
  39172. },
  39173. },
  39174. [
  39175. {
  39176. name: "Normal",
  39177. height: math.unit(4, "feet"),
  39178. default: true
  39179. },
  39180. ]
  39181. ))
  39182. characterMakers.push(() => makeCharacter(
  39183. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39184. {
  39185. front: {
  39186. height: math.unit(6, "feet"),
  39187. weight: math.unit(168, "lb"),
  39188. name: "Front",
  39189. image: {
  39190. source: "./media/characters/lisa/front.svg",
  39191. extra: 2065/1867,
  39192. bottom: 46/2111
  39193. }
  39194. },
  39195. back: {
  39196. height: math.unit(6, "feet"),
  39197. weight: math.unit(168, "lb"),
  39198. name: "Back",
  39199. image: {
  39200. source: "./media/characters/lisa/back.svg",
  39201. extra: 1982/1838,
  39202. bottom: 29/2011
  39203. }
  39204. },
  39205. maw: {
  39206. height: math.unit(0.81, "feet"),
  39207. name: "Maw",
  39208. image: {
  39209. source: "./media/characters/lisa/maw.svg"
  39210. }
  39211. },
  39212. paw: {
  39213. height: math.unit(0.9, "feet"),
  39214. name: "Paw",
  39215. image: {
  39216. source: "./media/characters/lisa/paw.svg"
  39217. }
  39218. },
  39219. caribousune: {
  39220. height: math.unit(7 + 2/12, "feet"),
  39221. weight: math.unit(268, "lb"),
  39222. name: "Caribousune",
  39223. image: {
  39224. source: "./media/characters/lisa/caribousune.svg",
  39225. extra: 1843/1633,
  39226. bottom: 29/1872
  39227. }
  39228. },
  39229. frontCaribousune: {
  39230. height: math.unit(7 + 2/12, "feet"),
  39231. weight: math.unit(268, "lb"),
  39232. name: "Front (Caribousune)",
  39233. image: {
  39234. source: "./media/characters/lisa/front-caribousune.svg",
  39235. extra: 1818/1638,
  39236. bottom: 52/1870
  39237. }
  39238. },
  39239. sideCaribousune: {
  39240. height: math.unit(7 + 2/12, "feet"),
  39241. weight: math.unit(268, "lb"),
  39242. name: "Side (Caribousune)",
  39243. image: {
  39244. source: "./media/characters/lisa/side-caribousune.svg",
  39245. extra: 1851/1635,
  39246. bottom: 16/1867
  39247. }
  39248. },
  39249. backCaribousune: {
  39250. height: math.unit(7 + 2/12, "feet"),
  39251. weight: math.unit(268, "lb"),
  39252. name: "Back (Caribousune)",
  39253. image: {
  39254. source: "./media/characters/lisa/back-caribousune.svg",
  39255. extra: 1801/1604,
  39256. bottom: 44/1845
  39257. }
  39258. },
  39259. caribou: {
  39260. height: math.unit(7 + 2/12, "feet"),
  39261. weight: math.unit(268, "lb"),
  39262. name: "Caribou",
  39263. image: {
  39264. source: "./media/characters/lisa/caribou.svg",
  39265. extra: 1843/1633,
  39266. bottom: 29/1872
  39267. }
  39268. },
  39269. frontCaribou: {
  39270. height: math.unit(7 + 2/12, "feet"),
  39271. weight: math.unit(268, "lb"),
  39272. name: "Front (Caribou)",
  39273. image: {
  39274. source: "./media/characters/lisa/front-caribou.svg",
  39275. extra: 1818/1638,
  39276. bottom: 52/1870
  39277. }
  39278. },
  39279. sideCaribou: {
  39280. height: math.unit(7 + 2/12, "feet"),
  39281. weight: math.unit(268, "lb"),
  39282. name: "Side (Caribou)",
  39283. image: {
  39284. source: "./media/characters/lisa/side-caribou.svg",
  39285. extra: 1851/1635,
  39286. bottom: 16/1867
  39287. }
  39288. },
  39289. backCaribou: {
  39290. height: math.unit(7 + 2/12, "feet"),
  39291. weight: math.unit(268, "lb"),
  39292. name: "Back (Caribou)",
  39293. image: {
  39294. source: "./media/characters/lisa/back-caribou.svg",
  39295. extra: 1801/1604,
  39296. bottom: 44/1845
  39297. }
  39298. },
  39299. mawCaribou: {
  39300. height: math.unit(1.45, "feet"),
  39301. name: "Maw (Caribou)",
  39302. image: {
  39303. source: "./media/characters/lisa/maw-caribou.svg"
  39304. }
  39305. },
  39306. mawCaribousune: {
  39307. height: math.unit(1.45, "feet"),
  39308. name: "Maw (Caribousune)",
  39309. image: {
  39310. source: "./media/characters/lisa/maw-caribousune.svg"
  39311. }
  39312. },
  39313. pawCaribousune: {
  39314. height: math.unit(1.61, "feet"),
  39315. name: "Paw (Caribou)",
  39316. image: {
  39317. source: "./media/characters/lisa/paw-caribousune.svg"
  39318. }
  39319. },
  39320. },
  39321. [
  39322. {
  39323. name: "Normal",
  39324. height: math.unit(6, "feet")
  39325. },
  39326. {
  39327. name: "God Size",
  39328. height: math.unit(72, "feet"),
  39329. default: true
  39330. },
  39331. {
  39332. name: "Towering",
  39333. height: math.unit(288, "feet")
  39334. },
  39335. {
  39336. name: "City Size",
  39337. height: math.unit(48384, "feet")
  39338. },
  39339. {
  39340. name: "Continental",
  39341. height: math.unit(4200, "miles")
  39342. },
  39343. {
  39344. name: "Planet Eater",
  39345. height: math.unit(42, "earths")
  39346. },
  39347. {
  39348. name: "Star Swallower",
  39349. height: math.unit(42, "solarradii")
  39350. },
  39351. {
  39352. name: "System Swallower",
  39353. height: math.unit(84000, "AU")
  39354. },
  39355. {
  39356. name: "Galaxy Gobbler",
  39357. height: math.unit(42, "galaxies")
  39358. },
  39359. {
  39360. name: "Universe Devourer",
  39361. height: math.unit(42, "universes")
  39362. },
  39363. {
  39364. name: "Multiverse Muncher",
  39365. height: math.unit(42, "multiverses")
  39366. },
  39367. ]
  39368. ))
  39369. characterMakers.push(() => makeCharacter(
  39370. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39371. {
  39372. front: {
  39373. height: math.unit(36, "feet"),
  39374. name: "Front",
  39375. image: {
  39376. source: "./media/characters/shadow-rat/front.svg",
  39377. extra: 1845/1758,
  39378. bottom: 83/1928
  39379. }
  39380. },
  39381. },
  39382. [
  39383. {
  39384. name: "Macro",
  39385. height: math.unit(36, "feet"),
  39386. default: true
  39387. },
  39388. ]
  39389. ))
  39390. characterMakers.push(() => makeCharacter(
  39391. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39392. {
  39393. side: {
  39394. height: math.unit(8, "feet"),
  39395. weight: math.unit(2630, "lb"),
  39396. name: "Side",
  39397. image: {
  39398. source: "./media/characters/torallia/side.svg",
  39399. extra: 2164/2021,
  39400. bottom: 371/2535
  39401. }
  39402. },
  39403. },
  39404. [
  39405. {
  39406. name: "Mortal Interaction",
  39407. height: math.unit(8, "feet")
  39408. },
  39409. {
  39410. name: "Natural",
  39411. height: math.unit(24, "feet"),
  39412. default: true
  39413. },
  39414. {
  39415. name: "Giant",
  39416. height: math.unit(80, "feet")
  39417. },
  39418. {
  39419. name: "Kaiju",
  39420. height: math.unit(240, "feet")
  39421. },
  39422. {
  39423. name: "Macro",
  39424. height: math.unit(800, "feet")
  39425. },
  39426. {
  39427. name: "Macro+",
  39428. height: math.unit(2400, "feet")
  39429. },
  39430. {
  39431. name: "Macro++",
  39432. height: math.unit(8000, "feet")
  39433. },
  39434. {
  39435. name: "City-Crushing",
  39436. height: math.unit(24000, "feet")
  39437. },
  39438. {
  39439. name: "Mountain-Mashing",
  39440. height: math.unit(80000, "feet")
  39441. },
  39442. {
  39443. name: "District Demolisher",
  39444. height: math.unit(240000, "feet")
  39445. },
  39446. {
  39447. name: "Tri-County Terror",
  39448. height: math.unit(800000, "feet")
  39449. },
  39450. {
  39451. name: "State Smasher",
  39452. height: math.unit(2.4e6, "feet")
  39453. },
  39454. {
  39455. name: "Nation Nemesis",
  39456. height: math.unit(8e6, "feet")
  39457. },
  39458. {
  39459. name: "Continent Cracker",
  39460. height: math.unit(2.4e7, "feet")
  39461. },
  39462. {
  39463. name: "Planet-Pillaging",
  39464. height: math.unit(8e7, "feet")
  39465. },
  39466. {
  39467. name: "Earth-Eclipsing",
  39468. height: math.unit(2.4e8, "feet")
  39469. },
  39470. {
  39471. name: "Jovian-Jostling",
  39472. height: math.unit(8e8, "feet")
  39473. },
  39474. {
  39475. name: "Gas Giant Gulper",
  39476. height: math.unit(2.4e9, "feet")
  39477. },
  39478. {
  39479. name: "Astral Annihilator",
  39480. height: math.unit(8e9, "feet")
  39481. },
  39482. {
  39483. name: "Celestial Conqueror",
  39484. height: math.unit(2.4e10, "feet")
  39485. },
  39486. {
  39487. name: "Sol-Swallowing",
  39488. height: math.unit(8e10, "feet")
  39489. },
  39490. {
  39491. name: "Hunter of the Heavens",
  39492. height: math.unit(2.4e13, "feet")
  39493. },
  39494. ]
  39495. ))
  39496. characterMakers.push(() => makeCharacter(
  39497. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39498. {
  39499. front: {
  39500. height: math.unit(6 + 8/12, "feet"),
  39501. name: "Front",
  39502. image: {
  39503. source: "./media/characters/rebecca-pawlson/front.svg",
  39504. extra: 1737/1596,
  39505. bottom: 107/1844
  39506. }
  39507. },
  39508. back: {
  39509. height: math.unit(6 + 8/12, "feet"),
  39510. name: "Back",
  39511. image: {
  39512. source: "./media/characters/rebecca-pawlson/back.svg",
  39513. extra: 1702/1523,
  39514. bottom: 86/1788
  39515. }
  39516. },
  39517. },
  39518. [
  39519. {
  39520. name: "Normal",
  39521. height: math.unit(6 + 8/12, "feet")
  39522. },
  39523. {
  39524. name: "Mini Macro",
  39525. height: math.unit(10, "feet"),
  39526. default: true
  39527. },
  39528. {
  39529. name: "Macro",
  39530. height: math.unit(100, "feet")
  39531. },
  39532. {
  39533. name: "Mega Macro",
  39534. height: math.unit(2500, "feet")
  39535. },
  39536. {
  39537. name: "Giga Macro",
  39538. height: math.unit(50, "miles")
  39539. },
  39540. ]
  39541. ))
  39542. characterMakers.push(() => makeCharacter(
  39543. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39544. {
  39545. front: {
  39546. height: math.unit(7 + 6/12, "feet"),
  39547. weight: math.unit(600, "lb"),
  39548. name: "Front",
  39549. image: {
  39550. source: "./media/characters/moxie-nova/front.svg",
  39551. extra: 1734/1652,
  39552. bottom: 41/1775
  39553. }
  39554. },
  39555. },
  39556. [
  39557. {
  39558. name: "Normal",
  39559. height: math.unit(7 + 6/12, "feet"),
  39560. default: true
  39561. },
  39562. ]
  39563. ))
  39564. characterMakers.push(() => makeCharacter(
  39565. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39566. {
  39567. goat: {
  39568. height: math.unit(4, "feet"),
  39569. weight: math.unit(180, "lb"),
  39570. name: "Goat",
  39571. image: {
  39572. source: "./media/characters/tiffany/goat.svg",
  39573. extra: 1845/1595,
  39574. bottom: 106/1951
  39575. }
  39576. },
  39577. front: {
  39578. height: math.unit(5, "feet"),
  39579. weight: math.unit(150, "lb"),
  39580. name: "Foxcoon",
  39581. image: {
  39582. source: "./media/characters/tiffany/foxcoon.svg",
  39583. extra: 1941/1845,
  39584. bottom: 58/1999
  39585. }
  39586. },
  39587. },
  39588. [
  39589. {
  39590. name: "Normal",
  39591. height: math.unit(5, "feet"),
  39592. default: true
  39593. },
  39594. ]
  39595. ))
  39596. characterMakers.push(() => makeCharacter(
  39597. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39598. {
  39599. front: {
  39600. height: math.unit(8, "feet"),
  39601. weight: math.unit(300, "lb"),
  39602. name: "Front",
  39603. image: {
  39604. source: "./media/characters/raxinath/front.svg",
  39605. extra: 1407/1309,
  39606. bottom: 39/1446
  39607. }
  39608. },
  39609. back: {
  39610. height: math.unit(8, "feet"),
  39611. weight: math.unit(300, "lb"),
  39612. name: "Back",
  39613. image: {
  39614. source: "./media/characters/raxinath/back.svg",
  39615. extra: 1405/1315,
  39616. bottom: 9/1414
  39617. }
  39618. },
  39619. },
  39620. [
  39621. {
  39622. name: "Speck",
  39623. height: math.unit(0.5, "nm")
  39624. },
  39625. {
  39626. name: "Micro",
  39627. height: math.unit(3, "inches")
  39628. },
  39629. {
  39630. name: "Kobold",
  39631. height: math.unit(3, "feet")
  39632. },
  39633. {
  39634. name: "Normal",
  39635. height: math.unit(8, "feet"),
  39636. default: true
  39637. },
  39638. {
  39639. name: "Giant",
  39640. height: math.unit(50, "feet")
  39641. },
  39642. {
  39643. name: "Macro",
  39644. height: math.unit(1000, "feet")
  39645. },
  39646. {
  39647. name: "Megamacro",
  39648. height: math.unit(1, "mile")
  39649. },
  39650. ]
  39651. ))
  39652. characterMakers.push(() => makeCharacter(
  39653. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39654. {
  39655. front: {
  39656. height: math.unit(10, "feet"),
  39657. weight: math.unit(1442, "lb"),
  39658. name: "Front",
  39659. image: {
  39660. source: "./media/characters/mal-dragon/front.svg",
  39661. extra: 1515/1444,
  39662. bottom: 113/1628
  39663. }
  39664. },
  39665. back: {
  39666. height: math.unit(10, "feet"),
  39667. weight: math.unit(1442, "lb"),
  39668. name: "Back",
  39669. image: {
  39670. source: "./media/characters/mal-dragon/back.svg",
  39671. extra: 1527/1434,
  39672. bottom: 25/1552
  39673. }
  39674. },
  39675. },
  39676. [
  39677. {
  39678. name: "Mortal Interaction",
  39679. height: math.unit(10, "feet"),
  39680. default: true
  39681. },
  39682. {
  39683. name: "Large",
  39684. height: math.unit(30, "feet")
  39685. },
  39686. {
  39687. name: "Kaiju",
  39688. height: math.unit(300, "feet")
  39689. },
  39690. {
  39691. name: "Megamacro",
  39692. height: math.unit(10000, "feet")
  39693. },
  39694. {
  39695. name: "Continent Cracker",
  39696. height: math.unit(30000000, "feet")
  39697. },
  39698. {
  39699. name: "Sol-Swallowing",
  39700. height: math.unit(1e11, "feet")
  39701. },
  39702. {
  39703. name: "Light Universal",
  39704. height: math.unit(5, "universes")
  39705. },
  39706. {
  39707. name: "Universe Atoms",
  39708. height: math.unit(1.829e9, "universes")
  39709. },
  39710. {
  39711. name: "Light Multiversal",
  39712. height: math.unit(5, "multiverses")
  39713. },
  39714. {
  39715. name: "Multiverse Atoms",
  39716. height: math.unit(1.829e9, "multiverses")
  39717. },
  39718. {
  39719. name: "Fabric of Time",
  39720. height: math.unit(1e262, "multiverses")
  39721. },
  39722. ]
  39723. ))
  39724. characterMakers.push(() => makeCharacter(
  39725. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39726. {
  39727. front: {
  39728. height: math.unit(9, "feet"),
  39729. weight: math.unit(1050, "lb"),
  39730. name: "Front",
  39731. image: {
  39732. source: "./media/characters/tabitha/front.svg",
  39733. extra: 2083/1994,
  39734. bottom: 68/2151
  39735. }
  39736. },
  39737. },
  39738. [
  39739. {
  39740. name: "Baseline",
  39741. height: math.unit(9, "feet"),
  39742. default: true
  39743. },
  39744. {
  39745. name: "Giant",
  39746. height: math.unit(90, "feet")
  39747. },
  39748. {
  39749. name: "Macro",
  39750. height: math.unit(900, "feet")
  39751. },
  39752. {
  39753. name: "Megamacro",
  39754. height: math.unit(9000, "feet")
  39755. },
  39756. {
  39757. name: "City-Crushing",
  39758. height: math.unit(27000, "feet")
  39759. },
  39760. {
  39761. name: "Mountain-Mashing",
  39762. height: math.unit(90000, "feet")
  39763. },
  39764. {
  39765. name: "Nation Nemesis",
  39766. height: math.unit(9e6, "feet")
  39767. },
  39768. {
  39769. name: "Continent Cracker",
  39770. height: math.unit(27e6, "feet")
  39771. },
  39772. {
  39773. name: "Earth-Eclipsing",
  39774. height: math.unit(2.7e8, "feet")
  39775. },
  39776. {
  39777. name: "Gas Giant Gulper",
  39778. height: math.unit(2.7e9, "feet")
  39779. },
  39780. {
  39781. name: "Sol-Swallowing",
  39782. height: math.unit(9e10, "feet")
  39783. },
  39784. {
  39785. name: "Galaxy Gulper",
  39786. height: math.unit(9, "galaxies")
  39787. },
  39788. {
  39789. name: "Cosmos Churner",
  39790. height: math.unit(9, "universes")
  39791. },
  39792. ]
  39793. ))
  39794. characterMakers.push(() => makeCharacter(
  39795. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  39796. {
  39797. front: {
  39798. height: math.unit(160, "cm"),
  39799. weight: math.unit(55, "kg"),
  39800. name: "Front",
  39801. image: {
  39802. source: "./media/characters/tow/front.svg",
  39803. extra: 1751/1722,
  39804. bottom: 74/1825
  39805. }
  39806. },
  39807. },
  39808. [
  39809. {
  39810. name: "Norm",
  39811. height: math.unit(160, "cm")
  39812. },
  39813. {
  39814. name: "Casual",
  39815. height: math.unit(3200, "m"),
  39816. default: true
  39817. },
  39818. {
  39819. name: "Show-Off",
  39820. height: math.unit(160, "km")
  39821. },
  39822. ]
  39823. ))
  39824. characterMakers.push(() => makeCharacter(
  39825. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  39826. {
  39827. front: {
  39828. height: math.unit(7 + 11/12, "feet"),
  39829. weight: math.unit(342.8, "lb"),
  39830. name: "Front",
  39831. image: {
  39832. source: "./media/characters/vivian-orca-dragon/front.svg",
  39833. extra: 1890/1865,
  39834. bottom: 28/1918
  39835. }
  39836. },
  39837. },
  39838. [
  39839. {
  39840. name: "Micro",
  39841. height: math.unit(5, "inches")
  39842. },
  39843. {
  39844. name: "Normal",
  39845. height: math.unit(7 + 11/12, "feet"),
  39846. default: true
  39847. },
  39848. {
  39849. name: "Macro",
  39850. height: math.unit(395 + 7/12, "feet")
  39851. },
  39852. ]
  39853. ))
  39854. characterMakers.push(() => makeCharacter(
  39855. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  39856. {
  39857. side: {
  39858. height: math.unit(10, "feet"),
  39859. weight: math.unit(1442, "lb"),
  39860. name: "Side",
  39861. image: {
  39862. source: "./media/characters/lotherakon/side.svg",
  39863. extra: 1604/1497,
  39864. bottom: 89/1693
  39865. }
  39866. },
  39867. },
  39868. [
  39869. {
  39870. name: "Mortal Interaction",
  39871. height: math.unit(10, "feet")
  39872. },
  39873. {
  39874. name: "Large",
  39875. height: math.unit(30, "feet"),
  39876. default: true
  39877. },
  39878. {
  39879. name: "Giant",
  39880. height: math.unit(100, "feet")
  39881. },
  39882. {
  39883. name: "Kaiju",
  39884. height: math.unit(300, "feet")
  39885. },
  39886. {
  39887. name: "Macro",
  39888. height: math.unit(1000, "feet")
  39889. },
  39890. {
  39891. name: "Macro+",
  39892. height: math.unit(3000, "feet")
  39893. },
  39894. {
  39895. name: "Megamacro",
  39896. height: math.unit(10000, "feet")
  39897. },
  39898. {
  39899. name: "City-Crushing",
  39900. height: math.unit(30000, "feet")
  39901. },
  39902. {
  39903. name: "Continent Cracker",
  39904. height: math.unit(30e6, "feet")
  39905. },
  39906. {
  39907. name: "Earth Eclipsing",
  39908. height: math.unit(3e8, "feet")
  39909. },
  39910. {
  39911. name: "Gas Giant Gulper",
  39912. height: math.unit(3e9, "feet")
  39913. },
  39914. {
  39915. name: "Sol-Swallowing",
  39916. height: math.unit(1e11, "feet")
  39917. },
  39918. {
  39919. name: "System Swallower",
  39920. height: math.unit(3e14, "feet")
  39921. },
  39922. {
  39923. name: "Galaxy Gulper",
  39924. height: math.unit(10, "galaxies")
  39925. },
  39926. {
  39927. name: "Light Universal",
  39928. height: math.unit(5, "universes")
  39929. },
  39930. {
  39931. name: "Universe Palm",
  39932. height: math.unit(20, "universes")
  39933. },
  39934. {
  39935. name: "Light Multiversal",
  39936. height: math.unit(5, "multiverses")
  39937. },
  39938. {
  39939. name: "Multiverse Palm",
  39940. height: math.unit(20, "multiverses")
  39941. },
  39942. {
  39943. name: "Inferno Incarnate",
  39944. height: math.unit(1e7, "multiverses")
  39945. },
  39946. ]
  39947. ))
  39948. characterMakers.push(() => makeCharacter(
  39949. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  39950. {
  39951. front: {
  39952. height: math.unit(8, "feet"),
  39953. weight: math.unit(1200, "lb"),
  39954. name: "Front",
  39955. image: {
  39956. source: "./media/characters/malithee/front.svg",
  39957. extra: 1675/1640,
  39958. bottom: 162/1837
  39959. }
  39960. },
  39961. },
  39962. [
  39963. {
  39964. name: "Mortal Interaction",
  39965. height: math.unit(8, "feet"),
  39966. default: true
  39967. },
  39968. {
  39969. name: "Large",
  39970. height: math.unit(24, "feet")
  39971. },
  39972. {
  39973. name: "Kaiju",
  39974. height: math.unit(240, "feet")
  39975. },
  39976. {
  39977. name: "Megamacro",
  39978. height: math.unit(8000, "feet")
  39979. },
  39980. {
  39981. name: "Continent Cracker",
  39982. height: math.unit(24e6, "feet")
  39983. },
  39984. {
  39985. name: "Earth-Eclipsing",
  39986. height: math.unit(2.4e8, "feet")
  39987. },
  39988. {
  39989. name: "Sol-Swallowing",
  39990. height: math.unit(8e10, "feet")
  39991. },
  39992. {
  39993. name: "Galaxy Gulper",
  39994. height: math.unit(8, "galaxies")
  39995. },
  39996. {
  39997. name: "Light Universal",
  39998. height: math.unit(4, "universes")
  39999. },
  40000. {
  40001. name: "Universe Atoms",
  40002. height: math.unit(1.829e9, "universes")
  40003. },
  40004. {
  40005. name: "Light Multiversal",
  40006. height: math.unit(4, "multiverses")
  40007. },
  40008. {
  40009. name: "Multiverse Atoms",
  40010. height: math.unit(1.829e9, "multiverses")
  40011. },
  40012. {
  40013. name: "Nigh-Omnipresence",
  40014. height: math.unit(8e261, "multiverses")
  40015. },
  40016. ]
  40017. ))
  40018. characterMakers.push(() => makeCharacter(
  40019. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40020. {
  40021. front: {
  40022. height: math.unit(10, "feet"),
  40023. weight: math.unit(1500, "lb"),
  40024. name: "Front",
  40025. image: {
  40026. source: "./media/characters/miles-thestia/front.svg",
  40027. extra: 1812/1727,
  40028. bottom: 86/1898
  40029. }
  40030. },
  40031. back: {
  40032. height: math.unit(10, "feet"),
  40033. weight: math.unit(1500, "lb"),
  40034. name: "Back",
  40035. image: {
  40036. source: "./media/characters/miles-thestia/back.svg",
  40037. extra: 1799/1690,
  40038. bottom: 47/1846
  40039. }
  40040. },
  40041. frontNsfw: {
  40042. height: math.unit(10, "feet"),
  40043. weight: math.unit(1500, "lb"),
  40044. name: "Front (NSFW)",
  40045. image: {
  40046. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40047. extra: 1812/1727,
  40048. bottom: 86/1898
  40049. }
  40050. },
  40051. },
  40052. [
  40053. {
  40054. name: "Mini-Macro",
  40055. height: math.unit(10, "feet"),
  40056. default: true
  40057. },
  40058. ]
  40059. ))
  40060. characterMakers.push(() => makeCharacter(
  40061. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40062. {
  40063. front: {
  40064. height: math.unit(25, "feet"),
  40065. name: "Front",
  40066. image: {
  40067. source: "./media/characters/titan-s-wulf/front.svg",
  40068. extra: 1560/1484,
  40069. bottom: 76/1636
  40070. }
  40071. },
  40072. },
  40073. [
  40074. {
  40075. name: "Smallest",
  40076. height: math.unit(25, "feet"),
  40077. default: true
  40078. },
  40079. {
  40080. name: "Normal",
  40081. height: math.unit(200, "feet")
  40082. },
  40083. {
  40084. name: "Macro",
  40085. height: math.unit(200000, "feet")
  40086. },
  40087. {
  40088. name: "Multiversal Original",
  40089. height: math.unit(10000, "multiverses")
  40090. },
  40091. ]
  40092. ))
  40093. characterMakers.push(() => makeCharacter(
  40094. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40095. {
  40096. front: {
  40097. height: math.unit(8, "feet"),
  40098. weight: math.unit(553, "lb"),
  40099. name: "Front",
  40100. image: {
  40101. source: "./media/characters/tawendeh/front.svg",
  40102. extra: 2365/2268,
  40103. bottom: 83/2448
  40104. }
  40105. },
  40106. frontClothed: {
  40107. height: math.unit(8, "feet"),
  40108. weight: math.unit(553, "lb"),
  40109. name: "Front (Clothed)",
  40110. image: {
  40111. source: "./media/characters/tawendeh/front-clothed.svg",
  40112. extra: 2365/2268,
  40113. bottom: 83/2448
  40114. }
  40115. },
  40116. back: {
  40117. height: math.unit(8, "feet"),
  40118. weight: math.unit(553, "lb"),
  40119. name: "Back",
  40120. image: {
  40121. source: "./media/characters/tawendeh/back.svg",
  40122. extra: 2397/2294,
  40123. bottom: 42/2439
  40124. }
  40125. },
  40126. },
  40127. [
  40128. {
  40129. name: "Mortal Interaction",
  40130. height: math.unit(8, "feet"),
  40131. default: true
  40132. },
  40133. {
  40134. name: "Giant",
  40135. height: math.unit(80, "feet")
  40136. },
  40137. {
  40138. name: "Macro",
  40139. height: math.unit(800, "feet")
  40140. },
  40141. {
  40142. name: "Megamacro",
  40143. height: math.unit(8000, "feet")
  40144. },
  40145. {
  40146. name: "City-Crushing",
  40147. height: math.unit(24000, "feet")
  40148. },
  40149. {
  40150. name: "Mountain-Mashing",
  40151. height: math.unit(80000, "feet")
  40152. },
  40153. {
  40154. name: "Nation Nemesis",
  40155. height: math.unit(8e6, "feet")
  40156. },
  40157. {
  40158. name: "Continent Cracker",
  40159. height: math.unit(24e6, "feet")
  40160. },
  40161. {
  40162. name: "Earth-Eclipsing",
  40163. height: math.unit(2.4e8, "feet")
  40164. },
  40165. {
  40166. name: "Gas Giant Gulper",
  40167. height: math.unit(2.4e9, "feet")
  40168. },
  40169. {
  40170. name: "Sol-Swallowing",
  40171. height: math.unit(8e10, "feet")
  40172. },
  40173. {
  40174. name: "Galaxy Gulper",
  40175. height: math.unit(8, "galaxies")
  40176. },
  40177. {
  40178. name: "Cosmos Churner",
  40179. height: math.unit(8, "universes")
  40180. },
  40181. {
  40182. name: "Omnipotent Otter",
  40183. height: math.unit(80, "universes")
  40184. },
  40185. ]
  40186. ))
  40187. characterMakers.push(() => makeCharacter(
  40188. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40189. {
  40190. front: {
  40191. height: math.unit(2.6, "meters"),
  40192. weight: math.unit(900, "kg"),
  40193. name: "Front",
  40194. image: {
  40195. source: "./media/characters/neesha/front.svg",
  40196. extra: 1803/1653,
  40197. bottom: 128/1931
  40198. }
  40199. },
  40200. },
  40201. [
  40202. {
  40203. name: "Normal",
  40204. height: math.unit(2.6, "meters"),
  40205. default: true
  40206. },
  40207. {
  40208. name: "Macro",
  40209. height: math.unit(50, "meters")
  40210. },
  40211. ]
  40212. ))
  40213. characterMakers.push(() => makeCharacter(
  40214. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40215. {
  40216. front: {
  40217. height: math.unit(5, "feet"),
  40218. weight: math.unit(185, "lb"),
  40219. name: "Front",
  40220. image: {
  40221. source: "./media/characters/kyera/front.svg",
  40222. extra: 1875/1790,
  40223. bottom: 96/1971
  40224. }
  40225. },
  40226. },
  40227. [
  40228. {
  40229. name: "Normal",
  40230. height: math.unit(5, "feet"),
  40231. default: true
  40232. },
  40233. ]
  40234. ))
  40235. characterMakers.push(() => makeCharacter(
  40236. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40237. {
  40238. front: {
  40239. height: math.unit(7 + 6/12, "feet"),
  40240. weight: math.unit(540, "lb"),
  40241. name: "Front",
  40242. image: {
  40243. source: "./media/characters/yuko/front.svg",
  40244. extra: 1282/1222,
  40245. bottom: 101/1383
  40246. }
  40247. },
  40248. frontClothed: {
  40249. height: math.unit(7 + 6/12, "feet"),
  40250. weight: math.unit(540, "lb"),
  40251. name: "Front (Clothed)",
  40252. image: {
  40253. source: "./media/characters/yuko/front-clothed.svg",
  40254. extra: 1282/1222,
  40255. bottom: 101/1383
  40256. }
  40257. },
  40258. },
  40259. [
  40260. {
  40261. name: "Normal",
  40262. height: math.unit(7 + 6/12, "feet"),
  40263. default: true
  40264. },
  40265. {
  40266. name: "Macro",
  40267. height: math.unit(26 + 9/12, "feet")
  40268. },
  40269. {
  40270. name: "Megamacro",
  40271. height: math.unit(300, "feet")
  40272. },
  40273. {
  40274. name: "Gigamacro",
  40275. height: math.unit(5000, "feet")
  40276. },
  40277. {
  40278. name: "Planetary",
  40279. height: math.unit(10000, "miles")
  40280. },
  40281. ]
  40282. ))
  40283. characterMakers.push(() => makeCharacter(
  40284. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40285. {
  40286. front: {
  40287. height: math.unit(8 + 2/12, "feet"),
  40288. weight: math.unit(600, "lb"),
  40289. name: "Front",
  40290. image: {
  40291. source: "./media/characters/deam-nitrel/front.svg",
  40292. extra: 1308/1234,
  40293. bottom: 125/1433
  40294. }
  40295. },
  40296. },
  40297. [
  40298. {
  40299. name: "Normal",
  40300. height: math.unit(8 + 2/12, "feet"),
  40301. default: true
  40302. },
  40303. ]
  40304. ))
  40305. characterMakers.push(() => makeCharacter(
  40306. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40307. {
  40308. front: {
  40309. height: math.unit(6.1, "feet"),
  40310. weight: math.unit(180, "lb"),
  40311. name: "Front",
  40312. image: {
  40313. source: "./media/characters/skyress/front.svg",
  40314. extra: 1045/915,
  40315. bottom: 28/1073
  40316. }
  40317. },
  40318. maw: {
  40319. height: math.unit(1, "feet"),
  40320. name: "Maw",
  40321. image: {
  40322. source: "./media/characters/skyress/maw.svg"
  40323. }
  40324. },
  40325. },
  40326. [
  40327. {
  40328. name: "Normal",
  40329. height: math.unit(6.1, "feet"),
  40330. default: true
  40331. },
  40332. {
  40333. name: "Macro",
  40334. height: math.unit(200, "feet")
  40335. },
  40336. ]
  40337. ))
  40338. characterMakers.push(() => makeCharacter(
  40339. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40340. {
  40341. front: {
  40342. height: math.unit(4 + 2/12, "feet"),
  40343. weight: math.unit(40, "kg"),
  40344. name: "Front",
  40345. image: {
  40346. source: "./media/characters/amethyst-jones/front.svg",
  40347. extra: 1220/1150,
  40348. bottom: 101/1321
  40349. }
  40350. },
  40351. },
  40352. [
  40353. {
  40354. name: "Normal",
  40355. height: math.unit(4 + 2/12, "feet"),
  40356. default: true
  40357. },
  40358. ]
  40359. ))
  40360. characterMakers.push(() => makeCharacter(
  40361. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40362. {
  40363. front: {
  40364. height: math.unit(1.7, "m"),
  40365. weight: math.unit(135, "lb"),
  40366. name: "Front",
  40367. image: {
  40368. source: "./media/characters/jade/front.svg",
  40369. extra: 1818/1767,
  40370. bottom: 32/1850
  40371. }
  40372. },
  40373. back: {
  40374. height: math.unit(1.7, "m"),
  40375. weight: math.unit(135, "lb"),
  40376. name: "Back",
  40377. image: {
  40378. source: "./media/characters/jade/back.svg",
  40379. extra: 1869/1809,
  40380. bottom: 35/1904
  40381. }
  40382. },
  40383. hand: {
  40384. height: math.unit(0.24, "m"),
  40385. name: "Hand",
  40386. image: {
  40387. source: "./media/characters/jade/hand.svg"
  40388. }
  40389. },
  40390. foot: {
  40391. height: math.unit(0.263, "m"),
  40392. name: "Foot",
  40393. image: {
  40394. source: "./media/characters/jade/foot.svg"
  40395. }
  40396. },
  40397. dick: {
  40398. height: math.unit(0.47, "m"),
  40399. name: "Dick",
  40400. image: {
  40401. source: "./media/characters/jade/dick.svg"
  40402. }
  40403. },
  40404. },
  40405. [
  40406. {
  40407. name: "Micro",
  40408. height: math.unit(22, "cm")
  40409. },
  40410. {
  40411. name: "Normal",
  40412. height: math.unit(1.7, "m"),
  40413. default: true
  40414. },
  40415. {
  40416. name: "Macro",
  40417. height: math.unit(152, "m")
  40418. },
  40419. ]
  40420. ))
  40421. characterMakers.push(() => makeCharacter(
  40422. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40423. {
  40424. front: {
  40425. height: math.unit(100, "miles"),
  40426. weight: math.unit(20000, "tons"),
  40427. name: "Front",
  40428. image: {
  40429. source: "./media/characters/cookie/front.svg",
  40430. extra: 1125/1070,
  40431. bottom: 30/1155
  40432. }
  40433. },
  40434. },
  40435. [
  40436. {
  40437. name: "Big",
  40438. height: math.unit(50, "feet")
  40439. },
  40440. {
  40441. name: "Macro",
  40442. height: math.unit(100, "miles"),
  40443. default: true
  40444. },
  40445. {
  40446. name: "Megamacro",
  40447. height: math.unit(90000, "miles")
  40448. },
  40449. ]
  40450. ))
  40451. characterMakers.push(() => makeCharacter(
  40452. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40453. {
  40454. front: {
  40455. height: math.unit(6, "feet"),
  40456. weight: math.unit(145, "lb"),
  40457. name: "Front",
  40458. image: {
  40459. source: "./media/characters/farzian/front.svg",
  40460. extra: 1902/1693,
  40461. bottom: 108/2010
  40462. }
  40463. },
  40464. },
  40465. [
  40466. {
  40467. name: "Macro",
  40468. height: math.unit(500, "feet"),
  40469. default: true
  40470. },
  40471. ]
  40472. ))
  40473. characterMakers.push(() => makeCharacter(
  40474. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40475. {
  40476. front: {
  40477. height: math.unit(3 + 6/12, "feet"),
  40478. weight: math.unit(50, "lb"),
  40479. name: "Front",
  40480. image: {
  40481. source: "./media/characters/kimberly-tilson/front.svg",
  40482. extra: 1400/1322,
  40483. bottom: 36/1436
  40484. }
  40485. },
  40486. back: {
  40487. height: math.unit(3 + 6/12, "feet"),
  40488. weight: math.unit(50, "lb"),
  40489. name: "Back",
  40490. image: {
  40491. source: "./media/characters/kimberly-tilson/back.svg",
  40492. extra: 1370/1307,
  40493. bottom: 20/1390
  40494. }
  40495. },
  40496. },
  40497. [
  40498. {
  40499. name: "Normal",
  40500. height: math.unit(3 + 6/12, "feet"),
  40501. default: true
  40502. },
  40503. ]
  40504. ))
  40505. characterMakers.push(() => makeCharacter(
  40506. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40507. {
  40508. front: {
  40509. height: math.unit(1148, "feet"),
  40510. weight: math.unit(34057, "lb"),
  40511. name: "Front",
  40512. image: {
  40513. source: "./media/characters/harthos/front.svg",
  40514. extra: 1391/1339,
  40515. bottom: 13/1404
  40516. }
  40517. },
  40518. },
  40519. [
  40520. {
  40521. name: "Macro",
  40522. height: math.unit(1148, "feet"),
  40523. default: true
  40524. },
  40525. ]
  40526. ))
  40527. characterMakers.push(() => makeCharacter(
  40528. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40529. {
  40530. front: {
  40531. height: math.unit(15, "feet"),
  40532. name: "Front",
  40533. image: {
  40534. source: "./media/characters/hypatia/front.svg",
  40535. extra: 1653/1591,
  40536. bottom: 79/1732
  40537. }
  40538. },
  40539. },
  40540. [
  40541. {
  40542. name: "Normal",
  40543. height: math.unit(15, "feet")
  40544. },
  40545. {
  40546. name: "Small",
  40547. height: math.unit(300, "feet")
  40548. },
  40549. {
  40550. name: "Macro",
  40551. height: math.unit(2500, "feet"),
  40552. default: true
  40553. },
  40554. {
  40555. name: "Mega Macro",
  40556. height: math.unit(1500, "miles")
  40557. },
  40558. {
  40559. name: "Giga Macro",
  40560. height: math.unit(1.5e6, "miles")
  40561. },
  40562. ]
  40563. ))
  40564. characterMakers.push(() => makeCharacter(
  40565. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40566. {
  40567. front: {
  40568. height: math.unit(6, "feet"),
  40569. weight: math.unit(200, "lb"),
  40570. name: "Front",
  40571. image: {
  40572. source: "./media/characters/wulver/front.svg",
  40573. extra: 1724/1632,
  40574. bottom: 130/1854
  40575. }
  40576. },
  40577. frontNsfw: {
  40578. height: math.unit(6, "feet"),
  40579. weight: math.unit(200, "lb"),
  40580. name: "Front (NSFW)",
  40581. image: {
  40582. source: "./media/characters/wulver/front-nsfw.svg",
  40583. extra: 1724/1632,
  40584. bottom: 130/1854
  40585. }
  40586. },
  40587. },
  40588. [
  40589. {
  40590. name: "Human-Sized",
  40591. height: math.unit(6, "feet")
  40592. },
  40593. {
  40594. name: "Normal",
  40595. height: math.unit(4, "meters"),
  40596. default: true
  40597. },
  40598. {
  40599. name: "Large",
  40600. height: math.unit(6, "m")
  40601. },
  40602. ]
  40603. ))
  40604. characterMakers.push(() => makeCharacter(
  40605. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40606. {
  40607. front: {
  40608. height: math.unit(7, "feet"),
  40609. name: "Front",
  40610. image: {
  40611. source: "./media/characters/maru/front.svg",
  40612. extra: 1595/1570,
  40613. bottom: 0/1595
  40614. }
  40615. },
  40616. },
  40617. [
  40618. {
  40619. name: "Normal",
  40620. height: math.unit(7, "feet"),
  40621. default: true
  40622. },
  40623. {
  40624. name: "Macro",
  40625. height: math.unit(700, "feet")
  40626. },
  40627. {
  40628. name: "Mega Macro",
  40629. height: math.unit(25, "miles")
  40630. },
  40631. ]
  40632. ))
  40633. characterMakers.push(() => makeCharacter(
  40634. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40635. {
  40636. front: {
  40637. height: math.unit(6, "feet"),
  40638. weight: math.unit(170, "lb"),
  40639. name: "Front",
  40640. image: {
  40641. source: "./media/characters/xenon/front.svg",
  40642. extra: 1376/1305,
  40643. bottom: 56/1432
  40644. }
  40645. },
  40646. back: {
  40647. height: math.unit(6, "feet"),
  40648. weight: math.unit(170, "lb"),
  40649. name: "Back",
  40650. image: {
  40651. source: "./media/characters/xenon/back.svg",
  40652. extra: 1328/1259,
  40653. bottom: 95/1423
  40654. }
  40655. },
  40656. maw: {
  40657. height: math.unit(0.52, "feet"),
  40658. name: "Maw",
  40659. image: {
  40660. source: "./media/characters/xenon/maw.svg"
  40661. }
  40662. },
  40663. hand: {
  40664. height: math.unit(0.82, "feet"),
  40665. name: "Hand",
  40666. image: {
  40667. source: "./media/characters/xenon/hand.svg"
  40668. }
  40669. },
  40670. foot: {
  40671. height: math.unit(1.13, "feet"),
  40672. name: "Foot",
  40673. image: {
  40674. source: "./media/characters/xenon/foot.svg"
  40675. }
  40676. },
  40677. },
  40678. [
  40679. {
  40680. name: "Micro",
  40681. height: math.unit(0.8, "inches")
  40682. },
  40683. {
  40684. name: "Normal",
  40685. height: math.unit(6, "feet")
  40686. },
  40687. {
  40688. name: "Macro",
  40689. height: math.unit(50, "feet"),
  40690. default: true
  40691. },
  40692. {
  40693. name: "Macro+",
  40694. height: math.unit(250, "feet")
  40695. },
  40696. {
  40697. name: "Megamacro",
  40698. height: math.unit(1500, "feet")
  40699. },
  40700. ]
  40701. ))
  40702. characterMakers.push(() => makeCharacter(
  40703. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40704. {
  40705. front: {
  40706. height: math.unit(7 + 5/12, "feet"),
  40707. name: "Front",
  40708. image: {
  40709. source: "./media/characters/zane/front.svg",
  40710. extra: 1260/1203,
  40711. bottom: 94/1354
  40712. }
  40713. },
  40714. back: {
  40715. height: math.unit(5.05, "feet"),
  40716. name: "Back",
  40717. image: {
  40718. source: "./media/characters/zane/back.svg",
  40719. extra: 893/829,
  40720. bottom: 30/923
  40721. }
  40722. },
  40723. werewolf: {
  40724. height: math.unit(11, "feet"),
  40725. name: "Werewolf",
  40726. image: {
  40727. source: "./media/characters/zane/werewolf.svg",
  40728. extra: 1383/1323,
  40729. bottom: 89/1472
  40730. }
  40731. },
  40732. foot: {
  40733. height: math.unit(1.46, "feet"),
  40734. name: "Foot",
  40735. image: {
  40736. source: "./media/characters/zane/foot.svg"
  40737. }
  40738. },
  40739. footFront: {
  40740. height: math.unit(0.784, "feet"),
  40741. name: "Foot (Front)",
  40742. image: {
  40743. source: "./media/characters/zane/foot-front.svg"
  40744. }
  40745. },
  40746. dick: {
  40747. height: math.unit(1.95, "feet"),
  40748. name: "Dick",
  40749. image: {
  40750. source: "./media/characters/zane/dick.svg"
  40751. }
  40752. },
  40753. dickWerewolf: {
  40754. height: math.unit(3.77, "feet"),
  40755. name: "Dick (Werewolf)",
  40756. image: {
  40757. source: "./media/characters/zane/dick.svg"
  40758. }
  40759. },
  40760. },
  40761. [
  40762. {
  40763. name: "Normal",
  40764. height: math.unit(7 + 5/12, "feet"),
  40765. default: true
  40766. },
  40767. ]
  40768. ))
  40769. characterMakers.push(() => makeCharacter(
  40770. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  40771. {
  40772. front: {
  40773. height: math.unit(6 + 2/12, "feet"),
  40774. weight: math.unit(284, "lb"),
  40775. name: "Front",
  40776. image: {
  40777. source: "./media/characters/benni-desparque/front.svg",
  40778. extra: 1353/1126,
  40779. bottom: 69/1422
  40780. }
  40781. },
  40782. },
  40783. [
  40784. {
  40785. name: "Civilian",
  40786. height: math.unit(6 + 2/12, "feet")
  40787. },
  40788. {
  40789. name: "Normal",
  40790. height: math.unit(98, "feet"),
  40791. default: true
  40792. },
  40793. {
  40794. name: "Kaiju Fighter",
  40795. height: math.unit(268, "feet")
  40796. },
  40797. ]
  40798. ))
  40799. characterMakers.push(() => makeCharacter(
  40800. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  40801. {
  40802. front: {
  40803. height: math.unit(5, "feet"),
  40804. weight: math.unit(105, "lb"),
  40805. name: "Front",
  40806. image: {
  40807. source: "./media/characters/maxine/front.svg",
  40808. extra: 1386/1250,
  40809. bottom: 71/1457
  40810. }
  40811. },
  40812. },
  40813. [
  40814. {
  40815. name: "Normal",
  40816. height: math.unit(5, "feet"),
  40817. default: true
  40818. },
  40819. ]
  40820. ))
  40821. characterMakers.push(() => makeCharacter(
  40822. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  40823. {
  40824. front: {
  40825. height: math.unit(11 + 7/12, "feet"),
  40826. weight: math.unit(9576, "lb"),
  40827. name: "Front",
  40828. image: {
  40829. source: "./media/characters/scaly/front.svg",
  40830. extra: 888/867,
  40831. bottom: 36/924
  40832. }
  40833. },
  40834. },
  40835. [
  40836. {
  40837. name: "Normal",
  40838. height: math.unit(11 + 7/12, "feet"),
  40839. default: true
  40840. },
  40841. ]
  40842. ))
  40843. characterMakers.push(() => makeCharacter(
  40844. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  40845. {
  40846. front: {
  40847. height: math.unit(6 + 3/12, "feet"),
  40848. name: "Front",
  40849. image: {
  40850. source: "./media/characters/saelria/front.svg",
  40851. extra: 1243/1138,
  40852. bottom: 46/1289
  40853. }
  40854. },
  40855. },
  40856. [
  40857. {
  40858. name: "Micro",
  40859. height: math.unit(6, "inches"),
  40860. },
  40861. {
  40862. name: "Normal",
  40863. height: math.unit(6 + 3/12, "feet"),
  40864. default: true
  40865. },
  40866. {
  40867. name: "Macro",
  40868. height: math.unit(25, "feet")
  40869. },
  40870. ]
  40871. ))
  40872. characterMakers.push(() => makeCharacter(
  40873. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  40874. {
  40875. front: {
  40876. height: math.unit(80, "meters"),
  40877. weight: math.unit(7000, "tonnes"),
  40878. name: "Front",
  40879. image: {
  40880. source: "./media/characters/tef/front.svg",
  40881. extra: 2036/1991,
  40882. bottom: 54/2090
  40883. }
  40884. },
  40885. back: {
  40886. height: math.unit(80, "meters"),
  40887. weight: math.unit(7000, "tonnes"),
  40888. name: "Back",
  40889. image: {
  40890. source: "./media/characters/tef/back.svg",
  40891. extra: 2036/1991,
  40892. bottom: 54/2090
  40893. }
  40894. },
  40895. },
  40896. [
  40897. {
  40898. name: "Macro",
  40899. height: math.unit(80, "meters"),
  40900. default: true
  40901. },
  40902. ]
  40903. ))
  40904. characterMakers.push(() => makeCharacter(
  40905. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  40906. {
  40907. front: {
  40908. height: math.unit(13, "feet"),
  40909. weight: math.unit(6, "tons"),
  40910. name: "Front",
  40911. image: {
  40912. source: "./media/characters/rover/front.svg",
  40913. extra: 1233/1156,
  40914. bottom: 50/1283
  40915. }
  40916. },
  40917. back: {
  40918. height: math.unit(13, "feet"),
  40919. weight: math.unit(6, "tons"),
  40920. name: "Back",
  40921. image: {
  40922. source: "./media/characters/rover/back.svg",
  40923. extra: 1327/1258,
  40924. bottom: 39/1366
  40925. }
  40926. },
  40927. },
  40928. [
  40929. {
  40930. name: "Normal",
  40931. height: math.unit(13, "feet"),
  40932. default: true
  40933. },
  40934. {
  40935. name: "Macro",
  40936. height: math.unit(1300, "feet")
  40937. },
  40938. {
  40939. name: "Megamacro",
  40940. height: math.unit(1300, "miles")
  40941. },
  40942. {
  40943. name: "Gigamacro",
  40944. height: math.unit(1300000, "miles")
  40945. },
  40946. ]
  40947. ))
  40948. characterMakers.push(() => makeCharacter(
  40949. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  40950. {
  40951. front: {
  40952. height: math.unit(6, "feet"),
  40953. weight: math.unit(150, "lb"),
  40954. name: "Front",
  40955. image: {
  40956. source: "./media/characters/ariz/front.svg",
  40957. extra: 1401/1346,
  40958. bottom: 5/1406
  40959. }
  40960. },
  40961. },
  40962. [
  40963. {
  40964. name: "Normal",
  40965. height: math.unit(10, "feet"),
  40966. default: true
  40967. },
  40968. ]
  40969. ))
  40970. characterMakers.push(() => makeCharacter(
  40971. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  40972. {
  40973. front: {
  40974. height: math.unit(6, "feet"),
  40975. weight: math.unit(140, "lb"),
  40976. name: "Front",
  40977. image: {
  40978. source: "./media/characters/sigrun/front.svg",
  40979. extra: 1418/1359,
  40980. bottom: 27/1445
  40981. }
  40982. },
  40983. },
  40984. [
  40985. {
  40986. name: "Macro",
  40987. height: math.unit(35, "feet"),
  40988. default: true
  40989. },
  40990. ]
  40991. ))
  40992. characterMakers.push(() => makeCharacter(
  40993. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  40994. {
  40995. front: {
  40996. height: math.unit(6, "feet"),
  40997. weight: math.unit(150, "lb"),
  40998. name: "Front",
  40999. image: {
  41000. source: "./media/characters/numin/front.svg",
  41001. extra: 1433/1388,
  41002. bottom: 12/1445
  41003. }
  41004. },
  41005. },
  41006. [
  41007. {
  41008. name: "Macro",
  41009. height: math.unit(21.5, "km"),
  41010. default: true
  41011. },
  41012. ]
  41013. ))
  41014. characterMakers.push(() => makeCharacter(
  41015. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41016. {
  41017. front: {
  41018. height: math.unit(6, "feet"),
  41019. weight: math.unit(463, "lb"),
  41020. name: "Front",
  41021. image: {
  41022. source: "./media/characters/melwa/front.svg",
  41023. extra: 1307/1248,
  41024. bottom: 93/1400
  41025. }
  41026. },
  41027. },
  41028. [
  41029. {
  41030. name: "Macro",
  41031. height: math.unit(50, "meters"),
  41032. default: true
  41033. },
  41034. ]
  41035. ))
  41036. characterMakers.push(() => makeCharacter(
  41037. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41038. {
  41039. front: {
  41040. height: math.unit(325, "feet"),
  41041. name: "Front",
  41042. image: {
  41043. source: "./media/characters/zorkaiju/front.svg",
  41044. extra: 1955/1814,
  41045. bottom: 40/1995
  41046. }
  41047. },
  41048. frontExtended: {
  41049. height: math.unit(325, "feet"),
  41050. name: "Front (Extended)",
  41051. image: {
  41052. source: "./media/characters/zorkaiju/front-extended.svg",
  41053. extra: 1955/1814,
  41054. bottom: 40/1995
  41055. }
  41056. },
  41057. side: {
  41058. height: math.unit(325, "feet"),
  41059. name: "Side",
  41060. image: {
  41061. source: "./media/characters/zorkaiju/side.svg",
  41062. extra: 1495/1396,
  41063. bottom: 17/1512
  41064. }
  41065. },
  41066. sideExtended: {
  41067. height: math.unit(325, "feet"),
  41068. name: "Side (Extended)",
  41069. image: {
  41070. source: "./media/characters/zorkaiju/side-extended.svg",
  41071. extra: 1495/1396,
  41072. bottom: 17/1512
  41073. }
  41074. },
  41075. back: {
  41076. height: math.unit(325, "feet"),
  41077. name: "Back",
  41078. image: {
  41079. source: "./media/characters/zorkaiju/back.svg",
  41080. extra: 1959/1821,
  41081. bottom: 31/1990
  41082. }
  41083. },
  41084. backExtended: {
  41085. height: math.unit(325, "feet"),
  41086. name: "Back (Extended)",
  41087. image: {
  41088. source: "./media/characters/zorkaiju/back-extended.svg",
  41089. extra: 1959/1821,
  41090. bottom: 31/1990
  41091. }
  41092. },
  41093. hand: {
  41094. height: math.unit(58.4, "feet"),
  41095. name: "Hand",
  41096. image: {
  41097. source: "./media/characters/zorkaiju/hand.svg"
  41098. }
  41099. },
  41100. handExtended: {
  41101. height: math.unit(61.4, "feet"),
  41102. name: "Hand (Extended)",
  41103. image: {
  41104. source: "./media/characters/zorkaiju/hand-extended.svg"
  41105. }
  41106. },
  41107. foot: {
  41108. height: math.unit(95, "feet"),
  41109. name: "Foot",
  41110. image: {
  41111. source: "./media/characters/zorkaiju/foot.svg"
  41112. }
  41113. },
  41114. leftArm: {
  41115. height: math.unit(59, "feet"),
  41116. name: "Left Arm",
  41117. image: {
  41118. source: "./media/characters/zorkaiju/left-arm.svg"
  41119. }
  41120. },
  41121. rightArm: {
  41122. height: math.unit(59, "feet"),
  41123. name: "Right Arm",
  41124. image: {
  41125. source: "./media/characters/zorkaiju/right-arm.svg"
  41126. }
  41127. },
  41128. tail: {
  41129. height: math.unit(104, "feet"),
  41130. name: "Tail",
  41131. image: {
  41132. source: "./media/characters/zorkaiju/tail.svg"
  41133. }
  41134. },
  41135. tailExtended: {
  41136. height: math.unit(104, "feet"),
  41137. name: "Tail (Extended)",
  41138. image: {
  41139. source: "./media/characters/zorkaiju/tail-extended.svg"
  41140. }
  41141. },
  41142. tailBottom: {
  41143. height: math.unit(104, "feet"),
  41144. name: "Tail Bottom",
  41145. image: {
  41146. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41147. }
  41148. },
  41149. crystal: {
  41150. height: math.unit(27.54, "feet"),
  41151. name: "Crystal",
  41152. image: {
  41153. source: "./media/characters/zorkaiju/crystal.svg"
  41154. }
  41155. },
  41156. },
  41157. [
  41158. {
  41159. name: "Kaiju",
  41160. height: math.unit(325, "feet"),
  41161. default: true
  41162. },
  41163. ]
  41164. ))
  41165. characterMakers.push(() => makeCharacter(
  41166. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41167. {
  41168. front: {
  41169. height: math.unit(6 + 1/12, "feet"),
  41170. weight: math.unit(115, "lb"),
  41171. name: "Front",
  41172. image: {
  41173. source: "./media/characters/bailey-belfry/front.svg",
  41174. extra: 1240/1121,
  41175. bottom: 101/1341
  41176. }
  41177. },
  41178. },
  41179. [
  41180. {
  41181. name: "Normal",
  41182. height: math.unit(6 + 1/12, "feet"),
  41183. default: true
  41184. },
  41185. ]
  41186. ))
  41187. characterMakers.push(() => makeCharacter(
  41188. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41189. {
  41190. side: {
  41191. height: math.unit(4, "meters"),
  41192. weight: math.unit(250, "kg"),
  41193. name: "Side",
  41194. image: {
  41195. source: "./media/characters/blacky/side.svg",
  41196. extra: 1027/919,
  41197. bottom: 43/1070
  41198. }
  41199. },
  41200. maw: {
  41201. height: math.unit(1, "meters"),
  41202. name: "Maw",
  41203. image: {
  41204. source: "./media/characters/blacky/maw.svg"
  41205. }
  41206. },
  41207. paw: {
  41208. height: math.unit(1, "meters"),
  41209. name: "Paw",
  41210. image: {
  41211. source: "./media/characters/blacky/paw.svg"
  41212. }
  41213. },
  41214. },
  41215. [
  41216. {
  41217. name: "Normal",
  41218. height: math.unit(4, "meters"),
  41219. default: true
  41220. },
  41221. ]
  41222. ))
  41223. characterMakers.push(() => makeCharacter(
  41224. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41225. {
  41226. front: {
  41227. height: math.unit(170, "cm"),
  41228. weight: math.unit(66, "kg"),
  41229. name: "Front",
  41230. image: {
  41231. source: "./media/characters/thux-ei/front.svg",
  41232. extra: 1109/1011,
  41233. bottom: 8/1117
  41234. }
  41235. },
  41236. },
  41237. [
  41238. {
  41239. name: "Normal",
  41240. height: math.unit(170, "cm"),
  41241. default: true
  41242. },
  41243. ]
  41244. ))
  41245. characterMakers.push(() => makeCharacter(
  41246. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41247. {
  41248. front: {
  41249. height: math.unit(5, "feet"),
  41250. weight: math.unit(120, "lb"),
  41251. name: "Front",
  41252. image: {
  41253. source: "./media/characters/roxanne-voltaire/front.svg",
  41254. extra: 1901/1779,
  41255. bottom: 53/1954
  41256. }
  41257. },
  41258. },
  41259. [
  41260. {
  41261. name: "Normal",
  41262. height: math.unit(5, "feet"),
  41263. default: true
  41264. },
  41265. {
  41266. name: "Giant",
  41267. height: math.unit(50, "feet")
  41268. },
  41269. {
  41270. name: "Titan",
  41271. height: math.unit(500, "feet")
  41272. },
  41273. {
  41274. name: "Macro",
  41275. height: math.unit(5000, "feet")
  41276. },
  41277. {
  41278. name: "Megamacro",
  41279. height: math.unit(50000, "feet")
  41280. },
  41281. {
  41282. name: "Gigamacro",
  41283. height: math.unit(500000, "feet")
  41284. },
  41285. {
  41286. name: "Teramacro",
  41287. height: math.unit(5e6, "feet")
  41288. },
  41289. ]
  41290. ))
  41291. characterMakers.push(() => makeCharacter(
  41292. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41293. {
  41294. front: {
  41295. height: math.unit(6 + 2/12, "feet"),
  41296. name: "Front",
  41297. image: {
  41298. source: "./media/characters/squeaks/front.svg",
  41299. extra: 1823/1768,
  41300. bottom: 138/1961
  41301. }
  41302. },
  41303. },
  41304. [
  41305. {
  41306. name: "Micro",
  41307. height: math.unit(0.5, "inches")
  41308. },
  41309. {
  41310. name: "Normal",
  41311. height: math.unit(6 + 2/12, "feet"),
  41312. default: true
  41313. },
  41314. {
  41315. name: "Macro",
  41316. height: math.unit(600, "feet")
  41317. },
  41318. ]
  41319. ))
  41320. characterMakers.push(() => makeCharacter(
  41321. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41322. {
  41323. front: {
  41324. height: math.unit(1.72, "meters"),
  41325. name: "Front",
  41326. image: {
  41327. source: "./media/characters/archinger/front.svg",
  41328. extra: 1861/1675,
  41329. bottom: 125/1986
  41330. }
  41331. },
  41332. back: {
  41333. height: math.unit(1.72, "meters"),
  41334. name: "Back",
  41335. image: {
  41336. source: "./media/characters/archinger/back.svg",
  41337. extra: 1844/1701,
  41338. bottom: 104/1948
  41339. }
  41340. },
  41341. cock: {
  41342. height: math.unit(0.59, "feet"),
  41343. name: "Cock",
  41344. image: {
  41345. source: "./media/characters/archinger/cock.svg"
  41346. }
  41347. },
  41348. },
  41349. [
  41350. {
  41351. name: "Normal",
  41352. height: math.unit(1.72, "meters"),
  41353. default: true
  41354. },
  41355. {
  41356. name: "Macro",
  41357. height: math.unit(84, "meters")
  41358. },
  41359. {
  41360. name: "Macro+",
  41361. height: math.unit(112, "meters")
  41362. },
  41363. {
  41364. name: "Macro++",
  41365. height: math.unit(960, "meters")
  41366. },
  41367. {
  41368. name: "Macro+++",
  41369. height: math.unit(4, "km")
  41370. },
  41371. {
  41372. name: "Macro++++",
  41373. height: math.unit(48, "km")
  41374. },
  41375. {
  41376. name: "Macro+++++",
  41377. height: math.unit(4500, "km")
  41378. },
  41379. ]
  41380. ))
  41381. characterMakers.push(() => makeCharacter(
  41382. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41383. {
  41384. front: {
  41385. height: math.unit(5 + 5/12, "feet"),
  41386. name: "Front",
  41387. image: {
  41388. source: "./media/characters/alsnapz/front.svg",
  41389. extra: 1157/1065,
  41390. bottom: 42/1199
  41391. }
  41392. },
  41393. },
  41394. [
  41395. {
  41396. name: "Normal",
  41397. height: math.unit(5 + 5/12, "feet"),
  41398. default: true
  41399. },
  41400. ]
  41401. ))
  41402. characterMakers.push(() => makeCharacter(
  41403. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41404. {
  41405. side: {
  41406. height: math.unit(3.2, "earths"),
  41407. name: "Side",
  41408. image: {
  41409. source: "./media/characters/mag/side.svg",
  41410. extra: 1331/1008,
  41411. bottom: 52/1383
  41412. }
  41413. },
  41414. wing: {
  41415. height: math.unit(1.94, "earths"),
  41416. name: "Wing",
  41417. image: {
  41418. source: "./media/characters/mag/wing.svg"
  41419. }
  41420. },
  41421. dick: {
  41422. height: math.unit(1.8, "earths"),
  41423. name: "Dick",
  41424. image: {
  41425. source: "./media/characters/mag/dick.svg"
  41426. }
  41427. },
  41428. ass: {
  41429. height: math.unit(1.33, "earths"),
  41430. name: "Ass",
  41431. image: {
  41432. source: "./media/characters/mag/ass.svg"
  41433. }
  41434. },
  41435. head: {
  41436. height: math.unit(1.1, "earths"),
  41437. name: "Head",
  41438. image: {
  41439. source: "./media/characters/mag/head.svg"
  41440. }
  41441. },
  41442. maw: {
  41443. height: math.unit(1.62, "earths"),
  41444. name: "Maw",
  41445. image: {
  41446. source: "./media/characters/mag/maw.svg"
  41447. }
  41448. },
  41449. },
  41450. [
  41451. {
  41452. name: "Small",
  41453. height: math.unit(162, "feet")
  41454. },
  41455. {
  41456. name: "Normal",
  41457. height: math.unit(3.2, "earths"),
  41458. default: true
  41459. },
  41460. ]
  41461. ))
  41462. characterMakers.push(() => makeCharacter(
  41463. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41464. {
  41465. front: {
  41466. height: math.unit(512, "feet"),
  41467. weight: math.unit(63509, "tonnes"),
  41468. name: "Front",
  41469. image: {
  41470. source: "./media/characters/vorrel-harroc/front.svg",
  41471. extra: 1075/1063,
  41472. bottom: 62/1137
  41473. }
  41474. },
  41475. },
  41476. [
  41477. {
  41478. name: "Normal",
  41479. height: math.unit(10, "feet")
  41480. },
  41481. {
  41482. name: "Macro",
  41483. height: math.unit(512, "feet"),
  41484. default: true
  41485. },
  41486. {
  41487. name: "Megamacro",
  41488. height: math.unit(256, "miles")
  41489. },
  41490. {
  41491. name: "Gigamacro",
  41492. height: math.unit(4096, "miles")
  41493. },
  41494. ]
  41495. ))
  41496. characterMakers.push(() => makeCharacter(
  41497. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41498. {
  41499. side: {
  41500. height: math.unit(50, "feet"),
  41501. name: "Side",
  41502. image: {
  41503. source: "./media/characters/froimar/side.svg",
  41504. extra: 855/638,
  41505. bottom: 99/954
  41506. }
  41507. },
  41508. },
  41509. [
  41510. {
  41511. name: "Macro",
  41512. height: math.unit(50, "feet"),
  41513. default: true
  41514. },
  41515. ]
  41516. ))
  41517. characterMakers.push(() => makeCharacter(
  41518. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41519. {
  41520. front: {
  41521. height: math.unit(210, "miles"),
  41522. name: "Front",
  41523. image: {
  41524. source: "./media/characters/timothy/front.svg",
  41525. extra: 1007/943,
  41526. bottom: 62/1069
  41527. }
  41528. },
  41529. frontSkirt: {
  41530. height: math.unit(210, "miles"),
  41531. name: "Front (Skirt)",
  41532. image: {
  41533. source: "./media/characters/timothy/front-skirt.svg",
  41534. extra: 1007/943,
  41535. bottom: 62/1069
  41536. }
  41537. },
  41538. frontCoat: {
  41539. height: math.unit(210, "miles"),
  41540. name: "Front (Coat)",
  41541. image: {
  41542. source: "./media/characters/timothy/front-coat.svg",
  41543. extra: 1007/943,
  41544. bottom: 62/1069
  41545. }
  41546. },
  41547. },
  41548. [
  41549. {
  41550. name: "Macro",
  41551. height: math.unit(210, "miles"),
  41552. default: true
  41553. },
  41554. {
  41555. name: "Megamacro",
  41556. height: math.unit(210000, "miles")
  41557. },
  41558. ]
  41559. ))
  41560. characterMakers.push(() => makeCharacter(
  41561. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41562. {
  41563. front: {
  41564. height: math.unit(188, "feet"),
  41565. name: "Front",
  41566. image: {
  41567. source: "./media/characters/pyotr/front.svg",
  41568. extra: 1912/1826,
  41569. bottom: 18/1930
  41570. }
  41571. },
  41572. },
  41573. [
  41574. {
  41575. name: "Macro",
  41576. height: math.unit(188, "feet"),
  41577. default: true
  41578. },
  41579. {
  41580. name: "Megamacro",
  41581. height: math.unit(8, "miles")
  41582. },
  41583. ]
  41584. ))
  41585. characterMakers.push(() => makeCharacter(
  41586. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41587. {
  41588. side: {
  41589. height: math.unit(10, "feet"),
  41590. weight: math.unit(4500, "lb"),
  41591. name: "Side",
  41592. image: {
  41593. source: "./media/characters/ackart/side.svg",
  41594. extra: 1776/1668,
  41595. bottom: 116/1892
  41596. }
  41597. },
  41598. },
  41599. [
  41600. {
  41601. name: "Normal",
  41602. height: math.unit(10, "feet"),
  41603. default: true
  41604. },
  41605. ]
  41606. ))
  41607. characterMakers.push(() => makeCharacter(
  41608. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41609. {
  41610. side: {
  41611. height: math.unit(21, "feet"),
  41612. name: "Side",
  41613. image: {
  41614. source: "./media/characters/nolow/side.svg",
  41615. extra: 1484/1434,
  41616. bottom: 85/1569
  41617. }
  41618. },
  41619. sideErect: {
  41620. height: math.unit(21, "feet"),
  41621. name: "Side-erect",
  41622. image: {
  41623. source: "./media/characters/nolow/side-erect.svg",
  41624. extra: 1484/1434,
  41625. bottom: 85/1569
  41626. }
  41627. },
  41628. },
  41629. [
  41630. {
  41631. name: "Regular",
  41632. height: math.unit(12, "feet")
  41633. },
  41634. {
  41635. name: "Big Chee",
  41636. height: math.unit(21, "feet"),
  41637. default: true
  41638. },
  41639. ]
  41640. ))
  41641. characterMakers.push(() => makeCharacter(
  41642. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41643. {
  41644. front: {
  41645. height: math.unit(7, "feet"),
  41646. weight: math.unit(250, "lb"),
  41647. name: "Front",
  41648. image: {
  41649. source: "./media/characters/nines/front.svg",
  41650. extra: 1741/1607,
  41651. bottom: 41/1782
  41652. }
  41653. },
  41654. side: {
  41655. height: math.unit(7, "feet"),
  41656. weight: math.unit(250, "lb"),
  41657. name: "Side",
  41658. image: {
  41659. source: "./media/characters/nines/side.svg",
  41660. extra: 1854/1735,
  41661. bottom: 93/1947
  41662. }
  41663. },
  41664. back: {
  41665. height: math.unit(7, "feet"),
  41666. weight: math.unit(250, "lb"),
  41667. name: "Back",
  41668. image: {
  41669. source: "./media/characters/nines/back.svg",
  41670. extra: 1748/1615,
  41671. bottom: 20/1768
  41672. }
  41673. },
  41674. },
  41675. [
  41676. {
  41677. name: "Megamacro",
  41678. height: math.unit(99, "km"),
  41679. default: true
  41680. },
  41681. ]
  41682. ))
  41683. characterMakers.push(() => makeCharacter(
  41684. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41685. {
  41686. front: {
  41687. height: math.unit(5 + 10/12, "feet"),
  41688. weight: math.unit(210, "lb"),
  41689. name: "Front",
  41690. image: {
  41691. source: "./media/characters/zenith/front.svg",
  41692. extra: 1531/1452,
  41693. bottom: 198/1729
  41694. }
  41695. },
  41696. back: {
  41697. height: math.unit(5 + 10/12, "feet"),
  41698. weight: math.unit(210, "lb"),
  41699. name: "Back",
  41700. image: {
  41701. source: "./media/characters/zenith/back.svg",
  41702. extra: 1571/1487,
  41703. bottom: 75/1646
  41704. }
  41705. },
  41706. },
  41707. [
  41708. {
  41709. name: "Normal",
  41710. height: math.unit(5 + 10/12, "feet"),
  41711. default: true
  41712. }
  41713. ]
  41714. ))
  41715. characterMakers.push(() => makeCharacter(
  41716. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41717. {
  41718. front: {
  41719. height: math.unit(4, "feet"),
  41720. weight: math.unit(60, "lb"),
  41721. name: "Front",
  41722. image: {
  41723. source: "./media/characters/jasper/front.svg",
  41724. extra: 1450/1379,
  41725. bottom: 19/1469
  41726. }
  41727. },
  41728. },
  41729. [
  41730. {
  41731. name: "Normal",
  41732. height: math.unit(4, "feet"),
  41733. default: true
  41734. },
  41735. ]
  41736. ))
  41737. characterMakers.push(() => makeCharacter(
  41738. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41739. {
  41740. front: {
  41741. height: math.unit(6 + 5/12, "feet"),
  41742. weight: math.unit(290, "lb"),
  41743. name: "Front",
  41744. image: {
  41745. source: "./media/characters/tiberius-thyben/front.svg",
  41746. extra: 757/739,
  41747. bottom: 39/796
  41748. }
  41749. },
  41750. },
  41751. [
  41752. {
  41753. name: "Micro",
  41754. height: math.unit(1.5, "inches")
  41755. },
  41756. {
  41757. name: "Normal",
  41758. height: math.unit(6 + 5/12, "feet"),
  41759. default: true
  41760. },
  41761. {
  41762. name: "Macro",
  41763. height: math.unit(300, "feet")
  41764. },
  41765. ]
  41766. ))
  41767. characterMakers.push(() => makeCharacter(
  41768. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  41769. {
  41770. front: {
  41771. height: math.unit(5 + 6/12, "feet"),
  41772. weight: math.unit(60, "kg"),
  41773. name: "Front",
  41774. image: {
  41775. source: "./media/characters/sabre/front.svg",
  41776. extra: 738/671,
  41777. bottom: 27/765
  41778. }
  41779. },
  41780. },
  41781. [
  41782. {
  41783. name: "Teeny",
  41784. height: math.unit(2, "inches")
  41785. },
  41786. {
  41787. name: "Smol",
  41788. height: math.unit(8, "inches")
  41789. },
  41790. {
  41791. name: "Normal",
  41792. height: math.unit(5 + 6/12, "feet"),
  41793. default: true
  41794. },
  41795. {
  41796. name: "Mini-Macro",
  41797. height: math.unit(15, "feet")
  41798. },
  41799. {
  41800. name: "Macro",
  41801. height: math.unit(50, "feet")
  41802. },
  41803. ]
  41804. ))
  41805. characterMakers.push(() => makeCharacter(
  41806. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  41807. {
  41808. front: {
  41809. height: math.unit(6 + 4/12, "feet"),
  41810. weight: math.unit(170, "lb"),
  41811. name: "Front",
  41812. image: {
  41813. source: "./media/characters/charlie/front.svg",
  41814. extra: 1348/1228,
  41815. bottom: 15/1363
  41816. }
  41817. },
  41818. },
  41819. [
  41820. {
  41821. name: "Macro",
  41822. height: math.unit(1700, "meters"),
  41823. default: true
  41824. },
  41825. {
  41826. name: "MegaMacro",
  41827. height: math.unit(20400, "meters")
  41828. },
  41829. ]
  41830. ))
  41831. characterMakers.push(() => makeCharacter(
  41832. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  41833. {
  41834. front: {
  41835. height: math.unit(6 + 3/12, "feet"),
  41836. weight: math.unit(185, "lb"),
  41837. name: "Front",
  41838. image: {
  41839. source: "./media/characters/susan-grant/front.svg",
  41840. extra: 1351/1327,
  41841. bottom: 26/1377
  41842. }
  41843. },
  41844. },
  41845. [
  41846. {
  41847. name: "Normal",
  41848. height: math.unit(6 + 3/12, "feet"),
  41849. default: true
  41850. },
  41851. {
  41852. name: "Macro",
  41853. height: math.unit(225, "feet")
  41854. },
  41855. {
  41856. name: "Macro+",
  41857. height: math.unit(900, "feet")
  41858. },
  41859. {
  41860. name: "MegaMacro",
  41861. height: math.unit(14400, "feet")
  41862. },
  41863. ]
  41864. ))
  41865. characterMakers.push(() => makeCharacter(
  41866. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  41867. {
  41868. front: {
  41869. height: math.unit(5 + 4/12, "feet"),
  41870. weight: math.unit(110, "lb"),
  41871. name: "Front",
  41872. image: {
  41873. source: "./media/characters/axel-isanov/front.svg",
  41874. extra: 1096/1065,
  41875. bottom: 13/1109
  41876. }
  41877. },
  41878. },
  41879. [
  41880. {
  41881. name: "Normal",
  41882. height: math.unit(5 + 4/12, "feet"),
  41883. default: true
  41884. },
  41885. ]
  41886. ))
  41887. characterMakers.push(() => makeCharacter(
  41888. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  41889. {
  41890. front: {
  41891. height: math.unit(9, "feet"),
  41892. weight: math.unit(467, "lb"),
  41893. name: "Front",
  41894. image: {
  41895. source: "./media/characters/necahual/front.svg",
  41896. extra: 920/873,
  41897. bottom: 26/946
  41898. }
  41899. },
  41900. back: {
  41901. height: math.unit(9, "feet"),
  41902. weight: math.unit(467, "lb"),
  41903. name: "Back",
  41904. image: {
  41905. source: "./media/characters/necahual/back.svg",
  41906. extra: 930/884,
  41907. bottom: 16/946
  41908. }
  41909. },
  41910. frontUnderwear: {
  41911. height: math.unit(9, "feet"),
  41912. weight: math.unit(467, "lb"),
  41913. name: "Front (Underwear)",
  41914. image: {
  41915. source: "./media/characters/necahual/front-underwear.svg",
  41916. extra: 920/873,
  41917. bottom: 26/946
  41918. }
  41919. },
  41920. frontDressed: {
  41921. height: math.unit(9, "feet"),
  41922. weight: math.unit(467, "lb"),
  41923. name: "Front (Dressed)",
  41924. image: {
  41925. source: "./media/characters/necahual/front-dressed.svg",
  41926. extra: 920/873,
  41927. bottom: 26/946
  41928. }
  41929. },
  41930. },
  41931. [
  41932. {
  41933. name: "Comprsesed",
  41934. height: math.unit(9, "feet")
  41935. },
  41936. {
  41937. name: "Natural",
  41938. height: math.unit(15, "feet"),
  41939. default: true
  41940. },
  41941. {
  41942. name: "Boosted",
  41943. height: math.unit(50, "feet")
  41944. },
  41945. {
  41946. name: "Boosted+",
  41947. height: math.unit(150, "feet")
  41948. },
  41949. {
  41950. name: "Max",
  41951. height: math.unit(500, "feet")
  41952. },
  41953. ]
  41954. ))
  41955. characterMakers.push(() => makeCharacter(
  41956. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  41957. {
  41958. front: {
  41959. height: math.unit(22 + 1/12, "feet"),
  41960. weight: math.unit(3200, "lb"),
  41961. name: "Front",
  41962. image: {
  41963. source: "./media/characters/theo-acacia/front.svg",
  41964. extra: 1796/1741,
  41965. bottom: 83/1879
  41966. }
  41967. },
  41968. frontUnderwear: {
  41969. height: math.unit(22 + 1/12, "feet"),
  41970. weight: math.unit(3200, "lb"),
  41971. name: "Front (Underwear)",
  41972. image: {
  41973. source: "./media/characters/theo-acacia/front-underwear.svg",
  41974. extra: 1796/1741,
  41975. bottom: 83/1879
  41976. }
  41977. },
  41978. frontNude: {
  41979. height: math.unit(22 + 1/12, "feet"),
  41980. weight: math.unit(3200, "lb"),
  41981. name: "Front (Nude)",
  41982. image: {
  41983. source: "./media/characters/theo-acacia/front-nude.svg",
  41984. extra: 1796/1741,
  41985. bottom: 83/1879
  41986. }
  41987. },
  41988. },
  41989. [
  41990. {
  41991. name: "Normal",
  41992. height: math.unit(22 + 1/12, "feet"),
  41993. default: true
  41994. },
  41995. ]
  41996. ))
  41997. characterMakers.push(() => makeCharacter(
  41998. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41999. {
  42000. front: {
  42001. height: math.unit(20, "feet"),
  42002. name: "Front",
  42003. image: {
  42004. source: "./media/characters/astra/front.svg",
  42005. extra: 1850/1714,
  42006. bottom: 106/1956
  42007. }
  42008. },
  42009. frontUndressed: {
  42010. height: math.unit(20, "feet"),
  42011. name: "Front (Undressed)",
  42012. image: {
  42013. source: "./media/characters/astra/front-undressed.svg",
  42014. extra: 1926/1749,
  42015. bottom: 0/1926
  42016. }
  42017. },
  42018. hand: {
  42019. height: math.unit(1.53, "feet"),
  42020. name: "Hand",
  42021. image: {
  42022. source: "./media/characters/astra/hand.svg"
  42023. }
  42024. },
  42025. paw: {
  42026. height: math.unit(1.53, "feet"),
  42027. name: "Paw",
  42028. image: {
  42029. source: "./media/characters/astra/paw.svg"
  42030. }
  42031. },
  42032. },
  42033. [
  42034. {
  42035. name: "Smallest",
  42036. height: math.unit(20, "feet")
  42037. },
  42038. {
  42039. name: "Normal",
  42040. height: math.unit(1e9, "miles"),
  42041. default: true
  42042. },
  42043. {
  42044. name: "Larger",
  42045. height: math.unit(5, "multiverses")
  42046. },
  42047. {
  42048. name: "Largest",
  42049. height: math.unit(1e9, "multiverses")
  42050. },
  42051. ]
  42052. ))
  42053. characterMakers.push(() => makeCharacter(
  42054. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42055. {
  42056. front: {
  42057. height: math.unit(8, "feet"),
  42058. name: "Front",
  42059. image: {
  42060. source: "./media/characters/breanna/front.svg",
  42061. extra: 1912/1632,
  42062. bottom: 33/1945
  42063. }
  42064. },
  42065. },
  42066. [
  42067. {
  42068. name: "Smallest",
  42069. height: math.unit(8, "feet")
  42070. },
  42071. {
  42072. name: "Normal",
  42073. height: math.unit(1, "mile"),
  42074. default: true
  42075. },
  42076. {
  42077. name: "Maximum",
  42078. height: math.unit(1500000000000, "lightyears")
  42079. },
  42080. ]
  42081. ))
  42082. characterMakers.push(() => makeCharacter(
  42083. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42084. {
  42085. front: {
  42086. height: math.unit(5 + 11/12, "feet"),
  42087. weight: math.unit(155, "lb"),
  42088. name: "Front",
  42089. image: {
  42090. source: "./media/characters/cai/front.svg",
  42091. extra: 1823/1702,
  42092. bottom: 32/1855
  42093. }
  42094. },
  42095. back: {
  42096. height: math.unit(5 + 11/12, "feet"),
  42097. weight: math.unit(155, "lb"),
  42098. name: "Back",
  42099. image: {
  42100. source: "./media/characters/cai/back.svg",
  42101. extra: 1809/1708,
  42102. bottom: 31/1840
  42103. }
  42104. },
  42105. },
  42106. [
  42107. {
  42108. name: "Normal",
  42109. height: math.unit(5 + 11/12, "feet"),
  42110. default: true
  42111. },
  42112. {
  42113. name: "Big",
  42114. height: math.unit(15, "feet")
  42115. },
  42116. {
  42117. name: "Macro",
  42118. height: math.unit(200, "feet")
  42119. },
  42120. ]
  42121. ))
  42122. characterMakers.push(() => makeCharacter(
  42123. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42124. {
  42125. front: {
  42126. height: math.unit(5 + 6/12, "feet"),
  42127. weight: math.unit(160, "lb"),
  42128. name: "Front",
  42129. image: {
  42130. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42131. extra: 1227/1174,
  42132. bottom: 37/1264
  42133. }
  42134. },
  42135. },
  42136. [
  42137. {
  42138. name: "Macro",
  42139. height: math.unit(444, "meters"),
  42140. default: true
  42141. },
  42142. ]
  42143. ))
  42144. characterMakers.push(() => makeCharacter(
  42145. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42146. {
  42147. front: {
  42148. height: math.unit(18 + 7/12, "feet"),
  42149. name: "Front",
  42150. image: {
  42151. source: "./media/characters/rex/front.svg",
  42152. extra: 1941/1807,
  42153. bottom: 66/2007
  42154. }
  42155. },
  42156. back: {
  42157. height: math.unit(18 + 7/12, "feet"),
  42158. name: "Back",
  42159. image: {
  42160. source: "./media/characters/rex/back.svg",
  42161. extra: 1937/1822,
  42162. bottom: 42/1979
  42163. }
  42164. },
  42165. boot: {
  42166. height: math.unit(3.45, "feet"),
  42167. name: "Boot",
  42168. image: {
  42169. source: "./media/characters/rex/boot.svg"
  42170. }
  42171. },
  42172. paw: {
  42173. height: math.unit(4.17, "feet"),
  42174. name: "Paw",
  42175. image: {
  42176. source: "./media/characters/rex/paw.svg"
  42177. }
  42178. },
  42179. head: {
  42180. height: math.unit(6.728, "feet"),
  42181. name: "Head",
  42182. image: {
  42183. source: "./media/characters/rex/head.svg"
  42184. }
  42185. },
  42186. },
  42187. [
  42188. {
  42189. name: "Nano",
  42190. height: math.unit(18 + 7/12, "feet")
  42191. },
  42192. {
  42193. name: "Micro",
  42194. height: math.unit(1.5, "megameters")
  42195. },
  42196. {
  42197. name: "Normal",
  42198. height: math.unit(440, "megameters"),
  42199. default: true
  42200. },
  42201. {
  42202. name: "Macro",
  42203. height: math.unit(2.5, "gigameters")
  42204. },
  42205. {
  42206. name: "Gigamacro",
  42207. height: math.unit(2, "galaxies")
  42208. },
  42209. ]
  42210. ))
  42211. characterMakers.push(() => makeCharacter(
  42212. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42213. {
  42214. side: {
  42215. height: math.unit(32, "feet"),
  42216. weight: math.unit(250000, "lb"),
  42217. name: "Side",
  42218. image: {
  42219. source: "./media/characters/silverwing/side.svg",
  42220. extra: 1100/1019,
  42221. bottom: 204/1304
  42222. }
  42223. },
  42224. },
  42225. [
  42226. {
  42227. name: "Normal",
  42228. height: math.unit(32, "feet"),
  42229. default: true
  42230. },
  42231. ]
  42232. ))
  42233. characterMakers.push(() => makeCharacter(
  42234. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42235. {
  42236. front: {
  42237. height: math.unit(6 + 6/12, "feet"),
  42238. weight: math.unit(350, "lb"),
  42239. name: "Front",
  42240. image: {
  42241. source: "./media/characters/tristan-hawthorne/front.svg",
  42242. extra: 1159/1124,
  42243. bottom: 37/1196
  42244. },
  42245. form: "labrador",
  42246. default: true
  42247. },
  42248. skunkFront: {
  42249. height: math.unit(4 + 6/12, "feet"),
  42250. weight: math.unit(120, "lb"),
  42251. name: "Front",
  42252. image: {
  42253. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42254. extra: 1609/1551,
  42255. bottom: 169/1778
  42256. },
  42257. form: "skunk",
  42258. default: true
  42259. },
  42260. },
  42261. [
  42262. {
  42263. name: "Normal",
  42264. height: math.unit(6 + 6/12, "feet"),
  42265. form: "labrador",
  42266. default: true
  42267. },
  42268. {
  42269. name: "Normal",
  42270. height: math.unit(4 + 6/12, "feet"),
  42271. form: "skunk",
  42272. default: true
  42273. },
  42274. ],
  42275. {
  42276. "labrador": {
  42277. name: "Labrador",
  42278. default: true
  42279. },
  42280. "skunk": {
  42281. name: "Skunk"
  42282. }
  42283. }
  42284. ))
  42285. characterMakers.push(() => makeCharacter(
  42286. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42287. {
  42288. front: {
  42289. height: math.unit(5 + 11/12, "feet"),
  42290. weight: math.unit(190, "lb"),
  42291. name: "Front",
  42292. image: {
  42293. source: "./media/characters/mizu/front.svg",
  42294. extra: 1988/1788,
  42295. bottom: 14/2002
  42296. }
  42297. },
  42298. },
  42299. [
  42300. {
  42301. name: "Normal",
  42302. height: math.unit(5 + 11/12, "feet"),
  42303. default: true
  42304. },
  42305. ]
  42306. ))
  42307. characterMakers.push(() => makeCharacter(
  42308. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42309. {
  42310. front: {
  42311. height: math.unit(1.7, "feet"),
  42312. weight: math.unit(50, "lb"),
  42313. name: "Front",
  42314. image: {
  42315. source: "./media/characters/dechroma/front.svg",
  42316. extra: 1095/859,
  42317. bottom: 64/1159
  42318. }
  42319. },
  42320. },
  42321. [
  42322. {
  42323. name: "Normal",
  42324. height: math.unit(1.7, "feet"),
  42325. default: true
  42326. },
  42327. ]
  42328. ))
  42329. characterMakers.push(() => makeCharacter(
  42330. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42331. {
  42332. side: {
  42333. height: math.unit(30, "feet"),
  42334. name: "Side",
  42335. image: {
  42336. source: "./media/characters/veluren-thanazel/side.svg",
  42337. extra: 1611/633,
  42338. bottom: 118/1729
  42339. }
  42340. },
  42341. front: {
  42342. height: math.unit(30, "feet"),
  42343. name: "Front",
  42344. image: {
  42345. source: "./media/characters/veluren-thanazel/front.svg",
  42346. extra: 1486/636,
  42347. bottom: 238/1724
  42348. }
  42349. },
  42350. head: {
  42351. height: math.unit(21.4, "feet"),
  42352. name: "Head",
  42353. image: {
  42354. source: "./media/characters/veluren-thanazel/head.svg"
  42355. }
  42356. },
  42357. genitals: {
  42358. height: math.unit(19.4, "feet"),
  42359. name: "Genitals",
  42360. image: {
  42361. source: "./media/characters/veluren-thanazel/genitals.svg"
  42362. }
  42363. },
  42364. },
  42365. [
  42366. {
  42367. name: "Social",
  42368. height: math.unit(6, "feet")
  42369. },
  42370. {
  42371. name: "Play",
  42372. height: math.unit(12, "feet")
  42373. },
  42374. {
  42375. name: "True",
  42376. height: math.unit(30, "feet"),
  42377. default: true
  42378. },
  42379. ]
  42380. ))
  42381. characterMakers.push(() => makeCharacter(
  42382. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42383. {
  42384. front: {
  42385. height: math.unit(7 + 6/12, "feet"),
  42386. weight: math.unit(500, "kg"),
  42387. name: "Front",
  42388. image: {
  42389. source: "./media/characters/arcturas/front.svg",
  42390. extra: 1700/1500,
  42391. bottom: 145/1845
  42392. }
  42393. },
  42394. },
  42395. [
  42396. {
  42397. name: "Normal",
  42398. height: math.unit(7 + 6/12, "feet"),
  42399. default: true
  42400. },
  42401. ]
  42402. ))
  42403. characterMakers.push(() => makeCharacter(
  42404. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42405. {
  42406. side: {
  42407. height: math.unit(6, "feet"),
  42408. weight: math.unit(2, "tons"),
  42409. name: "Side",
  42410. image: {
  42411. source: "./media/characters/vitaen/side.svg",
  42412. extra: 1157/617,
  42413. bottom: 122/1279
  42414. }
  42415. },
  42416. },
  42417. [
  42418. {
  42419. name: "Normal",
  42420. height: math.unit(6, "feet"),
  42421. default: true
  42422. },
  42423. ]
  42424. ))
  42425. characterMakers.push(() => makeCharacter(
  42426. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42427. {
  42428. front: {
  42429. height: math.unit(19, "feet"),
  42430. name: "Front",
  42431. image: {
  42432. source: "./media/characters/fia-dreamweaver/front.svg",
  42433. extra: 1630/1504,
  42434. bottom: 25/1655
  42435. }
  42436. },
  42437. },
  42438. [
  42439. {
  42440. name: "Normal",
  42441. height: math.unit(19, "feet"),
  42442. default: true
  42443. },
  42444. ]
  42445. ))
  42446. characterMakers.push(() => makeCharacter(
  42447. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42448. {
  42449. front: {
  42450. height: math.unit(5 + 4/12, "feet"),
  42451. name: "Front",
  42452. image: {
  42453. source: "./media/characters/artan/front.svg",
  42454. extra: 1618/1535,
  42455. bottom: 46/1664
  42456. }
  42457. },
  42458. back: {
  42459. height: math.unit(5 + 4/12, "feet"),
  42460. name: "Back",
  42461. image: {
  42462. source: "./media/characters/artan/back.svg",
  42463. extra: 1618/1543,
  42464. bottom: 31/1649
  42465. }
  42466. },
  42467. },
  42468. [
  42469. {
  42470. name: "Normal",
  42471. height: math.unit(5 + 4/12, "feet"),
  42472. default: true
  42473. },
  42474. ]
  42475. ))
  42476. characterMakers.push(() => makeCharacter(
  42477. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42478. {
  42479. side: {
  42480. height: math.unit(182, "cm"),
  42481. weight: math.unit(1000, "lb"),
  42482. name: "Side",
  42483. image: {
  42484. source: "./media/characters/silver-dragon/side.svg",
  42485. extra: 710/287,
  42486. bottom: 88/798
  42487. }
  42488. },
  42489. },
  42490. [
  42491. {
  42492. name: "Normal",
  42493. height: math.unit(182, "cm"),
  42494. default: true
  42495. },
  42496. ]
  42497. ))
  42498. characterMakers.push(() => makeCharacter(
  42499. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42500. {
  42501. side: {
  42502. height: math.unit(6 + 6/12, "feet"),
  42503. weight: math.unit(1.5, "tons"),
  42504. name: "Side",
  42505. image: {
  42506. source: "./media/characters/zephyr/side.svg",
  42507. extra: 1433/586,
  42508. bottom: 109/1542
  42509. }
  42510. },
  42511. },
  42512. [
  42513. {
  42514. name: "Normal",
  42515. height: math.unit(6 + 6/12, "feet"),
  42516. default: true
  42517. },
  42518. ]
  42519. ))
  42520. characterMakers.push(() => makeCharacter(
  42521. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  42522. {
  42523. side: {
  42524. height: math.unit(1, "feet"),
  42525. name: "Side",
  42526. image: {
  42527. source: "./media/characters/vixye/side.svg",
  42528. extra: 632/541,
  42529. bottom: 0/632
  42530. }
  42531. },
  42532. },
  42533. [
  42534. {
  42535. name: "Normal",
  42536. height: math.unit(1, "feet"),
  42537. default: true
  42538. },
  42539. {
  42540. name: "True",
  42541. height: math.unit(1e15, "multiverses")
  42542. },
  42543. ]
  42544. ))
  42545. characterMakers.push(() => makeCharacter(
  42546. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  42547. {
  42548. front: {
  42549. height: math.unit(8 + 2/12, "feet"),
  42550. weight: math.unit(650, "lb"),
  42551. name: "Front",
  42552. image: {
  42553. source: "./media/characters/darla-mac-lochlainn/front.svg",
  42554. extra: 1174/1137,
  42555. bottom: 82/1256
  42556. }
  42557. },
  42558. back: {
  42559. height: math.unit(8 + 2/12, "feet"),
  42560. weight: math.unit(650, "lb"),
  42561. name: "Back",
  42562. image: {
  42563. source: "./media/characters/darla-mac-lochlainn/back.svg",
  42564. extra: 1204/1157,
  42565. bottom: 46/1250
  42566. }
  42567. },
  42568. },
  42569. [
  42570. {
  42571. name: "Wildform",
  42572. height: math.unit(8 + 2/12, "feet"),
  42573. default: true
  42574. },
  42575. ]
  42576. ))
  42577. characterMakers.push(() => makeCharacter(
  42578. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  42579. {
  42580. front: {
  42581. height: math.unit(18, "feet"),
  42582. name: "Front",
  42583. image: {
  42584. source: "./media/characters/cyphin/front.svg",
  42585. extra: 970/886,
  42586. bottom: 42/1012
  42587. }
  42588. },
  42589. back: {
  42590. height: math.unit(18, "feet"),
  42591. name: "Back",
  42592. image: {
  42593. source: "./media/characters/cyphin/back.svg",
  42594. extra: 1009/894,
  42595. bottom: 24/1033
  42596. }
  42597. },
  42598. head: {
  42599. height: math.unit(5.05, "feet"),
  42600. name: "Head",
  42601. image: {
  42602. source: "./media/characters/cyphin/head.svg"
  42603. }
  42604. },
  42605. tailbud: {
  42606. height: math.unit(5, "feet"),
  42607. name: "Tailbud",
  42608. image: {
  42609. source: "./media/characters/cyphin/tailbud.svg"
  42610. }
  42611. },
  42612. },
  42613. [
  42614. ]
  42615. ))
  42616. characterMakers.push(() => makeCharacter(
  42617. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42618. {
  42619. side: {
  42620. height: math.unit(10, "feet"),
  42621. weight: math.unit(6, "tons"),
  42622. name: "Side",
  42623. image: {
  42624. source: "./media/characters/raijin/side.svg",
  42625. extra: 1529/613,
  42626. bottom: 337/1866
  42627. }
  42628. },
  42629. },
  42630. [
  42631. {
  42632. name: "Normal",
  42633. height: math.unit(10, "feet"),
  42634. default: true
  42635. },
  42636. ]
  42637. ))
  42638. characterMakers.push(() => makeCharacter(
  42639. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42640. {
  42641. side: {
  42642. height: math.unit(9, "feet"),
  42643. name: "Side",
  42644. image: {
  42645. source: "./media/characters/nilghais/side.svg",
  42646. extra: 1047/744,
  42647. bottom: 91/1138
  42648. }
  42649. },
  42650. head: {
  42651. height: math.unit(3.14, "feet"),
  42652. name: "Head",
  42653. image: {
  42654. source: "./media/characters/nilghais/head.svg"
  42655. }
  42656. },
  42657. mouth: {
  42658. height: math.unit(4.6, "feet"),
  42659. name: "Mouth",
  42660. image: {
  42661. source: "./media/characters/nilghais/mouth.svg"
  42662. }
  42663. },
  42664. wings: {
  42665. height: math.unit(24, "feet"),
  42666. name: "Wings",
  42667. image: {
  42668. source: "./media/characters/nilghais/wings.svg"
  42669. }
  42670. },
  42671. ass: {
  42672. height: math.unit(6.12, "feet"),
  42673. name: "Ass",
  42674. image: {
  42675. source: "./media/characters/nilghais/ass.svg"
  42676. }
  42677. },
  42678. },
  42679. [
  42680. {
  42681. name: "Normal",
  42682. height: math.unit(9, "feet"),
  42683. default: true
  42684. },
  42685. ]
  42686. ))
  42687. characterMakers.push(() => makeCharacter(
  42688. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42689. {
  42690. regular: {
  42691. height: math.unit(16 + 2/12, "feet"),
  42692. weight: math.unit(2300, "lb"),
  42693. name: "Regular",
  42694. image: {
  42695. source: "./media/characters/zolgar/regular.svg",
  42696. extra: 1246/1004,
  42697. bottom: 124/1370
  42698. }
  42699. },
  42700. boxers: {
  42701. height: math.unit(16 + 2/12, "feet"),
  42702. weight: math.unit(2300, "lb"),
  42703. name: "Boxers",
  42704. image: {
  42705. source: "./media/characters/zolgar/boxers.svg",
  42706. extra: 1246/1004,
  42707. bottom: 124/1370
  42708. }
  42709. },
  42710. armored: {
  42711. height: math.unit(16 + 2/12, "feet"),
  42712. weight: math.unit(2300, "lb"),
  42713. name: "Armored",
  42714. image: {
  42715. source: "./media/characters/zolgar/armored.svg",
  42716. extra: 1246/1004,
  42717. bottom: 124/1370
  42718. }
  42719. },
  42720. goth: {
  42721. height: math.unit(16 + 2/12, "feet"),
  42722. weight: math.unit(2300, "lb"),
  42723. name: "Goth",
  42724. image: {
  42725. source: "./media/characters/zolgar/goth.svg",
  42726. extra: 1246/1004,
  42727. bottom: 124/1370
  42728. }
  42729. },
  42730. },
  42731. [
  42732. {
  42733. name: "Shrunken Down",
  42734. height: math.unit(9 + 2/12, "feet")
  42735. },
  42736. {
  42737. name: "Normal",
  42738. height: math.unit(16 + 2/12, "feet"),
  42739. default: true
  42740. },
  42741. ]
  42742. ))
  42743. characterMakers.push(() => makeCharacter(
  42744. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42745. {
  42746. front: {
  42747. height: math.unit(6, "feet"),
  42748. weight: math.unit(168, "lb"),
  42749. name: "Front",
  42750. image: {
  42751. source: "./media/characters/luca/front.svg",
  42752. extra: 841/667,
  42753. bottom: 102/943
  42754. }
  42755. },
  42756. },
  42757. [
  42758. {
  42759. name: "Normal",
  42760. height: math.unit(6, "feet"),
  42761. default: true
  42762. },
  42763. ]
  42764. ))
  42765. characterMakers.push(() => makeCharacter(
  42766. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  42767. {
  42768. side: {
  42769. height: math.unit(7 + 3/12, "feet"),
  42770. weight: math.unit(312, "lb"),
  42771. name: "Side",
  42772. image: {
  42773. source: "./media/characters/zezo/side.svg",
  42774. extra: 1192/1067,
  42775. bottom: 63/1255
  42776. }
  42777. },
  42778. },
  42779. [
  42780. {
  42781. name: "Normal",
  42782. height: math.unit(7 + 3/12, "feet"),
  42783. default: true
  42784. },
  42785. ]
  42786. ))
  42787. characterMakers.push(() => makeCharacter(
  42788. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  42789. {
  42790. front: {
  42791. height: math.unit(5 + 5/12, "feet"),
  42792. weight: math.unit(170, "lb"),
  42793. name: "Front",
  42794. image: {
  42795. source: "./media/characters/mayso/front.svg",
  42796. extra: 1215/1108,
  42797. bottom: 16/1231
  42798. }
  42799. },
  42800. },
  42801. [
  42802. {
  42803. name: "Normal",
  42804. height: math.unit(5 + 5/12, "feet"),
  42805. default: true
  42806. },
  42807. ]
  42808. ))
  42809. characterMakers.push(() => makeCharacter(
  42810. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  42811. {
  42812. front: {
  42813. height: math.unit(4 + 3/12, "feet"),
  42814. weight: math.unit(80, "lb"),
  42815. name: "Front",
  42816. image: {
  42817. source: "./media/characters/hess/front.svg",
  42818. extra: 1200/1123,
  42819. bottom: 16/1216
  42820. }
  42821. },
  42822. },
  42823. [
  42824. {
  42825. name: "Normal",
  42826. height: math.unit(4 + 3/12, "feet"),
  42827. default: true
  42828. },
  42829. ]
  42830. ))
  42831. characterMakers.push(() => makeCharacter(
  42832. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  42833. {
  42834. front: {
  42835. height: math.unit(1.9, "meters"),
  42836. name: "Front",
  42837. image: {
  42838. source: "./media/characters/ashgar/front.svg",
  42839. extra: 1177/1146,
  42840. bottom: 99/1276
  42841. }
  42842. },
  42843. back: {
  42844. height: math.unit(1.9, "meters"),
  42845. name: "Back",
  42846. image: {
  42847. source: "./media/characters/ashgar/back.svg",
  42848. extra: 1201/1183,
  42849. bottom: 53/1254
  42850. }
  42851. },
  42852. feral: {
  42853. height: math.unit(1.4, "meters"),
  42854. name: "Feral",
  42855. image: {
  42856. source: "./media/characters/ashgar/feral.svg",
  42857. extra: 370/345,
  42858. bottom: 45/415
  42859. }
  42860. },
  42861. },
  42862. [
  42863. {
  42864. name: "Normal",
  42865. height: math.unit(1.9, "meters"),
  42866. default: true
  42867. },
  42868. ]
  42869. ))
  42870. characterMakers.push(() => makeCharacter(
  42871. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  42872. {
  42873. regular: {
  42874. height: math.unit(6, "feet"),
  42875. weight: math.unit(220, "lb"),
  42876. name: "Regular",
  42877. image: {
  42878. source: "./media/characters/phillip/regular.svg",
  42879. extra: 1373/1277,
  42880. bottom: 75/1448
  42881. }
  42882. },
  42883. dressed: {
  42884. height: math.unit(6, "feet"),
  42885. weight: math.unit(220, "lb"),
  42886. name: "Dressed",
  42887. image: {
  42888. source: "./media/characters/phillip/dressed.svg",
  42889. extra: 1373/1277,
  42890. bottom: 75/1448
  42891. }
  42892. },
  42893. paw: {
  42894. height: math.unit(1.44, "feet"),
  42895. name: "Paw",
  42896. image: {
  42897. source: "./media/characters/phillip/paw.svg"
  42898. }
  42899. },
  42900. },
  42901. [
  42902. {
  42903. name: "Normal",
  42904. height: math.unit(6, "feet"),
  42905. default: true
  42906. },
  42907. ]
  42908. ))
  42909. characterMakers.push(() => makeCharacter(
  42910. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42911. {
  42912. side: {
  42913. height: math.unit(42, "feet"),
  42914. name: "Side",
  42915. image: {
  42916. source: "./media/characters/uvula/side.svg",
  42917. extra: 683/586,
  42918. bottom: 60/743
  42919. }
  42920. },
  42921. front: {
  42922. height: math.unit(42, "feet"),
  42923. name: "Front",
  42924. image: {
  42925. source: "./media/characters/uvula/front.svg",
  42926. extra: 705/613,
  42927. bottom: 54/759
  42928. }
  42929. },
  42930. maw: {
  42931. height: math.unit(23.5, "feet"),
  42932. name: "Maw",
  42933. image: {
  42934. source: "./media/characters/uvula/maw.svg"
  42935. }
  42936. },
  42937. },
  42938. [
  42939. {
  42940. name: "Original Size",
  42941. height: math.unit(14, "inches")
  42942. },
  42943. {
  42944. name: "Human Size",
  42945. height: math.unit(6, "feet")
  42946. },
  42947. {
  42948. name: "Big",
  42949. height: math.unit(42, "feet"),
  42950. default: true
  42951. },
  42952. {
  42953. name: "Bigger",
  42954. height: math.unit(100, "feet")
  42955. },
  42956. ]
  42957. ))
  42958. characterMakers.push(() => makeCharacter(
  42959. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  42960. {
  42961. front: {
  42962. height: math.unit(5 + 11/12, "feet"),
  42963. name: "Front",
  42964. image: {
  42965. source: "./media/characters/lannah/front.svg",
  42966. extra: 1208/1113,
  42967. bottom: 97/1305
  42968. }
  42969. },
  42970. },
  42971. [
  42972. {
  42973. name: "Normal",
  42974. height: math.unit(5 + 11/12, "feet"),
  42975. default: true
  42976. },
  42977. ]
  42978. ))
  42979. characterMakers.push(() => makeCharacter(
  42980. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  42981. {
  42982. front: {
  42983. height: math.unit(6 + 3/12, "feet"),
  42984. weight: math.unit(3.5, "tons"),
  42985. name: "Front",
  42986. image: {
  42987. source: "./media/characters/emberflame/front.svg",
  42988. extra: 1198/672,
  42989. bottom: 82/1280
  42990. }
  42991. },
  42992. side: {
  42993. height: math.unit(6 + 3/12, "feet"),
  42994. weight: math.unit(3.5, "tons"),
  42995. name: "Side",
  42996. image: {
  42997. source: "./media/characters/emberflame/side.svg",
  42998. extra: 938/527,
  42999. bottom: 56/994
  43000. }
  43001. },
  43002. },
  43003. [
  43004. {
  43005. name: "Normal",
  43006. height: math.unit(6 + 3/12, "feet"),
  43007. default: true
  43008. },
  43009. ]
  43010. ))
  43011. characterMakers.push(() => makeCharacter(
  43012. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43013. {
  43014. side: {
  43015. height: math.unit(17.5, "feet"),
  43016. weight: math.unit(35, "tons"),
  43017. name: "Side",
  43018. image: {
  43019. source: "./media/characters/sophie-ambrose/side.svg",
  43020. extra: 1573/1242,
  43021. bottom: 71/1644
  43022. }
  43023. },
  43024. maw: {
  43025. height: math.unit(7.4, "feet"),
  43026. name: "Maw",
  43027. image: {
  43028. source: "./media/characters/sophie-ambrose/maw.svg"
  43029. }
  43030. },
  43031. },
  43032. [
  43033. {
  43034. name: "Normal",
  43035. height: math.unit(17.5, "feet"),
  43036. default: true
  43037. },
  43038. ]
  43039. ))
  43040. characterMakers.push(() => makeCharacter(
  43041. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43042. {
  43043. front: {
  43044. height: math.unit(280, "feet"),
  43045. weight: math.unit(550, "tons"),
  43046. name: "Front",
  43047. image: {
  43048. source: "./media/characters/king-mugi/front.svg",
  43049. extra: 1102/947,
  43050. bottom: 104/1206
  43051. }
  43052. },
  43053. },
  43054. [
  43055. {
  43056. name: "King Mugi",
  43057. height: math.unit(280, "feet"),
  43058. default: true
  43059. },
  43060. ]
  43061. ))
  43062. characterMakers.push(() => makeCharacter(
  43063. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43064. {
  43065. front: {
  43066. height: math.unit(64, "meters"),
  43067. name: "Front",
  43068. image: {
  43069. source: "./media/characters/nova-fox/front.svg",
  43070. extra: 1310/1246,
  43071. bottom: 65/1375
  43072. }
  43073. },
  43074. },
  43075. [
  43076. {
  43077. name: "Macro",
  43078. height: math.unit(64, "meters"),
  43079. default: true
  43080. },
  43081. ]
  43082. ))
  43083. characterMakers.push(() => makeCharacter(
  43084. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43085. {
  43086. front: {
  43087. height: math.unit(6 + 3/12, "feet"),
  43088. weight: math.unit(170, "lb"),
  43089. name: "Front",
  43090. image: {
  43091. source: "./media/characters/sam-bat/front.svg",
  43092. extra: 1601/1411,
  43093. bottom: 125/1726
  43094. }
  43095. },
  43096. back: {
  43097. height: math.unit(6 + 3/12, "feet"),
  43098. weight: math.unit(170, "lb"),
  43099. name: "Back",
  43100. image: {
  43101. source: "./media/characters/sam-bat/back.svg",
  43102. extra: 1577/1405,
  43103. bottom: 58/1635
  43104. }
  43105. },
  43106. },
  43107. [
  43108. {
  43109. name: "Normal",
  43110. height: math.unit(6 + 3/12, "feet"),
  43111. default: true
  43112. },
  43113. ]
  43114. ))
  43115. characterMakers.push(() => makeCharacter(
  43116. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43117. {
  43118. front: {
  43119. height: math.unit(59, "feet"),
  43120. weight: math.unit(40000, "lb"),
  43121. name: "Front",
  43122. image: {
  43123. source: "./media/characters/inari/front.svg",
  43124. extra: 1884/1350,
  43125. bottom: 95/1979
  43126. }
  43127. },
  43128. },
  43129. [
  43130. {
  43131. name: "Gigantamax",
  43132. height: math.unit(59, "feet"),
  43133. default: true
  43134. },
  43135. ]
  43136. ))
  43137. characterMakers.push(() => makeCharacter(
  43138. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43139. {
  43140. front: {
  43141. height: math.unit(5 + 8/12, "feet"),
  43142. name: "Front",
  43143. image: {
  43144. source: "./media/characters/elizabeth/front.svg",
  43145. extra: 1395/1298,
  43146. bottom: 54/1449
  43147. }
  43148. },
  43149. mouth: {
  43150. height: math.unit(1.97, "feet"),
  43151. name: "Mouth",
  43152. image: {
  43153. source: "./media/characters/elizabeth/mouth.svg"
  43154. }
  43155. },
  43156. foot: {
  43157. height: math.unit(1.17, "feet"),
  43158. name: "Foot",
  43159. image: {
  43160. source: "./media/characters/elizabeth/foot.svg"
  43161. }
  43162. },
  43163. },
  43164. [
  43165. {
  43166. name: "Normal",
  43167. height: math.unit(5 + 8/12, "feet"),
  43168. default: true
  43169. },
  43170. {
  43171. name: "Minimacro",
  43172. height: math.unit(18, "feet")
  43173. },
  43174. {
  43175. name: "Macro",
  43176. height: math.unit(180, "feet")
  43177. },
  43178. ]
  43179. ))
  43180. characterMakers.push(() => makeCharacter(
  43181. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43182. {
  43183. front: {
  43184. height: math.unit(5 + 2/12, "feet"),
  43185. name: "Front",
  43186. image: {
  43187. source: "./media/characters/october-gossamer/front.svg",
  43188. extra: 505/454,
  43189. bottom: 7/512
  43190. }
  43191. },
  43192. back: {
  43193. height: math.unit(5 + 2/12, "feet"),
  43194. name: "Back",
  43195. image: {
  43196. source: "./media/characters/october-gossamer/back.svg",
  43197. extra: 501/454,
  43198. bottom: 11/512
  43199. }
  43200. },
  43201. },
  43202. [
  43203. {
  43204. name: "Normal",
  43205. height: math.unit(5 + 2/12, "feet"),
  43206. default: true
  43207. },
  43208. ]
  43209. ))
  43210. characterMakers.push(() => makeCharacter(
  43211. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43212. {
  43213. front: {
  43214. height: math.unit(5, "feet"),
  43215. name: "Front",
  43216. image: {
  43217. source: "./media/characters/epiglottis/front.svg",
  43218. extra: 923/849,
  43219. bottom: 17/940
  43220. }
  43221. },
  43222. },
  43223. [
  43224. {
  43225. name: "Original Size",
  43226. height: math.unit(10, "inches")
  43227. },
  43228. {
  43229. name: "Human Size",
  43230. height: math.unit(5, "feet"),
  43231. default: true
  43232. },
  43233. {
  43234. name: "Big",
  43235. height: math.unit(25, "feet")
  43236. },
  43237. {
  43238. name: "Bigger",
  43239. height: math.unit(50, "feet")
  43240. },
  43241. {
  43242. name: "oh lawd",
  43243. height: math.unit(75, "feet")
  43244. },
  43245. ]
  43246. ))
  43247. characterMakers.push(() => makeCharacter(
  43248. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43249. {
  43250. front: {
  43251. height: math.unit(2 + 4/12, "feet"),
  43252. weight: math.unit(60, "lb"),
  43253. name: "Front",
  43254. image: {
  43255. source: "./media/characters/lerm/front.svg",
  43256. extra: 796/790,
  43257. bottom: 79/875
  43258. }
  43259. },
  43260. },
  43261. [
  43262. {
  43263. name: "Normal",
  43264. height: math.unit(2 + 4/12, "feet"),
  43265. default: true
  43266. },
  43267. ]
  43268. ))
  43269. characterMakers.push(() => makeCharacter(
  43270. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43271. {
  43272. front: {
  43273. height: math.unit(5.5, "feet"),
  43274. weight: math.unit(130, "lb"),
  43275. name: "Front",
  43276. image: {
  43277. source: "./media/characters/xena-nebadon/front.svg",
  43278. extra: 1828/1730,
  43279. bottom: 79/1907
  43280. }
  43281. },
  43282. },
  43283. [
  43284. {
  43285. name: "Tiny Puppy",
  43286. height: math.unit(3, "inches")
  43287. },
  43288. {
  43289. name: "Normal",
  43290. height: math.unit(5.5, "feet"),
  43291. default: true
  43292. },
  43293. {
  43294. name: "Lotta Lady",
  43295. height: math.unit(12, "feet")
  43296. },
  43297. {
  43298. name: "Pretty Big",
  43299. height: math.unit(100, "feet")
  43300. },
  43301. {
  43302. name: "Big",
  43303. height: math.unit(500, "feet")
  43304. },
  43305. {
  43306. name: "Skyscraper Toys",
  43307. height: math.unit(2500, "feet")
  43308. },
  43309. {
  43310. name: "Plane Catcher",
  43311. height: math.unit(8, "miles")
  43312. },
  43313. {
  43314. name: "Planet Toys",
  43315. height: math.unit(15, "earths")
  43316. },
  43317. {
  43318. name: "Stardust",
  43319. height: math.unit(0.25, "galaxies")
  43320. },
  43321. {
  43322. name: "Snacks",
  43323. height: math.unit(70, "universes")
  43324. },
  43325. ]
  43326. ))
  43327. characterMakers.push(() => makeCharacter(
  43328. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43329. {
  43330. front: {
  43331. height: math.unit(1.6, "meters"),
  43332. weight: math.unit(60, "kg"),
  43333. name: "Front",
  43334. image: {
  43335. source: "./media/characters/bounty/front.svg",
  43336. extra: 1426/1308,
  43337. bottom: 15/1441
  43338. }
  43339. },
  43340. back: {
  43341. height: math.unit(1.6, "meters"),
  43342. weight: math.unit(60, "kg"),
  43343. name: "Back",
  43344. image: {
  43345. source: "./media/characters/bounty/back.svg",
  43346. extra: 1417/1307,
  43347. bottom: 8/1425
  43348. }
  43349. },
  43350. },
  43351. [
  43352. {
  43353. name: "Normal",
  43354. height: math.unit(1.6, "meters"),
  43355. default: true
  43356. },
  43357. {
  43358. name: "Macro",
  43359. height: math.unit(300, "meters")
  43360. },
  43361. ]
  43362. ))
  43363. characterMakers.push(() => makeCharacter(
  43364. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43365. {
  43366. front: {
  43367. height: math.unit(2 + 8/12, "feet"),
  43368. weight: math.unit(15, "lb"),
  43369. name: "Front",
  43370. image: {
  43371. source: "./media/characters/mochi/front.svg",
  43372. extra: 1022/852,
  43373. bottom: 435/1457
  43374. }
  43375. },
  43376. back: {
  43377. height: math.unit(2 + 8/12, "feet"),
  43378. weight: math.unit(15, "lb"),
  43379. name: "Back",
  43380. image: {
  43381. source: "./media/characters/mochi/back.svg",
  43382. extra: 1335/1119,
  43383. bottom: 39/1374
  43384. }
  43385. },
  43386. bird: {
  43387. height: math.unit(2 + 8/12, "feet"),
  43388. weight: math.unit(15, "lb"),
  43389. name: "Bird",
  43390. image: {
  43391. source: "./media/characters/mochi/bird.svg",
  43392. extra: 1251/1113,
  43393. bottom: 178/1429
  43394. }
  43395. },
  43396. kaiju: {
  43397. height: math.unit(154, "feet"),
  43398. weight: math.unit(1e7, "lb"),
  43399. name: "Kaiju",
  43400. image: {
  43401. source: "./media/characters/mochi/kaiju.svg",
  43402. extra: 460/324,
  43403. bottom: 40/500
  43404. }
  43405. },
  43406. head: {
  43407. height: math.unit(1.21, "feet"),
  43408. name: "Head",
  43409. image: {
  43410. source: "./media/characters/mochi/head.svg"
  43411. }
  43412. },
  43413. alternateTail: {
  43414. height: math.unit(2 + 8/12, "feet"),
  43415. weight: math.unit(45, "lb"),
  43416. name: "Alternate Tail",
  43417. image: {
  43418. source: "./media/characters/mochi/alternate-tail.svg",
  43419. extra: 139/76,
  43420. bottom: 45/184
  43421. }
  43422. },
  43423. },
  43424. [
  43425. {
  43426. name: "Micro",
  43427. height: math.unit(2, "inches")
  43428. },
  43429. {
  43430. name: "Normal",
  43431. height: math.unit(2 + 8/12, "feet"),
  43432. default: true
  43433. },
  43434. {
  43435. name: "Macro",
  43436. height: math.unit(106, "feet")
  43437. },
  43438. ]
  43439. ))
  43440. characterMakers.push(() => makeCharacter(
  43441. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43442. {
  43443. front: {
  43444. height: math.unit(5.67, "feet"),
  43445. weight: math.unit(135, "lb"),
  43446. name: "Front",
  43447. image: {
  43448. source: "./media/characters/sarel/front.svg",
  43449. extra: 865/788,
  43450. bottom: 97/962
  43451. }
  43452. },
  43453. back: {
  43454. height: math.unit(5.67, "feet"),
  43455. weight: math.unit(135, "lb"),
  43456. name: "Back",
  43457. image: {
  43458. source: "./media/characters/sarel/back.svg",
  43459. extra: 857/777,
  43460. bottom: 32/889
  43461. }
  43462. },
  43463. chozoan: {
  43464. height: math.unit(5.67, "feet"),
  43465. weight: math.unit(135, "lb"),
  43466. name: "Chozoan",
  43467. image: {
  43468. source: "./media/characters/sarel/chozoan.svg",
  43469. extra: 865/788,
  43470. bottom: 97/962
  43471. }
  43472. },
  43473. current: {
  43474. height: math.unit(5.67, "feet"),
  43475. weight: math.unit(135, "lb"),
  43476. name: "Current",
  43477. image: {
  43478. source: "./media/characters/sarel/current.svg",
  43479. extra: 865/788,
  43480. bottom: 97/962
  43481. }
  43482. },
  43483. head: {
  43484. height: math.unit(1.77, "feet"),
  43485. name: "Head",
  43486. image: {
  43487. source: "./media/characters/sarel/head.svg"
  43488. }
  43489. },
  43490. claws: {
  43491. height: math.unit(1.8, "feet"),
  43492. name: "Claws",
  43493. image: {
  43494. source: "./media/characters/sarel/claws.svg"
  43495. }
  43496. },
  43497. clawsAlt: {
  43498. height: math.unit(1.8, "feet"),
  43499. name: "Claws-alt",
  43500. image: {
  43501. source: "./media/characters/sarel/claws-alt.svg"
  43502. }
  43503. },
  43504. },
  43505. [
  43506. {
  43507. name: "Normal",
  43508. height: math.unit(5.67, "feet"),
  43509. default: true
  43510. },
  43511. ]
  43512. ))
  43513. characterMakers.push(() => makeCharacter(
  43514. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  43515. {
  43516. front: {
  43517. height: math.unit(5500, "feet"),
  43518. name: "Front",
  43519. image: {
  43520. source: "./media/characters/alyonia/front.svg",
  43521. extra: 1200/1135,
  43522. bottom: 29/1229
  43523. }
  43524. },
  43525. back: {
  43526. height: math.unit(5500, "feet"),
  43527. name: "Back",
  43528. image: {
  43529. source: "./media/characters/alyonia/back.svg",
  43530. extra: 1205/1138,
  43531. bottom: 10/1215
  43532. }
  43533. },
  43534. },
  43535. [
  43536. {
  43537. name: "Small",
  43538. height: math.unit(10, "feet")
  43539. },
  43540. {
  43541. name: "Macro",
  43542. height: math.unit(500, "feet")
  43543. },
  43544. {
  43545. name: "Mega Macro",
  43546. height: math.unit(5500, "feet"),
  43547. default: true
  43548. },
  43549. {
  43550. name: "Mega Macro+",
  43551. height: math.unit(500000, "feet")
  43552. },
  43553. {
  43554. name: "Giga Macro",
  43555. height: math.unit(3000, "miles")
  43556. },
  43557. {
  43558. name: "Tera Macro",
  43559. height: math.unit(2.8e6, "miles")
  43560. },
  43561. {
  43562. name: "Galactic",
  43563. height: math.unit(120000, "lightyears")
  43564. },
  43565. ]
  43566. ))
  43567. characterMakers.push(() => makeCharacter(
  43568. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  43569. {
  43570. werewolf: {
  43571. height: math.unit(8, "feet"),
  43572. weight: math.unit(425, "lb"),
  43573. name: "Werewolf",
  43574. image: {
  43575. source: "./media/characters/autumn/werewolf.svg",
  43576. extra: 2154/2031,
  43577. bottom: 160/2314
  43578. }
  43579. },
  43580. human: {
  43581. height: math.unit(5 + 8/12, "feet"),
  43582. weight: math.unit(150, "lb"),
  43583. name: "Human",
  43584. image: {
  43585. source: "./media/characters/autumn/human.svg",
  43586. extra: 1200/1149,
  43587. bottom: 30/1230
  43588. }
  43589. },
  43590. },
  43591. [
  43592. {
  43593. name: "Normal",
  43594. height: math.unit(8, "feet"),
  43595. default: true
  43596. },
  43597. ]
  43598. ))
  43599. characterMakers.push(() => makeCharacter(
  43600. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43601. {
  43602. front: {
  43603. height: math.unit(8 + 5/12, "feet"),
  43604. weight: math.unit(825, "lb"),
  43605. name: "Front",
  43606. image: {
  43607. source: "./media/characters/cobalt-charizard/front.svg",
  43608. extra: 1268/1155,
  43609. bottom: 122/1390
  43610. }
  43611. },
  43612. side: {
  43613. height: math.unit(8 + 5/12, "feet"),
  43614. weight: math.unit(825, "lb"),
  43615. name: "Side",
  43616. image: {
  43617. source: "./media/characters/cobalt-charizard/side.svg",
  43618. extra: 1348/1257,
  43619. bottom: 58/1406
  43620. }
  43621. },
  43622. gMax: {
  43623. height: math.unit(134 + 11/12, "feet"),
  43624. name: "G-Max",
  43625. image: {
  43626. source: "./media/characters/cobalt-charizard/g-max.svg",
  43627. extra: 1835/1541,
  43628. bottom: 151/1986
  43629. }
  43630. },
  43631. },
  43632. [
  43633. {
  43634. name: "Normal",
  43635. height: math.unit(8 + 5/12, "feet"),
  43636. default: true
  43637. },
  43638. ]
  43639. ))
  43640. characterMakers.push(() => makeCharacter(
  43641. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43642. {
  43643. front: {
  43644. height: math.unit(6 + 3/12, "feet"),
  43645. weight: math.unit(210, "lb"),
  43646. name: "Front",
  43647. image: {
  43648. source: "./media/characters/stella/front.svg",
  43649. extra: 3549/3335,
  43650. bottom: 51/3600
  43651. }
  43652. },
  43653. },
  43654. [
  43655. {
  43656. name: "Normal",
  43657. height: math.unit(6 + 3/12, "feet"),
  43658. default: true
  43659. },
  43660. ]
  43661. ))
  43662. characterMakers.push(() => makeCharacter(
  43663. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43664. {
  43665. front: {
  43666. height: math.unit(5, "feet"),
  43667. weight: math.unit(90, "lb"),
  43668. name: "Front",
  43669. image: {
  43670. source: "./media/characters/riley-bishop/front.svg",
  43671. extra: 1450/1428,
  43672. bottom: 152/1602
  43673. }
  43674. },
  43675. },
  43676. [
  43677. {
  43678. name: "Normal",
  43679. height: math.unit(5, "feet"),
  43680. default: true
  43681. },
  43682. ]
  43683. ))
  43684. characterMakers.push(() => makeCharacter(
  43685. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43686. {
  43687. side: {
  43688. height: math.unit(8 + 2/12, "feet"),
  43689. weight: math.unit(500, "kg"),
  43690. name: "Side",
  43691. image: {
  43692. source: "./media/characters/theo-arcanine/side.svg",
  43693. extra: 1342/1074,
  43694. bottom: 111/1453
  43695. }
  43696. },
  43697. },
  43698. [
  43699. {
  43700. name: "Normal",
  43701. height: math.unit(8 + 2/12, "feet"),
  43702. default: true
  43703. },
  43704. ]
  43705. ))
  43706. characterMakers.push(() => makeCharacter(
  43707. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43708. {
  43709. front: {
  43710. height: math.unit(4, "feet"),
  43711. name: "Front",
  43712. image: {
  43713. source: "./media/characters/kali/front.svg",
  43714. extra: 1921/1357,
  43715. bottom: 70/1991
  43716. }
  43717. },
  43718. },
  43719. [
  43720. {
  43721. name: "Normal",
  43722. height: math.unit(4, "feet"),
  43723. default: true
  43724. },
  43725. {
  43726. name: "Macro",
  43727. height: math.unit(32, "meters")
  43728. },
  43729. {
  43730. name: "Macro+",
  43731. height: math.unit(150, "meters")
  43732. },
  43733. {
  43734. name: "Megamacro",
  43735. height: math.unit(7500, "meters")
  43736. },
  43737. {
  43738. name: "Megamacro+",
  43739. height: math.unit(80, "kilometers")
  43740. },
  43741. ]
  43742. ))
  43743. characterMakers.push(() => makeCharacter(
  43744. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43745. {
  43746. side: {
  43747. height: math.unit(5 + 11/12, "feet"),
  43748. weight: math.unit(236, "lb"),
  43749. name: "Side",
  43750. image: {
  43751. source: "./media/characters/gapp/side.svg",
  43752. extra: 775/340,
  43753. bottom: 58/833
  43754. }
  43755. },
  43756. mouth: {
  43757. height: math.unit(2.98, "feet"),
  43758. name: "Mouth",
  43759. image: {
  43760. source: "./media/characters/gapp/mouth.svg"
  43761. }
  43762. },
  43763. },
  43764. [
  43765. {
  43766. name: "Normal",
  43767. height: math.unit(5 + 1/12, "feet"),
  43768. default: true
  43769. },
  43770. ]
  43771. ))
  43772. characterMakers.push(() => makeCharacter(
  43773. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  43774. {
  43775. front: {
  43776. height: math.unit(6, "feet"),
  43777. name: "Front",
  43778. image: {
  43779. source: "./media/characters/persephone/front.svg",
  43780. extra: 1895/1717,
  43781. bottom: 96/1991
  43782. }
  43783. },
  43784. back: {
  43785. height: math.unit(6, "feet"),
  43786. name: "Back",
  43787. image: {
  43788. source: "./media/characters/persephone/back.svg",
  43789. extra: 1868/1679,
  43790. bottom: 26/1894
  43791. }
  43792. },
  43793. casual: {
  43794. height: math.unit(6, "feet"),
  43795. name: "Casual",
  43796. image: {
  43797. source: "./media/characters/persephone/casual.svg",
  43798. extra: 1713/1541,
  43799. bottom: 76/1789
  43800. }
  43801. },
  43802. },
  43803. [
  43804. {
  43805. name: "Human Size",
  43806. height: math.unit(6, "feet")
  43807. },
  43808. {
  43809. name: "Big Steppy",
  43810. height: math.unit(600, "meters"),
  43811. default: true
  43812. },
  43813. {
  43814. name: "Galaxy Brain",
  43815. height: math.unit(1, "zettameter")
  43816. },
  43817. ]
  43818. ))
  43819. characterMakers.push(() => makeCharacter(
  43820. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  43821. {
  43822. front: {
  43823. height: math.unit(1.85, "meters"),
  43824. name: "Front",
  43825. image: {
  43826. source: "./media/characters/riley-foxthing/front.svg",
  43827. extra: 1495/1354,
  43828. bottom: 122/1617
  43829. }
  43830. },
  43831. frontAlt: {
  43832. height: math.unit(1.85, "meters"),
  43833. name: "Front (Alt)",
  43834. image: {
  43835. source: "./media/characters/riley-foxthing/front-alt.svg",
  43836. extra: 1572/1389,
  43837. bottom: 116/1688
  43838. }
  43839. },
  43840. },
  43841. [
  43842. {
  43843. name: "Normal Sized",
  43844. height: math.unit(1.85, "meters"),
  43845. default: true
  43846. },
  43847. {
  43848. name: "Quite Sizable",
  43849. height: math.unit(5, "meters")
  43850. },
  43851. {
  43852. name: "Rather Large",
  43853. height: math.unit(20, "meters")
  43854. },
  43855. {
  43856. name: "Macro",
  43857. height: math.unit(450, "meters")
  43858. },
  43859. {
  43860. name: "Giga",
  43861. height: math.unit(5, "km")
  43862. },
  43863. ]
  43864. ))
  43865. characterMakers.push(() => makeCharacter(
  43866. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  43867. {
  43868. front: {
  43869. height: math.unit(6, "feet"),
  43870. weight: math.unit(200, "lb"),
  43871. name: "Front",
  43872. image: {
  43873. source: "./media/characters/blizzard/front.svg",
  43874. extra: 1136/990,
  43875. bottom: 136/1272
  43876. }
  43877. },
  43878. back: {
  43879. height: math.unit(6, "feet"),
  43880. weight: math.unit(200, "lb"),
  43881. name: "Back",
  43882. image: {
  43883. source: "./media/characters/blizzard/back.svg",
  43884. extra: 1175/1034,
  43885. bottom: 97/1272
  43886. }
  43887. },
  43888. sitting: {
  43889. height: math.unit(3.725, "feet"),
  43890. weight: math.unit(200, "lb"),
  43891. name: "Sitting",
  43892. image: {
  43893. source: "./media/characters/blizzard/sitting.svg",
  43894. extra: 581/485,
  43895. bottom: 90/671
  43896. }
  43897. },
  43898. frontWizard: {
  43899. height: math.unit(7.9, "feet"),
  43900. weight: math.unit(200, "lb"),
  43901. name: "Front (Wizard)",
  43902. image: {
  43903. source: "./media/characters/blizzard/front-wizard.svg"
  43904. }
  43905. },
  43906. backWizard: {
  43907. height: math.unit(7.9, "feet"),
  43908. weight: math.unit(200, "lb"),
  43909. name: "Back (Wizard)",
  43910. image: {
  43911. source: "./media/characters/blizzard/back-wizard.svg"
  43912. }
  43913. },
  43914. frontNsfw: {
  43915. height: math.unit(6, "feet"),
  43916. weight: math.unit(200, "lb"),
  43917. name: "Front (NSFW)",
  43918. image: {
  43919. source: "./media/characters/blizzard/front-nsfw.svg",
  43920. extra: 1136/990,
  43921. bottom: 136/1272
  43922. }
  43923. },
  43924. backNsfw: {
  43925. height: math.unit(6, "feet"),
  43926. weight: math.unit(200, "lb"),
  43927. name: "Back (NSFW)",
  43928. image: {
  43929. source: "./media/characters/blizzard/back-nsfw.svg",
  43930. extra: 1175/1034,
  43931. bottom: 97/1272
  43932. }
  43933. },
  43934. sittingNsfw: {
  43935. height: math.unit(3.725, "feet"),
  43936. weight: math.unit(200, "lb"),
  43937. name: "Sitting (NSFW)",
  43938. image: {
  43939. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43940. extra: 581/485,
  43941. bottom: 90/671
  43942. }
  43943. },
  43944. wizardFrontNsfw: {
  43945. height: math.unit(7.9, "feet"),
  43946. weight: math.unit(200, "lb"),
  43947. name: "Wizard (Front, NSFW)",
  43948. image: {
  43949. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  43950. }
  43951. },
  43952. },
  43953. [
  43954. {
  43955. name: "Normal",
  43956. height: math.unit(6, "feet"),
  43957. default: true
  43958. },
  43959. ]
  43960. ))
  43961. characterMakers.push(() => makeCharacter(
  43962. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  43963. {
  43964. front: {
  43965. height: math.unit(5 + 2/12, "feet"),
  43966. name: "Front",
  43967. image: {
  43968. source: "./media/characters/lumi/front.svg",
  43969. extra: 1328/1268,
  43970. bottom: 103/1431
  43971. }
  43972. },
  43973. back: {
  43974. height: math.unit(5 + 2/12, "feet"),
  43975. name: "Back",
  43976. image: {
  43977. source: "./media/characters/lumi/back.svg",
  43978. extra: 1381/1327,
  43979. bottom: 43/1424
  43980. }
  43981. },
  43982. },
  43983. [
  43984. {
  43985. name: "Normal",
  43986. height: math.unit(5 + 2/12, "feet"),
  43987. default: true
  43988. },
  43989. ]
  43990. ))
  43991. characterMakers.push(() => makeCharacter(
  43992. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43993. {
  43994. front: {
  43995. height: math.unit(5 + 9/12, "feet"),
  43996. name: "Front",
  43997. image: {
  43998. source: "./media/characters/aliya-cotton/front.svg",
  43999. extra: 577/564,
  44000. bottom: 29/606
  44001. }
  44002. },
  44003. },
  44004. [
  44005. {
  44006. name: "Normal",
  44007. height: math.unit(5 + 9/12, "feet"),
  44008. default: true
  44009. },
  44010. ]
  44011. ))
  44012. characterMakers.push(() => makeCharacter(
  44013. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44014. {
  44015. front: {
  44016. height: math.unit(2.7, "meters"),
  44017. weight: math.unit(25000, "lb"),
  44018. name: "Front",
  44019. image: {
  44020. source: "./media/characters/noah-luxray/front.svg",
  44021. extra: 1644/825,
  44022. bottom: 339/1983
  44023. }
  44024. },
  44025. side: {
  44026. height: math.unit(2.97, "meters"),
  44027. weight: math.unit(25000, "lb"),
  44028. name: "Side",
  44029. image: {
  44030. source: "./media/characters/noah-luxray/side.svg",
  44031. extra: 1319/650,
  44032. bottom: 163/1482
  44033. }
  44034. },
  44035. dick: {
  44036. height: math.unit(7.4, "feet"),
  44037. weight: math.unit(2500, "lb"),
  44038. name: "Dick",
  44039. image: {
  44040. source: "./media/characters/noah-luxray/dick.svg"
  44041. }
  44042. },
  44043. dickAlt: {
  44044. height: math.unit(10.83, "feet"),
  44045. weight: math.unit(2500, "lb"),
  44046. name: "Dick-alt",
  44047. image: {
  44048. source: "./media/characters/noah-luxray/dick-alt.svg"
  44049. }
  44050. },
  44051. },
  44052. [
  44053. {
  44054. name: "BIG",
  44055. height: math.unit(2.7, "meters"),
  44056. default: true
  44057. },
  44058. ]
  44059. ))
  44060. characterMakers.push(() => makeCharacter(
  44061. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44062. {
  44063. standing: {
  44064. height: math.unit(183, "cm"),
  44065. weight: math.unit(68, "kg"),
  44066. name: "Standing",
  44067. image: {
  44068. source: "./media/characters/arion/standing.svg",
  44069. extra: 1869/1807,
  44070. bottom: 93/1962
  44071. }
  44072. },
  44073. reclining: {
  44074. height: math.unit(70.5, "cm"),
  44075. weight: math.unit(68, "lb"),
  44076. name: "Reclining",
  44077. image: {
  44078. source: "./media/characters/arion/reclining.svg",
  44079. extra: 937/870,
  44080. bottom: 63/1000
  44081. }
  44082. },
  44083. },
  44084. [
  44085. {
  44086. name: "Colossus Size, Low",
  44087. height: math.unit(33, "meters"),
  44088. default: true
  44089. },
  44090. {
  44091. name: "Colossus Size, Mid",
  44092. height: math.unit(52, "meters")
  44093. },
  44094. {
  44095. name: "Colossus Size, High",
  44096. height: math.unit(60, "meters")
  44097. },
  44098. {
  44099. name: "Titan Size, Low",
  44100. height: math.unit(91, "meters"),
  44101. },
  44102. {
  44103. name: "Titan Size, Mid",
  44104. height: math.unit(122, "meters")
  44105. },
  44106. {
  44107. name: "Titan Size, High",
  44108. height: math.unit(162, "meters")
  44109. },
  44110. ]
  44111. ))
  44112. characterMakers.push(() => makeCharacter(
  44113. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44114. {
  44115. front: {
  44116. height: math.unit(53, "meters"),
  44117. name: "Front",
  44118. image: {
  44119. source: "./media/characters/stellar-marbey/front.svg",
  44120. extra: 1913/1805,
  44121. bottom: 92/2005
  44122. }
  44123. },
  44124. back: {
  44125. height: math.unit(53, "meters"),
  44126. name: "Back",
  44127. image: {
  44128. source: "./media/characters/stellar-marbey/back.svg",
  44129. extra: 1960/1851,
  44130. bottom: 28/1988
  44131. }
  44132. },
  44133. mouth: {
  44134. height: math.unit(3.5, "meters"),
  44135. name: "Mouth",
  44136. image: {
  44137. source: "./media/characters/stellar-marbey/mouth.svg"
  44138. }
  44139. },
  44140. },
  44141. [
  44142. {
  44143. name: "Macro",
  44144. height: math.unit(53, "meters"),
  44145. default: true
  44146. },
  44147. ]
  44148. ))
  44149. characterMakers.push(() => makeCharacter(
  44150. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44151. {
  44152. front: {
  44153. height: math.unit(8 + 1/12, "feet"),
  44154. weight: math.unit(233, "lb"),
  44155. name: "Front",
  44156. image: {
  44157. source: "./media/characters/matsu/front.svg",
  44158. extra: 832/772,
  44159. bottom: 40/872
  44160. }
  44161. },
  44162. back: {
  44163. height: math.unit(8 + 1/12, "feet"),
  44164. weight: math.unit(233, "lb"),
  44165. name: "Back",
  44166. image: {
  44167. source: "./media/characters/matsu/back.svg",
  44168. extra: 839/780,
  44169. bottom: 47/886
  44170. }
  44171. },
  44172. },
  44173. [
  44174. {
  44175. name: "Normal",
  44176. height: math.unit(8 + 1/12, "feet"),
  44177. default: true
  44178. },
  44179. ]
  44180. ))
  44181. characterMakers.push(() => makeCharacter(
  44182. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44183. {
  44184. front: {
  44185. height: math.unit(4, "feet"),
  44186. weight: math.unit(148, "lb"),
  44187. name: "Front",
  44188. image: {
  44189. source: "./media/characters/thiz/front.svg",
  44190. extra: 1913/1748,
  44191. bottom: 62/1975
  44192. }
  44193. },
  44194. },
  44195. [
  44196. {
  44197. name: "Normal",
  44198. height: math.unit(4, "feet"),
  44199. default: true
  44200. },
  44201. ]
  44202. ))
  44203. characterMakers.push(() => makeCharacter(
  44204. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44205. {
  44206. front: {
  44207. height: math.unit(7 + 6/12, "feet"),
  44208. weight: math.unit(267, "lb"),
  44209. name: "Front",
  44210. image: {
  44211. source: "./media/characters/marcel/front.svg",
  44212. extra: 1221/1096,
  44213. bottom: 76/1297
  44214. }
  44215. },
  44216. },
  44217. [
  44218. {
  44219. name: "Normal",
  44220. height: math.unit(7 + 6/12, "feet"),
  44221. default: true
  44222. },
  44223. ]
  44224. ))
  44225. characterMakers.push(() => makeCharacter(
  44226. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44227. {
  44228. side: {
  44229. height: math.unit(42, "meters"),
  44230. name: "Side",
  44231. image: {
  44232. source: "./media/characters/flake/side.svg",
  44233. extra: 1525/1306,
  44234. bottom: 209/1734
  44235. }
  44236. },
  44237. },
  44238. [
  44239. {
  44240. name: "Normal",
  44241. height: math.unit(42, "meters"),
  44242. default: true
  44243. },
  44244. ]
  44245. ))
  44246. characterMakers.push(() => makeCharacter(
  44247. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44248. {
  44249. dressed: {
  44250. height: math.unit(6 + 4/12, "feet"),
  44251. weight: math.unit(520, "lb"),
  44252. name: "Dressed",
  44253. image: {
  44254. source: "./media/characters/someonne/dressed.svg",
  44255. extra: 1020/1010,
  44256. bottom: 178/1198
  44257. }
  44258. },
  44259. undressed: {
  44260. height: math.unit(6 + 4/12, "feet"),
  44261. weight: math.unit(520, "lb"),
  44262. name: "Undressed",
  44263. image: {
  44264. source: "./media/characters/someonne/undressed.svg",
  44265. extra: 1019/1014,
  44266. bottom: 169/1188
  44267. }
  44268. },
  44269. },
  44270. [
  44271. {
  44272. name: "Normal",
  44273. height: math.unit(6 + 4/12, "feet"),
  44274. default: true
  44275. },
  44276. ]
  44277. ))
  44278. characterMakers.push(() => makeCharacter(
  44279. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44280. {
  44281. front: {
  44282. height: math.unit(3, "feet"),
  44283. weight: math.unit(30, "lb"),
  44284. name: "Front",
  44285. image: {
  44286. source: "./media/characters/till/front.svg",
  44287. extra: 892/823,
  44288. bottom: 55/947
  44289. }
  44290. },
  44291. },
  44292. [
  44293. {
  44294. name: "Normal",
  44295. height: math.unit(3, "feet"),
  44296. default: true
  44297. },
  44298. ]
  44299. ))
  44300. characterMakers.push(() => makeCharacter(
  44301. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44302. {
  44303. front: {
  44304. height: math.unit(9 + 8/12, "feet"),
  44305. weight: math.unit(800, "lb"),
  44306. name: "Front",
  44307. image: {
  44308. source: "./media/characters/sydney-heki/front.svg",
  44309. extra: 1360/1300,
  44310. bottom: 22/1382
  44311. }
  44312. },
  44313. back: {
  44314. height: math.unit(9 + 8/12, "feet"),
  44315. weight: math.unit(800, "lb"),
  44316. name: "Back",
  44317. image: {
  44318. source: "./media/characters/sydney-heki/back.svg",
  44319. extra: 1356/1293,
  44320. bottom: 12/1368
  44321. }
  44322. },
  44323. frontDressed: {
  44324. height: math.unit(9 + 8/12, "feet"),
  44325. weight: math.unit(800, "lb"),
  44326. name: "Front-dressed",
  44327. image: {
  44328. source: "./media/characters/sydney-heki/front-dressed.svg",
  44329. extra: 1360/1300,
  44330. bottom: 22/1382
  44331. }
  44332. },
  44333. },
  44334. [
  44335. {
  44336. name: "Normal",
  44337. height: math.unit(9 + 8/12, "feet"),
  44338. default: true
  44339. },
  44340. {
  44341. name: "Macro",
  44342. height: math.unit(500, "feet")
  44343. },
  44344. {
  44345. name: "Megamacro",
  44346. height: math.unit(3.6, "miles")
  44347. },
  44348. ]
  44349. ))
  44350. characterMakers.push(() => makeCharacter(
  44351. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44352. {
  44353. front: {
  44354. height: math.unit(200, "cm"),
  44355. weight: math.unit(250, "lb"),
  44356. name: "Front",
  44357. image: {
  44358. source: "./media/characters/fowler-karlsson/front.svg",
  44359. extra: 897/845,
  44360. bottom: 123/1020
  44361. }
  44362. },
  44363. back: {
  44364. height: math.unit(200, "cm"),
  44365. weight: math.unit(250, "lb"),
  44366. name: "Back",
  44367. image: {
  44368. source: "./media/characters/fowler-karlsson/back.svg",
  44369. extra: 999/944,
  44370. bottom: 26/1025
  44371. }
  44372. },
  44373. dick: {
  44374. height: math.unit(1.92, "feet"),
  44375. weight: math.unit(150, "lb"),
  44376. name: "Dick",
  44377. image: {
  44378. source: "./media/characters/fowler-karlsson/dick.svg"
  44379. }
  44380. },
  44381. },
  44382. [
  44383. {
  44384. name: "Normal",
  44385. height: math.unit(200, "cm"),
  44386. default: true
  44387. },
  44388. {
  44389. name: "Smaller Macro",
  44390. height: math.unit(90, "m")
  44391. },
  44392. {
  44393. name: "Macro",
  44394. height: math.unit(150, "m")
  44395. },
  44396. {
  44397. name: "Bigger Macro",
  44398. height: math.unit(300, "m")
  44399. },
  44400. ]
  44401. ))
  44402. characterMakers.push(() => makeCharacter(
  44403. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44404. {
  44405. side: {
  44406. height: math.unit(8 + 2/12, "feet"),
  44407. weight: math.unit(1, "tonne"),
  44408. name: "Side",
  44409. image: {
  44410. source: "./media/characters/rylide/side.svg",
  44411. extra: 1318/1034,
  44412. bottom: 106/1424
  44413. }
  44414. },
  44415. sitting: {
  44416. height: math.unit(303, "cm"),
  44417. weight: math.unit(1, "tonne"),
  44418. name: "Sitting",
  44419. image: {
  44420. source: "./media/characters/rylide/sitting.svg",
  44421. extra: 1303/1103,
  44422. bottom: 36/1339
  44423. }
  44424. },
  44425. },
  44426. [
  44427. {
  44428. name: "Normal",
  44429. height: math.unit(8 + 2/12, "feet"),
  44430. default: true
  44431. },
  44432. ]
  44433. ))
  44434. characterMakers.push(() => makeCharacter(
  44435. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44436. {
  44437. front: {
  44438. height: math.unit(5 + 10/12, "feet"),
  44439. weight: math.unit(160, "lb"),
  44440. name: "Front",
  44441. image: {
  44442. source: "./media/characters/pudask/front.svg",
  44443. extra: 1616/1590,
  44444. bottom: 161/1777
  44445. }
  44446. },
  44447. },
  44448. [
  44449. {
  44450. name: "Ferret Height",
  44451. height: math.unit(2 + 5/12, "feet")
  44452. },
  44453. {
  44454. name: "Canon Height",
  44455. height: math.unit(5 + 10/12, "feet"),
  44456. default: true
  44457. },
  44458. ]
  44459. ))
  44460. characterMakers.push(() => makeCharacter(
  44461. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44462. {
  44463. front: {
  44464. height: math.unit(3 + 6/12, "feet"),
  44465. weight: math.unit(60, "lb"),
  44466. name: "Front",
  44467. image: {
  44468. source: "./media/characters/ramita/front.svg",
  44469. extra: 1402/1232,
  44470. bottom: 62/1464
  44471. }
  44472. },
  44473. dressed: {
  44474. height: math.unit(3 + 6/12, "feet"),
  44475. weight: math.unit(60, "lb"),
  44476. name: "Dressed",
  44477. image: {
  44478. source: "./media/characters/ramita/dressed.svg",
  44479. extra: 1534/1249,
  44480. bottom: 50/1584
  44481. }
  44482. },
  44483. },
  44484. [
  44485. {
  44486. name: "Normal",
  44487. height: math.unit(3 + 6/12, "feet"),
  44488. default: true
  44489. },
  44490. ]
  44491. ))
  44492. characterMakers.push(() => makeCharacter(
  44493. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44494. {
  44495. front: {
  44496. height: math.unit(8, "feet"),
  44497. name: "Front",
  44498. image: {
  44499. source: "./media/characters/ark/front.svg",
  44500. extra: 772/693,
  44501. bottom: 45/817
  44502. }
  44503. },
  44504. },
  44505. [
  44506. {
  44507. name: "Normal",
  44508. height: math.unit(8, "feet"),
  44509. default: true
  44510. },
  44511. ]
  44512. ))
  44513. characterMakers.push(() => makeCharacter(
  44514. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  44515. {
  44516. front: {
  44517. height: math.unit(6, "feet"),
  44518. weight: math.unit(250, "lb"),
  44519. volume: math.unit(5/8, "gallons"),
  44520. name: "Front",
  44521. image: {
  44522. source: "./media/characters/ludwig-horn/front.svg",
  44523. extra: 1782/1635,
  44524. bottom: 96/1878
  44525. }
  44526. },
  44527. back: {
  44528. height: math.unit(6, "feet"),
  44529. weight: math.unit(250, "lb"),
  44530. volume: math.unit(5/8, "gallons"),
  44531. name: "Back",
  44532. image: {
  44533. source: "./media/characters/ludwig-horn/back.svg",
  44534. extra: 1874/1729,
  44535. bottom: 27/1901
  44536. }
  44537. },
  44538. dick: {
  44539. height: math.unit(1.05, "feet"),
  44540. weight: math.unit(15, "lb"),
  44541. volume: math.unit(5/8, "gallons"),
  44542. name: "Dick",
  44543. image: {
  44544. source: "./media/characters/ludwig-horn/dick.svg"
  44545. }
  44546. },
  44547. },
  44548. [
  44549. {
  44550. name: "Small",
  44551. height: math.unit(6, "feet")
  44552. },
  44553. {
  44554. name: "Typical",
  44555. height: math.unit(12, "feet"),
  44556. default: true
  44557. },
  44558. {
  44559. name: "Building",
  44560. height: math.unit(80, "feet")
  44561. },
  44562. {
  44563. name: "Town",
  44564. height: math.unit(800, "feet")
  44565. },
  44566. {
  44567. name: "Kingdom",
  44568. height: math.unit(80000, "feet")
  44569. },
  44570. {
  44571. name: "Planet",
  44572. height: math.unit(8000000, "feet")
  44573. },
  44574. {
  44575. name: "Universe",
  44576. height: math.unit(8000000000, "feet")
  44577. },
  44578. {
  44579. name: "Transcended",
  44580. height: math.unit(8e27, "feet")
  44581. },
  44582. ]
  44583. ))
  44584. characterMakers.push(() => makeCharacter(
  44585. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  44586. {
  44587. front: {
  44588. height: math.unit(5, "feet"),
  44589. weight: math.unit(50, "kg"),
  44590. name: "Front",
  44591. image: {
  44592. source: "./media/characters/biot-avery/front.svg",
  44593. extra: 1295/1232,
  44594. bottom: 86/1381
  44595. }
  44596. },
  44597. },
  44598. [
  44599. {
  44600. name: "Normal",
  44601. height: math.unit(5, "feet"),
  44602. default: true
  44603. },
  44604. ]
  44605. ))
  44606. characterMakers.push(() => makeCharacter(
  44607. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44608. {
  44609. front: {
  44610. height: math.unit(6, "feet"),
  44611. name: "Front",
  44612. image: {
  44613. source: "./media/characters/kitsune-kiro/front.svg",
  44614. extra: 1270/1158,
  44615. bottom: 42/1312
  44616. }
  44617. },
  44618. frontAlt: {
  44619. height: math.unit(6, "feet"),
  44620. name: "Front-alt",
  44621. image: {
  44622. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44623. extra: 1130/1081,
  44624. bottom: 36/1166
  44625. }
  44626. },
  44627. },
  44628. [
  44629. {
  44630. name: "Smol",
  44631. height: math.unit(3, "feet")
  44632. },
  44633. {
  44634. name: "Normal",
  44635. height: math.unit(6, "feet"),
  44636. default: true
  44637. },
  44638. ]
  44639. ))
  44640. characterMakers.push(() => makeCharacter(
  44641. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44642. {
  44643. front: {
  44644. height: math.unit(6, "feet"),
  44645. weight: math.unit(125, "lb"),
  44646. name: "Front",
  44647. image: {
  44648. source: "./media/characters/jack-thatcher/front.svg",
  44649. extra: 1474/1370,
  44650. bottom: 26/1500
  44651. }
  44652. },
  44653. back: {
  44654. height: math.unit(6, "feet"),
  44655. weight: math.unit(125, "lb"),
  44656. name: "Back",
  44657. image: {
  44658. source: "./media/characters/jack-thatcher/back.svg",
  44659. extra: 1489/1384,
  44660. bottom: 18/1507
  44661. }
  44662. },
  44663. },
  44664. [
  44665. {
  44666. name: "Normal",
  44667. height: math.unit(6, "feet"),
  44668. default: true
  44669. },
  44670. {
  44671. name: "Macro",
  44672. height: math.unit(75, "feet")
  44673. },
  44674. {
  44675. name: "Macro-er",
  44676. height: math.unit(250, "feet")
  44677. },
  44678. ]
  44679. ))
  44680. characterMakers.push(() => makeCharacter(
  44681. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44682. {
  44683. front: {
  44684. height: math.unit(7, "feet"),
  44685. weight: math.unit(110, "kg"),
  44686. name: "Front",
  44687. image: {
  44688. source: "./media/characters/max-hyper/front.svg",
  44689. extra: 1969/1881,
  44690. bottom: 49/2018
  44691. }
  44692. },
  44693. },
  44694. [
  44695. {
  44696. name: "Normal",
  44697. height: math.unit(7, "feet"),
  44698. default: true
  44699. },
  44700. ]
  44701. ))
  44702. characterMakers.push(() => makeCharacter(
  44703. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44704. {
  44705. front: {
  44706. height: math.unit(5 + 5/12, "feet"),
  44707. weight: math.unit(160, "lb"),
  44708. name: "Front",
  44709. image: {
  44710. source: "./media/characters/spook/front.svg",
  44711. extra: 794/791,
  44712. bottom: 54/848
  44713. }
  44714. },
  44715. back: {
  44716. height: math.unit(5 + 5/12, "feet"),
  44717. weight: math.unit(160, "lb"),
  44718. name: "Back",
  44719. image: {
  44720. source: "./media/characters/spook/back.svg",
  44721. extra: 812/798,
  44722. bottom: 32/844
  44723. }
  44724. },
  44725. },
  44726. [
  44727. {
  44728. name: "Normal",
  44729. height: math.unit(5 + 5/12, "feet"),
  44730. default: true
  44731. },
  44732. ]
  44733. ))
  44734. characterMakers.push(() => makeCharacter(
  44735. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44736. {
  44737. front: {
  44738. height: math.unit(18, "feet"),
  44739. name: "Front",
  44740. image: {
  44741. source: "./media/characters/xeaduulix/front.svg",
  44742. extra: 1380/1166,
  44743. bottom: 110/1490
  44744. }
  44745. },
  44746. back: {
  44747. height: math.unit(18, "feet"),
  44748. name: "Back",
  44749. image: {
  44750. source: "./media/characters/xeaduulix/back.svg",
  44751. extra: 1592/1170,
  44752. bottom: 128/1720
  44753. }
  44754. },
  44755. frontNsfw: {
  44756. height: math.unit(18, "feet"),
  44757. name: "Front (NSFW)",
  44758. image: {
  44759. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44760. extra: 1380/1166,
  44761. bottom: 110/1490
  44762. }
  44763. },
  44764. backNsfw: {
  44765. height: math.unit(18, "feet"),
  44766. name: "Back (NSFW)",
  44767. image: {
  44768. source: "./media/characters/xeaduulix/back-nsfw.svg",
  44769. extra: 1592/1170,
  44770. bottom: 128/1720
  44771. }
  44772. },
  44773. },
  44774. [
  44775. {
  44776. name: "Normal",
  44777. height: math.unit(18, "feet"),
  44778. default: true
  44779. },
  44780. ]
  44781. ))
  44782. characterMakers.push(() => makeCharacter(
  44783. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  44784. {
  44785. spreadWings: {
  44786. height: math.unit(20, "feet"),
  44787. name: "Spread Wings",
  44788. image: {
  44789. source: "./media/characters/fledge/spread-wings.svg",
  44790. extra: 693/635,
  44791. bottom: 26/719
  44792. }
  44793. },
  44794. front: {
  44795. height: math.unit(20, "feet"),
  44796. name: "Front",
  44797. image: {
  44798. source: "./media/characters/fledge/front.svg",
  44799. extra: 684/637,
  44800. bottom: 18/702
  44801. }
  44802. },
  44803. frontAlt: {
  44804. height: math.unit(20, "feet"),
  44805. name: "Front (Alt)",
  44806. image: {
  44807. source: "./media/characters/fledge/front-alt.svg",
  44808. extra: 708/664,
  44809. bottom: 13/721
  44810. }
  44811. },
  44812. back: {
  44813. height: math.unit(20, "feet"),
  44814. name: "Back",
  44815. image: {
  44816. source: "./media/characters/fledge/back.svg",
  44817. extra: 718/634,
  44818. bottom: 22/740
  44819. }
  44820. },
  44821. head: {
  44822. height: math.unit(5.55, "feet"),
  44823. name: "Head",
  44824. image: {
  44825. source: "./media/characters/fledge/head.svg"
  44826. }
  44827. },
  44828. headAlt: {
  44829. height: math.unit(5.1, "feet"),
  44830. name: "Head (Alt)",
  44831. image: {
  44832. source: "./media/characters/fledge/head-alt.svg"
  44833. }
  44834. },
  44835. },
  44836. [
  44837. {
  44838. name: "Small",
  44839. height: math.unit(6 + 2/12, "feet")
  44840. },
  44841. {
  44842. name: "Big",
  44843. height: math.unit(20, "feet"),
  44844. default: true
  44845. },
  44846. {
  44847. name: "Giant",
  44848. height: math.unit(100, "feet")
  44849. },
  44850. {
  44851. name: "Macro",
  44852. height: math.unit(200, "feet")
  44853. },
  44854. ]
  44855. ))
  44856. characterMakers.push(() => makeCharacter(
  44857. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  44858. {
  44859. front: {
  44860. height: math.unit(1, "meter"),
  44861. name: "Front",
  44862. image: {
  44863. source: "./media/characters/atlas-morenai/front.svg",
  44864. extra: 1275/1043,
  44865. bottom: 19/1294
  44866. }
  44867. },
  44868. back: {
  44869. height: math.unit(1, "meter"),
  44870. name: "Back",
  44871. image: {
  44872. source: "./media/characters/atlas-morenai/back.svg",
  44873. extra: 1141/1001,
  44874. bottom: 25/1166
  44875. }
  44876. },
  44877. },
  44878. [
  44879. {
  44880. name: "Normal",
  44881. height: math.unit(1, "meter"),
  44882. default: true
  44883. },
  44884. {
  44885. name: "Magic-Infused",
  44886. height: math.unit(5, "meters")
  44887. },
  44888. ]
  44889. ))
  44890. characterMakers.push(() => makeCharacter(
  44891. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  44892. {
  44893. front: {
  44894. height: math.unit(5, "meters"),
  44895. name: "Front",
  44896. image: {
  44897. source: "./media/characters/cintia/front.svg",
  44898. extra: 1312/1228,
  44899. bottom: 38/1350
  44900. }
  44901. },
  44902. back: {
  44903. height: math.unit(5, "meters"),
  44904. name: "Back",
  44905. image: {
  44906. source: "./media/characters/cintia/back.svg",
  44907. extra: 1260/1166,
  44908. bottom: 98/1358
  44909. }
  44910. },
  44911. frontDick: {
  44912. height: math.unit(5, "meters"),
  44913. name: "Front (Dick)",
  44914. image: {
  44915. source: "./media/characters/cintia/front-dick.svg",
  44916. extra: 1312/1228,
  44917. bottom: 38/1350
  44918. }
  44919. },
  44920. backDick: {
  44921. height: math.unit(5, "meters"),
  44922. name: "Back (Dick)",
  44923. image: {
  44924. source: "./media/characters/cintia/back-dick.svg",
  44925. extra: 1260/1166,
  44926. bottom: 98/1358
  44927. }
  44928. },
  44929. bust: {
  44930. height: math.unit(1.97, "meters"),
  44931. name: "Bust",
  44932. image: {
  44933. source: "./media/characters/cintia/bust.svg",
  44934. extra: 617/565,
  44935. bottom: 0/617
  44936. }
  44937. },
  44938. },
  44939. [
  44940. {
  44941. name: "Normal",
  44942. height: math.unit(5, "meters"),
  44943. default: true
  44944. },
  44945. ]
  44946. ))
  44947. characterMakers.push(() => makeCharacter(
  44948. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  44949. {
  44950. side: {
  44951. height: math.unit(100, "feet"),
  44952. name: "Side",
  44953. image: {
  44954. source: "./media/characters/denora/side.svg",
  44955. extra: 875/803,
  44956. bottom: 9/884
  44957. }
  44958. },
  44959. },
  44960. [
  44961. {
  44962. name: "Standard",
  44963. height: math.unit(100, "feet"),
  44964. default: true
  44965. },
  44966. {
  44967. name: "Grand",
  44968. height: math.unit(1000, "feet")
  44969. },
  44970. {
  44971. name: "Conquering",
  44972. height: math.unit(10000, "feet")
  44973. },
  44974. ]
  44975. ))
  44976. characterMakers.push(() => makeCharacter(
  44977. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  44978. {
  44979. dressed: {
  44980. height: math.unit(8 + 5/12, "feet"),
  44981. weight: math.unit(700, "lb"),
  44982. name: "Dressed",
  44983. image: {
  44984. source: "./media/characters/kiva/dressed.svg",
  44985. extra: 1102/1055,
  44986. bottom: 60/1162
  44987. }
  44988. },
  44989. nude: {
  44990. height: math.unit(8 + 5/12, "feet"),
  44991. weight: math.unit(700, "lb"),
  44992. name: "Nude",
  44993. image: {
  44994. source: "./media/characters/kiva/nude.svg",
  44995. extra: 1102/1055,
  44996. bottom: 60/1162
  44997. }
  44998. },
  44999. },
  45000. [
  45001. {
  45002. name: "Base Height",
  45003. height: math.unit(8 + 5/12, "feet"),
  45004. default: true
  45005. },
  45006. {
  45007. name: "Macro",
  45008. height: math.unit(100, "feet")
  45009. },
  45010. {
  45011. name: "Max",
  45012. height: math.unit(3280, "feet")
  45013. },
  45014. ]
  45015. ))
  45016. characterMakers.push(() => makeCharacter(
  45017. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45018. {
  45019. front: {
  45020. height: math.unit(6 + 8/12, "feet"),
  45021. weight: math.unit(250, "lb"),
  45022. name: "Front",
  45023. image: {
  45024. source: "./media/characters/ztragon/front.svg",
  45025. extra: 1825/1684,
  45026. bottom: 98/1923
  45027. }
  45028. },
  45029. },
  45030. [
  45031. {
  45032. name: "Normal",
  45033. height: math.unit(6 + 8/12, "feet"),
  45034. default: true
  45035. },
  45036. {
  45037. name: "Macro",
  45038. height: math.unit(80, "feet")
  45039. },
  45040. ]
  45041. ))
  45042. characterMakers.push(() => makeCharacter(
  45043. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45044. {
  45045. front: {
  45046. height: math.unit(10.4, "feet"),
  45047. weight: math.unit(2, "tons"),
  45048. name: "Front",
  45049. image: {
  45050. source: "./media/characters/yesenia/front.svg",
  45051. extra: 1479/1474,
  45052. bottom: 233/1712
  45053. }
  45054. },
  45055. },
  45056. [
  45057. {
  45058. name: "Normal",
  45059. height: math.unit(10.4, "feet"),
  45060. default: true
  45061. },
  45062. ]
  45063. ))
  45064. characterMakers.push(() => makeCharacter(
  45065. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45066. {
  45067. normal: {
  45068. height: math.unit(6 + 1/12, "feet"),
  45069. weight: math.unit(180, "lb"),
  45070. name: "Normal",
  45071. image: {
  45072. source: "./media/characters/leanne-lycheborne/normal.svg",
  45073. extra: 1748/1660,
  45074. bottom: 98/1846
  45075. }
  45076. },
  45077. were: {
  45078. height: math.unit(12, "feet"),
  45079. weight: math.unit(1600, "lb"),
  45080. name: "Were",
  45081. image: {
  45082. source: "./media/characters/leanne-lycheborne/were.svg",
  45083. extra: 1485/1432,
  45084. bottom: 66/1551
  45085. }
  45086. },
  45087. },
  45088. [
  45089. {
  45090. name: "Normal",
  45091. height: math.unit(6 + 1/12, "feet"),
  45092. default: true
  45093. },
  45094. ]
  45095. ))
  45096. characterMakers.push(() => makeCharacter(
  45097. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45098. {
  45099. side: {
  45100. height: math.unit(13, "feet"),
  45101. name: "Side",
  45102. image: {
  45103. source: "./media/characters/kira-tyler/side.svg",
  45104. extra: 693/393,
  45105. bottom: 58/751
  45106. }
  45107. },
  45108. },
  45109. [
  45110. {
  45111. name: "Normal",
  45112. height: math.unit(13, "feet"),
  45113. default: true
  45114. },
  45115. ]
  45116. ))
  45117. characterMakers.push(() => makeCharacter(
  45118. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45119. {
  45120. front: {
  45121. height: math.unit(10.3, "feet"),
  45122. weight: math.unit(150, "lb"),
  45123. name: "Front",
  45124. image: {
  45125. source: "./media/characters/blaze/front.svg",
  45126. extra: 1378/1286,
  45127. bottom: 172/1550
  45128. }
  45129. },
  45130. },
  45131. [
  45132. {
  45133. name: "Normal",
  45134. height: math.unit(10.3, "feet"),
  45135. default: true
  45136. },
  45137. ]
  45138. ))
  45139. characterMakers.push(() => makeCharacter(
  45140. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45141. {
  45142. side: {
  45143. height: math.unit(2, "meters"),
  45144. weight: math.unit(400, "kg"),
  45145. name: "Side",
  45146. image: {
  45147. source: "./media/characters/anu/side.svg",
  45148. extra: 506/394,
  45149. bottom: 18/524
  45150. }
  45151. },
  45152. },
  45153. [
  45154. {
  45155. name: "Humanoid",
  45156. height: math.unit(2, "meters")
  45157. },
  45158. {
  45159. name: "Normal",
  45160. height: math.unit(5, "meters"),
  45161. default: true
  45162. },
  45163. ]
  45164. ))
  45165. characterMakers.push(() => makeCharacter(
  45166. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45167. {
  45168. front: {
  45169. height: math.unit(5 + 5/12, "feet"),
  45170. weight: math.unit(170, "lb"),
  45171. name: "Front",
  45172. image: {
  45173. source: "./media/characters/synx-the-lynx/front.svg",
  45174. extra: 1893/1745,
  45175. bottom: 17/1910
  45176. }
  45177. },
  45178. side: {
  45179. height: math.unit(5 + 5/12, "feet"),
  45180. weight: math.unit(170, "lb"),
  45181. name: "Side",
  45182. image: {
  45183. source: "./media/characters/synx-the-lynx/side.svg",
  45184. extra: 1884/1740,
  45185. bottom: 39/1923
  45186. }
  45187. },
  45188. back: {
  45189. height: math.unit(5 + 5/12, "feet"),
  45190. weight: math.unit(170, "lb"),
  45191. name: "Back",
  45192. image: {
  45193. source: "./media/characters/synx-the-lynx/back.svg",
  45194. extra: 1903/1755,
  45195. bottom: 14/1917
  45196. }
  45197. },
  45198. },
  45199. [
  45200. {
  45201. name: "Normal",
  45202. height: math.unit(5 + 5/12, "feet"),
  45203. default: true
  45204. },
  45205. ]
  45206. ))
  45207. characterMakers.push(() => makeCharacter(
  45208. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45209. {
  45210. back: {
  45211. height: math.unit(15, "feet"),
  45212. name: "Back",
  45213. image: {
  45214. source: "./media/characters/nadezda-fex/back.svg",
  45215. extra: 1695/1481,
  45216. bottom: 25/1720
  45217. }
  45218. },
  45219. },
  45220. [
  45221. {
  45222. name: "Normal",
  45223. height: math.unit(15, "feet"),
  45224. default: true
  45225. },
  45226. {
  45227. name: "Macro",
  45228. height: math.unit(2.5, "miles")
  45229. },
  45230. {
  45231. name: "Goddess",
  45232. height: math.unit(2, "multiverses")
  45233. },
  45234. ]
  45235. ))
  45236. characterMakers.push(() => makeCharacter(
  45237. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45238. {
  45239. front: {
  45240. height: math.unit(216, "cm"),
  45241. name: "Front",
  45242. image: {
  45243. source: "./media/characters/lev/front.svg",
  45244. extra: 1728/1670,
  45245. bottom: 82/1810
  45246. }
  45247. },
  45248. back: {
  45249. height: math.unit(216, "cm"),
  45250. name: "Back",
  45251. image: {
  45252. source: "./media/characters/lev/back.svg",
  45253. extra: 1738/1675,
  45254. bottom: 24/1762
  45255. }
  45256. },
  45257. dressed: {
  45258. height: math.unit(216, "cm"),
  45259. name: "Dressed",
  45260. image: {
  45261. source: "./media/characters/lev/dressed.svg",
  45262. extra: 1397/1351,
  45263. bottom: 73/1470
  45264. }
  45265. },
  45266. head: {
  45267. height: math.unit(0.51, "meter"),
  45268. name: "Head",
  45269. image: {
  45270. source: "./media/characters/lev/head.svg"
  45271. }
  45272. },
  45273. },
  45274. [
  45275. {
  45276. name: "Normal",
  45277. height: math.unit(216, "cm"),
  45278. default: true
  45279. },
  45280. {
  45281. name: "Relatively Macro",
  45282. height: math.unit(80, "meters")
  45283. },
  45284. {
  45285. name: "Megamacro",
  45286. height: math.unit(21600, "meters")
  45287. },
  45288. {
  45289. name: "Megamacro+",
  45290. height: math.unit(64800, "meters")
  45291. },
  45292. ]
  45293. ))
  45294. characterMakers.push(() => makeCharacter(
  45295. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45296. {
  45297. front: {
  45298. height: math.unit(2, "meters"),
  45299. weight: math.unit(80, "kg"),
  45300. name: "Front",
  45301. image: {
  45302. source: "./media/characters/moka/front.svg",
  45303. extra: 1337/1255,
  45304. bottom: 58/1395
  45305. }
  45306. },
  45307. },
  45308. [
  45309. {
  45310. name: "Micro",
  45311. height: math.unit(15, "cm")
  45312. },
  45313. {
  45314. name: "Normal",
  45315. height: math.unit(2, "meters"),
  45316. default: true
  45317. },
  45318. {
  45319. name: "Macro",
  45320. height: math.unit(20, "meters"),
  45321. },
  45322. ]
  45323. ))
  45324. characterMakers.push(() => makeCharacter(
  45325. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45326. {
  45327. front: {
  45328. height: math.unit(9, "feet"),
  45329. weight: math.unit(240, "lb"),
  45330. name: "Front",
  45331. image: {
  45332. source: "./media/characters/kuzco/front.svg",
  45333. extra: 1593/1487,
  45334. bottom: 32/1625
  45335. }
  45336. },
  45337. side: {
  45338. height: math.unit(9, "feet"),
  45339. weight: math.unit(240, "lb"),
  45340. name: "Side",
  45341. image: {
  45342. source: "./media/characters/kuzco/side.svg",
  45343. extra: 1575/1485,
  45344. bottom: 30/1605
  45345. }
  45346. },
  45347. back: {
  45348. height: math.unit(9, "feet"),
  45349. weight: math.unit(240, "lb"),
  45350. name: "Back",
  45351. image: {
  45352. source: "./media/characters/kuzco/back.svg",
  45353. extra: 1603/1514,
  45354. bottom: 14/1617
  45355. }
  45356. },
  45357. },
  45358. [
  45359. {
  45360. name: "Normal",
  45361. height: math.unit(9, "feet"),
  45362. default: true
  45363. },
  45364. ]
  45365. ))
  45366. characterMakers.push(() => makeCharacter(
  45367. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45368. {
  45369. side: {
  45370. height: math.unit(2, "meters"),
  45371. weight: math.unit(300, "kg"),
  45372. name: "Side",
  45373. image: {
  45374. source: "./media/characters/ceruleus/side.svg",
  45375. extra: 1068/974,
  45376. bottom: 126/1194
  45377. }
  45378. },
  45379. },
  45380. [
  45381. {
  45382. name: "Normal",
  45383. height: math.unit(16, "meters"),
  45384. default: true
  45385. },
  45386. ]
  45387. ))
  45388. characterMakers.push(() => makeCharacter(
  45389. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45390. {
  45391. front: {
  45392. height: math.unit(9, "feet"),
  45393. weight: math.unit(500, "kg"),
  45394. name: "Front",
  45395. image: {
  45396. source: "./media/characters/acouya/front.svg",
  45397. extra: 1660/1473,
  45398. bottom: 28/1688
  45399. }
  45400. },
  45401. },
  45402. [
  45403. {
  45404. name: "Normal",
  45405. height: math.unit(9, "feet"),
  45406. default: true
  45407. },
  45408. ]
  45409. ))
  45410. characterMakers.push(() => makeCharacter(
  45411. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45412. {
  45413. front: {
  45414. height: math.unit(5 + 6/12, "feet"),
  45415. weight: math.unit(195, "lb"),
  45416. name: "Front",
  45417. image: {
  45418. source: "./media/characters/vant/front.svg",
  45419. extra: 1396/1320,
  45420. bottom: 20/1416
  45421. }
  45422. },
  45423. back: {
  45424. height: math.unit(5 + 6/12, "feet"),
  45425. weight: math.unit(195, "lb"),
  45426. name: "Back",
  45427. image: {
  45428. source: "./media/characters/vant/back.svg",
  45429. extra: 1396/1320,
  45430. bottom: 20/1416
  45431. }
  45432. },
  45433. maw: {
  45434. height: math.unit(0.75, "feet"),
  45435. name: "Maw",
  45436. image: {
  45437. source: "./media/characters/vant/maw.svg"
  45438. }
  45439. },
  45440. paw: {
  45441. height: math.unit(1.07, "feet"),
  45442. name: "Paw",
  45443. image: {
  45444. source: "./media/characters/vant/paw.svg"
  45445. }
  45446. },
  45447. },
  45448. [
  45449. {
  45450. name: "Micro",
  45451. height: math.unit(0.25, "inches")
  45452. },
  45453. {
  45454. name: "Normal",
  45455. height: math.unit(5 + 6/12, "feet"),
  45456. default: true
  45457. },
  45458. {
  45459. name: "Macro",
  45460. height: math.unit(75, "feet")
  45461. },
  45462. ]
  45463. ))
  45464. characterMakers.push(() => makeCharacter(
  45465. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45466. {
  45467. front: {
  45468. height: math.unit(30, "meters"),
  45469. weight: math.unit(363, "tons"),
  45470. name: "Front",
  45471. image: {
  45472. source: "./media/characters/ahra/front.svg",
  45473. extra: 1914/1814,
  45474. bottom: 46/1960
  45475. }
  45476. },
  45477. },
  45478. [
  45479. {
  45480. name: "Macro",
  45481. height: math.unit(30, "meters"),
  45482. default: true
  45483. },
  45484. ]
  45485. ))
  45486. characterMakers.push(() => makeCharacter(
  45487. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45488. {
  45489. undressed: {
  45490. height: math.unit(2, "m"),
  45491. weight: math.unit(250, "kg"),
  45492. name: "Undressed",
  45493. image: {
  45494. source: "./media/characters/coriander/undressed.svg",
  45495. extra: 1757/1606,
  45496. bottom: 107/1864
  45497. }
  45498. },
  45499. dressed: {
  45500. height: math.unit(2, "m"),
  45501. weight: math.unit(250, "kg"),
  45502. name: "Dressed",
  45503. image: {
  45504. source: "./media/characters/coriander/dressed.svg",
  45505. extra: 1757/1606,
  45506. bottom: 107/1864
  45507. }
  45508. },
  45509. },
  45510. [
  45511. {
  45512. name: "Normal",
  45513. height: math.unit(4, "meters"),
  45514. default: true
  45515. },
  45516. {
  45517. name: "XL",
  45518. height: math.unit(6, "meters")
  45519. },
  45520. {
  45521. name: "XXL",
  45522. height: math.unit(8, "meters")
  45523. },
  45524. ]
  45525. ))
  45526. characterMakers.push(() => makeCharacter(
  45527. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  45528. {
  45529. front: {
  45530. height: math.unit(6, "feet"),
  45531. name: "Front",
  45532. image: {
  45533. source: "./media/characters/syrinx/front.svg",
  45534. extra: 1557/1259,
  45535. bottom: 171/1728
  45536. }
  45537. },
  45538. },
  45539. [
  45540. {
  45541. name: "Normal",
  45542. height: math.unit(6 + 3/12, "feet"),
  45543. default: true
  45544. },
  45545. ]
  45546. ))
  45547. characterMakers.push(() => makeCharacter(
  45548. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  45549. {
  45550. front: {
  45551. height: math.unit(11 + 6/12, "feet"),
  45552. weight: math.unit(1.5, "tons"),
  45553. name: "Front",
  45554. image: {
  45555. source: "./media/characters/bor/front.svg",
  45556. extra: 1189/1109,
  45557. bottom: 170/1359
  45558. }
  45559. },
  45560. },
  45561. [
  45562. {
  45563. name: "Normal",
  45564. height: math.unit(11 + 6/12, "feet"),
  45565. default: true
  45566. },
  45567. {
  45568. name: "Macro",
  45569. height: math.unit(32 + 9/12, "feet")
  45570. },
  45571. ]
  45572. ))
  45573. characterMakers.push(() => makeCharacter(
  45574. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  45575. {
  45576. anthro: {
  45577. height: math.unit(9, "feet"),
  45578. weight: math.unit(2076, "lb"),
  45579. name: "Anthro",
  45580. image: {
  45581. source: "./media/characters/abacus/anthro.svg",
  45582. extra: 1540/1494,
  45583. bottom: 233/1773
  45584. }
  45585. },
  45586. pigeon: {
  45587. height: math.unit(1, "feet"),
  45588. name: "Pigeon",
  45589. image: {
  45590. source: "./media/characters/abacus/pigeon.svg",
  45591. extra: 528/525,
  45592. bottom: 46/574
  45593. }
  45594. },
  45595. },
  45596. [
  45597. {
  45598. name: "Normal",
  45599. height: math.unit(9, "feet"),
  45600. default: true
  45601. },
  45602. ]
  45603. ))
  45604. characterMakers.push(() => makeCharacter(
  45605. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45606. {
  45607. side: {
  45608. height: math.unit(6, "feet"),
  45609. name: "Side",
  45610. image: {
  45611. source: "./media/characters/delkhan/side.svg",
  45612. extra: 1884/1786,
  45613. bottom: 308/2192
  45614. }
  45615. },
  45616. head: {
  45617. height: math.unit(3.38, "feet"),
  45618. name: "Head",
  45619. image: {
  45620. source: "./media/characters/delkhan/head.svg"
  45621. }
  45622. },
  45623. },
  45624. [
  45625. {
  45626. name: "Normal",
  45627. height: math.unit(72, "feet"),
  45628. default: true
  45629. },
  45630. {
  45631. name: "Giant",
  45632. height: math.unit(172, "feet")
  45633. },
  45634. ]
  45635. ))
  45636. characterMakers.push(() => makeCharacter(
  45637. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45638. {
  45639. standing: {
  45640. height: math.unit(6, "feet"),
  45641. name: "Standing",
  45642. image: {
  45643. source: "./media/characters/euchidat/standing.svg",
  45644. extra: 1612/1553,
  45645. bottom: 116/1728
  45646. }
  45647. },
  45648. leaning: {
  45649. height: math.unit(6, "feet"),
  45650. name: "Leaning",
  45651. image: {
  45652. source: "./media/characters/euchidat/leaning.svg",
  45653. extra: 1719/1674,
  45654. bottom: 27/1746
  45655. }
  45656. },
  45657. },
  45658. [
  45659. {
  45660. name: "Normal",
  45661. height: math.unit(175, "feet"),
  45662. default: true
  45663. },
  45664. {
  45665. name: "Megamacro",
  45666. height: math.unit(190, "miles")
  45667. },
  45668. {
  45669. name: "Gigamacro",
  45670. height: math.unit(190000, "miles")
  45671. },
  45672. ]
  45673. ))
  45674. characterMakers.push(() => makeCharacter(
  45675. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45676. {
  45677. front: {
  45678. height: math.unit(6, "feet"),
  45679. weight: math.unit(150, "lb"),
  45680. name: "Front",
  45681. image: {
  45682. source: "./media/characters/rebecca-stack/front.svg",
  45683. extra: 1256/1201,
  45684. bottom: 18/1274
  45685. }
  45686. },
  45687. },
  45688. [
  45689. {
  45690. name: "Normal",
  45691. height: math.unit(5 + 8/12, "feet"),
  45692. default: true
  45693. },
  45694. {
  45695. name: "Demolitionist",
  45696. height: math.unit(200, "feet")
  45697. },
  45698. {
  45699. name: "Out of Control",
  45700. height: math.unit(2, "miles")
  45701. },
  45702. {
  45703. name: "Giga",
  45704. height: math.unit(7200, "miles")
  45705. },
  45706. ]
  45707. ))
  45708. characterMakers.push(() => makeCharacter(
  45709. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45710. {
  45711. front: {
  45712. height: math.unit(6, "feet"),
  45713. weight: math.unit(150, "lb"),
  45714. name: "Front",
  45715. image: {
  45716. source: "./media/characters/jenny-cartwright/front.svg",
  45717. extra: 1384/1376,
  45718. bottom: 58/1442
  45719. }
  45720. },
  45721. },
  45722. [
  45723. {
  45724. name: "Normal",
  45725. height: math.unit(6 + 7/12, "feet"),
  45726. default: true
  45727. },
  45728. {
  45729. name: "Librarian",
  45730. height: math.unit(55, "feet")
  45731. },
  45732. {
  45733. name: "Sightseer",
  45734. height: math.unit(50, "miles")
  45735. },
  45736. {
  45737. name: "Giga",
  45738. height: math.unit(30000, "miles")
  45739. },
  45740. ]
  45741. ))
  45742. characterMakers.push(() => makeCharacter(
  45743. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45744. {
  45745. nude: {
  45746. height: math.unit(8, "feet"),
  45747. weight: math.unit(225, "lb"),
  45748. name: "Nude",
  45749. image: {
  45750. source: "./media/characters/marvy/nude.svg",
  45751. extra: 1900/1683,
  45752. bottom: 89/1989
  45753. }
  45754. },
  45755. dressed: {
  45756. height: math.unit(8, "feet"),
  45757. weight: math.unit(225, "lb"),
  45758. name: "Dressed",
  45759. image: {
  45760. source: "./media/characters/marvy/dressed.svg",
  45761. extra: 1900/1683,
  45762. bottom: 89/1989
  45763. }
  45764. },
  45765. head: {
  45766. height: math.unit(2.85, "feet"),
  45767. name: "Head",
  45768. image: {
  45769. source: "./media/characters/marvy/head.svg"
  45770. }
  45771. },
  45772. },
  45773. [
  45774. {
  45775. name: "Normal",
  45776. height: math.unit(8, "feet"),
  45777. default: true
  45778. },
  45779. ]
  45780. ))
  45781. characterMakers.push(() => makeCharacter(
  45782. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  45783. {
  45784. front: {
  45785. height: math.unit(8, "feet"),
  45786. weight: math.unit(250, "lb"),
  45787. name: "Front",
  45788. image: {
  45789. source: "./media/characters/leah/front.svg",
  45790. extra: 1257/1149,
  45791. bottom: 109/1366
  45792. }
  45793. },
  45794. },
  45795. [
  45796. {
  45797. name: "Normal",
  45798. height: math.unit(8, "feet"),
  45799. default: true
  45800. },
  45801. {
  45802. name: "Minimacro",
  45803. height: math.unit(40, "feet")
  45804. },
  45805. {
  45806. name: "Macro",
  45807. height: math.unit(124, "feet")
  45808. },
  45809. {
  45810. name: "Megamacro",
  45811. height: math.unit(850, "feet")
  45812. },
  45813. ]
  45814. ))
  45815. characterMakers.push(() => makeCharacter(
  45816. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  45817. {
  45818. side: {
  45819. height: math.unit(13 + 6/12, "feet"),
  45820. weight: math.unit(3200, "lb"),
  45821. name: "Side",
  45822. image: {
  45823. source: "./media/characters/alvir/side.svg",
  45824. extra: 896/589,
  45825. bottom: 26/922
  45826. }
  45827. },
  45828. },
  45829. [
  45830. {
  45831. name: "Normal",
  45832. height: math.unit(13 + 6/12, "feet"),
  45833. default: true
  45834. },
  45835. ]
  45836. ))
  45837. characterMakers.push(() => makeCharacter(
  45838. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  45839. {
  45840. front: {
  45841. height: math.unit(5 + 4/12, "feet"),
  45842. weight: math.unit(236, "lb"),
  45843. name: "Front",
  45844. image: {
  45845. source: "./media/characters/zaina-khalil/front.svg",
  45846. extra: 1533/1485,
  45847. bottom: 94/1627
  45848. }
  45849. },
  45850. side: {
  45851. height: math.unit(5 + 4/12, "feet"),
  45852. weight: math.unit(236, "lb"),
  45853. name: "Side",
  45854. image: {
  45855. source: "./media/characters/zaina-khalil/side.svg",
  45856. extra: 1537/1498,
  45857. bottom: 66/1603
  45858. }
  45859. },
  45860. back: {
  45861. height: math.unit(5 + 4/12, "feet"),
  45862. weight: math.unit(236, "lb"),
  45863. name: "Back",
  45864. image: {
  45865. source: "./media/characters/zaina-khalil/back.svg",
  45866. extra: 1546/1494,
  45867. bottom: 89/1635
  45868. }
  45869. },
  45870. },
  45871. [
  45872. {
  45873. name: "Normal",
  45874. height: math.unit(5 + 4/12, "feet"),
  45875. default: true
  45876. },
  45877. ]
  45878. ))
  45879. characterMakers.push(() => makeCharacter(
  45880. { name: "Terry", species: ["husky"], tags: ["taur"] },
  45881. {
  45882. side: {
  45883. height: math.unit(12, "feet"),
  45884. weight: math.unit(4000, "lb"),
  45885. name: "Side",
  45886. image: {
  45887. source: "./media/characters/terry/side.svg",
  45888. extra: 1518/1439,
  45889. bottom: 149/1667
  45890. }
  45891. },
  45892. },
  45893. [
  45894. {
  45895. name: "Normal",
  45896. height: math.unit(12, "feet"),
  45897. default: true
  45898. },
  45899. ]
  45900. ))
  45901. characterMakers.push(() => makeCharacter(
  45902. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  45903. {
  45904. front: {
  45905. height: math.unit(12, "feet"),
  45906. weight: math.unit(1500, "lb"),
  45907. name: "Front",
  45908. image: {
  45909. source: "./media/characters/kahea/front.svg",
  45910. extra: 1722/1617,
  45911. bottom: 179/1901
  45912. }
  45913. },
  45914. },
  45915. [
  45916. {
  45917. name: "Normal",
  45918. height: math.unit(12, "feet"),
  45919. default: true
  45920. },
  45921. ]
  45922. ))
  45923. characterMakers.push(() => makeCharacter(
  45924. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  45925. {
  45926. demonFront: {
  45927. height: math.unit(36, "feet"),
  45928. name: "Front",
  45929. image: {
  45930. source: "./media/characters/alex-xuria/demon-front.svg",
  45931. extra: 1705/1673,
  45932. bottom: 198/1903
  45933. },
  45934. form: "demon",
  45935. default: true
  45936. },
  45937. demonBack: {
  45938. height: math.unit(36, "feet"),
  45939. name: "Back",
  45940. image: {
  45941. source: "./media/characters/alex-xuria/demon-back.svg",
  45942. extra: 1725/1693,
  45943. bottom: 70/1795
  45944. },
  45945. form: "demon"
  45946. },
  45947. demonHead: {
  45948. height: math.unit(2.14, "meters"),
  45949. name: "Head",
  45950. image: {
  45951. source: "./media/characters/alex-xuria/demon-head.svg"
  45952. },
  45953. form: "demon"
  45954. },
  45955. demonHand: {
  45956. height: math.unit(1.61, "meters"),
  45957. name: "Hand",
  45958. image: {
  45959. source: "./media/characters/alex-xuria/demon-hand.svg"
  45960. },
  45961. form: "demon"
  45962. },
  45963. demonPaw: {
  45964. height: math.unit(1.35, "meters"),
  45965. name: "Paw",
  45966. image: {
  45967. source: "./media/characters/alex-xuria/demon-paw.svg"
  45968. },
  45969. form: "demon"
  45970. },
  45971. demonFoot: {
  45972. height: math.unit(2.2, "meters"),
  45973. name: "Foot",
  45974. image: {
  45975. source: "./media/characters/alex-xuria/demon-foot.svg"
  45976. },
  45977. form: "demon"
  45978. },
  45979. demonCock: {
  45980. height: math.unit(1.74, "meters"),
  45981. name: "Cock",
  45982. image: {
  45983. source: "./media/characters/alex-xuria/demon-cock.svg"
  45984. },
  45985. form: "demon"
  45986. },
  45987. demonTailClosed: {
  45988. height: math.unit(1.47, "meters"),
  45989. name: "Tail (Closed)",
  45990. image: {
  45991. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  45992. },
  45993. form: "demon"
  45994. },
  45995. demonTailOpen: {
  45996. height: math.unit(2.85, "meters"),
  45997. name: "Tail (Open)",
  45998. image: {
  45999. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46000. },
  46001. form: "demon"
  46002. },
  46003. incubusFront: {
  46004. height: math.unit(12, "feet"),
  46005. name: "Front",
  46006. image: {
  46007. source: "./media/characters/alex-xuria/incubus-front.svg",
  46008. extra: 1754/1677,
  46009. bottom: 125/1879
  46010. },
  46011. form: "incubus",
  46012. default: true
  46013. },
  46014. incubusBack: {
  46015. height: math.unit(12, "feet"),
  46016. name: "Back",
  46017. image: {
  46018. source: "./media/characters/alex-xuria/incubus-back.svg",
  46019. extra: 1702/1647,
  46020. bottom: 30/1732
  46021. },
  46022. form: "incubus"
  46023. },
  46024. incubusHead: {
  46025. height: math.unit(3.45, "feet"),
  46026. name: "Head",
  46027. image: {
  46028. source: "./media/characters/alex-xuria/incubus-head.svg"
  46029. },
  46030. form: "incubus"
  46031. },
  46032. rabbitFront: {
  46033. height: math.unit(6, "feet"),
  46034. name: "Front",
  46035. image: {
  46036. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46037. extra: 1369/1349,
  46038. bottom: 45/1414
  46039. },
  46040. form: "rabbit",
  46041. default: true
  46042. },
  46043. rabbitSide: {
  46044. height: math.unit(6, "feet"),
  46045. name: "Side",
  46046. image: {
  46047. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46048. extra: 1370/1356,
  46049. bottom: 37/1407
  46050. },
  46051. form: "rabbit"
  46052. },
  46053. rabbitBack: {
  46054. height: math.unit(6, "feet"),
  46055. name: "Back",
  46056. image: {
  46057. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46058. extra: 1375/1358,
  46059. bottom: 43/1418
  46060. },
  46061. form: "rabbit"
  46062. },
  46063. },
  46064. [
  46065. {
  46066. name: "Normal",
  46067. height: math.unit(6, "feet"),
  46068. default: true,
  46069. form: "rabbit"
  46070. },
  46071. {
  46072. name: "Incubus",
  46073. height: math.unit(12, "feet"),
  46074. default: true,
  46075. form: "incubus"
  46076. },
  46077. {
  46078. name: "Demon",
  46079. height: math.unit(36, "feet"),
  46080. default: true,
  46081. form: "demon"
  46082. }
  46083. ],
  46084. {
  46085. "demon": {
  46086. name: "Demon",
  46087. default: true
  46088. },
  46089. "incubus": {
  46090. name: "Incubus",
  46091. },
  46092. "rabbit": {
  46093. name: "Rabbit"
  46094. }
  46095. }
  46096. ))
  46097. characterMakers.push(() => makeCharacter(
  46098. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46099. {
  46100. front: {
  46101. height: math.unit(7 + 5/12, "feet"),
  46102. weight: math.unit(510, "lb"),
  46103. name: "Front",
  46104. image: {
  46105. source: "./media/characters/syrup/front.svg",
  46106. extra: 932/916,
  46107. bottom: 26/958
  46108. }
  46109. },
  46110. },
  46111. [
  46112. {
  46113. name: "Normal",
  46114. height: math.unit(7 + 5/12, "feet"),
  46115. default: true
  46116. },
  46117. {
  46118. name: "Big",
  46119. height: math.unit(50, "feet")
  46120. },
  46121. {
  46122. name: "Macro",
  46123. height: math.unit(300, "feet")
  46124. },
  46125. {
  46126. name: "Megamacro",
  46127. height: math.unit(1, "mile")
  46128. },
  46129. ]
  46130. ))
  46131. characterMakers.push(() => makeCharacter(
  46132. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46133. {
  46134. front: {
  46135. height: math.unit(6 + 9/12, "feet"),
  46136. name: "Front",
  46137. image: {
  46138. source: "./media/characters/zeimne/front.svg",
  46139. extra: 1969/1806,
  46140. bottom: 53/2022
  46141. }
  46142. },
  46143. },
  46144. [
  46145. {
  46146. name: "Normal",
  46147. height: math.unit(6 + 9/12, "feet"),
  46148. default: true
  46149. },
  46150. {
  46151. name: "Giant",
  46152. height: math.unit(550, "feet")
  46153. },
  46154. {
  46155. name: "Mega",
  46156. height: math.unit(3, "miles")
  46157. },
  46158. {
  46159. name: "Giga",
  46160. height: math.unit(250, "miles")
  46161. },
  46162. {
  46163. name: "Tera",
  46164. height: math.unit(1, "AU")
  46165. },
  46166. ]
  46167. ))
  46168. characterMakers.push(() => makeCharacter(
  46169. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46170. {
  46171. front: {
  46172. height: math.unit(5 + 2/12, "feet"),
  46173. name: "Front",
  46174. image: {
  46175. source: "./media/characters/grar/front.svg",
  46176. extra: 1331/1119,
  46177. bottom: 60/1391
  46178. }
  46179. },
  46180. back: {
  46181. height: math.unit(5 + 2/12, "feet"),
  46182. name: "Back",
  46183. image: {
  46184. source: "./media/characters/grar/back.svg",
  46185. extra: 1385/1169,
  46186. bottom: 23/1408
  46187. }
  46188. },
  46189. },
  46190. [
  46191. {
  46192. name: "Normal",
  46193. height: math.unit(5 + 2/12, "feet"),
  46194. default: true
  46195. },
  46196. ]
  46197. ))
  46198. characterMakers.push(() => makeCharacter(
  46199. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46200. {
  46201. front: {
  46202. height: math.unit(13 + 7/12, "feet"),
  46203. weight: math.unit(2200, "lb"),
  46204. name: "Front",
  46205. image: {
  46206. source: "./media/characters/endraya/front.svg",
  46207. extra: 1289/1215,
  46208. bottom: 50/1339
  46209. }
  46210. },
  46211. nude: {
  46212. height: math.unit(13 + 7/12, "feet"),
  46213. weight: math.unit(2200, "lb"),
  46214. name: "Nude",
  46215. image: {
  46216. source: "./media/characters/endraya/nude.svg",
  46217. extra: 1247/1171,
  46218. bottom: 40/1287
  46219. }
  46220. },
  46221. head: {
  46222. height: math.unit(2.6, "feet"),
  46223. name: "Head",
  46224. image: {
  46225. source: "./media/characters/endraya/head.svg"
  46226. }
  46227. },
  46228. slit: {
  46229. height: math.unit(3.4, "feet"),
  46230. name: "Slit",
  46231. image: {
  46232. source: "./media/characters/endraya/slit.svg"
  46233. }
  46234. },
  46235. },
  46236. [
  46237. {
  46238. name: "Normal",
  46239. height: math.unit(13 + 7/12, "feet"),
  46240. default: true
  46241. },
  46242. {
  46243. name: "Macro",
  46244. height: math.unit(200, "feet")
  46245. },
  46246. ]
  46247. ))
  46248. characterMakers.push(() => makeCharacter(
  46249. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46250. {
  46251. front: {
  46252. height: math.unit(1.81, "meters"),
  46253. weight: math.unit(69, "kg"),
  46254. name: "Front",
  46255. image: {
  46256. source: "./media/characters/rodryana/front.svg",
  46257. extra: 2002/1921,
  46258. bottom: 53/2055
  46259. }
  46260. },
  46261. back: {
  46262. height: math.unit(1.81, "meters"),
  46263. weight: math.unit(69, "kg"),
  46264. name: "Back",
  46265. image: {
  46266. source: "./media/characters/rodryana/back.svg",
  46267. extra: 1993/1926,
  46268. bottom: 48/2041
  46269. }
  46270. },
  46271. maw: {
  46272. height: math.unit(0.19769417475, "meters"),
  46273. name: "Maw",
  46274. image: {
  46275. source: "./media/characters/rodryana/maw.svg"
  46276. }
  46277. },
  46278. slit: {
  46279. height: math.unit(0.31631067961, "meters"),
  46280. name: "Slit",
  46281. image: {
  46282. source: "./media/characters/rodryana/slit.svg"
  46283. }
  46284. },
  46285. },
  46286. [
  46287. {
  46288. name: "Normal",
  46289. height: math.unit(1.81, "meters")
  46290. },
  46291. {
  46292. name: "Mini Macro",
  46293. height: math.unit(181, "meters")
  46294. },
  46295. {
  46296. name: "Macro",
  46297. height: math.unit(452, "meters"),
  46298. default: true
  46299. },
  46300. {
  46301. name: "Mega Macro",
  46302. height: math.unit(1.375, "km")
  46303. },
  46304. {
  46305. name: "Giga Macro",
  46306. height: math.unit(13.575, "km")
  46307. },
  46308. ]
  46309. ))
  46310. characterMakers.push(() => makeCharacter(
  46311. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46312. {
  46313. front: {
  46314. height: math.unit(6, "feet"),
  46315. weight: math.unit(1000, "lb"),
  46316. name: "Front",
  46317. image: {
  46318. source: "./media/characters/asaya/front.svg",
  46319. extra: 1460/1200,
  46320. bottom: 71/1531
  46321. }
  46322. },
  46323. },
  46324. [
  46325. {
  46326. name: "Normal",
  46327. height: math.unit(8, "km"),
  46328. default: true
  46329. },
  46330. ]
  46331. ))
  46332. characterMakers.push(() => makeCharacter(
  46333. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46334. {
  46335. front: {
  46336. height: math.unit(3.5, "meters"),
  46337. name: "Front",
  46338. image: {
  46339. source: "./media/characters/sarzu-and-israz/front.svg",
  46340. extra: 1570/1558,
  46341. bottom: 150/1720
  46342. },
  46343. },
  46344. back: {
  46345. height: math.unit(3.5, "meters"),
  46346. name: "Back",
  46347. image: {
  46348. source: "./media/characters/sarzu-and-israz/back.svg",
  46349. extra: 1523/1509,
  46350. bottom: 132/1655
  46351. },
  46352. },
  46353. frontFemale: {
  46354. height: math.unit(3.5, "meters"),
  46355. name: "Front (Female)",
  46356. image: {
  46357. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46358. extra: 1570/1558,
  46359. bottom: 150/1720
  46360. },
  46361. },
  46362. frontHerm: {
  46363. height: math.unit(3.5, "meters"),
  46364. name: "Front (Herm)",
  46365. image: {
  46366. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46367. extra: 1570/1558,
  46368. bottom: 150/1720
  46369. },
  46370. },
  46371. },
  46372. [
  46373. {
  46374. name: "Normal",
  46375. height: math.unit(3.5, "meters"),
  46376. default: true,
  46377. },
  46378. {
  46379. name: "Macro",
  46380. height: math.unit(65.5, "meters"),
  46381. },
  46382. ],
  46383. ))
  46384. characterMakers.push(() => makeCharacter(
  46385. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46386. {
  46387. front: {
  46388. height: math.unit(6, "feet"),
  46389. weight: math.unit(250, "lb"),
  46390. name: "Front",
  46391. image: {
  46392. source: "./media/characters/zenimma/front.svg",
  46393. extra: 1346/1320,
  46394. bottom: 58/1404
  46395. }
  46396. },
  46397. back: {
  46398. height: math.unit(6, "feet"),
  46399. weight: math.unit(250, "lb"),
  46400. name: "Back",
  46401. image: {
  46402. source: "./media/characters/zenimma/back.svg",
  46403. extra: 1324/1308,
  46404. bottom: 44/1368
  46405. }
  46406. },
  46407. dick: {
  46408. height: math.unit(1.44, "feet"),
  46409. name: "Dick",
  46410. image: {
  46411. source: "./media/characters/zenimma/dick.svg"
  46412. }
  46413. },
  46414. },
  46415. [
  46416. {
  46417. name: "Canon Height",
  46418. height: math.unit(66, "miles"),
  46419. default: true
  46420. },
  46421. ]
  46422. ))
  46423. characterMakers.push(() => makeCharacter(
  46424. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46425. {
  46426. nude: {
  46427. height: math.unit(6, "feet"),
  46428. weight: math.unit(150, "lb"),
  46429. name: "Nude",
  46430. image: {
  46431. source: "./media/characters/shavon/nude.svg",
  46432. extra: 1242/1096,
  46433. bottom: 98/1340
  46434. }
  46435. },
  46436. dressed: {
  46437. height: math.unit(6, "feet"),
  46438. weight: math.unit(150, "lb"),
  46439. name: "Dressed",
  46440. image: {
  46441. source: "./media/characters/shavon/dressed.svg",
  46442. extra: 1242/1096,
  46443. bottom: 98/1340
  46444. }
  46445. },
  46446. },
  46447. [
  46448. {
  46449. name: "Macro",
  46450. height: math.unit(255, "feet"),
  46451. default: true
  46452. },
  46453. ]
  46454. ))
  46455. characterMakers.push(() => makeCharacter(
  46456. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46457. {
  46458. front: {
  46459. height: math.unit(6, "feet"),
  46460. name: "Front",
  46461. image: {
  46462. source: "./media/characters/steph/front.svg",
  46463. extra: 1430/1330,
  46464. bottom: 54/1484
  46465. }
  46466. },
  46467. },
  46468. [
  46469. {
  46470. name: "Normal",
  46471. height: math.unit(6, "feet"),
  46472. default: true
  46473. },
  46474. ]
  46475. ))
  46476. characterMakers.push(() => makeCharacter(
  46477. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46478. {
  46479. front: {
  46480. height: math.unit(9, "feet"),
  46481. weight: math.unit(400, "lb"),
  46482. name: "Front",
  46483. image: {
  46484. source: "./media/characters/kil'aman/front.svg",
  46485. extra: 1210/1159,
  46486. bottom: 109/1319
  46487. }
  46488. },
  46489. head: {
  46490. height: math.unit(2.14, "feet"),
  46491. name: "Head",
  46492. image: {
  46493. source: "./media/characters/kil'aman/head.svg"
  46494. }
  46495. },
  46496. maw: {
  46497. height: math.unit(1.21, "feet"),
  46498. name: "Maw",
  46499. image: {
  46500. source: "./media/characters/kil'aman/maw.svg"
  46501. }
  46502. },
  46503. foot: {
  46504. height: math.unit(1.7, "feet"),
  46505. name: "Foot",
  46506. image: {
  46507. source: "./media/characters/kil'aman/foot.svg"
  46508. }
  46509. },
  46510. dick: {
  46511. height: math.unit(2.1, "feet"),
  46512. name: "Dick",
  46513. image: {
  46514. source: "./media/characters/kil'aman/dick.svg"
  46515. }
  46516. },
  46517. },
  46518. [
  46519. {
  46520. name: "Normal",
  46521. height: math.unit(9, "feet")
  46522. },
  46523. {
  46524. name: "Canon Height",
  46525. height: math.unit(10, "miles"),
  46526. default: true
  46527. },
  46528. {
  46529. name: "Maximum",
  46530. height: math.unit(6e9, "miles")
  46531. },
  46532. ]
  46533. ))
  46534. characterMakers.push(() => makeCharacter(
  46535. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  46536. {
  46537. front: {
  46538. height: math.unit(90, "feet"),
  46539. weight: math.unit(675000, "lb"),
  46540. name: "Front",
  46541. image: {
  46542. source: "./media/characters/qadan/front.svg",
  46543. extra: 1012/1004,
  46544. bottom: 78/1090
  46545. }
  46546. },
  46547. back: {
  46548. height: math.unit(90, "feet"),
  46549. weight: math.unit(675000, "lb"),
  46550. name: "Back",
  46551. image: {
  46552. source: "./media/characters/qadan/back.svg",
  46553. extra: 1042/1031,
  46554. bottom: 55/1097
  46555. }
  46556. },
  46557. armored: {
  46558. height: math.unit(90, "feet"),
  46559. weight: math.unit(675000, "lb"),
  46560. name: "Armored",
  46561. image: {
  46562. source: "./media/characters/qadan/armored.svg",
  46563. extra: 1047/1037,
  46564. bottom: 48/1095
  46565. }
  46566. },
  46567. },
  46568. [
  46569. {
  46570. name: "Normal",
  46571. height: math.unit(90, "feet"),
  46572. default: true
  46573. },
  46574. ]
  46575. ))
  46576. characterMakers.push(() => makeCharacter(
  46577. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  46578. {
  46579. front: {
  46580. height: math.unit(6, "feet"),
  46581. weight: math.unit(225, "lb"),
  46582. name: "Front",
  46583. image: {
  46584. source: "./media/characters/brooke/front.svg",
  46585. extra: 1050/1010,
  46586. bottom: 66/1116
  46587. }
  46588. },
  46589. back: {
  46590. height: math.unit(6, "feet"),
  46591. weight: math.unit(225, "lb"),
  46592. name: "Back",
  46593. image: {
  46594. source: "./media/characters/brooke/back.svg",
  46595. extra: 1053/1013,
  46596. bottom: 41/1094
  46597. }
  46598. },
  46599. dressed: {
  46600. height: math.unit(6, "feet"),
  46601. weight: math.unit(225, "lb"),
  46602. name: "Dressed",
  46603. image: {
  46604. source: "./media/characters/brooke/dressed.svg",
  46605. extra: 1050/1010,
  46606. bottom: 66/1116
  46607. }
  46608. },
  46609. },
  46610. [
  46611. {
  46612. name: "Canon Height",
  46613. height: math.unit(500, "miles"),
  46614. default: true
  46615. },
  46616. ]
  46617. ))
  46618. characterMakers.push(() => makeCharacter(
  46619. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46620. {
  46621. front: {
  46622. height: math.unit(6 + 2/12, "feet"),
  46623. weight: math.unit(210, "lb"),
  46624. name: "Front",
  46625. image: {
  46626. source: "./media/characters/wubs/front.svg",
  46627. extra: 1345/1325,
  46628. bottom: 70/1415
  46629. }
  46630. },
  46631. back: {
  46632. height: math.unit(6 + 2/12, "feet"),
  46633. weight: math.unit(210, "lb"),
  46634. name: "Back",
  46635. image: {
  46636. source: "./media/characters/wubs/back.svg",
  46637. extra: 1296/1275,
  46638. bottom: 58/1354
  46639. }
  46640. },
  46641. },
  46642. [
  46643. {
  46644. name: "Normal",
  46645. height: math.unit(6 + 2/12, "feet"),
  46646. default: true
  46647. },
  46648. {
  46649. name: "Macro",
  46650. height: math.unit(1000, "feet")
  46651. },
  46652. {
  46653. name: "Megamacro",
  46654. height: math.unit(1, "mile")
  46655. },
  46656. ]
  46657. ))
  46658. characterMakers.push(() => makeCharacter(
  46659. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46660. {
  46661. front: {
  46662. height: math.unit(4, "feet"),
  46663. weight: math.unit(120, "lb"),
  46664. name: "Front",
  46665. image: {
  46666. source: "./media/characters/blue/front.svg",
  46667. extra: 1636/1525,
  46668. bottom: 43/1679
  46669. }
  46670. },
  46671. back: {
  46672. height: math.unit(4, "feet"),
  46673. weight: math.unit(120, "lb"),
  46674. name: "Back",
  46675. image: {
  46676. source: "./media/characters/blue/back.svg",
  46677. extra: 1660/1560,
  46678. bottom: 57/1717
  46679. }
  46680. },
  46681. paws: {
  46682. height: math.unit(0.826, "feet"),
  46683. name: "Paws",
  46684. image: {
  46685. source: "./media/characters/blue/paws.svg"
  46686. }
  46687. },
  46688. },
  46689. [
  46690. {
  46691. name: "Micro",
  46692. height: math.unit(3, "inches")
  46693. },
  46694. {
  46695. name: "Normal",
  46696. height: math.unit(4, "feet"),
  46697. default: true
  46698. },
  46699. {
  46700. name: "Femenine Form",
  46701. height: math.unit(14, "feet")
  46702. },
  46703. {
  46704. name: "Werebat Form",
  46705. height: math.unit(18, "feet")
  46706. },
  46707. ]
  46708. ))
  46709. characterMakers.push(() => makeCharacter(
  46710. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46711. {
  46712. female: {
  46713. height: math.unit(7 + 4/12, "feet"),
  46714. weight: math.unit(243, "lb"),
  46715. name: "Female",
  46716. image: {
  46717. source: "./media/characters/kaya/female.svg",
  46718. extra: 975/898,
  46719. bottom: 34/1009
  46720. }
  46721. },
  46722. herm: {
  46723. height: math.unit(7 + 4/12, "feet"),
  46724. weight: math.unit(243, "lb"),
  46725. name: "Herm",
  46726. image: {
  46727. source: "./media/characters/kaya/herm.svg",
  46728. extra: 975/898,
  46729. bottom: 34/1009
  46730. }
  46731. },
  46732. },
  46733. [
  46734. {
  46735. name: "Normal",
  46736. height: math.unit(7 + 4/12, "feet"),
  46737. default: true
  46738. },
  46739. ]
  46740. ))
  46741. characterMakers.push(() => makeCharacter(
  46742. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46743. {
  46744. female: {
  46745. height: math.unit(9 + 4/12, "feet"),
  46746. weight: math.unit(398, "lb"),
  46747. name: "Female",
  46748. image: {
  46749. source: "./media/characters/kassandra/female.svg",
  46750. extra: 908/839,
  46751. bottom: 61/969
  46752. }
  46753. },
  46754. intersex: {
  46755. height: math.unit(9 + 4/12, "feet"),
  46756. weight: math.unit(398, "lb"),
  46757. name: "Intersex",
  46758. image: {
  46759. source: "./media/characters/kassandra/intersex.svg",
  46760. extra: 908/839,
  46761. bottom: 61/969
  46762. }
  46763. },
  46764. },
  46765. [
  46766. {
  46767. name: "Normal",
  46768. height: math.unit(9 + 4/12, "feet"),
  46769. default: true
  46770. },
  46771. ]
  46772. ))
  46773. characterMakers.push(() => makeCharacter(
  46774. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  46775. {
  46776. front: {
  46777. height: math.unit(3, "meters"),
  46778. name: "Front",
  46779. image: {
  46780. source: "./media/characters/amy/front.svg",
  46781. extra: 1380/1343,
  46782. bottom: 70/1450
  46783. }
  46784. },
  46785. back: {
  46786. height: math.unit(3, "meters"),
  46787. name: "Back",
  46788. image: {
  46789. source: "./media/characters/amy/back.svg",
  46790. extra: 1380/1347,
  46791. bottom: 66/1446
  46792. }
  46793. },
  46794. },
  46795. [
  46796. {
  46797. name: "Normal",
  46798. height: math.unit(3, "meters"),
  46799. default: true
  46800. },
  46801. ]
  46802. ))
  46803. characterMakers.push(() => makeCharacter(
  46804. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  46805. {
  46806. side: {
  46807. height: math.unit(47, "cm"),
  46808. weight: math.unit(10.8, "kg"),
  46809. name: "Side",
  46810. image: {
  46811. source: "./media/characters/alphaschakal/side.svg",
  46812. extra: 1058/568,
  46813. bottom: 62/1120
  46814. }
  46815. },
  46816. back: {
  46817. height: math.unit(78, "cm"),
  46818. weight: math.unit(10.8, "kg"),
  46819. name: "Back",
  46820. image: {
  46821. source: "./media/characters/alphaschakal/back.svg",
  46822. extra: 1102/942,
  46823. bottom: 185/1287
  46824. }
  46825. },
  46826. head: {
  46827. height: math.unit(28, "cm"),
  46828. name: "Head",
  46829. image: {
  46830. source: "./media/characters/alphaschakal/head.svg",
  46831. extra: 696/508,
  46832. bottom: 0/696
  46833. }
  46834. },
  46835. paw: {
  46836. height: math.unit(16, "cm"),
  46837. name: "Paw",
  46838. image: {
  46839. source: "./media/characters/alphaschakal/paw.svg"
  46840. }
  46841. },
  46842. },
  46843. [
  46844. {
  46845. name: "Normal",
  46846. height: math.unit(47, "cm"),
  46847. default: true
  46848. },
  46849. {
  46850. name: "Macro",
  46851. height: math.unit(340, "cm")
  46852. },
  46853. ]
  46854. ))
  46855. characterMakers.push(() => makeCharacter(
  46856. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  46857. {
  46858. front: {
  46859. height: math.unit(36, "earths"),
  46860. name: "Front",
  46861. image: {
  46862. source: "./media/characters/ecobyss/front.svg",
  46863. extra: 1282/1215,
  46864. bottom: 11/1293
  46865. }
  46866. },
  46867. back: {
  46868. height: math.unit(36, "earths"),
  46869. name: "Back",
  46870. image: {
  46871. source: "./media/characters/ecobyss/back.svg",
  46872. extra: 1291/1222,
  46873. bottom: 8/1299
  46874. }
  46875. },
  46876. },
  46877. [
  46878. {
  46879. name: "Normal",
  46880. height: math.unit(36, "earths"),
  46881. default: true
  46882. },
  46883. ]
  46884. ))
  46885. characterMakers.push(() => makeCharacter(
  46886. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  46887. {
  46888. front: {
  46889. height: math.unit(12, "feet"),
  46890. name: "Front",
  46891. image: {
  46892. source: "./media/characters/vasuk/front.svg",
  46893. extra: 1326/1207,
  46894. bottom: 64/1390
  46895. }
  46896. },
  46897. },
  46898. [
  46899. {
  46900. name: "Normal",
  46901. height: math.unit(12, "feet"),
  46902. default: true
  46903. },
  46904. ]
  46905. ))
  46906. characterMakers.push(() => makeCharacter(
  46907. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  46908. {
  46909. side: {
  46910. height: math.unit(100, "feet"),
  46911. name: "Side",
  46912. image: {
  46913. source: "./media/characters/linneaus/side.svg",
  46914. extra: 987/807,
  46915. bottom: 47/1034
  46916. }
  46917. },
  46918. },
  46919. [
  46920. {
  46921. name: "Macro",
  46922. height: math.unit(100, "feet"),
  46923. default: true
  46924. },
  46925. ]
  46926. ))
  46927. characterMakers.push(() => makeCharacter(
  46928. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  46929. {
  46930. front: {
  46931. height: math.unit(8, "feet"),
  46932. weight: math.unit(1200, "lb"),
  46933. name: "Front",
  46934. image: {
  46935. source: "./media/characters/nyterious-daligdig/front.svg",
  46936. extra: 1284/1094,
  46937. bottom: 84/1368
  46938. }
  46939. },
  46940. back: {
  46941. height: math.unit(8, "feet"),
  46942. weight: math.unit(1200, "lb"),
  46943. name: "Back",
  46944. image: {
  46945. source: "./media/characters/nyterious-daligdig/back.svg",
  46946. extra: 1301/1121,
  46947. bottom: 129/1430
  46948. }
  46949. },
  46950. mouth: {
  46951. height: math.unit(1.464, "feet"),
  46952. name: "Mouth",
  46953. image: {
  46954. source: "./media/characters/nyterious-daligdig/mouth.svg"
  46955. }
  46956. },
  46957. },
  46958. [
  46959. {
  46960. name: "Small",
  46961. height: math.unit(8, "feet"),
  46962. default: true
  46963. },
  46964. {
  46965. name: "Normal",
  46966. height: math.unit(15, "feet")
  46967. },
  46968. {
  46969. name: "Macro",
  46970. height: math.unit(90, "feet")
  46971. },
  46972. ]
  46973. ))
  46974. characterMakers.push(() => makeCharacter(
  46975. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  46976. {
  46977. front: {
  46978. height: math.unit(7 + 4/12, "feet"),
  46979. weight: math.unit(252, "lb"),
  46980. name: "Front",
  46981. image: {
  46982. source: "./media/characters/bandel/front.svg",
  46983. extra: 1946/1775,
  46984. bottom: 26/1972
  46985. }
  46986. },
  46987. back: {
  46988. height: math.unit(7 + 4/12, "feet"),
  46989. weight: math.unit(252, "lb"),
  46990. name: "Back",
  46991. image: {
  46992. source: "./media/characters/bandel/back.svg",
  46993. extra: 1940/1770,
  46994. bottom: 25/1965
  46995. }
  46996. },
  46997. maw: {
  46998. height: math.unit(2.15, "feet"),
  46999. name: "Maw",
  47000. image: {
  47001. source: "./media/characters/bandel/maw.svg"
  47002. }
  47003. },
  47004. stomach: {
  47005. height: math.unit(1.95, "feet"),
  47006. name: "Stomach",
  47007. image: {
  47008. source: "./media/characters/bandel/stomach.svg"
  47009. }
  47010. },
  47011. },
  47012. [
  47013. {
  47014. name: "Normal",
  47015. height: math.unit(7 + 4/12, "feet"),
  47016. default: true
  47017. },
  47018. ]
  47019. ))
  47020. characterMakers.push(() => makeCharacter(
  47021. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47022. {
  47023. front: {
  47024. height: math.unit(10 + 5/12, "feet"),
  47025. weight: math.unit(773.5, "kg"),
  47026. name: "Front",
  47027. image: {
  47028. source: "./media/characters/zed/front.svg",
  47029. extra: 987/941,
  47030. bottom: 52/1039
  47031. }
  47032. },
  47033. },
  47034. [
  47035. {
  47036. name: "Short",
  47037. height: math.unit(5 + 4/12, "feet")
  47038. },
  47039. {
  47040. name: "Average",
  47041. height: math.unit(10 + 5/12, "feet"),
  47042. default: true
  47043. },
  47044. {
  47045. name: "Mini-Macro",
  47046. height: math.unit(24 + 9/12, "feet")
  47047. },
  47048. {
  47049. name: "Macro",
  47050. height: math.unit(249, "feet")
  47051. },
  47052. {
  47053. name: "Mega-Macro",
  47054. height: math.unit(12490, "feet")
  47055. },
  47056. {
  47057. name: "Giga-Macro",
  47058. height: math.unit(24.9, "miles")
  47059. },
  47060. {
  47061. name: "Tera-Macro",
  47062. height: math.unit(24900, "miles")
  47063. },
  47064. {
  47065. name: "Cosmic Scale",
  47066. height: math.unit(38.9, "lightyears")
  47067. },
  47068. {
  47069. name: "Universal Scale",
  47070. height: math.unit(138e12, "lightyears")
  47071. },
  47072. ]
  47073. ))
  47074. characterMakers.push(() => makeCharacter(
  47075. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47076. {
  47077. front: {
  47078. height: math.unit(1561, "inches"),
  47079. name: "Front",
  47080. image: {
  47081. source: "./media/characters/ivan/front.svg",
  47082. extra: 1126/1071,
  47083. bottom: 26/1152
  47084. }
  47085. },
  47086. back: {
  47087. height: math.unit(1561, "inches"),
  47088. name: "Back",
  47089. image: {
  47090. source: "./media/characters/ivan/back.svg",
  47091. extra: 1134/1079,
  47092. bottom: 30/1164
  47093. }
  47094. },
  47095. },
  47096. [
  47097. {
  47098. name: "Normal",
  47099. height: math.unit(1561, "inches"),
  47100. default: true
  47101. },
  47102. ]
  47103. ))
  47104. characterMakers.push(() => makeCharacter(
  47105. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47106. {
  47107. front: {
  47108. height: math.unit(5 + 7/12, "feet"),
  47109. weight: math.unit(150, "lb"),
  47110. name: "Front",
  47111. image: {
  47112. source: "./media/characters/robin-arctic-hare/front.svg",
  47113. extra: 1148/974,
  47114. bottom: 20/1168
  47115. }
  47116. },
  47117. },
  47118. [
  47119. {
  47120. name: "Normal",
  47121. height: math.unit(5 + 7/12, "feet"),
  47122. default: true
  47123. },
  47124. ]
  47125. ))
  47126. characterMakers.push(() => makeCharacter(
  47127. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47128. {
  47129. side: {
  47130. height: math.unit(5, "feet"),
  47131. name: "Side",
  47132. image: {
  47133. source: "./media/characters/birch/side.svg",
  47134. extra: 985/796,
  47135. bottom: 111/1096
  47136. }
  47137. },
  47138. },
  47139. [
  47140. {
  47141. name: "Normal",
  47142. height: math.unit(5, "feet"),
  47143. default: true
  47144. },
  47145. ]
  47146. ))
  47147. characterMakers.push(() => makeCharacter(
  47148. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47149. {
  47150. front: {
  47151. height: math.unit(4, "feet"),
  47152. name: "Front",
  47153. image: {
  47154. source: "./media/characters/rasp/front.svg",
  47155. extra: 561/478,
  47156. bottom: 74/635
  47157. }
  47158. },
  47159. },
  47160. [
  47161. {
  47162. name: "Normal",
  47163. height: math.unit(4, "feet"),
  47164. default: true
  47165. },
  47166. ]
  47167. ))
  47168. characterMakers.push(() => makeCharacter(
  47169. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47170. {
  47171. front: {
  47172. height: math.unit(4 + 6/12, "feet"),
  47173. name: "Front",
  47174. image: {
  47175. source: "./media/characters/agatha/front.svg",
  47176. extra: 947/933,
  47177. bottom: 42/989
  47178. }
  47179. },
  47180. back: {
  47181. height: math.unit(4 + 6/12, "feet"),
  47182. name: "Back",
  47183. image: {
  47184. source: "./media/characters/agatha/back.svg",
  47185. extra: 935/922,
  47186. bottom: 48/983
  47187. }
  47188. },
  47189. },
  47190. [
  47191. {
  47192. name: "Normal",
  47193. height: math.unit(4 + 6 /12, "feet"),
  47194. default: true
  47195. },
  47196. {
  47197. name: "Max Size",
  47198. height: math.unit(500, "feet")
  47199. },
  47200. ]
  47201. ))
  47202. characterMakers.push(() => makeCharacter(
  47203. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47204. {
  47205. side: {
  47206. height: math.unit(30, "feet"),
  47207. name: "Side",
  47208. image: {
  47209. source: "./media/characters/roggy/side.svg",
  47210. extra: 909/643,
  47211. bottom: 63/972
  47212. }
  47213. },
  47214. lounging: {
  47215. height: math.unit(20, "feet"),
  47216. name: "Lounging",
  47217. image: {
  47218. source: "./media/characters/roggy/lounging.svg",
  47219. extra: 643/479,
  47220. bottom: 145/788
  47221. }
  47222. },
  47223. handpaw: {
  47224. height: math.unit(13.1, "feet"),
  47225. name: "Handpaw",
  47226. image: {
  47227. source: "./media/characters/roggy/handpaw.svg"
  47228. }
  47229. },
  47230. footpaw: {
  47231. height: math.unit(15.8, "feet"),
  47232. name: "Footpaw",
  47233. image: {
  47234. source: "./media/characters/roggy/footpaw.svg"
  47235. }
  47236. },
  47237. },
  47238. [
  47239. {
  47240. name: "Menacing",
  47241. height: math.unit(30, "feet"),
  47242. default: true
  47243. },
  47244. ]
  47245. ))
  47246. characterMakers.push(() => makeCharacter(
  47247. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47248. {
  47249. front: {
  47250. height: math.unit(5 + 7/12, "feet"),
  47251. weight: math.unit(135, "lb"),
  47252. name: "Front",
  47253. image: {
  47254. source: "./media/characters/naomi/front.svg",
  47255. extra: 1209/1154,
  47256. bottom: 129/1338
  47257. }
  47258. },
  47259. back: {
  47260. height: math.unit(5 + 7/12, "feet"),
  47261. weight: math.unit(135, "lb"),
  47262. name: "Back",
  47263. image: {
  47264. source: "./media/characters/naomi/back.svg",
  47265. extra: 1252/1190,
  47266. bottom: 23/1275
  47267. }
  47268. },
  47269. },
  47270. [
  47271. {
  47272. name: "Normal",
  47273. height: math.unit(5 + 7 /12, "feet"),
  47274. default: true
  47275. },
  47276. ]
  47277. ))
  47278. characterMakers.push(() => makeCharacter(
  47279. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47280. {
  47281. side: {
  47282. height: math.unit(35, "meters"),
  47283. name: "Side",
  47284. image: {
  47285. source: "./media/characters/kimpi/side.svg",
  47286. extra: 419/382,
  47287. bottom: 63/482
  47288. }
  47289. },
  47290. hand: {
  47291. height: math.unit(8.96, "meters"),
  47292. name: "Hand",
  47293. image: {
  47294. source: "./media/characters/kimpi/hand.svg"
  47295. }
  47296. },
  47297. },
  47298. [
  47299. {
  47300. name: "Normal",
  47301. height: math.unit(35, "meters"),
  47302. default: true
  47303. },
  47304. ]
  47305. ))
  47306. characterMakers.push(() => makeCharacter(
  47307. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47308. {
  47309. front: {
  47310. height: math.unit(4 + 4/12, "feet"),
  47311. name: "Front",
  47312. image: {
  47313. source: "./media/characters/pepper-purrloin/front.svg",
  47314. extra: 1141/1024,
  47315. bottom: 21/1162
  47316. }
  47317. },
  47318. },
  47319. [
  47320. {
  47321. name: "Normal",
  47322. height: math.unit(4 + 4/12, "feet"),
  47323. default: true
  47324. },
  47325. ]
  47326. ))
  47327. characterMakers.push(() => makeCharacter(
  47328. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47329. {
  47330. front: {
  47331. height: math.unit(6 + 2/12, "feet"),
  47332. name: "Front",
  47333. image: {
  47334. source: "./media/characters/raphael/front.svg",
  47335. extra: 1101/962,
  47336. bottom: 59/1160
  47337. }
  47338. },
  47339. },
  47340. [
  47341. {
  47342. name: "Normal",
  47343. height: math.unit(6 + 2/12, "feet"),
  47344. default: true
  47345. },
  47346. ]
  47347. ))
  47348. characterMakers.push(() => makeCharacter(
  47349. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47350. {
  47351. front: {
  47352. height: math.unit(6, "feet"),
  47353. weight: math.unit(150, "lb"),
  47354. name: "Front",
  47355. image: {
  47356. source: "./media/characters/victor-williams/front.svg",
  47357. extra: 1894/1825,
  47358. bottom: 67/1961
  47359. }
  47360. },
  47361. },
  47362. [
  47363. {
  47364. name: "Normal",
  47365. height: math.unit(6, "feet"),
  47366. default: true
  47367. },
  47368. ]
  47369. ))
  47370. characterMakers.push(() => makeCharacter(
  47371. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47372. {
  47373. front: {
  47374. height: math.unit(5 + 8/12, "feet"),
  47375. weight: math.unit(150, "lb"),
  47376. name: "Front",
  47377. image: {
  47378. source: "./media/characters/rachel/front.svg",
  47379. extra: 1902/1787,
  47380. bottom: 46/1948
  47381. }
  47382. },
  47383. },
  47384. [
  47385. {
  47386. name: "Base Height",
  47387. height: math.unit(5 + 8/12, "feet"),
  47388. default: true
  47389. },
  47390. {
  47391. name: "Macro",
  47392. height: math.unit(200, "feet")
  47393. },
  47394. {
  47395. name: "Mega Macro",
  47396. height: math.unit(1, "mile")
  47397. },
  47398. {
  47399. name: "Giga Macro",
  47400. height: math.unit(1500, "miles")
  47401. },
  47402. {
  47403. name: "Tera Macro",
  47404. height: math.unit(8000, "miles")
  47405. },
  47406. {
  47407. name: "Tera Macro+",
  47408. height: math.unit(2e5, "miles")
  47409. },
  47410. ]
  47411. ))
  47412. characterMakers.push(() => makeCharacter(
  47413. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47414. {
  47415. front: {
  47416. height: math.unit(6.5, "feet"),
  47417. name: "Front",
  47418. image: {
  47419. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47420. extra: 860/819,
  47421. bottom: 307/1167
  47422. }
  47423. },
  47424. back: {
  47425. height: math.unit(6.5, "feet"),
  47426. name: "Back",
  47427. image: {
  47428. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47429. extra: 880/837,
  47430. bottom: 395/1275
  47431. }
  47432. },
  47433. sleeping: {
  47434. height: math.unit(2.79, "feet"),
  47435. name: "Sleeping",
  47436. image: {
  47437. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47438. extra: 465/383,
  47439. bottom: 263/728
  47440. }
  47441. },
  47442. maw: {
  47443. height: math.unit(2.52, "feet"),
  47444. name: "Maw",
  47445. image: {
  47446. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47447. }
  47448. },
  47449. },
  47450. [
  47451. {
  47452. name: "Normal",
  47453. height: math.unit(6.5, "feet"),
  47454. default: true
  47455. },
  47456. ]
  47457. ))
  47458. characterMakers.push(() => makeCharacter(
  47459. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47460. {
  47461. front: {
  47462. height: math.unit(5, "feet"),
  47463. name: "Front",
  47464. image: {
  47465. source: "./media/characters/nova-nerium/front.svg",
  47466. extra: 1548/1392,
  47467. bottom: 374/1922
  47468. }
  47469. },
  47470. back: {
  47471. height: math.unit(5, "feet"),
  47472. name: "Back",
  47473. image: {
  47474. source: "./media/characters/nova-nerium/back.svg",
  47475. extra: 1658/1468,
  47476. bottom: 257/1915
  47477. }
  47478. },
  47479. },
  47480. [
  47481. {
  47482. name: "Normal",
  47483. height: math.unit(5, "feet"),
  47484. default: true
  47485. },
  47486. ]
  47487. ))
  47488. characterMakers.push(() => makeCharacter(
  47489. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47490. {
  47491. front: {
  47492. height: math.unit(5 + 4/12, "feet"),
  47493. name: "Front",
  47494. image: {
  47495. source: "./media/characters/ashe-pyriph/front.svg",
  47496. extra: 1935/1747,
  47497. bottom: 60/1995
  47498. }
  47499. },
  47500. },
  47501. [
  47502. {
  47503. name: "Normal",
  47504. height: math.unit(5 + 4/12, "feet"),
  47505. default: true
  47506. },
  47507. ]
  47508. ))
  47509. characterMakers.push(() => makeCharacter(
  47510. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  47511. {
  47512. front: {
  47513. height: math.unit(8.7, "feet"),
  47514. name: "Front",
  47515. image: {
  47516. source: "./media/characters/flicker-wisp/front.svg",
  47517. extra: 1835/1613,
  47518. bottom: 449/2284
  47519. }
  47520. },
  47521. side: {
  47522. height: math.unit(8.7, "feet"),
  47523. name: "Side",
  47524. image: {
  47525. source: "./media/characters/flicker-wisp/side.svg",
  47526. extra: 1841/1642,
  47527. bottom: 336/2177
  47528. },
  47529. default: true
  47530. },
  47531. maw: {
  47532. height: math.unit(3.35, "feet"),
  47533. name: "Maw",
  47534. image: {
  47535. source: "./media/characters/flicker-wisp/maw.svg",
  47536. extra: 2338/1506,
  47537. bottom: 0/2338
  47538. }
  47539. },
  47540. ovipositor: {
  47541. height: math.unit(4.95, "feet"),
  47542. name: "Ovipositor",
  47543. image: {
  47544. source: "./media/characters/flicker-wisp/ovipositor.svg"
  47545. }
  47546. },
  47547. egg: {
  47548. height: math.unit(0.385, "feet"),
  47549. weight: math.unit(2, "lb"),
  47550. name: "Egg",
  47551. image: {
  47552. source: "./media/characters/flicker-wisp/egg.svg"
  47553. }
  47554. },
  47555. },
  47556. [
  47557. {
  47558. name: "Normal",
  47559. height: math.unit(8.7, "feet"),
  47560. default: true
  47561. },
  47562. ]
  47563. ))
  47564. characterMakers.push(() => makeCharacter(
  47565. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  47566. {
  47567. side: {
  47568. height: math.unit(11, "feet"),
  47569. name: "Side",
  47570. image: {
  47571. source: "./media/characters/faefnul/side.svg",
  47572. extra: 1100/1007,
  47573. bottom: 0/1100
  47574. }
  47575. },
  47576. },
  47577. [
  47578. {
  47579. name: "Normal",
  47580. height: math.unit(11, "feet"),
  47581. default: true
  47582. },
  47583. ]
  47584. ))
  47585. characterMakers.push(() => makeCharacter(
  47586. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  47587. {
  47588. front: {
  47589. height: math.unit(6 + 2/12, "feet"),
  47590. name: "Front",
  47591. image: {
  47592. source: "./media/characters/shady/front.svg",
  47593. extra: 502/461,
  47594. bottom: 9/511
  47595. }
  47596. },
  47597. kneeling: {
  47598. height: math.unit(4.6, "feet"),
  47599. name: "Kneeling",
  47600. image: {
  47601. source: "./media/characters/shady/kneeling.svg",
  47602. extra: 1328/1219,
  47603. bottom: 117/1445
  47604. }
  47605. },
  47606. maw: {
  47607. height: math.unit(2, "feet"),
  47608. name: "Maw",
  47609. image: {
  47610. source: "./media/characters/shady/maw.svg"
  47611. }
  47612. },
  47613. },
  47614. [
  47615. {
  47616. name: "Nano",
  47617. height: math.unit(1, "mm")
  47618. },
  47619. {
  47620. name: "Micro",
  47621. height: math.unit(12, "mm")
  47622. },
  47623. {
  47624. name: "Tiny",
  47625. height: math.unit(3, "inches")
  47626. },
  47627. {
  47628. name: "Normal",
  47629. height: math.unit(6 + 2/12, "feet"),
  47630. default: true
  47631. },
  47632. {
  47633. name: "Big",
  47634. height: math.unit(15, "feet")
  47635. },
  47636. {
  47637. name: "Macro",
  47638. height: math.unit(150, "feet")
  47639. },
  47640. {
  47641. name: "Titanic",
  47642. height: math.unit(500, "feet")
  47643. },
  47644. ]
  47645. ))
  47646. characterMakers.push(() => makeCharacter(
  47647. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  47648. {
  47649. front: {
  47650. height: math.unit(12, "feet"),
  47651. name: "Front",
  47652. image: {
  47653. source: "./media/characters/fenrir/front.svg",
  47654. extra: 968/875,
  47655. bottom: 22/990
  47656. }
  47657. },
  47658. },
  47659. [
  47660. {
  47661. name: "Big",
  47662. height: math.unit(12, "feet"),
  47663. default: true
  47664. },
  47665. ]
  47666. ))
  47667. characterMakers.push(() => makeCharacter(
  47668. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  47669. {
  47670. front: {
  47671. height: math.unit(5 + 4/12, "feet"),
  47672. name: "Front",
  47673. image: {
  47674. source: "./media/characters/makar/front.svg",
  47675. extra: 1181/1112,
  47676. bottom: 78/1259
  47677. }
  47678. },
  47679. },
  47680. [
  47681. {
  47682. name: "Normal",
  47683. height: math.unit(5 + 4/12, "feet"),
  47684. default: true
  47685. },
  47686. ]
  47687. ))
  47688. characterMakers.push(() => makeCharacter(
  47689. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  47690. {
  47691. front: {
  47692. height: math.unit(5 + 7/12, "feet"),
  47693. name: "Front",
  47694. image: {
  47695. source: "./media/characters/callow/front.svg",
  47696. extra: 1482/1304,
  47697. bottom: 23/1505
  47698. }
  47699. },
  47700. back: {
  47701. height: math.unit(5 + 7/12, "feet"),
  47702. name: "Back",
  47703. image: {
  47704. source: "./media/characters/callow/back.svg",
  47705. extra: 1484/1296,
  47706. bottom: 25/1509
  47707. }
  47708. },
  47709. },
  47710. [
  47711. {
  47712. name: "Micro",
  47713. height: math.unit(3, "inches"),
  47714. default: true
  47715. },
  47716. {
  47717. name: "Normal",
  47718. height: math.unit(5 + 7/12, "feet")
  47719. },
  47720. ]
  47721. ))
  47722. characterMakers.push(() => makeCharacter(
  47723. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  47724. {
  47725. front: {
  47726. height: math.unit(6 + 2/12, "feet"),
  47727. name: "Front",
  47728. image: {
  47729. source: "./media/characters/natel/front.svg",
  47730. extra: 1833/1692,
  47731. bottom: 166/1999
  47732. }
  47733. },
  47734. },
  47735. [
  47736. {
  47737. name: "Normal",
  47738. height: math.unit(6 + 2/12, "feet"),
  47739. default: true
  47740. },
  47741. ]
  47742. ))
  47743. characterMakers.push(() => makeCharacter(
  47744. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  47745. {
  47746. front: {
  47747. height: math.unit(1.75, "meters"),
  47748. name: "Front",
  47749. image: {
  47750. source: "./media/characters/misu/front.svg",
  47751. extra: 1690/1558,
  47752. bottom: 234/1924
  47753. }
  47754. },
  47755. back: {
  47756. height: math.unit(1.75, "meters"),
  47757. name: "Back",
  47758. image: {
  47759. source: "./media/characters/misu/back.svg",
  47760. extra: 1762/1618,
  47761. bottom: 146/1908
  47762. }
  47763. },
  47764. frontNude: {
  47765. height: math.unit(1.75, "meters"),
  47766. name: "Front (Nude)",
  47767. image: {
  47768. source: "./media/characters/misu/front-nude.svg",
  47769. extra: 1690/1558,
  47770. bottom: 234/1924
  47771. }
  47772. },
  47773. backNude: {
  47774. height: math.unit(1.75, "meters"),
  47775. name: "Back (Nude)",
  47776. image: {
  47777. source: "./media/characters/misu/back-nude.svg",
  47778. extra: 1762/1618,
  47779. bottom: 146/1908
  47780. }
  47781. },
  47782. frontErect: {
  47783. height: math.unit(1.75, "meters"),
  47784. name: "Front (Erect)",
  47785. image: {
  47786. source: "./media/characters/misu/front-erect.svg",
  47787. extra: 1690/1558,
  47788. bottom: 234/1924
  47789. }
  47790. },
  47791. maw: {
  47792. height: math.unit(0.47, "meters"),
  47793. name: "Maw",
  47794. image: {
  47795. source: "./media/characters/misu/maw.svg"
  47796. }
  47797. },
  47798. head: {
  47799. height: math.unit(0.35, "meters"),
  47800. name: "Head",
  47801. image: {
  47802. source: "./media/characters/misu/head.svg"
  47803. }
  47804. },
  47805. rear: {
  47806. height: math.unit(0.47, "meters"),
  47807. name: "Rear",
  47808. image: {
  47809. source: "./media/characters/misu/rear.svg"
  47810. }
  47811. },
  47812. },
  47813. [
  47814. {
  47815. name: "Normal",
  47816. height: math.unit(1.75, "meters")
  47817. },
  47818. {
  47819. name: "Not good for the people",
  47820. height: math.unit(42, "meters")
  47821. },
  47822. {
  47823. name: "Not good for the neighborhood",
  47824. height: math.unit(135, "meters")
  47825. },
  47826. {
  47827. name: "Bit bigger problem",
  47828. height: math.unit(380, "meters"),
  47829. default: true
  47830. },
  47831. {
  47832. name: "Not good for the city",
  47833. height: math.unit(1.5, "km")
  47834. },
  47835. {
  47836. name: "Not good for the county",
  47837. height: math.unit(5.5, "km")
  47838. },
  47839. {
  47840. name: "Not good for the state",
  47841. height: math.unit(25, "km")
  47842. },
  47843. {
  47844. name: "Not good for the country",
  47845. height: math.unit(125, "km")
  47846. },
  47847. {
  47848. name: "Not good for the continent",
  47849. height: math.unit(2100, "km")
  47850. },
  47851. {
  47852. name: "Not good for the planet",
  47853. height: math.unit(35000, "km")
  47854. },
  47855. {
  47856. name: "Just no",
  47857. height: math.unit(8.5e18, "km")
  47858. },
  47859. ]
  47860. ))
  47861. characterMakers.push(() => makeCharacter(
  47862. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  47863. {
  47864. front: {
  47865. height: math.unit(6.5, "feet"),
  47866. name: "Front",
  47867. image: {
  47868. source: "./media/characters/poppy/front.svg",
  47869. extra: 1878/1812,
  47870. bottom: 43/1921
  47871. }
  47872. },
  47873. feet: {
  47874. height: math.unit(1.06, "feet"),
  47875. name: "Feet",
  47876. image: {
  47877. source: "./media/characters/poppy/feet.svg",
  47878. extra: 1083/1083,
  47879. bottom: 87/1170
  47880. }
  47881. },
  47882. },
  47883. [
  47884. {
  47885. name: "Human",
  47886. height: math.unit(6.5, "feet")
  47887. },
  47888. {
  47889. name: "Default",
  47890. height: math.unit(300, "feet"),
  47891. default: true
  47892. },
  47893. {
  47894. name: "Huge",
  47895. height: math.unit(850, "feet")
  47896. },
  47897. {
  47898. name: "Mega",
  47899. height: math.unit(8000, "feet")
  47900. },
  47901. {
  47902. name: "Giga",
  47903. height: math.unit(300, "miles")
  47904. },
  47905. ]
  47906. ))
  47907. characterMakers.push(() => makeCharacter(
  47908. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  47909. {
  47910. bipedal: {
  47911. height: math.unit(7, "feet"),
  47912. name: "Bipedal",
  47913. image: {
  47914. source: "./media/characters/zener/bipedal.svg",
  47915. extra: 874/805,
  47916. bottom: 109/983
  47917. }
  47918. },
  47919. quadrupedal: {
  47920. height: math.unit(4.64, "feet"),
  47921. name: "Quadrupedal",
  47922. image: {
  47923. source: "./media/characters/zener/quadrupedal.svg",
  47924. extra: 638/507,
  47925. bottom: 190/828
  47926. }
  47927. },
  47928. cock: {
  47929. height: math.unit(18, "inches"),
  47930. name: "Cock",
  47931. image: {
  47932. source: "./media/characters/zener/cock.svg"
  47933. }
  47934. },
  47935. },
  47936. [
  47937. {
  47938. name: "Normal",
  47939. height: math.unit(7, "feet"),
  47940. default: true
  47941. },
  47942. ]
  47943. ))
  47944. characterMakers.push(() => makeCharacter(
  47945. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  47946. {
  47947. nude: {
  47948. height: math.unit(5 + 6/12, "feet"),
  47949. name: "Nude",
  47950. image: {
  47951. source: "./media/characters/charlie-dog/nude.svg",
  47952. extra: 768/734,
  47953. bottom: 26/794
  47954. }
  47955. },
  47956. dressed: {
  47957. height: math.unit(5 + 6/12, "feet"),
  47958. name: "Dressed",
  47959. image: {
  47960. source: "./media/characters/charlie-dog/dressed.svg",
  47961. extra: 768/734,
  47962. bottom: 26/794
  47963. }
  47964. },
  47965. },
  47966. [
  47967. {
  47968. name: "Normal",
  47969. height: math.unit(5 + 6/12, "feet"),
  47970. default: true
  47971. },
  47972. ]
  47973. ))
  47974. characterMakers.push(() => makeCharacter(
  47975. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  47976. {
  47977. front: {
  47978. height: math.unit(6 + 4/12, "feet"),
  47979. name: "Front",
  47980. image: {
  47981. source: "./media/characters/ir'istrasz/front.svg",
  47982. extra: 1014/977,
  47983. bottom: 65/1079
  47984. }
  47985. },
  47986. back: {
  47987. height: math.unit(6 + 4/12, "feet"),
  47988. name: "Back",
  47989. image: {
  47990. source: "./media/characters/ir'istrasz/back.svg",
  47991. extra: 1024/992,
  47992. bottom: 34/1058
  47993. }
  47994. },
  47995. },
  47996. [
  47997. {
  47998. name: "Normal",
  47999. height: math.unit(6 + 4/12, "feet"),
  48000. default: true
  48001. },
  48002. ]
  48003. ))
  48004. characterMakers.push(() => makeCharacter(
  48005. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48006. {
  48007. front: {
  48008. height: math.unit(5 + 8/12, "feet"),
  48009. name: "Front",
  48010. image: {
  48011. source: "./media/characters/dee-ditto/front.svg",
  48012. extra: 1874/1785,
  48013. bottom: 68/1942
  48014. }
  48015. },
  48016. back: {
  48017. height: math.unit(5 + 8/12, "feet"),
  48018. name: "Back",
  48019. image: {
  48020. source: "./media/characters/dee-ditto/back.svg",
  48021. extra: 1870/1783,
  48022. bottom: 77/1947
  48023. }
  48024. },
  48025. },
  48026. [
  48027. {
  48028. name: "Normal",
  48029. height: math.unit(5 + 8/12, "feet"),
  48030. default: true
  48031. },
  48032. ]
  48033. ))
  48034. characterMakers.push(() => makeCharacter(
  48035. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48036. {
  48037. front: {
  48038. height: math.unit(7 + 6/12, "feet"),
  48039. name: "Front",
  48040. image: {
  48041. source: "./media/characters/fey/front.svg",
  48042. extra: 995/979,
  48043. bottom: 30/1025
  48044. }
  48045. },
  48046. back: {
  48047. height: math.unit(7 + 6/12, "feet"),
  48048. name: "Back",
  48049. image: {
  48050. source: "./media/characters/fey/back.svg",
  48051. extra: 1079/1008,
  48052. bottom: 5/1084
  48053. }
  48054. },
  48055. dressed: {
  48056. height: math.unit(7 + 6/12, "feet"),
  48057. name: "Dressed",
  48058. image: {
  48059. source: "./media/characters/fey/dressed.svg",
  48060. extra: 995/979,
  48061. bottom: 30/1025
  48062. }
  48063. },
  48064. },
  48065. [
  48066. {
  48067. name: "Normal",
  48068. height: math.unit(7 + 6/12, "feet"),
  48069. default: true
  48070. },
  48071. ]
  48072. ))
  48073. characterMakers.push(() => makeCharacter(
  48074. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48075. {
  48076. standing: {
  48077. height: math.unit(17, "feet"),
  48078. name: "Standing",
  48079. image: {
  48080. source: "./media/characters/aster/standing.svg",
  48081. extra: 1798/1598,
  48082. bottom: 117/1915
  48083. }
  48084. },
  48085. },
  48086. [
  48087. {
  48088. name: "Normal",
  48089. height: math.unit(17, "feet"),
  48090. default: true
  48091. },
  48092. {
  48093. name: "Homewrecker",
  48094. height: math.unit(95, "feet")
  48095. },
  48096. {
  48097. name: "Planet Devourer",
  48098. height: math.unit(1008000, "miles")
  48099. },
  48100. ]
  48101. ))
  48102. characterMakers.push(() => makeCharacter(
  48103. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48104. {
  48105. front: {
  48106. height: math.unit(6 + 5/12, "feet"),
  48107. weight: math.unit(265, "lb"),
  48108. name: "Front",
  48109. image: {
  48110. source: "./media/characters/devon-childs/front.svg",
  48111. extra: 1795/1721,
  48112. bottom: 41/1836
  48113. }
  48114. },
  48115. side: {
  48116. height: math.unit(6 + 5/12, "feet"),
  48117. weight: math.unit(265, "lb"),
  48118. name: "Side",
  48119. image: {
  48120. source: "./media/characters/devon-childs/side.svg",
  48121. extra: 1812/1738,
  48122. bottom: 30/1842
  48123. }
  48124. },
  48125. back: {
  48126. height: math.unit(6 + 5/12, "feet"),
  48127. weight: math.unit(265, "lb"),
  48128. name: "Back",
  48129. image: {
  48130. source: "./media/characters/devon-childs/back.svg",
  48131. extra: 1808/1735,
  48132. bottom: 23/1831
  48133. }
  48134. },
  48135. hand: {
  48136. height: math.unit(1.464, "feet"),
  48137. name: "Hand",
  48138. image: {
  48139. source: "./media/characters/devon-childs/hand.svg"
  48140. }
  48141. },
  48142. foot: {
  48143. height: math.unit(1.6, "feet"),
  48144. name: "Foot",
  48145. image: {
  48146. source: "./media/characters/devon-childs/foot.svg"
  48147. }
  48148. },
  48149. },
  48150. [
  48151. {
  48152. name: "Micro",
  48153. height: math.unit(7, "cm")
  48154. },
  48155. {
  48156. name: "Normal",
  48157. height: math.unit(6 + 5/12, "feet"),
  48158. default: true
  48159. },
  48160. {
  48161. name: "Macro",
  48162. height: math.unit(154, "feet")
  48163. },
  48164. ]
  48165. ))
  48166. characterMakers.push(() => makeCharacter(
  48167. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48168. {
  48169. front: {
  48170. height: math.unit(6, "feet"),
  48171. weight: math.unit(180, "lb"),
  48172. name: "Front",
  48173. image: {
  48174. source: "./media/characters/lydemox-vir/front.svg",
  48175. extra: 1632/1435,
  48176. bottom: 58/1690
  48177. }
  48178. },
  48179. frontSFW: {
  48180. height: math.unit(6, "feet"),
  48181. weight: math.unit(180, "lb"),
  48182. name: "Front (SFW)",
  48183. image: {
  48184. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48185. extra: 1632/1435,
  48186. bottom: 58/1690
  48187. }
  48188. },
  48189. back: {
  48190. height: math.unit(6, "feet"),
  48191. weight: math.unit(180, "lb"),
  48192. name: "Back",
  48193. image: {
  48194. source: "./media/characters/lydemox-vir/back.svg",
  48195. extra: 1593/1408,
  48196. bottom: 31/1624
  48197. }
  48198. },
  48199. paw: {
  48200. height: math.unit(1.85, "feet"),
  48201. name: "Paw",
  48202. image: {
  48203. source: "./media/characters/lydemox-vir/paw.svg"
  48204. }
  48205. },
  48206. dick: {
  48207. height: math.unit(1.8, "feet"),
  48208. name: "Dick",
  48209. image: {
  48210. source: "./media/characters/lydemox-vir/dick.svg"
  48211. }
  48212. },
  48213. },
  48214. [
  48215. {
  48216. name: "Macro",
  48217. height: math.unit(100, "feet"),
  48218. default: true
  48219. },
  48220. {
  48221. name: "Teramacro",
  48222. height: math.unit(1, "earth")
  48223. },
  48224. {
  48225. name: "Planetary",
  48226. height: math.unit(20, "earths")
  48227. },
  48228. ]
  48229. ))
  48230. characterMakers.push(() => makeCharacter(
  48231. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48232. {
  48233. front: {
  48234. height: math.unit(15 + 8/12, "feet"),
  48235. weight: math.unit(1237, "kg"),
  48236. name: "Front",
  48237. image: {
  48238. source: "./media/characters/mia/front.svg",
  48239. extra: 1573/1446,
  48240. bottom: 58/1631
  48241. }
  48242. },
  48243. },
  48244. [
  48245. {
  48246. name: "Small",
  48247. height: math.unit(9 + 5/12, "feet")
  48248. },
  48249. {
  48250. name: "Normal",
  48251. height: math.unit(15 + 8/12, "feet"),
  48252. default: true
  48253. },
  48254. ]
  48255. ))
  48256. characterMakers.push(() => makeCharacter(
  48257. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48258. {
  48259. front: {
  48260. height: math.unit(10 + 6/12, "feet"),
  48261. weight: math.unit(1.3, "tons"),
  48262. name: "Front",
  48263. image: {
  48264. source: "./media/characters/mr-graves/front.svg",
  48265. extra: 1779/1695,
  48266. bottom: 198/1977
  48267. }
  48268. },
  48269. },
  48270. [
  48271. {
  48272. name: "Normal",
  48273. height: math.unit(10 + 6 /12, "feet"),
  48274. default: true
  48275. },
  48276. ]
  48277. ))
  48278. characterMakers.push(() => makeCharacter(
  48279. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48280. {
  48281. dressedFront: {
  48282. height: math.unit(5 + 8/12, "feet"),
  48283. weight: math.unit(125, "lb"),
  48284. name: "Dressed (Front)",
  48285. image: {
  48286. source: "./media/characters/jess/dressed-front.svg",
  48287. extra: 1176/1152,
  48288. bottom: 42/1218
  48289. }
  48290. },
  48291. dressedSide: {
  48292. height: math.unit(5 + 8/12, "feet"),
  48293. weight: math.unit(125, "lb"),
  48294. name: "Dressed (Side)",
  48295. image: {
  48296. source: "./media/characters/jess/dressed-side.svg",
  48297. extra: 1204/1190,
  48298. bottom: 6/1210
  48299. }
  48300. },
  48301. nudeFront: {
  48302. height: math.unit(5 + 8/12, "feet"),
  48303. weight: math.unit(125, "lb"),
  48304. name: "Nude (Front)",
  48305. image: {
  48306. source: "./media/characters/jess/nude-front.svg",
  48307. extra: 1176/1152,
  48308. bottom: 42/1218
  48309. }
  48310. },
  48311. nudeSide: {
  48312. height: math.unit(5 + 8/12, "feet"),
  48313. weight: math.unit(125, "lb"),
  48314. name: "Nude (Side)",
  48315. image: {
  48316. source: "./media/characters/jess/nude-side.svg",
  48317. extra: 1204/1190,
  48318. bottom: 6/1210
  48319. }
  48320. },
  48321. organsFront: {
  48322. height: math.unit(2.83799342105, "feet"),
  48323. name: "Organs (Front)",
  48324. image: {
  48325. source: "./media/characters/jess/organs-front.svg"
  48326. }
  48327. },
  48328. organsSide: {
  48329. height: math.unit(2.64225290474, "feet"),
  48330. name: "Organs (Side)",
  48331. image: {
  48332. source: "./media/characters/jess/organs-side.svg"
  48333. }
  48334. },
  48335. digestiveTractFront: {
  48336. height: math.unit(2.8106580871, "feet"),
  48337. name: "Digestive Tract (Front)",
  48338. image: {
  48339. source: "./media/characters/jess/digestive-tract-front.svg"
  48340. }
  48341. },
  48342. digestiveTractSide: {
  48343. height: math.unit(2.54365045014, "feet"),
  48344. name: "Digestive Tract (Side)",
  48345. image: {
  48346. source: "./media/characters/jess/digestive-tract-side.svg"
  48347. }
  48348. },
  48349. respiratorySystemFront: {
  48350. height: math.unit(1.11196233456, "feet"),
  48351. name: "Respiratory System (Front)",
  48352. image: {
  48353. source: "./media/characters/jess/respiratory-system-front.svg"
  48354. }
  48355. },
  48356. respiratorySystemSide: {
  48357. height: math.unit(0.89327966297, "feet"),
  48358. name: "Respiratory System (Side)",
  48359. image: {
  48360. source: "./media/characters/jess/respiratory-system-side.svg"
  48361. }
  48362. },
  48363. urinaryTractFront: {
  48364. height: math.unit(1.16126356186, "feet"),
  48365. name: "Urinary Tract (Front)",
  48366. image: {
  48367. source: "./media/characters/jess/urinary-tract-front.svg"
  48368. }
  48369. },
  48370. urinaryTractSide: {
  48371. height: math.unit(1.20910039627, "feet"),
  48372. name: "Urinary Tract (Side)",
  48373. image: {
  48374. source: "./media/characters/jess/urinary-tract-side.svg"
  48375. }
  48376. },
  48377. reproductiveOrgansFront: {
  48378. height: math.unit(0.48422591566, "feet"),
  48379. name: "Reproductive Organs (Front)",
  48380. image: {
  48381. source: "./media/characters/jess/reproductive-organs-front.svg"
  48382. }
  48383. },
  48384. reproductiveOrgansSide: {
  48385. height: math.unit(0.61553314481, "feet"),
  48386. name: "Reproductive Organs (Side)",
  48387. image: {
  48388. source: "./media/characters/jess/reproductive-organs-side.svg"
  48389. }
  48390. },
  48391. breastsFront: {
  48392. height: math.unit(0.47690395121, "feet"),
  48393. name: "Breasts (Front)",
  48394. image: {
  48395. source: "./media/characters/jess/breasts-front.svg"
  48396. }
  48397. },
  48398. breastsSide: {
  48399. height: math.unit(0.30556998307, "feet"),
  48400. name: "Breasts (Side)",
  48401. image: {
  48402. source: "./media/characters/jess/breasts-side.svg"
  48403. }
  48404. },
  48405. heartFront: {
  48406. height: math.unit(0.53011022622, "feet"),
  48407. name: "Heart (Front)",
  48408. image: {
  48409. source: "./media/characters/jess/heart-front.svg"
  48410. }
  48411. },
  48412. heartSide: {
  48413. height: math.unit(0.51790695213, "feet"),
  48414. name: "Heart (Side)",
  48415. image: {
  48416. source: "./media/characters/jess/heart-side.svg"
  48417. }
  48418. },
  48419. earsAndNoseFront: {
  48420. height: math.unit(0.29385483995, "feet"),
  48421. name: "Ears and Nose (Front)",
  48422. image: {
  48423. source: "./media/characters/jess/ears-and-nose-front.svg"
  48424. }
  48425. },
  48426. earsAndNoseSide: {
  48427. height: math.unit(0.18109658741, "feet"),
  48428. name: "Ears and Nose (Side)",
  48429. image: {
  48430. source: "./media/characters/jess/ears-and-nose-side.svg"
  48431. }
  48432. },
  48433. },
  48434. [
  48435. {
  48436. name: "Normal",
  48437. height: math.unit(5 + 8/12, "feet"),
  48438. default: true
  48439. },
  48440. ]
  48441. ))
  48442. characterMakers.push(() => makeCharacter(
  48443. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  48444. {
  48445. front: {
  48446. height: math.unit(6, "feet"),
  48447. weight: math.unit(6.64467e-7, "grams"),
  48448. name: "Front",
  48449. image: {
  48450. source: "./media/characters/wimpering/front.svg",
  48451. extra: 597/587,
  48452. bottom: 34/631
  48453. }
  48454. },
  48455. },
  48456. [
  48457. {
  48458. name: "Micro",
  48459. height: math.unit(0.4, "mm"),
  48460. default: true
  48461. },
  48462. ]
  48463. ))
  48464. //characters
  48465. function makeCharacters() {
  48466. const results = [];
  48467. characterMakers.forEach(character => {
  48468. results.push(character());
  48469. });
  48470. return results;
  48471. }